diff --git a/Sledgemapper.Api/Controllers/AuthManagementController.cs b/Sledgemapper.Api/Controllers/AuthManagementController.cs index 9594f3e..c338e47 100644 --- a/Sledgemapper.Api/Controllers/AuthManagementController.cs +++ b/Sledgemapper.Api/Controllers/AuthManagementController.cs @@ -10,8 +10,9 @@ using System.Linq; using System.Security.Claims; using System.Text; using System.Threading.Tasks; -using Sledgemapper.Api.Core.Entities; +using Sentry; using Sledgemapper.Api.Models; +using User = Sledgemapper.Api.Core.Entities.User; namespace Sledgemapper.Api.Controllers { diff --git a/Sledgemapper.Api/Handlers/GetCampaignMapsCommandHandler.cs b/Sledgemapper.Api/Handlers/GetCampaignMapsCommandHandler.cs index 289b8e1..72383c6 100644 --- a/Sledgemapper.Api/Handlers/GetCampaignMapsCommandHandler.cs +++ b/Sledgemapper.Api/Handlers/GetCampaignMapsCommandHandler.cs @@ -2,12 +2,13 @@ using MediatR; using Microsoft.EntityFrameworkCore; using Sledgemapper.Api.Commands; using Sledgemapper.Api.Infrastructure.Data; -using Sledgemapper.Shared.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; +using Sentry; +using Session = Sledgemapper.Shared.Entities.Session; namespace Sledgemapper.Api.Handlers { @@ -26,18 +27,18 @@ namespace Sledgemapper.Api.Handlers { try { - var user = await _dbcontext.Users.FindAsync(command.UserId); + var user = await _dbcontext.Users.FindAsync(new[] { command.UserId }, cancellationToken: cancellationToken); _dbcontext.Attach(user); - + var campaign = await _dbcontext .Campaigns .Where(campaign => campaign.CampaignId == command.CampaignId) .Include(c => c.InvitedUsers) .Include(c => c.Maps) .Include(c => c.Owner) - .Where(campaign => campaign.OwnerId == command.UserId || campaign.InvitedUsers.Contains(user)).FirstAsync(); + .Where(campaign => campaign.OwnerId == command.UserId || campaign.InvitedUsers.Contains(user)).FirstAsync(cancellationToken); @@ -49,6 +50,7 @@ namespace Sledgemapper.Api.Handlers } catch (Exception ex) { + SentrySdk.CaptureException(ex); } return null; } diff --git a/Sledgemapper.Api/Handlers/GetCampaignPlayersCommandHandler.cs b/Sledgemapper.Api/Handlers/GetCampaignPlayersCommandHandler.cs index e915643..0549e00 100644 --- a/Sledgemapper.Api/Handlers/GetCampaignPlayersCommandHandler.cs +++ b/Sledgemapper.Api/Handlers/GetCampaignPlayersCommandHandler.cs @@ -8,6 +8,7 @@ using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; +using Sentry; namespace Sledgemapper.Api.Handlers { @@ -26,27 +27,25 @@ namespace Sledgemapper.Api.Handlers { try { - var user = await _dbcontext.Users.FindAsync(command.UserId); + var user = await _dbcontext.Users.FindAsync(new[] { command.UserId }, cancellationToken: cancellationToken); _dbcontext.Attach(user); - var campaign = await _dbcontext .Campaigns .Where(campaign => campaign.CampaignId == command.CampaignId) .Include(c => c.InvitedUsers) - + .Include(c => c.Owner) - .Where(campaign => campaign.OwnerId == command.UserId || campaign.InvitedUsers.Contains(user)).FirstAsync(); - - + .Where(campaign => campaign.OwnerId == command.UserId || campaign.InvitedUsers.Contains(user)).FirstAsync(cancellationToken); //var campaign = await _dbcontext.Campaigns.Where(campaign => campaign.CampaignId == command.CampaignId && campaign.OwnerId == command.UserId).Include(campaign => campaign.InvitedUsers).FirstAsync(); - var players = campaign.InvitedUsers.Select(user => new Player { Initials = user.Initials, UserName = user.UserName , UserId = new Guid(user.Id)}).ToList(); + var players = campaign.InvitedUsers.Select(user => new Player { Initials = user.Initials, UserName = user.UserName, UserId = new Guid(user.Id) }).ToList(); return players; } catch (Exception ex) { + SentrySdk.CaptureException(ex); } return null; } diff --git a/Sledgemapper.Api/Handlers/GetCampaignsCommandHandler.cs b/Sledgemapper.Api/Handlers/GetCampaignsCommandHandler.cs index 666f17f..07a2cfa 100644 --- a/Sledgemapper.Api/Handlers/GetCampaignsCommandHandler.cs +++ b/Sledgemapper.Api/Handlers/GetCampaignsCommandHandler.cs @@ -8,6 +8,7 @@ using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; +using Sentry; namespace Sledgemapper.Api.Handlers { @@ -38,6 +39,7 @@ namespace Sledgemapper.Api.Handlers } catch (Exception ex) { + SentrySdk.CaptureException(ex); } return new List(); } diff --git a/Sledgemapper.Api/Handlers/InvitePlayerToCampaignCommandHandler.cs b/Sledgemapper.Api/Handlers/InvitePlayerToCampaignCommandHandler.cs index aefdac0..6093ff7 100644 --- a/Sledgemapper.Api/Handlers/InvitePlayerToCampaignCommandHandler.cs +++ b/Sledgemapper.Api/Handlers/InvitePlayerToCampaignCommandHandler.cs @@ -4,6 +4,7 @@ using System.Threading; using System.Threading.Tasks; using MediatR; using Microsoft.EntityFrameworkCore; +using Sentry; using Sledgemapper.Api.Commands; using Sledgemapper.Api.Infrastructure.Data; @@ -24,7 +25,7 @@ namespace Sledgemapper.Api.Handlers { try { - var user = await _dbContext.Users.FindAsync(command.UserId); + var user = await _dbContext.Users.FindAsync(new[] { command.UserId }, cancellationToken: cancellationToken); var campaign = await _dbContext .Campaigns @@ -46,6 +47,7 @@ namespace Sledgemapper.Api.Handlers } catch (Exception ex) { + SentrySdk.CaptureException(ex); } return false; diff --git a/Sledgemapper.Api/Handlers/NewCampaignCommandHandler.cs b/Sledgemapper.Api/Handlers/NewCampaignCommandHandler.cs index f6b505e..6fde0bd 100644 --- a/Sledgemapper.Api/Handlers/NewCampaignCommandHandler.cs +++ b/Sledgemapper.Api/Handlers/NewCampaignCommandHandler.cs @@ -4,7 +4,8 @@ using Sledgemapper.Api.Infrastructure.Data; using System; using System.Threading; using System.Threading.Tasks; -using Sledgemapper.Api.Core.Entities; +using Sentry; +using User = Sledgemapper.Api.Core.Entities.User; namespace Sledgemapper.Api.Handlers { @@ -39,8 +40,7 @@ namespace Sledgemapper.Api.Handlers } catch (Exception ex) { - - + SentrySdk.CaptureException(ex); } return false; } diff --git a/Sledgemapper.Api/Program.cs b/Sledgemapper.Api/Program.cs index 774d2dc..bd59684 100644 --- a/Sledgemapper.Api/Program.cs +++ b/Sledgemapper.Api/Program.cs @@ -3,6 +3,9 @@ using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; +using Sentry; +using Sentry.AspNetCore; +using Sentry.Extensibility; using Sledgemapper.Api.Infrastructure.Data; namespace Sledgemapper.Api @@ -11,18 +14,64 @@ namespace Sledgemapper.Api { public static void Main(string[] args) { - var host= CreateHostBuilder(args).Build(); - CreateDbIfNotExists(host); - host.Run(); + var host = CreateHostBuilder(args).Build(); + CreateDbIfNotExists(host); + using (Sentry.SentrySdk.Init(o => + { + o.Dsn = "https://dbd98432b84b445696dc2996e4e01c90@glitchtip.michelescandura.com/2"; + o.MaxBreadcrumbs = 50; + o.Debug = true; + o.StackTraceMode = StackTraceMode.Enhanced; + o.AttachStacktrace = true; + o.Release = "1.0.0-alpha.3"; + +#if DEBUG + o.Environment = "dev"; +#else + o.Environment = "production"; +#endif + + + })) + // { + host.Run(); + SentrySdk.CaptureMessage("Backend starting"); + //} } public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args) .ConfigureWebHostDefaults(webBuilder => { + webBuilder.UseSentry(o => + { + o.Dsn = "https://dbd98432b84b445696dc2996e4e01c90@glitchtip.michelescandura.com/2"; + o.MaxRequestBodySize = RequestSize.Always; + o.MaxBreadcrumbs = 50; + o.Debug = true; + o.StackTraceMode = StackTraceMode.Enhanced; + o.AttachStacktrace = true; + o.Release = "1.0.0-alpha.3"; + //o.TracesSampler = ctx => + //{ + // if (string.Equals(ctx.TryGetHttpRoute(), "/Home/Privacy", StringComparison.Ordinal)) + // { + // // Collect fewer traces for this page + // return 0.3; + // } + + // return 1; + //}; +#if DEBUG + o.Environment = "dev"; +#else + o.Environment = "production"; +#endif + + }); webBuilder.UseStartup(); }); - + // public static IHostBuilder CreateHostBuilder(string[] args) => // Host.CreateDefaultBuilder(args) // .ConfigureWebHostDefaults(webBuilder => @@ -30,21 +79,19 @@ namespace Sledgemapper.Api // webBuilder.UseStartup(); // }); - private static void CreateDbIfNotExists(IHost host) + private static void CreateDbIfNotExists(IHost host) { - using (var scope = host.Services.CreateScope()) + using var scope = host.Services.CreateScope(); + var services = scope.ServiceProvider; + try { - var services = scope.ServiceProvider; - try - { - var context = services.GetRequiredService(); - // DbInitializer.Initialize(context); - } - catch (Exception ex) - { - var logger = services.GetRequiredService>(); - logger.LogError(ex, "An error occurred creating the DB."); - } + var context = services.GetRequiredService(); + // DbInitializer.Initialize(context); + } + catch (Exception ex) + { + var logger = services.GetRequiredService>(); + logger.LogError(ex, "An error occurred creating the DB."); } } } diff --git a/Sledgemapper.Api/Sledgemapper.Api.csproj b/Sledgemapper.Api/Sledgemapper.Api.csproj index a5dbc63..dd5e904 100644 --- a/Sledgemapper.Api/Sledgemapper.Api.csproj +++ b/Sledgemapper.Api/Sledgemapper.Api.csproj @@ -19,6 +19,8 @@ + + diff --git a/Sledgemapper/CommunicationManager.cs b/Sledgemapper/CommunicationManager.cs index 16c6ed6..f34597f 100644 --- a/Sledgemapper/CommunicationManager.cs +++ b/Sledgemapper/CommunicationManager.cs @@ -11,10 +11,12 @@ using Microsoft.AspNetCore.SignalR.Client; using Polly; using Polly.Retry; using Refit; +using Sentry; using SharpFontInternal; using Sledgemapper.Messages; using Sledgemapper.Shared.Entities; using TinyMessenger; +using Session = Sledgemapper.Shared.Entities.Session; namespace Sledgemapper { @@ -141,7 +143,7 @@ namespace Sledgemapper Connection.On("NewPlayer", player => { var p = SessionData.Players.FirstOrDefault(m => m.UserId == player.UserId); - if (p is null) + if (p is not null) { SessionData.Players.Add(player); } @@ -299,7 +301,7 @@ namespace Sledgemapper //_authenticateResponse = await Api.Authenticate(authenticateModel).ConfigureAwait(false); var data = Encoding.UTF8.GetBytes(JsonSerializer.Serialize(_authenticateResponse)); - Program.helper.SaveUnencryptedTokenCache(JsonSerializer.SerializeToUtf8Bytes(_authenticateResponse)); + Program.Helper.SaveUnencryptedTokenCache(JsonSerializer.SerializeToUtf8Bytes(_authenticateResponse)); await Connection.StopAsync(); @@ -335,7 +337,7 @@ namespace Sledgemapper } catch (Exception ex) { - + SentrySdk.CaptureException(ex); } await Connection.StartAsync(); @@ -343,7 +345,7 @@ namespace Sledgemapper public void CheckLogin() { - var data = Program.helper.LoadUnencryptedTokenCache(); + var data = Program.Helper.LoadUnencryptedTokenCache(); if (data != null && data.Any()) { diff --git a/Sledgemapper/Program.cs b/Sledgemapper/Program.cs index 0f5ea57..fb84f74 100644 --- a/Sledgemapper/Program.cs +++ b/Sledgemapper/Program.cs @@ -9,8 +9,8 @@ namespace Sledgemapper { public static class Program { - private static IConfiguration configuration; - public static MsalCacheHelper helper; + private static IConfiguration _configuration; + public static MsalCacheHelper Helper { get; private set; } [STAThread] static void Main() @@ -19,7 +19,7 @@ namespace Sledgemapper .SetBasePath(System.IO.Directory.GetCurrentDirectory()) .AddJsonFile("appsettings.json"); - configuration = builder.Build(); + _configuration = builder.Build(); // Loading PublicClientApplicationOptions from the values set on appsettings.json @@ -40,17 +40,18 @@ namespace Sledgemapper .Build(); // storage = Storage.Create(storageProperties); - helper = MsalCacheHelper.CreateAsync(storageProperties).Result; + Helper = MsalCacheHelper.CreateAsync(storageProperties).Result; using (Sentry.SentrySdk.Init(o => { o.Dsn = "https://973ac1606651454ba7a19f642d0a9bc1@glitchtip.michelescandura.com/1"; + //o.Dsn = "https://3a58b39d3d38447a83b647fdb1c68160@o1020733.ingest.sentry.io/5986244"; o.MaxBreadcrumbs = 50; o.Debug = true; o.StackTraceMode = StackTraceMode.Enhanced; o.AttachStacktrace = true; o.Release = "1.0.0-alpha.3"; - + o.TracesSampleRate = 1.0; #if DEBUG o.Environment = "dev"; #else diff --git a/Sledgemapper/Sledgemapper.cs b/Sledgemapper/Sledgemapper.cs index 57e8de1..83c3947 100644 --- a/Sledgemapper/Sledgemapper.cs +++ b/Sledgemapper/Sledgemapper.cs @@ -879,7 +879,7 @@ namespace Sledgemapper var items = _sessionData.Lines.Values.Union(_sessionData.Rooms.Values) .OrderBy(t => t.Timestamp).ToArray(); - for (var i = 0; i < items.Count(); i++) + for (var i = 0; i < items.Length; i++) { var item = items.ElementAt(i); if (IsMapElementOffscreen(item)) continue; diff --git a/Sledgemapper/UI/LoginRegisterWindow.Custom.cs b/Sledgemapper/UI/LoginRegisterWindow.Custom.cs index f565e68..e0fd3dc 100644 --- a/Sledgemapper/UI/LoginRegisterWindow.Custom.cs +++ b/Sledgemapper/UI/LoginRegisterWindow.Custom.cs @@ -140,7 +140,7 @@ namespace Sledgemapper.UI { var button = ((TextButton)sender); Container container = button.Parent; - while (!(container is Window)) + while (container is not Window) { container = container.Parent; } diff --git a/Sledgemapper/UI/MainWidget.Custom.cs b/Sledgemapper/UI/MainWidget.Custom.cs index 7910a8d..16217fa 100644 --- a/Sledgemapper/UI/MainWidget.Custom.cs +++ b/Sledgemapper/UI/MainWidget.Custom.cs @@ -222,7 +222,7 @@ namespace Sledgemapper.UI _windowEditor.ShowModal(Desktop); } - private async void OnLoginSuccesfulMessage(LoginSuccesfulMessage obj) + private void OnLoginSuccesfulMessage(LoginSuccesfulMessage obj) { //MenuConnectNew.Enabled = true; //MenuConnectJoin.Enabled = true; diff --git a/Sledgemapper/UI/MapList.Custom.cs b/Sledgemapper/UI/MapList.Custom.cs index e779da8..58b1a0f 100644 --- a/Sledgemapper/UI/MapList.Custom.cs +++ b/Sledgemapper/UI/MapList.Custom.cs @@ -64,7 +64,6 @@ namespace Sledgemapper.UI private void OnMapSelected(object sender, EventArgs e) { var item = sender as ListItem; - var localContent = item.GetParentContentInWindow(); var list = item.Parent as Grid; for (var i = 0; i < list.ChildrenCount; i++) diff --git a/legacyDb/kalguumer snapshot.json b/legacyDb/kalguumer snapshot.json new file mode 100644 index 0000000..5e52959 --- /dev/null +++ b/legacyDb/kalguumer snapshot.json @@ -0,0 +1 @@ +{"Map":{},"Walls":{"16_-2_1":{"X":16,"Y":-2,"ID":"wall01","Rotation":1,"Timestamp":6.374864290005838E+17},"36_23":{"X":36,"Y":23,"ID":"wall02","Rotation":1,"Timestamp":0},"47_27":{"X":47,"Y":27,"ID":"wall01","Rotation":0,"Timestamp":6.374660197051619E+17},"13_-2_1":{"X":13,"Y":-2,"ID":"wall01","Rotation":1,"Timestamp":6.374864290005837E+17},"32_27_0":{"X":32,"Y":27,"ID":"wall05","Rotation":0,"Timestamp":6.376497354667745E+17},"62_31_0":{"X":62,"Y":31,"ID":"wall11","Rotation":0,"Timestamp":6.375333256701763E+17},"57_-1_0":{"X":57,"Y":-1,"ID":"wall02","Rotation":0,"Timestamp":6.374864290005699E+17},"36_28":{"X":36,"Y":28,"ID":"wall02","Rotation":1,"Timestamp":0},"56_-5_0":{"X":56,"Y":-5,"ID":"wall11","Rotation":0,"Timestamp":6.375212711767667E+17},"34_-2_1":{"X":34,"Y":-2,"ID":"wall01","Rotation":1,"Timestamp":6.374864290005784E+17},"48_-2":{"X":48,"Y":-2,"ID":"wall02","Rotation":1,"Timestamp":0},"12_11":{"X":12,"Y":11,"ID":"wall02","Rotation":0,"Timestamp":0},"19_25_1":{"X":19,"Y":25,"ID":"wall06","Rotation":1,"Timestamp":6.375835373271674E+17},"18_19":{"X":18,"Y":19,"ID":"wall01","Rotation":0,"Timestamp":0},"63_24":{"X":63,"Y":24,"ID":"wall05","Rotation":0,"Timestamp":6.374669359532836E+17},"12_12":{"X":12,"Y":12,"ID":"wall02","Rotation":0,"Timestamp":0},"43_-3_1":{"X":43,"Y":-3,"ID":"wall05","Rotation":1,"Timestamp":6.375151776087587E+17},"47_2_1":{"X":47,"Y":2,"ID":"wall01","Rotation":1,"Timestamp":6.374864290005725E+17},"20_31":{"X":20,"Y":31,"ID":"wall05","Rotation":1,"Timestamp":0},"32_25_0":{"X":32,"Y":25,"ID":"wall01","Rotation":0,"Timestamp":6.376497354668028E+17},"34_6":{"X":34,"Y":6,"ID":"wall03","Rotation":1,"Timestamp":0},"43_17_1":{"X":43,"Y":17,"ID":"wall05","Rotation":1,"Timestamp":6.376497354668035E+17},"34_-3_0":{"X":34,"Y":-3,"ID":"wall01","Rotation":0,"Timestamp":6.374864290005795E+17},"34_-1_0":{"X":34,"Y":-1,"ID":"wall02","Rotation":0,"Timestamp":6.374864290005782E+17},"48_27":{"X":48,"Y":27,"ID":"wall02","Rotation":0,"Timestamp":0},"63_31_0":{"X":63,"Y":31,"ID":"wall01","Rotation":0,"Timestamp":6.375333256701791E+17},"20_5_1":{"X":20,"Y":5,"ID":"wall06","Rotation":1,"Timestamp":6.374910439126509E+17},"54_10":{"X":54,"Y":10,"ID":"wall01","Rotation":0,"Timestamp":0},"60_-4_1":{"X":60,"Y":-4,"ID":"wall05","Rotation":1,"Timestamp":6.37521271176793E+17},"58_9":{"X":58,"Y":9,"ID":"wall01","Rotation":0,"Timestamp":0},"64_-6_1":{"X":64,"Y":-6,"ID":"wall11","Rotation":1,"Timestamp":6.375212711767978E+17},"55_9":{"X":55,"Y":9,"ID":"wall01","Rotation":1,"Timestamp":0},"57_-3_1":{"X":57,"Y":-3,"ID":"wall10","Rotation":1,"Timestamp":6.375212711767668E+17},"63_16":{"X":63,"Y":16,"ID":"wall02","Rotation":1,"Timestamp":0},"47_0_1":{"X":47,"Y":0,"ID":"wall01","Rotation":1,"Timestamp":6.374864290005725E+17},"41_7":{"X":41,"Y":7,"ID":"wall02","Rotation":0,"Timestamp":0},"56_9":{"X":56,"Y":9,"ID":"wall01","Rotation":0,"Timestamp":0},"47_1":{"X":47,"Y":1,"ID":"wall02","Rotation":1,"Timestamp":0},"22_30":{"X":22,"Y":30,"ID":"wall01","Rotation":0,"Timestamp":0},"43_8":{"X":43,"Y":8,"ID":"wall05","Rotation":1,"Timestamp":0},"36_-3_0":{"X":36,"Y":-3,"ID":"wall01","Rotation":0,"Timestamp":6.37486429000579E+17},"39_28":{"X":39,"Y":28,"ID":"wall02","Rotation":1,"Timestamp":0},"58_30":{"X":58,"Y":30,"ID":"wall01","Rotation":1,"Timestamp":6.374669359532908E+17},"58_31":{"X":58,"Y":31,"ID":"wall03","Rotation":0,"Timestamp":6.374669359532902E+17},"35_-3_0":{"X":35,"Y":-3,"ID":"wall01","Rotation":0,"Timestamp":6.374864290005788E+17},"45_-3_1":{"X":45,"Y":-3,"ID":"wall05","Rotation":1,"Timestamp":6.375151776087556E+17},"13_16":{"X":13,"Y":16,"ID":"wall02","Rotation":1,"Timestamp":0},"39_23":{"X":39,"Y":23,"ID":"wall02","Rotation":1,"Timestamp":0},"25_29":{"X":25,"Y":29,"ID":"wall05","Rotation":1,"Timestamp":0},"47_-1_1":{"X":47,"Y":-1,"ID":"wall01","Rotation":1,"Timestamp":6.374864290005732E+17},"61_31_0":{"X":61,"Y":31,"ID":"wall01","Rotation":0,"Timestamp":6.375333256701791E+17},"11_31_1":{"X":11,"Y":31,"ID":"wall05","Rotation":1,"Timestamp":6.375817819369519E+17},"58_-5_0":{"X":58,"Y":-5,"ID":"wall08","Rotation":0,"Timestamp":6.375212711767917E+17},"32_14":{"X":32,"Y":14,"ID":"wall03","Rotation":0,"Timestamp":0},"64_22_1":{"X":64,"Y":22,"ID":"wall05","Rotation":1,"Timestamp":6.375333256701688E+17},"41_11":{"X":41,"Y":11,"ID":"wall05","Rotation":1,"Timestamp":0},"14_2":{"X":14,"Y":2,"ID":"wall03","Rotation":0,"Timestamp":0},"56_10":{"X":56,"Y":10,"ID":"wall01","Rotation":0,"Timestamp":0},"23_29":{"X":23,"Y":29,"ID":"wall05","Rotation":1,"Timestamp":0},"44_-9_0":{"X":44,"Y":-9,"ID":"wall11","Rotation":0,"Timestamp":6.37503158879411E+17},"57_9":{"X":57,"Y":9,"ID":"wall01","Rotation":1,"Timestamp":0},"46_-9_0":{"X":46,"Y":-9,"ID":"wall01","Rotation":0,"Timestamp":6.37503158879412E+17},"63_12":{"X":63,"Y":12,"ID":"wall02","Rotation":1,"Timestamp":6.374669359532833E+17},"28_14":{"X":28,"Y":14,"ID":"wall02","Rotation":1,"Timestamp":0},"25_9":{"X":25,"Y":9,"ID":"wall03","Rotation":0,"Timestamp":0},"16_6":{"X":16,"Y":6,"ID":"wall03","Rotation":0,"Timestamp":0},"14_1":{"X":14,"Y":1,"ID":"wall03","Rotation":0,"Timestamp":0},"37_-3_0":{"X":37,"Y":-3,"ID":"wall01","Rotation":0,"Timestamp":6.37486429000579E+17},"45_-9_0":{"X":45,"Y":-9,"ID":"wall01","Rotation":0,"Timestamp":6.375031588794118E+17},"59_28":{"X":59,"Y":28,"ID":"wall03","Rotation":1,"Timestamp":6.37466935953293E+17},"23_12":{"X":23,"Y":12,"ID":"wall02","Rotation":1,"Timestamp":0},"22_26":{"X":22,"Y":26,"ID":"wall05","Rotation":0,"Timestamp":0},"30_9":{"X":30,"Y":9,"ID":"wall03","Rotation":0,"Timestamp":0},"16_2":{"X":16,"Y":2,"ID":"wall02","Rotation":0,"Timestamp":0},"58_10":{"X":58,"Y":10,"ID":"wall01","Rotation":0,"Timestamp":0},"59_9":{"X":59,"Y":9,"ID":"wall01","Rotation":1,"Timestamp":0},"18_18":{"X":18,"Y":18,"ID":"wall01","Rotation":0,"Timestamp":0},"31_30":{"X":31,"Y":30,"ID":"wall05","Rotation":0,"Timestamp":0},"34_-3_1":{"X":34,"Y":-3,"ID":"wall01","Rotation":1,"Timestamp":6.374864290005796E+17},"35_5":{"X":35,"Y":5,"ID":"wall02","Rotation":0,"Timestamp":0},"58_28":{"X":58,"Y":28,"ID":"wall03","Rotation":1,"Timestamp":6.374669359532929E+17},"58_-3_1":{"X":58,"Y":-3,"ID":"wall10","Rotation":1,"Timestamp":6.37521271176767E+17},"31_17":{"X":31,"Y":17,"ID":"wall05","Rotation":0,"Timestamp":0},"45_-1_0":{"X":45,"Y":-1,"ID":"wall05","Rotation":0,"Timestamp":6.375151776085409E+17},"62_-5_0":{"X":62,"Y":-5,"ID":"wall11","Rotation":0,"Timestamp":6.375212711767967E+17},"52_17":{"X":52,"Y":17,"ID":"wall05","Rotation":1,"Timestamp":0},"36_15_1":{"X":36,"Y":15,"ID":"wall05","Rotation":1,"Timestamp":6.376497354668036E+17},"27_12":{"X":27,"Y":12,"ID":"wall02","Rotation":0,"Timestamp":0},"63_-7_1":{"X":63,"Y":-7,"ID":"wall11","Rotation":1,"Timestamp":6.375212711767981E+17},"54_9":{"X":54,"Y":9,"ID":"wall01","Rotation":0,"Timestamp":0},"47_-9_0":{"X":47,"Y":-9,"ID":"wall01","Rotation":0,"Timestamp":6.37503158879412E+17},"61_-6_1":{"X":61,"Y":-6,"ID":"wall10","Rotation":1,"Timestamp":6.375212711767948E+17}},"Overlays":{"58_33_False":{"Intersection":false,"X":58,"Y":33,"ID":"token","Rotation":0,"Timestamp":6.37466935953292E+17},"65_14_False":{"Intersection":false,"X":65,"Y":14,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374864290005574E+17},"54_-8_False":{"Intersection":false,"X":54,"Y":-8,"ID":"rubble","Rotation":0,"Timestamp":6.375212711767914E+17},"65_23_False":{"Intersection":false,"X":65,"Y":23,"ID":"overlay01","Rotation":0,"Timestamp":6.375333256701747E+17},"55_0_False":{"Intersection":false,"X":55,"Y":0,"ID":"rubble","Rotation":0,"Timestamp":6.374864290005701E+17},"16_32_False":{"Intersection":false,"X":16,"Y":32,"ID":"coffin","Rotation":0,"Timestamp":6.375817277979972E+17},"54_-9_False":{"Intersection":false,"X":54,"Y":-9,"ID":"rubble","Rotation":0,"Timestamp":6.375212711767916E+17},"46_0_False":{"Intersection":false,"X":46,"Y":0,"ID":"powder","Rotation":0,"Timestamp":6.37486429000573E+17},"48_32_True":{"Intersection":true,"X":48,"Y":32,"ID":"bugle-call","Rotation":0,"Timestamp":0},"37_-3_False":{"Intersection":false,"X":37,"Y":-3,"ID":"meeple","Rotation":0,"Timestamp":6.374864290005805E+17},"37_30_False":{"Intersection":false,"X":37,"Y":30,"ID":"stairs1","Rotation":3,"Timestamp":0},"14_24_False":{"Intersection":false,"X":14,"Y":24,"ID":"coffin","Rotation":0,"Timestamp":6.375835373271725E+17},"46_26_True":{"Intersection":true,"X":46,"Y":26,"ID":"plain-circle","Rotation":0,"Timestamp":0},"40_32_True":{"Intersection":true,"X":40,"Y":32,"ID":"overlay02","Rotation":0,"Timestamp":0},"39_24_False":{"Intersection":false,"X":39,"Y":24,"ID":"rubble","Rotation":0,"Timestamp":0},"33_29_False":{"Intersection":false,"X":33,"Y":29,"ID":"rubble","Rotation":0,"Timestamp":0},"38_-7_True":{"Intersection":true,"X":38,"Y":-7,"ID":"overlay02","Rotation":0,"Timestamp":6.374864290005766E+17},"56_18_False":{"Intersection":false,"X":56,"Y":18,"ID":"black-book","Rotation":0,"Timestamp":0},"11_18_False":{"Intersection":false,"X":11,"Y":18,"ID":"rubble","Rotation":0,"Timestamp":0},"54_0_False":{"Intersection":false,"X":54,"Y":0,"ID":"rubble","Rotation":0,"Timestamp":6.374864290005702E+17},"25_-7_False":{"Intersection":false,"X":25,"Y":-7,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374969096776696E+17},"40_5_False":{"Intersection":false,"X":40,"Y":5,"ID":"allied-star","Rotation":0,"Timestamp":0},"46_31_True":{"Intersection":true,"X":46,"Y":31,"ID":"bubbling-bowl","Rotation":0,"Timestamp":0},"44_18_True":{"Intersection":true,"X":44,"Y":18,"ID":"plain-circle","Rotation":0,"Timestamp":0},"43_23_False":{"Intersection":false,"X":43,"Y":23,"ID":"rubble","Rotation":0,"Timestamp":0},"44_16_True":{"Intersection":true,"X":44,"Y":16,"ID":"plain-circle","Rotation":0,"Timestamp":0},"41_-3_False":{"Intersection":false,"X":41,"Y":-3,"ID":"anvil-impact","Rotation":0,"Timestamp":6.375151776087589E+17},"30_-2_False":{"Intersection":false,"X":30,"Y":-2,"ID":"stairs1","Rotation":3,"Timestamp":6.374969096776753E+17},"47_29_False":{"Intersection":false,"X":47,"Y":29,"ID":"stairs1","Rotation":3,"Timestamp":0},"28_14_False":{"Intersection":false,"X":28,"Y":14,"ID":"open-chest","Rotation":0,"Timestamp":0},"12_32_False":{"Intersection":false,"X":12,"Y":32,"ID":"coffin","Rotation":0,"Timestamp":6.375817277979981E+17},"12_18_False":{"Intersection":false,"X":12,"Y":18,"ID":"rubble","Rotation":0,"Timestamp":0},"57_12_False":{"Intersection":false,"X":57,"Y":12,"ID":"rubble","Rotation":0,"Timestamp":0},"11_25_False":{"Intersection":false,"X":11,"Y":25,"ID":"coffin","Rotation":0,"Timestamp":6.375835373271724E+17},"38_-5_True":{"Intersection":true,"X":38,"Y":-5,"ID":"overlay02","Rotation":0,"Timestamp":6.374864290005765E+17},"27_-8_False":{"Intersection":false,"X":27,"Y":-8,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374969096776694E+17},"12_16_False":{"Intersection":false,"X":12,"Y":16,"ID":"guillotine","Rotation":0,"Timestamp":0},"43_22_False":{"Intersection":false,"X":43,"Y":22,"ID":"rubble","Rotation":0,"Timestamp":0},"64_-7_False":{"Intersection":false,"X":64,"Y":-7,"ID":"swap-bag","Rotation":0,"Timestamp":6.37521271176808E+17},"26_14_False":{"Intersection":false,"X":26,"Y":14,"ID":"rubble","Rotation":0,"Timestamp":0},"14_32_False":{"Intersection":false,"X":14,"Y":32,"ID":"coffin","Rotation":0,"Timestamp":6.375817277979973E+17},"48_29_False":{"Intersection":false,"X":48,"Y":29,"ID":"stairs1","Rotation":3,"Timestamp":0},"15_-1_False":{"Intersection":false,"X":15,"Y":-1,"ID":"stairs1","Rotation":0,"Timestamp":0},"54_-2_False":{"Intersection":false,"X":54,"Y":-2,"ID":"rubble","Rotation":0,"Timestamp":6.3752127117679E+17},"55_13_False":{"Intersection":false,"X":55,"Y":13,"ID":"rubble","Rotation":0,"Timestamp":0},"18_-5_False":{"Intersection":false,"X":18,"Y":-5,"ID":"overlay01","Rotation":0,"Timestamp":6.37496909677665E+17},"65_12_False":{"Intersection":false,"X":65,"Y":12,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374864290005572E+17},"44_26_True":{"Intersection":true,"X":44,"Y":26,"ID":"plain-circle","Rotation":0,"Timestamp":0},"36_-2_False":{"Intersection":false,"X":36,"Y":-2,"ID":"black-book","Rotation":0,"Timestamp":6.374864290005806E+17},"37_29_False":{"Intersection":false,"X":37,"Y":29,"ID":"stairs2","Rotation":3,"Timestamp":0},"56_13_False":{"Intersection":false,"X":56,"Y":13,"ID":"rubble","Rotation":0,"Timestamp":0},"57_28_False":{"Intersection":false,"X":57,"Y":28,"ID":"swordman","Rotation":0,"Timestamp":6.374669359532997E+17},"55_-4_True":{"Intersection":true,"X":55,"Y":-4,"ID":"plain-circle","Rotation":0,"Timestamp":6.375212711767901E+17},"44_20_True":{"Intersection":true,"X":44,"Y":20,"ID":"plain-circle","Rotation":0,"Timestamp":0},"12_-2_False":{"Intersection":false,"X":12,"Y":-2,"ID":"battle-axe","Rotation":0,"Timestamp":6.37486429000586E+17},"35_33_False":{"Intersection":false,"X":35,"Y":33,"ID":"rubble","Rotation":0,"Timestamp":0},"16_-2_False":{"Intersection":false,"X":16,"Y":-2,"ID":"anvil-impact","Rotation":0,"Timestamp":6.374864290005862E+17},"43_24_False":{"Intersection":false,"X":43,"Y":24,"ID":"rubble","Rotation":0,"Timestamp":0},"40_33_True":{"Intersection":true,"X":40,"Y":33,"ID":"overlay02","Rotation":0,"Timestamp":0},"45_-11_False":{"Intersection":false,"X":45,"Y":-11,"ID":"stairs1","Rotation":3,"Timestamp":6.375031588794131E+17},"44_12_True":{"Intersection":true,"X":44,"Y":12,"ID":"overlay02","Rotation":0,"Timestamp":0},"26_27_False":{"Intersection":false,"X":26,"Y":27,"ID":"locked-chest","Rotation":0,"Timestamp":0},"62_-7_False":{"Intersection":false,"X":62,"Y":-7,"ID":"cubes","Rotation":0,"Timestamp":6.375212711768081E+17},"35_32_True":{"Intersection":true,"X":35,"Y":32,"ID":"overlay02","Rotation":0,"Timestamp":0},"38_5_False":{"Intersection":false,"X":38,"Y":5,"ID":"hole-ladder","Rotation":0,"Timestamp":0},"54_17_False":{"Intersection":false,"X":54,"Y":17,"ID":"overlay01","Rotation":0,"Timestamp":0},"65_13_False":{"Intersection":false,"X":65,"Y":13,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374864290005573E+17},"64_-8_False":{"Intersection":false,"X":64,"Y":-8,"ID":"swap-bag","Rotation":0,"Timestamp":6.375212711768078E+17},"30_6_False":{"Intersection":false,"X":30,"Y":6,"ID":"raise-skeleton","Rotation":0,"Timestamp":0},"25_14_False":{"Intersection":false,"X":25,"Y":14,"ID":"rubble","Rotation":0,"Timestamp":0},"19_29_False":{"Intersection":false,"X":19,"Y":29,"ID":"coffin","Rotation":0,"Timestamp":6.375817277979983E+17},"66_12_False":{"Intersection":false,"X":66,"Y":12,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374864290005577E+17},"54_-7_False":{"Intersection":false,"X":54,"Y":-7,"ID":"rubble","Rotation":0,"Timestamp":6.375212711767916E+17},"11_27_False":{"Intersection":false,"X":11,"Y":27,"ID":"coffin","Rotation":0,"Timestamp":6.375835373271721E+17},"50_31_True":{"Intersection":true,"X":50,"Y":31,"ID":"bubbling-bowl","Rotation":0,"Timestamp":0},"25_-8_False":{"Intersection":false,"X":25,"Y":-8,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374969096776664E+17},"12_24_False":{"Intersection":false,"X":12,"Y":24,"ID":"coffin","Rotation":0,"Timestamp":6.375835373271724E+17},"57_17_False":{"Intersection":false,"X":57,"Y":17,"ID":"black-book","Rotation":0,"Timestamp":0},"62_-8_False":{"Intersection":false,"X":62,"Y":-8,"ID":"cultist","Rotation":0,"Timestamp":6.37521271176808E+17},"54_24_False":{"Intersection":false,"X":54,"Y":24,"ID":"chemical-bolt","Rotation":0,"Timestamp":0},"13_-1_False":{"Intersection":false,"X":13,"Y":-1,"ID":"stairs1","Rotation":2,"Timestamp":6.374864290005859E+17},"49_-3_False":{"Intersection":false,"X":49,"Y":-3,"ID":"token","Rotation":0,"Timestamp":6.374669359533002E+17},"39_15_False":{"Intersection":false,"X":39,"Y":15,"ID":"robe","Rotation":0,"Timestamp":6.376497354668237E+17},"34_31_False":{"Intersection":false,"X":34,"Y":31,"ID":"rubble","Rotation":0,"Timestamp":0},"11_6_False":{"Intersection":false,"X":11,"Y":6,"ID":"rubble","Rotation":0,"Timestamp":0},"29_2_False":{"Intersection":false,"X":29,"Y":2,"ID":"mushrooms","Rotation":0,"Timestamp":6.374864290005809E+17},"66_11_False":{"Intersection":false,"X":66,"Y":11,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374864290005577E+17},"45_-3_False":{"Intersection":false,"X":45,"Y":-3,"ID":"locked-chest","Rotation":0,"Timestamp":6.375151776087556E+17},"44_22_True":{"Intersection":true,"X":44,"Y":22,"ID":"plain-circle","Rotation":0,"Timestamp":0},"61_-13_False":{"Intersection":false,"X":61,"Y":-13,"ID":"rubble","Rotation":0,"Timestamp":6.375212711767195E+17},"63_12_False":{"Intersection":false,"X":63,"Y":12,"ID":"stairs1","Rotation":2,"Timestamp":6.374864290005505E+17},"30_15_False":{"Intersection":false,"X":30,"Y":15,"ID":"gargoyle","Rotation":0,"Timestamp":0},"55_-2_False":{"Intersection":false,"X":55,"Y":-2,"ID":"rubble","Rotation":0,"Timestamp":6.375212711767899E+17},"55_-1_False":{"Intersection":false,"X":55,"Y":-1,"ID":"rubble","Rotation":0,"Timestamp":6.3748642900057E+17},"47_-12_False":{"Intersection":false,"X":47,"Y":-12,"ID":"allied-star","Rotation":0,"Timestamp":6.375031588794136E+17},"11_7_False":{"Intersection":false,"X":11,"Y":7,"ID":"rubble","Rotation":0,"Timestamp":0},"25_-6_False":{"Intersection":false,"X":25,"Y":-6,"ID":"rubble","Rotation":0,"Timestamp":6.374969096776698E+17},"64_-9_False":{"Intersection":false,"X":64,"Y":-9,"ID":"cellar-barrels","Rotation":0,"Timestamp":6.375212711768077E+17},"62_19_False":{"Intersection":false,"X":62,"Y":19,"ID":"overlay01","Rotation":0,"Timestamp":0},"27_20_False":{"Intersection":false,"X":27,"Y":20,"ID":"floor-hatch","Rotation":0,"Timestamp":0},"39_28_False":{"Intersection":false,"X":39,"Y":28,"ID":"decapitation","Rotation":0,"Timestamp":0},"19_27_False":{"Intersection":false,"X":19,"Y":27,"ID":"coffin","Rotation":0,"Timestamp":6.375817277979982E+17},"30_1_False":{"Intersection":false,"X":30,"Y":1,"ID":"raise-skeleton","Rotation":0,"Timestamp":6.37486429000581E+17},"61_-11_False":{"Intersection":false,"X":61,"Y":-11,"ID":"rubble","Rotation":0,"Timestamp":6.375212711767195E+17},"35_-11_False":{"Intersection":false,"X":35,"Y":-11,"ID":"rubble","Rotation":0,"Timestamp":6.375151776085208E+17},"41_32_False":{"Intersection":false,"X":41,"Y":32,"ID":"rubble","Rotation":0,"Timestamp":0},"35_-10_False":{"Intersection":false,"X":35,"Y":-10,"ID":"rubble","Rotation":0,"Timestamp":6.375151776085208E+17},"42_12_True":{"Intersection":true,"X":42,"Y":12,"ID":"powder","Rotation":0,"Timestamp":0},"48_28_False":{"Intersection":false,"X":48,"Y":28,"ID":"overlay01","Rotation":0,"Timestamp":0},"52_26_True":{"Intersection":true,"X":52,"Y":26,"ID":"overlay02","Rotation":0,"Timestamp":0},"35_33_True":{"Intersection":true,"X":35,"Y":33,"ID":"overlay02","Rotation":0,"Timestamp":0},"61_33_False":{"Intersection":false,"X":61,"Y":33,"ID":"floor-hatch","Rotation":0,"Timestamp":6.375333256701801E+17},"24_0_False":{"Intersection":false,"X":24,"Y":0,"ID":"floor-hatch","Rotation":0,"Timestamp":0},"25_21_False":{"Intersection":false,"X":25,"Y":21,"ID":"floor-hatch","Rotation":0,"Timestamp":0},"12_-7_False":{"Intersection":false,"X":12,"Y":-7,"ID":"token","Rotation":0,"Timestamp":6.374969096776632E+17},"58_12_False":{"Intersection":false,"X":58,"Y":12,"ID":"rubble","Rotation":0,"Timestamp":0},"16_24_False":{"Intersection":false,"X":16,"Y":24,"ID":"coffin","Rotation":0,"Timestamp":6.375835373271676E+17},"29_0_False":{"Intersection":false,"X":29,"Y":0,"ID":"mushrooms","Rotation":0,"Timestamp":6.374864290005809E+17},"62_5_False":{"Intersection":false,"X":62,"Y":5,"ID":"stairs1","Rotation":1,"Timestamp":6.374864290005637E+17},"47_28_False":{"Intersection":false,"X":47,"Y":28,"ID":"overlay01","Rotation":0,"Timestamp":0},"35_-3_False":{"Intersection":false,"X":35,"Y":-3,"ID":"dig-dug","Rotation":0,"Timestamp":6.374864290005806E+17},"24_14_False":{"Intersection":false,"X":24,"Y":14,"ID":"rubble","Rotation":0,"Timestamp":0},"25_27_False":{"Intersection":false,"X":25,"Y":27,"ID":"locked-chest","Rotation":0,"Timestamp":0},"25_13_False":{"Intersection":false,"X":25,"Y":13,"ID":"rubble","Rotation":0,"Timestamp":0},"54_23_False":{"Intersection":false,"X":54,"Y":23,"ID":"chemical-bolt","Rotation":0,"Timestamp":0},"25_-2_False":{"Intersection":false,"X":25,"Y":-2,"ID":"stairs1","Rotation":3,"Timestamp":6.37496909677675E+17},"66_17_False":{"Intersection":false,"X":66,"Y":17,"ID":"rubble","Rotation":0,"Timestamp":6.374669359533024E+17},"31_19_False":{"Intersection":false,"X":31,"Y":19,"ID":"prisoner","Rotation":0,"Timestamp":0},"50_26_True":{"Intersection":true,"X":50,"Y":26,"ID":"overlay02","Rotation":0,"Timestamp":0},"15_25_False":{"Intersection":false,"X":15,"Y":25,"ID":"overlay01","Rotation":0,"Timestamp":6.375835373271679E+17},"56_12_False":{"Intersection":false,"X":56,"Y":12,"ID":"rubble","Rotation":0,"Timestamp":0},"36_7_False":{"Intersection":false,"X":36,"Y":7,"ID":"floor-hatch","Rotation":0,"Timestamp":0},"48_31_True":{"Intersection":true,"X":48,"Y":31,"ID":"bubbling-bowl","Rotation":0,"Timestamp":0},"41_31_False":{"Intersection":false,"X":41,"Y":31,"ID":"rubble","Rotation":0,"Timestamp":0},"26_-7_False":{"Intersection":false,"X":26,"Y":-7,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374969096776696E+17},"60_-12_False":{"Intersection":false,"X":60,"Y":-12,"ID":"rubble","Rotation":0,"Timestamp":6.375212711767192E+17},"66_13_False":{"Intersection":false,"X":66,"Y":13,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374864290005576E+17},"55_24_True":{"Intersection":true,"X":55,"Y":24,"ID":"chemical-bolt","Rotation":0,"Timestamp":0},"40_-7_False":{"Intersection":false,"X":40,"Y":-7,"ID":"overlay01","Rotation":0,"Timestamp":6.37503158879406E+17},"18_18_False":{"Intersection":false,"X":18,"Y":18,"ID":"stairs2","Rotation":0,"Timestamp":0},"22_6_False":{"Intersection":false,"X":22,"Y":6,"ID":"stairs2","Rotation":0,"Timestamp":0},"44_14_True":{"Intersection":true,"X":44,"Y":14,"ID":"overlay02","Rotation":0,"Timestamp":0},"46_-11_False":{"Intersection":false,"X":46,"Y":-11,"ID":"pentacle","Rotation":0,"Timestamp":6.375031588794138E+17},"29_-8_False":{"Intersection":false,"X":29,"Y":-8,"ID":"rubble","Rotation":0,"Timestamp":6.374969096776691E+17},"64_20_False":{"Intersection":false,"X":64,"Y":20,"ID":"rubble","Rotation":0,"Timestamp":6.374669359533027E+17},"65_19_False":{"Intersection":false,"X":65,"Y":19,"ID":"swap-bag","Rotation":0,"Timestamp":6.374669359533028E+17},"10_31_False":{"Intersection":false,"X":10,"Y":31,"ID":"pirate-grave","Rotation":0,"Timestamp":6.375817819369522E+17},"59_28_False":{"Intersection":false,"X":59,"Y":28,"ID":"swordman","Rotation":0,"Timestamp":6.374669359532998E+17},"11_5_False":{"Intersection":false,"X":11,"Y":5,"ID":"rubble","Rotation":0,"Timestamp":0},"36_-7_True":{"Intersection":true,"X":36,"Y":-7,"ID":"overlay02","Rotation":0,"Timestamp":6.374864290005765E+17},"55_-3_False":{"Intersection":false,"X":55,"Y":-3,"ID":"rubble","Rotation":0,"Timestamp":6.375212711767898E+17},"26_-8_False":{"Intersection":false,"X":26,"Y":-8,"ID":"raise-zombie","Rotation":0,"Timestamp":6.374969096776726E+17},"27_-7_False":{"Intersection":false,"X":27,"Y":-7,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374969096776695E+17},"31_22_False":{"Intersection":false,"X":31,"Y":22,"ID":"rubble","Rotation":0,"Timestamp":0},"24_-8_False":{"Intersection":false,"X":24,"Y":-8,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374969096776663E+17},"29_-7_False":{"Intersection":false,"X":29,"Y":-7,"ID":"rubble","Rotation":0,"Timestamp":6.374969096776692E+17},"59_-4_True":{"Intersection":true,"X":59,"Y":-4,"ID":"plain-circle","Rotation":0,"Timestamp":6.375212711767903E+17},"65_11_False":{"Intersection":false,"X":65,"Y":11,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374864290005572E+17},"65_10_False":{"Intersection":false,"X":65,"Y":10,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.37486429000557E+17},"26_21_False":{"Intersection":false,"X":26,"Y":21,"ID":"floor-hatch","Rotation":0,"Timestamp":0},"54_-3_False":{"Intersection":false,"X":54,"Y":-3,"ID":"rubble","Rotation":0,"Timestamp":6.375212711767898E+17},"28_-8_False":{"Intersection":false,"X":28,"Y":-8,"ID":"rubble","Rotation":0,"Timestamp":6.374969096776691E+17},"52_7_False":{"Intersection":false,"X":52,"Y":7,"ID":"stairs1","Rotation":1,"Timestamp":0},"23_-8_False":{"Intersection":false,"X":23,"Y":-8,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374969096776662E+17},"17_4_False":{"Intersection":false,"X":17,"Y":4,"ID":"open-treasure-chest","Rotation":0,"Timestamp":0},"55_12_False":{"Intersection":false,"X":55,"Y":12,"ID":"rubble","Rotation":0,"Timestamp":0},"66_14_False":{"Intersection":false,"X":66,"Y":14,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374864290005576E+17},"61_-12_False":{"Intersection":false,"X":61,"Y":-12,"ID":"rubble","Rotation":0,"Timestamp":6.375212711767194E+17},"66_10_False":{"Intersection":false,"X":66,"Y":10,"ID":"zigzag-hieroglyph","Rotation":0,"Timestamp":6.374864290005578E+17},"64_-10_False":{"Intersection":false,"X":64,"Y":-10,"ID":"cellar-barrels","Rotation":0,"Timestamp":6.375212711768076E+17},"60_-13_False":{"Intersection":false,"X":60,"Y":-13,"ID":"rubble","Rotation":0,"Timestamp":6.375212711767191E+17},"44_24_True":{"Intersection":true,"X":44,"Y":24,"ID":"plain-circle","Rotation":0,"Timestamp":0},"58_17_False":{"Intersection":false,"X":58,"Y":17,"ID":"tombstone","Rotation":0,"Timestamp":0},"37_-9_False":{"Intersection":false,"X":37,"Y":-9,"ID":"stairs2","Rotation":3,"Timestamp":6.375151776085207E+17},"26_28_False":{"Intersection":false,"X":26,"Y":28,"ID":"chest","Rotation":0,"Timestamp":0},"42_5_False":{"Intersection":false,"X":42,"Y":5,"ID":"allied-star","Rotation":0,"Timestamp":0},"26_20_False":{"Intersection":false,"X":26,"Y":20,"ID":"floor-hatch","Rotation":0,"Timestamp":0},"11_29_False":{"Intersection":false,"X":11,"Y":29,"ID":"coffin","Rotation":0,"Timestamp":6.375835373271725E+17},"18_24_False":{"Intersection":false,"X":18,"Y":24,"ID":"coffin","Rotation":0,"Timestamp":6.375835373271675E+17},"22_1_False":{"Intersection":false,"X":22,"Y":1,"ID":"stairs2","Rotation":0,"Timestamp":0},"48_26_True":{"Intersection":true,"X":48,"Y":26,"ID":"plain-circle","Rotation":0,"Timestamp":0},"47_-11_False":{"Intersection":false,"X":47,"Y":-11,"ID":"stairs1","Rotation":3,"Timestamp":6.375031588794135E+17},"45_-12_False":{"Intersection":false,"X":45,"Y":-12,"ID":"allied-star","Rotation":0,"Timestamp":6.375031588794136E+17}},"Notes":{"39_15":{"Text":"statua di mago senza libro","X":39,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.376497354668296E+17},"19_27":{"Text":"vuoto\n","X":19,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.375835373271634E+17},"13_30":{"Text":"altra roba inutile, piu\u0027 una pozione di colore azzurrino.","X":13,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.37581753921434E+17},"58_17":{"Text":"tavoletta runica","X":58,"Y":17,"ID":null,"Rotation":0,"Timestamp":0},"16_24":{"Text":"vuoto","X":16,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375835373271677E+17},"31_19":{"Text":"Bargro il prigioniero dietro lo specchio.\n\nSembra che per liberarlo serva un martello","X":31,"Y":19,"ID":null,"Rotation":0,"Timestamp":0},"14_32":{"Text":"tomba vuota","X":14,"Y":32,"ID":null,"Rotation":0,"Timestamp":6.375817539214339E+17},"49_18":{"Text":"Abbiamo incontrato 5 incappucciati. Ne abbiamo uccisi tre, due si sono arresi.\n\nCi offrono di portarci ad una stanza con un tesoro, a cui si accede con un teletrasporto, in cambio della vita.","X":49,"Y":18,"ID":null,"Rotation":0,"Timestamp":0},"10_31":{"Text":"in fondo alla stanza c\u0027e\u0027 un sarcofago chiuso con un viso scolpito sopra.","X":10,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375817819369523E+17},"35_-2":{"Text":"statua di sale animata dall\u0027illusionista","X":35,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.374864290005807E+17},"61_-7":{"Text":"un cubo gelatinoso grigio ci ha attaccato, siamo cappati e abbiamo chiuso la porta dietro di noi. Attenzione: fa 2d8 di danni","X":61,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.375212711768083E+17},"45_-1":{"Text":"anche qui\u0027 c\u0027e\u0027 sale.","X":45,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374864290005734E+17},"12_-7":{"Text":"un altro teleport","X":12,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.374969096776635E+17},"12_24":{"Text":"vuoto","X":12,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375835373271726E+17},"56_-1":{"Text":"gli incappucciati hanno gia\u0027 esplorato tutta questa area a nord. La porta e\u0027 chiusa a chiave","X":56,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.37486429000572E+17},"11_31":{"Text":"dove c\u0027era il golem adesso c\u0027e\u0027 un\u0027apertura","X":11,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375817697934862E+17},"16_32":{"Text":"tomba vuota","X":16,"Y":32,"ID":null,"Rotation":0,"Timestamp":6.375817539214335E+17},"19_31":{"Text":"in alto c\u0027e\u0027 una maschera di un demone verde.","X":19,"Y":31,"ID":null,"Rotation":0,"Timestamp":0},"60_21":{"Text":"i goblin hanno trovato un passaggio segreto in qeusta area (grande). Detro c\u0027e\u0027 un corridoio con una trappola e poi un arco con una testa di serpente","X":60,"Y":21,"ID":null,"Rotation":0,"Timestamp":6.375151776088049E+17},"49_-3":{"Text":"Teleport (secondo gli incappucciati)","X":49,"Y":-3,"ID":null,"Rotation":0,"Timestamp":0},"19_25":{"Text":"Entrata delle catacombe","X":19,"Y":25,"ID":null,"Rotation":0,"Timestamp":0},"62_29":{"Text":"tre allegri goblin morti","X":62,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.375333256701784E+17},"46_31":{"Text":"pozioni\n\ncolori:\n\nsx verde\n\ncentrale viola\n\ndx marrone","X":46,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.374669359532808E+17},"45_-3":{"Text":"scrigno chiuso a chiave e pieno, non siamo riusciti ad aprirlo ed e\u0027 troppo gradne per la bag of holding","X":45,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375151776088146E+17},"17_24":{"Text":"nicchia vuota","X":17,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375835373271677E+17},"15_26":{"Text":"vuota","X":15,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.37583537327168E+17},"19_29":{"Text":"vuoto","X":19,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.375835373271634E+17},"17_30":{"Text":"nicchia rovistata","X":17,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.375817539214333E+17},"11_25":{"Text":"vuoto\n","X":11,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.375835373271726E+17},"18_24":{"Text":"vuoto\n","X":18,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375835373271676E+17},"63_12":{"Text":"il corridoio scende, sentiamo rumore di acqua. Il nano con l\u0027infravisione vede tutto blu, con dell\u0027acqua in fondo.","X":63,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374864290005551E+17},"26_-8":{"Text":"pergamente 23","X":26,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374969096776735E+17},"45_-12":{"Text":"statua di kalguumer","X":45,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.375031588794195E+17},"38_5":{"Text":"Accesso alla torre di Kalguumer","X":38,"Y":5,"ID":null,"Rotation":0,"Timestamp":0},"15_30":{"Text":"sacca di velluto con qualcosa di rigido e pesante","X":15,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.375817539214335E+17},"61_-9":{"Text":"GELATINA GIGANTE SUL SOFFITO!!!","X":61,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.375212711768082E+17},"12_32":{"Text":"sarcofago con scheletro.","X":12,"Y":32,"ID":null,"Rotation":0,"Timestamp":6.375817697934863E+17},"15_28":{"Text":"handbag of holding","X":15,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.375835373271633E+17},"26_31":{"Text":"Non e\u0027 un corridoio ma una caverna","X":26,"Y":31,"ID":null,"Rotation":0,"Timestamp":0},"13_28":{"Text":"sacchetto con monete","X":13,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.375817819369527E+17},"30_0":{"Text":"scheletri e funghi sulle pareti.","X":30,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005811E+17},"46_-11":{"Text":"Un altare circondato da un campo di forza quasi elettrico","X":46,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.375031588794186E+17},"17_28":{"Text":"vuota","X":17,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.375835373271635E+17},"30_15":{"Text":"Il gargoyle ci ha fatto attraversare il fosso, aperte le porte per i tesori e mostrato gli ingressi delle catacombe.\nAdesso e\u0027 andato via, non sappiamo dove.","X":30,"Y":15,"ID":null,"Rotation":0,"Timestamp":0},"14_0":{"Text":"statue","X":14,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005819E+17},"42_11":{"Text":"stanza col sale","X":42,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374864290005733E+17},"11_27":{"Text":"c\u0027era uno zombie","X":11,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.375835373271722E+17},"58_28":{"Text":"statue di pietra animate che hanno menato il paladino","X":58,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.374669359533E+17},"17_26":{"Text":"statuetta d\u0027oro (250 gp)","X":17,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375835373271639E+17},"14_24":{"Text":"vuoto","X":14,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375835373271727E+17},"15_24":{"Text":"scatoal di legno con 4 dardi cerbottana","X":15,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375835373271681E+17},"11_29":{"Text":"vuoto","X":11,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.375835373271726E+17},"13_26":{"Text":"2 gemme rosse","X":13,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375835373271681E+17},"47_-12":{"Text":"statua di stregone donna.","X":47,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.375031588794196E+17},"66_19":{"Text":"nella stanza c\u0027e\u0027 un sacco chiuso, abbandonato","X":66,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.37466935953303E+17}},"IsValid":false,"Players":[],"Pings":{},"Colors":[],"SessionName":"highfell","SessionId":"1C75F346-13E4-4EDB-98A5-ACF785565DE2","Lines":{"27_20_1_30_16_4":{"Start":{"Index":1,"X":27,"Y":20,"ID":null,"Rotation":0,"Timestamp":6.37466011612019E+17},"End":{"Index":4,"X":30,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.37466011612019E+17},"Width":0.6900003,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046812E+17},"63_24_1_63_24_1":{"Start":{"Index":1,"X":63,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.37466895479081E+17},"End":{"Index":1,"X":63,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.37466895479081E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532852E+17},"-18_52_4_-25_52_4":{"Start":{"Index":4,"X":-18,"Y":52,"ID":null,"Rotation":0,"Timestamp":6.374668339588252E+17},"End":{"Index":4,"X":-25,"Y":52,"ID":null,"Rotation":0,"Timestamp":6.374668339588252E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668353246025E+17},"-42_45_1_-42_51_1":{"Start":{"Index":1,"X":-42,"Y":45,"ID":null,"Rotation":0,"Timestamp":6.374668336632879E+17},"End":{"Index":1,"X":-42,"Y":51,"ID":null,"Rotation":0,"Timestamp":6.37466833663288E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668353246015E+17},"31_18_1_32_19_1":{"Start":{"Index":1,"X":31,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.374660113354711E+17},"End":{"Index":1,"X":32,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.374660113354711E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046808E+17},"-18_46_2_-18_52_4":{"Start":{"Index":2,"X":-18,"Y":46,"ID":null,"Rotation":0,"Timestamp":6.374668339219587E+17},"End":{"Index":4,"X":-18,"Y":52,"ID":null,"Rotation":0,"Timestamp":6.374668339219587E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668353246021E+17},"58_23_1_54_27_1":{"Start":{"Index":1,"X":58,"Y":23,"ID":null,"Rotation":0,"Timestamp":6.37466012946789E+17},"End":{"Index":1,"X":54,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.37466012946789E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051529E+17},"21_-10_1_27_-10_1":{"Start":{"Index":1,"X":21,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.374668402950231E+17},"End":{"Index":1,"X":27,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.374668402950232E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264822E+17},"63_-2_3_64_-3_3":{"Start":{"Index":3,"X":63,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375153073466245E+17},"End":{"Index":3,"X":64,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153073466245E+17},"Width":0.16000067,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768022E+17},"20_7_1_20_7_1":{"Start":{"Index":1,"X":20,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374660163020339E+17},"End":{"Index":1,"X":20,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374660163020339E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051758E+17},"36_15_1_38_15_1":{"Start":{"Index":1,"X":36,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.375999247949691E+17},"End":{"Index":1,"X":38,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.375999247949691E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376497354668115E+17},"63_7_1_66_4_1":{"Start":{"Index":1,"X":63,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374789758422653E+17},"End":{"Index":1,"X":66,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374789758422653E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005627E+17},"51_10_1_48_7_4":{"Start":{"Index":1,"X":51,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.375032102084977E+17},"End":{"Index":4,"X":48,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.375032102084977E+17},"Width":0.75000024,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776088145E+17},"52_-3_1_55_-3_2":{"Start":{"Index":1,"X":52,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789453626465E+17},"End":{"Index":2,"X":55,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789453626465E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451416E+17},"65_24_1_66_26_4":{"Start":{"Index":1,"X":65,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375213423550281E+17},"End":{"Index":4,"X":66,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375213423550281E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701741E+17},"63_25_4_63_26_2":{"Start":{"Index":4,"X":63,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.37466895179273E+17},"End":{"Index":2,"X":63,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.37466895179273E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532842E+17},"58_31_1_58_31_1":{"Start":{"Index":1,"X":58,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.374669003805885E+17},"End":{"Index":1,"X":58,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.374669003805885E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532911E+17},"24_-6_3_26_-11_4":{"Start":{"Index":3,"X":24,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.37466840367167E+17},"End":{"Index":4,"X":26,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.37466840367167E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264823E+17},"61_24_1_61_25_1":{"Start":{"Index":1,"X":61,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.374668984810614E+17},"End":{"Index":1,"X":61,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.374668984810614E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532874E+17},"14_24_1_13_24_1":{"Start":{"Index":1,"X":14,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375817934529115E+17},"End":{"Index":1,"X":13,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375817934529115E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375835373271566E+17},"11_6_1_11_6_1":{"Start":{"Index":1,"X":11,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660155184596E+17},"End":{"Index":1,"X":11,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660155184596E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.3746601970517E+17},"51_10_1_48_7_1":{"Start":{"Index":1,"X":51,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.37466459079005E+17},"End":{"Index":1,"X":48,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.37466459079005E+17},"Width":0.72000027,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695661E+17},"64_12_4_68_10_4":{"Start":{"Index":4,"X":64,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374789709412193E+17},"End":{"Index":4,"X":68,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374789709412193E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005407E+17},"24_17_1_24_17_1":{"Start":{"Index":1,"X":24,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374660152024532E+17},"End":{"Index":1,"X":24,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374660152024532E+17},"Width":1.05,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051694E+17},"32_18_1_33_19_1":{"Start":{"Index":1,"X":32,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.37466011382879E+17},"End":{"Index":1,"X":33,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.37466011382879E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019704681E+17},"21_10_1_18_13_1":{"Start":{"Index":1,"X":21,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374660161960333E+17},"End":{"Index":1,"X":18,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374660161960333E+17},"Width":0.73000026,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051756E+17},"64_12_3_67_13_3":{"Start":{"Index":3,"X":64,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374789707552175E+17},"End":{"Index":3,"X":67,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374789707552175E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005272E+17},"16_16_4_17_17_1":{"Start":{"Index":4,"X":16,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.374668433098547E+17},"End":{"Index":1,"X":17,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374668433098547E+17},"Width":1.01,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264852E+17},"37_22_1_32_17_1":{"Start":{"Index":1,"X":37,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.37466010097111E+17},"End":{"Index":1,"X":32,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.37466010097111E+17},"Width":0.7000003,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046785E+17},"4_-3_2_6_-1_3":{"Start":{"Index":2,"X":4,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.376497359084463E+17},"End":{"Index":3,"X":6,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.376497359084463E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376722884717402E+17},"-36_51_1_-36_45_1":{"Start":{"Index":1,"X":-36,"Y":51,"ID":null,"Rotation":0,"Timestamp":6.374668337611548E+17},"End":{"Index":1,"X":-36,"Y":45,"ID":null,"Rotation":0,"Timestamp":6.374668337611548E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668353246017E+17},"23_-3_1_21_-3_1":{"Start":{"Index":1,"X":23,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374911187647803E+17},"End":{"Index":1,"X":21,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374911187647803E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776818E+17},"22_-3_1_22_-2_1":{"Start":{"Index":1,"X":22,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374911189941167E+17},"End":{"Index":1,"X":22,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.374911189941169E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776844E+17},"58_29_1_58_29_1":{"Start":{"Index":1,"X":58,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.374669000451896E+17},"End":{"Index":1,"X":58,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.374669000451896E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532896E+17},"38_14_1_41_14_1":{"Start":{"Index":1,"X":38,"Y":14,"ID":null,"Rotation":0,"Timestamp":6.375999248929524E+17},"End":{"Index":1,"X":41,"Y":14,"ID":null,"Rotation":0,"Timestamp":6.375999248929524E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376497354668154E+17},"64_-2_1_63_-1_1":{"Start":{"Index":1,"X":64,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375153065269583E+17},"End":{"Index":1,"X":63,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153065269583E+17},"Width":0.9000001,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768004E+17},"-42_51_1_-36_51_1":{"Start":{"Index":1,"X":-42,"Y":51,"ID":null,"Rotation":0,"Timestamp":6.374668337126644E+17},"End":{"Index":1,"X":-36,"Y":51,"ID":null,"Rotation":0,"Timestamp":6.374668337126644E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668353246016E+17},"36_24_1_35_25_1":{"Start":{"Index":1,"X":36,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.374660088869938E+17},"End":{"Index":1,"X":35,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.374660088869938E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046738E+17},"35_25_1_35_25_1":{"Start":{"Index":1,"X":35,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.37466008842382E+17},"End":{"Index":1,"X":35,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.37466008842382E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046735E+17},"46_9_1_44_11_1":{"Start":{"Index":1,"X":46,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664624256092E+17},"End":{"Index":1,"X":44,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374664624256092E+17},"Width":0.7100003,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695761E+17},"58_27_1_58_27_1":{"Start":{"Index":1,"X":58,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.37466899341288E+17},"End":{"Index":1,"X":58,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.37466899341288E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532888E+17},"-1_10_2_-3_10_1":{"Start":{"Index":2,"X":-1,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374668448355942E+17},"End":{"Index":1,"X":-3,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374668448355942E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466875626486E+17},"-36_45_1_-42_45_1":{"Start":{"Index":1,"X":-36,"Y":45,"ID":null,"Rotation":0,"Timestamp":6.374668335861343E+17},"End":{"Index":1,"X":-42,"Y":45,"ID":null,"Rotation":0,"Timestamp":6.374668335861343E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668353246013E+17},"16_-11_4_21_-14_4":{"Start":{"Index":4,"X":16,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.374911191083482E+17},"End":{"Index":4,"X":21,"Y":-14,"ID":null,"Rotation":0,"Timestamp":6.374911191083482E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776849E+17},"45_4_4_43_2_1":{"Start":{"Index":4,"X":45,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374789875794755E+17},"End":{"Index":1,"X":43,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374789875794756E+17},"Width":0.7100003,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005737E+17},"31_28_1_32_27_1":{"Start":{"Index":1,"X":31,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.37466009267324E+17},"End":{"Index":1,"X":32,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.37466009267324E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046752E+17},"63_-1_1_63_-1_1":{"Start":{"Index":1,"X":63,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153068889585E+17},"End":{"Index":1,"X":63,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153068889585E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768015E+17},"32_25_1_31_24_1":{"Start":{"Index":1,"X":32,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.374660087624355E+17},"End":{"Index":1,"X":31,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.374660087624355E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046733E+17},"42_-1_2_42_-1_2":{"Start":{"Index":2,"X":42,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375031867207022E+17},"End":{"Index":2,"X":42,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375031867207022E+17},"Width":0.7000003,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776087992E+17},"60_-10_1_65_-10_1":{"Start":{"Index":1,"X":60,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153047919553E+17},"End":{"Index":1,"X":65,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153047919553E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767932E+17},"45_15_2_50_8_2":{"Start":{"Index":2,"X":45,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.37503209728575E+17},"End":{"Index":2,"X":50,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.375032097285751E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776088056E+17},"58_-3_4_58_-3_4":{"Start":{"Index":4,"X":58,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152853781987E+17},"End":{"Index":4,"X":58,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152853781988E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767827E+17},"46_13_4_46_13_4":{"Start":{"Index":4,"X":46,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.375032097071768E+17},"End":{"Index":4,"X":46,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.375032097071768E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776088054E+17},"59_31_1_59_32_1":{"Start":{"Index":1,"X":59,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.374669004836076E+17},"End":{"Index":1,"X":59,"Y":32,"ID":null,"Rotation":0,"Timestamp":6.374669004836076E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532914E+17},"-2_17_1_-1_17_1":{"Start":{"Index":1,"X":-2,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374668441764265E+17},"End":{"Index":1,"X":-1,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374668441764265E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264856E+17},"37_22_4_32_17_1":{"Start":{"Index":4,"X":37,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660107849445E+17},"End":{"Index":1,"X":32,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374660107849445E+17},"Width":0.7100003,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046801E+17},"41_-7_1_45_-11_1":{"Start":{"Index":1,"X":41,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.374668409848573E+17},"End":{"Index":1,"X":45,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.374668409848573E+17},"Width":0.72000027,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264824E+17},"35_27_1_36_28_1":{"Start":{"Index":1,"X":35,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.374660094039589E+17},"End":{"Index":1,"X":36,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.374660094039589E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046753E+17},"44_27_1_43_26_1":{"Start":{"Index":1,"X":44,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.374660128917597E+17},"End":{"Index":1,"X":43,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.374660128917597E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051528E+17},"57_27_4_61_24_1":{"Start":{"Index":4,"X":57,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.374668991067508E+17},"End":{"Index":1,"X":61,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.374668991067508E+17},"Width":0.73000026,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532881E+17},"64_-2_1_65_-4_4":{"Start":{"Index":1,"X":64,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375152613252504E+17},"End":{"Index":4,"X":65,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.375152613252504E+17},"Width":0.73000026,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37521271176755E+17},"21_-3_1_22_-3_1":{"Start":{"Index":1,"X":21,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374911188317805E+17},"End":{"Index":1,"X":22,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374911188317805E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776838E+17},"-25_52_4_-25_45_2":{"Start":{"Index":4,"X":-25,"Y":52,"ID":null,"Rotation":0,"Timestamp":6.374668339959803E+17},"End":{"Index":2,"X":-25,"Y":45,"ID":null,"Rotation":0,"Timestamp":6.374668339959804E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668353246028E+17},"65_24_1_66_28_2":{"Start":{"Index":1,"X":65,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.37521342390695E+17},"End":{"Index":2,"X":66,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.37521342390695E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701743E+17},"0_-1_2_6_-5_1":{"Start":{"Index":2,"X":0,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.376497358677089E+17},"End":{"Index":1,"X":6,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.376497358677089E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376722884717398E+17},"26_22_1_22_26_1":{"Start":{"Index":1,"X":26,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660191828892E+17},"End":{"Index":1,"X":22,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.374660191828892E+17},"Width":0.72000027,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052319E+17},"45_8_1_43_10_1":{"Start":{"Index":1,"X":45,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374664602077559E+17},"End":{"Index":1,"X":43,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374664602077559E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695679E+17},"63_-1_1_65_-4_4":{"Start":{"Index":1,"X":63,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153068099584E+17},"End":{"Index":4,"X":65,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.375153068099584E+17},"Width":0.73000026,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37521271176801E+17},"58_-3_1_58_-3_1":{"Start":{"Index":1,"X":58,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152853978652E+17},"End":{"Index":1,"X":58,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152853978652E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767832E+17},"62_24_1_62_25_1":{"Start":{"Index":1,"X":62,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.37466898287221E+17},"End":{"Index":1,"X":62,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.37466898287221E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532869E+17},"-6_14_1_4_11_3":{"Start":{"Index":1,"X":-6,"Y":14,"ID":null,"Rotation":0,"Timestamp":6.374668457917044E+17},"End":{"Index":3,"X":4,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374668457917044E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264861E+17},"64_18_1_62_16_4":{"Start":{"Index":1,"X":64,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.374669295626952E+17},"End":{"Index":4,"X":62,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.374669295626952E+17},"Width":0.7700002,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359533019E+17},"62_-1_4_65_-4_4":{"Start":{"Index":4,"X":62,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153069746244E+17},"End":{"Index":4,"X":65,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.375153069746244E+17},"Width":0.73000026,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768018E+17},"45_4_4_38_-3_1":{"Start":{"Index":4,"X":45,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374789883944801E+17},"End":{"Index":1,"X":38,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789883944801E+17},"Width":0.72000027,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005738E+17},"-25_45_2_-18_45_2":{"Start":{"Index":2,"X":-25,"Y":45,"ID":null,"Rotation":0,"Timestamp":6.374668338537501E+17},"End":{"Index":2,"X":-18,"Y":45,"ID":null,"Rotation":0,"Timestamp":6.374668338537501E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466835324602E+17},"46_8_1_46_9_1":{"Start":{"Index":1,"X":46,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374664625212593E+17},"End":{"Index":1,"X":46,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664625212593E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695762E+17},"30_19_1_31_18_1":{"Start":{"Index":1,"X":30,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.374660114384261E+17},"End":{"Index":1,"X":31,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.374660114384261E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046811E+17},"24_17_1_22_19_1":{"Start":{"Index":1,"X":24,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374660153614017E+17},"End":{"Index":1,"X":22,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.374660153614017E+17},"Width":0.75000024,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051695E+17},"45_9_1_45_9_1":{"Start":{"Index":1,"X":45,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.37466459550931E+17},"End":{"Index":1,"X":45,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.37466459550931E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695671E+17},"38_-7_1_42_-7_1":{"Start":{"Index":1,"X":38,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.374668410819009E+17},"End":{"Index":1,"X":42,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.374668410819009E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264826E+17},"37_22_4_36_21_4":{"Start":{"Index":4,"X":37,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660102897594E+17},"End":{"Index":4,"X":36,"Y":21,"ID":null,"Rotation":0,"Timestamp":6.374660102897594E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046794E+17},"64_-3_3_64_-3_3":{"Start":{"Index":3,"X":64,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153071989578E+17},"End":{"Index":3,"X":64,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153071989578E+17},"Width":0.9000001,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768019E+17},"31_24_1_31_24_1":{"Start":{"Index":1,"X":31,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.374660086947922E+17},"End":{"Index":1,"X":31,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.374660086947922E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019704673E+17},"57_-4_1_57_-7_1":{"Start":{"Index":1,"X":57,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.37478945080645E+17},"End":{"Index":1,"X":57,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.37478945080645E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451396E+17},"46_9_1_44_10_4":{"Start":{"Index":1,"X":46,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664603552525E+17},"End":{"Index":4,"X":44,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374664603552525E+17},"Width":0.72000027,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695681E+17},"63_-1_3_63_-1_3":{"Start":{"Index":3,"X":63,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153068602912E+17},"End":{"Index":3,"X":63,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153068602912E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768013E+17},"-5_7_1_5_12_2":{"Start":{"Index":1,"X":-5,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374668437509912E+17},"End":{"Index":2,"X":5,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374668437509912E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264855E+17},"59_29_1_59_31_1":{"Start":{"Index":1,"X":59,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.374669000791116E+17},"End":{"Index":1,"X":59,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.374669000791116E+17},"Width":1,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532899E+17},"62_-1_4_65_-3_1":{"Start":{"Index":4,"X":62,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374789774851712E+17},"End":{"Index":1,"X":65,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789774851712E+17},"Width":0.6700003,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005651E+17}},"Rooms":{"63_12_2_67_15_2":{"Start":{"Index":2,"X":63,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374789708258433E+17},"End":{"Index":2,"X":67,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.374789708258433E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005385E+17},"67_24_4_67_25_4":{"Start":{"Index":4,"X":67,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375213081805597E+17},"End":{"Index":4,"X":67,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.375213081805597E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701586E+17},"36_-3_1_36_-4_1":{"Start":{"Index":1,"X":36,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789901417327E+17},"End":{"Index":1,"X":36,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374789901417327E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37486429000577E+17},"18_24_1_19_26_1":{"Start":{"Index":1,"X":18,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375817936135796E+17},"End":{"Index":1,"X":19,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375817936135796E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375835373271625E+17},"60_-3_3_61_-1_4":{"Start":{"Index":3,"X":60,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789463769897E+17},"End":{"Index":4,"X":61,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374789463769897E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451436E+17},"23_-8_1_31_-3_1":{"Start":{"Index":1,"X":23,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374910842186593E+17},"End":{"Index":1,"X":31,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374910842186593E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776667E+17},"16_31_1_14_32_1":{"Start":{"Index":1,"X":16,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375757339455194E+17},"End":{"Index":1,"X":14,"Y":32,"ID":null,"Rotation":0,"Timestamp":6.375757339455195E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979826E+17},"54_-1_1_57_-1_1":{"Start":{"Index":1,"X":54,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375152848756388E+17},"End":{"Index":1,"X":57,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375152848756388E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767729E+17},"35_6_1_38_9_1":{"Start":{"Index":1,"X":35,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660169083354E+17},"End":{"Index":1,"X":38,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374660169083354E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051803E+17},"18_4_1_20_4_1":{"Start":{"Index":1,"X":18,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374660181767355E+17},"End":{"Index":1,"X":20,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374660181767355E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052271E+17},"63_-10_1_64_-10_1":{"Start":{"Index":1,"X":63,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153063656265E+17},"End":{"Index":1,"X":64,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153063656265E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767977E+17},"34_-1_1_35_0_1":{"Start":{"Index":1,"X":34,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374789907784058E+17},"End":{"Index":1,"X":35,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789907784058E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005779E+17},"61_-5_1_61_-1_1":{"Start":{"Index":1,"X":61,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.3751530803696E+17},"End":{"Index":1,"X":61,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.3751530803696E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768041E+17},"61_-5_1_63_-1_1":{"Start":{"Index":1,"X":61,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375153079953335E+17},"End":{"Index":1,"X":63,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153079953335E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768038E+17},"12_29_1_13_33_1":{"Start":{"Index":1,"X":12,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.375757604289076E+17},"End":{"Index":1,"X":13,"Y":33,"ID":null,"Rotation":0,"Timestamp":6.375757604289076E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979974E+17},"37_-19_1_39_-16_1":{"Start":{"Index":1,"X":37,"Y":-19,"ID":null,"Rotation":0,"Timestamp":6.375031687504726E+17},"End":{"Index":1,"X":39,"Y":-16,"ID":null,"Rotation":0,"Timestamp":6.375031687504726E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776085212E+17},"43_13_1_45_12_1":{"Start":{"Index":1,"X":43,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374664592875007E+17},"End":{"Index":1,"X":45,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374664592875007E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695665E+17},"47_-7_1_48_-4_1":{"Start":{"Index":1,"X":47,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.375031522275764E+17},"End":{"Index":1,"X":48,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.375031522275764E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375031588794116E+17},"66_13_4_65_10_1":{"Start":{"Index":4,"X":66,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374789722888991E+17},"End":{"Index":1,"X":65,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374789722888991E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005563E+17},"29_5_1_32_8_1":{"Start":{"Index":1,"X":29,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374660146478418E+17},"End":{"Index":1,"X":32,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374660146478418E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051674E+17},"53_22_1_56_25_1":{"Start":{"Index":1,"X":53,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660122963164E+17},"End":{"Index":1,"X":56,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.374660122963164E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.3746601970515E+17},"14_31_1_11_32_1":{"Start":{"Index":1,"X":14,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375757603192392E+17},"End":{"Index":1,"X":11,"Y":32,"ID":null,"Rotation":0,"Timestamp":6.375757603192392E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979968E+17},"65_28_1_64_29_1":{"Start":{"Index":1,"X":65,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.37521344114719E+17},"End":{"Index":1,"X":64,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.37521344114719E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37533325670175E+17},"60_-1_1_58_-1_1":{"Start":{"Index":1,"X":60,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.37515285484353E+17},"End":{"Index":1,"X":58,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.37515285484353E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767836E+17},"54_-3_1_57_-3_1":{"Start":{"Index":1,"X":54,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153056006294E+17},"End":{"Index":1,"X":57,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153056006294E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767953E+17},"61_9_1_62_10_1":{"Start":{"Index":1,"X":61,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374660137857919E+17},"End":{"Index":1,"X":62,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374660137857919E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051622E+17},"44_9_2_46_9_3":{"Start":{"Index":2,"X":44,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664622527442E+17},"End":{"Index":3,"X":46,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664622527442E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695757E+17},"62_-6_4_63_-7_4":{"Start":{"Index":4,"X":62,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.375153026972602E+17},"End":{"Index":4,"X":63,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.375153026972602E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767928E+17},"61_31_1_64_31_1":{"Start":{"Index":1,"X":61,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375213555191681E+17},"End":{"Index":1,"X":64,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375213555191681E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701792E+17},"23_16_2_24_16_1":{"Start":{"Index":2,"X":23,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.374660142896041E+17},"End":{"Index":1,"X":24,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.374660142896041E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051654E+17},"-3_-7_3_7_1_4":{"Start":{"Index":3,"X":-3,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.376497366150811E+17},"End":{"Index":4,"X":7,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.376497366150811E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376722884717435E+17},"38_11_1_43_11_1":{"Start":{"Index":1,"X":38,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374664604738488E+17},"End":{"Index":1,"X":43,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374664604738488E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695685E+17},"38_-7_1_34_-6_1":{"Start":{"Index":1,"X":38,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.37466841667231E+17},"End":{"Index":1,"X":34,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.37466841667231E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264838E+17},"14_-6_1_15_-4_1":{"Start":{"Index":1,"X":14,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.374790198797925E+17},"End":{"Index":1,"X":15,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374790198797925E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005816E+17},"25_-4_1_24_-5_1":{"Start":{"Index":1,"X":25,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374910845673304E+17},"End":{"Index":1,"X":24,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.374910845673304E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776671E+17},"14_6_1_24_7_1":{"Start":{"Index":1,"X":14,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660186174584E+17},"End":{"Index":1,"X":24,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374660186174584E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052306E+17},"66_-1_1_62_-3_1":{"Start":{"Index":1,"X":66,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153066349585E+17},"End":{"Index":1,"X":62,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153066349585E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768008E+17},"24_-5_4_24_-5_4":{"Start":{"Index":4,"X":24,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.374910845069962E+17},"End":{"Index":4,"X":24,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.374910845069962E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776668E+17},"65_-3_1_60_-4_4":{"Start":{"Index":1,"X":65,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152611667039E+17},"End":{"Index":4,"X":60,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.375152611667039E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767318E+17},"45_8_1_45_8_1":{"Start":{"Index":1,"X":45,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.37466460117753E+17},"End":{"Index":1,"X":45,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.37466460117753E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695677E+17},"58_-1_1_58_-3_3":{"Start":{"Index":1,"X":58,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375152855406862E+17},"End":{"Index":3,"X":58,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152855406862E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767839E+17},"13_23_2_13_23_2":{"Start":{"Index":2,"X":13,"Y":23,"ID":null,"Rotation":0,"Timestamp":6.375998865919021E+17},"End":{"Index":2,"X":13,"Y":23,"ID":null,"Rotation":0,"Timestamp":6.375998865919021E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375998924592963E+17},"57_-1_1_57_-3_1":{"Start":{"Index":1,"X":57,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375152848919716E+17},"End":{"Index":1,"X":57,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152848919716E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767731E+17},"25_30_1_27_27_1":{"Start":{"Index":1,"X":25,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.374660193562793E+17},"End":{"Index":1,"X":27,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.374660193562793E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052325E+17},"63_-6_1_63_-10_1":{"Start":{"Index":1,"X":63,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.375153087619562E+17},"End":{"Index":1,"X":63,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153087619562E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768063E+17},"63_-1_1_63_-1_1":{"Start":{"Index":1,"X":63,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153082525107E+17},"End":{"Index":1,"X":63,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153082525107E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768051E+17},"43_11_1_43_13_1":{"Start":{"Index":1,"X":43,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374664604905478E+17},"End":{"Index":1,"X":43,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374664604905478E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695686E+17},"31_5_1_30_3_1":{"Start":{"Index":1,"X":31,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374660171314583E+17},"End":{"Index":1,"X":30,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.374660171314583E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051808E+17},"37_6_1_45_12_1":{"Start":{"Index":1,"X":37,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374664592371222E+17},"End":{"Index":1,"X":45,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374664592371222E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695662E+17},"32_24_1_35_25_1":{"Start":{"Index":1,"X":32,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.37466009021543E+17},"End":{"Index":1,"X":35,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.37466009021543E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046742E+17},"61_36_3_60_31_3":{"Start":{"Index":3,"X":61,"Y":36,"ID":null,"Rotation":0,"Timestamp":6.375213560058835E+17},"End":{"Index":3,"X":60,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375213560058835E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701795E+17},"28_12_1_36_13_1":{"Start":{"Index":1,"X":28,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374660144841576E+17},"End":{"Index":1,"X":36,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374660144841576E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051665E+17},"61_-9_1_64_-6_1":{"Start":{"Index":1,"X":61,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.375152850583046E+17},"End":{"Index":1,"X":64,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.375152850583046E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37521271176778E+17},"64_17_1_67_21_1":{"Start":{"Index":1,"X":64,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374669297808362E+17},"End":{"Index":1,"X":67,"Y":21,"ID":null,"Rotation":0,"Timestamp":6.374669297808362E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359533023E+17},"1_-1_2_1_-1_2":{"Start":{"Index":2,"X":1,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.37649736660034E+17},"End":{"Index":2,"X":1,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.37649736660034E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376722884717437E+17},"23_26_1_22_30_1":{"Start":{"Index":1,"X":23,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.374660192976781E+17},"End":{"Index":1,"X":22,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.374660192976781E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052323E+17},"65_28_1_66_29_1":{"Start":{"Index":1,"X":65,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.375213440907185E+17},"End":{"Index":1,"X":66,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.375213440907185E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701748E+17},"11_27_1_15_28_2":{"Start":{"Index":1,"X":11,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.375757605449094E+17},"End":{"Index":2,"X":15,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.375757605449094E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979978E+17},"63_-4_1_63_-4_1":{"Start":{"Index":1,"X":63,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.375153062273084E+17},"End":{"Index":1,"X":63,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.375153062273084E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37521271176797E+17},"48_-3_1_50_-1_1":{"Start":{"Index":1,"X":48,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374664586250671E+17},"End":{"Index":1,"X":50,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374664586250671E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695647E+17},"60_-4_1_65_-3_1":{"Start":{"Index":1,"X":60,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.375152612243713E+17},"End":{"Index":1,"X":65,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152612243713E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767514E+17},"47_3_1_45_0_1":{"Start":{"Index":1,"X":47,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.374789861260289E+17},"End":{"Index":1,"X":45,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789861260289E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005724E+17},"54_-10_1_57_-10_1":{"Start":{"Index":1,"X":54,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.37515300367562E+17},"End":{"Index":1,"X":57,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.37515300367562E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37521271176791E+17},"64_-3_3_62_-5_1":{"Start":{"Index":3,"X":64,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789448499759E+17},"End":{"Index":1,"X":62,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.374789448499759E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451328E+17},"54_-12_1_55_-11_1":{"Start":{"Index":1,"X":54,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.375152532825816E+17},"End":{"Index":1,"X":55,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.375152532825816E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767063E+17},"52_4_4_53_4_1":{"Start":{"Index":4,"X":52,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374789790146286E+17},"End":{"Index":1,"X":53,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374789790146286E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005713E+17},"33_-21_1_35_-19_1":{"Start":{"Index":1,"X":33,"Y":-21,"ID":null,"Rotation":0,"Timestamp":6.37503168928475E+17},"End":{"Index":1,"X":35,"Y":-19,"ID":null,"Rotation":0,"Timestamp":6.37503168928475E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776085379E+17},"65_13_1_63_12_1":{"Start":{"Index":1,"X":65,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374789711228916E+17},"End":{"Index":1,"X":63,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374789711228916E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37486429000541E+17},"33_-4_1_34_-3_1":{"Start":{"Index":1,"X":33,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374789949164995E+17},"End":{"Index":1,"X":34,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789949164995E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.3748642900058E+17},"35_-3_1_33_-3_2":{"Start":{"Index":1,"X":35,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789948634922E+17},"End":{"Index":2,"X":33,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789948634922E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005798E+17},"13_-1_1_16_-4_1":{"Start":{"Index":1,"X":13,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374790198131206E+17},"End":{"Index":1,"X":16,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374790198131206E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005814E+17},"35_11_1_34_8_1":{"Start":{"Index":1,"X":35,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374660145612388E+17},"End":{"Index":1,"X":34,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374660145612388E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051668E+17},"62_30_1_63_31_1":{"Start":{"Index":1,"X":62,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.375213459504111E+17},"End":{"Index":1,"X":63,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375213459504111E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701757E+17},"20_4_1_20_5_1":{"Start":{"Index":1,"X":20,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374660181907953E+17},"End":{"Index":1,"X":20,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374660181907954E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052273E+17},"22_30_1_25_29_1":{"Start":{"Index":1,"X":22,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.374660193232302E+17},"End":{"Index":1,"X":25,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.374660193232302E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052324E+17},"62_-5_3_63_-1_1":{"Start":{"Index":3,"X":62,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375153077112906E+17},"End":{"Index":1,"X":63,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153077112906E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768033E+17},"63_-10_1_56_-13_1":{"Start":{"Index":1,"X":63,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375152540229256E+17},"End":{"Index":1,"X":56,"Y":-13,"ID":null,"Rotation":0,"Timestamp":6.375152540229256E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767067E+17},"60_31_4_60_36_3":{"Start":{"Index":4,"X":60,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375213559265491E+17},"End":{"Index":3,"X":60,"Y":36,"ID":null,"Rotation":0,"Timestamp":6.375213559265491E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701793E+17},"21_3_1_23_5_1":{"Start":{"Index":1,"X":21,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.37466017455456E+17},"End":{"Index":1,"X":23,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.37466017455456E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052219E+17},"63_7_1_62_4_1":{"Start":{"Index":1,"X":63,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374789759862668E+17},"End":{"Index":1,"X":62,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374789759862668E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005631E+17},"53_-5_4_54_-8_3":{"Start":{"Index":4,"X":53,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375152527469082E+17},"End":{"Index":3,"X":54,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.375152527469082E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711766999E+17},"24_16_1_23_17_1":{"Start":{"Index":1,"X":24,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.374660143057156E+17},"End":{"Index":1,"X":23,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374660143057156E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051657E+17},"61_-5_1_63_-5_1":{"Start":{"Index":1,"X":61,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375153080676241E+17},"End":{"Index":1,"X":63,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375153080676241E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768045E+17},"45_-11_2_31_-12_3":{"Start":{"Index":2,"X":45,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.374668413044201E+17},"End":{"Index":3,"X":31,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.374668413044201E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466875626483E+17},"19_-14_4_46_-5_1":{"Start":{"Index":4,"X":19,"Y":-14,"ID":null,"Rotation":0,"Timestamp":6.374668423208685E+17},"End":{"Index":1,"X":46,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.374668423208685E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264849E+17},"38_22_1_38_20_2":{"Start":{"Index":1,"X":38,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660104127667E+17},"End":{"Index":2,"X":38,"Y":20,"ID":null,"Rotation":0,"Timestamp":6.374660104127667E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046796E+17},"60_-10_4_64_-6_4":{"Start":{"Index":4,"X":60,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.37515285254971E+17},"End":{"Index":4,"X":64,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.37515285254971E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767821E+17},"10_31_1_11_32_1":{"Start":{"Index":1,"X":10,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375817697478428E+17},"End":{"Index":1,"X":11,"Y":32,"ID":null,"Rotation":0,"Timestamp":6.375817697478428E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817697934871E+17},"32_25_1_35_27_1":{"Start":{"Index":1,"X":32,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.375999067911988E+17},"End":{"Index":1,"X":35,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.375999067911988E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376497354667983E+17},"20_7_1_21_10_1":{"Start":{"Index":1,"X":20,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374660163535794E+17},"End":{"Index":1,"X":21,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374660163535794E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051759E+17},"57_-5_1_57_-10_1":{"Start":{"Index":1,"X":57,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.37515302174254E+17},"End":{"Index":1,"X":57,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.37515302174254E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767924E+17},"12_-7_1_15_-5_1":{"Start":{"Index":1,"X":12,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.3749107614226E+17},"End":{"Index":1,"X":15,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.3749107614226E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.3749690967766E+17},"15_-7_1_18_-6_1":{"Start":{"Index":1,"X":15,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.374910762369044E+17},"End":{"Index":1,"X":18,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.374910762369044E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776621E+17},"59_0_1_55_-4_1":{"Start":{"Index":1,"X":59,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789446666396E+17},"End":{"Index":1,"X":55,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374789446666396E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451302E+17},"62_9_2_62_9_2":{"Start":{"Index":2,"X":62,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.37478975034591E+17},"End":{"Index":2,"X":62,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.37478975034591E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005582E+17},"53_19_1_51_20_1":{"Start":{"Index":1,"X":53,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.374660124560201E+17},"End":{"Index":1,"X":51,"Y":20,"ID":null,"Rotation":0,"Timestamp":6.374660124560201E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051508E+17},"47_-4_1_48_3_1":{"Start":{"Index":1,"X":47,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374664585638516E+17},"End":{"Index":1,"X":48,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.374664585638516E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695638E+17},"14_32_4_15_30_1":{"Start":{"Index":4,"X":14,"Y":32,"ID":null,"Rotation":0,"Timestamp":6.37575734096188E+17},"End":{"Index":1,"X":15,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.37575734096188E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37581727797983E+17},"28_11_1_27_12_1":{"Start":{"Index":1,"X":28,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374660144019232E+17},"End":{"Index":1,"X":27,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374660144019232E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051662E+17},"62_25_1_61_26_1":{"Start":{"Index":1,"X":62,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.374668963628298E+17},"End":{"Index":1,"X":61,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.374668963628298E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532865E+17},"18_2_1_17_2_1":{"Start":{"Index":1,"X":18,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374660181566268E+17},"End":{"Index":1,"X":17,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374660181566268E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052269E+17},"58_-1_3_58_-6_3":{"Start":{"Index":3,"X":58,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374789462239878E+17},"End":{"Index":3,"X":58,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.374789462239878E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451433E+17},"58_-3_1_60_-1_1":{"Start":{"Index":1,"X":58,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152850523464E+17},"End":{"Index":1,"X":60,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375152850523464E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767777E+17},"42_6_1_43_5_1":{"Start":{"Index":1,"X":42,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374664593605468E+17},"End":{"Index":1,"X":43,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374664593605468E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695667E+17},"19_-5_1_20_-6_1":{"Start":{"Index":1,"X":19,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.374910778599082E+17},"End":{"Index":1,"X":20,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.374910778599082E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776649E+17},"54_-5_1_57_-5_1":{"Start":{"Index":1,"X":54,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375153003948969E+17},"End":{"Index":1,"X":57,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375153003948969E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767912E+17},"13_1_1_14_1_1":{"Start":{"Index":1,"X":13,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374660178866648E+17},"End":{"Index":1,"X":14,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374660178866648E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052255E+17},"43_8_1_43_8_4":{"Start":{"Index":1,"X":43,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374664610618815E+17},"End":{"Index":4,"X":43,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374664610618815E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695718E+17},"34_3_1_37_4_1":{"Start":{"Index":1,"X":34,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.374660173224124E+17},"End":{"Index":1,"X":37,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374660173224124E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052212E+17},"23_-8_1_27_-3_2":{"Start":{"Index":1,"X":23,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374910834829827E+17},"End":{"Index":2,"X":27,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374910834829827E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776659E+17},"64_-3_1_63_-3_3":{"Start":{"Index":1,"X":64,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153074116238E+17},"End":{"Index":3,"X":63,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.37515307411624E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768024E+17},"21_2_1_22_3_1":{"Start":{"Index":1,"X":21,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374660174295136E+17},"End":{"Index":1,"X":22,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.374660174295136E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052218E+17},"47_-12_1_42_-8_1":{"Start":{"Index":1,"X":47,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.374668411999283E+17},"End":{"Index":1,"X":42,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374668411999283E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264828E+17},"33_-3_1_34_-1_1":{"Start":{"Index":1,"X":33,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789905120709E+17},"End":{"Index":1,"X":34,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374789905120709E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005774E+17},"58_-3_1_60_-3_1":{"Start":{"Index":1,"X":58,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153056156261E+17},"End":{"Index":1,"X":60,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153056156261E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767955E+17},"44_9_4_44_9_4":{"Start":{"Index":4,"X":44,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664622730093E+17},"End":{"Index":4,"X":44,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664622730093E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695758E+17},"21_3_1_20_5_1":{"Start":{"Index":1,"X":21,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.37466017483921E+17},"End":{"Index":1,"X":20,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.37466017483921E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019705222E+17},"57_-4_4_57_-2_4":{"Start":{"Index":4,"X":57,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374789461276539E+17},"End":{"Index":4,"X":57,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.374789461276539E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451429E+17},"42_-7_1_43_-9_1":{"Start":{"Index":1,"X":42,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.375031508172285E+17},"End":{"Index":1,"X":43,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.375031508172285E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375031588794008E+17},"11_6_1_14_19_1":{"Start":{"Index":1,"X":11,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660155820954E+17},"End":{"Index":1,"X":14,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.374660155820954E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051702E+17},"27_-12_3_31_-8_3":{"Start":{"Index":3,"X":27,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.374668401324773E+17},"End":{"Index":3,"X":31,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374668401324773E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264819E+17},"65_14_1_67_15_1":{"Start":{"Index":1,"X":65,"Y":14,"ID":null,"Rotation":0,"Timestamp":6.374789725542344E+17},"End":{"Index":1,"X":67,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.374789725542344E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005569E+17},"36_2_1_35_3_1":{"Start":{"Index":1,"X":36,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374660173009059E+17},"End":{"Index":1,"X":35,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.374660173009059E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052211E+17},"57_28_3_59_27_2":{"Start":{"Index":3,"X":57,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.374668992613034E+17},"End":{"Index":2,"X":59,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.374668992613034E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532884E+17},"56_22_3_57_24_1":{"Start":{"Index":3,"X":56,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660123399164E+17},"End":{"Index":1,"X":57,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.374660123399164E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051503E+17},"16_1_1_17_1_1":{"Start":{"Index":1,"X":16,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374790200404876E+17},"End":{"Index":1,"X":17,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374790200404876E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005825E+17},"57_-1_3_56_-1_2":{"Start":{"Index":3,"X":57,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375032094203825E+17},"End":{"Index":2,"X":56,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375032094203825E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776088051E+17},"14_24_1_15_26_1":{"Start":{"Index":1,"X":14,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375817935532534E+17},"End":{"Index":1,"X":15,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375817935532534E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375835373271589E+17},"20_31_1_32_32_1":{"Start":{"Index":1,"X":20,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.374660120059584E+17},"End":{"Index":1,"X":32,"Y":32,"ID":null,"Rotation":0,"Timestamp":6.374660120059584E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046825E+17},"-25_45_2_-36_21_1":{"Start":{"Index":2,"X":-25,"Y":45,"ID":null,"Rotation":0,"Timestamp":6.374668334137902E+17},"End":{"Index":1,"X":-36,"Y":21,"ID":null,"Rotation":0,"Timestamp":6.374668334137902E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668353246011E+17},"17_12_1_16_13_1":{"Start":{"Index":1,"X":17,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374660149195722E+17},"End":{"Index":1,"X":16,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374660149195722E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051685E+17},"69_29_4_66_23_1":{"Start":{"Index":4,"X":69,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.375213349445517E+17},"End":{"Index":1,"X":66,"Y":23,"ID":null,"Rotation":0,"Timestamp":6.375213349445517E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701613E+17},"17_-5_1_18_-3_1":{"Start":{"Index":1,"X":17,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.374910771595841E+17},"End":{"Index":1,"X":18,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374910771595841E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776637E+17},"12_1_1_13_1_1":{"Start":{"Index":1,"X":12,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374790199901619E+17},"End":{"Index":1,"X":13,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374790199901619E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37486429000582E+17},"17_-4_1_20_-3_1":{"Start":{"Index":1,"X":17,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374910772355852E+17},"End":{"Index":1,"X":20,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374910772355852E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37496909677664E+17},"51_9_1_52_10_1":{"Start":{"Index":1,"X":51,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664619176182E+17},"End":{"Index":1,"X":52,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374664619176182E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695747E+17},"39_27_1_42_30_1":{"Start":{"Index":1,"X":39,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.374660085299062E+17},"End":{"Index":1,"X":42,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.374660085299063E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046723E+17},"15_2_1_16_2_1":{"Start":{"Index":1,"X":15,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374660180818351E+17},"End":{"Index":1,"X":16,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374660180818351E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019705226E+17},"13_11_1_11_11_1":{"Start":{"Index":1,"X":13,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374660156588867E+17},"End":{"Index":1,"X":11,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374660156588867E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051707E+17},"35_-11_1_40_-9_1":{"Start":{"Index":1,"X":35,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.375031630397409E+17},"End":{"Index":1,"X":40,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.375031630397409E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776085111E+17},"43_-9_1_48_-8_1":{"Start":{"Index":1,"X":43,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.375031508642284E+17},"End":{"Index":1,"X":48,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.375031508642284E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37503158879401E+17},"44_2_1_47_3_1":{"Start":{"Index":1,"X":44,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374789863230304E+17},"End":{"Index":1,"X":47,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.374789863230304E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005728E+17},"13_23_1_14_24_1":{"Start":{"Index":1,"X":13,"Y":23,"ID":null,"Rotation":0,"Timestamp":6.375998866132344E+17},"End":{"Index":1,"X":14,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375998866132344E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375998924592964E+17},"-43_6_1_-44_5_1":{"Start":{"Index":1,"X":-43,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374668344543537E+17},"End":{"Index":1,"X":-44,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374668344543537E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668353246035E+17},"17_-2_1_17_1_1":{"Start":{"Index":1,"X":17,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.374911192363598E+17},"End":{"Index":1,"X":17,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374911192363598E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776859E+17},"27_1_1_29_2_1":{"Start":{"Index":1,"X":27,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374660172145878E+17},"End":{"Index":1,"X":29,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374660172145878E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052205E+17},"16_-1_2_15_0_2":{"Start":{"Index":2,"X":16,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374790204141527E+17},"End":{"Index":2,"X":15,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374790204141527E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005834E+17},"56_-13_1_62_-10_1":{"Start":{"Index":1,"X":56,"Y":-13,"ID":null,"Rotation":0,"Timestamp":6.375152541382593E+17},"End":{"Index":1,"X":62,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375152541382593E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767117E+17},"64_23_1_63_24_1":{"Start":{"Index":1,"X":64,"Y":23,"ID":null,"Rotation":0,"Timestamp":6.374660123927597E+17},"End":{"Index":1,"X":63,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.374660123927597E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051506E+17},"14_29_1_11_30_1":{"Start":{"Index":1,"X":14,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.375757603602406E+17},"End":{"Index":1,"X":11,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.375757603602406E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37581727797997E+17},"63_26_2_62_25_1":{"Start":{"Index":2,"X":63,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.374668953565103E+17},"End":{"Index":1,"X":62,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.374668953565103E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532846E+17},"13_12_1_13_18_1":{"Start":{"Index":1,"X":13,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374660157057349E+17},"End":{"Index":1,"X":13,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.374660157057349E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051712E+17},"-10_1_3_8_19_4":{"Start":{"Index":3,"X":-10,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.37466846906844E+17},"End":{"Index":4,"X":8,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.37466846906844E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264864E+17},"18_4_1_21_6_1":{"Start":{"Index":1,"X":18,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374660180411597E+17},"End":{"Index":1,"X":21,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660180411597E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052259E+17},"-24_46_2_-18_52_1":{"Start":{"Index":2,"X":-24,"Y":46,"ID":null,"Rotation":0,"Timestamp":6.374668413982899E+17},"End":{"Index":1,"X":-18,"Y":52,"ID":null,"Rotation":0,"Timestamp":6.374668413982899E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264833E+17},"14_27_1_20_28_1":{"Start":{"Index":1,"X":14,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.375757580192064E+17},"End":{"Index":1,"X":20,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.375757580192064E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979964E+17},"45_7_1_46_4_1":{"Start":{"Index":1,"X":45,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374664615669983E+17},"End":{"Index":1,"X":46,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374664615669983E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695731E+17},"65_-10_1_65_-3_1":{"Start":{"Index":1,"X":65,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.37515308934623E+17},"End":{"Index":1,"X":65,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153089346231E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768074E+17},"14_30_1_15_33_1":{"Start":{"Index":1,"X":14,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.375757341235219E+17},"End":{"Index":1,"X":15,"Y":33,"ID":null,"Rotation":0,"Timestamp":6.375757341235219E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979895E+17},"57_-10_1_60_-5_1":{"Start":{"Index":1,"X":57,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153021005855E+17},"End":{"Index":1,"X":60,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375153021005855E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767919E+17},"16_24_1_17_26_1":{"Start":{"Index":1,"X":16,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375817935872449E+17},"End":{"Index":1,"X":17,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375817935872449E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37583537327159E+17},"41_13_1_41_12_1":{"Start":{"Index":1,"X":41,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374664605231391E+17},"End":{"Index":1,"X":41,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374664605231391E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466469769569E+17},"20_31_1_16_32_1":{"Start":{"Index":1,"X":20,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375757338395201E+17},"End":{"Index":1,"X":16,"Y":32,"ID":null,"Rotation":0,"Timestamp":6.375757338395201E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979818E+17},"38_9_1_38_11_1":{"Start":{"Index":1,"X":38,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664604539497E+17},"End":{"Index":1,"X":38,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374664604539497E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695684E+17},"54_-3_1_57_-1_1":{"Start":{"Index":1,"X":54,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.37515284800343E+17},"End":{"Index":1,"X":57,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.37515284800343E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767721E+17},"54_-10_1_57_-5_1":{"Start":{"Index":1,"X":54,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153002832279E+17},"End":{"Index":1,"X":57,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375153002832279E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767905E+17},"49_7_1_51_10_4":{"Start":{"Index":1,"X":49,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.375032099888998E+17},"End":{"Index":4,"X":51,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.375032099888998E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776088141E+17},"46_14_3_46_16_2":{"Start":{"Index":3,"X":46,"Y":14,"ID":null,"Rotation":0,"Timestamp":6.37503209835643E+17},"End":{"Index":2,"X":46,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.37503209835643E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776088119E+17},"16_26_1_17_29_1":{"Start":{"Index":1,"X":16,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375757579285426E+17},"End":{"Index":1,"X":17,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.375757579285426E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979959E+17},"62_28_1_64_29_1":{"Start":{"Index":1,"X":62,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.375213453087355E+17},"End":{"Index":1,"X":64,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.375213453087355E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701751E+17},"39_10_1_39_7_1":{"Start":{"Index":1,"X":39,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374664609562077E+17},"End":{"Index":1,"X":39,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374664609562077E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695715E+17},"64_24_1_67_28_3":{"Start":{"Index":1,"X":64,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.37521342452946E+17},"End":{"Index":3,"X":67,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.37521342452946E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701745E+17},"33_31_1_42_34_1":{"Start":{"Index":1,"X":33,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.37466008274865E+17},"End":{"Index":1,"X":42,"Y":34,"ID":null,"Rotation":0,"Timestamp":6.37466008274865E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046707E+17},"37_-8_1_35_-6_1":{"Start":{"Index":1,"X":37,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374789889953883E+17},"End":{"Index":1,"X":35,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.374789889953883E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37486429000575E+17},"63_-10_1_64_-2_1":{"Start":{"Index":1,"X":63,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153063189766E+17},"End":{"Index":1,"X":64,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375153063189766E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767974E+17},"60_-10_1_60_-1_1":{"Start":{"Index":1,"X":60,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153049842913E+17},"End":{"Index":1,"X":60,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153049842913E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767941E+17},"20_-4_1_17_-3_1":{"Start":{"Index":1,"X":20,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374910775375784E+17},"End":{"Index":1,"X":17,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374910775375784E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776641E+17},"35_5_1_39_9_1":{"Start":{"Index":1,"X":35,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374664594519012E+17},"End":{"Index":1,"X":39,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664594519012E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466469769567E+17},"22_-3_1_17_-2_1":{"Start":{"Index":1,"X":22,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374911190971174E+17},"End":{"Index":1,"X":17,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.374911190971174E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776846E+17},"40_5_1_41_6_1":{"Start":{"Index":1,"X":40,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374664593386363E+17},"End":{"Index":1,"X":41,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374664593386363E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695666E+17},"30_-3_1_31_-1_1":{"Start":{"Index":1,"X":30,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374910849270017E+17},"End":{"Index":1,"X":31,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374910849270017E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776689E+17},"34_-4_1_34_-8_2":{"Start":{"Index":1,"X":34,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374668419090099E+17},"End":{"Index":2,"X":34,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374668419090099E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264844E+17},"13_-2_4_12_0_2":{"Start":{"Index":4,"X":13,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.374790203781521E+17},"End":{"Index":2,"X":12,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374790203781521E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005832E+17},"54_-3_1_54_-1_1":{"Start":{"Index":1,"X":54,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152848503054E+17},"End":{"Index":1,"X":54,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375152848503054E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767725E+17},"33_-10_1_33_-6_1":{"Start":{"Index":1,"X":33,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.374668414400356E+17},"End":{"Index":1,"X":33,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.374668414400356E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264835E+17},"24_20_1_27_22_1":{"Start":{"Index":1,"X":24,"Y":20,"ID":null,"Rotation":0,"Timestamp":6.374660192268607E+17},"End":{"Index":1,"X":27,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660192268607E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019705232E+17},"57_28_1_58_29_1":{"Start":{"Index":1,"X":57,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.374669028877948E+17},"End":{"Index":1,"X":58,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.374669028877948E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532928E+17},"62_26_1_61_27_1":{"Start":{"Index":1,"X":62,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.374668963399072E+17},"End":{"Index":1,"X":61,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.374668963399072E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532863E+17},"43_13_1_41_13_1":{"Start":{"Index":1,"X":43,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374664605068375E+17},"End":{"Index":1,"X":41,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374664605068375E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695689E+17},"21_5_1_21_6_1":{"Start":{"Index":1,"X":21,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374660182270616E+17},"End":{"Index":1,"X":21,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660182270616E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052275E+17},"39_22_1_42_25_1":{"Start":{"Index":1,"X":39,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660084814824E+17},"End":{"Index":1,"X":42,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.374660084814824E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046721E+17},"42_19_1_40_20_1":{"Start":{"Index":1,"X":42,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.375999314243557E+17},"End":{"Index":1,"X":40,"Y":20,"ID":null,"Rotation":0,"Timestamp":6.375999314243557E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376497354668324E+17},"62_-9_1_62_-6_1":{"Start":{"Index":1,"X":62,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.375152851493052E+17},"End":{"Index":1,"X":62,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.375152851493052E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767781E+17},"53_1_1_54_2_1":{"Start":{"Index":1,"X":53,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374789771629445E+17},"End":{"Index":1,"X":54,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374789771629445E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005647E+17},"14_6_1_14_6_1":{"Start":{"Index":1,"X":14,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660188000302E+17},"End":{"Index":1,"X":14,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660188000302E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052315E+17},"63_-3_4_64_-2_1":{"Start":{"Index":4,"X":63,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153077919585E+17},"End":{"Index":1,"X":64,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375153077919585E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768036E+17},"49_19_1_51_20_1":{"Start":{"Index":1,"X":49,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.374660128322673E+17},"End":{"Index":1,"X":51,"Y":20,"ID":null,"Rotation":0,"Timestamp":6.374660128322673E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051525E+17},"29_14_1_28_15_1":{"Start":{"Index":1,"X":29,"Y":14,"ID":null,"Rotation":0,"Timestamp":6.374660144322061E+17},"End":{"Index":1,"X":28,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.374660144322061E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051663E+17},"36_9_1_35_6_1":{"Start":{"Index":1,"X":36,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374660168494385E+17},"End":{"Index":1,"X":35,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660168494385E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051802E+17},"28_-5_1_29_-4_1":{"Start":{"Index":1,"X":28,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.374910846393315E+17},"End":{"Index":1,"X":29,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374910846393315E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776677E+17},"17_-7_1_18_-5_1":{"Start":{"Index":1,"X":17,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.374910762782387E+17},"End":{"Index":1,"X":18,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.374910762782387E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776623E+17},"26_0_1_25_-1_1":{"Start":{"Index":1,"X":26,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660171810682E+17},"End":{"Index":1,"X":25,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374660171810682E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052198E+17},"38_8_1_38_8_1":{"Start":{"Index":1,"X":38,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374789496786168E+17},"End":{"Index":1,"X":38,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374789496786168E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789546189089E+17},"54_-5_1_54_-3_1":{"Start":{"Index":1,"X":54,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375152823819738E+17},"End":{"Index":1,"X":54,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152823819738E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767665E+17},"33_15_1_36_16_1":{"Start":{"Index":1,"X":33,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.374660145112484E+17},"End":{"Index":1,"X":36,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.374660145112484E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051666E+17},"59_-6_4_56_-4_1":{"Start":{"Index":4,"X":59,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.375152570109635E+17},"End":{"Index":1,"X":56,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.375152570109635E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767273E+17},"58_0_1_64_0_3":{"Start":{"Index":1,"X":58,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789456593821E+17},"End":{"Index":3,"X":64,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789456593821E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37478946645142E+17},"58_-3_1_58_-4_1":{"Start":{"Index":1,"X":58,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789461769873E+17},"End":{"Index":1,"X":58,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374789461769873E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37478946645143E+17},"17_14_1_16_15_1":{"Start":{"Index":1,"X":17,"Y":14,"ID":null,"Rotation":0,"Timestamp":6.374660149407265E+17},"End":{"Index":1,"X":16,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.374660149407265E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051686E+17},"20_25_1_23_26_1":{"Start":{"Index":1,"X":20,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.374660192720372E+17},"End":{"Index":1,"X":23,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.374660192720372E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052321E+17},"12_6_1_11_1_1":{"Start":{"Index":1,"X":12,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660177664393E+17},"End":{"Index":1,"X":11,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374660177664393E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019705225E+17},"66_25_1_66_25_1":{"Start":{"Index":1,"X":66,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.375213082478981E+17},"End":{"Index":1,"X":66,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.375213082478981E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701587E+17},"52_15_1_53_16_1":{"Start":{"Index":1,"X":52,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.374660126242473E+17},"End":{"Index":1,"X":53,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.374660126242474E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051516E+17},"67_25_4_69_25_1":{"Start":{"Index":4,"X":67,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.375213567685609E+17},"End":{"Index":1,"X":69,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.375213567685609E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701801E+17},"-35_14_1_-31_18_1":{"Start":{"Index":1,"X":-35,"Y":14,"ID":null,"Rotation":0,"Timestamp":6.37466834212571E+17},"End":{"Index":1,"X":-31,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.37466834212571E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466835324603E+17},"17_-5_1_20_-4_1":{"Start":{"Index":1,"X":17,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.374910776979071E+17},"End":{"Index":1,"X":20,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374910776979071E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776648E+17},"33_-1_1_34_1_1":{"Start":{"Index":1,"X":33,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374660172592141E+17},"End":{"Index":1,"X":34,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374660172592141E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052209E+17},"12_24_1_13_26_1":{"Start":{"Index":1,"X":12,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375817936442468E+17},"End":{"Index":1,"X":13,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375817936442468E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375835373271626E+17},"57_-1_1_58_-3_1":{"Start":{"Index":1,"X":57,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375152821109751E+17},"End":{"Index":1,"X":58,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152821109751E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767625E+17},"64_-10_1_65_-3_1":{"Start":{"Index":1,"X":64,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153088749565E+17},"End":{"Index":1,"X":65,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153088749565E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768067E+17},"20_25_1_11_26_1":{"Start":{"Index":1,"X":20,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.375817937235803E+17},"End":{"Index":1,"X":11,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375817937235803E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375835373271628E+17},"25_-3_1_26_-1_1":{"Start":{"Index":1,"X":25,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374910848940014E+17},"End":{"Index":1,"X":26,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374910848940014E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776686E+17},"40_-7_1_43_-6_1":{"Start":{"Index":1,"X":40,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.375031506755602E+17},"End":{"Index":1,"X":43,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.375031506755602E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375031588794007E+17},"66_19_4_66_19_4":{"Start":{"Index":4,"X":66,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.374789656351695E+17},"End":{"Index":4,"X":66,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.374789656351695E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789663045472E+17},"54_9_1_55_10_1":{"Start":{"Index":1,"X":54,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374660138657711E+17},"End":{"Index":1,"X":55,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374660138657711E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051625E+17},"-14_62_3_-50_2_4":{"Start":{"Index":3,"X":-14,"Y":62,"ID":null,"Rotation":0,"Timestamp":6.374668447536006E+17},"End":{"Index":4,"X":-50,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374668447536006E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264858E+17},"25_-12_2_39_-5_2":{"Start":{"Index":2,"X":25,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.37466842178671E+17},"End":{"Index":2,"X":39,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.37466842178671E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264846E+17},"34_-4_4_33_-3_4":{"Start":{"Index":4,"X":34,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374789949474642E+17},"End":{"Index":4,"X":33,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789949474642E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005802E+17},"57_-6_1_62_-5_1":{"Start":{"Index":1,"X":57,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.375152598530097E+17},"End":{"Index":1,"X":62,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375152598530097E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37521271176728E+17},"15_5_1_18_5_1":{"Start":{"Index":1,"X":15,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374660181239784E+17},"End":{"Index":1,"X":18,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374660181239784E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052264E+17},"52_7_1_53_8_1":{"Start":{"Index":1,"X":52,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374660138184819E+17},"End":{"Index":1,"X":53,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374660138184819E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051624E+17},"36_16_1_35_10_1":{"Start":{"Index":1,"X":36,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.374660145399054E+17},"End":{"Index":1,"X":35,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374660145399054E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051667E+17},"24_0_1_27_3_1":{"Start":{"Index":1,"X":24,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660170650911E+17},"End":{"Index":1,"X":27,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.374660170650911E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051805E+17},"-1_-3_4_3_0_3":{"Start":{"Index":4,"X":-1,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.376497357897032E+17},"End":{"Index":3,"X":3,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376497357897032E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376722884717364E+17},"60_-10_1_65_-9_1":{"Start":{"Index":1,"X":60,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153048636228E+17},"End":{"Index":1,"X":65,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.375153048636228E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767935E+17},"18_31_3_14_32_2":{"Start":{"Index":3,"X":18,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375757337021837E+17},"End":{"Index":2,"X":14,"Y":32,"ID":null,"Rotation":0,"Timestamp":6.375757337021837E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979776E+17},"46_7_1_49_8_1":{"Start":{"Index":1,"X":46,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374664587521267E+17},"End":{"Index":1,"X":49,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374664587521267E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695653E+17},"2_-1_1_4_-1_3":{"Start":{"Index":1,"X":2,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.376497367217018E+17},"End":{"Index":3,"X":4,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.376497367217018E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37672288471744E+17},"42_-7_4_42_-7_4":{"Start":{"Index":4,"X":42,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.375031505845594E+17},"End":{"Index":4,"X":42,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.375031505845594E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375031588794006E+17},"54_-3_1_60_-5_1":{"Start":{"Index":1,"X":54,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152823013102E+17},"End":{"Index":1,"X":60,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375152823013102E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767662E+17},"39_-7_1_40_-6_1":{"Start":{"Index":1,"X":39,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.374789889193878E+17},"End":{"Index":1,"X":40,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.374789889193878E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005747E+17},"45_30_1_51_32_1":{"Start":{"Index":1,"X":45,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.37466008038087E+17},"End":{"Index":1,"X":51,"Y":32,"ID":null,"Rotation":0,"Timestamp":6.37466008038087E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046685E+17},"25_3_1_26_5_1":{"Start":{"Index":1,"X":25,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.37466017094108E+17},"End":{"Index":1,"X":26,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374660170941082E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051807E+17},"60_-9_1_65_-10_1":{"Start":{"Index":1,"X":60,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.37515304861295E+17},"End":{"Index":1,"X":65,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.37515304861295E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767937E+17},"57_1_1_58_2_1":{"Start":{"Index":1,"X":57,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374789771092781E+17},"End":{"Index":1,"X":58,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374789771092781E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005646E+17},"-36_13_1_-39_10_1":{"Start":{"Index":1,"X":-36,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374668342941697E+17},"End":{"Index":1,"X":-39,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374668342941697E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668353246031E+17},"15_1_1_16_1_1":{"Start":{"Index":1,"X":15,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374660179472379E+17},"End":{"Index":1,"X":16,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374660179472379E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052256E+17},"50_14_1_47_10_1":{"Start":{"Index":1,"X":50,"Y":14,"ID":null,"Rotation":0,"Timestamp":6.375032098611653E+17},"End":{"Index":1,"X":47,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.375032098611653E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37515177608812E+17},"36_6_1_38_8_1":{"Start":{"Index":1,"X":36,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.37478949602613E+17},"End":{"Index":1,"X":38,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.37478949602613E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789546189085E+17},"54_22_1_53_19_1":{"Start":{"Index":1,"X":54,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660124378129E+17},"End":{"Index":1,"X":53,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.374660124378129E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051507E+17},"48_-3_1_48_-1_1":{"Start":{"Index":1,"X":48,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374664586958647E+17},"End":{"Index":1,"X":48,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374664586958647E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695648E+17},"52_14_1_55_15_1":{"Start":{"Index":1,"X":52,"Y":14,"ID":null,"Rotation":0,"Timestamp":6.374660126487459E+17},"End":{"Index":1,"X":55,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.374660126487459E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051517E+17},"58_27_1_59_29_1":{"Start":{"Index":1,"X":58,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.374668993915693E+17},"End":{"Index":1,"X":59,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.374668993915693E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532891E+17},"28_22_2_27_20_1":{"Start":{"Index":2,"X":28,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660116673978E+17},"End":{"Index":1,"X":27,"Y":20,"ID":null,"Rotation":0,"Timestamp":6.374660116673978E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046813E+17},"43_13_1_45_26_1":{"Start":{"Index":1,"X":43,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374660122232028E+17},"End":{"Index":1,"X":45,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.374660122232028E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051497E+17},"56_-13_1_63_-10_1":{"Start":{"Index":1,"X":56,"Y":-13,"ID":null,"Rotation":0,"Timestamp":6.375152539969243E+17},"End":{"Index":1,"X":63,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375152539969243E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767066E+17},"64_9_4_69_13_3":{"Start":{"Index":4,"X":64,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374789709728344E+17},"End":{"Index":3,"X":69,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374789709728344E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005408E+17},"31_17_1_32_18_1":{"Start":{"Index":1,"X":31,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374660109523475E+17},"End":{"Index":1,"X":32,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.374660109523475E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046804E+17},"53_3_1_54_5_1":{"Start":{"Index":1,"X":53,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.374789789236275E+17},"End":{"Index":1,"X":54,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374789789236275E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37486429000571E+17},"18_30_1_19_33_1":{"Start":{"Index":1,"X":18,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.375757338908518E+17},"End":{"Index":1,"X":19,"Y":33,"ID":null,"Rotation":0,"Timestamp":6.375757338908518E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979823E+17},"65_13_3_65_10_1":{"Start":{"Index":3,"X":65,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374789723592332E+17},"End":{"Index":1,"X":65,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374789723592332E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005565E+17},"11_12_1_13_12_1":{"Start":{"Index":1,"X":11,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374660156826743E+17},"End":{"Index":1,"X":13,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374660156826744E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051708E+17},"17_6_1_21_6_1":{"Start":{"Index":1,"X":17,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660187673512E+17},"End":{"Index":1,"X":21,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660187673512E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052314E+17},"67_25_4_67_25_4":{"Start":{"Index":4,"X":67,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.375213567415603E+17},"End":{"Index":4,"X":67,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.375213567415603E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.3753332567018E+17},"61_29_4_62_31_2":{"Start":{"Index":4,"X":61,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.375213458427429E+17},"End":{"Index":2,"X":62,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375213458427429E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701754E+17},"56_-2_1_56_-2_1":{"Start":{"Index":1,"X":56,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.374789459480439E+17},"End":{"Index":1,"X":56,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.374789459480439E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451425E+17},"36_23_1_39_24_1":{"Start":{"Index":1,"X":36,"Y":23,"ID":null,"Rotation":0,"Timestamp":6.374660096926829E+17},"End":{"Index":1,"X":39,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.374660096926829E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046771E+17},"34_-3_1_34_-3_2":{"Start":{"Index":1,"X":34,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789949894801E+17},"End":{"Index":2,"X":34,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789949894801E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005804E+17},"64_-10_1_65_-10_1":{"Start":{"Index":1,"X":64,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.37515308920623E+17},"End":{"Index":1,"X":65,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.37515308920623E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768072E+17},"56_-12_1_57_-11_1":{"Start":{"Index":1,"X":56,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.375152541985937E+17},"End":{"Index":1,"X":57,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.375152541985937E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767118E+17},"63_10_1_62_7_1":{"Start":{"Index":1,"X":63,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374789752245933E+17},"End":{"Index":1,"X":62,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374789752245933E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005624E+17},"61_31_4_64_35_1":{"Start":{"Index":4,"X":61,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375213553218755E+17},"End":{"Index":1,"X":64,"Y":35,"ID":null,"Rotation":0,"Timestamp":6.375213553218755E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701788E+17},"24_5_1_27_8_1":{"Start":{"Index":1,"X":24,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374660147436524E+17},"End":{"Index":1,"X":27,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374660147436524E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051677E+17},"60_-1_1_61_-1_1":{"Start":{"Index":1,"X":60,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153050359617E+17},"End":{"Index":1,"X":61,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153050359617E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767946E+17},"31_12_1_30_8_1":{"Start":{"Index":1,"X":31,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374660146215395E+17},"End":{"Index":1,"X":30,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374660146215395E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051671E+17},"61_-3_1_67_4_4":{"Start":{"Index":1,"X":61,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.37478945624649E+17},"End":{"Index":4,"X":67,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.37478945624649E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451419E+17},"47_10_1_44_9_3":{"Start":{"Index":1,"X":47,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374664622264484E+17},"End":{"Index":3,"X":44,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664622264484E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695756E+17},"39_-3_1_37_-7_1":{"Start":{"Index":1,"X":39,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789886793862E+17},"End":{"Index":1,"X":37,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.374789886793862E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005741E+17},"26_22_1_26_22_1":{"Start":{"Index":1,"X":26,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660189756108E+17},"End":{"Index":1,"X":26,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660189756108E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052316E+17},"-20_48_4_-24_46_2":{"Start":{"Index":4,"X":-20,"Y":48,"ID":null,"Rotation":0,"Timestamp":6.374668413539976E+17},"End":{"Index":2,"X":-24,"Y":46,"ID":null,"Rotation":0,"Timestamp":6.374668413539976E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264831E+17},"-16_8_2_-16_8_2":{"Start":{"Index":2,"X":-16,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374668373844536E+17},"End":{"Index":2,"X":-16,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374668373844536E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264815E+17},"58_-3_4_60_-2_3":{"Start":{"Index":4,"X":58,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152849636795E+17},"End":{"Index":3,"X":60,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375152849636795E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37521271176777E+17},"28_-7_1_29_-6_1":{"Start":{"Index":1,"X":28,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.374910846760003E+17},"End":{"Index":1,"X":29,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.374910846760003E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776678E+17},"36_-4_1_33_-3_1":{"Start":{"Index":1,"X":36,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.37478990481408E+17},"End":{"Index":1,"X":33,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.37478990481408E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005772E+17},"45_9_1_45_9_1":{"Start":{"Index":1,"X":45,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664614218264E+17},"End":{"Index":1,"X":45,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664614218264E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695729E+17},"47_-12_1_48_-11_1":{"Start":{"Index":1,"X":47,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.375031540899238E+17},"End":{"Index":1,"X":48,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.375031540899238E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375031588794122E+17},"37_9_1_38_9_1":{"Start":{"Index":1,"X":37,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664604393225E+17},"End":{"Index":1,"X":38,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664604393225E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695683E+17},"65_10_1_67_14_1":{"Start":{"Index":1,"X":65,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374789724892353E+17},"End":{"Index":1,"X":67,"Y":14,"ID":null,"Rotation":0,"Timestamp":6.374789724892353E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005567E+17},"52_14_1_53_11_1":{"Start":{"Index":1,"X":52,"Y":14,"ID":null,"Rotation":0,"Timestamp":6.374660134793222E+17},"End":{"Index":1,"X":53,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374660134793222E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051612E+17},"45_8_1_45_9_1":{"Start":{"Index":1,"X":45,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.37466461400637E+17},"End":{"Index":1,"X":45,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.37466461400637E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695726E+17},"59_-4_1_62_-1_3":{"Start":{"Index":1,"X":59,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374789456786501E+17},"End":{"Index":3,"X":62,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374789456786501E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451423E+17},"25_8_1_26_12_1":{"Start":{"Index":1,"X":25,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374660147856568E+17},"End":{"Index":1,"X":26,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374660147856568E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019705168E+17},"37_-21_1_36_-20_1":{"Start":{"Index":1,"X":37,"Y":-21,"ID":null,"Rotation":0,"Timestamp":6.375031688468064E+17},"End":{"Index":1,"X":36,"Y":-20,"ID":null,"Rotation":0,"Timestamp":6.375031688468064E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776085286E+17},"55_12_1_59_15_1":{"Start":{"Index":1,"X":55,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374660126859629E+17},"End":{"Index":1,"X":59,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.374660126859629E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051519E+17},"18_-5_1_17_-4_1":{"Start":{"Index":1,"X":18,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.3749107757924E+17},"End":{"Index":1,"X":17,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.3749107757924E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776645E+17},"63_31_4_63_31_3":{"Start":{"Index":4,"X":63,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375213459417161E+17},"End":{"Index":3,"X":63,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375213459417161E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701756E+17},"24_11_1_23_12_1":{"Start":{"Index":1,"X":24,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374660143744974E+17},"End":{"Index":1,"X":23,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374660143744974E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051661E+17},"-9_-5_1_-3_1_1":{"Start":{"Index":1,"X":-9,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375333675708868E+17},"End":{"Index":1,"X":-3,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.375333675708868E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375454429533802E+17},"28_-8_1_38_-8_2":{"Start":{"Index":1,"X":28,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374668413809905E+17},"End":{"Index":2,"X":38,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374668413809905E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264832E+17},"39_9_1_39_10_1":{"Start":{"Index":1,"X":39,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664609274999E+17},"End":{"Index":1,"X":39,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374664609274999E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695711E+17},"29_-4_4_27_-4_1":{"Start":{"Index":4,"X":29,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.37491112030024E+17},"End":{"Index":1,"X":27,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.37491112030024E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776724E+17},"41_-3_1_43_-1_1":{"Start":{"Index":1,"X":41,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375031836013432E+17},"End":{"Index":1,"X":43,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375031836013432E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776087588E+17},"36_28_1_39_29_1":{"Start":{"Index":1,"X":36,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.374660096701056E+17},"End":{"Index":1,"X":39,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.374660096701056E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019704677E+17},"55_-4_1_59_1_1":{"Start":{"Index":1,"X":55,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374789458523176E+17},"End":{"Index":1,"X":59,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374789458523176E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451424E+17},"65_24_1_66_28_1":{"Start":{"Index":1,"X":65,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.3752134249803E+17},"End":{"Index":1,"X":66,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.3752134249803E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701746E+17},"35_25_1_32_25_1":{"Start":{"Index":1,"X":35,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.375999069330612E+17},"End":{"Index":1,"X":32,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.375999069330612E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376497354668032E+17},"62_-6_2_63_-6_1":{"Start":{"Index":2,"X":62,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.375153087486232E+17},"End":{"Index":1,"X":63,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.375153087486232E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37521271176806E+17},"16_6_1_14_6_1":{"Start":{"Index":1,"X":16,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660182827926E+17},"End":{"Index":1,"X":14,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660182827926E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052279E+17},"21_5_1_22_6_1":{"Start":{"Index":1,"X":21,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374660175091506E+17},"End":{"Index":1,"X":22,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660175091506E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052221E+17},"61_-7_1_64_-7_1":{"Start":{"Index":1,"X":61,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.375152851966382E+17},"End":{"Index":1,"X":64,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.375152851966382E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767784E+17},"20_5_1_21_5_1":{"Start":{"Index":1,"X":20,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374660182130509E+17},"End":{"Index":1,"X":21,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374660182130509E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052274E+17},"63_-2_1_63_-3_2":{"Start":{"Index":1,"X":63,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375153074819575E+17},"End":{"Index":2,"X":63,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153074819575E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768027E+17},"19_-6_1_20_-7_1":{"Start":{"Index":1,"X":19,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.374910815942922E+17},"End":{"Index":1,"X":20,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.374910815942922E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776653E+17},"45_8_1_43_10_1":{"Start":{"Index":1,"X":45,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374664600554122E+17},"End":{"Index":1,"X":43,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374664600554122E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695676E+17},"39_7_1_45_7_1":{"Start":{"Index":1,"X":39,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374664617334444E+17},"End":{"Index":1,"X":45,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374664617334444E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695739E+17},"18_5_1_18_2_1":{"Start":{"Index":1,"X":18,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374660181423049E+17},"End":{"Index":1,"X":18,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374660181423049E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052265E+17},"44_27_1_54_25_1":{"Start":{"Index":1,"X":44,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.374660122538021E+17},"End":{"Index":1,"X":54,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.374660122538021E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051498E+17},"37_-19_1_38_-21_1":{"Start":{"Index":1,"X":37,"Y":-19,"ID":null,"Rotation":0,"Timestamp":6.375031688161396E+17},"End":{"Index":1,"X":38,"Y":-21,"ID":null,"Rotation":0,"Timestamp":6.375031688161396E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776085215E+17},"65_22_1_66_24_1":{"Start":{"Index":1,"X":65,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.375213413883476E+17},"End":{"Index":1,"X":66,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.375213413883476E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701691E+17},"46_12_1_48_13_3":{"Start":{"Index":1,"X":46,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.375032098792498E+17},"End":{"Index":3,"X":48,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.375032098792498E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776088122E+17},"45_15_4_47_13_2":{"Start":{"Index":4,"X":45,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.375032098132846E+17},"End":{"Index":2,"X":47,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.375032098132846E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776088058E+17},"58_-1_1_57_-2_1":{"Start":{"Index":1,"X":58,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375152842303055E+17},"End":{"Index":1,"X":57,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375152842303057E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767676E+17},"-43_44_1_-35_52_1":{"Start":{"Index":1,"X":-43,"Y":44,"ID":null,"Rotation":0,"Timestamp":6.374668414469197E+17},"End":{"Index":1,"X":-35,"Y":52,"ID":null,"Rotation":0,"Timestamp":6.374668414469197E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264836E+17},"13_-1_1_13_-1_1":{"Start":{"Index":1,"X":13,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374790206224867E+17},"End":{"Index":1,"X":13,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374790206224867E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37486429000584E+17},"57_-2_1_57_1_1":{"Start":{"Index":1,"X":57,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.374789460697112E+17},"End":{"Index":1,"X":57,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374789460697112E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451428E+17},"52_21_1_48_15_1":{"Start":{"Index":1,"X":52,"Y":21,"ID":null,"Rotation":0,"Timestamp":6.374660125004311E+17},"End":{"Index":1,"X":48,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.374660125004311E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019705151E+17},"32_-3_1_33_-2_1":{"Start":{"Index":1,"X":32,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789906510712E+17},"End":{"Index":1,"X":33,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.374789906510712E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005778E+17},"30_-11_3_39_-6_3":{"Start":{"Index":3,"X":30,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.374668400491712E+17},"End":{"Index":3,"X":39,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.374668400491712E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264818E+17},"11_15_1_13_15_1":{"Start":{"Index":1,"X":11,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.374660157471405E+17},"End":{"Index":1,"X":13,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.374660157471405E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051715E+17},"2_5_1_7_9_1":{"Start":{"Index":1,"X":2,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374668463086414E+17},"End":{"Index":1,"X":7,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374668463086414E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264863E+17},"37_-8_1_38_-9_1":{"Start":{"Index":1,"X":37,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374789892990591E+17},"End":{"Index":1,"X":38,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.374789892990591E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005759E+17},"54_-1_1_53_-2_1":{"Start":{"Index":1,"X":54,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.37478977235945E+17},"End":{"Index":1,"X":53,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.37478977235945E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37486429000565E+17},"16_1_1_16_-1_1":{"Start":{"Index":1,"X":16,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374790202264855E+17},"End":{"Index":1,"X":16,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374790202264855E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37486429000583E+17},"57_-2_3_58_-2_1":{"Start":{"Index":3,"X":57,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375152842069723E+17},"End":{"Index":1,"X":58,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375152842069723E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767675E+17},"60_-6_3_58_-5_1":{"Start":{"Index":3,"X":60,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.375152567239598E+17},"End":{"Index":1,"X":58,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375152567239599E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37521271176724E+17},"63_4_1_62_1_1":{"Start":{"Index":1,"X":63,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374789765732806E+17},"End":{"Index":1,"X":62,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374789765732806E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005641E+17},"32_0_1_29_3_1":{"Start":{"Index":1,"X":32,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660171600447E+17},"End":{"Index":1,"X":29,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.374660171600447E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051809E+17},"67_26_4_67_26_4":{"Start":{"Index":4,"X":67,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375213082130164E+17},"End":{"Index":4,"X":67,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375213082130164E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701583E+17},"13_18_1_11_18_1":{"Start":{"Index":1,"X":13,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.374660157207653E+17},"End":{"Index":1,"X":11,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.374660157207654E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051713E+17},"49_16_1_51_17_1":{"Start":{"Index":1,"X":49,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.3746601280776E+17},"End":{"Index":1,"X":51,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.3746601280776E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051523E+17},"33_-4_2_33_-8_2":{"Start":{"Index":2,"X":33,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374668418556736E+17},"End":{"Index":2,"X":33,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374668418556736E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264842E+17},"47_13_4_50_11_3":{"Start":{"Index":4,"X":47,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.375032099084974E+17},"End":{"Index":3,"X":50,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.375032099084974E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37515177608814E+17},"64_-12_1_65_-11_1":{"Start":{"Index":1,"X":64,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.375152615597092E+17},"End":{"Index":1,"X":65,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.375152615597092E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767558E+17},"32_1_1_36_2_1":{"Start":{"Index":1,"X":32,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374660172827178E+17},"End":{"Index":1,"X":36,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374660172827178E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019705221E+17},"62_-2_1_63_-2_4":{"Start":{"Index":1,"X":62,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375153076402906E+17},"End":{"Index":4,"X":63,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375153076402906E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768031E+17},"63_-10_1_61_-10_1":{"Start":{"Index":1,"X":63,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153087792899E+17},"End":{"Index":1,"X":61,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153087792899E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768065E+17},"63_1_1_53_-1_1":{"Start":{"Index":1,"X":63,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374789769472756E+17},"End":{"Index":1,"X":53,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374789769472756E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005644E+17},"8_-13_1_8_-13_1":{"Start":{"Index":1,"X":8,"Y":-13,"ID":null,"Rotation":0,"Timestamp":6.374910764715446E+17},"End":{"Index":1,"X":8,"Y":-13,"ID":null,"Rotation":0,"Timestamp":6.374910764715446E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776631E+17},"56_-2_1_59_-3_1":{"Start":{"Index":1,"X":56,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375153055502948E+17},"End":{"Index":1,"X":59,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153055502948E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37521271176795E+17},"65_33_4_66_33_3":{"Start":{"Index":4,"X":65,"Y":33,"ID":null,"Rotation":0,"Timestamp":6.37521360043263E+17},"End":{"Index":3,"X":66,"Y":33,"ID":null,"Rotation":0,"Timestamp":6.37521360043263E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701802E+17},"67_25_1_68_26_1":{"Start":{"Index":1,"X":67,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.375213567052298E+17},"End":{"Index":1,"X":68,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375213567052298E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701798E+17},"-40_9_1_-42_7_1":{"Start":{"Index":1,"X":-40,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374668343801514E+17},"End":{"Index":1,"X":-42,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374668343801514E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668353246033E+17},"59_-6_4_59_-6_4":{"Start":{"Index":4,"X":59,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.37515260506028E+17},"End":{"Index":4,"X":59,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.37515260506028E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767284E+17},"45_-3_1_43_-2_1":{"Start":{"Index":1,"X":45,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375031820253231E+17},"End":{"Index":1,"X":43,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375031820253231E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776087585E+17},"52_4_1_53_5_1":{"Start":{"Index":1,"X":52,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374789790622957E+17},"End":{"Index":1,"X":53,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374789790622957E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005714E+17},"26_16_1_25_17_1":{"Start":{"Index":1,"X":26,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.374660142665353E+17},"End":{"Index":1,"X":25,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374660142665353E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051653E+17},"29_6_1_27_7_1":{"Start":{"Index":1,"X":29,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660147031204E+17},"End":{"Index":1,"X":27,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374660147031204E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051676E+17},"36_4_1_35_5_1":{"Start":{"Index":1,"X":36,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.37466017343002E+17},"End":{"Index":1,"X":35,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.37466017343002E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052215E+17},"38_18_1_40_20_1":{"Start":{"Index":1,"X":38,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.37599931584024E+17},"End":{"Index":1,"X":40,"Y":20,"ID":null,"Rotation":0,"Timestamp":6.37599931584024E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376497354668326E+17},"63_24_1_64_27_1":{"Start":{"Index":1,"X":63,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.374668954736083E+17},"End":{"Index":1,"X":64,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.374668954736083E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466935953285E+17},"48_2_1_49_8_1":{"Start":{"Index":1,"X":48,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374664585983185E+17},"End":{"Index":1,"X":49,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374664585983185E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695644E+17},"38_-9_1_34_-9_1":{"Start":{"Index":1,"X":38,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.374668414979978E+17},"End":{"Index":1,"X":34,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.374668414979978E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264837E+17},"23_-8_4_27_-3_1":{"Start":{"Index":4,"X":23,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374910834239885E+17},"End":{"Index":1,"X":27,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374910834239885E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776657E+17},"14_6_1_16_6_1":{"Start":{"Index":1,"X":14,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660187432287E+17},"End":{"Index":1,"X":16,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660187432287E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052311E+17},"61_-1_1_63_-1_1":{"Start":{"Index":1,"X":61,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153080496252E+17},"End":{"Index":1,"X":63,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153080496252E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768042E+17},"61_-10_1_63_-6_1":{"Start":{"Index":1,"X":61,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153086859565E+17},"End":{"Index":1,"X":63,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.375153086859565E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768054E+17},"17_-2_1_19_-1_1":{"Start":{"Index":1,"X":17,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.374911191264549E+17},"End":{"Index":1,"X":19,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374911191264549E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776852E+17},"38_-1_1_34_-3_1":{"Start":{"Index":1,"X":38,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374789945617747E+17},"End":{"Index":1,"X":34,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789945617747E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005783E+17},"61_-6_1_62_-6_2":{"Start":{"Index":1,"X":61,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.37515308735957E+17},"End":{"Index":2,"X":62,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.37515308735957E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768058E+17},"12_1_1_13_2_1":{"Start":{"Index":1,"X":12,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374660177886029E+17},"End":{"Index":1,"X":13,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374660177886029E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052252E+17},"14_-15_4_22_-9_2":{"Start":{"Index":4,"X":14,"Y":-15,"ID":null,"Rotation":0,"Timestamp":6.374911191780448E+17},"End":{"Index":2,"X":22,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.374911191780448E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776856E+17},"20_-11_3_14_-15_4":{"Start":{"Index":3,"X":20,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.374911191536832E+17},"End":{"Index":4,"X":14,"Y":-15,"ID":null,"Rotation":0,"Timestamp":6.374911191536832E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776855E+17},"62_9_1_63_10_1":{"Start":{"Index":1,"X":62,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374789751841609E+17},"End":{"Index":1,"X":63,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374789751841609E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005622E+17},"45_-12_1_46_-11_1":{"Start":{"Index":1,"X":45,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.375031540595903E+17},"End":{"Index":1,"X":46,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.375031540595903E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375031588794121E+17},"55_19_1_60_16_1":{"Start":{"Index":1,"X":55,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.37466012598701E+17},"End":{"Index":1,"X":60,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.37466012598701E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051515E+17},"43_10_1_43_7_1":{"Start":{"Index":1,"X":43,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374664610052728E+17},"End":{"Index":1,"X":43,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374664610052728E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695717E+17},"62_29_1_63_30_1":{"Start":{"Index":1,"X":62,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.37521345358403E+17},"End":{"Index":1,"X":63,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.37521345358403E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701752E+17},"9_-12_2_9_-12_2":{"Start":{"Index":2,"X":9,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.374910763965409E+17},"End":{"Index":2,"X":9,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.374910763965409E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37496909677663E+17},"43_7_1_43_10_1":{"Start":{"Index":1,"X":43,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.37466461348721E+17},"End":{"Index":1,"X":43,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.37466461348721E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695724E+17},"41_18_1_42_19_1":{"Start":{"Index":1,"X":41,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.375999311090176E+17},"End":{"Index":1,"X":42,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.375999311090176E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376497354668323E+17},"45_17_1_48_19_1":{"Start":{"Index":1,"X":45,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.37466012547048E+17},"End":{"Index":1,"X":48,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.37466012547048E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051511E+17},"15_7_1_18_19_1":{"Start":{"Index":1,"X":15,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374660148255327E+17},"End":{"Index":1,"X":18,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.374660148255327E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051681E+17},"21_6_1_17_6_1":{"Start":{"Index":1,"X":21,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.37466018244124E+17},"End":{"Index":1,"X":17,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.37466018244124E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052276E+17},"14_1_1_18_6_1":{"Start":{"Index":1,"X":14,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374660180113519E+17},"End":{"Index":1,"X":18,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660180113519E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052257E+17},"66_-10_1_62_-13_1":{"Start":{"Index":1,"X":66,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375152614627101E+17},"End":{"Index":1,"X":62,"Y":-13,"ID":null,"Rotation":0,"Timestamp":6.375152614627101E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767555E+17},"17_10_1_16_11_1":{"Start":{"Index":1,"X":17,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374660148942555E+17},"End":{"Index":1,"X":16,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374660148942555E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051684E+17},"30_15_1_33_17_1":{"Start":{"Index":1,"X":30,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.374660109299671E+17},"End":{"Index":1,"X":33,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374660109299671E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046803E+17},"32_27_1_35_27_1":{"Start":{"Index":1,"X":32,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.375999069580634E+17},"End":{"Index":1,"X":35,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.375999069580634E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376497354668033E+17},"57_-3_1_54_-3_1":{"Start":{"Index":1,"X":57,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152849089714E+17},"End":{"Index":1,"X":54,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152849089714E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767732E+17},"52_9_1_51_10_1":{"Start":{"Index":1,"X":52,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.375032100431702E+17},"End":{"Index":1,"X":51,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.375032100431702E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776088142E+17},"24_2_1_19_1_1":{"Start":{"Index":1,"X":24,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374660173804385E+17},"End":{"Index":1,"X":19,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374660173804385E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052216E+17},"32_32_1_31_30_1":{"Start":{"Index":1,"X":32,"Y":32,"ID":null,"Rotation":0,"Timestamp":6.374660120293486E+17},"End":{"Index":1,"X":31,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.374660120293486E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046826E+17},"41_7_4_44_9_1":{"Start":{"Index":4,"X":41,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374664612124426E+17},"End":{"Index":1,"X":44,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664612124426E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695722E+17},"61_31_1_64_35_1":{"Start":{"Index":1,"X":61,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375213553558748E+17},"End":{"Index":1,"X":64,"Y":35,"ID":null,"Rotation":0,"Timestamp":6.375213553558748E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37533325670179E+17},"57_-5_1_60_-5_1":{"Start":{"Index":1,"X":57,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375153022059204E+17},"End":{"Index":1,"X":60,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375153022059204E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767927E+17},"15_6_2_16_6_1":{"Start":{"Index":2,"X":15,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.3746601826169E+17},"End":{"Index":1,"X":16,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.3746601826169E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052278E+17},"61_-6_1_63_-5_1":{"Start":{"Index":1,"X":61,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.375153059913051E+17},"End":{"Index":1,"X":63,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375153059913051E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767958E+17},"60_-10_1_61_-10_1":{"Start":{"Index":1,"X":60,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153050089583E+17},"End":{"Index":1,"X":61,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153050089583E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767944E+17},"45_8_1_44_8_2":{"Start":{"Index":1,"X":45,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374664600174486E+17},"End":{"Index":2,"X":44,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374664600174486E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695674E+17},"39_10_1_43_10_1":{"Start":{"Index":1,"X":39,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374664609893912E+17},"End":{"Index":1,"X":43,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374664609893912E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695716E+17},"52_17_1_55_18_1":{"Start":{"Index":1,"X":52,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374660125721016E+17},"End":{"Index":1,"X":55,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.374660125721016E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051512E+17},"16_30_1_17_33_1":{"Start":{"Index":1,"X":16,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.375757340111878E+17},"End":{"Index":1,"X":17,"Y":33,"ID":null,"Rotation":0,"Timestamp":6.375757340111878E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979827E+17},"58_-3_1_60_-2_1":{"Start":{"Index":1,"X":58,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152853803508E+17},"End":{"Index":1,"X":60,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375152853803508E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767828E+17},"57_2_1_58_3_1":{"Start":{"Index":1,"X":57,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374789786782917E+17},"End":{"Index":1,"X":58,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.374789786782917E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005706E+17},"58_9_1_59_10_1":{"Start":{"Index":1,"X":58,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374660139072726E+17},"End":{"Index":1,"X":59,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374660139072726E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051628E+17},"13_-1_1_16_2_1":{"Start":{"Index":1,"X":13,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374660178329597E+17},"End":{"Index":1,"X":16,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374660178329597E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052253E+17},"23_-6_1_19_-7_1":{"Start":{"Index":1,"X":23,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.37491081709626E+17},"End":{"Index":1,"X":19,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.37491081709626E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776654E+17},"14_18_1_15_19_1":{"Start":{"Index":1,"X":14,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.374660159513907E+17},"End":{"Index":1,"X":15,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.374660159513907E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051738E+17},"30_19_1_33_20_1":{"Start":{"Index":1,"X":30,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.374660110338195E+17},"End":{"Index":1,"X":33,"Y":20,"ID":null,"Rotation":0,"Timestamp":6.374660110338195E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046807E+17},"45_-3_1_46_-1_1":{"Start":{"Index":1,"X":45,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375031756245503E+17},"End":{"Index":1,"X":46,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375031756245503E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776087553E+17},"17_-2_1_16_1_1":{"Start":{"Index":1,"X":17,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.374790200071222E+17},"End":{"Index":1,"X":16,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374790200071222E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005823E+17},"31_18_1_32_19_1":{"Start":{"Index":1,"X":31,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.3746601100059E+17},"End":{"Index":1,"X":32,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.3746601100059E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046806E+17},"58_-1_1_58_-3_1":{"Start":{"Index":1,"X":58,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375152855605313E+17},"End":{"Index":1,"X":58,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152855605313E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767841E+17},"39_-8_1_37_-7_1":{"Start":{"Index":1,"X":39,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374789888970547E+17},"End":{"Index":1,"X":37,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.374789888970547E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005746E+17},"32_27_1_35_28_1":{"Start":{"Index":1,"X":32,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.37466009492042E+17},"End":{"Index":1,"X":35,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.37466009492042E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046757E+17},"17_-1_1_19_2_1":{"Start":{"Index":1,"X":17,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374660184439685E+17},"End":{"Index":1,"X":19,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374660184439685E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019705229E+17},"33_15_1_32_12_1":{"Start":{"Index":1,"X":33,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.374660145883215E+17},"End":{"Index":1,"X":32,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374660145883215E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019705167E+17},"11_8_1_13_8_1":{"Start":{"Index":1,"X":11,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374660156249037E+17},"End":{"Index":1,"X":13,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374660156249037E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051703E+17},"54_-6_1_61_3_2":{"Start":{"Index":1,"X":54,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.374789463139889E+17},"End":{"Index":2,"X":61,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.37478946313989E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451434E+17},"14_26_1_15_29_1":{"Start":{"Index":1,"X":14,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375757579705402E+17},"End":{"Index":1,"X":15,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.375757579705402E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979962E+17},"38_20_2_37_22_1":{"Start":{"Index":2,"X":38,"Y":20,"ID":null,"Rotation":0,"Timestamp":6.374660104346243E+17},"End":{"Index":1,"X":37,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660104346243E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046797E+17},"62_10_1_63_23_1":{"Start":{"Index":1,"X":62,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374660127530095E+17},"End":{"Index":1,"X":63,"Y":23,"ID":null,"Rotation":0,"Timestamp":6.374660127530095E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051521E+17},"16_16_1_17_17_1":{"Start":{"Index":1,"X":16,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.374668434509025E+17},"End":{"Index":1,"X":17,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374668434509025E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264854E+17},"59_-12_1_60_-11_1":{"Start":{"Index":1,"X":59,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.375152542702611E+17},"End":{"Index":1,"X":60,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.375152542702611E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767158E+17},"41_12_1_43_13_1":{"Start":{"Index":1,"X":41,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374664592671089E+17},"End":{"Index":1,"X":43,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374664592671089E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695663E+17},"57_-10_1_60_-10_1":{"Start":{"Index":1,"X":57,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153021452529E+17},"End":{"Index":1,"X":60,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153021452529E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767922E+17},"52_11_1_61_8_1":{"Start":{"Index":1,"X":52,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374660137599081E+17},"End":{"Index":1,"X":61,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374660137599081E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051621E+17},"60_30_1_65_31_1":{"Start":{"Index":1,"X":60,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.375213460387456E+17},"End":{"Index":1,"X":65,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375213460387456E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701759E+17},"20_29_1_14_30_1":{"Start":{"Index":1,"X":20,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.375757379165743E+17},"End":{"Index":1,"X":14,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.375757379165743E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979901E+17},"64_-3_1_64_-10_1":{"Start":{"Index":1,"X":64,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375153089099561E+17},"End":{"Index":1,"X":64,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153089099561E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768069E+17},"45_7_1_46_9_1":{"Start":{"Index":1,"X":45,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374664611276627E+17},"End":{"Index":1,"X":46,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664611276627E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695721E+17},"54_-2_1_53_-10_1":{"Start":{"Index":1,"X":54,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375152528359095E+17},"End":{"Index":1,"X":53,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375152528359095E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767002E+17},"44_-11_1_48_-9_1":{"Start":{"Index":1,"X":44,"Y":-11,"ID":null,"Rotation":0,"Timestamp":6.375031538505884E+17},"End":{"Index":1,"X":48,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.375031538505884E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375031588794118E+17},"61_29_1_62_31_3":{"Start":{"Index":1,"X":61,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.375213459272448E+17},"End":{"Index":3,"X":62,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.375213459272448E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701755E+17},"23_14_1_22_15_1":{"Start":{"Index":1,"X":23,"Y":14,"ID":null,"Rotation":0,"Timestamp":6.374660143261466E+17},"End":{"Index":1,"X":22,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.374660143261466E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051658E+17},"-52_2_4_-48_1_4":{"Start":{"Index":4,"X":-52,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374668426283771E+17},"End":{"Index":4,"X":-48,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374668426283771E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466875626485E+17},"17_16_1_16_17_1":{"Start":{"Index":1,"X":17,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.374660149650423E+17},"End":{"Index":1,"X":16,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374660149650423E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019705169E+17},"61_-10_1_61_-6_1":{"Start":{"Index":1,"X":61,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.37515308721291E+17},"End":{"Index":1,"X":61,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.37515308721291E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768056E+17},"53_22_1_64_23_1":{"Start":{"Index":1,"X":53,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660123707585E+17},"End":{"Index":1,"X":64,"Y":23,"ID":null,"Rotation":0,"Timestamp":6.374660123707585E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051505E+17},"57_2_1_53_3_1":{"Start":{"Index":1,"X":57,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.37478978781293E+17},"End":{"Index":1,"X":53,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.37478978781293E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005709E+17},"31_28_1_36_30_1":{"Start":{"Index":1,"X":31,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.374660094613436E+17},"End":{"Index":1,"X":36,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.374660094613436E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046756E+17},"62_27_1_63_26_1":{"Start":{"Index":1,"X":62,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.374668956081439E+17},"End":{"Index":1,"X":63,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.374668956081439E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532856E+17},"43_17_1_42_18_1":{"Start":{"Index":1,"X":43,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.375999310410166E+17},"End":{"Index":1,"X":42,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.375999310410166E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376497354668317E+17},"47_27_1_49_30_1":{"Start":{"Index":1,"X":47,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.374660079796141E+17},"End":{"Index":1,"X":49,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.374660079796141E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046675E+17},"12_26_1_13_30_1":{"Start":{"Index":1,"X":12,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375757605089087E+17},"End":{"Index":1,"X":13,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.375757605089087E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979977E+17},"66_27_1_66_27_1":{"Start":{"Index":1,"X":66,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.374668956560014E+17},"End":{"Index":1,"X":66,"Y":27,"ID":null,"Rotation":0,"Timestamp":6.374668956560014E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466935953286E+17},"13_8_1_13_11_1":{"Start":{"Index":1,"X":13,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374660156408777E+17},"End":{"Index":1,"X":13,"Y":11,"ID":null,"Rotation":0,"Timestamp":6.374660156408777E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051706E+17},"60_-5_1_60_-8_3":{"Start":{"Index":1,"X":60,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375153080833339E+17},"End":{"Index":3,"X":60,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.375153080833339E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768047E+17},"53_-10_1_54_-13_1":{"Start":{"Index":1,"X":53,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375152530159121E+17},"End":{"Index":1,"X":54,"Y":-13,"ID":null,"Rotation":0,"Timestamp":6.375152530159121E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767059E+17},"37_-4_1_36_-3_1":{"Start":{"Index":1,"X":37,"Y":-4,"ID":null,"Rotation":0,"Timestamp":6.374789887487194E+17},"End":{"Index":1,"X":36,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.374789887487194E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005742E+17},"53_4_1_52_5_1":{"Start":{"Index":1,"X":53,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374789791219638E+17},"End":{"Index":1,"X":52,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374789791219638E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005716E+17},"61_2_4_55_1_1":{"Start":{"Index":4,"X":61,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.374789447356404E+17},"End":{"Index":1,"X":55,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374789447356404E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451327E+17},"54_25_1_55_26_1":{"Start":{"Index":1,"X":54,"Y":25,"ID":null,"Rotation":0,"Timestamp":6.374660123117062E+17},"End":{"Index":1,"X":55,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.374660123117062E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051501E+17},"13_23_4_13_23_4":{"Start":{"Index":4,"X":13,"Y":23,"ID":null,"Rotation":0,"Timestamp":6.375998865589015E+17},"End":{"Index":4,"X":13,"Y":23,"ID":null,"Rotation":0,"Timestamp":6.375998865589015E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37599892459291E+17},"31_-9_1_31_-9_1":{"Start":{"Index":1,"X":31,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.374668417448225E+17},"End":{"Index":1,"X":31,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.374668417448225E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264841E+17},"57_-2_4_57_-2_4":{"Start":{"Index":4,"X":57,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375152841379724E+17},"End":{"Index":4,"X":57,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.375152841379724E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767672E+17},"45_7_1_45_9_1":{"Start":{"Index":1,"X":45,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374664626217983E+17},"End":{"Index":1,"X":45,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374664626217983E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695763E+17},"35_-20_1_36_-21_1":{"Start":{"Index":1,"X":35,"Y":-20,"ID":null,"Rotation":0,"Timestamp":6.375031688944753E+17},"End":{"Index":1,"X":36,"Y":-21,"ID":null,"Rotation":0,"Timestamp":6.375031688944753E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375151776085377E+17},"60_-10_1_61_-1_1":{"Start":{"Index":1,"X":60,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153049212905E+17},"End":{"Index":1,"X":61,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.375153049212905E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37521271176794E+17},"65_-3_1_66_-10_1":{"Start":{"Index":1,"X":65,"Y":-3,"ID":null,"Rotation":0,"Timestamp":6.375152610263689E+17},"End":{"Index":1,"X":66,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375152610263689E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767316E+17},"52_5_1_53_7_1":{"Start":{"Index":1,"X":52,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.374789792222998E+17},"End":{"Index":1,"X":53,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374789792222998E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005718E+17},"23_12_1_28_16_1":{"Start":{"Index":1,"X":23,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.374660142234557E+17},"End":{"Index":1,"X":28,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.374660142234559E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051649E+17},"31_-8_1_35_-6_1":{"Start":{"Index":1,"X":31,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374910847820008E+17},"End":{"Index":1,"X":35,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.374910847820008E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374969096776685E+17},"23_12_1_22_13_1":{"Start":{"Index":1,"X":23,"Y":12,"ID":null,"Rotation":0,"Timestamp":6.3746601434591E+17},"End":{"Index":1,"X":22,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.3746601434591E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019705166E+17},"28_16_1_27_17_1":{"Start":{"Index":1,"X":28,"Y":16,"ID":null,"Rotation":0,"Timestamp":6.37466014241756E+17},"End":{"Index":1,"X":27,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.374660142417562E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019705165E+17},"41_17_1_42_18_1":{"Start":{"Index":1,"X":41,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.375999310830172E+17},"End":{"Index":1,"X":42,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.375999310830172E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37649735466832E+17},"54_-5_1_54_-10_1":{"Start":{"Index":1,"X":54,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375153003502284E+17},"End":{"Index":1,"X":54,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375153003502284E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767908E+17},"17_1_1_17_-1_1":{"Start":{"Index":1,"X":17,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374790200568461E+17},"End":{"Index":1,"X":17,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374790200568461E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005827E+17},"59_13_1_63_14_1":{"Start":{"Index":1,"X":59,"Y":13,"ID":null,"Rotation":0,"Timestamp":6.374660127158405E+17},"End":{"Index":1,"X":63,"Y":14,"ID":null,"Rotation":0,"Timestamp":6.374660127158405E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37466019705152E+17},"15_18_1_22_19_1":{"Start":{"Index":1,"X":15,"Y":18,"ID":null,"Rotation":0,"Timestamp":6.37466015029308E+17},"End":{"Index":1,"X":22,"Y":19,"ID":null,"Rotation":0,"Timestamp":6.37466015029308E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051692E+17},"47_-8_1_48_-7_1":{"Start":{"Index":1,"X":47,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.375031508998956E+17},"End":{"Index":1,"X":48,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.375031508998956E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375031588794012E+17},"26_-9_2_24_-8_4":{"Start":{"Index":2,"X":26,"Y":-9,"ID":null,"Rotation":0,"Timestamp":6.374668422265732E+17},"End":{"Index":4,"X":24,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374668422265732E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264847E+17},"13_1_1_13_-1_1":{"Start":{"Index":1,"X":13,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.374790201951538E+17},"End":{"Index":1,"X":13,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374790201951538E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005829E+17},"31_22_1_36_24_1":{"Start":{"Index":1,"X":31,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660089906468E+17},"End":{"Index":1,"X":36,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.374660089906468E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046739E+17},"63_0_1_67_4_1":{"Start":{"Index":1,"X":63,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789449073088E+17},"End":{"Index":1,"X":67,"Y":4,"ID":null,"Rotation":0,"Timestamp":6.374789449073088E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451329E+17},"24_-12_1_27_-10_1":{"Start":{"Index":1,"X":24,"Y":-12,"ID":null,"Rotation":0,"Timestamp":6.37466842068945E+17},"End":{"Index":1,"X":27,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.37466842068945E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374668756264845E+17},"16_8_1_17_9_1":{"Start":{"Index":1,"X":16,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374660148698935E+17},"End":{"Index":1,"X":17,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374660148698935E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051683E+17},"37_22_1_38_31_1":{"Start":{"Index":1,"X":37,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660096432536E+17},"End":{"Index":1,"X":38,"Y":31,"ID":null,"Rotation":0,"Timestamp":6.374660096432536E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046767E+17},"56_1_1_56_-2_1":{"Start":{"Index":1,"X":56,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.37478945982044E+17},"End":{"Index":1,"X":56,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.37478945982044E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451427E+17},"41_-7_4_41_-7_2":{"Start":{"Index":4,"X":41,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.375031504992253E+17},"End":{"Index":2,"X":41,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.375031504992253E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375031588793964E+17},"58_-6_1_60_-5_1":{"Start":{"Index":1,"X":58,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.375152567536268E+17},"End":{"Index":1,"X":60,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375152567536268E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767241E+17},"67_24_1_69_29_1":{"Start":{"Index":1,"X":67,"Y":24,"ID":null,"Rotation":0,"Timestamp":6.37521308142907E+17},"End":{"Index":1,"X":69,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.37521308142907E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375333256701585E+17},"64_22_1_66_23_1":{"Start":{"Index":1,"X":64,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.37521341362014E+17},"End":{"Index":1,"X":66,"Y":23,"ID":null,"Rotation":0,"Timestamp":6.37521341362014E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37533325670169E+17},"67_3_2_63_8_1":{"Start":{"Index":2,"X":67,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.374789759042659E+17},"End":{"Index":1,"X":63,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374789759042659E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37486429000563E+17},"32_6_1_35_7_1":{"Start":{"Index":1,"X":32,"Y":6,"ID":null,"Rotation":0,"Timestamp":6.374660146764667E+17},"End":{"Index":1,"X":35,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374660146764667E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051675E+17},"37_22_4_37_22_4":{"Start":{"Index":4,"X":37,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660108488714E+17},"End":{"Index":4,"X":37,"Y":22,"ID":null,"Rotation":0,"Timestamp":6.374660108488714E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197046802E+17},"52_-8_1_66_3_1":{"Start":{"Index":1,"X":52,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.374789454846477E+17},"End":{"Index":1,"X":66,"Y":3,"ID":null,"Rotation":0,"Timestamp":6.374789454846477E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789466451418E+17},"59_-6_4_56_-7_4":{"Start":{"Index":4,"X":59,"Y":-6,"ID":null,"Rotation":0,"Timestamp":6.375152598236755E+17},"End":{"Index":4,"X":56,"Y":-7,"ID":null,"Rotation":0,"Timestamp":6.375152598236755E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711767278E+17},"19_30_1_18_26_1":{"Start":{"Index":1,"X":19,"Y":30,"ID":null,"Rotation":0,"Timestamp":6.375757378052397E+17},"End":{"Index":1,"X":18,"Y":26,"ID":null,"Rotation":0,"Timestamp":6.375757378052397E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375817277979898E+17},"57_32_1_59_34_1":{"Start":{"Index":1,"X":57,"Y":32,"ID":null,"Rotation":0,"Timestamp":6.374669006152724E+17},"End":{"Index":1,"X":59,"Y":34,"ID":null,"Rotation":0,"Timestamp":6.374669006152724E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532918E+17},"32_-22_4_39_-16_4":{"Start":{"Index":4,"X":32,"Y":-22,"ID":null,"Rotation":0,"Timestamp":6.375031840187018E+17},"End":{"Index":4,"X":39,"Y":-16,"ID":null,"Rotation":0,"Timestamp":6.375031840187018E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37515177608759E+17},"31_0_1_30_-1_1":{"Start":{"Index":1,"X":31,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660172373373E+17},"End":{"Index":1,"X":30,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374660172373373E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052206E+17},"12_-2_1_13_1_1":{"Start":{"Index":1,"X":12,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.37479019924788E+17},"End":{"Index":1,"X":13,"Y":1,"ID":null,"Rotation":0,"Timestamp":6.37479019924788E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005818E+17},"62_-2_2_62_-2_1":{"Start":{"Index":2,"X":62,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.37515307601291E+17},"End":{"Index":1,"X":62,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.37515307601291E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37521271176803E+17},"63_-5_1_63_-1_1":{"Start":{"Index":1,"X":63,"Y":-5,"ID":null,"Rotation":0,"Timestamp":6.375153080866239E+17},"End":{"Index":1,"X":63,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.37515308086624E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375212711768049E+17},"-2_2_1_-11_-8_3":{"Start":{"Index":1,"X":-2,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.375333777832095E+17},"End":{"Index":3,"X":-11,"Y":-8,"ID":null,"Rotation":0,"Timestamp":6.375333777832095E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.375454429533898E+17},"1_-2_1_1_-2_1":{"Start":{"Index":1,"X":1,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.376497366496886E+17},"End":{"Index":1,"X":1,"Y":-2,"ID":null,"Rotation":0,"Timestamp":6.376497366496886E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376722884717436E+17},"59_28_1_60_29_1":{"Start":{"Index":1,"X":59,"Y":28,"ID":null,"Rotation":0,"Timestamp":6.374669028491391E+17},"End":{"Index":1,"X":60,"Y":29,"ID":null,"Rotation":0,"Timestamp":6.374669028491391E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374669359532924E+17},"45_-1_1_47_0_1":{"Start":{"Index":1,"X":45,"Y":-1,"ID":null,"Rotation":0,"Timestamp":6.374789863696978E+17},"End":{"Index":1,"X":47,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374789863696978E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374864290005729E+17},"45_7_1_45_8_1":{"Start":{"Index":1,"X":45,"Y":7,"ID":null,"Rotation":0,"Timestamp":6.374664613804756E+17},"End":{"Index":1,"X":45,"Y":8,"ID":null,"Rotation":0,"Timestamp":6.374664613804758E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374664697695725E+17},"56_9_1_57_10_1":{"Start":{"Index":1,"X":56,"Y":9,"ID":null,"Rotation":0,"Timestamp":6.374660138847195E+17},"End":{"Index":1,"X":57,"Y":10,"ID":null,"Rotation":0,"Timestamp":6.374660138847195E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197051626E+17},"38_17_1_41_15_1":{"Start":{"Index":1,"X":38,"Y":17,"ID":null,"Rotation":0,"Timestamp":6.375999249579466E+17},"End":{"Index":1,"X":41,"Y":15,"ID":null,"Rotation":0,"Timestamp":6.375999249579466E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.376497354668157E+17},"15_2_1_15_5_1":{"Start":{"Index":1,"X":15,"Y":2,"ID":null,"Rotation":0,"Timestamp":6.37466018102875E+17},"End":{"Index":1,"X":15,"Y":5,"ID":null,"Rotation":0,"Timestamp":6.37466018102875E+17},"Delete":true,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.374660197052261E+17},"54_-10_1_57_-13_1":{"Start":{"Index":1,"X":54,"Y":-10,"ID":null,"Rotation":0,"Timestamp":6.375152531432465E+17},"End":{"Index":1,"X":57,"Y":-13,"ID":null,"Rotation":0,"Timestamp":6.375152531432465E+17},"Delete":false,"X":0,"Y":0,"ID":null,"Rotation":0,"Timestamp":6.37521271176706E+17}}} \ No newline at end of file diff --git a/legacyDb/test b/legacyDb/test new file mode 100644 index 0000000..e69de29