diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml
new file mode 100644
index 0000000..6d3b049
--- /dev/null
+++ b/.github/workflows/dotnet.yml
@@ -0,0 +1,43 @@
+# This workflow will build a .NET project
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
+
+name: .NET
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: Setup .NET
+ uses: actions/setup-dotnet@v3
+ with:
+ dotnet-version: 6.0.x
+ - name: Restore dependencies
+ run: dotnet restore
+ - name: Build for linux
+ run: dotnet publish -r win-x64 -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true --self-contained true --configuration Release
+ - name: Build for windows
+ run: dotnet publish -r linux-x64 -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true --self-contained true --configuration Release
+ - name: Build for macos
+ run: dotnet publish -r osx-x64 -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true --self-contained true --configuration Release
+ # upload artifacts
+ - uses: actions/upload-artifact@v4
+ with:
+ name: macOS release
+ path: /home/runner/work/TABGCommunityServer/TABGCommunityServer/TABGServer/bin/Release/net7.0/osx-x64/publish/TABGCommunityServer
+ - uses: actions/upload-artifact@v4
+ with:
+ name: linux release
+ path: /home/runner/work/TABGCommunityServer/TABGCommunityServer/TABGServer/bin/Release/net7.0/linux-x64/publish/TABGCommunityServer
+ - uses: actions/upload-artifact@v4
+ with:
+ name: windows release
+ path: /home/runner/work/TABGCommunityServer/TABGCommunityServer/TABGServer/bin/Release/net7.0/win-x64/publish/TABGCommunityServer.exe
diff --git a/TABGEmulationClient/Program.cs b/TABGEmulationClient/Program.cs
new file mode 100644
index 0000000..2ba0873
--- /dev/null
+++ b/TABGEmulationClient/Program.cs
@@ -0,0 +1,66 @@
+using System;
+using ENet;
+
+string ip = "0.0.0.0";
+ushort port = 5000;
+
+using (Host client = new Host())
+{
+ Address address = new Address();
+
+ address.SetHost(ip);
+ address.Port = port;
+ try
+ {
+ client.Create();
+ } catch (Exception)
+ {
+ Console.WriteLine("server is not running!! exiting...");
+ return;
+ }
+
+ Peer peer = client.Connect(address);
+
+ Event netEvent;
+
+ while (!Console.KeyAvailable)
+ {
+ bool polled = false;
+
+ while (!polled)
+ {
+ if (client.CheckEvents(out netEvent) <= 0)
+ {
+ if (client.Service(15, out netEvent) <= 0)
+ break;
+
+ polled = true;
+ }
+
+ switch (netEvent.Type)
+ {
+ case EventType.None:
+ break;
+
+ case EventType.Connect:
+ Console.WriteLine("Client connected to server");
+ break;
+
+ case EventType.Disconnect:
+ Console.WriteLine("Client disconnected from server");
+ break;
+
+ case EventType.Timeout:
+ Console.WriteLine("Client connection timeout");
+ break;
+
+ case EventType.Receive:
+ Console.WriteLine("Packet received from server - Channel ID: " + netEvent.ChannelID + ", Data length: " + netEvent.Packet.Length);
+ netEvent.Packet.Dispose();
+ break;
+ }
+ }
+ }
+
+ client.Flush();
+}
\ No newline at end of file
diff --git a/TABGEmulationClient/TABGEmulationClient.csproj b/TABGEmulationClient/TABGEmulationClient.csproj
new file mode 100644
index 0000000..22a2841
--- /dev/null
+++ b/TABGEmulationClient/TABGEmulationClient.csproj
@@ -0,0 +1,14 @@
+
+
+
+ Exe
+ net7.0
+ enable
+ enable
+
+
+
+
+
+
+
diff --git a/TABGServer/AdminCommandHandler.cs b/TABGServer/AdminCommandHandler.cs
new file mode 100644
index 0000000..0761833
--- /dev/null
+++ b/TABGServer/AdminCommandHandler.cs
@@ -0,0 +1,255 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Reflection;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TABGCommunityServer
+{
+ internal class AdminCommandHandler
+ {
+ private string command;
+ public bool shouldSendPacket = false;
+ public EventCode code;
+ public string? notification;
+ public byte[] packetData;
+ private byte executor;
+ public AdminCommandHandler(string command, byte executor) {
+ this.command = command;
+ // filler data
+ this.packetData = new byte[1];
+ this.notification = "";
+ this.executor = executor;
+ }
+
+ public void Handle(PlayerConcurencyHandler playerConncurencyHandler)
+ {
+ this.notification = null;
+ this.packetData = new byte[1];
+ this.shouldSendPacket = false;
+
+ Console.WriteLine("Processing command " + command);
+
+ if (command.StartsWith("/"))
+ {
+ command = command.Substring(1);
+ }
+ else
+ {
+ Console.WriteLine("Debug: command does not start with a /");
+ return;
+ }
+
+ string[] parts = command.Split(' ');
+
+ if (parts.Length == 0)
+ {
+ // invalid command (just /)
+ return;
+ }
+
+ switch (parts[0])
+ {
+ case "kill":
+ // format: /kill VictimID KillerID VictimName
+ // example: /kill 0 0 Tester
+ if(parts.Length != 4)
+ {
+ Console.WriteLine("Ignoring invalid command!");
+ return;
+ }
+ try
+ {
+ int victim = int.Parse(parts[1]);
+ int killer = int.Parse(parts[2]);
+ string victimName = parts[3];
+
+ this.shouldSendPacket = true;
+ this.packetData = new PlayerHandler().KillPlayer(victim, killer, victimName);
+ this.code = EventCode.PlayerDead;
+
+ return;
+
+ } catch(Exception error)
+ {
+ Console.WriteLine(error.Message);
+ }
+
+ return;
+ case "give":
+ // format: /give ItemID ItemAmount
+ // example: /give 32 1
+
+ if (parts.Length != 3)
+ {
+ Console.WriteLine("Ignoring invalid command!");
+ return;
+ }
+
+ try
+ {
+ int itemid = int.Parse(parts[1]);
+ int amount = int.Parse(parts[2]);
+
+ this.shouldSendPacket = true;
+ this.packetData = new PlayerHandler().GiveItem(itemid, amount);
+ this.code = EventCode.PlayerLootRecieved;
+
+ return;
+ } catch(Exception error)
+ {
+ Console.WriteLine(error.Message);
+ }
+ return;
+ case "notification":
+ this.packetData = new PlayerHandler().SendNotification(executor, "WELCOME - RUNNING COMMUNITY SERVER V1.TEST");
+ this.shouldSendPacket = true;
+ this.code = EventCode.PlayerDead;
+ return;
+ case "kit":
+ Console.WriteLine("Giving kit to player " + executor);
+ this.packetData = new PlayerHandler().GiveGear();
+ this.shouldSendPacket = true;
+ this.code = EventCode.PlayerLootRecieved;
+ this.notification = "You got the default kit!";
+ return;
+ case "coords":
+ var executorData = playerConncurencyHandler.Players[executor];
+ var loc = executorData.Location;
+ string notif = "COORDS- X: " + loc.X.ToString() + " Y: " + loc.Y.ToString() + " Z: " + loc.Z.ToString();
+ this.packetData = new PlayerHandler().SendNotification(executor, notif);
+ this.code = EventCode.PlayerDead;
+ this.shouldSendPacket = true;
+ return;
+ case "broadcast":
+ if (parts.Length != 2)
+ {
+ Console.WriteLine("Ignoring invalid command!");
+ return;
+ }
+ foreach (var item in playerConncurencyHandler.Players)
+ {
+ item.Value.PendingBroadcastPackets.Add(new Packet(EventCode.PlayerDead, new PlayerHandler().SendNotification(item.Value.Id, "ANNOUNCE: " + parts[1])));
+ }
+ return;
+ case "revive":
+ this.shouldSendPacket = false;
+ foreach (var item in playerConncurencyHandler.Players)
+ {
+ item.Value.PendingBroadcastPackets.Add(new Packet(EventCode.ReviveState, new PlayerHandler().RevivePlayer(executor)));
+ item.Value.PendingBroadcastPackets.Add(new Packet(EventCode.PlayerHealed, new PlayerHandler().SetPlayerHealth(executor, 100f)));
+ }
+ this.notification = "You were revived by SERVER";
+ return;
+ case "heal":
+ float health = 100f;
+ if (parts.Length == 2)
+ {
+ try
+ {
+ health = float.Parse(parts[1]);
+ } catch(Exception error)
+ {
+ Console.WriteLine("Parsing error!" + error.Message);
+ return;
+ }
+ }
+ foreach (var item in playerConncurencyHandler.Players)
+ {
+ item.Value.PendingBroadcastPackets.Add(new Packet(EventCode.PlayerHealed, new PlayerHandler().SetPlayerHealth(executor, health)));
+ }
+ this.notification = "Healed!";
+ return;
+ case "state":
+ try
+ {
+ TABGPlayerState playerState = (TABGPlayerState)Byte.Parse(parts[1]);
+ float playerHealth = float.Parse(parts[2]);
+
+ foreach (var item in playerConncurencyHandler.Players)
+ {
+ item.Value.PendingBroadcastPackets.Add(new Packet(EventCode.PlayerEnteredChunk, new PlayerHandler().SimulateChunkEnter(playerConncurencyHandler, executor, playerState, playerHealth)));
+ }
+ this.notification = "Player state changed!";
+ } catch(Exception e)
+ {
+ Console.WriteLine(e.Message);
+ this.notification = "Player state change ERROR!";
+ }
+ return;
+
+ case "gamestate":
+ if (parts.Length < 2)
+ {
+ Console.WriteLine("Ignoring invalid command!");
+ return;
+ }
+
+ // broadcast instead of send
+ this.code = EventCode.GameStateChanged;
+
+ switch (parts[1])
+ {
+ case "waiting":
+ this.packetData = GameHandler.SetWaitingForPlayersState();
+ break;
+ case "started":
+ this.packetData = GameHandler.SetStarted();
+ break;
+ case "countdown":
+ this.packetData = GameHandler.SetCountDown(Int32.Parse(parts[2]));
+ break;
+ case "flying":
+ this.packetData = GameHandler.SetFlying(Byte.Parse(parts[2]));
+ break;
+ }
+
+ foreach (var item in playerConncurencyHandler.Players)
+ {
+ item.Value.PendingBroadcastPackets.Add(new Packet(this.code, this.packetData));
+ }
+
+ this.packetData = new PlayerHandler().SendNotification(executor, "GAME STATE CHANGED!");
+ this.code = EventCode.PlayerDead;
+ this.shouldSendPacket = true;
+ return;
+ case "ring":
+ // Ring Update
+ // 1 = Set Size, and Position
+ // 0 = TimeTraveled (sync time)
+ // 2 = Start moving ring
+
+ // parts[1] is the Ring Update Type # Byte
+ // parts[2] is either the "Time Travelled" or the "Ring Index" in "Set Size & Rotation" # Single
+ // parts[3] is the X if "Set Size & Position" # Single
+ // parts[4] is the Y if "Set Size & Position" # Single
+ // parts[5] is the Z if "Set Size & Position" # Single
+ // parts[6] is the Size if "Set Size & Position" # Single
+
+ while(parts.Length < 7)
+ {
+ parts = parts.Concat(new string[] { "0" }).ToArray();
+ }
+
+ byte[] sendByte = GameHandler.GenerateRingPacket(
+ Byte.Parse(parts[1]),
+ Byte.Parse(parts[2]),
+ Single.Parse(parts[3]),
+ Single.Parse(parts[4]),
+ Single.Parse(parts[5]),
+ Single.Parse(parts[6]));
+
+ this.packetData = sendByte;
+ this.code = EventCode.RingUpdate;
+ this.shouldSendPacket = true;
+ return;
+ case "start":
+ TABGServer.startGame = true;
+ return;
+ default: return;
+ }
+ }
+ }
+}
diff --git a/TABGServer/DataFiles/ItemSpawns.csv b/TABGServer/DataFiles/ItemSpawns.csv
new file mode 100644
index 0000000..db3efd3
--- /dev/null
+++ b/TABGServer/DataFiles/ItemSpawns.csv
@@ -0,0 +1,14928 @@
+X,Y,Z
+629.8433,125.3815,487.3761
+701.8717,118.8182,537.0824
+-465.7136,126.61,292.2499
+-660.9805,120.7317,371.695
+-477.7635,173.4198,-577.6263
+-471.6206,170.9291,-463.3307
+-468.6045,167.7964,-437.0649
+-467.2116,173.5392,-582.5732
+-478.8606,168.0469,-447.4621
+-488.7165,171.5897,-445.4647
+-468.9695,173.6258,-557.1655
+-467.1566,172.8813,-588.1821
+-504.0565,122.0785,280.7358
+-441.7696,169.8835,-552.6462
+-473.7325,167.5048,-457.4278
+-468.613,170.347,-568.4534
+-492.6724,169.9929,-565.9866
+-444.442,169.8857,-598.3532
+-457.8446,169.7143,-586.6343
+-460.056,165.7614,-445.9274
+-494.8706,168.3958,-447.598
+-480.1196,168.0723,-557.6136
+155.57,116.26,-62.6301
+155.57,116.26,-39.13007
+180.94,116.26,-76.15001
+-90.67646,112.79,662.5192
+-546.5775,118.31,363.1624
+107.3356,139.8797,-372.2911
+-170.7252,132.8731,502.7177
+306.8966,149.3091,123.8119
+-715.8432,121.1637,97.88245
+-341.5422,131.6604,552.4244
+151.3333,146.6477,391.4663
+411.7141,126.0615,-691.3011
+-252.9395,139.5211,-105.8833
+146.6426,140.1178,422.1674
+-139.4995,132.7544,521.7849
+-377.924,129.5447,363.7406
+124.4032,140.8976,392.5889
+580.047,125.0173,-504.1631
+-735.0811,123.1261,138.0524
+229.3408,144.1358,-562.1685
+-129.022,145.8519,-724.2946
+-768.1177,124.1553,142.5063
+-760.0352,124.3805,134.3405
+134.3939,137.1695,440.0444
+-163.7189,132.4759,522.4333
+452.2338,136.3766,-162.5002
+202.3024,125.0385,87.73828
+-360.3563,132.7854,562.9065
+-309.4864,136.6646,79.79529
+-257.8849,139.1557,-81.19989
+164.8719,143.3907,-388.8731
+227.3214,147.9875,-523.9647
+-155.8253,129.7081,500.303
+133.4542,139.2432,-332.7386
+225.0166,147.4327,-542.3627
+-348.8555,135.2907,93.81335
+143.7128,144.127,-396.7841
+175.9087,142.59,-365.7008
+360.7622,134.6213,-176.4891
+304.0284,162.2344,390.7686
+342.9023,131.4704,-96.36609
+-326.5842,133.828,86.48206
+126.2612,137.8871,416.4252
+444.816,139.7644,-185.3361
+-354.7264,135.0774,569.9071
+565.344,126.6833,-505.2729
+107.8817,139.1371,-350.0012
+-68.82999,115.042,541.2303
+-29.15245,121.6391,514.1176
+-47.00426,116.1418,547.9803
+-614.1092,119.6701,287.4815
+-553.9092,119.2884,293.0399
+-593.6396,122.9897,259.8595
+-89.37431,112.79,663.9638
+180.34,116.26,-74.30002
+156.17,116.26,-40.98007
+156.17,116.26,-64.4801
+-563.2401,122.9691,265.1298
+666.6981,118.0861,634.2753
+142.9359,133.44,-363.3253
+55.43002,117.56,7.100018
+138.2196,136.24,-363.1117
+137.37,133.49,-361.97
+-103.7403,124.6801,153.8833
+758.7847,122.1298,493.2121
+645.0943,123.6126,498.5233
+705.4409,118.4841,525.9634
+695.3597,118.5043,529.9377
+746.7452,120.2691,519.9099
+668.7924,121.9074,542.3817
+762.5452,122.5146,500.8673
+568.3036,126.6446,559.991
+617.4161,124.1832,486.8675
+629.0347,124.2849,475.1233
+557.9969,128.6976,566.3354
+697.0505,118.4702,544.7609
+599,125.8019,561.4212
+584.1069,127.3329,571.5414
+563.4092,126.5257,546.4511
+646.982,124.5458,488.9196
+744.0383,119.3982,500.0928
+732.913,122.0695,514.8631
+738.4421,121.6401,518.0533
+593.0334,127.6887,569.4221
+754.8129,121.8346,486.6996
+714.3766,118.476,540.2516
+-501.0423,165.8654,-489.022
+-452.3877,165.1398,-484.3664
+-416.5919,165.726,-526.4364
+-455.2669,163.2476,-451.1219
+-472.474,165.8983,-487.669
+-68.92668,112.79,657.7675
+140.58,116.26,-79.09008
+195.9301,116.26,-59.69003
+140.58,116.26,-55.59005
+612.7277,118.1056,651.7748
+-480.1222,165.5258,-437.4003
+-482.8795,167.885,-564.7673
+-489.0217,167.8361,-561.5165
+-460.4443,169.8883,-599.2206
+-452.7048,169.8982,-598.1788
+-479.6902,168.5745,-484.6725
+-452.761,170.405,-561.7736
+-451.6918,169.8793,-604.8454
+-505.1529,119.7312,374.3464
+-518.6669,165.8587,-479.2833
+-428.9755,166.5944,-545.5425
+-498.3636,165.8825,-506.4905
+639.3081,118.04,597.5909
+480.8748,157.5812,26.29948
+-43.62677,121.3968,524.2249
+-36.20669,119.3134,540.7045
+-76.77895,117.7459,527.0192
+119.6757,134.6938,-392.9652
+640.673,122.168,595.6456
+-571.3334,126.3176,356.6673
+663.4249,121.03,578.1703
+-37.47048,120.9519,516.7762
+-32.32202,115.566,548.7324
+-70.54076,115.5452,534.0777
+354.1981,162.64,134.9616
+684.4927,120.89,598.6186
+665.0731,118.1162,632.6876
+162.6744,133.45,-342.856
+-506.0882,165.4296,-469.4452
+-496.9394,165.4315,-464.7806
+-466.0199,167.3153,-564.6425
+-434.9258,167.22,-588.2869
+-570.7218,119.322,355.8314
+619.8097,117.92,651.4882
+-569.7241,120.7939,361.6619
+686.1328,130.27,568.1139
+691.0884,130.708,602.7264
+639.473,129.908,575.0388
+629.418,124.1236,635.5376
+627.8143,129.908,589.6077
+-425.146,164.6864,-531.5171
+-475.0762,165.7396,-512.5185
+-522.7196,165.8521,-488.8492
+655.8986,117.95,619.7418
+655.9868,117.95,615.5899
+355,162.64,135.4792
+-437.7849,122.0819,315.023
+-543.9152,123.0552,260.7192
+-566.8043,127.9691,256.6792
+-536.907,122.9629,265.1501
+-524.2369,121.2236,277.6904
+-597.5523,122.8643,299.5515
+-546.0659,122.0752,280.7718
+-553.9929,124.5552,266.2469
+-498.4608,122.752,275.2533
+-517.23,120.1578,373.0898
+-457.0284,166.6928,-609.8359
+-454.9135,167.5023,-574.7786
+-484.3271,165.4377,-478.1419
+-431.171,167.4333,-583.7535
+-531.8806,165.8321,-492.6818
+-434.8604,164.9418,-529.4729
+-479.0074,165.755,-503.3994
+479.7677,155.526,31.41454
+165.6536,133.5972,-342.9726
+-480.7355,118.724,313.0984
+-487.7623,168.5482,-472.4254
+-461.4437,170.5489,-576.0458
+-437.9857,169.8396,-548.2903
+-424.7008,170.7804,-582.3229
+689.6291,130.551,565.7133
+122.6111,134.6403,-392.4251
+-493.458,118.291,330.7863
+658.2823,117.95,620.0626
+-463.1451,170.5747,-577.9456
+-490.1251,168.5482,-471.4654
+-423.0062,170.8724,-580.4191
+-439.6868,169.8623,-550.1904
+119.5268,138.4942,-389.9399
+658.4615,121.877,584.7416
+-511.1631,165.8605,-504.3719
+-487.7454,166.2336,-517.7506
+-446.568,166.3593,-539.4548
+-508.4686,166.5123,-524.4796
+162.8672,137.877,-340.8604
+-423.834,176.1994,-614.7047
+-490.455,171.0902,-592.9737
+-411.7563,176.0707,-601.7855
+-462.4918,168.9957,-464.2604
+-504.7866,130.0031,284.2656
+727.1394,134.5129,12.83312
+-425.6336,164.6996,-531.4692
+-475.318,165.7344,-512.0922
+-523.1486,165.8443,-489.0862
+525.4086,148.91,-392.6232
+523.7466,152.09,-399.6611
+524.6549,152.09,-398.3415
+522.7812,152.09,-398.2663
+523.4407,152.09,-396.7156
+520.9474,148.86,-396.3143
+521.92,148.86,-394.2842
+522.5466,148.86,-395.1553
+527.6173,148.86,-391.1484
+527.2479,148.86,-390.1791
+531.0093,148.86,-386.6966
+532.2294,152.08,-392.7089
+530.9522,152.09,-391.0001
+530.0226,148.86,-387.5898
+531.2895,148.86,-387.3883
+532.9199,136.3566,-402.7898
+531.1413,136.835,-398.9076
+529.8939,129.49,-398.7154
+529.2458,129.49,-398.1313
+529.2344,129.49,-398.8955
+542.7188,140.8,-412.296
+533.5964,141.02,-406.5349
+527.3755,141.02,-399.5101
+530.0484,141.01,-401.9798
+-532.7818,122.1283,272.8102
+682.628,130.27,569.3616
+483.0293,157.2159,22.13747
+-635.6597,129.6276,288.7099
+-18.11019,122.0856,522.8627
+-70.11314,115.2944,512.9716
+-41.32053,122.5586,506.6091
+-89.74494,117.7397,535.2144
+657.3347,117.95,619.9958
+-644.9988,116.46,375.2383
+-662.1388,116.11,401.4583
+-670.3867,125.7555,320.7237
+-609.9577,114.5533,388.4139
+-608.2116,124.7385,264.5032
+-457.263,121.4876,306.8474
+-526.5444,117.7086,303.6823
+-683.1196,117.5515,381.2916
+637.4983,118.04,596.5895
+-502.7689,166.6587,-525.4415
+-507.3093,165.8805,-508.6825
+-441.0842,166.0945,-537.6406
+-493.0315,166.4571,-520.0829
+630.8932,130.632,613.3618
+636.261,131.5965,622.1954
+626.2901,130.9702,604.5952
+619.4482,118.63,625.7826
+611.4924,117.651,646.2396
+-481.7881,118.724,313.4682
+411.5778,122.0959,-688.9835
+-253.5392,135.5182,-103.7077
+-343.5127,127.6762,551.2584
+153.9418,142.9791,390.5421
+304.6742,145.3819,124.6802
+-715.8728,117.1862,100.1836
+106.6696,135.77,-370.3461
+-172.6931,129.1959,504.6469
+-357.6145,129.123,563.338
+451.2507,132.6735,-165.0372
+-166.0884,128.633,521.5768
+133.3287,133.1432,438.1027
+204.897,121.2528,87.5083
+-128.3479,142.0078,-721.8688
+229.4474,139.6769,-563.2745
+-758.4901,120.3563,132.7484
+-765.6225,120.6268,144.0684
+126.5441,137.4243,390.4749
+-140.2922,129.0291,524.3558
+146.08,136.3597,419.5835
+-378.381,125.5717,361.4773
+581.8872,120.8263,-503.7563
+-735.9395,119.4317,140.6469
+302.2456,158.2817,389.2474
+175.9747,138.7226,-368.1818
+143.2135,139.9449,-394.9464
+362.4806,130.4851,-177.5164
+225.9423,143.4126,-544.3871
+-350.1567,131.6946,91.26563
+135.9444,135.3825,-332.6424
+-158.4143,125.9718,500.9762
+-257.0217,135.2209,-83.41101
+-306.6309,133.0943,80.25891
+226.7363,144.0028,-526.1774
+163.2547,139.4289,-387.1985
+109.3643,135.1512,-348.2604
+563.522,122.8113,-503.5983
+-356.6426,131.1723,571.3884
+-326.9594,129.7118,84.47388
+127.708,133.838,418.0461
+446.8822,135.673,-185.6641
+340.9149,127.7527,-98.19482
+683.9477,120.89,593.5479
+-567.6063,123.8138,267.1912
+42.05001,117.56,7.100033
+-72.478,116.8429,538.439
+-32.37472,124.3619,516.676
+-45.66844,119.2533,544.3918
+664.1419,121.03,583.2195
+484.1017,157.206,22.81047
+690.4636,130.551,566.8053
+628.8658,125.5031,486.373
+700.8837,118.8496,536.0828
+-480.1981,167.6474,-456.1219
+-496.0754,169.2463,-571.5894
+-471.9955,170.4372,-574.1173
+-445.1584,170.1386,-558.3013
+-450.0242,169.6082,-594.8472
+-454.4536,169.7123,-580.9747
+-496.1837,168.4113,-454.0637
+-466.5023,166.2682,-444.6171
+690.0496,130.551,565.8013
+730.978,133.9996,14.49417
+-494.5872,118.291,330.8509
+611.7842,117.7,651.8589
+-568.4678,123.8875,266.825
+-633.5133,127.966,287.1195
+-86.48941,117.3075,603.3914
+652.0255,118.04,610.1411
+601.6221,118.0398,617.5954
+-486.5382,168.0777,-559.8533
+-485.1135,165.5258,-433.8427
+-485.4182,167.8343,-566.4749
+772.8589,120.4921,-650.0457
+769.9927,120.4799,-647.7212
+495.2147,127.654,-325.394
+435.819,149.2604,-333.821
+640.3605,121.877,595.3885
+476.2856,158.0101,27.94119
+726.6537,134.7734,7.066467
+8.914135,1047.358,195.8212
+8.645125,800.226,434.4264
+6.058842,786.7043,408.3103
+7.733702,1021.834,180.4939
+-633.4015,127.3982,285.8422
+481.8228,157.33,24.05757
+-494.8896,118.291,335.5078
+620.2476,118.629,631.2501
+656.1974,117.95,616.8455
+350.9487,165.6678,136.448
+-680.3943,118.1281,384.5129
+-528.8508,118.1886,307.2301
+-605.9276,115.8933,388.7282
+-668.9539,125.6897,324.7336
+-604.0825,125.7509,264.2546
+-453.2328,122.8276,307.1616
+-658.1086,117.45,401.7726
+-640.9687,117.8,375.5526
+300.6061,153.8971,392.9429
+359.0364,125.9672,-179.3315
+172.0033,134.3484,-367.367
+147.1515,135.5647,-395.8822
+-353.3619,127.1943,93.51135
+222.6533,138.5312,-543.4258
+-156.9952,121.7952,504.9901
+135.7058,131.3295,-337.0112
+224.0146,139.3317,-523.6589
+166.8531,135.0892,-385.2522
+-261.1191,130.9254,-83.98468
+-306.0298,128.9279,76.03406
+111.7067,130.8597,-351.6759
+566.8346,118.62,-500.9471
+-353.8339,127.4619,575.1184
+445.1499,131.5369,-189.5962
+131.3306,130.2704,414.9286
+-331.2308,125.8227,85.95667
+339.1234,123.1382,-94.86823
+-249.4426,131.1853,-103.8245
+415.5978,117.7726,-689.8307
+152.2268,138.7336,386.7207
+-345.4908,123.7908,555.3279
+-711.6794,113.0194,99.39453
+307.0593,141.0404,128.0016
+-169.5019,124.6671,506.8549
+110.737,131.4172,-370.6271
+-358.3452,124.1944,560.0602
+203.4268,116.5872,84.09656
+-166.7594,124.3305,525.652
+132.0665,128.2876,441.3275
+447.9139,128.1866,-162.9628
+-762.0184,115.5781,132.2108
+-763.8906,116.142,140.5388
+-126.696,136.8784,-724.4241
+225.7644,135.6929,-560.798
+-732.6901,114.4455,140.262
+580.7241,116.4477,-507.635
+123.587,133.2771,387.3722
+-382.0223,121.2377,363.3551
+143.6149,131.3666,421.7192
+-136.374,124.5517,524.7679
+655.5992,118.04,585.9426
+688.0462,130.275,567.5002
+476.5816,157.8612,26.41747
+-572.0574,121.1519,362.4321
+119.4399,138.0114,-387.6005
+-500.1692,165.8605,-486.1062
+-415.0627,165.9519,-529.0584
+-453.2837,165.3152,-487.2699
+-473.3516,165.836,-490.5828
+-456.1386,163.7301,-453.9979
+-534.2928,120.925,273.872
+581.6581,119.5825,630.7533
+-532.8412,120.9746,273.6227
+411.8667,126.0541,-693.6472
+-252.3288,139.5519,-108.1534
+-339.7677,131.694,553.9662
+149.0847,146.3705,392.0944
+309.0908,149.2633,122.969
+-715.6483,121.1715,95.53955
+107.9863,140.0282,-374.5454
+-169.1161,132.6004,501.0254
+-362.6914,132.5311,563.006
+453.1257,136.1254,-160.3395
+136.0724,137.2817,441.6868
+-161.5393,132.3501,523.3055
+200.0017,124.8681,88.19092
+-130.4238,145.8273,-726.1819
+229.4279,144.796,-559.9138
+-761.2158,124.4727,136.3715
+-770.0923,123.7603,141.2931
+122.5984,140.4689,394.0333
+-138.8561,132.5223,519.5355
+147.7,139.9642,424.2615
+-377.4587,129.5447,366.0452
+577.7244,125.2671,-504.4276
+-734.8779,122.9104,135.7201
+305.8438,162.2141,392.2625
+175.8414,142.4863,-363.3531
+144.0983,144.3653,-399.0909
+358.9583,134.8129,-174.9937
+224.7325,147.5437,-540.0315
+-347.7606,134.95,95.86572
+131.137,139.1451,-333.1238
+-153.5163,129.4915,499.9172
+-258.7914,139.1176,-79.03101
+-311.7334,136.3108,79.20129
+228.2859,148.0177,-521.8208
+166.5048,143.3794,-390.5645
+106.3858,139.1505,-351.8148
+567.1855,126.588,-506.7313
+-352.5718,135.0535,568.9667
+-326.5427,133.9992,88.82642
+125.2864,138.0247,414.2903
+442.4792,139.8931,-185.1117
+344.7355,131.2358,-94.91284
+478.501,157.5609,24.31636
+38.70001,117.56,7.100029
+-486.6126,167.7273,-566.5023
+-485.3402,168.121,-559.8113
+-483.9862,165.5258,-433.4326
+-571.3007,127.4453,359.7051
+-93.63933,131.1018,231.8141
+282.5046,139.5922,-481.0859
+86.70511,116.471,-8.84004
+-101.3518,113.0561,-370.3657
+-24.15118,125.1869,-652.4415
+-81.67535,137.5295,201.8227
+-149.9705,153.4773,213.0124
+7.436005,119.111,-24.48495
+119.5139,116.461,-56.43427
+-216.7847,213.1355,130.3098
+-72.50291,165.2664,152.4819
+-149.8819,118.5042,211.3859
+-96.72647,132.123,199.0303
+-153.3107,115.1866,198.2663
+99.49664,116.4403,-32.145
+63.28664,116.561,-29.87403
+-347.3937,127.38,631.1898
+57.26601,119.061,-13.78498
+-213.9798,208.8534,133.7342
+103.135,116.471,-85.36414
+-156.3893,141.2168,217.2901
+49.9859,116.471,-42.22497
+-157.7763,153.1274,208.2769
+-272.8015,128.573,-80.71057
+-103.8964,139.8117,174.0513
+-118.1367,161.9937,130.4533
+-217.2144,116.9736,131.3124
+386.0859,128.2218,20.9541
+199.9523,128.3683,502.2299
+-70.53469,159.3599,120.3427
+-200.3596,143.1975,209.8064
+-96.37591,130.165,192.0247
+-72.08345,134.0826,153.1647
+94.61093,117.5041,-32.14501
+-378.9589,129.0449,631.3871
+-465.6694,114.1028,-104.3364
+-213.9718,112.1694,133.6568
+-31.64923,137.9543,186.6028
+-724.6642,115.3145,402.1218
+-221.9466,136.7261,190.0832
+102.9967,116.4402,-32.145
+-127.3687,157.753,174.0932
+-143.6555,156.7132,187.2356
+7.583351,116.4244,-70.26495
+143.795,116.521,-91.94403
+-147.1927,111.9336,184.5966
+-155.6067,133.5882,191.4695
+-89.25117,130.6855,165.0408
+-142.2887,134.3996,179.4174
+-196.1304,111.6726,-11.44958
+-21.03761,118.195,617.4578
+-40.27161,122.6881,-432.3019
+-129.7018,130.1903,182.1226
+65.93169,116.432,3.740353
+-127.8674,115.8955,177.8951
+191.8253,119.451,-48.73672
+-199.0323,208.7805,109.5912
+-253.105,111.9902,159.7476
+-143.4482,115.6394,186.944
+-97.87688,129.6195,195.4152
+-80.44408,171.9936,165.7622
+-157.759,115.4147,208.3063
+324.2694,110.0238,-784.6392
+-567.0483,113.4859,169.5128
+-123.1533,133.9811,156.651
+-106.4096,164.9841,154.9378
+35.16497,116.461,-82.23598
+-80.29929,168.3259,202.1218
+-126.7349,131.2106,178.5943
+98.82503,120.254,-29.93103
+158.675,122.371,-100.064
+-106.4087,125.4637,168.4682
+277.7437,124.6169,-623.8378
+-147.0366,153.1158,184.5602
+-103.7931,111.201,762.0215
+180.5251,119.111,17.49597
+-82.22231,131.6269,164.5914
+-70.28892,134.3664,120.4113
+-107.3233,119.2733,152.2757
+-118.1741,113.0596,132.4789
+-136.7072,116.8162,175.0559
+-126.5857,112.7456,-357.2117
+-136.9795,160.9407,175.5532
+-78.18137,141.9395,174.2136
+-159.4788,123.8071,347.9335
+-146.7599,134.7572,190.5811
+64.41502,119.111,17.49603
+-98.26042,166.3892,195.4428
+55.42501,116.471,-8.883974
+-197.5341,115.0184,110.2415
+92.85602,116.461,4.175014
+-93.61958,164.5091,231.5942
+-123.4311,129.5555,129.0364
+-153.3148,153.7586,198.3396
+72.73896,118.935,-57.81602
+-222.0788,136.8916,194.2325
+-110.1888,117.5646,74.89309
+-110.9248,134.4766,171.7709
+-87.75742,168.4702,163.7107
+-27.23224,131.1461,335.8942
+-78.52657,143.5949,114.432
+-104.9612,160.1532,137.0109
+-416.4965,125.1519,441.861
+11.74479,116.471,-74.16484
+268.6558,122.2316,-636.5684
+-106.7293,167.0701,169.1118
+-158.0786,135.672,204.5227
+-76.13702,146.5262,147.1349
+-206.0242,121.4792,442.8014
+181.5712,116.4988,-71.97002
+-97.14671,166.3899,192.5133
+-125.8706,116.7878,174.8593
+80.03099,117.524,-47.66502
+-95.02184,129.3545,192.3381
+-17.75342,122.8267,-668.2443
+-110.3508,164.5329,75.06837
+-19.18917,123.5919,626.2225
+-110.717,130.7153,133.163
+396.7683,126.316,-18.19141
+192.9859,122.411,-122.7652
+-173.8932,136.7934,205.3615
+-85.6082,130.4893,234.5791
+-128.5206,156.3207,177.0481
+-104.7281,117.48,136.9877
+-769.6891,115.5063,344.5717
+74.98207,118.4047,-32.71173
+-77.93102,127.4701,209.462
+11.35071,127.6834,-337.5732
+163.3008,137.9867,-338.5124
+-494.6904,119.014,332.4424
+690.84,130.551,567.8782
+118.2097,138.437,-389.7874
+355.7773,162.64,133.9579
+703.0915,118.7895,538.0897
+631.0524,125.2502,488.3882
+600.1444,118.0459,614.8999
+649.4328,118.04,611.7925
+499.6992,126.6281,-379.2906
+455.88,149.379,-291.494
+502.6533,126.456,-378.5034
+733.739,142.7883,-682.1693
+734.2289,142.7883,-681.3093
+505.2804,127.697,-376.099
+748.5225,151.624,-688.1104
+438.66,149.379,-317.464
+449.8286,149.3824,-340.697
+464.88,149.379,-294.184
+439.91,149.379,-299.344
+764.2424,120.5327,-721.2949
+465.99,149.279,-294.524
+762.3222,122.1256,-647.0175
+734.4083,142.7883,-683.0263
+764.2692,122.0727,-645.2017
+762.7919,120.5327,-722.1566
+438.74,149.379,-316.154
+747.61,151.699,-688.774
+507.13,127.9155,-380.1811
+764.0347,120.5327,-722.3314
+504.6275,125.8219,-380.6157
+425.2417,149.3824,-319.9928
+454.8375,149.3824,-319.7512
+446.6749,149.3824,-339.9269
+465.21,149.379,-295.764
+448.34,149.379,-293.184
+426.4026,149.3824,-322.9991
+761.8022,120.5327,-721.3926
+475.5143,127.776,-320.8363
+765.4216,121.9742,-648.0352
+426.5786,149.3824,-320.6091
+443.4592,149.3824,-332.1968
+446.93,149.379,-293.134
+747.38,151.624,-687.564
+-502.4758,122.1834,280.1546
+-545.8262,116.97,367.1343
+664.2402,118.03,578.6204
+-423.1352,172.2135,-615.1245
+-410.7096,172.1669,-602.2508
+-491.0106,167.0992,-593.5349
+-463.5101,165.0721,-463.9146
+683.6932,117.89,598.141
+161.6179,137.83,-340.415
+744.8588,142.6653,-694.9893
+477.8436,149.256,-324.3248
+740.5795,152.976,-676.4251
+504.7563,127.653,-378.0515
+474.4192,129.085,-323.5656
+760.5925,151.7169,-691.7673
+472.0098,149.2594,-287.3151
+472.027,149.2594,-335.976
+456.0505,150.735,-278.0455
+783.8082,124.364,-668.5957
+786.4581,121.412,-669.2209
+758.563,151.7169,-691.659
+487.6644,127.656,-329.0173
+486.0594,129.126,-331.1131
+469.757,149.2594,-286.0226
+783.8711,122.888,-668.8747
+785.2982,122.892,-667.4208
+483.3135,149.256,-324.0248
+458.4514,149.2594,-278.572
+784.2974,121.4124,-668.516
+474.6531,127.653,-322.4057
+456.0505,150.735,-278.0455
+473.8761,149.2594,-334.0903
+738.6248,142.6653,-696.5006
+486.4969,127.653,-330.8646
+474.5001,127.653,-324.2416
+488.2469,129.126,-330.9146
+455.9103,149.2594,-318.1534
+456.2773,149.2594,-277.7196
+785.5681,121.416,-667.7847
+739.8728,151.501,-675.196
+468.5492,149.256,-332.9434
+488.384,127.653,-331.0627
+739.2393,144.146,-696.4227
+740.4626,151.501,-676.6133
+456.2773,149.2594,-277.7196
+-487.8253,119.068,334.5937
+-17.04279,122.7939,-668.0067
+-111.0885,164.2398,75.22971
+-19.03086,123.5919,625.4894
+-105.2847,117.1789,136.5851
+75.72722,118.3264,-32.74527
+-77.75117,128.1982,209.4725
+12.08875,127.7522,-337.4586
+-769.6235,115.4772,345.3181
+193.7359,122.411,-122.7652
+-173.9093,136.4905,204.6756
+-111.4627,130.6678,133.0989
+396.0453,126.3407,-17.99377
+-128.2587,156.4274,176.2891
+-86.27,130.7213,234.3132
+12.48521,116.471,-74.04535
+-415.7469,125.1358,441.8418
+269.3634,122.2744,-636.3235
+-107.0391,167.0718,169.8602
+-87.78882,169.2736,163.6122
+-110.7769,117.1225,75.0389
+-110.8186,134.5117,172.5126
+-105.6856,160.0023,136.6815
+-78.60046,144.3412,114.4364
+-26.51147,131.1434,336.1016
+80.03099,116.774,-47.66503
+-125.6109,116.9331,174.1709
+-94.62533,129.3619,191.7015
+-205.282,121.4551,442.6963
+-76.30227,147.2578,147.1312
+-157.9006,136.0365,205.1536
+-96.84715,166.3847,191.7608
+180.9712,116.4988,-71.97002
+-97.95705,166.4425,194.6937
+64.41502,119.111,18.24603
+55.42501,116.471,-8.133974
+-198.2344,115.287,110.2374
+-136.9946,161.4834,174.9521
+-159.3572,123.8948,347.1986
+-146.4593,134.5226,189.9353
+-78.23888,142.6325,174.4947
+72.73896,118.935,-58.56602
+-222.1553,136.9037,193.4865
+-123.6107,130.2469,128.8081
+93.60602,116.461,4.175014
+-94.26477,164.2161,231.2018
+-153.9765,153.6562,197.8838
+-103.0476,111.203,762.1039
+180.5251,119.111,18.24597
+-82.73161,131.5403,165.1351
+158.675,122.371,-99.31403
+-80.214,169.1313,202.1049
+-126.4139,131.5324,177.9977
+98.82503,119.504,-29.93103
+277.7288,124.5733,-624.5864
+-146.2843,153.1545,184.8578
+-106.8059,125.4572,169.1044
+-126.4364,112.7071,-356.4777
+-118.5238,113.697,132.6628
+-70.5499,135.0658,120.4838
+-107.292,119.9328,151.9201
+-136.6322,117.2246,174.4314
+-143.2589,115.3759,186.2678
+-97.53825,129.5121,194.7547
+-80.40054,171.1915,165.8665
+-127.7527,116.0592,177.1722
+66.59146,116.432,3.740353
+-199.7458,208.4046,109.6667
+-252.3647,112.1052,159.7137
+191.8336,119.451,-47.98677
+35.16498,116.461,-82.98598
+324.9838,110.1336,-784.8397
+-157.153,115.774,208.5636
+-123.0269,134.623,157.0177
+-105.7033,165.0056,155.3338
+-567.4708,113.4431,168.8947
+8.278679,116.4244,-70.26495
+143.795,116.521,-91.19403
+-155.6486,134.3197,191.3093
+-89.52997,131.3815,165.0226
+-146.4936,111.9499,184.8677
+-465.8719,113.9723,-105.0466
+-214.6705,112.3993,133.5105
+103.7467,116.4402,-32.145
+-127.1705,157.9514,173.3334
+-143.4079,156.672,186.4655
+-31.39819,137.4402,187.0876
+-724.7092,115.3392,401.3735
+-221.9411,135.9793,190.015
+-20.51428,118.2249,617.9941
+-41.00732,122.6245,-432.433
+-129.3893,130.0178,181.463
+-142.5703,135.0876,179.3177
+-195.4374,111.4541,-11.63531
+-347.5782,127.3974,630.4631
+63.58471,116.561,-29.18581
+-214.7223,209.0968,133.5209
+58.01601,119.061,-13.78498
+-96.64297,132.1179,198.285
+-149.9425,119.2318,211.2144
+-153.9261,114.9408,197.915
+100.2466,116.4403,-32.145
+-72.39069,134.7651,153.1178
+94.61093,116.7541,-32.14501
+-379.4931,129.009,630.8619
+199.2078,128.395,502.1429
+386.5449,128.2012,20.36121
+-70.60961,160.1519,120.19
+-200.6156,142.4956,209.7411
+-96.14771,129.4516,192.0644
+-157.0378,153.0217,208.5925
+50.7359,116.471,-42.22498
+103.135,116.471,-84.61414
+-155.6829,141.4654,217.2493
+-217.474,116.7279,131.9717
+-272.0566,128.5544,-80.79633
+-104.5427,139.4463,174.1576
+-118.7472,161.4615,130.4415
+-100.8633,113.0909,-369.7977
+-24.53473,125.1644,-653.0857
+282.8407,139.6342,-480.4167
+-94.29884,130.9855,231.4765
+85.95511,116.471,-8.840042
+-72.69831,166.0154,152.2432
+-82.25581,137.9607,201.6237
+-217.0267,213.1099,131.0824
+8.186005,119.111,-24.48495
+-150.3298,153.5756,213.7316
+118.7639,116.461,-56.43427
+-67.00699,115.0436,530.6126
+-41.38958,120.5792,513.7352
+-28.08628,117.926,547.6212
+-593.0878,123.0421,260.0129
+-554.4768,119.3085,293.1304
+-614.1422,119.6771,286.9074
+-32.13812,121.4436,513.8855
+-70.09799,113.608,538.9191
+-44.25714,116.3132,546.7844
+-453.0776,173.3436,-559.0479
+-451.2353,172.9083,-607.4496
+-463.0788,172.8963,-599.6404
+-477.3863,171.6276,-483.4333
+-453.155,172.9032,-595.546
+484.3025,157.1178,21.92663
+641.1104,148.91,-530.5112
+639.4484,152.09,-537.5491
+640.3567,152.09,-536.2295
+638.483,152.09,-536.1543
+639.1425,152.09,-534.6036
+636.6492,148.86,-534.2023
+637.6218,148.86,-532.1722
+638.2484,148.86,-533.0433
+643.3191,148.86,-529.0364
+642.9496,148.86,-528.0671
+646.7111,148.86,-524.5846
+647.9312,152.08,-530.5969
+646.654,152.09,-528.8881
+645.7244,148.86,-525.4778
+646.9913,148.86,-525.2763
+648.6217,136.3566,-540.6777
+646.8431,136.835,-536.7956
+645.5957,129.49,-536.6034
+644.9476,129.49,-536.0193
+644.9362,129.49,-536.7835
+658.4206,140.8,-550.184
+649.2982,141.02,-544.4229
+643.0773,141.02,-537.3981
+645.7502,141.01,-539.8679
+705.8738,118.7785,537.3908
+633.8356,125.1208,487.7046
+-421.6413,176.1532,-606.7971
+-464.1437,169.1245,-472.2976
+-483.3767,171.0902,-597.1257
+-411.2767,175.6348,-593.605
+-563.1548,122.9754,263.9934
+661.8161,117.97,621.8001
+682.991,117.97,626.5372
+657.4091,118.04,586.9439
+727.823,134.4686,11.78892
+-493.9442,118.291,330.8141
+658.774,122.168,584.9987
+141.38,116.26,-67.58008
+141.38,116.26,-44.08005
+195.13,116.26,-71.20003
+-79.29464,112.79,652.7053
+-326.6052,133.7414,85.29639
+126.7543,137.8175,417.5049
+445.9978,139.6993,-185.4496
+341.9753,131.5891,-97.10107
+108.6382,139.1304,-349.0839
+564.4127,126.7315,-504.5353
+-355.8162,135.0895,570.3826
+-156.9931,129.8177,500.498
+134.6261,139.2929,-332.5439
+-257.4265,139.1749,-82.29681
+-308.35,136.8436,80.0957
+226.8337,147.9722,-525.0489
+164.0461,143.3964,-388.0177
+303.1104,162.2446,390.0131
+143.5177,144.0065,-395.6174
+175.9427,142.6424,-366.8882
+361.6746,134.5244,-177.2454
+225.1602,147.3766,-543.5416
+-349.4092,135.4631,92.77539
+-128.3131,145.8644,-723.3401
+229.2969,143.8019,-563.3088
+-767.119,124.3551,143.1199
+-759.4381,124.3339,133.3134
+125.3159,141.1143,391.8584
+146.1078,140.1956,421.1083
+-139.825,132.8717,522.9225
+-378.1593,129.5447,362.5751
+581.2217,124.891,-504.0294
+-735.1838,123.2352,139.2318
+-359.1754,132.9139,562.8563
+-164.8212,132.5395,521.9922
+133.545,137.1128,439.2137
+451.7827,136.5036,-163.5929
+203.4659,125.1247,87.5094
+107.0066,139.8046,-371.1511
+-171.5389,133.011,503.5735
+411.637,126.0653,-690.1146
+-253.2483,139.5055,-104.7352
+-342.4396,131.6433,551.6447
+152.4705,146.7879,391.1487
+305.7869,149.3323,124.2382
+-715.9418,121.1597,99.06738
+667.1494,117.98,585.1953
+681.009,117.84,591.4711
+-481.1227,118.724,313.547
+150.25,116.26,-72.79009
+186.26,116.26,-65.99001
+150.25,116.26,-49.29007
+-79.21764,112.79,662.9919
+481.7544,167.5579,28.19114
+-19.34862,118.1086,594.9087
+-2.013763,122.5633,543.8178
+480.2768,157.6859,27.08465
+-459.791,167.4657,-564.259
+-494.4648,165.4445,-470.5116
+-441.1566,167.1695,-588.6655
+-511.821,165.4426,-471.9157
+478.2425,157.6363,25.00743
+486.8413,148.91,-346.6606
+485.1793,152.09,-353.6984
+486.0876,152.09,-352.3789
+484.2139,152.09,-352.3037
+484.8734,152.09,-350.7529
+482.3802,148.86,-350.3517
+483.3528,148.86,-348.3215
+483.9793,148.86,-349.1926
+489.0501,148.86,-345.1858
+488.6806,148.86,-344.2165
+492.442,148.86,-340.7339
+493.6622,152.08,-346.7463
+492.3849,152.09,-345.0375
+491.4554,148.86,-341.6271
+492.7222,148.86,-341.4257
+494.3527,136.3566,-356.8271
+492.574,136.835,-352.9449
+491.3267,129.49,-352.7527
+490.6786,129.49,-352.1687
+490.6671,129.49,-352.9328
+504.1515,140.8,-366.3333
+495.0291,141.02,-360.5723
+488.8083,141.02,-353.5475
+491.4811,141.01,-356.0172
+684.7125,118.02,622.8701
+660.0946,118.02,625.4671
+679.468,117.9877,612.2939
+-71.26642,114.166,523.3324
+-47.79633,118.2631,518.7853
+-28.80442,119.8372,539.3904
+-420.8386,172.1419,-604.7496
+-465.101,165.187,-474.4204
+-410.6453,171.551,-591.6426
+-481.5746,167.0902,-598.4216
+727.3667,134.6795,7.338799
+613.4207,118.1056,652.6799
+-41.76946,123.3507,515.2617
+-30.28141,120.2201,547.8931
+-68.03302,118.0482,530.3393
+-493.6583,121.7137,286.0689
+-467.6256,169.3961,-471.6137
+-485.1467,171.0902,-600.2131
+-407.7319,175.9083,-593.7628
+-418.2026,176.1711,-607.7137
+647.4174,118.04,611.6345
+600.4327,117.9804,612.9001
+-461.4966,170.4142,-564.9384
+-495.5855,168.4445,-469.1669
+-439.5416,170.1861,-588.0688
+-510.4754,168.4426,-470.796
+484.1661,157.2126,22.93465
+642.5385,129.908,572.9824
+629.5694,129.908,586.3604
+632.4831,125.8557,634.4285
+694.6865,130.708,601.9025
+-415.4076,175.5673,-597.7775
+-485.2007,171.0902,-591.5444
+-459.4589,168.759,-468.7766
+-426.5661,176.1582,-609.9948
+-536.4059,121.0076,273.2015
+110.2375,130.8729,-353.4572
+-351.7177,127.4384,574.1949
+568.6432,118.5264,-502.3795
+130.373,130.4056,412.8318
+442.855,131.6633,-189.3758
+-331.1901,125.9909,88.25916
+340.9237,122.9077,-93.44092
+302.3889,153.8771,394.41
+222.3744,138.6402,-541.1364
+-352.2866,126.8597,95.5271
+147.5302,135.7988,-398.1479
+171.9373,134.2466,-365.0612
+357.2646,126.1554,-177.8628
+133.4301,131.2332,-337.3894
+-154.7274,121.5825,504.6112
+168.4568,135.0781,-386.9133
+224.9619,139.3614,-521.5533
+-308.2368,128.5803,75.45068
+-262.0094,130.8881,-81.85455
+-360.6385,123.9447,560.158
+201.1671,116.4199,84.54114
+448.79,127.9399,-160.8407
+133.7151,128.3978,442.9406
+-164.6187,124.2069,526.5085
+-765.83,115.7541,139.3474
+-763.1779,115.6686,134.2054
+225.85,136.3413,-558.5835
+-128.0728,136.8542,-726.2777
+578.443,116.693,-507.8947
+-732.4905,114.2337,137.9714
+-135.7421,124.3238,522.5588
+144.6534,131.2157,423.776
+-381.5654,121.2377,365.6184
+121.8146,132.8561,388.7908
+-343.748,123.8239,556.842
+150.0184,138.4613,387.3375
+415.7477,117.7653,-692.1348
+-248.8428,131.2156,-106.054
+-711.488,113.0272,97.09338
+309.2144,140.9954,127.1737
+111.376,131.5631,-372.8411
+-167.9216,124.3992,505.1927
+-669.8942,119.3478,363.5303
+-476.0684,120.78,289.6382
+-90.55363,116.7145,612.2477
+655.7801,117.95,617.5028
+-452.795,123.0976,305.2377
+-603.9471,126.2284,262.3259
+-666.9888,125.7167,324.4114
+-605.4897,116.1633,386.8042
+-657.6708,117.72,399.8486
+-640.5308,118.07,373.6286
+-678.6973,118.3869,383.5033
+-527.3986,118.4471,308.5682
+-488.3793,166.6237,-521.8293
+-445.5437,166.149,-535.4427
+-507.0692,165.8654,-503.7163
+-505.6765,166.3993,-521.4166
+608.6289,117.4818,664.2347
+635.6846,119.1373,603.3498
+675.0423,119.3289,593.587
+682.8143,121.008,626.43
+661.9929,121.008,621.9073
+689.5466,130.551,564.8153
+-573.1906,118.3011,354.6464
+-73.569,114.8134,540.8555
+-31.85027,121.3543,518.028
+-46.44376,116.2112,543.2546
+351.1562,165.6678,130.8155
+348.9496,165.6678,130.761
+599.8018,121.4241,613.3048
+647.9608,121.436,612.4044
+739.6573,121.4866,518.58
+594.2624,127.6958,568.9053
+753.9719,121.8346,485.6651
+714.1426,118.4553,538.9393
+585.4382,127.3873,571.4956
+745.1647,119.4564,499.3819
+646.8221,124.61,487.5975
+563.03,126.6145,547.7262
+733.8394,122.0416,515.8215
+669.8967,121.8694,541.6357
+762.6819,122.5146,499.5411
+568.6419,126.6542,561.2805
+616.5272,124.2521,487.8588
+627.7372,124.1038,474.8755
+600.1849,125.7281,560.8146
+557.5502,128.9231,567.5712
+698.1931,118.425,545.4464
+758.1001,122.0809,492.0691
+645.8968,123.7079,497.4629
+704.1113,118.4967,526.0598
+748.0461,120.0564,519.7099
+694.3446,118.5227,530.8019
+-489.8481,168.6158,-446.3873
+-481.0926,166.0435,-446.0551
+-472.6329,167.958,-462.271
+-466.7598,170.5215,-583.8634
+-468.027,165.2733,-439.1328
+-479.176,170.4527,-578.0465
+-465.7847,169.9013,-587.7211
+-470.5618,170.7358,-557.462
+-93.49495,116.8386,611.502
+477.3923,157.8012,26.31139
+687.8409,121.02,619.6483
+656.9662,121.02,628.689
+164.0203,141.9682,-339.4767
+-67.81408,114.534,526.5712
+-45.18982,119.499,515.014
+-27.2035,119.3941,543.8384
+651.2307,118.04,612.5612
+599.2618,118.1349,616.6424
+-550.4217,115.4221,353.3035
+-474.1291,120.0535,305.3679
+-426.8596,124.0217,308.6949
+-432.2215,127.6615,265.0391
+-487.7837,120.8524,294.5599
+-625.9565,123.0551,267.1849
+-549.0621,120.5813,287.2248
+-455.9435,124.3561,392.7849
+-587.8929,127.2854,221.14
+-654.1178,115.938,391.4038
+-620.0435,115.1561,392.0849
+-590.6927,114.7135,377.4514
+-504.0735,119.0035,353.1573
+-574.4435,116.7561,402.0849
+-435.7585,127.4436,278.0887
+-415.6516,128.3926,265.8427
+-605.9837,120.1524,303.2599
+-599.8435,114.3561,399.8849
+-486.1185,119.344,315.6548
+-428.2245,121.0485,333.6693
+-619.8702,121.6498,223.6431
+-632.1561,116.3065,370.0005
+-451.865,121.5485,368.08
+-551.869,126.2152,225.0731
+-666.8755,120.8211,345.4391
+-637.0435,115.7561,400.8848
+-514.6655,126.1032,255.8953
+-505.2435,124.6561,396.9849
+-538.9837,116.3524,320.4599
+-420.787,127.7244,289.3304
+-641.9431,124.9395,254.2173
+-620.5522,121.5803,280.2475
+633.3399,125.0794,488.9209
+705.3877,118.7588,538.6114
+681.1763,118.0762,614.2933
+-609.2719,120.2373,285.2015
+-556.6365,120.1693,288.4895
+-593.0343,122.9845,265.203
+-487.1768,165.9095,-496.8502
+-513.2007,165.9358,-518.3618
+-455.5465,167.1552,-540.8564
+-548.1916,118.72,360.1763
+-465.8005,167.316,-565.1505
+-497.3428,165.4415,-465.1592
+-435.1448,167.2277,-587.7788
+-506.4665,165.4396,-469.0416
+120.4409,142.0424,-387.3792
+-593.3998,123.0195,259.8097
+-554.1086,119.2833,293.185
+-614.2341,119.6661,287.2688
+-494.5238,118.291,331.275
+-460.6534,169.8703,-601.7626
+-455.2474,169.8629,-597.9792
+-480.3578,168.5915,-482.2108
+-455.3021,170.4667,-561.5615
+-449.1458,169.8797,-604.9992
+161.7441,141.8257,-340.1923
+-34.90742,118.2954,546.7118
+-39.49767,123.0772,519.873
+-72.93486,118.3184,531.8882
+-70.5078,118.5603,534.0347
+-33.73205,118.038,549.73
+-37.79188,123.9146,517.2375
+-674.3019,117.36,396.6431
+-620.8451,127.406,262.0597
+-670.2706,130.7774,308.5805
+-622.1208,115.8033,383.5987
+-469.4261,122.7376,302.0321
+-657.1619,117.71,370.423
+-516.8973,121.6062,295.6553
+-688.0675,121.1604,369.6647
+-505.8288,171.4396,-469.1276
+-497.2573,171.4415,-464.5215
+-466.4937,173.309,-565.0167
+-434.6353,173.2332,-588.0761
+-427.2505,176.1621,-610.766
+-458.8296,168.7109,-467.9611
+-415.9133,175.5824,-598.676
+-485.7701,171.0912,-590.6846
+-475.8976,167.8416,-560.3916
+613.72,117.7,650.3663
+-9.316879,116.6798,596.0031
+-62.49393,117.9379,611.1013
+-82.59026,117.8673,606.2858
+-13.52748,118.0367,579.827
+-81.40914,117.8973,602.1032
+479.887,155.5469,31.74668
+118.3731,142.2449,-388.561
+-60.45999,120.2563,547.6449
+-51.59689,116.7209,525.933
+-52.59922,118.7348,521.7471
+-42.34155,122.5709,561.8734
+-24.55136,124.3722,528.1845
+768.9742,151.5859,-688.5037
+779.5919,151.5859,-668.7319
+774.2518,142.7502,-698.9241
+754.1798,142.7502,-703.1663
+484.4135,149.3443,-301.5272
+-517.4846,165.8534,-477.7162
+-430.6122,166.7671,-546.6125
+-497.245,165.8825,-504.8773
+-509.1745,171.4396,-468.2202
+-437.4744,173.2043,-586.0873
+-463.6522,173.3129,-567.0024
+-498.1623,171.4415,-467.8678
+-494.3677,119.014,332.6373
+86.70512,116.471,-12.84004
+278.9712,139.0895,-479.28
+-91.95169,131.8407,228.2637
+-20.72766,124.7555,-654.4648
+-104.3853,113.0902,-367.7586
+-220.7139,214.483,129.1234
+119.5139,116.461,-60.43427
+7.435997,119.111,-20.48495
+-153.8378,153.424,211.0879
+-80.47276,137.3888,198.0104
+-75.6387,163.6529,149.9868
+99.49664,116.4403,-28.14501
+-151.2732,114.998,194.8294
+-92.8294,131.3372,199.4722
+-153.456,117.8155,209.7272
+-212.7847,208.8602,129.5828
+57.266,119.061,-9.784977
+-343.5228,127.1798,630.202
+59.61609,116.561,-28.28439
+-220.8954,118.178,130.3123
+-119.8483,164.0329,127.0512
+-102.8844,139.1293,177.8606
+-272.3432,128.6026,-76.737
+-159.5193,152.6788,212.204
+49.9859,116.471,-38.22498
+-156.2266,141.4102,221.2821
+99.13499,116.471,-85.36414
+-376.1536,129.005,628.5359
+94.61093,117.5041,-28.14501
+-75.14719,132.5611,151.0913
+-92.89736,131.3649,193.5931
+-204.1191,144.5532,209.9732
+-69.21679,158.7018,116.2816
+200.4178,128.4199,498.2573
+389.2498,128.3239,23.39941
+-139.5767,157.3395,188.5138
+-123.9199,159.9048,175.5553
+102.9967,116.4402,-28.145
+-218.6803,136.9602,187.7861
+-720.672,115.3904,401.884
+-30.67908,135.5527,183.5546
+-212.8813,113.1101,129.925
+-461.8334,114.2617,-105.4589
+-86.31824,131.9234,167.4626
+-151.6362,133.8976,191.843
+-148.6411,112.1557,188.3185
+139.795,116.521,-91.94403
+7.583344,116.4244,-66.55653
+-195.1781,111.3978,-7.57428
+-138.6138,135.9486,179.7263
+-126.0715,130.3915,183.79
+-39.57849,122.7893,-436.2401
+-23.89323,118.0216,620.2534
+-252.9722,112.3081,163.7327
+-198.7183,209.0479,113.8915
+187.8255,119.451,-48.69185
+-124.7038,118.1262,178.9026
+65.93168,116.432,7.259182
+-84.3277,171.5437,163.9244
+-94.43747,130.9533,196.9616
+-139.5836,116.2126,187.8023
+-108.4958,164.475,158.6863
+-120.5033,132.1188,158.9981
+-563.7924,112.6494,167.3451
+325.1826,110.976,-780.8631
+-159.5088,115.8052,211.882
+39.16497,116.461,-82.23596
+-148.6333,153.3256,188.5688
+281.7417,124.707,-623.9228
+-109.7127,124.5744,166.3964
+154.675,122.371,-100.064
+102.825,120.254,-29.93103
+-123.8608,132.6999,180.9442
+-78.72882,168.0756,198.1051
+-84.94029,130.5279,161.8702
+176.5251,119.111,17.49597
+-104.2303,110.9274,765.9882
+-133.083,118.0005,176.2654
+-118.2893,114.1098,128.6209
+-109.1135,121.0365,155.388
+-69.37646,135.1033,116.5872
+-130.4887,113.0754,-356.4005
+-143.1044,135.5697,191.9874
+-155.555,124.1621,348.6246
+-82.08732,141.965,173.3517
+-133.0585,162.3345,176.713
+-197.7275,114.5746,114.2121
+51.425,116.471,-8.88398
+-94.33116,167.1137,197.0855
+60.41502,119.111,17.49603
+-150.8615,153.7335,194.7839
+-124.072,128.1684,125.3397
+-91.8562,165.6723,227.8259
+92.85601,116.461,8.175018
+-221.9507,140.8892,194.2843
+72.73896,122.935,-57.81602
+-103.0431,159.0282,133.3071
+-28.33801,131.1928,339.738
+-77.71875,143.6977,110.5158
+-84.54485,168.9452,166.5596
+-114.451,132.6828,172.3605
+-111.1605,117.5774,71.01293
+-110.1239,164.7948,167.7113
+267.3301,122.803,-632.838
+11.10746,116.471,-70.21594
+-416.4022,124.7985,445.8442
+-93.19769,167.1732,194.0799
+181.5712,116.4988,-75.17001
+-205.5341,120.1909,446.5564
+-79.51601,145.7529,145.1388
+-161.7947,135.1141,205.8937
+-91.70868,128.4562,194.3914
+80.03098,117.524,-43.66503
+-123.0256,119.1231,176.4252
+-15.31917,124.1617,627.0582
+-111.6754,165.6961,71.12443
+-18.99475,123.2815,-664.4691
+-124.6598,157.5432,178.5521
+-84.72989,128.9064,231.0122
+-169.8945,136.8089,205.2613
+192.9859,122.411,-118.7652
+395.7058,125.8365,-22.01782
+-110.3252,129.7908,129.2911
+10.76282,127.4097,-333.6262
+-76.53774,127.1801,205.7237
+74.98206,116.8297,-29.03487
+-773.6672,115.2618,344.9116
+-103.6889,119.7437,133.8579
+-550.0607,118.6,377.9666
+-487.7577,119.3033,333.0613
+-592.0192,123.2378,264.1977
+-610.5662,120.2503,284.5459
+-557.1606,120.1308,289.842
+-564.27,123.1416,263.2045
+-69.28,118.1754,540.5873
+-28.61295,124.6576,515.1334
+-48.27387,119.0765,547.5221
+-453.2783,166.9042,-595.8214
+-477.6398,165.6286,-483.2697
+-462.8039,166.8983,-599.8055
+-451.0355,166.9097,-607.212
+-453.4462,167.3658,-559.5054
+-493.8701,119.116,331.4609
+541.3741,138.1331,22.89672
+540.0969,137.8767,19.36215
+539.7596,137.8281,19.42119
+539.5695,137.8796,24.41628
+541.1851,138.0513,22.6144
+539.4781,137.8496,18.48896
+540.0482,137.8809,19.75412
+541.4227,137.9955,23.50108
+539.4192,137.8656,19.56386
+541.4821,138.0749,22.22018
+541.1291,138.0686,22.32017
+541.1298,138.1173,22.03305
+539.611,137.8739,19.378
+538.7159,137.827,24.85009
+539.3392,137.8797,24.80765
+538.9498,137.8061,25.44361
+541.6412,138.0394,21.76394
+539.4797,137.8322,25.38625
+538.7785,137.8539,24.56857
+540.0482,137.8809,19.75412
+539.6594,137.8649,18.99992
+539.6093,138.095,22.18884
+540.0189,137.8249,19.16685
+540.1922,138.1109,22.40757
+539.7917,137.8431,24.94516
+540.0189,137.8249,19.16685
+540.2384,138.1102,22.37915
+-490.7636,169.8564,-492.6467
+-460.5342,171.443,-542.545
+-516.8744,169.8675,-514.2193
+-38.08415,120.2185,520.2514
+-34.67138,115.1664,546.0283
+-73.94498,115.4421,532.8978
+-382.244,121.2377,362.2572
+143.1112,131.4398,420.7216
+-136.6805,124.6623,525.8395
+124.4469,133.4813,386.6841
+-732.7868,114.5483,141.373
+581.8307,116.3287,-507.509
+225.723,135.3784,-561.8721
+-126.0283,136.8901,-723.5251
+-762.9498,116.3302,141.1168
+-761.4559,115.5342,131.2432
+131.267,128.2342,440.545
+-167.7977,124.3904,525.2365
+447.489,128.3062,-163.9921
+204.5228,116.6684,83.88098
+-357.2328,124.3155,560.0128
+-170.2684,124.797,507.661
+110.4271,131.3465,-369.5532
+306.014,141.0623,128.4031
+-711.7723,113.0157,100.5106
+153.298,138.8657,386.4215
+-346.3362,123.7748,554.5934
+-249.7335,131.1707,-102.743
+415.5251,117.7762,-688.713
+338.2501,123.2499,-95.56055
+-331.2506,125.7411,84.83984
+446.2631,131.4756,-189.7031
+131.7949,130.2049,415.9457
+-354.8603,127.4733,575.5664
+565.9573,118.6654,-500.2523
+112.4193,130.8533,-350.8119
+-304.9594,129.0964,76.31702
+-260.6873,130.9436,-85.01794
+166.0751,135.0946,-384.4465
+223.5553,139.3173,-524.6802
+-158.0952,121.8984,505.1738
+136.8097,131.3763,-336.8277
+-353.8835,127.3566,92.53357
+222.7887,138.4783,-544.5364
+359.8958,125.8759,-180.0439
+146.9678,135.4511,-394.7832
+172.0353,134.3978,-368.4855
+299.7412,153.9067,392.2312
+434.6146,149.2604,-285.179
+502.2198,125.865,-380.965
+502.3123,127.654,-375.5807
+436.7122,149.2604,-283.3161
+493.6946,127.654,-323.7152
+756.2678,120.4107,-726.9911
+495.0198,127.654,-330.1024
+439.0076,149.2604,-281.7694
+460.9014,149.2604,-302.3423
+465.165,149.2604,-310.6815
+-536.0999,120.8233,274.2119
+163.9255,133.5665,-341.4415
+700.4265,130.708,600.6173
+647.4391,129.908,569.7293
+637.3782,128.6134,632.6873
+632.3912,129.908,581.1993
+18.97376,1015.386,183.503
+20.43464,1046.956,202.4612
+20.54272,796.5816,439.1316
+17.34393,779.8311,406.7684
+651.4973,121.04,612.6259
+599.3315,121.1409,616.8278
+167.0085,133.7234,-341.4408
+689.9905,130.55,568.0773
+-432.9021,167.4033,-581.633
+-485.7006,165.4245,-480.51
+-453.1517,167.5011,-576.874
+-458.7872,166.601,-607.7401
+-71.51749,112.79,658.5349
+142.54,116.26,-53.73006
+193.97,116.26,-61.55002
+142.54,116.26,-77.23008
+-75.25,115.1371,541.3832
+-32.13303,121.2843,519.7955
+-47.01779,116.1857,541.5579
+658.1229,117.95,621.3873
+-16.08105,117.8615,594.886
+-4.705124,122.1563,541.9932
+689.9803,130.551,566.6701
+702.0726,118.8103,537.5431
+630.0401,125.3454,487.8372
+690.6767,130.551,568.5995
+-502.85,122.1159,280.7495
+704.5347,118.7316,540.3831
+632.4733,125.0285,490.6855
+480.5081,157.6196,26.47872
+120.5903,134.3774,-391.3394
+109.4623,139.1558,-351.3047
+566.6178,126.7769,-503.6707
+-353.9131,135.3823,571.7628
+444.6239,139.8308,-187.3749
+128.1085,138.218,415.6029
+-328.6255,134.0026,86.50537
+341.623,131.3687,-94.7688
+302.7264,162.2129,392.3505
+359.4485,134.4641,-178.0536
+173.8605,142.5925,-365.7593
+145.733,144.0298,-396.4564
+-350.6649,135.2647,94.77429
+223.0101,147.0854,-542.5906
+-155.4772,129.83,502.3185
+133.7824,139.4047,-334.7547
+225.4622,147.7945,-523.1255
+166.3459,143.3906,-387.45
+-259.7755,139.1846,-81.9895
+-308.9852,136.8081,77.81372
+-360.4122,132.5045,560.8777
+201.918,124.897,85.73071
+-164.4778,132.5196,524.3361
+132.9911,136.8383,441.5006
+450.3387,136.3462,-161.7214
+-761.7959,124.1045,133.3296
+-767.0433,124.1427,140.7616
+-127.4175,145.3851,-725.4803
+227.2958,144.062,-562.068
+-733.0682,122.8025,138.2576
+580.2678,124.9168,-506.1976
+123.104,141.0562,391.0126
+-379.9324,129.5447,364.1461
+144.8291,139.7769,423.0581
+-137.5306,132.7261,522.3511
+-250.9608,139.5139,-105.3511
+413.7588,126.0689,-691.1682
+150.7717,146.7441,389.4982
+-342.8811,131.8729,553.9608
+-713.803,121.2468,98.05249
+307.6315,149.3161,125.7245
+-169.2447,132.8235,504.1333
+109.3045,139.8279,-371.7263
+123.6016,134.2977,-390.6645
+637.3368,121.04,595.7192
+-480.2827,118.724,313.0014
+755.1711,142.7502,-702.2175
+485.5865,149.3443,-302.2392
+775.5847,142.7502,-698.5981
+778.2745,151.5859,-668.3477
+770.1472,151.5859,-689.2157
+583.449,119.961,629.6194
+600.7277,119.3422,615.8693
+650.399,119.339,611.2103
+687.3067,118.02,622.7341
+657.5004,118.02,625.6031
+6.772572,1030.953,189.9738
+6.238315,791.3884,424.9363
+6.947806,1034.804,192.2871
+5.847368,789.4401,421.2109
+119.6101,134.2498,-390.8128
+688.5922,130.551,566.9445
+121.5808,134.0347,-389.5788
+476.6252,157.9807,27.84708
+-563.8051,123.0323,263.6476
+600.0229,118.149,618.7065
+653.2406,118.04,611.6666
+-39.11379,120.6546,516.3359
+-31.18301,116.3943,547.7327
+-69.89487,115.3313,532.4903
+-20.28931,118.8104,581.2093
+-8.881088,121.8763,555.7098
+-677.4963,117.963,386.3195
+-529.7416,117.9531,310.5226
+-602.6232,116.3033,387.9518
+-666.9531,124.9431,327.4037
+-600.9291,126.0283,262.9626
+-449.9285,123.2376,306.3852
+-654.8043,117.86,400.9962
+-637.6643,118.21,374.7762
+163.0873,133.5516,-340.6989
+165.2804,133.6927,-339.9097
+688.295,130.551,565.4594
+162.6654,141.8421,-341.0086
+-415.6831,176.9752,-601.126
+-488.1667,172.3202,-589.8235
+-458.6888,169.9327,-465.415
+-427.4707,177.4075,-613.295
+-87.12652,116.9854,607.7432
+119.4505,142.385,-389.1398
+351.5298,165.6678,131.1856
+-480.2221,118.724,313.8893
+-567.9785,123.9985,266.6987
+-35.00801,120.816,537.3553
+-47.28569,120.4349,524.9987
+-77.09787,117.2582,523.2018
+-485.797,126.1409,386.5656
+-442.694,173.9002,-586.3186
+-496.1725,172.1906,-472.6908
+-458.4567,174.1741,-566.7869
+-513.999,172.1886,-470.2064
+-488.2534,119.303,332.696
+-548.549,118.58,363.2432
+-563.0214,122.9649,264.0011
+630.7363,125.3847,486.481
+702.7583,118.833,536.1811
+-30.90565,122.0706,540.0496
+-47.91715,121.1428,520.0225
+-72.03501,117.2067,523.3672
+-484.4533,169.1082,-561.7621
+-482.5295,166.6058,-434.9421
+-487.6111,168.8431,-564.6788
+-571.6064,121.144,363.0809
+-86.72003,112.79,659.5265
+151,116.26,-41.06007
+185.51,116.26,-74.22002
+151,116.26,-64.56009
+-454.2816,170.5072,-578.1976
+-457.7379,169.6091,-606.3561
+-487.3497,168.42,-479.8991
+-431.8149,170.4363,-580.3351
+-497.794,126.0094,285.4886
+655.4377,121.04,585.0723
+682.1495,117.89,596.195
+19.42152,1013.477,184.261
+17.80279,777.8177,406.3776
+20.97991,1047.15,204.4815
+21.21452,795.6909,440.9126
+-509.8662,165.4396,-465.6633
+-437.1964,167.2068,-583.4473
+-463.7431,167.2404,-569.4786
+-500.7186,165.4415,-468.5615
+10.18065,782.5511,424.3467
+10.9612,1030.682,198.8421
+10.5716,784.4996,428.0722
+10.78596,1026.831,196.5288
+662.463,118.0956,636.0614
+665.8491,118.03,580.5128
+-375.8152,181.7199,45.54947
+-381.837,187.407,45.81802
+-380.7869,186.5199,42.01444
+-371.3288,187.4779,41.36406
+-375.6229,187.3346,43.57649
+-379.1952,186.3968,48.94651
+-376.4151,186.4702,46.39111
+-372.3248,186.5251,45.33019
+-378.9651,186.4547,46.10291
+-376.7187,186.4234,48.64511
+-376.8411,183.4607,44.75244
+-380.783,183.3865,41.78698
+-379.8155,183.3847,42.28678
+-381.2329,183.38,41.92976
+-377.7236,182.2564,51.1896
+-371.5778,182.5171,40.53139
+-376.6333,183.4743,44.15083
+-381.0566,182.5949,51.40989
+-380.2702,182.6011,51.42723
+-375.6877,184.1405,49.88972
+-372.8333,182.308,50.63799
+-371.9958,182.4364,44.4634
+-375.1072,182.3886,45.57211
+-375.4172,182.3988,44.92488
+-370.9535,184.8757,50.6681
+-413.4544,166.8609,93.4872
+-413.3176,168.7303,96.53207
+-412.0808,166.8297,96.82106
+-411.1375,166.9107,96.56715
+-411.93,167.0568,95.69852
+-406.0448,167.204,95.85203
+-404.2063,168.5,97.36755
+-404.5693,168.5492,97.05972
+-406.8211,167.0933,96.29397
+-406.9582,166.9093,97.19295
+-407.7084,167.0719,96.27341
+-406.8278,167.2531,95.49484
+-413.8859,167.6889,92.26139
+-419.389,169.6053,92.14803
+-419.199,169.8028,91.18874
+-420.3332,170.1151,91.52519
+-420.2283,170.3028,90.60282
+-424.1345,167.9005,94.48922
+-424.4888,167.7895,94.99258
+-424.2331,167.6289,95.83115
+-424.646,167.5181,96.32561
+-414.2289,168.016,96.81458
+-414.1432,168.1573,96.12103
+-414.2025,168.2863,95.46831
+-413.927,169.0336,96.42261
+-412.0188,172.1153,97.71794
+-413.9083,175.0369,93.30647
+-413.9163,175.1735,92.62337
+-413.8996,175.3559,91.71483
+-405.9236,172.0818,95.45692
+-406.6147,171.9707,95.91259
+-406.192,172.2133,94.76188
+-405.8936,173.7059,94.06607
+-403.1747,175.0779,92.19976
+-406.9721,177.2235,94.91102
+-405.6323,176.3693,95.68029
+-405.668,176.5219,94.91319
+-408.3669,176.6712,93.78047
+-408.1949,176.9061,92.63239
+-409.4317,177.5994,92.29396
+-410.9276,177.5753,92.7351
+-412.5473,177.7177,92.42385
+-412.775,176.8406,92.25193
+-413.8771,175.5807,98.38579
+-412.6971,175.7116,97.90137
+-413.1979,175.8396,97.19038
+-413.4497,176.2852,94.92899
+-413.2307,176.474,98.36343
+-411.4486,176.3112,98.64738
+-412.8628,167.4352,93.28417
+-417.1281,167.1915,93.79838
+-419.4653,167.2739,93.00417
+-416.2618,167.9244,90.26412
+-406.2838,167.8947,92.02896
+-406.5727,167.2859,95.05586
+-409.0326,167.0502,95.8477
+-405.8505,172.0459,95.26028
+-407.6277,171.8106,96.16052
+-410.9904,172.1963,93.66937
+-417.8854,171.7739,94.6909
+-421.8229,172.1517,92.14622
+-424.1894,171.6243,94.42558
+-421.4013,171.3192,96.41712
+-412.0027,176.3961,94.19164
+-407.6958,175.8223,97.78512
+-458.8291,160.5451,20.05262
+-457.6884,162.5061,17.28891
+-457.4217,160.3028,16.74157
+-458.1976,159.8904,16.30702
+-458.3608,160.2805,17.41387
+-461.8864,157.6255,13.51492
+-462.5493,158.0761,10.92373
+-462.5562,158.2513,11.36899
+-461.0732,157.9572,13.71234
+-460.3104,157.981,13.18481
+-460.5404,158.3586,14.29805
+-461.6719,157.9941,14.26408
+-459.7446,161.309,21.02861
+-457.317,165.5813,24.16294
+-458.1581,165.5362,24.69768
+-457.3817,166.3922,25.09973
+-458.1424,166.384,25.66398
+-452.1418,166.6679,25.87851
+-451.5431,166.8064,25.76195
+-451.0686,166.6555,25.02274
+-450.4404,166.8209,24.95005
+-456.6387,162.3564,17.83291
+-457.2148,162.3471,18.25286
+-457.6705,162.4016,18.73822
+-457.5238,163.0457,17.68529
+-459.1489,164.9864,14.78559
+-462.2147,167.8454,18.52642
+-462.7251,167.878,18.99953
+-463.4207,167.909,19.61121
+-464.3355,161.7564,12.5651
+-463.5646,162.049,12.69816
+-464.6939,161.9069,13.21411
+-465.9854,162.9708,13.17818
+-469.4721,162.6227,12.48574
+-466.2911,166.6539,12.40845
+-466.2191,165.3744,11.19423
+-466.7757,165.423,11.74273
+-465.962,166.6892,14.25749
+-466.9344,166.6602,14.93316
+-466.7114,167.8076,15.80437
+-465.5005,168.5572,16.44037
+-464.7889,169.4114,17.66697
+-464.386,168.7347,18.14703
+-459.0779,168.9722,14.65512
+-460.1727,168.4601,14.22674
+-460.3995,168.7163,15.03643
+-461.9497,168.9258,16.74782
+-459.8711,169.438,14.04668
+-460.6904,168.485,12.74143
+-459.5715,160.7358,19.68747
+-456.5395,162.6233,22.08756
+-455.6898,163.7036,24.13968
+-459.7411,162.3825,23.95044
+-464.5932,157.8364,16.30404
+-462.1337,157.8433,14.41533
+-460.0132,158.9143,15.45927
+-464.4955,161.6644,12.67113
+-462.7162,162.4249,13.20036
+-462.5097,164.0338,17.07738
+-457.4689,167.0853,20.82453
+-456.9467,168.9541,25.10899
+-453.7633,169.923,25.07291
+-453.9901,168.592,21.90912
+-463.3663,168.2359,16.33934
+-463.3273,166.1589,11.09758
+-412.0793,206.3377,30.58607
+-410.4066,208.5128,28.29349
+-410.9248,206.5854,27.17897
+-411.8058,206.5835,26.74918
+-411.7973,206.6812,27.92998
+-416.1172,206.5005,23.93161
+-416.6512,207.8426,21.63593
+-416.5864,207.8795,22.1086
+-415.2348,206.4834,24.10888
+-414.5237,206.4056,23.5181
+-414.5819,206.5118,24.70977
+-415.7704,206.5564,24.71882
+-412.6525,207.0527,31.82481
+-408.8293,209.2635,35.62806
+-409.621,209.3453,36.22962
+-408.5884,209.7576,36.74038
+-409.2912,209.8385,37.37008
+-403.5531,208.1004,36.93798
+-402.9463,208.0651,36.79028
+-402.5712,207.981,35.98616
+-401.9265,207.9483,35.88388
+-409.4582,207.8874,28.65378
+-409.9917,207.9481,29.12283
+-410.3886,208.0093,29.65656
+-410.057,208.8376,28.79113
+-410.9921,211.9241,26.69006
+-412.7967,214.4593,31.36805
+-413.2528,214.5218,31.89094
+-413.8799,214.604,32.56842
+-417.0262,211.292,24.35438
+-416.1986,211.2711,24.46497
+-417.2947,211.3633,25.05806
+-418.144,212.7524,25.4455
+-421.5554,213.7546,25.10506
+-417.1889,216.3975,25.67435
+-417.5905,215.5543,24.17622
+-418.0826,215.6252,24.78105
+-416.8207,215.809,27.4198
+-417.7266,215.9085,28.17629
+-417.1019,216.6324,29.27673
+-415.6917,216.7432,29.93381
+-414.6996,216.9455,31.24353
+-414.5409,216.0697,31.48564
+-409.5633,215.5438,27.56475
+-410.7777,215.5527,27.15339
+-410.8824,215.6324,28.0225
+-412.2229,215.846,29.90219
+-410.1641,216.3903,27.1922
+-411.2932,216.1553,25.79472
+-412.7205,206.8513,30.37154
+-409.1653,206.9136,32.79492
+-407.945,207.0463,34.93816
+-412.2071,207.2102,34.90152
+-418.5159,206.7885,26.98331
+-416.2518,206.5268,24.88054
+-413.8669,206.5216,25.90301
+-417.2052,211.2309,24.45186
+-415.2603,211.198,24.94192
+-414.4164,211.5088,29.04729
+-408.5417,211.6018,32.82095
+-407.3019,211.9327,37.34594
+-403.9813,211.7926,37.17979
+-404.7308,211.5414,33.83201
+-413.8001,215.7923,29.50304
+-414.6084,215.3583,23.93977
+-465.4553,189.1093,-0.9502716
+-462.3588,189.3866,-2.095126
+-462.6639,190.1163,-2.776461
+-462.493,191.3672,1.052168
+-466.8808,192.4096,2.519267
+-466.8425,194.5604,1.72155
+-466.9899,194.5209,0.9571874
+-462.7217,194.2032,0.8584397
+-467.0421,198.5024,-0.9742453
+-466.9561,198.4617,-1.676377
+-463.6236,198.2908,-0.2965894
+-462.5753,198.124,-2.1597
+-462.9699,198.0877,-3.472803
+-462.0474,191.8336,-3.92384
+-463.1289,191.9043,-4.162597
+-464.4503,199.4957,1.432371
+-461.995,198.2643,1.534431
+-467.2218,199.8468,-3.550872
+-465.9976,199.5171,1.090158
+-463.5073,198.0755,-4.502031
+-463.0668,196.5138,-3.781012
+-464.0002,194.2909,3.25039
+-465.5655,194.4142,3.416675
+-465.2098,189.7049,2.126917
+-467.9697,189.8961,1.994447
+-463.1965,189.3825,-1.493147
+-466.3178,189.5285,-3.069047
+-465.9822,189.602,-1.088912
+-463.8256,189.3573,-2.919369
+-463.292,191.8262,-4.108567
+-466.799,194.4594,1.661348
+-421.0696,169.0897,3.353264
+-418.4736,169.8428,1.437703
+-418.999,170.6426,1.020552
+-417.7389,171.2565,4.800455
+-421.5234,171.624,7.634956
+-421.8151,173.8708,7.27288
+-422.1833,173.9439,6.5898
+-418.1321,174.0513,5.209699
+-422.9772,178.1662,5.527731
+-423.1041,178.2499,4.835692
+-419.5071,178.1696,5.141342
+-419.0602,178.4116,3.058135
+-419.8289,178.5549,1.931201
+-418.8267,172.5759,0.08320546
+-419.932,172.5825,0.183253
+-419.8259,178.9898,7.227015
+-417.4045,177.9957,6.388084
+-423.9771,179.8935,3.407536
+-421.4041,178.9211,7.354782
+-420.6494,178.6617,1.116563
+-419.9487,177.0512,1.37792
+-418.6364,173.6227,7.841368
+-420.0834,173.5686,8.47098
+-419.9369,169.1909,6.28426
+-422.6148,169.1399,6.989579
+-419.0912,169.6606,2.243678
+-422.5447,169.7688,1.688394
+-421.6337,169.5465,3.465919
+-420.1176,169.8114,1.080005
+-420.0679,172.4816,0.2664738
+-421.7876,173.7856,7.18508
+-486.3641,189.0137,62.72159
+-485.1145,189.5144,59.69442
+-485.8087,190.2747,59.52126
+-482.8434,191.263,62.06732
+-484.7002,191.9945,66.36959
+-485.2204,194.195,65.98095
+-485.8847,194.2019,65.57321
+-483.0845,194.0919,62.33669
+-487.2663,198.3012,64.63931
+-487.7272,198.3134,64.10123
+-484.4643,198.2032,62.55857
+-485.1352,198.2155,60.52195
+-486.3711,198.2521,59.92824
+-486.2055,192.0945,58.43667
+-487.1099,192.131,59.0789
+-483.7223,199.245,64.42631
+-482.015,198.1256,62.58576
+-489.2623,199.8115,63.15143
+-485.0182,199.2177,65.33823
+-487.4934,198.2864,59.63222
+-486.6951,196.7007,59.66461
+-482.1802,193.9531,64.89141
+-483.111,193.9912,66.16623
+-483.916,189.4048,64.65495
+-485.8719,189.4754,66.61484
+-485.2355,189.4293,60.71536
+-488.5012,189.5384,61.96879
+-486.8121,189.4896,63.05679
+-486.7128,189.474,60.21931
+-487.1815,192.0418,59.22891
+-485.2375,194.1005,65.90028
+675.1523,117.9277,614.9133
+-636.7658,130.6016,287.632
+-493.0235,166.9334,-525.3121
+-440.5885,165.8256,-532.4202
+-502.315,165.8605,-507.0617
+-499.8742,166.4551,-521.0654
+-8.916199,121.735,549.2854
+-16.65789,118.2919,586.4855
+-487.5478,165.9144,-499.4431
+-453.2323,167.1372,-542.0829
+-513.5754,165.8878,-520.9537
+680.4288,130.27,570.2236
+-592.3065,123.1649,264.4893
+-610.193,120.2463,284.7293
+-557.0151,120.1418,289.4526
+685.54,130.27,568.2966
+479.2643,155.5696,31.5551
+616.6816,117.92,648.588
+735.0102,144.6988,10.48104
+-42.89165,119.2416,519.5658
+-31.79702,117.469,542.7158
+-72.65959,114.8081,528.1563
+-86.26115,117.4229,601.8322
+301.8083,162.2231,391.595
+-351.2186,135.437,93.73633
+223.1538,147.0293,-543.7695
+360.3608,134.3672,-178.8099
+145.538,143.9092,-395.2897
+173.8945,142.6449,-366.9467
+134.9543,139.4543,-334.5599
+-156.6449,129.9396,502.5135
+-307.8488,136.9871,78.11414
+-259.3171,139.2038,-83.08636
+165.5201,143.3963,-386.5945
+224.9744,147.7792,-524.2097
+110.2189,139.149,-350.3875
+-355.0028,135.3944,572.2384
+565.6865,126.8251,-502.9331
+-328.6465,133.916,85.31982
+445.8057,139.7657,-187.4885
+128.6016,138.1484,416.6826
+340.696,131.4873,-95.50378
+151.9088,146.8843,389.1805
+-343.7786,131.8559,553.181
+-251.2697,139.4982,-104.2031
+413.6816,126.0727,-689.9817
+306.5217,149.3393,126.1509
+-713.9015,121.2428,99.2373
+-170.0584,132.9614,504.9891
+108.9755,139.7528,-370.5862
+-359.2312,132.6331,560.8274
+449.8877,136.4732,-162.8142
+-165.5801,132.5833,523.895
+132.1422,136.7816,440.67
+203.0814,124.9831,85.50183
+227.2517,143.7281,-563.2083
+-126.7086,145.3975,-724.5259
+-766.0446,124.3425,141.3751
+-761.1989,124.0578,132.3024
+-380.1678,129.5447,362.9806
+-137.856,132.8435,523.4886
+144.2943,139.8546,421.999
+124.0167,141.273,390.282
+-733.171,122.9116,139.4371
+581.4425,124.7904,-506.064
+-87.84886,116.6201,612.6772
+-480.4406,171.0289,-560.0685
+618.408,117.92,647.1108
+-493.9498,119.116,331.0318
+-494.4201,119.014,332.7204
+-635.0577,132.2811,286.7285
+-547.2908,118.22,380.1336
+684.6335,117.89,596.777
+-39.36612,122.6432,522.5853
+-37.03951,117.7076,545.0775
+-75.66792,118.3184,531.5834
+-71.081,115.3667,541.7444
+-29.72386,121.5443,516.3762
+-47.55302,116.1298,545.7142
+663.3468,118.03,580.0156
+-453.7906,163.1169,-451.5072
+-470.9869,165.8724,-488.0334
+-450.9044,165.0902,-484.7439
+-415.3472,166.0175,-525.5933
+-502.5301,165.8685,-488.6593
+580.1211,119.2418,630.9045
+683.3183,130.27,569.1241
+-1.95578,122.669,548.4177
+-21.9761,118.481,591.1496
+480.5072,167.5995,27.75984
+-516.3922,121.4979,299.1548
+-684.5701,121.1043,370.192
+-671.4855,117.74,394.5367
+-466.6097,123.1176,299.9258
+-618.3939,127.8529,259.5487
+-619.3044,116.1833,381.4924
+-667.241,130.1086,310.2795
+-654.3456,118.09,368.3168
+685.7927,118.02,621.7696
+659.0145,118.02,626.5677
+-471.4207,167.5604,-582.2374
+-472.7605,162.0177,-438.7706
+-467.8601,164.7399,-462.2687
+-477.6672,167.4754,-573.3567
+-489.9833,165.5627,-441.5092
+-480.3985,161.0093,-448.759
+-469.2142,167.8631,-552.6592
+-467.3326,166.8813,-592.3707
+-488.4589,118.291,330.4001
+-58.98864,113.4019,527.2322
+-53,117.0688,546.4084
+-53.56055,117.9818,513.6323
+-37.42881,119.9015,555.8666
+-27.09039,120.9456,535.1954
+-487.0847,165.3427,-475.3068
+-427.5446,167.4333,-582.1725
+-453.4232,166.6785,-608.2069
+-458.516,167.4233,-576.4116
+-429.5919,172.1641,-612.3954
+-456.9055,164.5476,-466.2044
+-417.5761,171.572,-600.9722
+-486.7131,167.0902,-587.9969
+-20.01561,118.6062,585.1952
+-6.883011,122.0762,552.2498
+-488.6409,118.291,334.9909
+652.3018,117.95,617.4987
+349.9433,165.6678,134.8645
+-17.12143,118.6377,579.735
+-12.30016,121.3964,555.1453
+-446.1925,169.9225,-606.5939
+-458.2175,170.5269,-559.8991
+-479.7906,168.6654,-478.9033
+-458.1718,169.8551,-596.3315
+-462.312,169.8823,-604.6807
+-556.7496,120.1173,289.6077
+-610.3746,120.2378,284.9785
+-592.4853,123.1661,264.2379
+-594.9773,123.5713,264.3864
+-554.5446,120.8042,288.5768
+-609.5313,120.94,287.2571
+-470.4299,164.8595,-437.6609
+-469.0451,170.5755,-582.1646
+-469.9146,167.8702,-463.1165
+-477.474,170.4606,-575.7629
+-489.0306,168.5973,-443.6591
+-479.8374,164.7763,-448.2755
+-468.8515,170.7318,-555.1846
+-467.4858,169.9013,-590.0054
+680.5773,117.9856,611.4794
+476.5169,157.9438,27.33526
+-592.3172,123.1402,264.7118
+-557.0952,120.1584,289.2439
+-609.9769,120.2499,284.67
+611.9907,118.1056,650.4256
+-502.7678,122.1539,280.394
+478.1343,157.5993,24.49561
+-574.0748,129.1961,359.1044
+-490.9297,118,332.8192
+-568.3143,123.8754,266.8315
+-647.5617,117.37,372.9478
+-459.8259,122.3976,304.5569
+-669.0861,127.3687,317.8343
+-612.5206,115.4633,386.1234
+-611.0276,126.0998,262.8121
+-664.7017,117.02,399.1678
+-683.1921,118.9956,378.0432
+-523.4779,119.2176,302.7012
+-504.8797,124.6692,396.8741
+-538.804,116.3771,320.1254
+-642.0455,124.9588,253.8513
+-620.6547,121.6408,279.886
+-421.1453,127.6683,289.4457
+-451.5741,121.5507,368.3254
+-551.974,126.2305,224.7077
+-514.7765,126.1358,255.5327
+-636.6797,115.7692,400.774
+-667.1721,120.856,345.675
+-486.3132,119.38,315.3298
+-619.9761,121.6576,223.2777
+-428.0093,121.1787,333.9549
+-632.4265,116.3331,370.2669
+-599.4797,114.3692,399.774
+-590.5685,114.7401,377.8101
+-503.6952,119.0301,353.1895
+-574.0797,116.7692,401.9741
+-605.804,120.1771,302.9254
+-415.6581,128.3661,266.2222
+-435.765,127.4171,278.4682
+-587.987,127.3036,220.7717
+-619.6797,115.1692,391.9741
+-654.2228,115.974,391.0398
+-548.9711,120.639,286.8598
+-625.5927,123.0682,267.0741
+-455.5797,124.3692,392.674
+-550.5242,115.4647,352.9395
+-474.183,120.0801,304.9921
+-432.1149,127.7139,265.4007
+-426.655,124.0899,309.0084
+-487.6039,120.8771,294.2254
+-453.5152,167.3103,-544.5586
+-516.0076,165.8214,-521.5185
+-489.9798,165.9154,-500.0124
+-483.5339,118.724,312.2218
+-52.3935,120.8796,514.7891
+-53.17899,120.2314,547.4394
+-58.85855,116.2845,525.5674
+-28.46518,123.8464,534.3051
+-37.14795,123.0891,556.7926
+-481.7264,165.4759,-477.7916
+-431.7608,167.4333,-586.3109
+-457.5843,166.7499,-612.4002
+-454.3607,167.5223,-572.2131
+603.0693,120.9949,618.5219
+652.9404,121.04,608.7815
+-567.9618,123.8507,266.6713
+613.3615,117.7,648.8228
+-15.80942,122.0795,525.8404
+-66.91226,115.2417,514.9495
+-38.0826,122.4658,508.5242
+-86.4884,117.5439,537.0897
+-52.61676,117.3256,533.6715
+-60.08999,119.2408,539.8911
+-60.35887,118.3557,520.781
+-47.21537,121.1986,555.9024
+-18.33122,124.8848,532.9106
+21.75136,1021.432,176.7857
+19.81256,788.5556,404.0895
+23.06649,1049.86,193.8569
+22.69302,803.6281,433.2059
+356.226,162.64,134.9631
+118.5328,134.1096,-390.234
+654.8289,118.04,584.5441
+-488.2518,119.303,331.9878
+656.249,117.95,620.9489
+-646.9605,116.82,375.3271
+-664.1005,116.47,401.5471
+-611.9194,114.9133,388.5027
+-671.131,126.7514,319.1617
+-610.0919,125.2176,264.9733
+-459.2247,121.8476,306.9362
+-525.7697,118.4547,302.0005
+-684.5152,118.2566,380.0503
+-545.3698,118.38,359.4999
+-88.4444,117.7809,597.8403
+-71.04074,115.1486,530.9456
+-31.5346,116.7366,545.8641
+-40.43528,120.1313,517.6444
+-556.4556,119.3049,293.9655
+-614.7771,119.6543,284.8557
+-590.9518,123.2596,260.0694
+681.3444,120.878,591.2286
+664.9572,118.03,583.6696
+-592.0625,123.141,259.7016
+-614.7642,119.6201,286.0312
+-555.2888,119.2412,293.8333
+-48.38229,119.0908,545.1425
+-71.656,118.2687,540.7296
+-29.6264,124.5352,517.2856
+-562.9001,122.95,264.7039
+162.166,133.5352,-339.8826
+-47.11627,119.1353,548.713
+-68.12,117.5466,539.5771
+-29.08114,124.6674,513.5389
+683.1481,117.89,593.0703
+666.8225,121.018,585.449
+-562.9282,122.9491,264.8823
+677.799,117.9969,613.7307
+-503.0809,131.8164,283.3038
+355.52,162.64,135.4851
+-489.7544,118.291,334.8914
+436.245,149.2644,-333.929
+495.6407,127.6581,-325.502
+770.4188,120.4839,-647.8292
+773.2444,120.4961,-649.8347
+664.7867,118.0883,635.2661
+154.703,134.06,-136.8001
+150.99,122.72,-134.3101
+-50.71104,113.5196,672.8947
+162.05,122.72,-138.4901
+177.3401,133.8592,-140.8676
+135.23,134.0794,-137.7954
+163.29,122.72,-141.7401
+-62.94765,112.929,675.8798
+653.3733,117.95,618.2572
+-509.9517,171.4396,-465.2869
+-463.912,173.2256,-570.0245
+-501.095,171.4415,-468.6472
+-437.2103,173.207,-583.0643
+-45.58391,121.2512,522.4817
+-33.921,120.5373,540.2944
+-74.78896,117.4988,525.3252
+657.6958,121.04,588.8836
+663.9525,118.1111,633.8216
+686.0079,121.02,624.2893
+658.7993,121.02,624.0479
+-548.7608,118.8,379.3491
+657.3555,118.04,587.7449
+10.11925,1034.127,193.1689
+9.445175,790.4028,425.1314
+9.05423,788.4544,421.4059
+9.944014,1030.277,190.8557
+579.3417,118.9314,630.3239
+436.401,149.2384,-333.679
+770.5748,120.4579,-647.5792
+773.1884,120.4701,-649.5453
+495.7967,127.632,-325.252
+-480.606,118.724,313.8878
+350.9882,165.6678,131.733
+674.783,119.3302,592.2814
+636.5416,119.2191,602.3345
+609.4311,117.7178,663.1989
+-512.781,171.4128,-520.5549
+-453.144,172.5576,-540.6944
+-486.6231,171.4114,-498.9492
+476.9287,155.6107,30.31741
+-497.799,125.9803,285.7694
+-486.7369,171.0902,-592.3431
+-414.0018,175.7296,-598.775
+-460.7052,168.8562,-467.5786
+-425.3992,176.1708,-611.2739
+-456.9852,166.7052,-610.3463
+-454.9572,167.5031,-574.2682
+-483.8618,165.4419,-477.9276
+-431.1346,167.4333,-584.2645
+-633.3128,132.7233,283.4164
+703.9295,118.8331,535.5453
+631.9106,125.3481,485.8521
+-47.45581,119.1691,541.6038
+-75.218,117.8269,540.0198
+-32.0941,124.2944,519.9762
+-488.1127,119.3033,332.8783
+727.7241,134.6412,7.222542
+-428.5291,172.1927,-614.6073
+-489.124,167.1002,-588.4553
+-416.0769,171.8051,-602.9011
+-458.1099,164.6517,-464.0687
+613.1339,118.1056,653.9194
+-635.5744,130.8797,283.0784
+621.1881,118.629,628.7583
+-564.2419,123.1426,263.026
+580.7313,119.2765,629.9664
+687.0006,121.02,623.2216
+657.8066,121.02,625.1156
+350.9309,165.6678,135.1678
+-570.2262,127.5235,359.8351
+659.1088,121.02,625.8068
+685.6984,121.02,622.5304
+655.5025,118.04,584.8057
+-502.2556,122.1468,280.5439
+480.6163,157.6566,26.99054
+731.081,134.2085,8.203674
+-571.1632,126.3186,356.8743
+-567.78,123.8298,267.0528
+682.3527,118.014,611.3044
+-460.2667,167.8783,-548.8294
+-522.3226,165.75,-516.593
+-496.3037,165.9104,-495.0978
+15.88177,1015.383,183.7456
+17.47195,796.399,439.527
+17.34266,1046.954,202.7039
+14.27317,779.6485,407.1639
+663.4594,118.008,624.6806
+681.3478,118.008,623.6566
+731.2255,134.1424,9.593437
+733.2659,149.2059,14.03822
+616.7841,117.92,646.6748
+121.4975,138.2791,-388.7059
+165.0603,138.0181,-340.0713
+-514.7401,171.3717,-522.0059
+-452.4333,172.7064,-543.022
+-488.5799,171.4414,-500.4035
+639.5948,121.04,599.5306
+-86.76534,117.168,605.2761
+-57.58175,113.049,673.6579
+130.97,133.8649,-140.7878
+167.55,122.72,-138.7401
+157.79,122.72,-141.4901
+147.99,122.72,-130.0501
+-50.45178,113.0599,667.1097
+181.6001,134.0737,-137.8752
+158.963,134.06,-133.8001
+633.8577,130.5511,618.9824
+624.7758,130.7004,600.7446
+628.428,130.256,610.0491
+651.5778,118.04,609.5575
+602.2328,117.9985,617.1874
+639.2546,118.04,598.3919
+686.6588,130.275,567.9647
+619.1563,118.629,628.8385
+731.0927,134.1175,10.75021
+-593.2755,123.0249,260.0241
+-614.0715,119.683,287.0824
+-554.3096,119.3136,293.043
+-637.7499,117.87,377.6766
+-669.6918,124.7743,328.4072
+-602.7087,115.9633,390.8522
+-600.563,125.3357,265.7771
+-450.014,122.8976,309.2857
+-654.8898,117.52,403.8966
+-679.6469,117.5349,388.2501
+-532.2037,117.5124,309.0128
+-545.2272,117.33,369.0044
+-480.1109,165.6046,-482.3209
+-455.0029,166.8775,-597.8295
+-460.8023,166.8833,-601.5378
+-449.347,166.8923,-605.1733
+-455.1786,167.4707,-561.5042
+-488.8473,172.3202,-589.3513
+-415.7941,177.0142,-601.946
+-458.461,169.9149,-464.6187
+-427.7522,177.4119,-614.0741
+688.8336,130.708,603.2101
+626.6899,129.908,591.621
+627.4912,123.0442,636.2011
+637.5404,129.908,576.2968
+705.5478,118.8086,536.0092
+633.5219,125.2211,486.3235
+685.2006,120.89,595.9422
+-563.2323,122.9708,264.9959
+662.8084,121.03,580.8691
+-633.7454,133.0179,283.4164
+355.0033,162.64,134.7122
+159.193,134.06,-136.7701
+181.83,133.8613,-140.8376
+157.56,122.72,-138.5201
+-53.36372,112.8841,668.6971
+150.96,122.72,-129.8201
+167.78,122.72,-141.7101
+130.74,134.0772,-137.8254
+-60.23523,112.82,671.6738
+656.7607,117.95,615.7438
+-481.948,118.724,312.7519
+-493.4203,165.9135,-495.4215
+-519.4406,165.8159,-516.9219
+-458.9917,167.6577,-546.2324
+636.3077,131.1736,620.8259
+626.6766,130.7697,603.2288
+630.9113,130.3982,611.9471
+654.1194,117.95,620.4902
+684.2661,117.89,593.9906
+-52.50999,117.2674,547.9254
+-59.34865,113.2485,525.674
+-52.01055,118.2225,513.2851
+-36.06353,120.2127,556.6541
+-28.62281,120.8034,534.7344
+-505.4033,165.8654,-505.2259
+-490.3277,166.7231,-522.9465
+-443.4979,166.0318,-534.5179
+-503.4331,166.4369,-521.5568
+479.0578,155.5524,31.20133
+106.95,131.5168,-371.7135
+-172.3495,124.7625,504.1321
+-715.6036,112.8595,99.06763
+305.6459,141.0269,124.3228
+-342.9156,123.382,552.3728
+153.307,138.5481,390.5062
+411.6652,117.7584,-690.0864
+-253.2484,131.1992,-104.848
+580.2994,116.6411,-503.7217
+-736.5615,115.0679,139.8673
+-140.1612,124.6061,523.6791
+147.103,132.0224,420.0061
+-378.1593,121.2377,362.5751
+126.0861,132.972,390.4043
+-765.957,116.1663,143.8945
+-758.6318,116.1091,134.1553
+229.6981,135.8348,-560.9913
+-129.7822,137.7763,-722.1436
+204.1663,116.8594,87.95801
+451.5588,128.2451,-164.4606
+-165.2997,124.2463,521.9922
+134.7648,128.9246,438.5265
+-358.2378,124.7345,563.9625
+164.0178,135.0895,-387.9895
+227.5908,139.7028,-525.2729
+-306.9938,128.6518,79.84546
+-257.4829,130.8698,-82.466
+135.0745,131.019,-333.1335
+-157.6648,121.5608,501.1135
+226.5126,139.1991,-542.9874
+-349.8816,127.2444,91.66309
+143.2657,135.7517,-396.5124
+175.9427,134.3434,-367.2545
+361.5631,126.2696,-176.3223
+303.1104,153.9384,389.9001
+341.584,123.3339,-97.94043
+127.7773,129.634,416.5101
+445.5195,131.4091,-185.6746
+-327.3044,125.4867,85.91174
+-355.3981,126.8754,571.5491
+564.3846,118.44,-504.0287
+108.6664,130.8238,-349.1685
+-478.4401,169.1019,-558.3354
+688.8659,130.551,565.17
+-494.2737,118.291,330.8329
+663.8087,118.03,582.7879
+-571.2292,126.3301,356.3879
+731.4417,133.9714,13.72555
+-570.3135,127.7197,361.2006
+637.4016,118.04,595.4526
+-547.3662,117.88,370.2072
+351.4682,165.6678,135.65
+-460.3353,170.5961,-579.5206
+-490.6591,168.5482,-474.6421
+-425.8155,170.7198,-578.8503
+-436.8772,169.9527,-551.7636
+13.94138,784.2321,408.8153
+16.70719,1045.666,198.0366
+16.52766,797.7537,434.9314
+15.52675,1020.142,182.7093
+356.2803,162.64,134.5098
+355.17,162.64,134.5372
+-635.2032,132.3297,286.757
+657.4408,117.95,618.9751
+-572.2545,118.6172,355.5059
+653.3881,121.04,609.3651
+602.4587,121.0362,618.9298
+755.1429,142.7502,-702.3653
+485.4365,149.3443,-302.2502
+769.9973,151.5859,-689.2267
+778.4166,151.5859,-668.2983
+775.4865,142.7502,-698.7119
+683.2844,118.0326,611.3422
+726.469,134.6415,11.44022
+-526.7459,168.7462,-487.0542
+-427.2976,167.1897,-527.4045
+-473.276,168.5897,-508.4632
+652.6057,118.04,612.4195
+599.3138,118.1675,618.0233
+-567.0571,122.9359,263.7727
+-89.47012,117.2623,604.8466
+-534.3317,120.8825,274.1883
+-85.73962,117.6866,598.2698
+19.87996,1036.427,199.2337
+19.60016,789.3268,430.8812
+18.25863,782.3671,417.4606
+19.26947,1023.192,191.2853
+666.4,121.03,582.4291
+-488.1667,119.3033,333.0387
+681.664,120.89,594.2612
+354.4238,162.64,135.2803
+-53.30219,121.0835,513.863
+-59.82639,116.3061,526.455
+-52.28699,120.1062,546.4836
+-28.17312,123.8466,535.5856
+-37.12915,122.9843,555.4836
+-500.8961,128.0357,285.1412
+8.565708,1051.088,189.6352
+7.984857,806.6501,431.1706
+5.398573,793.1285,405.0545
+7.385275,1025.565,174.3079
+737.2748,147.8574,10.63985
+40.33001,117.56,7.100029
+-87.20526,117.6815,538.1485
+-38.81818,122.2801,509.5626
+-67.65244,114.9133,515.9486
+-16.87959,121.9451,526.5408
+-520.2173,168.6879,-517.3787
+-458.7178,170.5912,-546.8488
+-494.1277,168.8105,-495.8304
+-355.6162,131.1609,570.9406
+564.3993,122.7659,-504.293
+108.6517,135.1576,-349.1244
+341.7882,127.6409,-97.5025
+-326.9396,129.7934,85.5907
+127.2435,133.9036,417.0292
+445.769,135.7343,-185.5573
+225.807,143.4655,-543.2766
+-349.6351,131.5323,92.24341
+143.3972,140.0584,-396.0454
+175.9427,138.6732,-367.0634
+361.6212,130.5764,-176.8039
+303.1104,158.272,389.9591
+-307.7014,132.9257,79.97595
+-257.4535,135.2028,-82.37775
+164.0325,139.4235,-388.0042
+227.1958,144.0172,-525.1561
+134.8405,135.3357,-332.8259
+-157.3143,125.8686,500.7924
+451.6757,132.5538,-164.0079
+-165.0501,128.5731,521.9922
+134.1284,133.1966,438.885
+203.8009,121.1716,87.724
+-358.7269,129.002,563.3854
+-139.9858,128.9185,523.2843
+146.5837,136.2866,420.5812
+-378.1593,125.5717,362.5751
+125.6843,137.2201,391.163
+580.7806,120.9453,-503.8822
+-735.8427,119.329,139.5358
+229.4888,139.9914,-562.2004
+-129.0157,141.9961,-722.7679
+-766.5632,120.4386,143.4904
+-759.0525,120.4002,133.7159
+305.7195,145.3601,124.2787
+-715.78,117.1899,99.0675
+-342.6673,127.6922,551.9929
+152.8706,142.8471,390.8414
+411.6504,122.0923,-690.1011
+-253.2483,135.5328,-104.7892
+106.9795,135.8408,-371.42
+-171.9266,129.066,503.8406
+-619.8731,128.0537,260.7373
+-620.9789,116.3833,382.3852
+-668.6409,130.8922,309.2464
+-468.2842,123.3176,300.8186
+-673.16,117.94,395.4296
+-656.02,118.29,369.2096
+-686.3515,121.5699,369.6912
+-516.4339,121.9945,297.3128
+-88.2517,112.79,661.1594
+153.18,116.26,-64.05009
+153.18,116.26,-40.55007
+183.33,116.26,-74.73001
+-518.9521,119.4805,373.2663
+636.7279,118.04,595.191
+-445.8097,169.6907,-594.4385
+-445.6561,170.0387,-554.0968
+-496.5427,169.4461,-567.3849
+-472.4991,170.3984,-569.9125
+-476.4025,167.4988,-454.2491
+-462.7631,165.4765,-442.7931
+-498.0531,168.391,-450.2635
+-453.9562,169.7113,-585.1805
+609.4956,117.65,647.5838
+653.6951,118.04,612.9875
+598.677,118.2264,619.0724
+478.7583,167.5759,26.19762
+-416.6991,172.1976,-609.4177
+-405.6314,172.1464,-595.308
+-487.1503,167.1002,-601.2219
+-469.5303,165.5427,-470.0405
+340.3047,123.2321,-96.34314
+-329.3458,125.6614,85.93506
+445.3274,131.4756,-187.7135
+129.6248,129.9649,415.6879
+565.6584,118.5336,-502.4265
+-354.5848,127.1803,573.4049
+110.2471,130.8425,-350.4722
+-259.3735,130.8987,-83.25562
+-306.4927,128.7953,77.86377
+225.7316,139.5099,-524.4338
+165.4919,135.0894,-386.5663
+135.4028,131.1804,-335.1496
+-157.3167,121.6827,503.129
+360.2494,126.1124,-177.8868
+173.8945,134.346,-367.313
+145.286,135.6544,-396.1848
+-351.691,127.2184,92.62402
+224.5061,138.8519,-543.2154
+301.8083,153.9169,391.4822
+124.7869,133.1306,388.8279
+-380.1678,121.2377,362.9806
+-138.1921,124.5778,524.2452
+145.2894,131.6814,420.8967
+-734.5487,114.7443,140.0725
+580.5203,116.5405,-505.7563
+-128.1776,137.3095,-723.3293
+227.653,135.761,-560.8908
+-760.3926,115.833,133.1443
+-764.8827,116.1537,142.1499
+449.6638,128.2147,-163.6819
+-166.0587,124.29,523.895
+133.3619,128.5934,439.9828
+203.7817,116.7179,85.95044
+-358.2936,124.4537,561.9337
+-170.869,124.7129,505.5477
+108.919,131.465,-371.1487
+306.3807,141.034,126.2355
+-713.5634,112.9427,99.23755
+-251.2697,131.192,-104.3159
+413.7098,117.7658,-689.9535
+152.7454,138.6446,388.5381
+-344.2545,123.5946,553.9092
+-84.07794,112.79,649.4702
+140.97,116.26,-61.82008
+140.97,116.26,-38.32005
+195.54,116.26,-76.96002
+-567.8081,123.8289,267.2313
+687.3633,118.02,620.4478
+657.4438,118.02,627.8895
+-476.3622,126.4154,396.6585
+-96.66079,129.684,192.2047
+-127.1972,115.7668,174.9606
+80.03099,118.274,-49.16503
+182.1712,116.4988,-70.77002
+-98.92715,166.1014,192.6784
+-74.70466,146.0847,147.8872
+-156.8632,135.5168,203.3777
+-206.9503,121.9863,441.4984
+268.4453,121.9745,-638.2122
+-105.1464,167.9217,168.8886
+-417.2814,125.3006,440.3864
+11.24337,116.471,-75.76518
+-78.75562,142.81,115.8962
+-27.53833,131.1314,334.2454
+-104.9559,160.726,138.7291
+-109.7086,135.1143,170.8082
+-109.2364,118.0019,76.20234
+-88.9307,167.4887,162.7409
+-768.263,115.6271,343.6975
+74.23692,119.0736,-34.05701
+-78.63336,126.8508,210.8533
+10.83325,127.7173,-339.1681
+-104.5613,116.9323,138.564
+-85.27576,130.8509,236.1826
+-130.2303,155.7556,177.2432
+-110.1182,131.1094,134.6791
+397.8898,126.471,-16.95422
+-175.3767,137.0904,206.0851
+192.2359,122.411,-124.2652
+-109.1163,164.3897,76.38599
+-20.79872,123.3782,626.6423
+-17.99854,122.6889,-669.8976
+-125.2714,112.6604,-358.2499
+-138.1412,115.9636,175.2269
+-106.6834,117.9525,151.4642
+-70.3701,133.3907,121.7729
+-117.7811,112.0283,133.7416
+182.0251,119.111,16.74597
+-80.69375,132.1256,165.0681
+-104.3745,111.3016,760.4517
+-104.7725,125.8037,168.609
+-147.1902,152.9984,182.7593
+276.2593,124.6266,-623.0574
+97.32503,121.004,-29.93103
+-80.97351,167.6145,203.6449
+-128.1336,130.3303,178.3097
+160.175,122.371,-100.814
+-222.0502,135.3803,194.9591
+72.73896,117.435,-57.06602
+-153.5731,153.8703,200.1288
+92.10602,116.461,2.675018
+-93.63567,164.366,233.3997
+-123.0111,129.3842,130.6509
+-196.7614,114.9162,108.7566
+56.92501,116.471,-9.633972
+65.91502,119.111,16.74603
+-100.0373,166.0643,195.576
+-76.65913,141.237,174.2558
+-148.4313,134.6871,190.6996
+-161.0717,123.5863,348.4091
+-138.4348,159.8753,175.7195
+-131.3757,130.2873,182.1569
+-39.79584,122.7136,-430.694
+-20.49007,118.2301,615.873
+-197.1805,111.9943,-12.71698
+-143.3853,133.1308,179.4013
+-147.3486,111.834,182.9298
+-90.07223,129.5252,164.1507
+-157.0537,132.7406,191.4896
+145.295,116.521,-92.69403
+6.888023,116.4244,-71.65562
+-223.177,137.3853,191.0128
+-32.26416,139.369,187.2609
+-726.1163,115.2614,402.9592
+-145.4327,156.5194,187.5265
+102.2467,116.4402,-33.645
+-128.8604,156.7476,174.3048
+-213.6819,111.5867,135.2024
+-466.9055,114.1736,-103.2051
+33.66497,116.461,-81.48598
+-567.8467,113.8422,170.944
+-124.2734,134.0376,155.4041
+-106.3336,165.1536,153.1362
+323.2126,109.557,-785.8549
+-157.7089,114.9091,206.7081
+-99.5053,129.2267,195.4958
+-79.03125,172.9643,166.347
+-145.0866,115.688,187.2984
+193.3167,119.451,-49.50351
+-253.8953,111.7561,158.287
+-198.4366,209.0562,107.9032
+65.2719,116.432,2.420788
+-129.1686,114.8953,178.2401
+-71.13157,165.1226,153.6563
+-148.161,153.399,213.0148
+6.685997,119.111,-25.98495
+120.2639,116.461,-54.93427
+-215.0692,212.6556,129.9821
+-81.54585,137.1511,203.4514
+-25.05151,125.3712,-651.0387
+-100.7028,113.0086,-371.9114
+87.45511,116.471,-7.34004
+-93.61269,130.941,233.4833
+283.4938,139.7386,-482.4324
+-70.95397,158.8147,122.0182
+-198.6938,143.391,209.8091
+-97.90857,130.4283,191.397
+200.5221,128.3222,503.8064
+384.4407,128.2041,20.62988
+94.61093,118.2541,-33.64501
+-379.4766,129.0958,632.9813
+-70.62732,133.9705,153.989
+-103.6295,140.4329,172.5166
+-116.8843,161.7612,131.7409
+-273.7181,128.5805,-82.11487
+-215.5745,116.7677,131.028
+-157.1568,140.8957,215.8339
+104.635,116.471,-86.11414
+49.2359,116.471,-43.72497
+-157.861,153.4012,206.4885
+56.51601,119.061,-15.28498
+-213.6854,208.6074,135.5043
+64.36505,116.561,-31.15838
+-348.6608,127.4377,632.287
+98.74664,116.4403,-33.645
+-153.4595,115.5031,199.9065
+-148.4809,118.0349,212.1794
+-98.27136,132.4229,199.6099
+727.0797,134.7352,6.717567
+-448.1674,172.7664,-597.5898
+-442.2426,172.9948,-556.2317
+-477.2961,170.6153,-458.0488
+-469.1422,173.3868,-572.092
+-493.6089,172.6718,-569.8215
+-463.3209,169.2384,-446.0314
+-494.1922,171.4075,-451.2352
+-457.2794,172.7113,-582.9658
+-29.58732,116.7298,549.3197
+-38.90385,121.0787,514.1103
+-67.69251,115.3691,533.0607
+-502.3715,131.8194,283.5132
+-473.8094,174.1748,-554.0713
+-462.2829,172.9013,-591.2719
+-470.3314,170.7439,-457.7089
+-470.2982,173.4373,-587.4479
+-471.3284,169.1338,-441.9734
+-482.6352,173.548,-574.5359
+-494.353,171.6013,-444.2276
+-475.9608,164.987,-443.5214
+-455.7736,173.4326,-558.9011
+-448.5353,172.9292,-607.5338
+-463.2217,172.8983,-602.3381
+-455.8531,172.8869,-595.4131
+-478.1693,171.6655,-480.8482
+657.8311,121.442,582.6343
+662.5316,121.03,579.5654
+685.433,120.89,597.2546
+-48.2634,119.1259,541.0894
+-75.711,118.2613,540.7177
+-31.62006,124.3051,520.8092
+-493.4154,166.1401,-448.0156
+-460.6963,163.8719,-447.7712
+-459.073,167.4523,-585.7657
+-445.2834,167.6541,-599.6542
+-491.1923,167.8408,-566.7335
+-467.4063,168.0815,-569.3433
+-474.2013,165.2898,-458.9291
+-440.6107,167.6095,-553.5768
+-84.77636,112.79,667.6
+157.02,116.26,-70.28011
+179.4901,116.26,-68.50002
+157.02,116.26,-46.78008
+-493.7297,121.8428,284.8074
+357.1516,162.64,133.9966
+615.6678,118.1056,653.1489
+-483.9291,169.9259,-478.0338
+-431.3083,171.9153,-584.2085
+-454.8741,171.9875,-574.337
+-457.1901,171.1834,-610.1861
+737.1132,147.924,9.292587
+7.332545,1034.388,184.2105
+6.114249,795.4055,418.1013
+6.505196,797.3539,421.8268
+7.507779,1038.239,186.5238
+478.8457,155.5835,31.40884
+-69.30659,117.4216,525.3378
+-29.41499,121.9651,543.0729
+-46.42945,121.9775,517.1132
+-591.1056,123.249,259.7487
+-556.1844,119.2538,294.1901
+-615.0297,119.6229,285.1043
+-562.8866,122.9553,264.3433
+132.28,133.97,-139.3215
+166.24,122.72,-140.2101
+-59.74629,112.9709,674.0153
+157.653,134.06,-135.2701
+159.1,122.72,-140.0201
+149.46,122.72,-131.3601
+-51.04296,113.1749,669.2208
+180.2901,133.9686,-139.3415
+665.5388,121.018,586.1847
+-564.2834,123.1363,263.5651
+-49.96292,115.0424,687.0682
+179.0531,133.761,-128.5569
+175.819,122.615,-128.5891
+131.101,122.615,-141.8111
+141.489,122.615,-129.0991
+139.2609,133.7025,-141.6805
+-35.94689,115.1009,674.8829
+135.129,133.761,-128.5597
+-361.8612,123.8116,560.21
+199.9624,116.3307,84.7782
+449.257,127.8083,-159.7094
+-163.4775,124.1411,526.9652
+134.5939,128.4565,443.8005
+-763.796,115.7169,135.2689
+-766.864,115.5473,138.7122
+-128.8067,136.8414,-727.2659
+225.8955,136.687,-557.403
+-732.3842,114.1207,136.7502
+577.2268,116.8238,-508.0331
+120.8695,132.6317,389.5471
+-381.3218,121.2377,366.8251
+-135.4052,124.2023,521.3811
+145.2072,131.1353,424.8724
+-248.5231,131.2318,-107.2427
+415.8276,117.7614,-693.3632
+148.8411,138.3162,387.6664
+-342.8188,123.8415,557.6494
+-711.386,113.0313,95.8667
+310.3633,140.9714,126.7324
+-167.0791,124.2565,504.3066
+111.7167,131.6409,-374.0215
+109.4543,130.8799,-354.4068
+569.6074,118.4764,-503.1431
+-350.5895,127.4259,573.7025
+441.6313,131.7307,-189.2583
+129.8625,130.4777,411.714
+-331.1683,126.0806,89.48669
+341.8835,122.7848,-92.67999
+303.3394,153.8665,395.1923
+356.3201,126.2557,-177.0798
+171.9021,134.1924,-363.8319
+147.7321,135.9236,-399.3558
+-351.7133,126.6813,96.60181
+222.2257,138.6984,-539.9158
+132.2168,131.1818,-337.5911
+-153.5184,121.4691,504.4093
+225.4669,139.3772,-520.4308
+169.3118,135.0722,-387.7989
+-262.484,130.8682,-80.71887
+-309.4133,128.3951,75.13977
+123.4419,142.4329,-388.9914
+682.6523,120.878,590.537
+-594.691,123.6604,263.8597
+-610.1275,120.9319,287.1487
+-554.5939,120.7673,289.1797
+-484.215,168.2022,-558.8334
+-483.2159,165.5058,-432.154
+-487.7402,167.5459,-567.4637
+732.7982,134.4333,8.469955
+166.5867,142.0139,-341.7505
+476.9483,157.8228,26.23822
+-527.0145,165.8437,-494.2656
+-480.5381,165.8094,-508.2822
+-431.736,165.3091,-533.509
+651.5313,118.06,593.7625
+651.353,121.213,586.2799
+650.9054,121.213,585.6963
+650.2584,121.213,587.121
+649.8107,121.213,586.5374
+645.649,121.213,588.6141
+645.4558,121.213,589.7255
+647.5944,121.213,592.0989
+648.7139,121.213,591.7536
+647.8571,121.213,588.5219
+649.4638,121.213,589.5375
+652.7904,121.213,588.8221
+648.977,121.213,591.0768
+648.4979,121.213,589.1774
+651.6486,118.213,589.1689
+651.2009,118.213,588.5853
+649.9846,118.213,587.05
+645.3803,118.213,588.5517
+646.9443,118.213,591.5067
+647.3342,118.213,592.0314
+648.4451,118.213,591.6912
+647.597,118.213,588.4544
+652.5951,118.213,590.9557
+651.3788,118.213,589.4204
+646.7745,118.213,590.9221
+648.3386,118.213,593.877
+648.7285,118.213,594.4018
+649.8394,118.213,594.0616
+648.9912,118.213,590.8248
+650.5893,118.213,591.8455
+653.9159,118.213,591.1301
+650.1025,118.213,593.3848
+649.6235,118.213,591.4854
+651.0431,118.213,592.5182
+651.9644,118.213,591.6979
+653.0519,118.213,592.2648
+651.2438,118.213,593.2935
+612.0901,118.1056,653.2908
+735.9446,148.9961,10.96768
+-39.26793,122.4214,553.3632
+-25.56154,124.0688,537.1723
+-52.45999,119.707,543.4507
+-59.9091,116.5605,529.5071
+-56.35538,120.8392,513.7875
+726.4092,134.8637,5.324661
+614.5033,117.7,653.089
+-518.829,171.375,-515.4362
+-459.9869,173.1332,-544.647
+-492.6797,171.4305,-493.8405
+636.3193,121.04,594.3385
+-536.8961,120.9513,273.6097
+-547.785,117.24,368.5107
+107.1825,135.1707,-350.9056
+566.2079,122.6723,-505.7254
+-353.5001,131.1375,570.017
+-326.8989,129.9616,87.89319
+443.474,135.8608,-185.3369
+126.2861,134.0387,414.9324
+343.5885,127.4104,-96.0752
+304.8932,158.2521,391.4263
+359.8495,130.7645,-175.3352
+175.8766,138.5715,-364.7575
+143.7759,140.2925,-398.3111
+-348.5598,131.1977,94.25916
+225.5281,143.5745,-540.9871
+-155.0466,125.6559,500.4136
+132.5648,135.2393,-333.2041
+-258.3438,135.1655,-80.24756
+-309.9083,132.5782,79.39258
+228.1431,144.0469,-523.0505
+165.6363,139.4124,-389.6653
+-361.0203,128.7523,563.483
+135.7769,133.3068,440.4982
+-162.9094,128.4495,522.8489
+452.5516,132.3071,-161.8858
+201.5413,121.0043,88.16846
+-130.3924,141.9719,-724.6215
+229.5742,140.6399,-559.986
+-760.212,120.4907,135.7107
+-768.5027,120.0507,142.2988
+123.9117,136.7991,392.5815
+-377.7024,125.5717,364.8385
+147.6223,136.1357,422.6379
+-139.3538,128.6906,521.0752
+-735.6432,119.1171,137.2451
+578.4994,121.1906,-504.1419
+-252.6486,135.5631,-107.0187
+411.8003,122.085,-692.4053
+150.6622,142.5748,391.4583
+-340.9245,127.7252,553.5072
+307.8745,145.3151,123.4508
+-715.5886,117.1977,96.76648
+-170.3463,128.7982,502.1786
+107.6185,135.9866,-373.6341
+640.6834,119.339,595.9296
+-7.273445,116.5046,594.9163
+-62.64089,118.0984,608.7905
+-82.22874,117.7033,608.5726
+-12.62267,117.9149,581.9609
+-79.14606,117.9353,601.5891
+698.1083,130.708,601.1812
+645.476,129.908,571.085
+635.4096,127.4913,633.4338
+631.2853,129.908,583.3133
+-90.08844,116.9497,609.0702
+477.9903,157.6965,25.52621
+-489.836,171.6174,-446.6001
+-479.0681,168.264,-445.8959
+-472.7439,170.9641,-462.1993
+-467.8165,168.1833,-438.3962
+-466.5264,173.5178,-584.013
+-479.2036,173.4501,-578.3105
+-465.7164,172.9013,-587.4979
+-470.4084,173.7162,-557.8469
+-79.10986,118.0492,598.4521
+-9.52755,118.0427,581.4521
+-79.10089,117.7854,608.8271
+-65.73363,118.1019,608.2521
+-8.06501,116.4076,591.88
+701.2897,118.7837,539.9127
+629.2391,125.2683,490.1996
+676.7046,118.0143,616.9863
+-439.1,135.57,60.80001
+-439.1,189.02,60.80001
+-439.1,215.95,60.80001
+-569.6548,126.343,360.027
+483.6531,157.1618,21.96409
+-563.6826,123.0983,263.061
+732.0108,134.4623,10.29969
+-502.0325,131.7903,283.2651
+473.3185,149.2594,-333.4875
+739.4224,142.6653,-696.3059
+486.3282,127.653,-330.061
+474.845,127.653,-323.4965
+488.0782,129.126,-330.1111
+482.6613,149.256,-323.5262
+458.5847,149.2594,-277.7618
+785.3887,122.892,-666.6047
+783.9027,121.4124,-667.796
+456.1454,150.735,-277.23
+475.2808,127.653,-321.8763
+488.2153,127.653,-330.2592
+739.8327,144.146,-695.8553
+456.026,149.2594,-276.938
+740.3194,151.501,-675.8049
+455.6772,149.2594,-317.3661
+785.6587,121.416,-666.9686
+456.026,149.2594,-276.938
+740.1363,151.501,-674.4184
+468.1874,149.256,-332.2064
+504.8474,127.653,-377.2355
+474.9452,129.085,-322.9352
+740.2319,152.976,-675.6813
+471.6805,149.2594,-286.563
+760.6968,151.7169,-690.8319
+472.118,149.2594,-335.16
+456.1454,150.735,-277.23
+745.2851,142.6653,-694.2875
+477.1913,149.256,-323.8262
+486.5144,129.126,-330.4297
+486.9693,127.656,-328.5803
+758.5175,151.7169,-690.719
+469.848,149.2594,-285.2066
+784.3995,122.888,-668.2463
+783.8987,124.364,-667.7797
+786.2341,121.412,-668.431
+-424.9849,170.7679,-576.9997
+-437.7132,169.9918,-553.612
+-461.1715,170.6242,-581.3691
+-492.6815,168.5512,-474.4792
+-523.9601,119.5721,300.9221
+-685.0388,119.3271,377.9849
+-648.9508,117.5,374.2036
+-666.0908,117.15,400.4236
+-461.215,122.5276,305.8127
+-612.1725,126.1665,264.2981
+-670.724,128.0068,317.1758
+-613.9097,115.5933,387.3792
+639.2407,121.04,595.2421
+650.754,121.04,614.8416
+597.1716,121.2276,615.9398
+9.260818,1036.896,188.6238
+8.359365,795.1365,422.7911
+7.968419,793.188,419.0657
+9.085584,1033.046,186.3105
+-92.1355,117.526,602.2161
+-493.6998,119.116,331.1817
+665.2025,118.03,581.8378
+-514.576,168.7596,-522.1746
+-452.3135,170.0904,-543.1661
+-488.4777,168.8294,-500.6164
+477.903,157.6657,25.10154
+-88.96593,117.5173,601.4026
+732.0607,134.5067,8.868912
+-85.19708,112.79,652.8887
+144.49,116.26,-62.56008
+144.49,116.26,-39.06005
+192.0201,116.26,-76.22002
+682.8407,117.89,594.8928
+-493.7946,168.8105,-492.0447
+-519.8788,168.7602,-513.5942
+-462.1666,170.6404,-545.2533
+-568.7501,120.6366,360.7573
+639.777,121.877,595.8362
+-556.5925,121.8643,279.4262
+-562.3104,124.3443,259.6561
+-447.0579,122.6966,304.796
+-568.1368,128.2491,242.9277
+-553.3479,122.8443,265.5817
+-543.9908,122.81,268.1586
+-529.056,121.0834,272.5352
+-591.5236,122.4979,287.1226
+-25.63611,121.0782,535.7358
+-38.7004,119.6022,555.0193
+-55.08444,117.7749,513.8762
+-58.7364,113.5469,528.7618
+-53.37999,116.8727,544.9111
+-492.2707,169.2095,-469.8012
+-459.7931,171.2926,-562.0571
+-441.2729,170.9335,-590.9705
+-511.1122,169.2076,-474.1104
+-638.6323,129.4105,285.3285
+481.5644,157.4053,24.74864
+-454.2965,169.6767,-608.2161
+-457.7246,170.4434,-576.3403
+-428.3984,170.4363,-582.2416
+-486.77,168.3642,-476.0303
+-591.84,123.1728,265.056
+-609.8047,120.2688,284.1068
+-557.6718,120.2008,289.1301
+-554.6898,119.2165,293.8128
+-614.8041,119.6129,286.6296
+-592.6149,123.0977,259.4719
+-592.787,123.0692,260.0144
+-554.7527,119.3033,293.2531
+-614.2371,119.6696,286.6208
+7.944195,1037.787,211.8341
+8.487827,783.6384,443.0156
+5.901545,770.1168,416.8994
+6.763762,1012.264,196.5068
+-569.6783,127.5543,360.0261
+-489.0674,118.911,332.1757
+666.9878,118.1034,632.6191
+614.4246,117.7,653.9518
+8.248453,780.1635,425.7703
+8.639399,782.1119,429.4958
+8.904382,1029.368,201.1884
+8.729148,1025.518,198.8751
+-486.8108,171.0902,-599.2184
+-407.8612,176.0101,-595.6945
+-467.2197,169.3645,-469.7182
+-418.7361,176.1819,-609.5776
+656.371,118.04,585.7438
+-591.7051,123.2053,264.9329
+-609.9667,120.2707,284.0163
+-557.7458,120.1965,289.3002
+620.1158,118.63,630.6454
+620.9495,118.629,628.0251
+477.6236,157.7348,25.70546
+-502.9027,131.8278,282.9201
+680.8645,117.89,593.7836
+0.009674072,122.8656,545.0142
+-21.70687,118.2802,595.0704
+-413.3666,175.8444,-600.1184
+-488.2266,171.0802,-592.2972
+-461.1399,168.8802,-466.1532
+-425.0606,176.1718,-612.7253
+631.8878,125.3594,484.8133
+703.9005,118.8028,534.5071
+478.1358,155.6098,31.19557
+667.2153,118.03,582.8792
+656.6874,117.95,619.1676
+-434.1248,165.5313,-534.4047
+-482.6583,165.8113,-506.8459
+-528.4736,165.8146,-496.3699
+-169.6324,128.8784,504.4004
+109.2775,135.8641,-371.9953
+151.1718,142.8033,389.1909
+-343.1088,127.9217,554.309
+-250.9608,135.5412,-105.4051
+413.7722,122.096,-691.1547
+-713.6412,117.2771,98.05249
+307.564,145.3439,125.765
+-766.4875,120.2262,141.1322
+-761.4103,120.1708,133.7322
+227.4877,140.2516,-560.9596
+-128.1201,141.5168,-724.908
+-733.7272,118.8963,138.5615
+579.8268,120.9711,-506.0505
+-379.9324,125.5717,364.1461
+-137.6913,128.7729,522.7129
+145.3051,135.8679,422.5309
+123.4723,137.1619,390.317
+-359.9637,128.5926,561.4069
+202.2528,120.9439,85.94531
+450.2317,132.3963,-162.1365
+-164.7067,128.5532,524.3361
+133.5745,132.9221,441.172
+133.9969,135.4475,-335.0367
+-155.7985,125.881,502.6128
+166.3325,139.4176,-387.4365
+225.8243,143.8395,-523.2327
+-308.3366,132.8902,77.69397
+-259.8024,135.2125,-82.07043
+302.7264,158.2402,392.2965
+-350.8909,131.334,94.24231
+223.657,143.1744,-542.3256
+359.3953,130.516,-177.6121
+145.6125,140.0818,-396.8845
+173.8605,138.6234,-365.9345
+444.3951,135.8659,-187.4826
+128.5979,134.3041,415.1272
+-328.96,130.0547,86.79968
+341.4359,127.4204,-95.17029
+109.4758,135.183,-351.3452
+-353.7133,131.4538,572.3207
+566.6044,122.8113,-503.4284
+655.2195,117.95,616.814
+-452.6161,172.9119,-598.7175
+-480.1913,171.5773,-485.0076
+-459.9052,172.9013,-599.1134
+-451.8311,172.8877,-604.2883
+-452.5519,173.4277,-562.2205
+702.9008,118.8442,535.5478
+630.8838,125.4129,485.8493
+-570.8548,120.9376,362.6057
+143.62,116.26,-43.04005
+192.89,116.26,-72.24002
+143.62,116.26,-66.54008
+-81.31531,112.79,654.1252
+-645.8146,116.73,372.9876
+-662.9546,116.38,399.2076
+-668.5865,126.186,319.1815
+-610.7735,114.8233,386.1632
+-609.3618,125.3423,262.4742
+-458.0788,121.7576,304.5966
+-524.2294,118.2355,304.0919
+-682.0658,118.0493,379.183
+657.3417,121.04,584.5952
+139.22,116.26,-53.66005
+197.29,116.26,-61.62002
+139.22,116.26,-77.16008
+-69.91811,112.79,655.6247
+-568.1221,123.8721,266.1723
+-504.4046,132.7523,280.7595
+655.4634,117.95,616.1379
+677.8279,117.9701,612.7629
+592.1609,116.6358,652.3446
+601.4418,117.9488,651.2444
+598.3021,118.1851,650.5893
+594.8595,118.3883,650.6466
+594.8777,121.4431,650.5836
+597.3213,121.2867,650.7122
+600.0436,121.1174,650.8146
+601.4191,120.7821,654.4574
+601.11,120.9271,652.7035
+602.2884,120.8068,653.3889
+602.428,120.6175,655.8987
+601.9918,120.6888,655.2738
+595.3561,121.2278,653.3391
+593.8032,121.2612,654.1735
+594.1,121.395,652.0687
+594.5461,121.2692,653.4426
+596.8412,120.7543,658.67
+597.496,120.7924,657.5934
+597.828,120.6794,658.885
+594.4158,120.9051,658.6044
+593.3315,121.0367,657.6844
+594.8723,120.9931,657.0012
+596.5209,120.9379,656.3889
+598.6459,120.966,654.2234
+597.9386,121.0199,654.066
+598.1298,120.9334,655.1069
+599.4609,118.1631,650.5532
+600.8365,117.8279,654.196
+600.5273,117.9729,652.4421
+601.7057,117.8525,653.1275
+601.8453,117.6633,655.6373
+601.4091,117.7346,655.0125
+594.7734,118.2736,653.0777
+593.2205,118.307,653.9121
+593.5174,118.4408,651.8074
+593.9634,118.3149,653.1813
+596.2585,117.8,658.4086
+596.9133,117.8382,657.3321
+597.2453,117.7251,658.6237
+593.6813,118.1142,656.2021
+594.3027,118.0764,656.2079
+594.2897,118.0388,656.7397
+595.9382,117.9837,656.1274
+598.0633,118.0117,653.962
+597.356,118.0657,653.8046
+597.5471,117.9792,654.8455
+601.0623,117.5048,658.421
+-487.8736,119.064,334.1167
+-639.0854,129.1247,286.1113
+-91.38571,117.9051,597.0946
+-508.2936,165.8605,-503.0329
+-487.3528,166.5319,-520.8785
+-446.6567,166.223,-536.2924
+-507.0598,166.3872,-521.6465
+-508.8967,165.8654,-505.2072
+-444.9019,166.2251,-537.711
+-489.2366,166.4131,-519.6423
+-506.176,166.5097,-523.719
+657.8779,121.877,585.1893
+-462.0175,164.9466,-463.0215
+-412.0585,172.1209,-603.355
+-491.375,167.0902,-591.8296
+-424.6895,172.2046,-615.9151
+465.5781,149.2384,-310.2477
+461.4835,149.2384,-302.2003
+439.4406,149.2384,-281.3554
+502.8943,127.632,-375.4387
+502.7919,125.7496,-380.8282
+435.0285,149.2384,-285.612
+495.4338,127.632,-330.5354
+494.2088,127.632,-324.0225
+756.2813,120.3887,-726.3922
+437.2943,149.2384,-283.1741
+713.634,118.5105,540.3791
+592.7491,127.5716,568.7334
+738.7258,121.4999,517.3688
+754.225,121.8346,487.172
+733.4404,121.8921,514.3541
+584.0863,127.3078,570.7879
+564.1275,126.4668,546.6733
+646.2343,124.5895,489.0077
+743.6428,119.3403,499.4533
+628.8817,124.3425,475.8595
+697.4427,118.5199,544.1187
+558.6852,128.5644,566.6133
+598.6589,125.7698,560.7493
+668.3833,121.7138,541.7784
+761.7954,122.5146,500.7857
+617.9669,124.347,487.3558
+569.0327,126.5959,559.8045
+695.8452,118.5354,530.514
+746.6178,120.1531,519.1758
+644.4956,123.6955,498.0722
+758.1537,121.9671,493.5919
+705.4912,118.4837,526.7159
+-557.1388,121.0986,289.2764
+-609.9551,121.1888,284.5992
+-592.3643,124.0678,264.8677
+-564.27,123.1416,263.2045
+728.1878,134.613,6.453918
+477.7318,157.7718,26.21727
+638.2701,118.04,596.3908
+614.4241,117.7,651.4335
+-570.1929,127.7608,360.7677
+748.2915,151.676,-687.8694
+438.429,149.431,-317.223
+449.5976,149.4344,-340.456
+499.5942,126.3839,-379.0201
+455.649,149.431,-291.253
+502.4313,126.7393,-378.6229
+733.4069,142.8403,-682.1355
+733.8969,142.8403,-681.2755
+504.9453,127.8741,-376.0849
+761.8704,122.2273,-646.5461
+734.1774,142.8403,-682.7853
+763.7368,122.205,-644.8334
+762.5609,120.5847,-721.9155
+464.649,149.431,-293.943
+439.679,149.431,-299.103
+764.0115,120.5847,-721.0538
+465.759,149.331,-294.283
+504.4813,126.0987,-380.8298
+425.0107,149.4344,-319.7518
+454.6064,149.4344,-319.5102
+446.4439,149.4344,-339.6859
+448.109,149.431,-292.943
+464.979,149.431,-295.523
+426.1716,149.4344,-322.7581
+438.509,149.431,-315.913
+747.379,151.751,-688.533
+506.769,128.0296,-380.2029
+763.7062,120.5847,-722.272
+443.2282,149.4344,-331.9558
+446.699,149.431,-292.893
+747.149,151.676,-687.323
+761.5712,120.5847,-721.1516
+475.2833,127.828,-320.5953
+764.881,122.2035,-647.7322
+426.3475,149.4344,-320.3681
+687.7843,121.02,621.9346
+657.0229,121.02,626.4026
+617.7114,117.92,649.8051
+-483.3041,171.0902,-599.4464
+-409.2482,175.7212,-592.4787
+-466.3113,169.2936,-473.1121
+-419.4173,176.1562,-606.1303
+621.7572,118.629,632.5305
+465.5818,149.2644,-310.5423
+461.3275,149.2644,-302.4503
+439.4305,149.2644,-281.65
+437.1382,149.2644,-283.4241
+495.1393,127.6581,-330.5253
+493.9222,127.6581,-324.0911
+756.4823,120.4147,-726.6077
+502.7383,127.6581,-375.6887
+502.6472,125.9671,-380.967
+434.734,149.2644,-285.6019
+619.2246,117.92,649.1029
+-16.35028,118.0624,590.9652
+-6.670578,121.9596,545.3967
+629.0425,125.5287,485.8056
+701.0558,118.8623,535.5134
+-592.3245,123.0237,265.802
+-557.5293,120.2389,288.2403
+-608.9326,120.2667,284.3366
+649.0469,118.04,611.2666
+600.6936,118.0092,614.5498
+482.4868,157.1803,21.32207
+639.7301,121.442,593.2813
+-477.4604,167.9179,-559.7042
+-422.3036,172.1573,-606.4224
+-411.7236,171.5918,-593.587
+-482.8146,167.0992,-596.5757
+-463.7549,165.091,-472.653
+-506.1447,166.6484,-526.434
+-510.5669,165.8654,-507.3524
+-490.7649,166.1954,-517.4044
+-443.5979,166.2817,-540.0958
+-525.0785,168.7414,-488.4588
+-426.7123,167.4265,-529.4913
+-474.6624,168.6142,-510.1457
+-495.8533,165.8654,-508.4508
+-430.5687,166.5264,-542.7854
+-516.2371,165.8487,-481.3426
+133.272,133.7668,-128.6325
+141.118,133.7112,-141.608
+-36.14808,115.1775,676.939
+132.958,122.615,-141.7381
+139.632,122.615,-129.1721
+173.962,122.615,-128.6621
+-52.00271,115.158,687.384
+177.1961,133.7668,-128.6297
+683.9108,130.27,568.9098
+-568.8362,120.211,358.1891
+-668.645,119.8689,362.2561
+-475.7828,121.31,287.8794
+-54.54481,117.3658,515.3764
+-54.90099,116.9563,545.5345
+-57.17075,113.5934,528.2562
+-25.30022,121.15,534.1261
+-39.40041,119.6012,556.509
+-22.54504,121.3912,535.5017
+-41.72659,119.0188,554.5618
+-57.61249,117.0457,515.5449
+-56.99875,113.8638,531.3284
+-55.32999,116.5571,542.5017
+729.6631,134.2221,12.5963
+-489.5215,118.291,334.1128
+477.5531,155.5919,30.55714
+-93.02975,117.0739,608.3245
+-58.20983,120.8572,513.2006
+-60.5243,116.6835,531.3484
+-52,119.4616,541.5767
+-24.26605,124.1651,538.6201
+-40.17458,122.1179,551.6692
+-498.8627,122.6627,276.0546
+-519.2813,125.2531,383.9715
+476.3503,157.9276,27.02339
+-570.7288,126.3463,356.5623
+-636.0726,129.9581,288.4782
+665.1896,121.03,582.0805
+628.6422,125.3589,488.1008
+700.6774,118.7614,537.8164
+-502.2014,128.5681,285.1342
+689.0882,130.551,565.7672
+682.8619,120.89,594.6506
+769.1162,151.5859,-688.2837
+779.5116,151.5859,-668.9811
+774.1967,142.7502,-698.6681
+754.004,142.7502,-702.9722
+484.5555,149.3443,-301.3072
+-37.80519,121.178,515.0118
+-30.81343,116.0612,549.6014
+-68.73183,115.5127,534.0245
+-591.3469,123.2165,259.8897
+-556.0207,119.2726,293.9621
+-614.8182,119.6353,285.2895
+-537.0376,121.1967,272.0789
+-565.2165,122.7947,266.5838
+-494.9096,118.291,330.8694
+-452.9286,166.8737,-605.4164
+-451.5945,167.3481,-561.344
+-451.4176,166.9059,-597.6509
+-478.7361,165.5663,-485.6368
+-460.9675,166.8873,-597.9517
+-545.7907,118.01,371.2193
+165.2317,141.8877,-343.2823
+-22.68451,119.0095,580.8331
+-7.127304,122.1516,557.3731
+-471.4592,119.88,276.6154
+-659.9738,117.8175,353.9965
+122.4515,142.7755,-390.752
+658.8077,121.02,626.1707
+685.9995,121.02,622.1665
+612.4646,117.7,648.751
+654.4202,121.04,583.6915
+-514.5284,168.8124,-518.1287
+-456.1063,170.1498,-541.757
+-488.4362,168.8124,-496.5701
+689.0147,130.551,566.9557
+-480.748,118.724,313.498
+658.7844,119.339,585.2826
+-22.15397,118.6137,588.5593
+-3.254272,122.539,550.6663
+121.4211,142.1699,-387.9058
+-483.1299,118.724,312.666
+665.0338,121.03,580.0627
+620.5488,117.92,649.4999
+683.6402,120.89,595.3704
+664.3873,121.03,581.3876
+682.949,120.89,596.6726
+-440.1558,173.18,-585.4319
+-497.8669,171.4445,-470.6124
+-460.9704,173.3528,-567.6553
+-511.9192,171.4426,-468.5135
+6.790956,802.4434,433.462
+7.161097,1048.7,193.7212
+4.204673,788.9218,407.3459
+5.980663,1023.176,178.3939
+-567.3646,123.8123,266.2059
+164.8586,141.9832,-340.2194
+597.7562,118.1963,616.0599
+650.749,118.04,614.1032
+-570.7498,127.4851,359.7762
+-494.8517,121.8814,284.2553
+-547.4339,117.75,372.7825
+-455.1256,172.7113,-581.0701
+-495.592,171.4112,-453.7398
+-465.8346,169.2696,-444.6483
+-479.8021,170.6502,-456.652
+-495.7598,172.3034,-571.6844
+-471.2932,173.428,-573.9905
+-444.3952,173.112,-558.1251
+-450.0148,172.6332,-595.3985
+626.6252,130.9994,601.6788
+635.8434,131.1158,619.3296
+630.4539,130.5877,610.4595
+-563.4456,123.004,263.6606
+700.7964,118.8358,536.8277
+628.7723,125.4651,487.1164
+-498.7439,165.3914,-451.0689
+-463.911,162.5119,-442.6631
+-453.0304,166.7113,-584.6642
+-446.2342,166.6441,-593.6249
+-477.28,164.5057,-453.6203
+-473.4547,167.4135,-570.4606
+-497.1129,166.3324,-567.7065
+-446.673,167.0834,-554.6937
+443.5232,149.4154,-332.0248
+747.444,151.657,-687.392
+446.994,149.412,-292.962
+761.8662,120.5657,-721.2206
+426.6425,149.4154,-320.4371
+475.5783,127.8091,-320.6643
+765.454,122.0565,-647.6814
+425.3057,149.4154,-319.8208
+504.7203,126.0092,-380.6041
+446.7389,149.4154,-339.7549
+454.9014,149.4154,-319.5792
+465.274,149.412,-295.592
+448.404,149.412,-293.012
+426.4666,149.4154,-322.8271
+507.0314,127.9517,-380
+438.804,149.412,-315.982
+747.674,151.732,-688.602
+763.9855,120.5657,-722.1546
+762.4474,122.1901,-646.6811
+764.3283,122.1583,-644.8521
+734.4724,142.8213,-682.8543
+762.856,120.5657,-721.9846
+464.944,149.412,-294.012
+439.974,149.412,-299.172
+764.3065,120.5657,-721.1229
+466.054,149.312,-294.352
+438.724,149.412,-317.292
+748.5865,151.657,-687.9384
+449.8926,149.4154,-340.525
+502.6921,126.646,-378.4245
+499.676,126.7055,-379.0976
+455.944,149.412,-291.322
+505.2399,127.8087,-375.9266
+733.6762,142.8213,-681.9969
+734.1662,142.8213,-681.1369
+653.6883,118.04,612.2502
+599.4124,118.1902,619.1144
+-75.36223,118.5423,533.3537
+-37.46558,117.052,546.7103
+-37.69396,123.1101,522.072
+629.6931,130.4294,609.205
+635.1067,130.7196,618.1138
+626.2184,130.8793,600.2653
+-83.27454,112.79,663.4787
+152.7,116.26,-69.5201
+152.7,116.26,-46.02007
+183.81,116.26,-69.26001
+-41.16429,121.8423,550.4941
+-23.01185,124.2691,539.5433
+-60.70406,116.8056,532.894
+-51.94999,119.259,540.0299
+-59.75914,120.7746,513.0306
+-457.298,169.7556,-612.5178
+-454.7287,170.516,-572.0347
+-431.4566,170.4333,-586.5039
+-481.7039,168.4702,-477.388
+-556.1813,119.3098,293.7732
+-614.6127,119.658,285.1477
+-591.2785,123.2181,260.131
+-591.9698,123.2015,264.6079
+-557.3717,120.163,289.4864
+-610.1904,120.2581,284.3706
+130.8375,130.3401,413.8489
+443.9681,131.602,-189.4827
+-331.2098,125.9093,87.14233
+340.0505,123.0195,-94.13324
+110.9501,130.8665,-352.5931
+567.7659,118.5718,-501.6847
+-352.7441,127.4498,574.6429
+134.534,131.2799,-337.206
+-155.8274,121.6857,504.795
+224.5024,139.347,-522.5746
+167.6789,135.0835,-386.1076
+-261.5776,130.9062,-82.88782
+-307.1663,128.7489,75.73364
+301.524,153.8868,393.6984
+171.9693,134.296,-366.1797
+147.3465,135.6852,-397.0489
+358.124,126.0641,-178.5752
+222.5098,138.5874,-542.2469
+-352.8082,127.022,94.54932
+-762.6155,115.6247,133.2379
+-764.8893,115.9423,139.9253
+-127.4049,136.866,-725.3786
+225.8085,136.0268,-559.6577
+579.5494,116.574,-507.7687
+-732.5873,114.3364,139.0825
+122.6743,133.0603,388.1027
+-136.0486,124.4344,523.6304
+144.1497,131.2889,422.7783
+-381.787,121.2377,364.5205
+-359.5261,124.0658,560.1105
+202.2632,116.501,84.32556
+448.3651,128.0595,-161.8701
+-165.657,124.2669,526.093
+132.9154,128.3443,442.1581
+111.0661,131.4924,-371.7672
+-168.6882,124.5292,505.999
+415.6749,117.7688,-691.0172
+-249.1337,131.2009,-104.9725
+-344.5934,123.8078,556.1075
+151.0896,138.5934,387.0383
+-711.5809,113.0234,98.20959
+308.1691,141.0172,127.5753
+-424.1398,172.2076,-617.5516
+-462.6747,164.9879,-461.4256
+-493.0977,167.0802,-591.9402
+-411.1787,172.2617,-604.8336
+631.1085,125.1886,489.3777
+703.1561,118.7695,539.0804
+-11.61677,118.0485,580.4835
+-80.42902,117.9701,600.338
+-64.08125,118.0084,609.8533
+-8.838234,116.558,594.0439
+-80.89442,117.8385,607.3837
+-659.8502,116.21,394.8571
+-454.9744,121.5876,300.2462
+-607.048,125.5051,257.6561
+-607.6691,114.6533,381.8127
+-663.4955,124.8079,320.0621
+-642.7103,116.56,368.6371
+-521.8121,117.6277,308.8227
+-676.8318,117.4853,378.2448
+681.8813,120.89,595.6799
+641.9473,118.04,596.2814
+666.1346,121.03,581.0186
+599.8292,121.2015,620.1965
+654.827,121.04,611.9099
+482.6078,157.2687,22.44504
+-459.4705,168.7599,-467.0983
+-415.1548,175.6815,-599.4327
+-486.7938,171.0902,-591.016
+-426.6671,176.1692,-611.67
+130.0891,129.8993,416.705
+446.4406,131.4142,-187.8204
+-329.3655,125.5798,84.81824
+339.4314,123.3439,-97.03546
+110.9597,130.8361,-349.6081
+-355.6113,127.1917,573.8528
+564.7811,118.579,-501.7318
+136.5066,131.2272,-334.9661
+-158.4166,121.7859,503.3127
+164.714,135.0947,-385.7606
+225.2721,139.4955,-525.4551
+-305.4222,128.9639,78.14685
+-258.9416,130.9169,-84.28882
+300.9436,153.9266,390.7705
+224.6414,138.799,-544.3259
+-352.2126,127.3807,91.64624
+173.9266,134.3954,-368.4314
+145.1023,135.5409,-395.0858
+361.1088,126.0211,-178.5992
+-759.8301,115.7891,132.1768
+-763.942,116.3419,142.7279
+227.6116,135.4465,-561.9649
+-127.5099,137.3212,-722.4302
+581.6268,116.4215,-505.6303
+-734.6455,114.8471,141.1836
+-138.4987,124.6884,525.3168
+144.7858,131.7546,419.8992
+-380.3894,121.2377,361.8828
+125.6466,133.3348,388.1398
+-357.1812,124.5748,561.8864
+204.8778,116.799,85.73474
+449.2389,128.3343,-164.7112
+-167.097,124.35,523.4795
+132.5623,128.54,439.2003
+108.609,131.3943,-370.0747
+-171.6355,124.8428,506.3539
+-345.0999,123.5785,553.1747
+153.8165,138.7767,388.2389
+413.6371,117.7693,-688.8358
+-251.5606,131.1773,-103.2344
+-713.6563,112.9389,100.3536
+305.3354,141.0558,126.637
+-574.0345,129.2243,358.7586
+350.9537,165.6678,134.4181
+-481.7586,128.3923,394.2821
+151.62,116.26,-62.7501
+151.62,116.26,-39.25006
+184.89,116.26,-76.03001
+-88.59753,112.79,659.1584
+-496.1968,121.8649,284.2029
+650.4874,118.04,614.7769
+597.1018,118.2216,615.7543
+-489.1668,118.915,332.0502
+638.5172,118.04,598.3987
+484.6194,157.1201,22.18666
+-614.5876,119.6517,285.3519
+-555.9809,119.2996,293.7275
+-591.4785,123.1937,260.0884
+761.8972,120.5407,-721.0526
+426.6735,149.3904,-320.2691
+475.6093,127.784,-320.4963
+765.4064,122.0374,-647.3477
+443.5542,149.3904,-331.8568
+747.475,151.632,-687.224
+447.025,149.387,-292.794
+506.9038,127.9294,-379.8558
+747.705,151.707,-688.434
+438.835,149.387,-315.814
+763.9119,120.5407,-722.0004
+425.3367,149.3904,-319.6528
+504.7433,126.1976,-380.5648
+446.7699,149.3904,-339.5869
+454.9324,149.3904,-319.4112
+448.435,149.387,-292.844
+465.305,149.387,-295.424
+426.4976,149.3904,-322.6591
+440.005,149.387,-299.004
+464.975,149.387,-293.844
+764.3375,120.5407,-720.9548
+466.085,149.287,-294.184
+762.508,122.1412,-646.3525
+764.324,122.1303,-644.5156
+734.5034,142.7963,-682.6863
+762.887,120.5407,-721.8165
+502.6644,126.8092,-378.3237
+455.975,149.387,-291.154
+499.71,126.7346,-378.909
+505.1541,127.861,-375.7609
+733.591,142.7963,-681.8488
+734.081,142.7963,-680.9888
+438.755,149.387,-317.124
+748.6175,151.632,-687.7704
+449.9236,149.3904,-340.357
+683.3983,118.02,623.0225
+661.4088,118.02,625.3148
+-88.68132,117.6611,599.4586
+685.0195,130.27,568.4438
+681.5566,121.008,624.8262
+663.2505,121.008,623.511
+-484.4794,125.6658,395.8525
+-659.9738,117.8175,353.9965
+-471.4592,119.88,276.6154
+641.0193,129.908,573.994
+628.6961,129.908,587.963
+630.9652,124.9998,634.9711
+692.9061,130.708,602.3038
+660.8242,121.04,586.9971
+-490.3779,118.291,335.1104
+358.5359,130.6073,-176.8997
+173.8285,138.574,-364.8161
+145.7961,140.1953,-397.9835
+-350.3693,131.1717,95.22009
+223.5216,143.2273,-541.215
+303.5912,158.2306,393.0082
+-260.2343,135.1944,-81.03717
+-309.4071,132.7217,77.41101
+226.2838,143.8539,-522.2113
+167.1104,139.4122,-388.2422
+-154.6984,125.7778,502.4291
+132.893,135.4008,-335.2202
+567.4817,122.7659,-504.1232
+-352.6868,131.4424,571.8727
+108.7632,135.1894,-352.2092
+342.3092,127.3086,-94.47797
+-328.9402,130.1363,87.91663
+443.2819,135.9272,-187.3757
+128.1334,134.3696,414.1101
+308.6094,145.3221,125.3635
+-713.5485,117.2808,96.9364
+-250.6699,135.5559,-106.4866
+413.845,122.0924,-692.2723
+150.1006,142.6712,389.4901
+-342.2634,127.9378,555.0435
+-168.8658,128.7485,503.5942
+109.5874,135.9349,-373.0692
+134.374,132.9756,441.9543
+-163.6683,128.4933,524.7516
+450.6566,132.2767,-161.1071
+201.1567,120.8628,86.16089
+-361.0762,128.4715,561.4542
+122.6125,136.9577,391.0051
+-379.7108,125.5717,365.2439
+145.8088,135.7947,423.5286
+-137.3848,128.6623,521.6414
+-733.6304,118.7936,137.4504
+578.7202,121.0901,-506.1765
+-128.7879,141.5051,-725.8071
+227.5291,140.5661,-559.8854
+-761.9727,120.2147,134.6997
+-767.4283,120.0381,140.5542
+-53.62999,119.2408,539.8911
+-59.04419,116.9219,533.1648
+-59.99347,120.2684,514.6215
+-42.48626,121.6896,551.5291
+-21.9545,124.4039,538.2372
+655.5718,117.95,621.5293
+-436.6285,170.2128,-587.6481
+-496.9716,168.4415,-466.5703
+-464.4085,170.3404,-565.3613
+-507.8778,168.4396,-469.4118
+-494.3277,119.014,332.4968
+736.1757,149.0342,9.107506
+-94.27951,118.2335,535.8552
+-45.88143,122.244,507.1713
+-74.65149,114.6278,513.3911
+-22.56199,121.8057,521.7138
+639.0853,118.04,597.3093
+613.72,118.1056,650.3663
+-497.7765,122.7139,275.731
+681.9711,118.0403,612.4902
+642.1396,121.04,598.0917
+166.7884,138.0488,-341.6024
+-546.8907,118.37,362.5362
+-425.2127,176.2022,-617.2783
+-492.5875,171.0802,-590.9797
+-412.5602,176.1624,-604.5907
+-461.2932,168.8922,-461.6003
+694.9564,118.4508,528.775
+746.5092,120.5161,521.0934
+705.8041,118.4807,524.7863
+645.7401,123.4549,499.5603
+759.9712,122.3936,493.0121
+696.0757,118.4094,545.5116
+557.097,128.8258,565.5041
+599.1274,125.875,562.6443
+629.6967,124.257,474.0848
+616.8716,123.911,485.7965
+567.082,126.7155,559.8484
+763.641,122.5146,501.4301
+669.0498,122.2147,543.5466
+731.804,122.3487,515.3209
+562.4415,126.586,545.6913
+744.2678,119.4672,501.3011
+648.1728,124.458,489.2225
+583.698,127.3533,572.7032
+715.584,118.4304,540.4916
+755.9857,121.8346,486.3226
+593.0597,127.8646,570.641
+737.6086,121.9042,518.9211
+-563.3074,122.9963,263.4862
+350.6984,165.6678,135.6378
+123.5183,138.542,-389.7916
+-517.6937,165.9089,-514.0051
+-461.1519,167.5857,-543.6063
+-491.677,165.9154,-492.501
+718.1319,148.74,-622.3486
+716.1995,152.0852,-626.8605
+717.6085,152.085,-628.2262
+715.6669,152.085,-628.2941
+713.9376,148.74,-626.073
+715.1239,148.74,-623.9771
+716.5534,148.74,-623.9211
+722.2081,152.085,-621.3772
+721.5877,148.74,-619.3575
+722.639,148.74,-619.0236
+724.3465,136.884,-629.3474
+723.3481,136.871,-628.4189
+720.8675,136.842,-627.0136
+734.5733,136.833,-643.3849
+736.4266,136.795,-643.4093
+733.9789,136.832,-640.6292
+717.0607,125.705,-623.331
+717.0757,125.6147,-622.1618
+722.3879,129.4897,-628.3853
+718.1985,125.705,-623.2992
+-428.4852,121.0013,334.1358
+-619.4399,121.6887,223.3251
+-485.782,119.37,315.2378
+-632.6393,116.3512,369.7718
+-599.5187,114.3617,400.3117
+-538.4523,116.3449,320.5327
+-504.9187,124.6617,397.4117
+-421.1165,127.6962,288.9081
+-620.1194,121.5947,279.9308
+-641.5132,124.8888,253.9004
+-551.437,126.2232,224.7551
+-452.041,121.648,368.5769
+-667.3199,120.9405,345.1634
+-636.7187,115.7617,401.3117
+-514.2401,126.17,255.5754
+-625.6317,123.0607,267.6118
+-548.5292,120.5794,287.1629
+-455.6187,124.3617,393.2117
+-473.6583,120.0982,305.1147
+-549.9889,115.4209,352.9865
+-487.2523,120.8449,294.6328
+-427.1606,123.9503,309.1331
+-432.6521,127.702,265.3564
+-503.9329,119.0482,353.6731
+-591.1069,114.7582,377.7893
+-436.261,127.4918,278.2704
+-416.154,128.4408,266.0244
+-605.4523,120.1449,303.3328
+-574.1187,116.7617,402.5117
+-587.4524,127.3288,220.8369
+-653.6858,115.964,391.0868
+-619.7187,115.1617,392.5117
+681.0353,118.0451,613.2839
+-503.2869,122.1101,280.6978
+480.4539,157.4649,24.6288
+-563.3033,122.9825,264.2495
+-473.3295,122.94,291.1499
+-667.7618,120.2232,366.5534
+656.6182,118.04,587.7517
+654.2885,117.95,618.1226
+685.7228,117.89,597.0353
+-90.22655,117.602,532.4166
+-41.75959,122.9207,503.8244
+-70.52456,115.8801,510.221
+-17.48406,122.3144,520.0997
+156.603,134.06,-137.0901
+179.2401,133.8384,-141.1568
+151.28,122.72,-132.4101
+-52.11633,113.2361,671.3021
+160.15,122.72,-138.2001
+165.19,122.72,-142.0301
+133.33,134.1001,-137.5062
+-62.08431,112.8601,673.9198
+151.28,116.26,-75.42009
+185.23,116.26,-63.36002
+151.28,116.26,-51.92007
+-77.45499,112.79,665.199
+662.2493,118.03,579.7944
+756.588,120.4367,-727.635
+492.9766,127.68,-323.676
+494.3381,127.68,-329.8736
+436.1732,149.2864,-283.7921
+501.7072,126.2599,-381.2798
+433.9328,149.2864,-284.9502
+501.7733,127.68,-376.0567
+460.3624,149.2864,-302.8182
+438.7788,149.2864,-282.4511
+464.9685,149.2864,-311.3733
+689.3075,130.551,567.7824
+-460.0615,168.806,-467.7088
+-486.4062,171.0902,-591.7736
+-414.6576,175.6788,-598.7422
+-426.0347,176.1675,-611.1007
+349.9075,165.6678,131.743
+642.7233,121.04,597.644
+-481.6361,168.1476,-558.1396
+23.00896,1032.238,186.58
+21.86513,792.597,418.0087
+22.25607,794.5454,421.7341
+23.18419,1036.089,188.8933
+483.4523,157.25,22.84792
+-552.7963,117.07,366.6529
+478.1758,155.5691,30.74871
+704.8618,118.8251,535.4787
+632.8417,125.2939,485.7903
+667.451,118.0862,629.6028
+-58.9433,118.9915,519.1085
+-54.36071,117.1054,532.217
+-58.22699,119.4138,541.1967
+-20.45885,124.6571,533.7023
+-44.98546,121.578,555.6044
+-457.6357,166.8536,-596.5152
+-479.7594,165.6517,-479.3997
+-462.1264,166.8773,-604.1657
+-446.691,166.913,-606.44
+-457.8047,167.5133,-560.1771
+120.7163,134.8292,-393.5243
+-503.3292,122.1542,280.2831
+655.2856,117.95,619.7903
+-484.7814,165.3854,-475.5178
+-428.5547,167.4333,-584.2536
+-454.4058,166.7216,-610.3008
+-457.5362,167.4504,-574.3162
+726.7136,134.5512,13.18203
+687.4969,130.275,567.6711
+657.1862,118.04,586.6623
+660.218,121.02,623.8306
+684.5892,121.02,624.5066
+-106.652,118.612,151.1086
+-70.63109,134.0901,121.8454
+-118.1309,112.6658,133.9256
+-138.0662,116.372,174.6024
+-125.1221,112.6219,-357.5159
+97.32503,120.254,-29.93103
+-127.8126,130.6521,177.7131
+-80.88821,168.4198,203.628
+160.175,122.371,-100.064
+-105.1697,125.7972,169.2452
+-146.4379,153.0371,183.0569
+276.2444,124.5831,-623.806
+-103.629,111.3036,760.5341
+-81.20306,132.039,165.6118
+182.0251,119.111,17.49597
+92.85602,116.461,2.675018
+-94.28085,164.0729,233.0073
+-123.1908,130.0756,130.4226
+-154.2348,153.7679,199.673
+72.73896,117.435,-57.81602
+-222.1267,135.3925,194.2131
+-138.4499,160.418,175.1183
+-76.71664,141.93,174.5368
+-148.1307,134.4525,190.0538
+-160.9502,123.674,347.6742
+65.91502,119.111,17.49603
+-99.73389,166.1175,194.8268
+-197.4616,115.1848,108.7525
+56.92501,116.471,-8.883972
+-74.8699,146.8162,147.8835
+-156.6851,135.8813,204.0085
+-206.2081,121.9623,441.3933
+181.5712,116.4988,-70.77002
+-98.62759,166.0962,191.9258
+-126.9375,115.9121,174.2721
+80.03099,117.524,-49.16503
+-96.26427,129.6914,191.5681
+-109.6024,135.1493,171.5499
+-109.8244,117.5598,76.34814
+-88.96212,168.2921,162.6424
+-78.8295,143.5563,115.9006
+-26.81763,131.1287,334.4528
+-105.6804,160.5751,138.3998
+11.98379,116.471,-75.64568
+-416.5318,125.2845,440.3672
+-105.4563,167.9234,169.637
+269.153,122.0173,-637.9673
+397.1667,126.4958,-16.75653
+-110.8639,131.062,134.615
+-175.3928,136.7876,205.3991
+192.9859,122.411,-124.2652
+-85.93756,131.0829,235.9167
+-129.9684,155.8623,176.4841
+-105.1178,116.6311,138.1614
+-768.1974,115.598,344.4441
+-78.45351,127.5788,210.8638
+11.57117,127.7861,-339.0534
+74.98207,118.9953,-34.09055
+-17.2879,122.6561,-669.66
+-109.854,164.0966,76.54733
+-20.64042,123.3782,625.9092
+-82.12631,137.5823,203.2523
+7.435997,119.111,-25.98495
+-148.5203,153.4973,213.734
+119.5139,116.461,-54.93427
+-215.3112,212.6301,130.7547
+-71.32698,165.8715,153.4176
+-94.2722,130.8247,233.1456
+283.8298,139.7807,-481.7632
+86.70511,116.471,-7.340042
+-100.2142,113.0433,-371.3434
+-25.435,125.3487,-651.6828
+-156.4504,141.1443,215.7931
+104.635,116.471,-85.36414
+-157.1226,153.2956,206.8042
+49.9859,116.471,-43.72497
+-117.4948,161.229,131.729
+-104.2758,140.0676,172.6228
+-272.9733,128.5619,-82.20068
+-215.8341,116.522,131.6874
+-97.68037,129.715,191.4366
+-71.0289,159.6067,121.8656
+-198.9498,142.6891,209.7438
+199.7776,128.3489,503.7195
+384.8995,128.1835,20.03711
+-380.0108,129.0599,632.4562
+94.61093,117.5041,-33.64501
+-70.93456,134.6531,153.9422
+-148.5416,118.7625,212.0079
+-98.18787,132.4177,198.8645
+99.49664,116.4403,-33.645
+-154.0748,115.2573,199.5552
+64.6631,116.561,-30.47015
+-348.8453,127.4551,631.5603
+57.26601,119.061,-15.28498
+-214.4279,208.8508,135.291
+-143.6668,133.8187,179.3016
+-196.4875,111.7757,-12.90277
+-40.53156,122.6501,-430.8251
+-19.96675,118.26,616.4094
+-131.0632,130.1148,181.4973
+-214.3807,111.8166,135.0562
+-467.1079,114.0431,-103.9154
+-223.1715,136.6384,190.9446
+-32.01306,138.8549,187.7457
+-726.1613,115.2861,402.2109
+-145.1851,156.4783,186.7563
+-128.6621,156.946,173.545
+102.9967,116.4402,-33.645
+145.295,116.521,-91.94403
+7.583351,116.4244,-71.65561
+-146.6496,111.8503,183.2009
+-90.35102,130.2213,164.1326
+-157.0956,133.4721,191.3294
+323.9269,109.6667,-786.0553
+-157.1028,115.2683,206.9654
+-568.2692,113.7995,170.3258
+-124.147,134.6795,155.7708
+-105.6273,165.175,153.5322
+33.66497,116.461,-82.23599
+65.93169,116.432,2.420788
+-129.0538,115.059,177.5172
+193.3251,119.451,-48.75356
+-253.1549,111.8711,158.2532
+-199.1501,208.6803,107.9786
+-78.98772,172.1623,166.4514
+-99.16666,129.1193,194.8353
+-144.8974,115.4245,186.6222
+-4.201378,122.4443,552.3064
+-22.28371,118.7105,586.6699
+163.5642,133.4658,-343.6444
+-495.1797,168.8204,-495.2456
+-521.2682,168.6829,-516.7922
+-459.6215,170.6919,-547.6374
+-650.0295,117.24,372.2086
+-667.1694,116.89,398.4286
+-462.2936,122.2676,303.8177
+-613.5854,126.2317,262.5063
+-614.9883,115.3333,385.3842
+-669.3455,128.0363,315.3563
+-521.678,119.6228,300.8986
+-684.4034,119.3418,375.7923
+660.2406,121.04,587.4448
+732.1415,134.4124,11.27675
+163.099,141.9519,-338.6605
+-568.0833,124.6785,264.2715
+481.8374,157.2243,21.35954
+618.5747,117.92,650.8581
+-563.2677,122.9896,263.6886
+-567.9655,123.8503,266.71
+200.3367,120.9151,88.40552
+453.0186,132.1756,-160.7545
+-161.7682,128.3837,523.3055
+136.6558,133.3655,441.358
+-362.243,128.6191,563.5352
+577.2832,121.3214,-504.2804
+-735.5369,119.0042,136.0239
+-139.017,128.5691,519.8975
+148.1759,136.0552,423.7344
+-377.4587,125.5717,366.0452
+122.9668,136.5746,393.3378
+-760.8301,120.539,136.7742
+-769.5366,119.8439,141.6637
+229.6199,140.9856,-558.8054
+-131.1263,141.959,-725.6096
+-715.4866,117.2018,95.53967
+309.0234,145.291,123.0095
+-339.9954,127.7428,554.3145
+149.4849,142.4296,391.7871
+411.8802,122.0811,-693.6337
+-252.3288,135.5793,-108.2073
+107.9592,136.0644,-374.8145
+-169.5038,128.6553,501.2925
+-352.3719,131.1249,569.5247
+567.1721,122.6224,-506.489
+106.3993,135.1777,-351.8553
+344.5483,127.2875,-95.31427
+125.7756,134.1108,413.8145
+442.2505,135.9282,-185.2194
+-326.8771,130.0513,89.12073
+225.3793,143.6327,-539.7665
+-347.9865,131.0193,95.33374
+175.8414,138.5172,-363.5283
+143.9778,140.4173,-399.519
+358.905,130.8648,-174.5521
+305.8438,158.2414,392.2085
+166.4913,139.4065,-390.551
+228.6481,144.0627,-521.928
+-311.0848,132.3929,79.08154
+-258.8184,135.1455,-79.11194
+131.3515,135.1879,-333.4058
+-153.8376,125.5425,500.2115
+-52.98951,115.0333,685.9625
+176.5781,133.8791,-130.0573
+141.7359,133.8826,-140.1863
+-37.77062,115.0443,677.5388
+132.654,133.8791,-130.0601
+173.344,122.615,-130.0941
+133.576,122.615,-140.3061
+139.014,122.615,-130.6041
+119.3636,141.9022,-386.8004
+-565.0146,122.7797,266.5436
+-222.0753,139.4022,193.5189
+72.73896,121.435,-58.56602
+-152.4432,153.6405,195.6615
+-93.16266,164.943,228.8466
+93.60601,116.461,6.675014
+-124.0113,129.38,126.4977
+52.925,116.471,-8.133978
+-198.3552,115.0097,112.719
+61.91502,119.111,18.24603
+-95.50127,166.8953,195.7204
+-80.6801,142.6484,173.956
+-156.9049,124.1167,347.6306
+-144.1746,135.0304,190.8142
+-134.5439,162.3545,175.677
+-128.8758,112.9132,-355.9707
+-134.3671,117.9648,175.1873
+-69.97961,135.5264,118.0937
+-108.4108,121.0349,153.8652
+-118.5958,114.3534,130.2516
+-84.43036,130.8534,163.4344
+178.0251,119.111,18.24597
+-103.3209,111.032,764.583
+-108.8709,124.9014,167.8095
+280.2275,124.6296,-624.6395
+-147.2822,153.2857,187.3632
+-124.6176,132.4632,179.4664
+-79.23245,168.9748,199.5945
+101.325,119.504,-29.93103
+156.175,122.371,-99.31403
+-772.1098,115.3244,345.5308
+11.72131,127.5811,-334.9916
+-76.88037,128.0169,207.1361
+75.72721,117.342,-30.44723
+-104.6351,118.5937,134.629
+-85.72105,129.732,232.0839
+-125.8457,157.1914,177.2291
+395.3812,126.041,-20.38525
+-111.2179,130.09,130.6789
+193.7359,122.411,-120.2652
+-171.4101,136.5002,204.6129
+-16.61211,123.948,626.0117
+-111.9164,164.9668,72.76475
+-17.81866,123.0781,-665.6472
+-92.5546,128.8004,192.9848
+-123.8328,118.3927,175.1496
+80.03098,116.774,-45.16502
+180.9712,116.4988,-73.97002
+-94.37901,166.8743,192.7398
+-78.41414,146.7744,145.8837
+-160.2231,135.6877,206.0105
+-204.9757,120.65,445.0431
+-109.1608,165.6497,168.9848
+268.5348,122.6315,-633.992
+12.08688,116.471,-71.57729
+-415.688,124.9149,444.3313
+-78.09557,144.4055,111.9887
+-27.20258,131.1725,338.5039
+-104.4869,159.2992,134.3667
+-111.3842,117.1305,72.61381
+-113.0225,133.3905,172.881
+-85.78098,169.5705,165.3927
+199.4988,128.4273,499.6602
+388.5222,128.265,21.88953
+-93.97362,130.2016,193.0446
+-202.9653,143.3429,209.8453
+-69.78593,159.7406,117.6518
+-74.30553,133.8142,151.8219
+-377.7399,128.9841,629.08
+94.61093,116.7541,-29.64501
+-271.7702,128.5729,-78.31287
+-119.817,162.736,128.3152
+-103.9102,139.0199,176.5383
+-219.7746,117.4806,131.3467
+100.635,116.471,-84.61414
+-155.5812,141.5862,219.7443
+-158.1273,152.7414,211.047
+50.7359,116.471,-39.72498
+58.01601,119.061,-11.28498
+-213.9754,209.101,130.9262
+61.29061,116.561,-28.19228
+-345.1589,127.2723,629.8458
+-152.6526,114.8229,195.7669
+100.2466,116.4403,-29.645
+-152.1763,118.8014,210.1777
+-94.20731,131.6268,198.5612
+-74.65819,165.0069,150.6837
+118.7639,116.461,-58.93427
+8.185997,119.111,-21.98495
+-152.7469,153.5423,212.5289
+-219.4825,213.9521,130.3409
+-81.5042,137.8728,199.241
+-22.39502,124.8948,-654.3502
+-102.7592,113.1122,-368.1683
+85.95512,116.471,-11.34004
+-93.24406,131.4473,229.2574
+280.6323,139.32,-479.2881
+37.66497,116.461,-82.98597
+-565.4359,112.9204,167.5398
+-107.0072,164.6874,157.6766
+-121.3707,133.4591,158.4847
+325.5546,110.7287,-782.4796
+-158.2466,116.018,210.7984
+-140.8435,115.7341,186.8042
+-82.8278,170.9103,164.7179
+-95.38863,130.3457,195.7212
+189.3338,119.451,-47.95872
+-199.5496,208.5717,112.3544
+-252.2817,112.3038,162.2045
+66.59146,116.432,5.939621
+-125.7753,117.4534,177.8019
+-127.1203,130.1435,182.5051
+-22.29904,118.1165,619.7414
+-40.57416,122.6878,-434.8944
+-194.8422,111.2823,-9.213318
+-140.2735,136.0557,179.5108
+-147.3988,112.0887,187.1939
+-153.1671,134.5131,191.5428
+-87.69688,132.1552,166.5363
+8.278679,116.4244,-67.94719
+141.295,116.521,-91.19403
+-722.2141,115.3866,401.225
+-30.79181,135.9392,185.1826
+-219.8996,136.1255,188.5793
+-125.0149,159.2963,174.2471
+103.7467,116.4402,-29.645
+-140.8586,157.0635,187.2643
+-463.4744,114.0717,-105.7482
+-213.9889,112.9873,131.1782
+-10.33469,121.5931,551.7418
+-16.8522,118.4368,583.6558
+-564.0913,123.1329,262.906
+137.37,133.49,-365.47
+-105.511,125.1553,156.8647
+141.6998,133.44,-366.5997
+141.1305,136.24,-365.055
+58.93002,117.56,7.100029
+-52.86999,116.6181,542.9678
+-59.40718,113.6724,530.6686
+-57.00571,117.8034,513.2362
+-39.61651,119.29,553.2402
+-24.31113,121.1756,537.2644
+-571.5677,126.2932,357.1889
+660.4885,118.02,626.4327
+684.3186,118.02,621.9045
+577.5575,121.1965,-506.8074
+-733.0367,118.6023,136.2789
+145.9235,135.6317,424.8407
+-136.5713,128.534,520.6006
+-379.9534,125.5717,366.5488
+121.3529,136.7717,391.3798
+-763.0171,120.1961,135.5184
+-768.2022,119.8282,139.4967
+227.0796,140.894,-558.6805
+-129.1334,141.3792,-727.0823
+199.859,120.7393,85.91187
+-162.7108,128.4381,525.6689
+134.9133,132.9541,443.1669
+450.6649,132.1378,-159.7872
+-362.3124,128.2704,561.0151
+110.4047,136.0001,-374.1129
+-167.6649,128.5937,503.0508
+-712.9525,117.3051,95.75073
+309.9362,145.2998,125.3851
+-341.6583,128.0068,556.2228
+148.7872,142.5494,389.3425
+414.4198,122.0903,-693.4685
+-249.8712,135.5703,-107.5464
+342.9594,127.1611,-93.33032
+128.0702,134.5218,412.7932
+442.0118,136.0107,-187.7518
+-329.4127,130.2682,89.14978
+-351.3617,131.5037,571.8296
+568.7542,122.7386,-504.499
+108.3626,135.2009,-353.4745
+168.3222,139.4063,-388.7833
+226.3386,143.823,-520.8856
+-310.4623,132.5711,76.62036
+-261.1665,135.1815,-80.09265
+-153.4052,125.6939,502.715
+131.7592,135.3885,-335.9099
+222.8872,143.2014,-540.0496
+-350.234,130.987,96.52734
+173.2975,138.5204,-363.601
+146.4871,140.2966,-399.1121
+357.2733,130.6696,-176.4954
+304.2264,158.2148,394.1733
+-11.57245,121.4692,553.8851
+-17.02175,118.5633,581.1866
+619.579,117.92,648.2905
+-447.842,169.6633,-594.8777
+-478.1467,167.576,-455.3786
+-472.014,170.4171,-571.9344
+-496.077,169.3809,-569.4104
+-445.1739,170.0818,-556.119
+-496.9249,168.4038,-452.0103
+-464.4765,165.893,-443.8952
+-454.4384,169.7143,-583.1578
+-657.4224,117.51,401.6341
+-603.4261,125.7808,264.0058
+-605.2413,115.9533,388.5898
+-668.5635,125.5119,325.2902
+-452.5466,122.8876,307.0232
+-640.2825,117.86,375.4141
+-529.0525,118.1141,307.899
+-679.8112,118.0682,384.9003
+622.3074,118.629,631.1465
+-80.36468,118.0613,597.8134
+-9.11972,118.1484,580.1086
+-78.37959,117.901,607.6234
+-9.441406,116.4767,591.5913
+-66.56453,118.0129,609.3853
+620.6809,118.629,626.2096
+582.2854,119.4555,630.0699
+688.7224,130.551,566.1764
+-562.7263,122.934,264.8422
+-47.64923,119.155,542.0159
+-74.80099,117.9236,540.1752
+-31.73117,124.3265,519.7031
+122.4617,142.3053,-388.4648
+-504.5784,130.3262,283.8472
+-489.2659,118.909,332.174
+-635.5039,132.2994,286.3777
+-482.3636,125.6436,397.2916
+-518.1247,120.0292,373.7909
+563.9758,148.91,-438.5859
+562.3138,152.09,-445.6237
+563.2222,152.09,-444.3042
+561.3484,152.09,-444.229
+562.0079,152.09,-442.6782
+559.5147,148.86,-442.277
+560.4873,148.86,-440.2468
+561.1138,148.86,-441.1179
+566.1846,148.86,-437.1111
+565.8151,148.86,-436.1418
+569.5766,148.86,-432.6592
+570.7967,152.08,-438.6716
+569.5195,152.09,-436.9628
+568.5898,148.86,-433.5524
+569.8568,148.86,-433.351
+571.4872,136.3566,-448.7524
+569.7086,136.835,-444.8702
+568.4612,129.49,-444.678
+567.8131,129.49,-444.094
+567.8016,129.49,-444.8581
+581.2861,140.8,-458.2586
+572.1637,141.02,-452.4976
+565.9428,141.02,-445.4727
+568.6157,141.01,-447.9425
+632.222,125.1922,488.1623
+704.2614,118.7837,537.8574
+-664.359,121.6936,369.9224
+-469.6148,126.1,292.2934
+-567.7103,123.8278,266.8585
+165.7484,141.999,-341.0078
+686.2703,121.02,620.9701
+658.5369,121.02,627.3672
+682.514,117.878,591.0198
+-571.1202,127.7098,360.4277
+-496.2721,165.4045,-451.5847
+-464.3769,163.0351,-445.0891
+-455.1895,166.7143,-583.3547
+-447.5905,166.7016,-595.7542
+-477.7915,164.5814,-456.0919
+-494.9775,166.507,-569.0429
+-471.2938,167.4077,-571.7671
+-444.5147,167.0561,-556.0042
+665.6606,118.018,585.6974
+579.653,119.3646,631.7586
+660.0482,118.04,585.6344
+118.6955,134.5662,-392.4386
+598.561,118.1809,617.0532
+651.6872,118.04,613.2347
+-471.6214,165.8691,-488.4089
+-454.4207,163.2403,-451.8696
+-451.5409,165.135,-485.1134
+-415.4939,165.9595,-526.3135
+-501.8961,165.8654,-488.2829
+-565.525,124.3921,262.9855
+426.2485,149.2834,-320.6851
+475.1843,127.677,-320.9123
+764.8223,121.873,-648.3618
+761.4722,120.4337,-721.4686
+747.05,151.525,-687.64
+446.6,149.28,-293.21
+443.1292,149.2834,-332.2728
+763.8123,120.4337,-722.5867
+506.9492,127.8596,-380.529
+438.41,149.28,-316.23
+747.28,151.6,-688.85
+426.0726,149.2834,-323.0751
+448.01,149.28,-293.26
+464.88,149.28,-295.84
+446.3449,149.2834,-340.0029
+454.5074,149.2834,-319.8272
+424.9117,149.2834,-320.0688
+504.2637,125.759,-380.7591
+465.66,149.18,-294.6
+763.9125,120.4337,-721.3708
+464.55,149.28,-294.26
+439.58,149.28,-299.42
+762.4619,120.4337,-722.2325
+763.6617,121.8712,-645.4595
+734.0784,142.6893,-683.1023
+761.6768,121.932,-647.1661
+505.0069,127.5756,-376.3584
+733.5369,142.6893,-682.441
+734.0269,142.6893,-681.5811
+502.3161,126.3508,-378.6827
+499.7404,126.2435,-379.376
+455.55,149.28,-291.57
+449.4986,149.2834,-340.7729
+438.33,149.28,-317.54
+748.1925,151.525,-688.1863
+689.464,130.551,568.9045
+-514.877,126.7578,380.7501
+-429.9026,172.1713,-613.6171
+-417.6229,171.641,-602.23
+-487.8138,167.0902,-587.3826
+-456.6782,164.5299,-464.9646
+602.5431,148.91,-484.5486
+600.8811,152.09,-491.5864
+601.7894,152.09,-490.2669
+599.9157,152.09,-490.1917
+600.5752,152.09,-488.6409
+598.082,148.86,-488.2397
+599.0546,148.86,-486.2095
+599.6811,148.86,-487.0806
+604.7518,148.86,-483.0738
+604.3824,148.86,-482.1045
+608.1439,148.86,-478.6219
+609.364,152.08,-484.6343
+608.0867,152.09,-482.9255
+607.1571,148.86,-479.5151
+608.424,148.86,-479.3137
+610.0544,136.3566,-494.7151
+608.2758,136.835,-490.8329
+607.0284,129.49,-490.6407
+606.3804,129.49,-490.0567
+606.3689,129.49,-490.8208
+619.8533,140.8,-504.2213
+610.731,141.02,-498.4603
+604.5101,141.02,-491.4355
+607.1829,141.01,-493.9052
+728.2476,134.3908,12.56953
+-667.7618,120.2232,366.5534
+-473.3295,122.94,291.1499
+681.3428,130.27,569.8987
+161.8361,133.4351,-342.1133
+-555.8539,119.2491,294.0371
+-614.9105,119.6207,285.4485
+-591.4672,123.2047,259.7504
+729.9076,134.1318,14.33809
+-485.3535,127.5879,388.3891
+-77.16633,118.339,531.576
+-38.26954,117.319,544.3147
+-39.13889,122.4437,524.0531
+685.2208,118.02,623.3299
+659.5864,118.02,625.0073
+-571.5394,118.9509,355.8704
+715.1588,118.4231,539.4025
+738.7383,121.7299,519.1669
+594.0298,127.8353,569.989
+755.0856,121.8346,485.5765
+732.7592,122.2712,515.9907
+584.8356,127.3923,572.4364
+745.1162,119.4997,500.4972
+647.8097,124.5264,488.1132
+562.3325,126.6445,546.8539
+628.5356,124.1188,474.0942
+600.0424,125.8019,561.9202
+556.921,128.9793,566.6497
+697.1758,118.3856,545.9067
+763.5321,122.5146,500.266
+669.8751,122.1235,542.7234
+567.5929,126.7091,560.9001
+616.2742,124.0197,486.7957
+747.5884,120.2983,520.6999
+694.2308,118.4761,529.6915
+759.1925,122.3024,492.1447
+646.2488,123.5618,498.5131
+704.6768,118.4914,525.0964
+-563.0788,122.9587,265.0024
+-465.5648,172.9513,-591.1309
+-470.5338,173.9725,-554.2216
+-491.2207,171.6445,-443.2376
+-476.5629,165.7418,-446.6617
+-470.1591,173.5759,-584.1685
+-471.4288,168.3211,-438.7917
+-469.3697,170.8401,-460.8489
+-479.3529,173.5515,-574.6784
+-93.72321,116.7232,613.0612
+-493.7069,174.4368,-450.5297
+-462.2726,172.2057,-445.9536
+-457.9782,175.7413,-583.4563
+-447.7644,175.8331,-598.1748
+-476.518,173.6362,-458.4716
+-493.2677,175.7871,-569.5244
+-468.4133,176.4043,-571.5697
+-441.4517,175.9877,-555.6597
+654.7641,121.04,584.8107
+-79.30043,112.79,656.2354
+144.44,116.26,-45.84006
+192.07,116.26,-69.44002
+144.44,116.26,-69.34009
+148.07,116.26,-51.61006
+188.44,116.26,-63.67001
+148.07,116.26,-75.11009
+-76.11846,112.79,662.264
+-441.0109,169.9221,-554.9196
+-467.8509,170.3624,-570.726
+-491.9333,169.9416,-568.2662
+-475.6206,167.5911,-458.9019
+-446.7312,169.8602,-599.0635
+-458.6033,169.7143,-584.3607
+-461.9069,166.2559,-447.3678
+-493.3981,168.4072,-449.4893
+-429.6215,176.1624,-612.5952
+-486.9282,171.0872,-587.923
+-417.841,175.5667,-600.9675
+-456.5938,168.5325,-465.977
+-478.8174,126.1399,399.088
+-42.70184,119.0184,556.683
+-22.08714,121.4884,533.2145
+-54.78374,113.9251,530.5932
+-57.47999,116.6753,543.4041
+-56.82869,116.466,517.6663
+617.5408,118.63,626.9973
+-44.53783,116.3048,545.6676
+-32.4104,121.3954,515.0034
+-71.207,113.7718,539.1823
+-169.9587,132.7432,501.9114
+107.6456,139.9504,-373.3651
+-252.6486,139.5358,-106.9647
+411.7869,126.058,-692.4188
+150.2621,146.5156,391.7655
+-340.6968,131.6764,553.1589
+307.9419,149.2873,123.4104
+-715.7504,121.1674,96.76636
+-129.6898,145.8402,-725.1937
+229.3823,144.4503,-561.0944
+-760.5976,124.4244,135.3081
+-769.0584,123.9672,141.9283
+123.5435,140.6934,393.277
+-377.7024,129.5447,364.8385
+147.1462,140.0446,423.165
+-139.1931,132.6438,520.7134
+-734.9843,123.0233,136.9413
+578.9406,125.1363,-504.2891
+-361.4688,132.6642,562.954
+135.1935,137.2229,440.8268
+-162.6805,132.4159,522.8489
+452.6587,136.2569,-161.4708
+201.2063,124.9574,87.95398
+-154.7253,129.6049,500.1193
+132.3503,139.1965,-332.9221
+-258.3168,139.1375,-80.16663
+-310.5569,136.496,79.51221
+227.7809,148.0019,-522.9434
+165.6498,143.3853,-389.6788
+304.8932,162.2247,391.4802
+359.9028,134.7126,-175.7767
+175.8766,142.5406,-364.5824
+143.8964,144.2405,-397.883
+-348.3339,135.1284,94.79114
+224.8812,147.4856,-541.2521
+-326.5644,133.9095,87.59888
+443.7028,139.8257,-185.2292
+125.7968,137.9527,415.4081
+343.7756,131.3586,-95.67377
+107.169,139.1435,-350.8652
+566.2213,126.6379,-505.9677
+-353.7,135.066,569.4591
+483.881,157.1706,22.2342
+-465.4672,166.9013,-587.9543
+-471.0998,167.7847,-557.0663
+-483.0465,163.7429,-445.8434
+-490.2262,165.6152,-446.297
+-479.5341,167.4608,-577.7725
+-468.2193,162.4645,-440.2412
+-467.0031,167.5148,-584.0995
+-472.6409,164.9467,-461.9756
+665.6274,118.079,635.5467
+-475.7828,121.31,287.8794
+-668.645,119.8689,362.2561
+624.2377,118.629,631.0692
+612.7277,117.7,651.7748
+-661.4631,122.3861,367.6204
+-468.4813,127.01,288.8218
+-75.79,115.7184,542.317
+-31.44016,121.3054,520.806
+-48.10161,116.1269,540.9892
+-81.50669,118.006,599.0779
+-10.56587,118.1685,579.2062
+-79.56489,117.9569,606.3994
+-65.4977,117.9319,610.7125
+-10.20779,116.5957,593.1094
+-75.27071,114.6537,526.6677
+-43.92933,118.5385,522.3019
+-33.37568,117.4049,540.1544
+662.9807,118.1069,634.7752
+481.0519,157.3602,23.84363
+-9.574326,121.6691,550.425
+-16.74804,118.3591,585.1727
+222.7261,147.1964,-540.2594
+-349.5701,134.924,96.82666
+173.7933,142.4889,-363.4116
+146.1186,144.2681,-398.7633
+357.6447,134.6557,-176.5582
+304.5417,162.1926,393.8444
+-311.2322,136.4543,77.21973
+-260.6819,139.1465,-79.82056
+167.9789,143.3793,-389.1413
+226.4266,147.8248,-520.9816
+131.4653,139.3066,-335.1398
+-153.1682,129.6134,501.9327
+-351.7585,135.3584,570.8225
+568.4592,126.6815,-505.1292
+107.9664,139.1692,-353.1184
+343.4562,131.134,-93.31555
+-328.584,134.1739,88.84985
+127.1337,138.3557,413.468
+442.2871,139.9595,-187.1506
+309.8257,149.2703,124.8816
+-713.6082,121.2547,95.70959
+-341.1066,131.9065,555.5026
+148.5232,146.4669,390.1262
+413.9114,126.0615,-693.5142
+-250.3502,139.5447,-107.6212
+109.9551,139.9765,-373.9806
+-167.6357,132.5508,502.4409
+451.2307,136.095,-159.5608
+-162.2982,132.3939,525.2083
+134.6696,136.9505,443.1431
+199.6172,124.7266,86.18335
+-362.7473,132.2503,560.9772
+-136.8871,132.494,520.1017
+145.8865,139.6233,425.1522
+-379.4672,129.5447,366.4506
+121.2992,140.6276,392.4569
+577.9452,125.1666,-506.462
+-732.8651,122.5868,135.9253
+227.3828,144.7222,-559.8132
+-128.8192,145.3605,-727.3676
+-762.9764,124.1966,135.3606
+-769.018,123.7477,139.5485
+-38.09772,117.9107,542.4644
+-40.81428,121.9187,524.902
+-77.80773,118.1126,529.7483
+-502.5593,166.6637,-525.4834
+-493.2295,166.464,-520.1633
+-440.8795,166.0842,-537.5798
+-507.1717,165.8805,-508.8461
+-41.9376,119.2683,558.0397
+-23.16224,121.4074,532.0635
+-57.81999,116.8753,544.931
+-54.31711,113.8228,529.0902
+-55.31568,116.4615,518.1113
+663.9421,121.008,624.819
+680.865,121.008,623.5183
+-23.33121,124.4477,530.222
+-43.03785,122.2593,559.623
+-54.69233,118.893,520.6338
+-59.46999,119.9758,545.5032
+-52.76192,116.8324,528.0009
+630.2779,125.2487,489.2337
+702.3228,118.7806,538.9405
+-633.9615,127.7509,286.402
+-562.9001,122.95,264.7039
+611.4924,118.0566,646.2396
+-37.96921,119.9896,521.7179
+-35.84391,114.8256,545.1768
+-75.4287,115.4437,532.7768
+121.6965,134.9567,-394.0509
+-494.2635,119.156,331.4304
+351.8036,165.6678,131.7254
+494.6757,127.68,-325.8699
+772.7883,120.5181,-650.7613
+769.4537,120.5059,-648.1972
+435.28,149.2864,-334.297
+164.4025,133.4807,-344.3871
+613.8215,117.871,645.9445
+-44.86264,118.4195,521.7604
+-32.50659,117.9321,539.7733
+-74.61195,114.534,525.8132
+21.24797,769.4939,415.7167
+23.32153,1036.913,212.1029
+23.83425,783.0156,441.8328
+22.1411,1011.389,196.7756
+622.2479,118.629,630.3508
+640.2382,118.04,593.7505
+-489.8861,165.5482,-473.8427
+-460.8268,167.5828,-578.564
+-425.1598,167.751,-579.8467
+-437.3178,166.9189,-550.8481
+-488.1118,119.303,331.9848
+-568.1636,123.8658,266.7114
+173.8605,134.2936,-366.1256
+145.481,135.775,-397.3514
+359.3372,126.2093,-177.1305
+224.3624,138.908,-542.0364
+-351.1373,127.0461,93.66199
+302.7264,153.9066,392.2377
+-259.8318,130.8795,-82.15869
+-307.6291,128.6164,77.56348
+226.2194,139.5251,-523.3495
+166.3177,135.0836,-387.4218
+134.2309,131.1308,-335.3443
+-156.1489,121.5731,502.9338
+566.5897,118.4854,-503.1641
+-353.4952,127.1682,572.9293
+109.4905,130.8493,-351.3894
+341.2318,123.1134,-95.60815
+-329.3248,125.748,87.12073
+129.1316,130.0345,414.6082
+444.1455,131.5406,-187.6
+307.4905,141.0108,125.8092
+-713.4648,112.9467,98.05261
+413.787,117.762,-691.14
+-250.9608,131.2076,-105.464
+-343.3571,123.6116,554.6888
+151.6082,138.5044,388.8557
+109.248,131.5402,-372.2888
+-170.0552,124.575,504.6918
+450.1149,128.0876,-162.5891
+-164.9563,124.2264,524.3361
+134.2108,128.6501,440.8134
+202.6182,116.6317,86.17932
+-359.4745,124.3251,561.984
+123.874,132.9138,389.5583
+-137.8668,124.4605,523.1077
+145.8242,131.6037,421.9558
+-379.9324,121.2377,364.1461
+579.3456,116.6669,-505.89
+-734.446,114.6352,138.8929
+-128.8866,137.2971,-724.2838
+227.697,136.0949,-559.7505
+-760.9896,115.8797,134.1714
+-765.8813,115.9539,141.5364
+106.6401,131.446,-370.6396
+-173.116,124.8924,504.9382
+-715.6964,112.8558,100.1837
+304.6006,141.0488,124.7244
+-343.761,123.366,551.6383
+154.3782,138.6802,390.207
+411.5925,117.7619,-688.9688
+-253.5392,131.1846,-103.7666
+581.406,116.5221,-503.5958
+-736.6583,115.1706,140.9783
+-140.4677,124.7166,524.7506
+146.5992,132.0956,419.0084
+-378.381,121.2377,361.4773
+126.9459,133.1762,389.7162
+-765.0163,116.3545,144.4725
+-758.0695,116.0652,133.1876
+229.6567,135.5202,-562.0654
+-129.1144,137.7881,-721.2446
+205.2623,116.9406,87.74231
+451.1339,128.3648,-165.4899
+133.9651,128.8712,437.7441
+-166.3381,124.3062,521.5767
+-357.1254,124.8556,563.9152
+163.2399,135.0949,-387.1838
+227.1313,139.6884,-526.2943
+-305.9233,128.8204,80.1283
+-257.0511,130.8879,-83.49927
+136.1784,131.0657,-332.95
+-158.7648,121.664,501.2972
+226.6478,139.1462,-544.098
+-350.4032,127.4067,90.6853
+143.082,135.6381,-395.4134
+175.9747,134.3928,-368.3729
+362.4225,126.1783,-177.0347
+302.2456,153.9481,389.1886
+340.7107,123.4457,-98.63269
+128.2418,129.5684,417.5272
+446.6327,131.3478,-185.7816
+-327.3242,125.4052,84.79492
+-356.4246,126.8868,571.9971
+563.5073,118.4854,-503.334
+109.379,130.8174,-348.3045
+120.4307,142.5126,-389.6664
+-567.7181,123.826,266.9924
+-504.8119,131.5286,281.1919
+476.6898,157.8982,26.92929
+687.5826,121.02,620.7376
+657.2245,121.02,627.5996
+478.0565,155.5482,30.41662
+-662.8474,120.9211,368.6614
+-468.631,125.51,290.517
+163.5036,141.857,-341.7512
+630.0593,125.422,486.617
+702.0812,118.8403,536.3207
+-492.4524,168.5977,-443.7219
+-478.5542,163.3897,-445.4219
+-469.9456,167.7785,-459.6956
+-471.3004,165.722,-440.8563
+-470.1541,170.4913,-585.4012
+-480.7103,170.5197,-574.6512
+-464.2488,169.9013,-591.1163
+-472.0728,171.0327,-554.0686
+600.3896,121.4171,613.9617
+648.5776,121.442,611.7747
+-634.942,130.7996,283.2295
+-492.9891,119.116,330.7704
+-21.78371,124.5999,530.306
+-44.50581,121.9596,559.1985
+-56.06145,118.57,521.3018
+-52.06684,116.9898,529.3855
+-60.27999,119.8031,544.1844
+654.6864,117.95,616.0892
+-480.411,118.724,313.3933
+482.3799,157.2599,22.17493
+10.38191,785.8416,427.3972
+10.83644,1031.463,197.551
+9.990969,783.8931,423.6717
+10.66121,1027.612,195.2377
+-89.19418,117.4018,602.9618
+618.9559,118.63,625.0048
+-569.3057,119.9328,357.3316
+601.0616,119.3469,616.7198
+651.226,119.339,610.8214
+478.3897,167.6313,26.57438
+-568.4756,123.8858,266.9588
+-111.7486,117.1353,71.15874
+-114.3449,132.7178,173.1021
+-84.57626,169.7486,166.4611
+-27.61725,131.19,339.9454
+-77.79263,144.444,110.5201
+-103.7676,158.8773,132.9778
+11.84788,116.471,-70.09645
+-415.6526,124.7824,445.825
+268.0377,122.8458,-632.5931
+-110.4338,164.7965,168.4597
+-161.6166,135.4785,206.5246
+-79.68126,146.4844,145.1351
+-204.7919,120.1669,446.4513
+180.9712,116.4988,-75.17001
+-92.89812,167.168,193.3273
+-122.7659,119.2684,175.7368
+80.03098,116.774,-43.66503
+-91.31216,128.4636,193.7548
+-18.28418,123.2487,-664.2315
+-15.16087,124.1617,626.3251
+-112.4131,165.403,71.28577
+-111.071,129.7433,129.2269
+394.9828,125.8612,-21.82013
+193.7359,122.411,-118.7652
+-169.9106,136.506,204.5753
+-85.39169,129.1384,230.7462
+-124.3979,157.6499,177.7931
+-104.2454,119.4426,133.4553
+-773.6016,115.2327,345.6582
+75.72721,116.7514,-29.06841
+11.50085,127.4784,-333.5115
+-76.35789,127.9081,205.7343
+-78.64352,168.8809,198.0883
+-123.5398,133.0217,180.3476
+102.825,119.504,-29.93103
+154.675,122.371,-99.31403
+-110.1099,124.5679,167.0325
+281.7268,124.6634,-624.6714
+-147.881,153.3643,188.8664
+-103.4849,110.9294,766.0704
+176.5251,119.111,18.24597
+-85.4496,130.4413,162.4139
+-69.63744,135.8027,116.6597
+-109.0822,121.6961,155.0323
+-118.6391,114.7472,128.8049
+-133.0081,118.409,175.6409
+-130.3394,113.0369,-355.6665
+-133.0736,162.8772,176.1119
+-82.14484,142.6579,173.6328
+-155.4335,124.2498,347.8898
+-142.8038,135.3351,191.3415
+60.41502,119.111,18.24603
+-94.02779,167.167,196.3364
+51.425,116.471,-8.13398
+-198.4277,114.8433,114.208
+-92.50139,165.3792,227.4335
+93.60601,116.461,8.175018
+-124.2517,128.8598,125.1114
+-151.5232,153.6312,194.3281
+72.73896,122.935,-58.56602
+-222.0273,140.9013,193.5383
+-462.0359,114.1313,-106.1692
+-213.58,113.34,129.7788
+-720.717,115.415,401.1357
+-30.42798,135.0386,184.0396
+-218.6748,136.2133,187.7179
+103.7467,116.4402,-28.145
+-123.7216,160.1032,174.7954
+-139.3291,157.2984,187.7436
+8.278679,116.4244,-66.55652
+139.795,116.521,-91.19403
+-147.9419,112.172,188.5896
+-151.6782,134.6291,191.6829
+-86.59704,132.6195,167.4445
+-138.8954,136.6365,179.6266
+-194.4851,111.1793,-7.760071
+-23.3699,118.0515,620.7897
+-40.31421,122.7258,-436.3712
+-125.759,130.219,183.1304
+66.59146,116.432,7.259186
+-124.589,118.2899,178.1797
+187.8339,119.451,-47.94189
+-199.4318,208.6719,113.967
+-252.2319,112.423,163.6989
+-139.3943,115.949,187.1261
+-94.09885,130.8459,196.3011
+-84.28416,170.7416,164.0287
+-158.9028,116.1644,212.1393
+325.897,111.0858,-781.0635
+-564.2149,112.6067,166.7269
+-107.7895,164.4965,159.0823
+-120.3769,132.7607,159.3649
+39.16497,116.461,-82.98596
+-92.6112,131.7244,227.926
+279.3071,139.1315,-478.6108
+85.95512,116.471,-12.84004
+-103.8967,113.125,-367.1906
+-21.11121,124.7331,-655.1089
+-81.05322,137.82,197.8114
+118.7639,116.461,-60.43427
+8.185997,119.111,-20.48495
+-154.1971,153.5223,211.8072
+-220.9559,214.4575,129.896
+-75.83411,164.4018,149.748
+-153.5166,118.5431,209.5557
+-92.7459,131.3321,198.7269
+-151.8886,114.7522,194.478
+100.2466,116.4403,-28.145
+59.91415,116.561,-27.59616
+-343.7073,127.1973,629.4753
+58.016,119.061,-9.784975
+-213.5272,209.1036,129.3695
+99.13499,116.471,-84.61414
+-155.5202,141.6588,221.2413
+-158.7809,152.5732,212.5197
+50.7359,116.471,-38.22498
+-271.5983,128.584,-76.82275
+-103.5307,138.764,177.9668
+-120.4589,163.5007,127.0394
+-221.1549,117.9322,130.9717
+389.7087,128.3033,22.80652
+199.6733,128.4467,498.1705
+-204.3752,143.8513,209.9079
+-69.29172,159.4938,116.1289
+-92.66916,130.6516,193.6328
+-75.45442,133.2436,151.0444
+94.61093,116.7541,-28.14501
+-376.6879,128.9691,628.0107
+664.0134,121.03,581.0991
+684.0041,120.89,595.6714
+-504.3709,130.3442,283.7063
+-22.69788,125.0746,-652.4297
+-102.7883,113.032,-370.119
+87.45511,116.471,-10.09004
+-92.45244,131.449,231.0423
+281.0645,139.393,-481.1908
+-73.28743,164.0133,151.9409
+-150.8198,153.3624,211.6917
+6.686005,119.111,-23.23495
+120.2639,116.461,-57.68427
+-217.7705,213.5821,129.1665
+-80.71907,137.0543,200.8304
+56.51601,119.061,-12.53498
+-212.8638,208.6121,132.6503
+61.84154,116.561,-30.0655
+-345.9995,127.3,631.6079
+98.74664,116.4403,-30.895
+-152.0587,115.3734,197.5436
+-150.9382,117.5614,211.0391
+-95.59213,131.8826,199.9137
+-95.51707,131.2533,192.4753
+-70.04791,158.3623,119.2262
+-201.2784,144.3231,209.9238
+200.8423,128.3577,501.0754
+386.6157,128.2743,22.31116
+-377.548,129.0684,631.0212
+94.61093,118.2541,-30.89501
+-72.73364,132.9245,152.5636
+-118.061,163.1631,129.402
+-102.9338,139.9638,175.1355
+-273.4031,128.6008,-79.38306
+-218.1052,117.5957,130.3405
+-157.0449,141.0287,218.5784
+101.885,116.471,-86.11414
+49.2359,116.471,-40.97498
+-159.0594,153.0929,209.1884
+-148.3444,111.9866,185.4886
+-88.05583,130.3763,165.8158
+-154.324,132.9534,191.7464
+142.545,116.521,-92.69403
+6.888016,116.4244,-69.10607
+-220.9315,137.5461,189.4336
+-31.59717,137.7179,185.1653
+-723.3716,115.3136,402.7958
+-142.6285,156.95,188.4052
+-126.4893,158.2269,175.31
+102.2467,116.4402,-30.895
+-212.9322,112.2334,132.6368
+-464.2682,114.2829,-103.9769
+-128.8799,130.4256,183.3033
+-39.31934,122.7832,-433.4015
+-22.45331,118.1109,617.7949
+-196.5258,111.8053,-10.05273
+-140.8587,134.1957,179.6137
+-81.70124,172.6551,165.0835
+-97.14071,130.1437,196.559
+-142.4297,116.082,187.8884
+190.5669,119.451,-49.47265
+-253.8039,111.9746,161.0269
+-198.2207,209.24,110.8596
+65.2719,116.432,4.839985
+-126.9936,116.4289,178.9328
+36.41496,116.461,-81.48598
+-565.6083,113.2672,169.4536
+-122.4515,132.7572,157.0178
+-107.7678,164.8036,155.7133
+323.8405,110.2116,-783.2587
+-158.9118,115.1775,209.1664
+-82.56236,131.3701,163.1973
+179.2751,119.111,16.74597
+-104.6752,111.1135,763.1787
+-107.044,125.1923,167.1846
+-148.2879,153.1427,185.5152
+279.0081,124.6886,-623.1158
+100.075,121.004,-29.93103
+-126.1577,131.3542,179.9252
+-79.89381,167.4424,200.8834
+157.425,122.371,-100.814
+-127.9547,112.8872,-357.6921
+-135.6496,116.7778,176.0584
+-107.9141,119.1647,153.6039
+-69.74279,133.8973,119.1438
+-117.8604,112.7503,131.0893
+-196.8943,114.6111,111.4864
+54.175,116.471,-9.633976
+63.16502,119.111,16.74603
+-97.3359,166.5623,196.7053
+-79.34447,141.2545,173.6632
+-145.9181,135.2457,191.6664
+-158.3741,123.8304,348.8843
+-135.7391,160.8336,176.5168
+-221.9622,138.1287,194.9947
+72.73896,120.185,-57.06602
+-151.8865,153.8531,197.6843
+92.10602,116.461,5.425014
+-92.42334,165.1656,230.809
+-123.4517,128.4306,128.1095
+-107.4802,166.3574,167.9258
+267.5339,122.3673,-635.6476
+-417.2166,125.0576,443.1249
+10.8052,116.471,-73.05032
+-78.20024,142.8807,113.2038
+-28.29852,131.1635,336.8881
+-103.6373,159.9525,136.1828
+-112.1329,133.881,171.2135
+-109.9044,118.0107,73.53472
+-86.72208,167.8153,164.6995
+-94.38299,129.0664,193.6163
+-125.2412,117.3724,176.0371
+80.03099,118.274,-46.41503
+182.1712,116.4988,-72.97002
+-96.2122,166.6399,193.7554
+-77.02771,145.553,146.5148
+-159.4179,135.1332,204.3203
+-206.6133,121.1006,444.08
+-110.027,165.1894,73.67454
+-18.1381,123.7699,627.2168
+-18.85193,123.0016,-667.3022
+-770.9979,115.459,343.9313
+-77.67548,126.6514,208.2832
+10.42908,127.5291,-336.4545
+74.23692,117.9908,-31.52917
+-103.8468,118.4885,136.4122
+-84.67192,129.7627,233.7303
+-127.576,156.596,178.2771
+397.1593,126.1414,-19.58484
+-109.8488,130.4738,132.0171
+-172.6276,137.1011,206.0162
+192.2359,122.411,-121.5152
+596.9014,121.2123,614.8007
+649.6349,121.04,615.1855
+-48.47942,121.863,515.0652
+-26.85154,123.2903,542.7857
+-66.99973,117.1643,523.5994
+730.7003,134.1369,11.52146
+-504.2183,130.3569,283.6074
+-592.9694,123.0552,264.6244
+-609.8462,120.2301,285.3202
+-556.462,120.1287,289.048
+18.1772,769.3114,416.1121
+20.76349,782.833,442.2283
+20.22954,1036.911,212.3456
+19.04911,1011.387,197.0183
+653.1577,117.95,617.0997
+-90.78189,116.5991,613.8069
+-308.6996,128.4478,77.28052
+-260.2637,130.8614,-81.12543
+167.0957,135.0783,-388.2275
+226.6788,139.5396,-522.3282
+133.127,131.084,-335.5278
+-155.0489,121.47,502.7501
+-350.6157,126.8838,94.63977
+224.2272,138.9609,-540.9259
+358.4778,126.3005,-176.4181
+145.6646,135.8885,-398.4504
+173.8285,134.2443,-365.0072
+303.5912,153.897,392.9492
+342.1051,123.0017,-94.91589
+-329.3051,125.8296,88.23767
+443.0323,131.602,-187.4931
+128.6672,130.1001,413.5911
+-352.4687,127.1569,572.4813
+567.467,118.4399,-503.8589
+108.7779,130.8556,-352.2534
+-169.2887,124.4451,503.8856
+109.5579,131.6109,-373.3627
+308.5358,140.9889,125.4076
+-713.372,112.9504,96.93652
+150.537,138.3723,389.1549
+-342.5117,123.6276,555.4233
+-250.6699,131.2223,-106.5454
+413.8596,117.7585,-692.2576
+-379.7108,121.2377,365.2439
+-137.5602,124.3499,522.0361
+146.328,131.5305,422.9535
+123.0143,132.7096,390.2465
+-734.3492,114.5325,137.7819
+578.239,116.7859,-506.0159
+227.7384,136.4095,-558.6764
+-129.5543,137.2853,-725.1829
+-766.8221,115.7658,140.9585
+-761.552,115.9236,135.139
+450.5398,127.968,-161.5598
+135.0104,128.7036,441.5958
+-163.918,124.1665,524.7516
+201.5222,116.5506,86.39502
+-360.587,124.204,562.0314
+659.8285,121.02,625.0285
+684.9786,121.02,623.3088
+-563.4456,123.004,263.6606
+304.0284,153.9281,390.6558
+143.4607,135.8722,-397.679
+175.9087,134.291,-366.0671
+360.6508,126.3665,-175.566
+226.3689,139.2553,-541.8085
+-349.3279,127.0721,92.70105
+-156.497,121.4512,500.9185
+133.9026,130.9693,-333.3283
+228.0786,139.7181,-524.1887
+164.8437,135.0838,-388.8449
+-257.9413,130.8506,-81.36914
+-308.1302,128.4729,79.54492
+107.9099,130.8306,-350.0858
+565.3159,118.3918,-504.7664
+-354.3085,126.8633,571.0735
+127.2843,129.7036,415.4304
+444.3376,131.4742,-185.5612
+-327.2834,125.5734,87.09741
+342.5111,123.2152,-97.20544
+411.7423,117.7546,-691.2729
+-252.9395,131.2148,-105.9961
+-342.0182,123.399,553.1525
+152.1698,138.4079,390.8239
+-715.505,112.8635,97.88269
+306.7556,141.0038,123.8965
+107.2791,131.5919,-372.8536
+-171.5357,124.6246,503.2761
+-359.4187,124.6059,564.0128
+203.0027,116.7733,88.18689
+135.6136,128.9813,439.3572
+-164.1974,124.1827,522.4333
+452.0099,128.1181,-163.3678
+-766.9557,115.9666,143.281
+-759.2289,116.1557,135.1824
+-130.4911,137.7639,-723.0981
+229.7422,136.1687,-559.851
+579.1248,116.7674,-503.8555
+-736.4587,114.9588,138.6877
+125.1733,132.7552,391.1348
+147.6377,131.9447,421.0652
+-139.8358,124.4887,522.5415
+-377.924,121.2377,363.7406
+689.6568,130.55,567.2297
+-19.2008,122.3155,517.9717
+-44.14095,122.9824,502.4823
+-72.87944,115.9063,508.8319
+-92.62016,117.7529,531.1038
+481.1316,167.5807,27.99957
+342.4963,131.2569,-94.07654
+-328.6058,134.0842,87.62231
+443.5106,139.8922,-187.2681
+127.644,138.2836,414.5858
+567.495,126.7314,-504.3655
+-352.8867,135.3709,571.3148
+108.7497,139.1622,-352.1688
+-260.2073,139.1665,-80.95624
+-310.0557,136.6396,77.53076
+225.9216,147.8089,-522.1042
+167.1239,143.3852,-388.2557
+-154.3772,129.7269,502.1348
+132.6785,139.358,-334.9381
+358.5891,134.5553,-177.3412
+145.9167,144.1433,-397.5554
+173.8285,142.5432,-364.6409
+-350.1433,135.1024,95.75208
+222.8749,147.1383,-541.48
+303.5912,162.2032,393.0621
+122.2441,140.852,391.7007
+-379.7108,129.5447,365.2439
+145.3328,139.7037,424.0557
+-137.2241,132.6155,521.2794
+-732.9714,122.6997,137.1465
+579.1614,125.0358,-506.3236
+-128.0853,145.3734,-726.3794
+227.3372,144.3765,-560.9938
+-767.984,123.9545,140.1837
+-762.3583,124.1484,134.2971
+-163.4395,132.4597,524.7516
+133.7906,136.8918,442.2831
+450.7637,136.2265,-160.6921
+200.8219,124.8158,85.94641
+-361.5246,132.3835,560.925
+-168.4781,132.6935,503.327
+109.6145,139.8987,-372.8003
+308.6768,149.2943,125.323
+-713.7102,121.2505,96.93628
+-250.6699,139.5285,-106.4326
+413.8314,126.0654,-692.2858
+149.7004,146.612,389.7974
+-342.0357,131.8889,554.6953
+-502.7483,122.0892,281.0242
+6.126363,1026.48,197.4727
+5.973223,783.6248,428.9752
+6.301597,1030.331,199.786
+5.582276,781.6764,425.2498
+-461.1803,164.8813,-461.7085
+-492.3484,167.0902,-590.6124
+-412.6985,172.1551,-604.7757
+-425.6156,172.21,-617.1687
+611.7842,118.1056,651.8589
+-455.6958,164.6608,-454.6094
+-473.0037,166.7048,-491.3314
+-500.5062,166.7515,-485.379
+-452.9107,166.2232,-487.9576
+-414.4969,166.9715,-529.3354
+-415.9158,171.7323,-601.4314
+-487.8867,167.1002,-589.268
+-458.4807,164.6806,-465.5015
+-428.0618,172.1848,-613.2027
+350.7552,165.6678,131.7407
+-480.1186,168.6502,-504.8134
+-434.1978,167.9865,-530.8539
+-530.4692,168.7031,-493.8572
+-668.81,119.5779,363.35
+-475.3387,121.26,288.9324
+658.3391,118.04,583.1035
+-518.9521,119.4805,373.2663
+-38.80029,114.9212,677.1
+141.392,133.9965,-139.2412
+132.998,133.9537,-131.0092
+173.688,122.615,-131.0461
+139.358,122.615,-131.5561
+133.232,122.615,-139.3541
+176.9221,133.9537,-131.0063
+-52.82287,114.9,684.8569
+-503.8915,166.8955,-505.5152
+-442.5941,166.9718,-533.2029
+-491.071,167.8735,-524.193
+-502.0848,167.4474,-520.7882
+-563.1482,122.9776,263.8394
+730.3335,134.0936,13.9892
+-482.2204,118.724,313.602
+663.7209,121.03,579.3232
+483.3462,157.2182,22.39749
+618.6557,118.629,628.3799
+-483.89,168.3964,-475.2216
+-428.6577,170.4333,-585.2219
+-457.5083,170.4549,-573.3567
+-454.5163,169.7431,-611.1989
+-566.1689,122.9251,264.3171
+684.236,120.89,597.4562
+-502.5839,122.1299,280.6563
+651.1326,121.877,611.7278
+600.2925,121.9224,616.5023
+121.4713,142.648,-390.2255
+478.3423,155.6271,31.54935
+613.4207,117.7,652.6799
+690.3555,130.551,567.6165
+164.3935,141.8728,-342.5397
+-504.3673,122,281.3401
+-43.95498,121.7072,554.9208
+-21.31226,124.5519,534.6003
+-57,119.4399,541.396
+-55.56478,117.0126,531.9211
+-58.6739,119.3673,517.9543
+23.1004,1025.606,197.6179
+22.90548,783.0944,427.5892
+23.27564,1029.457,199.9312
+22.51454,781.146,423.8637
+-58.7664,116.7666,531.167
+-53.73999,119.5031,541.894
+-57.98987,120.3621,514.8848
+-41.23785,122.0429,553.0812
+-23.55315,124.2725,537.0045
+-17.62656,121.9724,525.1969
+-88.40675,117.7372,537.1903
+-40.00876,122.3522,508.592
+-68.82708,114.9948,514.9595
+-510.0939,165.4276,-469.2365
+-462.3212,167.3465,-566.1943
+-497.1453,165.4295,-468.7865
+-438.6229,167.1803,-586.7313
+-20.53209,124.5939,536.0929
+-44.35524,121.4988,553.2976
+-60.10955,119.5064,517.0839
+-56.20999,119.2447,539.9209
+-56.4747,117.0807,533.3373
+-455.8723,168.5738,-576.0056
+-456.0977,167.7648,-608.5879
+-430.2167,168.5283,-582.5439
+-485.8139,166.4995,-477.6572
+-492.4184,119.116,330.7668
+702.3005,118.8521,535.0118
+630.2888,125.4728,485.3108
+-477.9013,162.7668,-448.8606
+-490.1313,168.5764,-441.0292
+-477.6079,170.4981,-572.9152
+-473.2602,164.9311,-437.9976
+-471.8929,170.5784,-582.3016
+-467.2768,167.7306,-462.0438
+-467.3508,169.8983,-592.8532
+-468.9691,170.8919,-552.3405
+599.7544,121.0958,615.8954
+650.5385,121.04,612.264
+636.6631,121.04,595.4576
+-68.85287,114.3423,524.9686
+-46.58432,118.9758,516.2247
+-27.44481,119.7884,541.9755
+630.6314,125.1435,490.6561
+702.6891,118.7494,540.3632
+664.5092,118.0745,636.6204
+684.1116,118.02,625.3061
+660.6956,118.02,623.0311
+-568.1122,123.8506,267.3448
+-482.826,118.724,313.1416
+-479.7357,168.8452,-561.8918
+-92.41143,117.3865,604.101
+736.1366,148.8558,14.30814
+682.0609,130.27,569.5883
+-59.00629,113.1035,675.8166
+133.29,133.8677,-140.7479
+165.23,122.72,-138.7801
+-49.10402,113.3871,669.2935
+148.03,122.72,-132.3701
+160.11,122.72,-141.4501
+179.2801,134.0708,-137.9151
+156.643,134.06,-133.8401
+483.6802,157.2588,23.11804
+703.2428,118.8119,536.8845
+631.2137,125.3111,487.1856
+612.0901,117.7,653.2908
+435.357,149.2954,-333.965
+772.6187,120.5271,-650.4657
+769.5308,120.5149,-647.8652
+494.7527,127.689,-325.538
+-494.1245,121.7679,285.4703
+-494.8852,118.291,331.2957
+-570.481,127.7556,360.5133
+623.9429,118.629,631.7809
+660.9312,121.02,626.1143
+683.8759,121.02,622.223
+477.1555,155.0167,29.18321
+614.5033,118.1056,653.089
+667.6905,118.0922,633.1431
+-489.2114,118.894,332.2681
+477.362,155.034,29.53698
+583.5055,120.1203,630.4246
+-504.3539,131.3483,282.0272
+-500.7368,165.8575,-491.4186
+-418.5227,165.3619,-525.0305
+-452.6739,165.0315,-481.9698
+-455.5674,162.9636,-448.7415
+-472.776,165.9514,-485.2725
+-474.7327,165.7087,-508.3204
+-428.388,164.5045,-528.8338
+-526.9138,165.8414,-488.46
+600.9032,121.8811,616.0944
+650.6849,121.877,611.1442
+-547.2164,117.97,377.6713
+13.14429,795.5153,436.4201
+13.2007,1044.487,200.2703
+10.55801,781.9937,410.304
+12.02026,1018.964,184.943
+80.03098,117.524,-45.16502
+-124.0925,118.2474,175.838
+-92.95111,128.7931,193.6214
+-205.7179,120.674,445.1483
+-78.24889,146.0429,145.8874
+-160.4011,135.3233,205.3796
+-94.67857,166.8795,193.4924
+181.5712,116.4988,-73.97002
+-416.4376,124.931,444.3505
+11.34646,116.471,-71.69678
+-108.8509,165.648,168.2365
+267.8273,122.5887,-634.2369
+-85.74956,168.7671,165.4913
+-110.7961,117.5726,72.46799
+-113.1287,133.3555,172.1394
+-103.7624,159.4501,134.696
+-27.92334,131.1753,338.2966
+-78.02168,143.6591,111.9844
+-104.0786,118.8948,135.0316
+10.98328,127.5123,-335.1063
+-77.06023,127.2889,207.1255
+74.98207,117.4203,-30.41369
+-772.1754,115.3535,344.7842
+192.9859,122.411,-120.2652
+-171.394,136.8031,205.2989
+396.1042,126.0163,-20.58289
+-110.4722,130.1375,130.743
+-126.1076,157.0847,177.9881
+-85.05926,129.5,232.3498
+-18.5293,123.1109,-665.8848
+-16.77042,123.948,626.7449
+-111.1787,165.2599,72.60341
+-129.0251,112.9518,-356.7047
+-118.2461,113.7159,130.0676
+-69.71864,134.827,118.0212
+-108.4422,120.3753,154.2209
+-134.4421,117.5564,175.8118
+-104.0664,111.03,764.5006
+-83.92105,130.94,162.8907
+178.0251,119.111,17.49597
+156.175,122.371,-100.064
+-124.9386,132.1414,180.063
+-79.31775,168.1695,199.6114
+101.325,120.254,-29.93103
+280.2424,124.6732,-623.8909
+-148.0345,153.2469,187.0655
+-108.4737,124.9079,167.1733
+72.73896,121.435,-57.81602
+-221.9987,139.3901,194.2649
+-123.8317,128.6885,126.726
+-92.51747,165.2361,229.239
+92.85601,116.461,6.675014
+-151.7815,153.7429,196.1173
+-95.80463,166.842,196.4695
+61.91502,119.111,17.49603
+52.925,116.471,-8.883978
+-197.655,114.741,112.7231
+-134.5289,161.8118,176.2781
+-157.0264,124.029,348.3655
+-144.4752,135.265,191.46
+-80.62259,141.9554,173.6749
+-22.82237,118.0866,619.205
+-39.83844,122.7513,-434.7633
+-127.4329,130.316,183.1647
+-139.9919,135.3677,179.6105
+-195.5352,111.5009,-9.027527
+7.583344,116.4244,-67.94718
+141.295,116.521,-91.94403
+-153.1252,133.7816,191.703
+-87.41808,131.4592,166.5544
+-148.0979,112.0724,186.9228
+-463.2719,114.2021,-105.038
+-213.2902,112.7573,131.3244
+-125.2132,159.0978,175.007
+102.9967,116.4402,-29.645
+-141.1063,157.1046,188.0345
+-722.1691,115.3619,401.9731
+-31.04291,136.4533,184.6976
+-219.9052,136.8724,188.6475
+37.66497,116.461,-82.23597
+324.8402,110.619,-782.2791
+-158.8526,115.6588,210.5411
+-107.7135,164.6659,157.2806
+-121.497,132.8172,158.118
+-565.0133,112.9631,168.158
+-141.0328,115.9976,187.4804
+-82.87134,171.7124,164.6136
+-95.72725,130.4531,196.3817
+-125.8901,117.2897,178.5248
+65.93169,116.432,5.939621
+-198.8361,208.9476,112.2789
+-253.022,112.1889,162.2383
+189.3254,119.451,-48.70867
+-74.46278,164.258,150.9225
+-80.92373,137.4416,199.44
+-219.2404,213.9777,129.5683
+119.5139,116.461,-58.93427
+-152.3876,153.444,211.8096
+7.435997,119.111,-21.98495
+-103.2477,113.0775,-368.7363
+-22.01147,124.9173,-653.7061
+280.2963,139.278,-479.9573
+-92.58456,131.5636,229.5951
+86.70512,116.471,-11.34004
+-73.99828,133.1316,151.8688
+-377.2056,129.02,629.6051
+94.61093,117.5041,-29.64501
+200.2433,128.4006,499.7471
+388.0634,128.2856,22.48242
+-94.20181,130.9149,193.005
+-202.7093,144.0448,209.9106
+-69.711,158.9486,117.8045
+49.9859,116.471,-39.72498
+-158.8657,152.847,210.7314
+100.635,116.471,-85.36414
+-156.2876,141.3376,219.7851
+-219.515,117.7263,130.6873
+-272.515,128.5915,-78.22711
+-119.2065,163.2682,128.327
+-103.2639,139.3852,176.4321
+-344.9744,127.2549,630.5725
+60.99255,116.561,-28.8805
+-213.2328,208.8576,131.1396
+57.26601,119.061,-11.28498
+-94.2908,131.6319,199.3065
+-152.1157,118.0738,210.3492
+-152.0373,115.0687,196.1182
+99.49664,116.4403,-29.64501
+-592.0421,123.1287,265.1965
+-609.6041,120.2652,284.256
+-557.5434,120.2041,288.9156
+-549.3052,121.4823,284.0875
+-558.4794,123.9623,267.4121
+-600.3248,123.0977,294.1412
+-443.8116,121.4101,315.5146
+-571.8852,126.9776,253.4831
+-544.7023,122.4623,265.2872
+-537.7224,122.5329,268.4114
+-527.3023,120.8294,278.0137
+641.3636,118.04,596.7291
+-458.7144,173.276,-548.0441
+-521.6023,171.2494,-517.7758
+-495.4509,171.4104,-496.1859
+480.7935,157.4355,24.53471
+-13.72151,122.4222,523.1142
+-37.14985,122.9682,505.2399
+-65.95566,116.1034,511.7477
+-85.61137,117.236,533.7663
+-153.2098,153.6484,196.7726
+-123.811,129.8134,127.6529
+-93.71371,164.5796,230.0242
+93.60601,116.461,5.425014
+-222.1153,138.1529,193.5027
+72.73896,120.185,-58.56602
+-158.131,124.0057,347.4146
+-145.317,134.7765,190.3747
+-79.4595,142.6404,174.2253
+-135.7693,161.9189,175.3145
+54.175,116.471,-8.133976
+-198.2948,115.1483,111.4782
+-96.72916,166.6689,195.207
+63.16502,119.111,18.24603
+-135.4997,117.5947,174.8093
+-118.5598,114.0252,131.4572
+-70.26476,135.2961,119.2888
+-107.8514,120.4838,152.8926
+-127.6561,112.8101,-356.2242
+278.9781,124.6015,-624.613
+-146.7832,153.2201,186.1105
+-107.8384,125.1793,168.457
+157.425,122.371,-99.31403
+-125.5157,131.9979,178.7321
+-79.72323,169.053,200.8497
+100.075,119.504,-29.93103
+-83.58099,131.1968,164.2847
+179.2751,119.111,18.24597
+-103.1843,111.1175,763.3434
+-127.0522,156.8094,176.7591
+-85.99553,130.2266,233.1985
+193.7359,122.411,-121.5152
+-172.6597,136.4954,204.6443
+395.7133,126.1909,-19.18945
+-111.3403,130.3789,131.8889
+11.90503,127.6667,-336.2251
+-77.31577,128.1075,208.3043
+75.72722,117.8342,-31.59625
+-770.8667,115.4008,345.4244
+-104.9599,117.8863,135.6071
+-17.82149,123.7699,625.7506
+-111.5024,164.6033,73.99722
+-17.43073,122.936,-666.827
+-95.61308,166.6295,192.2503
+180.9712,116.4988,-72.97002
+-205.1289,121.0525,443.8696
+-77.3582,147.0161,146.5075
+-159.0618,135.8621,205.582
+-93.58997,129.0812,192.3432
+80.03099,116.774,-46.41503
+-124.7218,117.6629,174.6602
+-105.0863,159.6508,135.5241
+-78.34801,144.3734,113.2125
+-26.85706,131.158,337.3027
+-86.7849,169.422,164.5025
+-111.0805,117.1265,73.82635
+-111.9206,133.9511,172.6968
+-108.1,166.3608,169.4225
+268.9491,122.453,-635.1578
+-415.7175,125.0254,443.0865
+12.28603,116.471,-72.81132
+-218.6243,117.1043,131.6592
+-271.9134,128.5637,-79.55457
+-119.2821,162.0988,129.3783
+-104.2265,139.2331,175.348
+50.7359,116.471,-40.97498
+-157.5826,152.8815,209.8198
+101.885,116.471,-84.61414
+-155.632,141.5258,218.4968
+-73.34811,134.2897,152.4698
+-378.6165,128.9966,629.9709
+94.61093,116.7541,-30.89501
+199.3533,128.4112,500.9016
+387.5336,128.2332,21.12537
+-95.06065,129.8266,192.5545
+-201.7905,142.9192,209.7932
+-70.19777,159.9462,118.9209
+-153.2894,114.8819,196.841
+100.2466,116.4403,-30.895
+-95.42514,131.8724,198.4231
+-151.0594,119.0166,210.6961
+-214.3488,209.0989,132.2236
+58.01601,119.061,-12.53498
+-346.3686,127.3349,630.1544
+62.43766,116.561,-28.68904
+-218.2546,213.5311,130.7116
+118.7639,116.461,-57.68427
+-151.5383,153.559,213.1302
+8.186005,119.111,-23.23495
+-81.88,137.9168,200.4323
+-73.67825,165.5112,151.4634
+85.95511,116.471,-10.09004
+281.7365,139.4771,-479.8524
+-93.77145,131.2164,230.3669
+-23.46484,125.0296,-653.7179
+-101.8112,113.1015,-368.983
+-106.3553,164.8465,156.5052
+-122.1988,134.041,157.7512
+-566.4534,113.1817,168.2173
+325.2692,110.4312,-783.6596
+-157.6998,115.896,209.681
+36.41498,116.461,-82.98598
+-199.6477,208.4881,111.0106
+-252.3232,112.2045,160.9591
+190.5837,119.451,-47.97274
+-126.764,116.7563,177.4871
+66.59146,116.432,4.839985
+-142.0512,115.555,186.536
+-81.61417,171.0509,165.2922
+-96.46344,129.9289,195.2379
+-195.1398,111.3682,-10.42432
+-141.4219,135.5716,179.4142
+-128.2548,130.0806,181.984
+-21.40666,118.1707,618.8678
+-40.79077,122.6562,-433.6638
+-126.0927,158.6239,173.7903
+103.7467,116.4402,-30.895
+-142.1333,156.8678,186.8649
+-723.4617,115.3629,401.2993
+-31.09497,136.6897,186.1351
+-220.9203,136.0524,189.2971
+-464.6731,114.022,-105.3975
+-214.3297,112.6933,132.3444
+-154.4079,134.4164,191.426
+-88.61343,131.7684,165.7794
+-146.9462,112.0193,186.0308
+8.278679,116.4244,-69.10606
+142.545,116.521,-91.19403
+-568.1201,123.8488,267.4787
+-499.1647,171.3868,-450.1204
+-462.3065,168.1827,-441.1503
+-452.9619,172.7113,-585.6726
+-445.3672,172.6595,-593.3335
+-473.4635,173.4033,-569.3912
+-497.8793,172.334,-567.0615
+-476.19,170.4671,-453.0766
+-446.5584,173.0531,-553.5227
+-91.99234,117.9919,535.646
+-72.36518,114.9378,513.2907
+-43.58276,122.3867,507.0009
+-20.36025,121.9364,522.3983
+43.83001,117.56,7.100033
+-73.05978,117.4756,525.3384
+-32.50329,120.9838,541.1785
+-45.84164,121.4825,520.7873
+-168.4462,124.3023,502.9995
+109.8986,131.6887,-374.5431
+-250.3502,131.2384,-107.7341
+413.9396,117.7546,-693.486
+149.3596,138.2271,389.4838
+-341.5825,123.6452,556.2307
+-713.27,112.9546,95.70972
+309.6847,140.9649,124.9663
+-762.1702,115.9718,136.2024
+-767.8561,115.559,140.3232
+-130.2883,137.2725,-726.171
+227.7841,136.7552,-557.4958
+-734.2429,114.4195,136.5607
+577.0229,116.9166,-506.1544
+122.0693,132.4852,391.0027
+-379.4672,121.2377,366.4506
+146.8817,131.4501,424.05
+-137.2234,124.2284,520.8583
+-361.8097,124.0709,562.0835
+200.3175,116.4613,86.63196
+-162.7767,124.1007,525.2083
+135.8893,128.7623,442.4558
+451.0068,127.8364,-160.4285
+-153.8398,121.3565,502.5481
+131.9137,131.0327,-335.7295
+227.1838,139.5554,-521.2057
+167.9507,135.0724,-389.1131
+-260.7383,130.8415,-79.98981
+-309.8761,128.2625,76.96948
+304.5416,153.8864,393.7314
+357.5332,126.4009,-175.6351
+173.7933,134.19,-363.7779
+145.8665,136.0133,-399.6583
+-350.0424,126.7054,95.71448
+224.0785,139.019,-539.7053
+441.8088,131.6694,-187.3756
+128.1567,130.1721,412.4733
+-329.2833,125.9193,89.46521
+343.0649,122.8788,-94.15491
+107.9946,130.8627,-353.203
+568.4312,118.39,-504.6226
+-351.3405,127.1444,571.9889
+615.6678,117.7,653.1489
+-637.3288,118.27,372.1663
+-449.593,123.2976,303.7753
+-601.0265,126.3905,260.3574
+-602.2877,116.3633,385.3419
+-664.4355,124.7773,326.6541
+-654.4688,117.92,398.3863
+-675.4056,118.0599,384.7235
+-527.6119,118.0566,312.0658
+351.268,165.6678,136.2212
+-609.1478,120.2465,284.9326
+-556.916,120.1921,288.3936
+-592.8193,122.994,265.4067
+-459.3777,170.4691,-564.5057
+-494.4594,168.4445,-471.014
+-441.6615,170.1645,-588.4998
+-512.3234,168.4426,-471.9207
+657.3401,117.95,618.2733
+-472.492,168.0541,-553.9592
+-464.0525,166.8983,-591.0629
+-480.9474,167.5192,-574.6638
+-470.1107,167.4839,-585.5159
+-471.2156,162.8746,-441.8283
+-470.1834,164.7793,-459.6096
+-480.7232,161.3095,-445.2554
+-492.6187,165.5956,-443.8597
+-19.79571,118.4421,588.3976
+-5.27771,122.2368,549.47
+477.3466,155.5746,30.20337
+-87.38367,116.8553,609.4997
+-19.20387,124.7738,533.9807
+-46.12618,121.325,555.056
+-60.16142,118.7718,519.4746
+-58.70999,119.2564,540.0101
+-53.9798,117.2297,533.444
+656.235,117.95,616.2781
+711.1074,123.4563,-682.0125
+709.4289,123.9253,-681.5357
+710.5412,123.9043,-681.7754
+710.0059,123.9063,-682.9174
+710.4973,123.8673,-683.109
+714.0555,123.8763,-685.9771
+713.2522,123.8703,-686.1482
+711.8691,123.7723,-686.1128
+711.9222,123.6933,-682.7208
+707.9984,123.8092,-681.8292
+708.3343,123.8543,-681.1199
+713.5726,123.7253,-688.3989
+712.0007,123.8613,-684.7933
+727.2086,123.4563,-630.8461
+725.7319,123.9253,-631.7757
+726.6537,123.9043,-631.1087
+727.1453,123.9063,-632.2702
+727.6163,123.8673,-632.0328
+732.1279,123.8763,-631.3037
+731.7182,123.8703,-632.0155
+730.7673,123.7723,-633.0205
+728.28,123.6933,-630.7136
+724.994,123.8092,-633.0358
+724.691,123.8543,-632.3119
+733.6063,123.7253,-633.2819
+729.8739,123.8613,-632.0406
+700.8834,123.4563,-668.6265
+700.4066,123.9253,-670.3051
+700.6463,123.9043,-669.1927
+701.7883,123.9063,-669.728
+701.9799,123.8673,-669.2366
+704.848,123.8763,-665.6785
+705.0191,123.8703,-666.4818
+704.9837,123.7723,-667.8648
+701.5917,123.6933,-667.8118
+700.7001,123.8092,-671.7355
+699.9908,123.8543,-671.3997
+707.2698,123.7253,-666.1614
+703.6642,123.8613,-667.7333
+-494.4307,119.014,332.4816
+18.89015,791.8017,402.5307
+22.29552,1051.736,190.7421
+21.76622,806.851,431.6024
+20.9824,1023.352,173.697
+-567.7665,123.8351,266.6922
+-563.9378,123.1208,262.9125
+-518.1247,120.0292,373.7909
+25.5198,1035.54,180.8872
+24.47175,800.394,418.4939
+25.69504,1039.391,183.2005
+24.0808,798.4456,414.7684
+481.2248,157.4347,24.84274
+-476.0684,120.78,289.6382
+-669.8942,119.3478,363.5303
+-675.3444,117.7832,386.7022
+-529.4843,117.7401,312.6901
+-665.1298,124.3853,328.4872
+-600.8236,116.4033,386.7023
+-599.3597,126.1605,261.4364
+-448.1289,123.3376,305.1357
+-653.0047,117.96,399.7466
+-635.8647,118.31,373.5266
+-569.8512,127.3383,358.6402
+655.8605,121.02,626.6594
+688.9466,121.02,621.6779
+142.3073,133.44,-364.9906
+57.21001,117.56,7.100025
+139.7,136.24,-364.1
+137.37,133.49,-363.75
+-104.6409,124.9218,155.3995
+-459.3824,168.7551,-462.4602
+-491.1575,171.0922,-589.442
+-414.5751,175.9915,-604.0248
+-427.0663,176.2012,-616.2916
+-482.2913,171.1841,-557.7103
+-51.97417,113.8425,527.7851
+-60.04999,117.0688,546.4084
+-53.95934,115.8944,520.3544
+-42.58984,119.3657,560.6393
+-23.13619,121.4705,529.3824
+614.4246,118.1056,653.9518
+-488.2604,119.303,331.6978
+-501.4935,128.289,285.3206
+13.37215,1030.175,190.7596
+12.85853,790.4258,424.7849
+13.54738,1034.026,193.0729
+12.46758,788.4774,421.0594
+350.5315,165.6678,135.4749
+656.7474,117.95,622.0014
+-489.4715,171.0692,-587.8765
+-416.7283,175.763,-603.2465
+-457.3661,168.5747,-463.5536
+-429.0126,176.1633,-615.065
+-494.545,119.014,332.3229
+-573.5529,129.2072,359.5403
+-428.3243,176.1602,-611.6172
+-457.8187,168.628,-467.0398
+-416.7814,175.5747,-599.7361
+-486.3167,171.0872,-589.4281
+482.8036,157.1826,21.5821
+349.9895,165.6678,133.4935
+-593.184,123.0382,259.8325
+-614.2817,119.6626,287.0562
+-554.3155,119.2827,293.2534
+687.0702,130.275,567.7925
+436.468,149.2704,-334.317
+770.6417,120.4899,-648.2172
+773.6719,120.5021,-649.9669
+495.8636,127.664,-325.89
+-431.9067,166.884,-547.5181
+-496.3833,165.8595,-503.5481
+-516.5704,165.826,-476.4226
+639.7122,118.04,594.1364
+727.7839,134.4189,13.3381
+-490.0171,168.3053,-565.0528
+-482.0065,168.9189,-561.3198
+-480.3404,166.3058,-433.7864
+735.9483,148.9366,12.64752
+486.217,128.5341,-333.4153
+484.5893,130.2809,-333.3812
+485.2826,130.2312,-332.8341
+486.6526,130.1091,-332.3164
+487.3612,130.2058,-333.3875
+485.9135,130.174,-333.9345
+484.7483,130.2618,-334.1839
+487.8522,130.104,-332.2579
+783.5399,122.297,-663.8806
+783.1515,124.0438,-662.2994
+783.8594,123.9942,-662.8275
+784.7141,123.8721,-664.0169
+783.8628,123.9687,-664.9785
+782.9598,123.9369,-663.7218
+782.4174,124.0247,-662.6608
+785.0811,123.867,-665.1605
+679.6245,118.043,614.1492
+683.3005,117.89,594.3845
+-671.9448,117.11,397.3592
+-467.0691,122.4876,302.7482
+-618.4335,126.9085,262.3201
+-619.7637,115.5533,384.3148
+-670.0963,129.7877,310.8435
+-654.8049,117.46,371.1392
+-518.5752,120.8527,297.313
+-686.9556,120.4616,371.7638
+-493.2472,165.4101,-450.2095
+-462.9546,163.4381,-448.065
+-458.4996,166.7143,-583.6442
+-447.3737,166.8417,-599.0669
+-491.6885,166.9117,-568.7986
+-467.9842,167.371,-571.4731
+-476.4117,164.6157,-459.1145
+-441.2061,166.9472,-555.7172
+664.7603,118.03,582.3614
+-596.8209,125.2466,293.8537
+-546.8,124.5737,264.2107
+-569.7799,129.9786,251.6015
+-443.0964,124.3373,312.7042
+-526.9933,122.2334,276.4766
+-539.1815,124.0641,267.5198
+-550.4222,123.5937,282.011
+-558.3629,126.0737,265.0571
+350.8098,165.6678,131.2399
+-91.62263,117.7853,598.713
+-557.2404,120.1705,289.1875
+-609.9059,120.2547,284.531
+-592.2082,123.1442,264.8236
+615.5732,117.87,644.8508
+-493.6998,119.116,331.1817
+-563.4874,122.9934,264.8474
+304.0284,158.2617,390.7146
+225.6633,143.5217,-542.0976
+-349.0814,131.36,93.28137
+143.5922,140.179,-397.2121
+175.9087,138.6208,-365.876
+360.709,130.6732,-176.0476
+133.6687,135.2861,-333.0207
+-156.1466,125.7591,500.5973
+-308.8378,132.7467,79.67554
+-257.9119,135.1836,-81.28082
+164.8584,139.4178,-388.8596
+227.6836,144.0325,-524.0718
+107.8952,135.1644,-350.0416
+-354.5265,131.1488,570.465
+565.3306,122.7177,-505.0306
+-326.9186,129.88,86.77637
+126.7505,133.9732,415.9495
+444.5873,135.7994,-185.4437
+342.7152,127.5222,-96.76752
+-341.7699,127.7092,552.7727
+151.7334,142.7068,391.1589
+411.7277,122.0886,-691.2876
+-252.9395,135.5484,-105.9373
+306.8292,145.3369,123.8524
+-715.6815,117.1939,97.88257
+107.3086,135.9159,-372.5602
+-171.1129,128.9281,502.9847
+-359.9079,128.8734,563.4357
+452.1267,132.4268,-162.9152
+-163.9478,128.5095,522.4333
+134.9773,133.2533,439.7157
+202.6373,121.0855,87.95288
+229.5328,140.3253,-561.0601
+-129.7246,141.9837,-723.7224
+-767.5619,120.2389,142.8768
+-759.6495,120.4468,134.7432
+-139.6603,128.8011,522.1467
+147.1185,136.2088,421.6403
+-377.924,125.5717,363.7406
+124.7715,137.0033,391.8934
+579.606,121.0716,-504.016
+-735.74,119.2199,138.3562
+601.2126,122.1638,616.3641
+650.942,122.168,610.8317
+-636.5804,131.812,283.4136
+668.4837,117.98,583.9573
+622.5914,118.629,630.3333
+-591.6149,123.1605,265.4792
+-609.4742,120.2817,283.7596
+-558.0493,120.2402,288.837
+679.6335,117.84,592.663
+599.5176,118.1647,618.319
+652.8873,118.04,612.1967
+-551.2617,121.4994,284.2732
+-560.2505,123.9794,266.5602
+-445.9026,121.577,314.0492
+-546.2084,122.4794,266.55
+-572.6898,127.0567,251.0554
+-538.8795,122.5453,269.2435
+-528.3829,120.8408,277.2787
+-599.7156,123.2203,291.659
+-492.8646,121.7835,285.5176
+701.4114,118.8081,537.907
+629.377,125.3636,488.1971
+681.7991,117.97,625.1616
+663.0081,117.97,623.1757
+-469.4509,164.8859,-464.5235
+-469.1675,167.6162,-580.6387
+-470.6298,161.5877,-437.0644
+-476.0698,167.4431,-575.6113
+-487.7107,165.5933,-443.0809
+-482.1651,162.8946,-449.739
+-467.6327,167.6428,-554.9144
+-468.9308,166.9013,-590.1166
+-458.567,163.9339,-453.2036
+-475.7989,165.8923,-489.8231
+-497.7204,165.8654,-486.8633
+-455.7232,165.399,-486.4882
+-417.2289,165.4614,-530.3376
+137.37,133.49,-367.1
+-106.3357,125.3766,158.2532
+141.124,133.44,-368.1247
+60.56001,117.56,7.100037
+142.4862,136.24,-365.96
+614.4241,118.1056,651.4335
+-492.9518,119.116,331.0718
+-518.2742,124.2491,380.7001
+-550.7983,118.78,360.5354
+176.1131,133.8125,-129.2109
+-53.31054,115.1627,686.9821
+172.879,122.615,-129.2451
+138.549,122.615,-129.755
+134.041,122.615,-141.1551
+-36.86262,115.1613,678.1057
+142.2009,133.781,-141.0292
+132.1889,133.8125,-129.2137
+-569.429,127.5597,360.2323
+622.3026,118.629,628.5622
+736.0891,149.084,7.981949
+-7.643387,122.0001,553.5665
+-20.11977,118.6839,583.6783
+-636.2313,129.978,288.8785
+166.1703,133.7085,-340.6981
+657.8132,118.04,583.4894
+656.3381,118.02,625.8599
+688.469,118.02,622.4774
+122.6214,134.1701,-390.1378
+-568.8488,120.4268,359.3689
+-591.786,123.1158,265.6676
+-557.9686,120.2481,288.5917
+-609.2379,120.2798,283.8643
+-569.1414,119.7492,355.8767
+-492.3608,121.6957,286.4485
+-92.77261,117.2039,606.5679
+11.82113,1025.52,198.6324
+11.31922,780.3461,425.3749
+11.99637,1029.371,200.9457
+11.71016,782.2945,429.1003
+625.9122,130.79,602.6886
+635.4336,131.0536,620.5128
+630.0321,130.4011,611.6253
+689.0323,130.551,568.1477
+773.0082,120.5751,-650.2195
+769.9838,120.5629,-647.9502
+495.2057,127.737,-325.6229
+435.81,149.3434,-334.05
+-19.61785,118.3094,590.9878
+-3.979279,122.3667,547.2214
+-568.1356,123.8667,266.5329
+-535.9691,120.9604,273.5692
+612.4646,118.1056,648.751
+19.8342,1025.135,188.0058
+18.65586,785.7561,415.6699
+20.44468,1038.37,195.9542
+19.99739,792.7158,429.0906
+618.0867,117.92,645.4248
+-21.28613,124.5815,533.4019
+-44.26044,121.748,556.0796
+-58.08005,119.1106,518.9639
+-58.00499,119.5249,542.0445
+-54.51034,117.0229,531.3503
+-60.17207,113.1438,677.5059
+163.39,122.72,-138.8501
+135.13,133.8727,-140.678
+177.4401,134.0658,-137.985
+161.95,122.72,-141.3801
+-48.07085,113.6447,671.0487
+148.1,122.72,-134.2101
+154.803,134.06,-133.9101
+-37.09938,123.1301,504.0873
+-65.89516,116.3731,510.616
+-85.57941,117.1557,532.6046
+-13.24635,122.5285,522.0558
+482.0652,157.2331,21.62965
+-52.6228,116.0983,520.067
+-52.27209,113.7109,526.4418
+-59.63999,117.2402,547.7172
+-24.45113,121.3488,528.9742
+-41.42129,119.6332,561.3274
+-516.7296,125.8855,380.4132
+-480.9373,118.724,313.971
+-517.23,120.1578,373.0898
+651.8859,118.04,614.0065
+597.7789,118.2242,617.2003
+-568.7229,123.9101,266.6764
+147.07,116.26,-77.04008
+189.44,116.26,-61.74001
+147.07,116.26,-53.54006
+-73.94703,112.79,662.363
+659.2161,117.95,620.3522
+617.7844,117.92,648.3641
+-504.0875,131.3153,282.3892
+-455.9198,170.466,-574.0114
+-456.1038,169.6978,-610.5432
+-430.2365,170.4143,-584.5445
+-483.967,168.4052,-476.938
+122.5381,138.4145,-389.265
+-73.8196,112.79,664.9423
+149.24,116.26,-78.44009
+149.24,116.26,-54.94006
+187.2701,116.26,-60.34001
+-449.8379,169.8891,-602.5196
+-454.6644,170.5523,-564.0543
+-482.4864,168.5762,-483.6588
+-454.6004,169.8983,-600.4708
+-458.1594,169.9013,-601.1246
+659.4646,118.04,586.0821
+165.9502,138.0339,-340.8597
+-504.6581,165.8605,-508.4036
+-440.2881,165.9327,-535.1016
+-493.5806,166.6818,-522.6819
+-500.8697,166.5693,-523.5728
+-467.6628,127.7258,287.0542
+-659.7176,122.8836,366.6143
+-25.94664,124.1382,532.4863
+-39.9945,122.676,558.002
+-53.6161,119.9445,517.5034
+-56.02785,116.5531,526.8524
+-56.11299,120.0935,546.3864
+-519.8811,121.5557,376.313
+-22.37386,118.7778,585.3571
+-4.859467,122.3785,553.446
+-424.3323,172.1917,-614.8685
+-490.4553,167.0832,-592.4438
+-411.9293,172.0603,-602.2582
+-462.3033,164.9618,-464.0898
+674.567,117.57,603.3002
+670.8345,120.99,597.6646
+670.8345,120.99,597.6646
+672.7034,120.99,596.3448
+672.7034,120.99,596.3448
+677.8658,124.04,597.7053
+677.8658,124.04,597.7053
+680.1595,124.04,601.3681
+680.1595,124.04,601.3681
+682.4927,124.04,605.0192
+682.4927,124.04,605.0192
+680.1882,124.04,607.5117
+680.1882,124.04,607.5117
+676.8687,124.04,610.1719
+676.8687,124.04,610.1719
+674.1729,124.04,608.7643
+674.1729,124.04,608.7643
+672.006,124.04,604.3309
+672.006,124.04,604.3309
+672.6917,124.04,600.2499
+672.6917,124.04,600.2499
+674.7314,124.04,599.0037
+674.7314,124.04,599.0037
+669.3725,117.95,607.1909
+668.0502,117.95,605.0219
+668.0077,117.95,602.6221
+668.6588,117.95,600.5337
+669.6617,117.95,598.6096
+671.2462,117.95,597.6544
+672.673,117.99,596.2931
+672.9446,117.95,601.5281
+671.4768,117.95,601.4981
+672.7581,117.95,599.3175
+674.4473,117.954,600.3077
+675.4937,117.954,601.8873
+678.1429,117.95,608.2158
+676.6,117.95,610.504
+674.9081,117.95,608.0418
+676.4048,117.95,608.6929
+673.7849,119.45,611.9509
+675.2527,119.454,611.9728
+673.3386,119.454,611.0185
+674.221,119.454,612.3511
+680.8915,117.95,606.9124
+679.8221,117.95,608.7827
+679.6859,117.95,603.3637
+679.9388,117.954,604.9041
+677.0341,117.954,600.7666
+677.0341,117.954,600.7666
+677.877,117.954,602.7617
+677.877,117.954,602.7617
+679.4151,117.954,600.4694
+679.4151,117.954,600.4694
+679.8307,117.954,598.7794
+679.8307,117.954,598.7794
+678.2777,117.954,598.506
+678.2777,117.954,598.506
+678.6289,117.95,597.1288
+678.6289,117.95,597.1288
+677.5768,117.95,597.214
+677.5768,117.95,597.214
+678.1432,117.95,595.9875
+678.1432,117.95,595.9875
+680.2209,117.95,597.6658
+680.2209,117.95,597.6658
+681.352,117.954,599.6005
+681.352,117.954,599.6005
+680.1246,117.954,599.7052
+680.1246,117.954,599.7052
+678.8268,117.954,599.6054
+678.8268,117.954,599.6054
+679.0706,117.954,601.1895
+679.0706,117.954,601.1895
+680.6235,117.954,600.6914
+680.6235,117.954,600.6914
+683.7314,120.954,604.1804
+683.7314,120.954,604.1804
+682.8,120.954,604.5832
+682.8,120.954,604.5832
+683.655,120.954,605.1372
+683.655,120.954,605.1372
+683.0917,120.954,604.0021
+683.0917,120.954,604.0021
+681.967,120.954,604.7843
+681.967,120.954,604.7843
+682.8373,120.954,606.682
+682.8373,120.954,606.682
+684.5064,120.954,604.916
+684.5064,120.954,604.916
+684.0342,120.954,606.2553
+684.0342,120.954,606.2553
+685.1213,120.954,605.9082
+685.1213,120.954,605.9082
+683.0429,120.95,602.8973
+683.0429,120.95,602.8973
+682.1996,120.954,601.9942
+682.1996,120.954,601.9942
+681.7262,120.95,600.4813
+681.7262,120.95,600.4813
+680.9394,120.954,601.1437
+680.9394,120.954,601.1437
+682.4609,120.95,601.1978
+682.4609,120.95,601.1978
+681.179,120.954,602.0678
+681.179,120.954,602.0678
+681.7586,120.954,602.9427
+681.7586,120.954,602.9427
+679.9464,120.954,601.6152
+679.9464,120.954,601.6152
+680.502,120.954,600.0331
+680.502,120.954,600.0331
+680.4384,120.95,598.8837
+680.4384,120.95,598.8837
+679.1564,120.954,598.002
+679.1564,120.954,598.002
+679.0017,120.954,598.8691
+679.0017,120.954,598.8691
+679.4852,120.954,596.8607
+679.4852,120.954,596.8607
+678.699,120.95,595.5911
+678.699,120.95,595.5911
+677.7,120.954,596.449
+677.7,120.954,596.449
+677.9869,120.954,597.6724
+677.9869,120.954,597.6724
+676.5808,120.954,596.6014
+676.5808,120.954,596.6014
+675.5728,120.954,597.1422
+675.5728,120.954,597.1422
+677.3341,120.954,600.0518
+677.3341,120.954,600.0518
+678.3032,120.954,601.5237
+678.3032,120.954,601.5237
+679.7584,120.95,603.9011
+679.7584,120.95,603.9011
+680.418,120.95,605.1606
+680.418,120.95,605.1606
+681.8842,120.95,607.7322
+681.8842,120.95,607.7322
+669.6336,120.97,607.5362
+669.6336,120.97,607.5362
+668.6571,120.97,605.8366
+668.6571,120.97,605.8366
+668.0974,120.97,603.9383
+668.0974,120.97,603.9383
+668.4479,120.97,601.3191
+668.4479,120.97,601.3191
+669.322,120.97,598.821
+669.322,120.97,598.821
+621.0388,117.92,651.2102
+121.6309,134.5128,-391.8985
+-549.8685,118.82,358.7664
+480.9251,167.5634,27.6458
+-32.21217,119.4621,547.2351
+-40.95983,123.1899,517.2751
+-70.15062,118.1422,530.8316
+683.3188,118.0724,612.731
+631.3849,125.148,489.7813
+703.4365,118.759,539.4832
+690.0482,130.551,568.8569
+-68.10252,117.5245,526.2704
+-28.78122,121.8924,544.4597
+-45.71184,122.3611,515.8218
+-470.9238,167.9126,-554.4683
+-465.6279,166.9013,-590.5566
+-470.8262,162.4582,-440.2747
+-469.6054,167.528,-583.9407
+-470.1359,164.8253,-461.2632
+-479.3723,167.4939,-575.1705
+-490.965,165.5982,-443.7968
+-481.3224,161.9625,-446.6529
+-475.212,165.9329,-487.3565
+-457.9854,163.5305,-450.7686
+-498.3038,165.8555,-489.331
+-455.121,165.2437,-484.0299
+-418.6231,165.231,-528.2321
+164.8154,133.5823,-342.2299
+-668.81,119.5779,363.35
+-475.3387,121.26,288.9324
+-87.63071,116.7304,611.1871
+662.8493,118.0789,637.2608
+656.9798,121.04,585.554
+-72.49068,117.8449,528.2657
+-43.08667,122.2629,519.8762
+-33.15544,119.9164,543.9106
+-533.1732,121.0039,273.428
+-412.2101,175.8582,-598.6875
+-487.4823,171.0902,-593.9797
+-462.4891,168.9955,-467.3987
+-423.626,176.1789,-611.5734
+-435.3,262.03,53.90001
+-594.7545,123.6293,264.2108
+-554.6781,120.806,288.8338
+-609.7734,120.9506,287.0986
+-439.7194,166.8775,-550.8258
+-422.7614,167.8813,-579.8649
+-463.2287,167.5825,-578.5403
+-490.6748,165.5482,-471.5738
+-520.2873,124.6744,380.2119
+613.3615,118.1056,648.8228
+-47.63004,116.1481,542.4391
+-31.18182,121.3667,519.3044
+-74.353,115.4523,541.882
+713.4413,118.5036,539.7343
+753.7438,121.8346,486.7016
+739.3636,121.4087,517.5631
+593.3362,127.5633,568.4044
+733.9584,121.8601,514.7827
+564.0105,126.5053,547.335
+646.0781,124.6261,488.3541
+744.167,119.3635,499.032
+584.7515,127.3324,570.6884
+558.5314,128.6638,567.2609
+698.0553,118.5023,544.397
+599.218,125.7296,560.377
+628.2158,124.2576,475.8102
+569.2764,126.5958,560.4318
+617.5775,124.3982,487.9023
+668.8951,121.6751,541.3432
+761.7877,122.5146,500.1127
+695.3859,118.5478,531.0057
+747.2568,120.0346,519.0009
+704.8299,118.4899,526.8407
+757.7465,121.926,493.0576
+644.8369,123.7517,497.4949
+484.5315,149.3443,-302.2312
+754.8903,142.7502,-703.2345
+769.0922,151.5859,-689.2077
+779.2957,151.5859,-668.0824
+774.8331,142.7502,-699.3384
+-427.1331,167.6469,-577.1849
+-435.348,167.0277,-553.5124
+-458.8568,167.622,-581.23
+-491.7307,165.5512,-476.5972
+-432.2635,168.1046,-532.5855
+-480.4306,168.6632,-507.3934
+-527.8928,168.702,-494.1971
+665.3943,118.1014,633.7659
+72.73896,122.935,-57.06602
+-221.8742,140.8771,195.0303
+-123.8923,127.4769,125.568
+-91.21103,165.9654,228.2183
+92.10601,116.461,8.175011
+-150.1998,153.8359,195.2398
+-94.63453,167.0605,197.8347
+60.41502,119.111,16.74603
+51.425,116.471,-9.63398
+-197.0273,114.306,114.2161
+-133.0434,161.7918,177.3142
+-155.6765,124.0744,349.3595
+-143.405,135.8042,192.6332
+-82.0298,141.272,173.0706
+-130.638,113.114,-357.1345
+-117.9396,113.4723,128.4369
+-69.11548,134.404,116.5146
+-109.1449,120.3769,155.7436
+-133.1579,117.5921,176.8899
+-104.9758,110.9254,765.9058
+-84.43098,130.6145,161.3265
+176.5251,119.111,16.74597
+154.675,122.371,-100.814
+-124.1818,132.3781,181.5407
+-78.81412,167.2703,198.122
+102.825,121.004,-29.93103
+281.7567,124.7505,-623.1742
+-149.3857,153.2869,188.2711
+-109.3155,124.5809,165.7602
+-103.1323,120.0448,134.2605
+10.0249,127.3409,-333.7409
+-76.7176,126.4521,205.7132
+74.23692,116.908,-29.00132
+-773.7328,115.291,344.1652
+192.2359,122.411,-118.7652
+-169.8785,137.1117,205.9473
+396.4288,125.8117,-22.21545
+-109.5795,129.8383,129.3552
+-124.9217,157.4365,179.3111
+-84.06809,128.6744,231.278
+-19.70538,123.3143,-664.7068
+-15.47748,124.1617,627.7913
+-110.9377,165.9891,70.96308
+80.03099,118.274,-43.66502
+-123.2852,118.9779,177.1137
+-92.10518,128.4488,195.028
+-206.2763,120.215,446.6615
+-161.9727,134.7496,205.2629
+-79.35077,145.0213,145.1425
+-93.49725,167.1784,194.8324
+182.1712,116.4988,-75.17001
+-417.1518,124.8146,445.8633
+10.36703,116.471,-70.33544
+-109.814,164.7931,166.9629
+266.6226,122.7602,-633.0829
+-84.51344,168.1419,166.6582
+-110.5725,118.0194,70.86712
+-114.5572,132.6477,171.6189
+-102.3186,159.1791,133.6365
+-77.64487,142.9514,110.5114
+-29.05872,131.1956,339.5306
+-74.83995,131.8785,151.1382
+-375.6194,129.0409,629.061
+94.61093,118.2541,-28.14501
+388.7909,128.3445,23.99231
+201.1624,128.3932,498.3442
+-93.12556,132.0782,193.5535
+-203.8631,145.2551,210.0385
+-69.14186,157.9099,116.4342
+49.2359,116.471,-38.22498
+-160.2578,152.7845,211.8884
+99.13499,116.471,-86.11414
+-156.933,141.1616,221.3229
+-220.6359,118.4237,129.653
+-273.088,128.6212,-76.65125
+-119.2378,164.5651,127.063
+-102.2381,139.4947,177.7543
+-343.3383,127.1624,630.9288
+59.31803,116.561,-28.97262
+-212.0422,208.6167,129.7962
+56.516,119.061,-9.784977
+-92.9129,131.3423,200.2176
+-153.3954,117.0879,209.8987
+-150.6578,115.2438,195.1807
+98.74664,116.4403,-28.14501
+-75.44329,162.9039,150.2255
+-79.89229,136.9576,198.2094
+-220.4719,214.5085,128.3508
+120.2639,116.461,-60.43427
+-153.4785,153.3257,210.3686
+6.685997,119.111,-20.48495
+-104.8738,113.0555,-368.3266
+-20.34418,124.778,-653.8206
+278.6351,139.0474,-479.9492
+-91.29218,131.957,228.6013
+87.45512,116.471,-12.84004
+39.16497,116.461,-81.48596
+-160.1148,115.4459,211.6247
+324.4684,110.8663,-780.6627
+-109.2021,164.4536,158.2903
+-120.6296,131.4768,158.6314
+-563.3698,112.6922,167.9633
+-139.7728,116.4761,188.4785
+-84.37123,172.3458,163.82
+-94.77611,131.0607,197.6222
+-124.8186,117.9625,179.6255
+65.2719,116.432,7.259182
+-198.0048,209.4238,113.816
+-253.7126,112.1931,163.7666
+187.8171,119.451,-49.4418
+-24.41655,117.9916,619.7169
+-38.84277,122.8528,-436.109
+-126.384,130.564,184.4496
+-138.3322,135.2606,179.826
+-195.8711,111.6163,-7.388489
+6.888016,116.4244,-66.55653
+139.795,116.521,-92.69403
+-151.5943,133.1661,192.0033
+-86.03944,131.2274,167.4808
+-149.3402,112.1394,188.0475
+-461.631,114.3922,-104.7486
+-212.1825,112.8801,130.0712
+-124.1182,159.7063,176.3151
+102.2467,116.4402,-28.145
+-139.8244,157.3806,189.2839
+-720.627,115.3657,402.6323
+-30.93018,136.0668,183.0696
+-218.6859,137.707,187.8543
+-639.8182,117.75,377.5842
+-656.9581,117.4,403.8042
+-452.0823,122.7776,309.1933
+-604.777,115.8433,390.7599
+-670.3925,125.3458,326.5408
+-602.6204,125.3695,266.0353
+-531.1566,117.8185,307.2491
+-681.037,117.7943,386.7331
+732.0443,134.4792,9.704964
+-565.3671,122.8044,266.7038
+349.9258,165.6678,130.997
+628.871,125.3343,489.2383
+700.9133,118.7929,538.9523
+-34.82076,123.8439,519.4741
+-76.13868,116.1985,537.9245
+-44.78199,119.0543,540.751
+668.3487,118.0798,633.8051
+160.9148,133.4187,-341.2971
+639.8381,118.04,597.9442
+131.882,122.615,-140.3841
+140.708,122.615,-130.5261
+175.038,122.615,-130.0161
+134.348,133.873,-129.9823
+140.0419,133.8733,-140.2638
+-37.57447,114.9756,675.6638
+-51.12627,114.9292,685.6868
+178.2721,133.873,-129.9795
+-460.1624,173.4297,-565.4338
+-495.5018,171.4445,-470.62
+-440.9671,173.1717,-587.6534
+-511.9286,171.4426,-470.8786
+735.6567,149.046,10.52131
+481.635,167.537,27.85905
+351.4769,165.6678,135.1242
+341.1021,131.7009,-97.79333
+-326.6249,133.6598,84.17957
+447.111,139.638,-185.5565
+127.2188,137.7519,418.522
+-356.8426,135.1009,570.8306
+563.5354,126.7769,-503.8405
+109.3508,139.124,-348.2199
+-307.2795,137.0121,80.37866
+-256.9947,139.193,-83.33008
+163.2681,143.4018,-387.212
+226.3743,147.9578,-526.0702
+135.73,139.3396,-332.3604
+-158.0931,129.9209,500.6819
+-349.9308,135.6254,91.79761
+225.2955,147.3237,-544.6521
+362.5339,134.4331,-177.9578
+175.9747,142.6917,-368.0066
+143.3341,143.8929,-394.5184
+302.2456,162.2543,389.3014
+-378.381,129.5447,361.4773
+-140.1315,132.9823,523.994
+145.604,140.2688,420.1106
+126.1758,141.3186,391.1703
+-735.2805,123.3379,140.3429
+582.3282,124.772,-503.9034
+229.2554,143.4873,-564.3829
+-127.6453,145.8761,-722.4411
+-758.8757,124.29,132.3458
+-766.1782,124.5432,143.6978
+451.3578,136.6233,-164.6223
+-165.8596,132.5994,521.5768
+132.7454,137.0593,438.4314
+204.562,125.2058,87.2937
+-358.0629,133.035,562.8088
+-172.3054,133.1409,504.3798
+106.6967,139.7338,-370.0771
+304.7416,149.3542,124.6398
+-716.0345,121.1559,100.1836
+153.5416,146.92,390.8494
+-343.285,131.6273,550.9102
+-253.5392,139.4908,-103.6537
+411.5642,126.0688,-688.997
+117.6181,134.4261,-391.8598
+640.2944,119.339,595.1026
+-635.2532,132.2827,286.4481
+-459.708,172.7113,-584.2584
+-461.2725,169.3484,-447.8647
+-492.3326,171.4069,-449.2077
+-439.8152,172.8856,-554.9413
+-475.2662,170.6043,-459.9058
+-491.189,173.0351,-568.5641
+-466.7156,173.3488,-570.7962
+-446.9288,172.8957,-600.0429
+-492.9641,166.6711,-522.6945
+-440.9007,165.9384,-535.0306
+-504.8366,165.8465,-507.8135
+-501.3769,166.5306,-523.2241
+-568.3674,123.8731,267.1963
+478.9651,155.6043,31.74095
+120.5173,138.1516,-388.1793
+701.9335,118.8414,536.0243
+629.9141,125.4423,486.32
+434.4117,149.3434,-285.2857
+502.2128,126.1008,-381.0263
+502.3033,127.737,-375.8097
+436.7032,149.3434,-283.545
+493.5275,127.737,-323.872
+756.4866,120.4937,-727.0591
+494.817,127.737,-330.2091
+439.1143,149.3434,-281.9722
+460.8925,149.3434,-302.5712
+465.2811,149.3434,-310.8791
+164.2221,138.0031,-339.3286
+611.9907,117.7,650.4256
+624.5138,118.629,631.4497
+-567.9587,123.8385,267.3513
+476.8836,157.9054,27.15601
+613.1339,117.7,653.9194
+-481.1463,165.6002,-483.019
+-454.6941,166.8976,-599.0394
+-459.5913,166.9013,-601.2334
+-449.6778,166.8999,-603.9691
+-454.8743,167.5154,-562.7145
+661.434,121.03,579.3442
+139.1969,134.0203,-139.0436
+-38.87773,114.7984,674.6525
+135.1929,133.9693,-131.2075
+175.883,122.615,-131.2451
+131.037,122.615,-139.1551
+141.553,122.615,-131.7551
+-50.47424,114.7303,684.1741
+179.1171,133.9693,-131.2047
+-85.97655,117.5668,599.8882
+731.091,134.1811,8.947617
+686.5223,120.89,597.5129
+-24.01875,124.4077,528.9624
+-42.67159,122.4391,560.9994
+-53.45555,118.7805,521.3539
+-52.00851,116.7703,526.7805
+-60.11999,120.142,546.7723
+657.0446,118.04,585.2873
+154.18,116.26,-71.55009
+154.18,116.26,-48.05007
+182.33,116.26,-67.23001
+-82.25651,112.79,665.7755
+-418.3257,172.1924,-609.4513
+-467.9146,165.4166,-469.8978
+-407.2101,172.0506,-595.689
+-486.7646,167.1002,-599.6414
+619.6727,118.629,630.5824
+-501.395,128.2804,285.4188
+-153.0832,133.0501,191.8631
+-87.1393,130.7632,166.5726
+-148.797,112.0561,186.6517
+6.888016,116.4244,-67.94718
+141.295,116.521,-92.69403
+102.2467,116.4402,-29.645
+-125.4115,158.8994,175.7669
+-141.3539,157.1458,188.8046
+-722.1241,115.3373,402.7214
+-31.29395,136.9674,184.2126
+-219.9107,137.6193,188.7157
+-463.0695,114.3326,-104.3276
+-212.5914,112.5274,131.4706
+-127.7454,130.4885,183.8243
+-23.34569,118.0567,618.6686
+-39.10272,122.8149,-434.6322
+-196.2282,111.7194,-8.841736
+-139.7103,134.6798,179.7102
+-141.222,116.2612,188.1566
+-96.06589,130.5605,197.0423
+-82.91487,172.5145,164.5092
+-198.1226,209.3236,112.2034
+-253.7624,112.0739,162.2721
+189.317,119.451,-49.45863
+-126.0049,117.126,179.2476
+65.2719,116.432,5.939621
+37.66496,116.461,-81.48596
+-108.4197,164.6445,156.8847
+-121.6233,132.1752,157.7513
+-564.5908,113.0058,168.7761
+324.1259,110.5092,-782.0787
+-159.4586,115.2995,210.2838
+-21.62799,124.9398,-653.0619
+-103.7363,113.0427,-369.3043
+87.45512,116.471,-11.34004
+279.9602,139.2359,-480.6265
+-91.92505,131.6799,229.9328
+-74.26736,163.509,151.1612
+-218.9984,214.0032,128.7957
+120.2639,116.461,-58.93427
+6.685997,119.111,-21.98495
+-152.0283,153.3457,211.0903
+-80.34326,137.0104,199.639
+-212.4903,208.6142,131.3529
+56.51601,119.061,-11.28498
+-344.7899,127.2375,631.2992
+60.69449,116.561,-29.56873
+-151.4219,115.3145,196.4695
+98.74664,116.4403,-29.64501
+-94.3743,131.637,200.0518
+-152.0551,117.3461,210.5208
+-73.69106,132.449,151.9157
+94.61093,118.2541,-29.64501
+-376.6713,129.0559,630.1302
+200.9877,128.3738,499.834
+387.6045,128.3062,23.07532
+-202.4533,144.7467,209.9759
+-69.63607,158.1567,117.9571
+-94.43002,131.6282,192.9654
+-219.2555,117.9721,130.028
+-273.2599,128.6101,-78.14136
+-102.6176,139.7506,176.3258
+-118.5959,163.8004,128.3388
+-159.6041,152.9527,210.4157
+49.2359,116.471,-39.72498
+100.635,116.471,-86.11414
+-156.9941,141.0891,219.8259
+267.1196,122.5459,-634.4818
+-108.541,165.6464,167.4881
+10.60604,116.471,-71.81628
+-417.1871,124.9471,444.3696
+-103.0379,159.601,135.0254
+-77.94781,142.9128,111.98
+-28.6441,131.1781,338.0892
+-85.71815,167.9637,165.5898
+-110.2081,118.0147,72.32217
+-113.2349,133.3204,171.3978
+-93.34763,128.7857,194.258
+80.03099,118.274,-45.16502
+-124.3521,118.1021,176.5265
+-94.97814,166.8847,194.2449
+182.1712,116.4988,-73.97002
+-206.4601,120.6981,445.2534
+-78.08364,145.3113,145.8911
+-160.5792,134.9589,204.7487
+-16.92873,123.948,627.478
+-110.441,165.5529,72.44205
+-19.23987,123.1437,-666.1224
+74.23692,117.4986,-30.38015
+10.24536,127.4435,-335.2211
+-77.24008,126.5608,207.115
+-772.241,115.3826,344.0376
+-103.522,119.1959,135.4341
+-126.3695,156.978,178.7471
+-84.39745,129.268,232.6157
+192.2359,122.411,-120.2652
+-171.378,137.1059,205.9848
+-109.7264,130.1849,130.8071
+396.8273,125.9915,-20.78058
+178.0251,119.111,16.74597
+-83.41174,131.0266,162.347
+-104.8118,111.028,764.4183
+280.2574,124.7167,-623.1423
+-148.7869,153.2083,186.7679
+-108.0765,124.9144,166.5372
+156.175,122.371,-100.814
+-79.40305,167.3642,199.6282
+-125.2596,131.8196,180.6595
+101.325,121.004,-29.93103
+-129.1744,112.9903,-357.4387
+-134.517,117.1479,176.4364
+-117.8964,113.0785,129.8837
+-69.45765,134.1276,117.9487
+-108.4736,119.7157,154.5765
+52.925,116.471,-9.633978
+-196.9548,114.4724,112.7272
+-96.108,166.7888,197.2187
+61.91502,119.111,16.74603
+-157.1479,123.9413,349.1003
+-144.7758,135.4996,192.1059
+-80.56507,141.2625,173.3938
+-134.5138,161.2691,176.8793
+-221.9222,139.3779,195.0109
+72.73896,121.435,-57.06602
+-151.1198,153.8453,196.5731
+-123.652,127.9971,126.9543
+-91.87229,165.5291,229.6314
+92.10601,116.461,6.675014
+-67.56,118.1437,540.5364
+-27.82466,124.7521,513.6064
+-48.25849,119.0654,549.243
+-441.4646,167.1664,-586.6126
+-459.4802,167.4163,-566.3109
+-496.2907,165.4445,-471.4993
+-512.8073,165.4426,-470.0891
+-425.1359,167.7553,-576.6726
+-437.3489,167.0075,-554.0209
+-492.8842,165.5512,-474.8849
+-460.858,167.6289,-581.7376
+-459.1729,167.5514,-544.5064
+-517.8728,165.8629,-516.1716
+-491.8532,165.9104,-494.6682
+-442.3462,173.1577,-589.2014
+-458.7858,173.4998,-563.8852
+-493.5771,171.4445,-471.3907
+-512.7006,171.4426,-472.8027
+481.4561,157.3684,24.23682
+-71.52239,166.6205,153.1788
+-82.70679,138.0135,203.0533
+118.7639,116.461,-54.93427
+-148.8796,153.5956,214.4533
+8.185997,119.111,-25.98495
+-215.5533,212.6046,131.5273
+-99.72571,113.0781,-370.7754
+-25.81854,125.3262,-652.327
+-94.9317,130.7084,232.8079
+284.1658,139.8227,-481.094
+85.95511,116.471,-7.340042
+-199.2058,141.9872,209.6785
+-71.10383,160.3986,121.7129
+-97.45216,129.0016,191.4762
+199.0332,128.3757,503.6326
+385.3584,128.163,19.44421
+94.61093,116.7541,-33.64501
+-380.545,129.024,631.931
+-71.24179,135.3357,153.8952
+-155.7439,141.3929,215.7523
+104.635,116.471,-84.61414
+50.7359,116.471,-43.72498
+-156.3842,153.1899,207.1198
+-104.9222,139.7022,172.7291
+-118.1053,160.6968,131.7172
+-272.2285,128.5433,-82.28638
+-216.0936,116.2763,132.3468
+64.96117,116.561,-29.78193
+-349.0299,127.4725,630.8336
+58.01601,119.061,-15.28498
+-215.1704,209.0942,135.0777
+-148.6022,119.4901,211.8364
+-98.10437,132.4126,198.1192
+100.2466,116.4403,-33.645
+-154.6902,115.0115,199.2039
+-41.26727,122.5866,-430.9562
+-19.44343,118.29,616.9458
+-130.7506,129.9423,180.8377
+-143.9484,134.5067,179.2019
+-195.7946,111.5572,-13.08856
+145.295,116.521,-91.19403
+8.278679,116.4244,-71.65562
+-145.9504,111.8666,183.4719
+-90.62981,130.9173,164.1144
+-157.1375,134.2036,191.1692
+-215.0794,112.0466,134.9099
+-467.3104,113.9127,-104.6257
+-223.1659,135.8915,190.8764
+-726.2064,115.3107,401.4628
+-31.76196,138.3408,188.2307
+-144.9374,156.4371,185.9862
+103.7467,116.4402,-33.645
+-128.4638,157.1445,172.7851
+33.66498,116.461,-82.98599
+324.6412,109.7765,-786.2557
+-156.4969,115.6276,207.2227
+-568.6918,113.7568,169.7076
+-104.921,165.1965,153.9281
+-124.0207,135.3214,156.1375
+-98.82803,129.0119,194.1748
+-78.94418,171.3602,166.5557
+-144.7081,115.161,185.946
+66.59146,116.432,2.420792
+-128.939,115.2227,176.7944
+193.3336,119.451,-48.0036
+-252.4145,111.986,158.2194
+-199.8636,208.3043,108.0541
+-124.9728,112.5834,-356.7819
+-106.6207,119.2716,150.753
+-70.89206,134.7894,121.9179
+-118.4806,113.3032,134.1096
+-137.9913,116.7805,173.9778
+-102.8836,111.3056,760.6163
+182.0251,119.111,18.24597
+-81.71237,131.9524,166.1555
+97.32503,119.504,-29.93103
+-80.80293,169.2251,203.6112
+-127.4917,130.9739,177.1166
+160.175,122.371,-99.31403
+-105.5669,125.7907,169.8814
+-145.6855,153.0758,183.3546
+276.2295,124.5395,-624.5546
+72.73896,117.435,-58.56602
+-222.2033,135.4046,193.4671
+-94.92603,163.7798,232.6149
+93.60602,116.461,2.675014
+-123.3704,130.7671,130.1943
+-154.8965,153.6656,199.2171
+65.91502,119.111,18.24603
+-99.43053,166.1708,194.0777
+-198.1619,115.4534,108.7484
+56.92501,116.471,-8.133972
+-138.465,160.9607,174.5172
+-76.77415,142.6229,174.8179
+-147.8301,134.218,189.4079
+-160.8287,123.7617,346.9393
+-126.6778,116.0574,173.5837
+80.03099,116.774,-49.16502
+-95.86777,129.6987,190.9315
+-75.03515,147.5478,147.8798
+-156.507,136.2457,204.6394
+-205.4658,121.9382,441.2881
+180.9712,116.4988,-70.77002
+-98.32803,166.091,191.1733
+-415.7822,125.2684,440.348
+12.72421,116.471,-75.52618
+269.8605,122.0601,-637.7224
+-105.7661,167.9251,170.3854
+-109.4963,135.1844,172.2915
+-110.4125,117.1178,76.49395
+-88.99352,169.0954,162.5439
+-78.90339,144.3027,115.9049
+-26.0968,131.1259,334.6602
+-106.4049,160.4242,138.0704
+-105.6744,116.33,137.7588
+-768.1318,115.5688,345.1907
+75.72722,118.917,-34.1241
+12.3092,127.8549,-338.9387
+-78.27365,128.3069,210.8744
+-111.6096,131.0145,134.5508
+396.4437,126.5205,-16.55884
+-175.4088,136.4847,204.7132
+193.7359,122.411,-124.2652
+-86.59937,131.3148,235.6508
+-129.7065,155.969,175.7251
+-16.57727,122.6233,-669.4224
+-20.48212,123.3782,625.176
+-110.5917,163.8036,76.70868
+-519.8811,121.5557,376.313
+619.2226,118.63,626.8782
+731.017,134.0493,12.94499
+472.043,149.2594,-335.825
+456.0673,150.735,-277.8946
+504.7723,127.653,-377.9005
+474.5158,129.085,-323.4485
+740.5145,152.976,-676.2879
+471.9481,149.2594,-287.1764
+760.6108,151.7169,-691.5942
+477.7224,149.256,-324.2333
+744.9369,142.6653,-694.859
+469.773,149.2594,-285.8716
+783.9681,122.888,-668.7579
+758.5536,151.7169,-691.4852
+487.5354,127.656,-328.9372
+486.1429,129.126,-330.9863
+786.4159,121.412,-669.0751
+783.8241,124.364,-668.4447
+474.5632,127.653,-324.1035
+488.2149,129.126,-330.7662
+738.7721,142.6653,-696.4639
+473.7724,149.2594,-333.9794
+486.4649,127.653,-330.7162
+456.0673,150.735,-277.8946
+474.7687,127.653,-322.3071
+458.4753,149.2594,-278.4221
+483.1924,149.256,-323.9333
+785.3141,122.892,-667.2698
+784.2236,121.4124,-668.3832
+456.2301,149.2594,-277.5753
+740.4354,151.501,-676.464
+488.352,127.653,-330.9143
+739.3484,144.146,-696.3171
+739.9208,151.501,-675.0519
+468.4815,149.256,-332.8075
+455.8664,149.2594,-318.0081
+785.584,121.416,-667.6337
+456.2301,149.2594,-277.5753
+479.112,167.6093,26.84874
+633.7922,126.5972,633.9488
+630.3153,129.908,584.9685
+643.8468,129.908,572.098
+696.2245,130.708,601.5446
+737.2748,147.8574,10.63985
+-476.7378,168.0991,-554.8392
+657.2014,121.436,582.0174
+-93.27679,116.9489,610.0119
+-495.5286,121.7924,285.0108
+481.2437,169.8783,25.70288
+351.7464,165.6678,132.1129
+-427.4751,173.4326,-610.2324
+-458.772,165.9731,-468.4962
+-416.0547,172.8156,-598.3441
+-485.1765,168.3662,-590.6005
+-5.619896,122.3024,554.7628
+-22.47802,118.8555,583.8401
+656.6472,117.95,616.8547
+657.9712,118.04,581.4741
+-456.3631,168.5045,-464.4486
+-488.3009,171.0772,-587.2121
+-417.8496,175.645,-602.5114
+-429.9557,176.1616,-614.1046
+350.4945,165.6678,134.3615
+679.7407,120.878,592.4863
+480.6852,157.3985,24.02287
+668.3826,121.018,584.1376
+668.6964,118.0571,631.2499
+-450.7121,170.7232,-608.4059
+-453.6392,171.1383,-558.1624
+-476.6343,169.4538,-482.6137
+-453.6314,170.7049,-594.5955
+-464.031,170.7013,-600.1282
+682.3546,117.9787,610.0496
+-635.108,132.2131,286.1737
+-42.97905,121.9078,522.0954
+-34.89988,119.4355,542.5734
+-74.72681,117.8449,528.0163
+474.4427,127.653,-324.4291
+488.3129,129.126,-331.0992
+474.0276,149.2594,-334.2147
+738.4424,142.6653,-696.5726
+486.5629,127.653,-331.0492
+456.0546,150.735,-278.2416
+474.5219,127.653,-322.5513
+458.4462,149.2594,-278.768
+483.4841,149.256,-324.1216
+785.3033,122.892,-667.6168
+784.4141,121.4124,-668.6735
+456.3622,149.2594,-277.8964
+740.5228,151.501,-676.7999
+488.4501,127.653,-331.2473
+739.1173,144.146,-696.5762
+739.8358,151.501,-675.3885
+468.6588,149.256,-333.106
+455.9911,149.2594,-318.3321
+785.5732,121.416,-667.9807
+456.3622,149.2594,-277.8964
+472.032,149.2594,-336.172
+456.0546,150.735,-278.2416
+504.7613,127.653,-378.2475
+474.3152,129.085,-323.7319
+740.686,152.976,-676.5898
+472.1121,149.2594,-287.4824
+760.5983,151.7169,-691.9919
+478.0141,149.256,-324.4216
+744.7807,142.6653,-695.1691
+469.762,149.2594,-286.2186
+783.7665,122.888,-669.0405
+487.843,127.656,-329.0981
+485.974,129.126,-331.2896
+758.6044,151.7169,-691.8799
+786.5367,121.412,-669.4005
+783.8133,124.364,-668.7917
+120.507,138.6217,-390.4666
+-488.1067,119.3033,333.2898
+-592.2632,123.0705,265.4439
+-557.4407,120.2146,288.5949
+-609.2949,120.2628,284.3898
+-493.0087,118.291,330.7606
+625.6774,130.7799,601.1246
+634.8133,130.7476,619.0905
+629.3967,130.3495,610.178
+638.9436,118.04,595.9343
+663.6237,118.03,581.3193
+163.7054,137.8919,-341.6031
+-563.93,123.1226,262.7786
+465.9791,149.2704,-310.7484
+461.5504,149.2704,-302.8383
+439.8177,149.2704,-281.8745
+502.9613,127.664,-376.0767
+502.8878,126.297,-381.1503
+434.5095,149.2704,-285.989
+494.9148,127.664,-330.9124
+756.9148,120.4207,-726.4927
+493.8088,127.664,-324.524
+437.3612,149.2704,-283.8121
+485.6365,149.3443,-301.1722
+754.1534,142.7502,-701.8931
+774.8656,142.7502,-697.8082
+770.1973,151.5859,-688.1487
+778.5024,151.5859,-669.3913
+-455.6806,172.864,-598.9894
+-481.4785,171.5846,-482.2129
+-459.6448,172.8743,-602.1791
+-448.7716,172.8793,-603.9614
+-455.6169,173.5125,-562.4774
+684.4011,117.89,595.4647
+20.26331,1032.266,186.7451
+19.13578,792.4872,418.333
+20.43855,1036.117,189.0584
+19.52672,794.4356,422.0585
+632.6289,125.2454,486.8366
+704.6576,118.8063,536.5277
+-569.8777,127.3154,358.9274
+657.7021,118.02,626.8001
+687.105,118.02,621.5371
+-446.604,172.6833,-594.6403
+-496.5627,172.4154,-568.2853
+-472.1283,173.4019,-570.5974
+-476.8822,170.5254,-454.7365
+-445.2254,173.0452,-554.7314
+-497.505,171.3948,-450.8156
+-462.9659,168.5727,-442.7784
+-454.2953,172.7113,-584.4645
+684.4714,130.27,568.6641
+-452.8484,175.7413,-583.7316
+-498.6357,174.4249,-451.9781
+-463.8032,171.4568,-441.1072
+-473.5433,176.4539,-571.3014
+-498.3602,175.2047,-569.1802
+-477.9742,173.5587,-453.5457
+-446.5791,176.1368,-555.3807
+-447.3767,175.6338,-593.0562
+668.0038,122.0297,543.317
+762.7674,122.5146,502.0765
+617.9494,124.0473,485.7681
+567.671,126.6584,558.9369
+630.2511,124.4185,475.0053
+598.1091,125.8817,562.2646
+695.8614,118.4873,544.449
+558.0767,128.5594,565.1165
+644.6592,123.4904,499.6666
+759.6782,122.2475,494.0483
+706.5928,118.4733,525.5339
+745.6542,120.5102,520.4227
+696.0344,118.4738,528.9105
+592.0776,127.736,570.1938
+737.2386,121.8399,517.9014
+755.8251,121.8346,487.3974
+714.9231,118.4785,541.3529
+582.9399,127.2965,571.9266
+647.4653,124.469,490.0473
+743.2241,119.3734,501.0136
+563.4156,126.4742,545.2228
+731.8531,122.1753,514.2493
+-501.8622,128.3672,284.504
+639.1004,121.436,592.6644
+-6.224869,122.142,551.1101
+-19.92546,118.5389,586.5081
+-89.83129,117.0797,607.3137
+-494.2802,118.291,331.261
+-67.54203,118.2181,531.7112
+-30.40252,119.7785,549.2867
+-40.5134,123.746,514.6152
+-90.33549,116.8248,610.7576
+-503.3635,122.0601,281.1215
+-544.9177,118.26,361.5203
+686.523,118.02,624.0211
+658.2841,118.02,624.3161
+-505.1529,119.7312,374.3464
+355.4738,162.64,134.943
+639.8702,118.04,592.121
+-48.1155,116.074,548.4712
+-68.31,115.6233,542.1642
+-27.94161,121.7202,514.2051
+757.7263,151.7169,-692.1593
+485.2129,129.126,-331.0309
+487.6042,127.656,-329.8657
+783.0391,122.888,-668.6985
+468.967,149.2594,-286.3376
+783.0184,124.364,-668.9111
+785.8456,121.412,-669.811
+759.687,151.7169,-692.1284
+471.4831,149.2594,-287.9829
+740.0695,152.976,-677.1057
+473.5865,129.085,-323.3926
+503.9663,127.653,-378.3665
+455.259,150.735,-278.3568
+471.237,149.2594,-336.291
+744.0096,142.6653,-694.9421
+477.7062,149.256,-325.1641
+738.4312,144.146,-696.1573
+487.7322,127.653,-331.6089
+739.7939,151.501,-677.1387
+455.6859,149.2594,-278.3307
+455.6859,149.2594,-278.3307
+784.7783,121.416,-668.1001
+455.3048,149.2594,-318.7505
+468.0523,149.256,-333.6337
+739.0337,151.501,-675.3347
+485.845,127.653,-331.4108
+473.5974,149.2594,-334.8938
+738.0577,142.6653,-695.8668
+487.595,129.126,-331.4608
+473.651,127.653,-324.29
+783.8321,121.4124,-669.2279
+784.5084,122.892,-667.7361
+457.6461,149.2594,-278.8455
+483.1762,149.256,-324.8641
+473.8632,127.653,-322.0905
+455.259,150.735,-278.3568
+-564.4438,123.1576,263.0662
+682.6992,118.0934,613.887
+350.2844,165.6678,130.7046
+-565.7426,124.4645,262.9167
+20.00842,1025.604,197.8606
+19.44377,780.9634,424.2592
+19.83472,782.9119,427.9846
+20.18365,1029.454,200.1739
+638.8788,121.04,596.2009
+-444.5461,166.791,-596.1729
+-470.9431,167.3731,-568.713
+-494.6056,166.7366,-565.9998
+-474.796,164.4837,-455.407
+-444.1602,166.9623,-552.9518
+-496.954,165.392,-448.587
+-461.4123,162.5589,-444.4288
+-455.5445,166.7143,-586.4084
+597.8259,121.2023,616.2453
+651.0156,121.04,614.168
+-88.07712,116.5047,614.2364
+-460.6918,168.8573,-463.1507
+-490.9257,171.0922,-590.9075
+-413.3784,176.0303,-603.1486
+-425.7097,176.2018,-615.6909
+609.7794,117.9767,664.0137
+636.9366,119.266,603.1677
+675.6818,119.3707,592.4885
+-592.7735,124.118,288.318
+-542.9519,123.616,268.275
+-528.8295,121.8225,273.4666
+-446.612,124.009,306.7182
+-568.9958,129.5548,244.7091
+-551.9074,123.9558,265.6353
+-561.7656,125.4558,260.9907
+-555.4365,122.9758,280.2874
+-22.71031,119.0288,580.4573
+-7.315643,122.1327,557.6993
+654.887,117.95,623.1364
+-489.4579,168.8965,-496.0149
+-456.9687,170.3214,-542.5225
+-515.551,168.8816,-517.5732
+-440.5114,170.1762,-585.5415
+-497.6325,168.4445,-470.9382
+-460.5234,170.3654,-567.4639
+-512.2452,168.4426,-468.7477
+609.4956,118.0556,647.5838
+-16.52814,118.1951,588.375
+-7.969017,121.8297,547.6452
+759.8854,122.0978,-729.6474
+758.7454,122.4238,-729.2325
+759.5047,122.4092,-729.4545
+759.0762,122.4106,-730.2196
+759.4073,122.3835,-730.3771
+761.7307,122.3897,-732.5446
+761.165,122.3856,-732.623
+760.2078,122.3174,-732.5289
+760.4149,122.2625,-730.1795
+757.7387,122.3431,-729.3641
+758.0073,122.3744,-728.8892
+761.2742,122.2847,-734.1998
+760.3652,122.3793,-731.6206
+460.5131,128.0181,-352.5181
+458.9824,128.487,-353.3558
+459.9432,128.466,-352.7463
+460.3629,128.468,-353.9357
+460.8475,128.429,-353.7274
+465.3952,128.438,-353.2751
+464.9429,128.432,-353.9606
+463.9324,128.334,-354.9057
+461.5906,128.255,-352.4513
+458.1689,128.371,-354.5685
+457.9107,128.416,-353.8275
+466.7501,128.287,-355.3398
+463.1005,128.423,-353.8731
+734.3327,123.4563,-639.0795
+734.5383,123.9253,-640.8123
+734.3317,123.9043,-639.6934
+735.5917,123.9063,-639.7482
+735.5795,123.8673,-639.2208
+736.858,123.8763,-634.8332
+737.325,123.8703,-635.5088
+737.8244,123.7723,-636.7991
+734.6731,123.6933,-638.055
+735.3595,123.8092,-642.0198
+734.5757,123.8543,-641.9826
+739.2792,123.7253,-634.3472
+736.5558,123.8613,-637.1852
+759.0956,122.9281,-695.5198
+757.7411,123.397,-696.6198
+758.5762,123.376,-695.8471
+759.2035,123.378,-696.9413
+759.6426,123.339,-696.6491
+764.0343,123.348,-695.3845
+763.7129,123.342,-696.1403
+762.8893,123.244,-697.252
+760.1435,123.165,-695.2599
+757.1594,123.281,-697.9592
+756.7719,123.326,-697.2769
+765.7391,123.197,-697.1711
+761.8849,123.333,-696.3863
+735.4123,123.1081,-677.7529
+734.1729,123.577,-676.5247
+735.031,123.556,-677.2718
+734.0107,123.558,-678.0132
+734.3484,123.519,-678.4183
+736.0786,123.528,-682.6483
+735.2926,123.522,-682.4102
+734.0986,123.424,-681.7111
+735.7835,123.345,-678.7667
+732.7786,123.461,-676.0906
+733.4153,123.506,-675.6319
+734.4858,123.377,-684.5356
+734.8512,123.513,-680.6193
+711.3206,123.4563,-639.2102
+709.7172,123.9253,-638.5219
+710.7895,123.9043,-638.9024
+710.1121,123.9063,-639.9662
+710.5748,123.8673,-640.2193
+713.7354,123.8763,-643.5203
+712.9169,123.8703,-643.587
+711.5497,123.7723,-643.3743
+712.0377,123.6933,-640.0172
+708.2609,123.8092,-638.6293
+708.685,123.8543,-637.9691
+712.9456,123.7253,-645.8602
+711.8495,123.8613,-642.0827
+766.7855,122.0978,-724.5474
+765.6454,122.4238,-724.1325
+766.4047,122.4092,-724.3546
+765.9762,122.4106,-725.1196
+766.3073,122.3835,-725.2772
+768.6307,122.3897,-727.4446
+768.0651,122.3856,-727.523
+767.1078,122.3174,-727.429
+767.3149,122.2625,-725.0795
+764.6387,122.3431,-724.2642
+764.9073,122.3744,-723.7892
+768.1742,122.2847,-729.0999
+767.2653,122.3793,-726.5206
+744.3716,123.4563,-719.996
+742.7545,123.9253,-719.3405
+743.8343,123.9043,-719.699
+743.1786,123.9063,-720.7765
+743.6465,123.8673,-721.0201
+746.8737,123.8763,-724.256
+746.0566,123.8703,-724.3393
+744.6855,123.7723,-724.1545
+745.105,123.6933,-720.7882
+741.3007,123.8092,-719.4775
+741.7112,123.8543,-718.8088
+746.1318,123.7253,-726.6115
+744.9589,123.8613,-722.8571
+740.9201,123.4563,-728.2556
+739.1915,123.9253,-728.0176
+740.3263,123.9043,-728.0998
+739.9556,123.9063,-729.3054
+740.469,123.8673,-729.4265
+744.3926,123.8763,-731.7698
+743.6211,123.8703,-732.0515
+742.2466,123.7723,-732.2094
+741.8257,123.6933,-728.8432
+737.8159,123.8092,-728.5079
+738.0496,123.8543,-727.7587
+744.2524,123.7253,-734.2354
+742.1927,123.8613,-730.8845
+65.93169,116.432,4.839985
+-126.8788,116.5926,178.2099
+190.5753,119.451,-48.72269
+-198.9342,208.8641,110.9351
+-253.0635,112.0896,160.9929
+-142.2405,115.8185,187.2122
+-81.6577,171.853,165.1879
+-96.80207,130.0363,195.8985
+-158.3058,115.5368,209.4237
+324.5548,110.3214,-783.4592
+-566.0308,113.2245,168.8354
+-107.0615,164.825,156.1092
+-122.3251,133.3991,157.3845
+36.41497,116.461,-82.23598
+-464.4707,114.1524,-104.6871
+-213.631,112.4634,132.4906
+-723.4166,115.3382,402.0475
+-31.34607,137.2038,185.6501
+-220.9259,136.7993,189.3654
+-126.291,158.4254,174.5501
+102.9967,116.4402,-30.895
+-142.3809,156.9089,187.635
+7.583351,116.4244,-69.10608
+142.545,116.521,-91.94403
+-147.6453,112.003,185.7597
+-154.3659,133.6849,191.5862
+-88.33463,131.0724,165.7976
+-141.1403,134.8837,179.5139
+-195.8328,111.5868,-10.23853
+-21.92999,118.1408,618.3314
+-40.05505,122.7197,-433.5326
+-128.5673,130.2531,182.6436
+-150.9988,118.289,210.8676
+-95.50864,131.8775,199.1684
+-152.674,115.1276,197.1923
+99.49664,116.4403,-30.895
+62.1396,116.561,-29.37727
+-346.1841,127.3175,630.8812
+57.26601,119.061,-12.53498
+-213.6063,208.8555,132.4369
+101.885,116.471,-85.36414
+-156.3385,141.2773,218.5376
+49.9859,116.471,-40.97498
+-158.321,152.9872,209.5041
+-272.6582,128.5823,-79.46881
+-118.6716,162.631,129.3901
+-103.5801,139.5984,175.2417
+-218.3647,117.35,130.9999
+387.0747,128.2537,21.71826
+200.0978,128.3844,500.9885
+-95.28886,130.5399,192.5149
+-201.5345,143.6211,209.8585
+-70.12284,159.1543,119.0736
+-73.04087,133.6071,152.5168
+-378.0822,129.0324,630.4961
+94.61093,117.5041,-30.89501
+-93.11194,131.3327,230.7046
+281.4005,139.4351,-480.5216
+86.70511,116.471,-10.09004
+-102.2998,113.0668,-369.551
+-23.08136,125.0521,-653.0738
+-81.29954,137.4855,200.6314
+119.5139,116.461,-57.68427
+-151.1791,153.4607,212.411
+7.436005,119.111,-23.23495
+-218.0126,213.5566,129.9391
+-73.48284,164.7622,151.7022
+-18.14136,122.9688,-667.0646
+-17.9798,123.7699,626.4837
+-110.7647,164.8964,73.83588
+396.4363,126.1661,-19.38715
+-110.5946,130.4264,131.953
+192.9859,122.411,-121.5152
+-172.6436,136.7982,205.3302
+-85.33372,129.9946,233.4644
+-127.3141,156.7027,177.5181
+-104.4034,118.1874,136.0096
+-770.9323,115.4299,344.6779
+11.16699,127.5979,-336.3398
+-77.49562,127.3795,208.2938
+74.98207,117.9125,-31.56271
+-110.4925,117.5686,73.68054
+-112.0267,133.9161,171.9552
+-86.75348,168.6186,164.601
+-78.27413,143.627,113.2082
+-27.57776,131.1607,337.0953
+-104.3618,159.8017,135.8534
+-416.467,125.0415,443.1057
+11.54562,116.471,-72.93081
+-107.7901,166.3591,168.6741
+268.2416,122.4101,-635.4026
+-159.2399,135.4977,204.9511
+-77.19296,146.2845,146.5112
+-205.8711,121.0766,443.9749
+181.5712,116.4988,-72.97002
+-95.91264,166.6347,193.0029
+-124.9815,117.5176,175.3487
+80.03099,117.524,-46.41503
+-93.98647,129.0738,192.9798
+-135.7542,161.3763,175.9157
+-79.40198,141.9475,173.9443
+-158.2526,123.9181,348.1494
+-145.6175,135.0111,191.0206
+63.16502,119.111,17.49603
+-97.03253,166.6156,195.9562
+54.175,116.471,-8.883976
+-197.5946,114.8797,111.4823
+-93.06853,164.8726,230.4166
+92.85602,116.461,5.425014
+-123.6314,129.122,127.8812
+-152.5482,153.7507,197.2285
+72.73896,120.185,-57.81602
+-222.0387,138.1408,194.2487
+-125.8367,131.676,179.3286
+-79.80852,168.2477,200.8666
+100.075,120.254,-29.93103
+157.425,122.371,-100.064
+-107.4412,125.1858,167.8208
+278.993,124.645,-623.8644
+-147.5356,153.1814,185.8128
+-103.9297,111.1155,763.2611
+-83.07167,131.2835,163.741
+179.2751,119.111,17.49597
+-70.00378,134.5967,119.2163
+-107.8828,119.8243,153.2483
+-118.2101,113.3878,131.2732
+-135.5746,117.1863,175.4339
+-127.8054,112.8487,-356.9582
+657.9391,118.04,587.2972
+-516.5269,165.8976,-515.9525
+-458.9283,167.4533,-543.168
+-490.5072,165.9095,-494.4467
+617.3687,117.92,646.0215
+-80.44717,117.7477,608.7404
+-64.40031,118.1015,608.4611
+-7.702774,116.4471,593.1794
+-79.10261,117.9998,599.8007
+-10.85421,117.9858,581.6933
+477.8654,154.9903,29.39645
+727.7632,134.6908,5.673355
+653.6151,117.95,617.3783
+-510.1528,168.4396,-466.0894
+-463.3906,170.2553,-569.2562
+-500.2923,168.4415,-468.8477
+-437.6411,170.2025,-583.751
+674.9664,119.3302,593.2178
+608.8539,117.5486,663.9397
+635.9253,119.1613,603.0606
+658.3954,119.339,584.4556
+-344.6239,131.8399,552.4465
+152.98,147.0164,388.8813
+413.6089,126.0762,-688.864
+-251.5606,139.4836,-103.1216
+305.4764,149.3612,126.5524
+-713.9944,121.239,100.3535
+108.6656,139.682,-369.5123
+-170.825,133.0913,505.7953
+-358.1188,132.7542,560.78
+-166.6185,132.6432,523.4795
+131.3427,136.7281,439.8876
+449.4628,136.5929,-163.8436
+204.1775,125.0643,85.28613
+227.2102,143.4136,-564.2823
+-126.0408,145.4092,-723.6268
+-760.6364,124.0139,131.3348
+-765.1039,124.5306,141.9531
+143.7905,139.9278,421.0013
+-138.1625,132.954,524.5602
+-380.3894,129.5447,361.8828
+124.8765,141.4772,389.594
+582.5491,124.6714,-505.9379
+-733.2677,123.0144,140.5481
+300.9436,162.2328,390.8833
+223.2891,146.9764,-544.8801
+-351.7402,135.5993,92.75854
+173.9266,142.6943,-368.0652
+145.3543,143.7957,-394.1908
+361.2202,134.2759,-179.5223
+-157.7449,130.0428,502.6974
+136.0582,139.5011,-334.3764
+-306.7783,137.1556,78.39709
+-258.8852,139.222,-84.11963
+164.7422,143.4016,-385.7888
+224.515,147.7649,-525.2311
+110.9315,139.1426,-349.5235
+-356.0293,135.4058,572.6864
+564.8092,126.8705,-502.2383
+-328.6663,133.8344,84.20288
+129.066,138.0828,417.6997
+446.9188,139.7044,-187.5953
+339.8228,131.5991,-96.19611
+-546.3273,121.8636,283.412
+-555.5807,124.3436,268.3723
+-440.2849,121.7035,317.3922
+-570.2017,127.4268,257.0906
+-542.633,122.8436,263.0419
+-536.1049,122.8094,266.899
+-525.491,121.0829,278.9313
+-600.6768,123.3224,298.1255
+-91.90724,117.6414,600.657
+631.6269,130.7817,613.0211
+636.9802,131.7631,621.8323
+627.0881,131.1196,604.462
+689.3658,130.551,566.4976
+478.6546,167.6161,26.59219
+-635.6288,129.6249,288.3634
+-633.4065,127.6807,286.4417
+-487.7338,119.261,333.4085
+-486.8338,167.8942,-563.2942
+-482.7624,165.5058,-436.411
+-485.0876,167.9031,-563.0139
+-9.608841,121.8035,556.9701
+-20.38901,118.8847,579.7575
+664.5363,118.03,579.7733
+80.03099,118.274,-47.66502
+-126.1303,116.6426,175.5478
+-95.41835,129.3471,192.9747
+-206.7665,121.5032,442.9065
+-75.97178,145.7946,147.1386
+-158.2567,135.3076,203.8918
+-97.44627,166.3951,193.2659
+182.1712,116.4988,-71.97002
+-417.2461,125.168,441.8801
+11.00437,116.471,-74.28435
+-106.4194,167.0685,168.3634
+267.9482,122.1888,-636.8133
+-87.726,167.6668,163.8093
+-109.6008,118.0067,74.74727
+-111.0309,134.4416,171.0293
+-104.2367,160.3041,137.3402
+-78.45269,142.8485,114.4277
+-27.953,131.1489,335.6868
+-104.1716,117.7811,137.3903
+10.61279,127.6146,-337.688
+-78.11088,126.7421,209.4514
+74.23692,118.483,-32.67818
+-769.7548,115.5354,343.8251
+192.2359,122.411,-122.7652
+-173.8772,137.0962,206.0475
+397.4913,126.2912,-18.3891
+-109.9713,130.7628,133.2271
+-128.7825,156.214,177.8072
+-84.9464,130.2573,234.845
+-18.46399,122.8595,-668.4819
+-19.34747,123.5919,626.9556
+-109.6131,164.8259,74.90701
+-126.735,112.7841,-357.9457
+-117.8243,112.4221,132.2949
+-70.02793,133.6671,120.3388
+-107.3547,118.6137,152.6313
+-136.7821,116.4077,175.6805
+-104.5385,111.199,761.9392
+-81.713,131.7135,164.0477
+180.5251,119.111,16.74597
+158.675,122.371,-100.814
+-127.0559,130.8888,179.1909
+-80.38458,167.5206,202.1386
+98.82503,121.004,-29.93103
+277.7585,124.6604,-623.0892
+-147.789,153.0771,184.2625
+-106.0115,125.4702,167.8321
+72.73896,118.935,-57.06602
+-222.0022,136.8794,194.9785
+-123.2514,128.864,129.2647
+-92.9744,164.8022,231.9866
+92.10602,116.461,4.175014
+-152.6531,153.8609,198.7954
+-98.56379,166.3359,196.192
+64.41502,119.111,16.74603
+55.42501,116.471,-9.633974
+-196.8339,114.7498,110.2455
+-136.9644,160.398,176.1544
+-159.6003,123.7194,348.6683
+-147.0605,134.9918,191.227
+-78.12386,141.2466,173.9325
+-21.56093,118.1651,616.9213
+-39.53589,122.7516,-432.1708
+-130.0143,130.3627,182.7822
+-142.0071,133.7117,179.5171
+-196.8234,111.8912,-11.26379
+6.888008,116.4244,-70.26496
+143.795,116.521,-92.69403
+-155.5648,132.8567,191.6297
+-88.97237,129.9895,165.0589
+-147.8918,111.9173,184.3255
+-465.467,114.2332,-103.6261
+-213.273,111.9394,133.803
+-127.567,157.5545,174.8531
+102.2467,116.4402,-32.145
+-143.9031,156.7543,188.0058
+-724.6192,115.2899,402.8701
+-31.90033,138.4684,186.1178
+-221.9522,137.473,190.1514
+35.16497,116.461,-81.48598
+323.5551,109.914,-784.4388
+-158.365,115.0555,208.049
+-107.1159,164.9627,154.5418
+-123.2796,133.3392,156.2843
+-566.6257,113.5286,170.131
+-143.6374,115.9029,187.6202
+-80.48761,172.7956,165.6578
+-98.21552,129.7269,196.0757
+-127.9822,115.7319,178.6179
+65.2719,116.432,3.740349
+-198.3188,209.1565,109.5158
+-253.8454,111.8753,159.7815
+191.8168,119.451,-49.48668
+-72.3075,164.5175,152.7207
+-81.09488,137.0983,202.0217
+-216.5426,213.161,129.5373
+120.2639,116.461,-56.43427
+-149.6112,153.379,212.2931
+6.686005,119.111,-24.48495
+-101.8403,113.0214,-370.9337
+-23.7677,125.2094,-651.7974
+282.1687,139.5501,-481.7551
+-92.97983,131.2181,232.1518
+87.45511,116.471,-8.840038
+-71.77621,133.4,153.2115
+-378.4246,129.0808,631.9122
+94.61093,118.2541,-32.14501
+200.6968,128.3415,502.3168
+385.6271,128.2424,21.54688
+-96.60411,130.8783,191.9851
+-200.1036,143.8994,209.8717
+-70.45976,158.5679,120.4953
+49.2359,116.471,-42.22498
+-158.5147,153.233,207.9612
+103.135,116.471,-86.11414
+-157.0958,140.9682,217.3309
+-216.9549,117.2193,130.653
+-273.5463,128.5916,-80.62482
+-117.5261,162.5259,130.4651
+-103.25,140.177,173.9451
+-347.2092,127.3626,631.9166
+62.98859,116.561,-30.56226
+-213.2372,208.61,133.9476
+56.51601,119.061,-13.78498
+-96.80996,132.1281,199.7756
+-149.8213,117.7766,211.5574
+-152.6954,115.4324,198.6177
+98.74664,116.4403,-32.145
+748.4365,151.657,-687.7053
+438.574,149.412,-317.059
+449.7426,149.4154,-340.292
+733.901,142.8213,-681.0566
+733.411,142.8213,-681.9166
+504.9636,127.9254,-375.8443
+455.794,149.412,-291.089
+499.6451,126.54,-378.836
+502.5081,126.8956,-378.4482
+762.7059,120.5657,-721.7516
+762.154,122.1901,-646.2254
+734.3223,142.8213,-682.6213
+763.9529,122.1878,-644.4623
+764.1564,120.5657,-720.8899
+465.904,149.312,-294.119
+439.824,149.412,-298.939
+464.794,149.412,-293.779
+448.254,149.412,-292.779
+465.124,149.412,-295.359
+426.3167,149.4154,-322.5941
+504.6078,126.277,-380.7156
+425.1557,149.4154,-319.5878
+454.7515,149.4154,-319.3462
+446.5889,149.4154,-339.5219
+763.7272,120.5657,-722.0541
+747.524,151.732,-688.369
+438.654,149.412,-315.749
+506.7254,127.9934,-379.9628
+446.844,149.412,-292.729
+747.294,151.657,-687.1591
+443.3732,149.4154,-331.7918
+765.047,122.1583,-647.3384
+475.4283,127.8091,-320.4313
+426.4926,149.4154,-320.2041
+761.7162,120.5657,-720.9877
+460.4395,149.2954,-302.4863
+438.6795,149.2954,-282.1251
+464.854,149.2954,-311.0523
+501.7651,125.9923,-381.0767
+434.2589,149.2954,-284.8509
+501.8503,127.689,-375.7247
+493.2644,127.689,-323.4935
+756.2873,120.4457,-727.4747
+494.6641,127.689,-329.7743
+436.2502,149.2954,-283.4601
+-480.9335,118.724,312.6641
+679.6776,148.91,-576.4739
+678.0156,152.09,-583.5118
+678.924,152.09,-582.1922
+677.0502,152.09,-582.117
+677.7097,152.09,-580.5663
+675.2165,148.86,-580.165
+676.1891,148.86,-578.1349
+676.8156,148.86,-579.006
+681.8864,148.86,-574.9991
+681.5169,148.86,-574.0298
+685.2784,148.86,-570.5473
+686.4985,152.08,-576.5596
+685.2213,152.09,-574.8508
+684.2916,148.86,-571.4405
+685.5585,148.86,-571.239
+687.189,136.3566,-586.6404
+685.4103,136.835,-582.7583
+684.163,129.49,-582.5661
+683.5149,129.49,-581.9821
+683.5034,129.49,-582.7462
+696.9879,140.8,-596.1467
+687.8655,141.02,-590.3856
+681.6446,141.02,-583.3608
+684.3174,141.01,-585.8306
+-448.5836,176.3947,-556.3928
+-479.6015,173.735,-451.987
+-475.5506,176.6538,-572.3209
+-500.3832,175.0746,-570.1799
+-448.3546,175.6968,-591.0193
+-450.8377,175.9103,-582.713
+-465.4315,171.5217,-439.541
+-500.1931,174.5942,-453.6075
+-511.5645,166.0334,-504.5795
+-487.8202,166.3634,-517.2905
+-446.5305,166.5507,-539.8976
+-508.6553,166.7036,-524.8829
+-466.6412,167.0772,-600.5532
+-499.4001,165.7795,-461.8735
+-490.821,170.0285,-492.4238
+-516.9355,170.0419,-513.9993
+-460.7556,171.6232,-542.5123
+-429.7513,166.6737,-546.0057
+-497.8168,165.8825,-505.7667
+-518.0916,165.8563,-478.5819
+-450.7553,170.5142,-561.3988
+-453.6848,170.0572,-605.2595
+-460.8163,170.0769,-597.2203
+-478.662,168.7438,-486.4301
+-450.7073,170.1004,-597.7993
+-504.8037,168.7755,-460.4086
+-469.8678,170.0732,-605.1285
+-416.3974,176.3638,-609.8224
+-469.5497,169.7191,-469.6297
+-487.65,171.2624,-601.4158
+-405.5417,176.3405,-595.4237
+-425.4005,164.9319,-531.8154
+-475.4937,165.9367,-512.4877
+-522.7543,166.0422,-489.2696
+-423.4385,173.5997,-606.2407
+-482.3579,168.5467,-595.528
+-412.9688,172.9523,-593.5781
+-462.5068,166.4455,-472.7488
+-476.2791,168.1324,-557.7634
+-426.8669,164.842,-530.7376
+-475.4475,165.8996,-510.6666
+-524.5749,166.0122,-489.2032
+-449.6384,170.9415,-573.9978
+-17.91885,128.4179,-568.0693
+-20.84798,130.7934,-575.4487
+-20.24868,126.7967,-575.2941
+-11.31805,125.3604,-572.2979
+-15.26687,127.9284,-573.3779
+-18.95026,133.2474,-572.5914
+-16.38942,130.501,-572.187
+-12.67558,129.0395,-570.7975
+-18.68575,130.5046,-573.3327
+-16.70855,132.6884,-571.6498
+-18.07053,128.2092,-570.2261
+-21.61355,125.7811,-572.653
+-20.75013,126.1529,-572.1033
+-22.02255,125.9668,-572.7982
+-19.46421,134.1855,-567.7752
+-13.70298,123.327,-568.3555
+-17.87095,127.6115,-570.3167
+-22.31549,134.855,-569.4167
+-21.60587,134.7855,-569.0844
+-16.79455,133.1886,-568.8991
+-15.03842,133.1232,-565.903
+-14.1589,127.1306,-567.3721
+-16.98994,128.5306,-568.3401
+-17.25693,127.946,-568.6597
+-12.22511,133.5952,-567.3137
+-0.9959087,127.26,-512.7736
+2.031762,129.0001,-520.2891
+2.144108,132.2234,-517.8489
+-6.594373,133.371,-514.227
+-3.094166,131.1782,-516.7358
+-0.4907678,125.7733,-519.283
+-2.544843,128.2285,-517.2787
+-6.035995,129.3154,-515.1598
+-0.2033575,128.4395,-518.3077
+-2.663711,126.1124,-518.1049
+-0.641031,128.6252,-514.4254
+3.457006,131.2725,-515.1578
+2.500795,130.8271,-514.8875
+3.836452,131.1285,-515.3989
+-0.5310379,122.1843,-515.8981
+-4.201452,132.2992,-509.927
+-0.7231684,129.193,-514.1493
+2.274939,122.039,-517.736
+1.565259,122.0408,-517.3967
+-2.883937,124.1306,-516.1434
+-4.829464,122.813,-513.5852
+-4.509128,128.6102,-511.3194
+-1.905934,127.5011,-513.0239
+-1.514846,128.0996,-512.9608
+-7.5626,123.7749,-514.9015
+-404.8752,168.3874,5.659836
+-409.1746,173.6261,10.42941
+-411.317,172.4298,7.21443
+-405.9752,173.9906,-0.5202646
+-406.9676,173.7686,4.204168
+-404.9861,173.1348,10.38071
+-405.2018,173.1438,6.610089
+-403.4442,173.3821,2.774271
+-407.0276,172.9161,8.399098
+-403.6599,173.3075,8.274591
+-406.35,169.959,5.930279
+-411.0973,169.298,7.098379
+-410.1044,169.4169,6.667294
+-411.2706,169.274,7.536819
+-401.8224,169.3632,10.7065
+-406.1504,168.9655,-0.8063664
+-406.6818,169.9254,5.388029
+-403.7962,169.4831,13.41987
+-403.2881,169.5473,12.82276
+-401.7711,171.2445,8.289381
+-399.1701,169.7078,6.57521
+-403.3903,169.2599,2.010958
+-404.4953,169.1039,5.120132
+-405.188,169.0251,4.949341
+-398.2833,172.393,5.115326
+-15.83323,129.862,-539.6678
+-13.13685,125.0854,-533.4556
+-11.5816,123.9372,-537.008
+-18.84474,122.778,-543.066
+-16.69083,124.0172,-538.9212
+-16.57222,127.5319,-533.4338
+-17.34507,126.1811,-536.8751
+-19.9443,125.5979,-540.1559
+-15.2102,126.0506,-535.457
+-18.33061,127.3562,-535.195
+-15.15812,127.957,-538.8719
+-10.46095,126.5303,-538.3828
+-11.48245,126.7829,-538.6629
+-10.1892,126.608,-538.0046
+-17.61942,132.2379,-534.4808
+-16.61421,126.6457,-545.3964
+-14.9934,127.6424,-539.4003
+-15.27054,132.0577,-532.0886
+-15.89017,132.0608,-532.5731
+-19.08213,129.9548,-535.9063
+-21.11526,131.9137,-537.9297
+-18.42006,128.6947,-542.5359
+-16.60635,129.2952,-539.8411
+-16.01511,128.9608,-540.073
+-23.40411,129.7093,-538.1014
+15.30348,129.21,-540.9092
+16.75983,129.8448,-549.0427
+16.93504,133.4443,-547.207
+8.88972,134.4985,-542.2112
+12.12148,132.1902,-544.9648
+14.82833,126.6511,-547.0788
+12.89397,129.2453,-545.1313
+9.7267,130.4008,-542.5833
+14.98154,129.4613,-546.6083
+12.87015,127.0145,-545.5762
+15.20988,130.2887,-542.7922
+18.79521,133.0892,-544.7004
+17.95671,132.6222,-544.1859
+19.14046,132.9364,-544.9837
+15.7807,123.7197,-543.2266
+12.10067,134.3941,-538.3326
+15.1142,130.8875,-542.5984
+18.22142,123.4818,-545.5198
+17.58613,123.4858,-545.0559
+13.21848,125.3961,-543.3216
+11.90874,124.3944,-540.2645
+11.96924,130.5056,-539.0424
+14.34258,129.3291,-541.0161
+14.66927,129.959,-541.1238
+8.89776,124.8864,-541.1698
+-8.658304,130.2838,-553.4089
+-10.0677,135.4639,-547.0956
+-7.922197,132.2387,-545.9329
+-12.64586,124.4778,-548.8057
+-11.71692,129.2043,-548.4156
+-12.21493,135.2801,-550.7209
+-12.2123,131.5233,-550.3322
+-13.58894,127.6652,-551.3711
+-10.86834,133.3412,-549.1178
+-13.2228,133.1551,-551.5534
+-9.006301,130.6845,-551.3027
+-5.568619,131.931,-547.991
+-6.278242,131.4828,-548.6848
+-5.430552,132.3715,-547.8923
+-11.1211,135.3008,-555.5317
+-8.553073,123.8978,-551.6828
+-8.796051,130.1498,-551.0286
+-9.934238,138.0655,-554.0417
+-10.31212,137.4606,-554.3735
+-12.72555,132.9993,-554.3015
+-13.13359,131.1315,-557.2015
+-10.36822,126.6569,-553.8586
+-9.475375,129.7783,-553.2485
+-8.998814,129.6207,-552.7355
+-15.85254,129.812,-556.2045
+-30.36809,124.2347,-562.6087
+-36.51327,129.608,-561.1801
+-35.01044,130.0133,-564.9129
+-25.56578,130.9808,-564.1011
+-30.08197,130.182,-562.5778
+-34.22716,127.5768,-558.2757
+-31.17319,128.4474,-560.3201
+-26.99018,128.7849,-560.818
+-33.6718,128.5691,-560.8928
+-31.73378,127.6619,-558.2601
+-31.33592,126.1574,-562.8994
+-34.90631,127.1323,-566.1614
+-34.00322,126.9497,-565.5809
+-35.36938,127.0861,-566.0823
+-32.92696,122.9043,-557.372
+-25.59976,126.5801,-566.55
+-31.06049,126.366,-563.4341
+-36.27025,123.2042,-557.4429
+-35.49146,123.1917,-557.3328
+-30.7997,125.0795,-557.7289
+-28.00834,123.0571,-557.3007
+-26.46684,125.2089,-562.9431
+-29.68343,124.8467,-562.2838
+-29.91685,125.0755,-562.9228
+-26.20575,125.4395,-556.2042
+9.697072,1037.8,197.7
+21.63719,1039.861,218.3828
+11.67307,1045.989,218.5124
+11.53486,1062.015,196.0896
+16.28648,1052.087,204.7064
+26.25292,1036.358,207.6478
+20.72258,1044.628,203.1356
+18.2908,1052.178,193.8346
+20.2313,1041.546,209.8708
+25.50129,1040.345,201.6802
+11.40892,1041.035,202.8065
+5.130068,1040.393,215.6046
+6.141822,1040.894,212.6641
+5.452684,1039.518,216.6019
+22.98913,1026.739,197.6241
+0.1749067,1053.594,192.5905
+10.12759,1042.356,202.8744
+24.32489,1022.397,206.2075
+24.32517,1023.47,204.2009
+23.70486,1035.333,195.5885
+21.59694,1034.539,185.7972
+8.505981,1046.279,189.7692
+10.99353,1040.02,196.5466
+9.6397,1040.693,197.9694
+26.50512,1041.996,183.5521
+-28.41848,126.94,-527.637
+-22.98122,132.2856,-530.8834
+-21.33302,130.0986,-527.9072
+-27.04034,130.8474,-520.3136
+-25.68078,131.4696,-524.9091
+-27.18396,132.4941,-531.1676
+-27.30171,131.6689,-527.4839
+-29.33425,131.3768,-523.7903
+-25.38039,131.5266,-529.1793
+-28.64941,132.4337,-529.1494
+-26.70719,128.2674,-527.4716
+-22.02807,127.0936,-528.5043
+-23.026,127.281,-528.1108
+-21.82249,127.1347,-528.9272
+-30.83525,129.4527,-532.4936
+-27.64474,125.9173,-521.1465
+-26.43309,128.0655,-526.9337
+-28.6349,129.8165,-535.0033
+-29.17815,129.8359,-534.4347
+-30.81686,130.7617,-529.724
+-33.75904,129.3484,-528.5361
+-30.07117,127.2534,-523.9695
+-28.73292,127.5787,-526.972
+-28.07755,127.3522,-526.7866
+-34.35903,131.7724,-526.5633
+-39.91569,129.579,-540.8657
+-44.89764,134.5785,-536.5226
+-41.33137,134.0594,-534.6871
+-39.79644,124.6783,-534.0269
+-42.0952,128.7034,-535.3942
+-46.0715,131.8334,-539.5015
+-43.74379,129.3409,-537.8787
+-42.27132,125.4168,-537.3374
+-43.97485,131.8776,-537.5664
+-45.42661,129.4251,-539.407
+-40.64799,130.3925,-538.9895
+-39.11723,134.5693,-536.8567
+-39.312,133.5697,-537.2422
+-39.29805,134.9984,-536.9341
+-44.75764,130.8161,-544.1468
+-35.98844,125.7828,-537.1323
+-40.17699,130.2453,-538.5873
+-45.7335,134.0169,-543.8725
+-45.61049,133.2414,-543.9199
+-44.6689,128.6476,-541.9848
+-43.51571,126.0565,-543.9901
+-38.9048,125.8199,-539.8035
+-40.24312,128.7761,-540.4216
+-39.82837,129.1428,-539.9648
+-44.88029,123.8035,-542.204
+-11.01608,133,-588.8408
+-7.80092,130.2399,-595.9627
+-11.79796,130.7906,-596.2408
+-15.83866,126.1066,-588.9931
+-12.20796,127.8828,-591.6422
+-6.047832,129.9529,-592.1376
+-9.431925,128.8699,-590.8572
+-11.93953,127.2065,-587.89
+-8.738192,129.9315,-593.0883
+-7.253853,128.937,-590.2042
+-11.147,131.8621,-590.6863
+-12.39447,133.6595,-595.108
+-12.30012,133.2466,-594.1048
+-12.09477,133.8418,-595.4239
+-5.052822,133.0372,-588.4177
+-17.12085,130.7729,-587.5982
+-11.77593,131.7918,-590.7554
+-3.553699,134.071,-591.2385
+-3.83316,133.7454,-590.5791
+-6.780746,130.5481,-587.9672
+-7.394446,131.0299,-584.5825
+-13.36322,130.8438,-586.3665
+-11.17948,132.1012,-588.5024
+-11.65573,132.2462,-589.0195
+-7.758198,127.9217,-584.0042
+-22.20492,142.72,-558.5664
+-18.11028,136.1827,-555.5374
+-16.57714,137.3983,-559.077
+-23.78547,137.9111,-565.2877
+-21.69149,137.299,-560.9755
+-21.99411,137.4302,-554.4664
+-22.67335,137.899,-558.1519
+-25.28913,138.5128,-561.4138
+-20.47386,137.5431,-556.8785
+-23.78201,137.7921,-556.1683
+-21.07243,140.8842,-558.8221
+-16.15388,140.5035,-558.8582
+-17.22221,140.6275,-559.0287
+-15.8818,140.4353,-558.4785
+-24.12739,141.6338,-553.0108
+-22.62885,142.8114,-565.1682
+-20.87724,140.9308,-559.4263
+-21.64429,140.7859,-550.9161
+-22.27976,140.8976,-551.366
+-25.13734,140.1427,-555.4888
+-27.68399,142.3474,-556.3368
+-24.65161,142.6409,-561.7739
+-22.84255,142.1655,-559.0511
+-22.20845,142.1395,-559.3864
+-29.43221,140.0944,-557.7495
+-33.02972,139.3431,-561.7853
+-30.73336,141.302,-569.5033
+-30.28524,144.4244,-566.9721
+-38.5762,145.6371,-562.4349
+-35.41036,143.4611,-565.3671
+-33.22876,138.0993,-568.3619
+-35.00045,140.5227,-566.07
+-38.22732,141.6087,-563.5666
+-32.77052,140.718,-567.3251
+-35.2608,138.4436,-566.9559
+-32.80676,140.7628,-563.4141
+-28.7328,143.3386,-564.4659
+-29.66856,142.9058,-564.1155
+-28.38388,143.1952,-564.7497
+-33.0243,134.3833,-565.1231
+-35.78982,144.3423,-558.4444
+-32.84479,141.3211,-563.1107
+-30.42434,134.243,-567.2428
+-31.09561,134.2485,-566.8327
+-35.3354,136.3928,-565.0553
+-37.04692,135.0233,-562.3608
+-36.33871,140.7186,-559.9308
+-33.95345,139.6153,-561.9323
+-33.54163,140.2015,-561.8878
+-39.87194,136.1002,-563.3544
+-30.21895,130.2,-579.7136
+-29.48863,124.8289,-573.4449
+-28.85386,123.0489,-577.0207
+-36.28285,125.1368,-582.6106
+-33.51982,125.3594,-578.652
+-31.47606,128.5475,-573.3475
+-33.00464,127.6229,-576.6751
+-35.81528,128.2005,-579.7777
+-31.05481,126.581,-575.3719
+-33.2487,129.142,-574.9995
+-30.40276,128.2073,-578.8689
+-26.80039,124.8497,-578.5731
+-27.62141,125.5253,-578.8081
+-26.49669,124.8049,-578.2145
+-30.40297,133.21,-574.5515
+-32.73973,127.5695,-585.236
+-30.43153,127.8434,-579.3904
+-28.21588,132.045,-572.2861
+-28.80231,132.3149,-572.7356
+-32.82034,131.7913,-575.7876
+-33.91241,134.4152,-577.7845
+-33.24821,130.2559,-582.3784
+-31.17302,130.0332,-579.8178
+-30.80854,129.4669,-580.0662
+-36.94617,133.4555,-577.7283
+-500.1174,166.9256,-484.2099
+-413.9454,167.2282,-530.4209
+-453.3003,166.4711,-489.113
+-473.3919,166.8564,-492.5038
+-456.062,165.0324,-455.739
+-501.4811,168.7766,-462.5874
+-466.683,170.0743,-602.7529
+-434.6326,170.4112,-587.5496
+-466.4094,170.4749,-565.4664
+-497.7435,168.6196,-464.725
+-506.032,168.6176,-468.6412
+-416.3463,176.3475,-607.4792
+-469.4437,169.7102,-471.9711
+-405.9833,176.1746,-593.1278
+-485.3985,171.2619,-602.0676
+-461.0821,170.7727,-579.3365
+-490.7403,168.7274,-473.8778
+-425.0791,170.9392,-579.0302
+-437.627,170.1142,-551.5776
+-480.0595,170.7063,-573.1373
+-472.8614,165.742,-440.2968
+-471.6705,170.6888,-584.7595
+-468.294,167.8891,-459.7981
+-477.515,162.5782,-446.4278
+-492.3623,168.7614,-442.0741
+-471.4046,171.24,-552.5649
+-464.8966,170.0761,-592.6329
+-498.8908,172.3847,-567.1639
+-474.4587,173.5898,-569.4963
+-476.6182,170.6325,-452.168
+-447.5498,173.2616,-553.6227
+-445.455,172.7919,-592.328
+-451.9647,172.8866,-585.5671
+-500.0704,171.5605,-450.5513
+-462.7318,168.2355,-440.2269
+-460.8659,169.0527,-469.675
+-484.8081,171.2736,-593.183
+-414.1436,175.7818,-596.6687
+-425.084,176.3412,-609.1927
+-485.7556,168.5424,-589.4883
+-416.7932,172.9959,-599.3569
+-457.8937,166.0813,-467.5904
+-428.4017,173.6114,-611.0768
+-435.2811,166.939,-544.4854
+-492.1158,165.8605,-505.0895
+-512.3681,165.8328,-478.1336
+-459.6656,167.0973,-596.7511
+-450.2136,167.124,-598.9482
+-479.5542,165.7412,-487.2118
+-450.3879,167.557,-562.6406
+-454.1586,167.0667,-604.1395
+-483.3156,167.2492,-599.0035
+-409.3511,171.8805,-592.912
+-466.1958,165.4319,-472.9588
+-419.8292,172.3147,-606.2814
+-464.8139,167.2175,-462.8299
+-492.5092,169.1366,-594.5753
+-409.2575,174.3642,-602.9875
+-421.7515,174.2637,-616.2913
+-470.3204,173.7059,-607.2045
+-506.9091,172.4082,-460.6943
+-490.181,166.1003,-496.1591
+-457.1994,167.5854,-543.4298
+-516.2077,166.067,-517.6685
+-448.916,167.9449,-574.6664
+276.1928,147.3628,242.3658
+276.301,148.3508,238.2612
+573.9561,135.1368,-3.862244
+275.766,147.215,242.65
+275.7878,147.4268,241.9316
+275.2772,147.2338,242.24
+273.4322,147.9419,237.0591
+573.9464,133.3714,-8.517876
+275.975,148.2902,238.7408
+574.1102,134.4837,-6.303795
+573.7784,133.0928,-9.010872
+276.119,148.2183,238.9836
+276.3756,148.3112,238.7382
+573.3866,133.0486,-9.06813
+273.3563,147.8756,237.3066
+575.0207,135.3191,-3.820412
+276.9479,148.1123,239.8711
+574.7198,134.6098,-6.285728
+273.9887,148.0138,237.1924
+574.7568,134.6004,-6.324249
+573.7784,133.0928,-9.010872
+573.9464,133.3714,-8.517876
+275.3703,148.0562,239.4438
+273.6918,148.0028,236.6819
+276.2504,147.48,241.8415
+576.1896,134.9813,-5.633759
+275.3439,148.0441,239.4896
+273.6918,148.0028,236.6819
+274.7379,147.9179,239.558
+575.5197,134.5158,-6.894806
+575.5991,134.5812,-6.622345
+575.91,134.5651,-6.81662
+273.295,147.976,236.705
+573.2998,133.2547,-8.497414
+273.9887,148.0138,237.1924
+573.4346,133.1999,-8.721451
+573.9716,135.2173,-3.58445
+574.8359,135.4639,-3.333649
+275.1928,147.2976,241.9704
+575.952,134.3645,-7.255661
+574.3484,135.437,-3.118462
+574.5481,135.2788,-3.823151
+276.3105,148.189,239.2126
+573.0865,132.8297,-9.463326
+275.8001,147.511,241.4855
+273.5885,147.9268,237.0217
+273.8444,148.0538,236.8269
+276.596,148.2864,239.3891
+575.969,134.8736,-6.205009
+573.5946,133.1813,-8.710342
+573.8943,133.2192,-8.878662
+574.669,135.1391,-4.237961
+272.8967,147.9642,236.337
+575.7297,134.6809,-6.371353
+-475.6536,173.4355,-575.8356
+-470.5462,167.2884,-435.1596
+-469.0046,173.6226,-580.4668
+-469.2297,170.8896,-464.7239
+-477.9899,167.2136,-449.9533
+-487.3472,171.5933,-443.0598
+-466.8539,173.5849,-555.3818
+-469.2657,172.9013,-589.9739
+-461.6346,166.5054,-447.3807
+-493.3348,168.6789,-449.2469
+-458.7443,169.9866,-584.5669
+-446.5346,170.1429,-599.1976
+-440.8618,170.1842,-554.7062
+-475.3718,167.8582,-458.9594
+-491.824,170.2407,-568.0786
+-467.7075,170.6311,-570.5168
+-456.3127,167.6726,-560.6501
+-448.1888,167.0951,-605.994
+-461.6493,167.0726,-602.6793
+-479.7045,165.8211,-480.9629
+-456.1488,167.059,-596.9868
+-522.7999,171.4359,-516.4578
+-460.3492,173.584,-548.7067
+-496.6462,171.6031,-494.8666
+-425.0719,167.9258,-576.6849
+-437.4249,167.1726,-554.0041
+-492.8973,165.7179,-474.8119
+-460.9312,167.7954,-581.723
+-458.5651,168.8621,-462.771
+-415.4283,176.0876,-603.8276
+-490.604,171.2624,-588.7782
+-427.8507,176.3663,-615.9263
+-498.4008,171.5962,-451.3386
+-463.4795,168.6648,-441.8595
+-453.2769,172.914,-584.2687
+-446.7821,172.8401,-593.6106
+-477.4017,170.7209,-453.8374
+-473.1443,173.617,-570.7925
+-497.5991,172.4852,-568.4792
+-446.2372,173.2841,-554.9208
+-481.7873,165.7078,-436.4555
+-484.1804,168.1134,-563.3694
+-487.7595,168.0378,-562.9535
+-457.4899,173.6977,-559.6844
+-446.831,173.1178,-606.7036
+-462.43,173.081,-604.0613
+-479.5016,171.8576,-479.5
+-457.5745,173.0579,-596.2112
+-462.9107,165.3987,-441.3237
+-499.5144,168.5685,-450.4052
+-452.5314,169.8932,-585.5327
+-445.4307,169.8239,-593.0153
+-447.0746,170.2544,-553.7387
+-476.5422,167.6498,-452.7846
+-473.9224,170.5913,-569.5603
+-497.9767,169.4817,-567.0251
+-466.2334,170.0764,-604.1456
+-502.6357,168.7787,-463.4868
+-452.3791,176.2237,-584.7355
+-499.4141,174.902,-451.1862
+-462.9772,171.6907,-440.2564
+-477.1724,174.0009,-452.7568
+-498.8766,175.6898,-568.2011
+-474.0091,176.9308,-570.2932
+-447.0336,176.6058,-554.3637
+-446.3744,176.1215,-592.5887
+-479.0371,168.1054,-561.2552
+-481.7869,165.9909,-508.9561
+-431.8899,165.6586,-534.8878
+-526.3535,166.0017,-495.5244
+-449.991,167.9535,-569.6364
+-446.0151,170.2917,-556.1724
+-496.9402,169.4592,-569.4688
+-472.8592,170.6088,-571.9926
+-478.4806,167.7491,-454.5956
+-447.8867,169.8101,-594.0227
+-453.5912,169.8968,-583.0988
+-464.8054,165.9653,-443.0945
+-497.7048,168.5848,-452.3473
+-490.8633,168.783,-446.2669
+-480.5114,165.6672,-445.2846
+-472.4974,168.093,-461.253
+-467.2179,170.6662,-584.7811
+-468.4189,165.6808,-440.0007
+-480.0866,170.6393,-577.5894
+-464.8715,170.0693,-588.1803
+-471.4572,170.9958,-557.0107
+-434.4542,169.368,-534.1653
+-483.119,169.6296,-506.539
+-528.773,169.6255,-496.8922
+-434.0207,171.0094,-543.4213
+-492.7143,170.0611,-506.2233
+-513.0115,170.0371,-479.2283
+-464.1876,167.0726,-590.9698
+-472.3449,168.2126,-554.0619
+-480.6825,161.5206,-445.3606
+-492.4598,165.7702,-443.8998
+-480.81,167.6904,-574.7593
+-471.1336,163.0062,-441.6459
+-470.0171,167.6615,-585.3855
+-470.2191,164.9594,-459.7632
+-500.0779,171.6262,-467.2625
+-464.874,173.4293,-568.6036
+-436.2558,173.4014,-584.4915
+-508.5677,171.6242,-466.3049
+-488.6193,169.0047,-500.0084
+-514.7209,168.9417,-521.5693
+-452.9254,170.2877,-543.0817
+-450.7001,173.9333,-572.0027
+-493.1201,174.6646,-449.836
+-461.5472,172.457,-446.4904
+-458.763,175.9695,-583.914
+-447.3296,176.1039,-598.9591
+-475.8182,173.8594,-459.0529
+-492.5123,176.1332,-569.0919
+-467.6269,176.6199,-571.1087
+-440.6603,176.1793,-555.1965
+-413.7329,172.1541,-603.3264
+-490.5935,167.2492,-590.3567
+-460.3642,164.9771,-463.2882
+-426.3143,172.3556,-615.5375
+-531.2238,168.8776,-494.4554
+-480.7218,168.8324,-504.0647
+-435.1471,168.221,-530.8929
+-493.3437,171.5844,-449.6869
+-461.7473,169.3911,-446.837
+-458.5955,172.8906,-584.1423
+-447.0246,173.0273,-598.9218
+-492.3156,173.0757,-568.6758
+-467.8261,173.5406,-570.9119
+-475.7427,170.7726,-458.8919
+-440.9218,173.1019,-555.0516
+-455.7898,169.8382,-608.2599
+-456.2362,170.6444,-576.2916
+-429.8911,170.6068,-582.2695
+-486.2206,168.5675,-477.414
+-426.0768,168.9972,-580.8257
+-436.4897,168.2001,-549.8359
+-488.6793,166.8423,-474.3131
+-459.9764,168.8634,-577.5694
+-464.0419,173.5538,-564.407
+-495.8458,171.6197,-466.6237
+-437.0938,173.3864,-588.6887
+-507.932,171.6178,-470.5375
+-479.9646,165.2001,-450.4071
+-487.0498,168.7669,-442.7721
+-475.3075,170.6089,-575.6107
+-469.201,170.8103,-580.0059
+-470.7445,164.4647,-435.5432
+-469.0409,168.0643,-465.101
+-469.6501,170.0769,-590.1605
+-466.6793,170.7538,-555.0436
+-455.4176,166.8927,-582.4619
+-465.1074,163.3938,-445.5567
+-495.7603,165.5873,-452.3499
+-444.2811,167.2516,-556.892
+-478.5513,164.7926,-456.6008
+-471.0624,167.5929,-572.6577
+-494.7775,166.6556,-569.9478
+-448.492,166.867,-595.9562
+-419.5752,173.0953,-612.0347
+-488.9465,167.9898,-597.7711
+-407.9485,173.0471,-598.4297
+-466.7787,166.2204,-467.2306
+-426.1383,167.2927,-527.3336
+-472.5676,168.7563,-509.3743
+-525.8267,168.9217,-486.3586
+-519.1359,168.9401,-513.7499
+-461.7652,170.7454,-544.5927
+-493.0473,168.9753,-492.1964
+-451.5184,167.6573,-592.9921
+-473.9106,168.635,-575.7189
+-497.7552,167.1055,-573.03
+-482.3717,165.8385,-454.9039
+-447.1123,168.4033,-559.9296
+-497.4417,166.5764,-456.1923
+-468.8452,164.4872,-443.7122
+-452.5549,167.8745,-579.3944
+-503.2362,167.6806,-523.3455
+-506.3902,167.0139,-506.8047
+-442.3991,167.2065,-536.0005
+-491.5308,167.7277,-521.4204
+-459.0313,167.7988,-581.7413
+-492.2731,165.7211,-476.6064
+-435.5253,167.2084,-554.0213
+-426.9692,167.8258,-576.6708
+-428.0675,173.4321,-610.4541
+-416.5857,172.7957,-598.6871
+-485.2383,168.3662,-589.9711
+-458.1976,165.9283,-468.2353
+-475.425,165.9092,-511.8226
+-425.907,164.8789,-531.3813
+-523.4186,166.0181,-489.1932
+-458.1234,166.8083,-607.8358
+-453.8209,167.6883,-576.7748
+-432.2383,167.6038,-581.7424
+-485.8356,165.6115,-479.847
+-459.7643,168.9556,-468.1871
+-485.8618,171.2624,-591.6578
+-415.0201,175.7994,-598.3022
+-426.2871,176.3355,-610.6032
+-458.912,172.9419,-586.1118
+-493.7011,171.6278,-447.7243
+-459.799,169.146,-446.4827
+-473.7802,170.762,-458.5314
+-467.512,173.5686,-568.9416
+-491.9948,173.2848,-566.7175
+-440.6041,173.09,-553.0818
+-445.0643,173.1397,-599.2772
+-501.3369,166.9383,-527.2678
+-495.2433,166.5458,-519.3317
+-438.9496,166.2237,-538.5845
+-507.3337,166.0474,-511.014
+-455.5783,169.8257,-607.6249
+-456.447,170.6391,-576.9271
+-429.6711,170.6079,-581.6372
+-486.8899,168.5576,-477.4313
+-461.0989,169.0598,-466.2436
+-413.4196,176.018,-600.0226
+-488.1324,171.2624,-592.3008
+-425.0819,176.3534,-612.6321
+-419.8927,176.3369,-607.6115
+-465.9249,169.4362,-471.6012
+-409.4131,175.9706,-594.016
+-484.6146,171.2624,-598.6064
+-494.0266,171.7767,-443.6047
+-475.5993,164.8811,-444.1405
+-469.706,170.9073,-458.0368
+-471.8387,169.1778,-441.4607
+-470.7705,173.6327,-586.9341
+-482.1133,173.727,-574.066
+-462.8022,173.081,-591.7444
+-473.2754,174.3405,-553.6102
+-499.2289,174.8283,-466.224
+-465.6287,176.6468,-567.54
+-435.6005,176.6104,-585.6431
+-507.5298,174.8264,-467.1547
+-517.8353,166.0343,-515.9103
+-459.4003,167.719,-544.3677
+-491.8122,166.0764,-494.4041
+-477.3348,167.2185,-488.0125
+-459.9532,165.1244,-451.1893
+-419.8432,166.2075,-530.2685
+-457.2027,166.6432,-484.5753
+-496.1645,167.1273,-488.7025
+-526.2119,169.7838,-494.9964
+-431.2663,169.3334,-534.0449
+-481.1932,169.7639,-509.079
+-448.7745,173.1051,-608.2554
+-455.5139,173.5746,-558.1791
+-455.6033,173.0612,-594.6948
+-477.4102,171.846,-480.8458
+-463.9391,173.071,-602.0844
+-511.3698,168.6206,-470.8945
+-460.6254,170.6042,-565.1531
+-495.4863,168.6225,-470.0611
+-440.4181,170.3551,-587.8581
+-466.0261,170.6683,-594.5499
+-470.2226,171.8486,-550.6851
+-475.9854,161.8685,-447.9955
+-491.9563,169.3387,-439.8825
+-478.9212,171.3091,-571.2288
+-474.8594,166.0442,-439.1932
+-473.5862,171.3179,-583.6478
+-466.088,168.4034,-460.2106
+-477.9305,168.8406,-481.1231
+-455.4592,170.0673,-595.324
+-463.3094,170.0761,-601.9631
+-448.8892,170.1053,-607.6488
+-455.4944,170.598,-558.9001
+-458.4181,163.7045,-450.2769
+-475.6679,166.1318,-486.8964
+-497.8446,166.0372,-489.795
+-419.2987,165.2747,-528.2589
+-455.5673,165.4243,-483.5531
+-458.8569,170.0693,-602.0074
+-482.1324,168.7659,-482.5945
+-455.4869,170.0603,-599.7767
+-455.5407,170.7287,-563.3508
+-448.9414,170.0678,-603.1965
+-528.6892,166.0218,-490.6503
+-431.0745,164.9371,-529.5937
+-476.9387,165.9205,-506.5681
+-411.4759,175.8241,-592.2805
+-482.1273,171.3694,-597.5624
+-464.1339,169.4037,-473.6211
+-421.5414,176.4238,-605.4755
+-457.4239,169.9214,-612.0828
+-454.6071,170.694,-572.4661
+-431.5756,170.6102,-586.0713
+-482.0698,168.6454,-477.6489
+-487.4938,165.5544,-477.839
+-429.774,167.6089,-580.8986
+-456.2724,167.6405,-577.6539
+-455.6705,166.8093,-606.9592
+-490.9804,168.0682,-524.4491
+-442.6522,167.1308,-532.9147
+-503.6594,167.0648,-505.3445
+-502.0121,167.6034,-520.5016
+-454.047,169.9659,-610.3002
+-457.983,170.683,-574.2511
+-428.1749,170.6741,-584.3351
+-484.894,168.6178,-475.0787
+-482.9645,164.0253,-450.614
+-486.2115,165.7936,-443.7096
+-474.8743,167.6078,-576.7189
+-469.6168,161.4493,-435.7846
+-468.0628,167.8408,-579.4502
+-470.0864,165.1484,-466.0102
+-470.1243,167.0973,-589.0118
+-466.4347,167.6897,-556.0306
+-472.9934,170.9842,-462.5646
+-466.1692,173.5237,-583.7512
+-467.4794,168.1099,-438.1187
+-478.9422,173.4417,-578.6678
+-489.468,171.619,-446.8464
+-479.3518,168.5622,-446.0594
+-470.1497,173.6776,-558.2042
+-465.978,172.9013,-587.1406
+-480.1411,171.2959,-557.6289
+-495.5601,171.6219,-495.2469
+-521.7151,171.4741,-516.8404
+-459.6251,173.5135,-547.8148
+-471.2364,170.0687,-603.3365
+-503.5887,168.771,-458.5092
+-440.9597,167.8078,-552.4221
+-473.232,165.4652,-458.2051
+-491.564,168.0869,-565.5951
+-467.7616,168.2923,-568.1927
+-444.1324,167.8867,-599.314
+-458.7173,167.6711,-586.9147
+-459.7262,163.8393,-447.028
+-494.1342,166.3532,-447.05
+-471.2867,168.3161,-552.3704
+-465.2317,167.1628,-592.6709
+-479.764,167.7895,-573.0598
+-468.2653,164.9815,-460.1805
+-471.7186,167.7858,-584.3455
+-472.9073,162.8434,-440.7404
+-479.6458,160.5972,-446.7975
+-492.0603,165.8471,-441.9436
+-417.814,175.7285,-599.8822
+-485.9912,171.3086,-588.4502
+-456.774,168.7686,-467.0337
+-429.3537,176.3777,-611.5527
+-476.4329,165.9199,-512.6883
+-425.7744,165.0346,-532.6942
+-522.5639,166.0087,-490.2104
+-415.179,176.0301,-602.1774
+-489.2478,171.2814,-589.7526
+-459.049,168.9189,-464.3684
+-427.2578,176.3768,-614.3651
+-519.5299,166.0001,-516.6386
+-459.2817,167.8506,-546.2039
+-493.5057,166.0949,-495.1352
+-477.0888,171.8214,-483.0569
+-453.4131,173.0858,-595.1363
+-463.4894,173.0806,-599.8958
+-450.9724,173.0971,-607.8533
+-453.3264,173.5238,-558.6315
+-423.9372,173.5969,-606.7029
+-482.6764,168.5424,-594.9272
+-413.3577,172.9511,-594.1359
+-462.042,166.4049,-472.2542
+-485.2173,165.7035,-433.67
+-486.5901,168.266,-559.6689
+-485.3897,168.0021,-566.6826
+-510.1473,165.6669,-465.0008
+-501.3809,165.6689,-468.843
+-463.7071,167.4489,-570.203
+-437.2384,167.4337,-582.7288
+-494.4586,168.2489,-524.861
+-439.1463,167.1488,-532.8229
+-502.1844,167.2175,-508.5227
+-498.8798,167.878,-522.0553
+-419.6427,172.3285,-604.3041
+-409.5857,171.7762,-590.9426
+-481.4529,167.2758,-599.6922
+-466.2471,165.4626,-474.944
+-513.9778,169.3225,-476.525
+-434.0682,170.4721,-546.3301
+-493.7882,169.3556,-503.5585
+-508.3091,165.6147,-471.1885
+-495.1945,165.6167,-467.0002
+-463.3449,167.5791,-563.7593
+-437.6082,167.3778,-589.1732
+-468.108,169.6098,-470.0385
+-486.7982,171.2656,-600.178
+-407.0275,176.2219,-595.2341
+-417.8125,176.3587,-609.3176
+-442.5276,173.3316,-588.0671
+-458.6081,173.6483,-565.0237
+-494.5828,171.6203,-471.9453
+-513.2546,171.6184,-471.7966
+-493.0938,165.8605,-506.4573
+-433.8661,166.7914,-543.5892
+-513.4,165.8373,-479.4612
+-506.7772,166.6475,-526.5848
+-444.0851,166.3188,-540.5247
+-490.3208,166.152,-516.9313
+-511.1553,165.8654,-507.0757
+-475.5472,168.1715,-557.6692
+-471.0175,167.772,-606.0535
+-506.0665,166.4743,-459.6452
+-469.3972,167.0837,-604.0059
+-503.5878,165.786,-460.4664
+60.11,709.88,446.85
+61.79795,723.6512,449.3271
+54.37215,722.6364,444.3259
+51.11845,722.1163,446.344
+54.40154,718.8294,446.8236
+33.19871,721.5468,455.8729
+28.15521,729.4695,460.981
+29.61356,728.274,461.0199
+35.76107,722.7792,453.7504
+35.7935,725.8199,451.7188
+38.95833,722.3802,452.3856
+36.19384,720.0288,455.3527
+63.18506,706.2863,450.6604
+86.1063,706.5543,449.1339
+85.91455,703.3259,451.3712
+90.43855,704.6044,450.2941
+90.53345,701.4715,452.3221
+100.2926,711.4049,433.1518
+101.3077,713.0047,431.5743
+99.96021,715.983,430.2872
+101.1904,717.5305,428.6347
+63.97282,723.4562,445.1678
+64.02007,721.103,446.7033
+64.56703,718.8365,447.9267
+64.4941,723.4419,449.5973
+61.93923,732.9175,461.1678
+74.1418,719.7963,474.1829
+74.51994,717.4444,475.5489
+74.925,714.3263,477.4089
+40.20557,726.5296,473.1471
+42.45453,727.8409,471.132
+41.5249,724.0403,474.1245
+42.8395,723.5237,480.5685
+35.4181,719.3205,491.77
+51.89419,730.9122,489.7794
+45.57307,733.0833,487.842
+46.09372,730.4323,489.3337
+56.36678,725.5385,487.3419
+56.33627,721.6542,489.9318
+61.95013,720.9009,490.8994
+67.2589,722.0051,488.0019
+73.42666,720.5016,486.4925
+72.96603,718.6378,483.4052
+73.78666,739.3226,469.2785
+69.79632,738.0935,472.1265
+71.95864,735.4633,472.7678
+74.01991,727.5938,476.9328
+72.7906,740.6277,473.3036
+66.00723,742.0573,475.0217
+58.869,710.0792,449.9519
+73.89804,710.2451,442.0912
+82.68445,706.6367,439.9571
+72.59509,698.4129,450.5989
+35.91017,708.2227,462.9793
+35.40794,718.5317,456.4309
+43.82814,720.3358,450.9115
+39.9267,725.7789,473.397
+45.84318,728.2117,468.7495
+59.17056,718.3792,468.3907
+83.38261,719.3145,455.3324
+98.7986,709.0826,454.1636
+106.1277,716.041,445.8019
+95.11564,723.9389,446.2479
+69.08185,725.491,480.4488
+51.80787,739.4706,480.0981
+-53.85246,120.99,-635.2827
+-51.3968,121.9917,-632.8846
+-51.17707,119.7402,-633.2131
+-50.56709,119.4883,-633.938
+-51.52588,120.1105,-634.2503
+-47.00986,117.8668,-637.2921
+-44.30951,117.9872,-637.0681
+-44.71152,118.2381,-637.1345
+-47.41487,117.9875,-636.4973
+-47.14854,117.6956,-635.6578
+-48.09403,118.326,-636.0366
+-47.74876,118.2949,-637.1742
+-54.41885,122.1507,-636.1231
+-57.71434,126.0802,-633.3539
+-57.96545,126.3754,-634.2733
+-58.50135,127.0384,-633.3956
+-58.80157,127.3512,-634.2377
+-60.82666,125.9716,-628.7487
+-60.88735,125.9116,-628.129
+-60.34896,125.4963,-627.5527
+-60.45763,125.4616,-626.9091
+-52.24986,121.6585,-632.1219
+-52.47053,121.8912,-632.7587
+-52.78397,122.1623,-633.2826
+-51.76976,122.528,-632.6639
+-48.33477,124.2626,-632.7502
+-50.64911,128.5219,-635.591
+-50.93624,128.7854,-636.1684
+-51.29755,129.1259,-636.951
+-44.95127,122.2623,-637.9285
+-45.28614,122.346,-637.168
+-45.44012,122.6275,-638.3758
+-44.90372,123.9848,-639.1949
+-43.2077,124.5068,-642.2947
+-43.72018,127.3904,-638.076
+-42.71883,125.9368,-638.1069
+-43.06149,126.2427,-638.741
+-45.56778,127.6807,-638.2509
+-45.91019,128.0546,-639.3214
+-46.69085,129.2361,-638.9752
+-47.59251,129.7211,-637.7986
+-48.88879,130.5566,-637.1968
+-49.53356,129.8974,-637.1762
+-47.84256,127.968,-631.3586
+-47.14991,127.7131,-632.4072
+-47.82103,128.171,-632.7427
+-48.94197,129.1275,-634.5328
+-46.97667,128.5143,-631.7687
+-45.58243,127.6013,-632.4797
+-53.25935,121.3092,-635.7997
+-56.28017,122.6861,-633.062
+-58.378,123.8516,-632.4781
+-57.07947,123.712,-636.5387
+-48.79391,119.3536,-640.4156
+-47.76431,118.3114,-637.6824
+-49.30088,118.9202,-635.6819
+-45.01128,122.2409,-638.1316
+-45.98604,122.5561,-636.4069
+-49.56058,124.7448,-636.715
+-54.36121,126.9067,-632.1279
+-58.39315,129.3282,-632.1717
+-59.24545,129.3378,-628.955
+-56.31228,127.5512,-628.7624
+-48.18631,128.7996,-635.9368
+-43.442,125.8435,-635.199
+76.15211,593.8589,571.0682
+66.07701,591.736,566.0128
+65.30015,597.7538,570.1309
+65.97177,600.4521,568.6622
+68.83514,597.9813,569.0424
+67.52292,615.1607,561.2924
+62.20798,618.8719,555.4883
+63.23427,617.7569,555.7332
+66.23177,612.9814,562.6791
+63.40336,612.7538,563.5774
+66.4212,610.3903,563.8455
+68.76405,612.809,562.0519
+79.9967,591.6198,568.9139
+80.78606,572.9774,570.1116
+83.79815,573.3478,569.0947
+82.82285,569.5878,569.6594
+85.72987,569.7173,568.7853
+74.21746,560.9671,581.5434
+72.67262,560.0303,582.4164
+69.98052,560.9365,582.743
+68.47213,559.8271,583.687
+65.41463,589.9251,569.3142
+67.59953,590.042,568.648
+69.67541,589.7441,568.2075
+66.45947,589.563,565.8568
+61.54343,591.2534,554.6564
+75.4346,582.2744,547.495
+77.59952,582.1204,546.9619
+80.47511,581.9949,546.2166
+67.9614,609.4235,546.6804
+66.6148,607.4957,547.9643
+70.20062,608.5081,546.4849
+72.13963,607.5581,541.5692
+77.51772,613.975,533.7463
+68.99699,599.9114,532.7195
+66.49516,604.8923,533.7233
+68.93005,604.6414,533.1603
+72.89616,596.5545,535.8564
+76.50878,596.8364,534.7133
+77.64429,592.3355,534.1438
+76.4387,587.9236,536.1732
+77.63051,582.9822,537.7117
+78.35722,583.4205,540.5461
+59.08186,581.3809,546.8977
+60.45098,584.729,544.9391
+62.77331,583.1327,545.0408
+69.97184,581.9655,543.5764
+58.91764,582.1697,543.4528
+57.79463,587.6179,541.7662
+76.62656,594.8971,568.595
+75.59832,582.5808,574.7442
+78.44307,575.6254,577.2558
+86.67209,584.43,570.7748
+79.67773,613.8173,558.7682
+70.12921,613.5472,561.5466
+67.96665,606.5339,565.4753
+68.58686,609.6962,546.6545
+65.98488,604.6913,549.7521
+74.34975,594.4294,552.301
+72.08318,574.5441,562.3644
+80.69843,562.5985,565.6429
+73.81035,556.1379,570.6209
+67.10902,564.6321,568.4493
+72.11777,586.142,541.2912
+60.12794,599.361,538.3448
+-433.435,196.5022,9.500557
+-432.974,198.5573,12.38993
+-431.5391,196.7855,12.5547
+-430.6611,196.928,12.14273
+-431.5945,196.9558,11.41351
+-425.8011,197.5941,10.57096
+-423.8657,199.1258,11.69534
+-424.277,199.1263,11.45082
+-426.4818,197.447,11.14146
+-426.4531,197.3072,12.0582
+-427.3548,197.3518,11.27099
+-426.6331,197.5571,10.34827
+-434.134,197.2163,8.327631
+-439.733,198.6646,9.050552
+-439.7207,198.8187,8.064903
+-440.8085,199.0567,8.572046
+-440.8729,199.1962,7.637481
+-443.8585,196.7213,12.23043
+-444.1143,196.6123,12.79065
+-443.7118,196.5243,13.58095
+-444.0268,196.4101,14.14223
+-433.7582,197.7891,12.85387
+-433.8,197.8948,12.15001
+-433.9765,197.9787,11.51125
+-433.6181,198.8025,12.37036
+-431.8123,202.1029,13.18394
+-434.6534,204.5874,9.021918
+-434.785,204.6813,8.344277
+-434.9334,204.8091,7.438387
+-426.1899,202.4325,9.936774
+-426.7844,202.2929,10.50651
+-426.5788,202.4992,9.291263
+-426.5348,203.9664,8.487246
+-424.2926,205.4412,6.130199
+-427.7762,207.4285,9.338077
+-426.2569,206.7351,9.910304
+-426.4309,206.8375,9.15385
+-429.2806,206.6962,8.484105
+-429.3201,206.8745,7.313846
+-430.6535,207.4424,7.156049
+-432.0489,207.3224,7.842427
+-433.7039,207.3124,7.800984
+-433.8759,206.4108,7.710284
+-433.844,205.4384,13.99354
+-432.7756,205.636,13.3126
+-433.3951,205.6792,12.69052
+-434.0517,205.965,10.48528
+-433.2939,206.3786,13.82197
+-431.4819,206.38,13.81024
+-432.9391,197.1096,9.174956
+-437.0234,196.5486,10.40783
+-439.4565,196.3909,10.01387
+-436.8152,197.1349,6.74838
+-426.722,198.0302,6.814399
+-426.4571,197.584,9.871689
+-428.7232,197.1958,11.07484
+-426.1469,202.3909,9.732531
+-427.7246,202.0656,10.92792
+-431.4695,202.0228,9.020888
+-438.0383,201.0991,11.20257
+-442.3558,200.9982,9.339577
+-444.2611,200.4174,12.00534
+-441.1697,200.463,13.51306
+-432.7605,206.1494,9.511401
+-427.8913,206.1491,12.35431
+22.0433,974.8595,287.887
+15.85873,980.5686,295.6799
+13.34412,973.6849,295.4208
+14.77894,971.6827,297.3757
+16.94762,973.2479,294.6747
+20.46198,960.912,308.5453
+18.99199,960.7545,317.1199
+19.70464,961.4814,315.9709
+18.55716,962.5895,307.168
+15.65818,962.97,307.7246
+18.02107,964.4526,305.0819
+21.0472,962.5215,306.3739
+26.35367,977.007,286.7715
+25.65975,993.2761,277.5829
+28.78286,992.7781,277.0908
+27.50271,996.1437,275.528
+30.453,995.8284,274.8738
+13.70662,1000.967,266.8101
+11.89561,1001.764,266.4755
+9.450937,1001.312,267.8879
+7.628089,1002.231,267.4081
+13.53677,981.0629,292.683
+15.75969,980.8117,292.2067
+17.75707,980.8694,291.4326
+16.17794,982.525,294.6986
+17.71093,986.1932,306.3891
+32.93225,994.5181,301.5025
+35.0592,994.4647,300.8184
+37.90656,994.3365,299.972
+28.03055,971.629,317.1757
+26.14058,973.1285,316.0104
+30.01866,972.1217,315.8737
+34.14612,974.5112,318.3396
+43.01159,970.717,324.5288
+35.6271,985.4032,323.4224
+33.16896,980.9691,325.9465
+35.53939,980.9654,325.1161
+37.24932,986.5229,317.7279
+40.94958,986.0435,317.0099
+42.03131,990.1273,315.004
+39.78191,993.5633,312.1456
+39.82265,997.227,308.3011
+39.02513,995.6097,305.9552
+19.13203,998.5564,309.3646
+21.4425,996.026,311.6404
+23.32314,997.0057,309.7817
+30.21196,997.303,306.9922
+20.774,999.1939,312.4329
+20.88846,995.1157,316.5733
+23.75102,974.7814,290.0078
+19.23624,983.759,280.543
+20.12172,988.569,274.3094
+30.85547,981.5759,279.118
+32.14578,960.8659,304.1405
+22.50869,961.7968,306.4265
+18.36406,967.0344,301.4579
+28.59292,971.2773,317.0135
+24.5751,975.0966,313.7448
+30.05465,981.8722,303.4569
+22.17498,996.4265,288.3599
+27.43009,1004.4,276.6778
+18.7098,1009.602,273.3821
+14.39704,1003.977,281.8395
+33.39063,994.0057,309.5008
+25.11601,985.3711,323.0713
+-47.6859,126.58,-587.3722
+-45.17074,127.4629,-584.9891
+-44.77863,125.3121,-585.6567
+-44.19926,125.2249,-586.4427
+-45.2274,125.7902,-586.6078
+-40.74854,124.4428,-590.1862
+-38.05996,124.7884,-590.0933
+-38.48584,125.0065,-590.1002
+-41.10805,124.4104,-589.3615
+-40.7614,124.0296,-588.5898
+-41.78149,124.6137,-588.82
+-41.51225,124.7771,-589.9668
+-48.40643,127.7883,-588.0009
+-51.83717,130.9523,-584.5097
+-52.17438,131.3492,-585.3607
+-52.70556,131.827,-584.3674
+-53.0879,132.2255,-585.1367
+-54.61092,129.8954,-579.809
+-54.62427,129.7427,-579.2026
+-54.01422,129.3037,-578.7236
+-54.07584,129.1679,-578.0872
+-45.93826,126.9449,-584.2388
+-46.22073,127.2432,-584.8216
+-46.59114,127.5544,-585.2822
+-45.57322,127.9244,-584.6722
+-42.31577,129.9748,-584.6879
+-45.17792,134.3516,-586.7419
+-45.52515,134.6655,-587.2579
+-45.96659,135.0771,-587.9612
+-39.12766,129.0609,-590.2794
+-39.41655,129.0037,-589.4979
+-39.67544,129.4372,-590.641
+-39.31554,130.9418,-591.2794
+-37.88405,132.0574,-594.3558
+-38.36004,134.2524,-589.7373
+-37.24042,132.9205,-590.0358
+-37.65032,133.2788,-590.5984
+-40.23346,134.3861,-589.7675
+-40.67843,134.8732,-590.7511
+-41.53381,135.9135,-590.1932
+-42.39291,136.1385,-588.911
+-43.71346,136.7524,-588.1237
+-44.29559,136.0382,-588.1655
+-42.05512,133.476,-582.7951
+-41.41513,133.4395,-583.9056
+-42.14462,133.8738,-584.1334
+-43.46254,134.9622,-585.7
+-41.26962,134.1551,-583.1664
+-39.85233,133.4898,-584.0784
+-47.15899,127.0245,-587.868
+-50.09682,127.7043,-584.7982
+-52.24395,128.569,-583.9367
+-51.21471,129.1305,-588.0378
+-42.8615,126.1788,-592.9559
+-41.56338,124.8638,-590.4655
+-43.00881,125.0333,-588.3171
+-39.19912,129.0628,-590.4799
+-40.0792,129.0359,-588.6774
+-43.84318,130.8935,-588.4666
+-48.4937,131.9145,-583.3585
+-52.71474,133.9202,-582.8276
+-53.34601,133.3928,-579.6031
+-50.26227,131.8863,-579.8343
+-42.77753,134.9102,-587.1757
+-37.75519,132.3478,-587.1385
+-510.7594,165.6712,-473.4736
+-460.2682,167.7341,-562.4406
+-492.9077,165.6732,-469.4489
+-440.689,167.4029,-590.4911
+-500.0076,166.8906,-525.5768
+-495.4171,166.7682,-521.4645
+-438.57,166.1365,-536.4686
+-505.2397,166.0677,-510.5205
+-467.9742,167.0753,-607.427
+-506.3148,165.7776,-462.9749
+-499.0109,166.0349,-487.0253
+-416.5276,165.8166,-529.2877
+-454.4249,165.4998,-486.3317
+-457.2652,163.9225,-453.0437
+-474.506,166.048,-489.6667
+-463.109,167.8227,-577.834
+-489.9727,165.798,-471.449
+-422.8927,168.1243,-580.5682
+-439.6041,167.11,-550.1162
+-425.6262,172.3791,-614.007
+-460.944,165.054,-464.8613
+-489.2915,167.2808,-591.4153
+-413.3851,172.1171,-601.6849
+-485.091,165.5767,-477.0359
+-429.8701,167.6041,-583.4303
+-455.733,166.8642,-609.4913
+-456.2128,167.6455,-575.1211
+-502.2014,168.7745,-463.3841
+-466.1812,170.0722,-603.7025
+-452.2118,173.595,-562.345
+-452.1695,173.0595,-604.165
+-459.7758,173.0762,-598.7789
+-452.2824,173.0891,-598.8456
+-480.201,171.746,-485.3691
+-458.1807,166.8896,-584.8113
+-461.9598,163.3649,-447.3583
+-493.9371,165.5797,-449.2147
+-441.5197,167.1004,-554.5456
+-475.4142,164.7475,-458.4203
+-468.303,167.5377,-570.3047
+-492.0184,167.12,-567.6401
+-446.2045,167.0327,-598.7657
+-477.7525,165.9242,-481.3765
+-455.1043,167.1564,-595.2863
+-463.3459,167.1628,-601.6278
+-449.2038,167.1901,-607.7123
+-455.2581,167.6753,-558.9531
+-504.7992,171.8094,-458.1666
+-471.9728,173.1071,-604.3566
+-498.4337,166.8115,-492.5706
+-454.9197,166.0365,-480.7502
+-421.0717,165.7731,-525.9657
+-475.0641,166.9637,-484.1407
+-457.7339,164.0318,-447.4352
+-526.8862,166.0508,-496.3473
+-432.7894,165.8065,-535.2514
+-482.6145,166.0523,-508.4321
+-464.7725,173.071,-593.2621
+-471.3021,174.2653,-552.0983
+-474.9116,164.1914,-446.429
+-492.694,171.7524,-441.5049
+-480.1426,173.7108,-572.5488
+-473.4969,168.6733,-439.677
+-472.2895,173.6812,-584.9653
+-467.6207,170.849,-459.391
+-434.8909,165.1141,-529.3695
+-478.9619,165.9364,-503.3196
+-531.9593,166.0144,-492.6385
+-423.5298,172.3784,-613.9435
+-489.7691,167.2733,-593.4575
+-411.354,172.2317,-601.1747
+-463.0256,165.2089,-465.0653
+4.428869,131.37,-536.989
+1.322387,130.6004,-537.8455
+1.26163,129.9192,-537.0567
+1.123645,133.7906,-535.9404
+4.9946,134.7864,-533.3876
+4.094443,134.0878,-531.3962
+4.151902,133.3106,-531.3822
+0.3000154,133.6891,-533.2119
+2.544318,131.552,-527.6528
+2.393534,130.8633,-527.7236
+-0.4638224,132.608,-529.0762
+-1.602394,130.8722,-529.6135
+-1.383967,129.5221,-529.5092
+-0.06194782,128.922,-535.6785
+0.8854084,128.5639,-535.2247
+0.08267021,134.279,-527.6502
+-1.739594,134.6111,-529.681
+1.916997,129.0295,-526.3405
+1.466448,133.7627,-527.0754
+-1.007358,128.4384,-529.3303
+-0.7702131,129.1401,-530.944
+1.744462,135.9202,-532.6645
+3.170495,135.9108,-531.9868
+4.364079,134.477,-536.5131
+6.835958,134.0368,-535.3437
+2.173151,131.1016,-537.5468
+4.819869,129.1854,-536.2936
+4.724187,131.1923,-536.3404
+2.590893,129.6128,-537.3481
+1.070852,128.5956,-535.2388
+4.08291,134.0289,-531.5063
+736.78,120.4718,-535.59
+739.8903,121.0036,-536.5999
+739.5544,121.6936,-537.3077
+739.4384,123.0106,-533.4992
+734.9131,123.6843,-532.2499
+734.8007,125.8183,-533.085
+734.6928,125.7548,-533.8543
+738.9724,125.8124,-533.7558
+734.383,129.6876,-535.86
+734.5047,129.6443,-536.5566
+737.7719,129.7874,-535.026
+738.9159,129.6862,-536.8369
+738.5871,129.5961,-538.1654
+740.0713,123.4415,-538.4581
+738.9999,123.4133,-538.7463
+736.7643,130.9401,-533.3586
+739.3102,129.931,-533.1237
+734.2062,130.9731,-538.4667
+735.2385,130.8203,-533.7701
+738.101,129.5217,-539.2173
+738.6422,128.0155,-538.4482
+737.5818,125.8222,-531.4255
+736.0058,125.8098,-531.3319
+736.83,121.1316,-532.5165
+734.073,121.0774,-532.7761
+739.0291,120.9346,-536.0361
+735.9832,120.7825,-537.7527
+736.2192,120.9141,-535.7612
+738.4713,120.8334,-537.4883
+738.842,123.322,-538.6982
+734.8555,125.7206,-533.1413
+-47.16003,120.9449,-316.12
+-47.29572,121.9213,-319.283
+-48.07829,122.5751,-319.0594
+-44.46437,123.7746,-317.7354
+-44.50031,123.7926,-312.993
+-45.36636,125.91,-312.8171
+-46.13506,125.8502,-312.9314
+-44.87955,126.4914,-316.9738
+-48.20796,129.7491,-312.636
+-48.84474,129.7392,-312.9466
+-46.48708,130.2929,-315.6248
+-47.91773,130.3917,-317.219
+-49.28416,130.2883,-317.2781
+-49.07117,124.4036,-319.6218
+-49.63893,124.2356,-318.6831
+-45.17311,131.2575,-314.054
+-44.241,130.6016,-316.5552
+-50.78366,131.0586,-312.9958
+-45.98149,130.9394,-312.7284
+-50.42724,130.1725,-317.1101
+-49.51786,128.7372,-317.6255
+-43.01463,126.2562,-315.0167
+-43.3521,126.0258,-313.4915
+-44.19856,121.5336,-315.2441
+-45.19581,121.1082,-312.6954
+-46.98584,121.7219,-318.3194
+-49.46224,121.1938,-315.9037
+-47.48367,121.3101,-315.571
+-48.5333,121.579,-318.1953
+-49.63412,124.1224,-318.5323
+-45.40419,125.822,-312.8981
+-36.46997,123.5132,-158.46
+-33.34252,123.1348,-157.4344
+-32.99612,123.6849,-158.2513
+-34.78961,125.8864,-155.3896
+-38.77012,127.7554,-157.1658
+-37.73387,129.5975,-158.0583
+-37.41039,129.3717,-158.7305
+-34.14058,128.5751,-156.0844
+-35.32121,132.6737,-160.8083
+-34.85435,132.4378,-161.2863
+-33.1342,132.2789,-158.1154
+-31.27777,131.5071,-158.8612
+-30.8232,131.1647,-160.1092
+-31.41831,124.9554,-158.9874
+-32.09501,125.0775,-159.8585
+-34.48051,133.9845,-157.4809
+-32.9558,132.5646,-155.688
+-33.61509,133.2924,-163.0853
+-35.46832,134.0826,-158.7164
+-30.63869,130.9369,-161.2327
+-31.11288,129.5861,-160.1824
+-36.50372,129.4374,-155.0667
+-37.77723,129.7708,-155.9385
+-37.931,124.8784,-156.034
+-39.93408,125.3275,-157.8934
+-34.34177,123.3831,-157.4981
+-35.79058,123.4429,-160.6832
+-36.67152,124.0054,-158.9666
+-33.999,123.0469,-158.9813
+-32.27195,125.0349,-159.9083
+-37.69051,129.4799,-158.0628
+139.46,148.0249,242.8
+137.5502,146.8625,245.245
+138.2265,147.2169,245.957
+136.0264,150.0813,244.166
+138.9053,152.8435,241.6019
+139.4473,154.2278,243.3494
+139.993,153.8609,243.7679
+136.4942,152.4013,245.757
+141.3518,156.2342,247.2473
+141.6693,155.8339,247.7382
+138.1304,155.4708,248.3565
+138.2905,154.1394,250.0297
+139.3469,153.5732,250.6966
+138.4585,147.915,247.983
+139.4915,148.1478,247.6505
+137.9238,157.5384,247.4583
+135.7596,155.9063,247.914
+143.0173,156.138,249.6339
+139.3972,157.8049,246.9388
+140.3647,153.2043,251.1162
+139.5043,152.1426,249.9825
+136.2253,153.9875,243.5718
+137.4363,154.5921,242.7589
+137.5776,149.958,241.1864
+139.9485,150.794,240.024
+137.9083,147.3788,244.4268
+141.3802,147.5686,244.0302
+140.0032,148.5076,242.9073
+139.2225,146.8296,245.0605
+139.5917,148.1532,247.4908
+139.4388,154.1028,243.3551
+-34.57827,125.2569,-545.259
+-36.26109,122.4213,-545.5811
+-37.16581,122.9359,-545.5004
+-35.26011,123.441,-549.0168
+-33.93013,127.9772,-549.3992
+-35.92694,128.6877,-550.2778
+-36.42081,128.7692,-549.6803
+-37.21265,124.6833,-550.6833
+-40.41869,130.1746,-550.9559
+-40.91765,130.0421,-550.4706
+-40.53465,126.9583,-552.3095
+-41.99856,125.8237,-551.229
+-42.83688,126.1065,-550.1809
+-39.25624,122.9317,-546.0255
+-39.23964,123.9493,-545.5829
+-39.89758,128.2607,-554.0481
+-39.54968,125.5341,-554.0436
+-43.12286,130.6966,-550.0106
+-39.82187,129.6873,-553.3619
+-43.45506,126.546,-549.3018
+-42.00475,125.6028,-548.9022
+-35.26479,126.031,-552.0074
+-34.88497,127.5389,-551.7338
+-32.801,125.4122,-547.8477
+-32.4214,128.0385,-547.0543
+-35.64137,123.2301,-545.7422
+-36.19566,126.0982,-543.8151
+-34.88721,125.9195,-545.33
+-36.51771,123.7287,-544.5532
+-39.11386,124.075,-545.5198
+-35.9135,128.6071,-550.1827
+80.34985,137.4405,-533.7459
+77.22923,137.9893,-532.7781
+77.5378,138.8082,-532.2088
+77.53815,139.4413,-536.1902
+82.00661,140.1048,-537.6342
+82.01929,142.355,-537.1866
+82.13992,142.4327,-536.4205
+77.86212,142.264,-536.4363
+82.27148,146.6664,-535.1386
+82.1609,146.7401,-534.4426
+78.87176,146.4538,-535.9047
+77.75724,146.616,-534.08
+78.10683,146.7762,-532.7634
+76.9459,140.7034,-531.3702
+78.0208,140.7783,-531.1043
+79.79769,147.3439,-537.7687
+77.30446,146.1867,-537.7697
+82.41431,148.396,-532.8005
+81.33266,147.3724,-537.3752
+78.60921,146.911,-531.7253
+78.13695,145.2689,-532.2081
+79.2211,141.9328,-538.7616
+80.79444,141.9808,-538.8853
+80.22748,137.5483,-536.8856
+82.98664,137.6744,-536.6794
+78.08568,137.8645,-533.3395
+81.15656,138.1639,-531.688
+80.88924,137.9328,-533.6664
+78.66607,138.0466,-531.9041
+78.1826,140.6877,-531.1392
+81.97026,142.2661,-537.113
+-400,129.1704,80
+-401.3392,129.4583,76.98341
+-402.0355,130.1465,77.34579
+-398.2884,131.5888,76.98252
+-396.6145,132.6064,81.30166
+-397.5157,134.7154,81.36316
+-398.2671,134.6349,81.55393
+-398.6044,134.4061,77.29224
+-400.3813,138.5139,81.81732
+-401.0845,138.4404,81.77141
+-399.899,138.4108,78.36087
+-401.811,138.175,77.4193
+-403.095,138.0651,77.88892
+-403.2988,131.818,76.84
+-403.4759,131.8532,77.93502
+-398.1838,139.6815,79.11469
+-398.169,138.5105,76.62793
+-403.0043,139.7249,82.18034
+-398.434,139.6521,80.6794
+-404.0887,137.9903,78.48503
+-403.3208,136.4762,77.96474
+-396.1476,134.584,78.43066
+-395.8945,134.6812,79.98614
+-396.9751,129.9227,79.59003
+-396.9521,130.0468,82.35689
+-400.6889,129.4656,77.78422
+-402.0814,129.4653,80.99486
+-400.1306,129.644,80.5461
+-402.0723,129.3562,78.49467
+-403.4085,131.7743,78.09264
+-397.5734,134.6125,81.3208
+341.4396,127.593,-298.5978
+342.6186,128.1673,-295.5554
+343.3126,128.8457,-295.9401
+339.5134,130.1926,-295.8747
+338.0286,130.8024,-300.3374
+338.8725,132.9272,-300.5303
+339.6345,132.8554,-300.6781
+339.7657,132.9841,-296.4009
+341.6502,136.7656,-301.1609
+342.3521,136.7184,-301.0758
+340.9997,136.9281,-297.7344
+342.8684,136.8305,-296.6872
+344.1767,136.7238,-297.085
+344.5021,130.5921,-295.515
+344.7324,130.5439,-296.5996
+339.2894,138.0781,-298.6708
+339.1836,137.1129,-296.0993
+344.2533,138.026,-301.4983
+339.6177,137.9297,-300.2142
+345.2004,136.6325,-297.6252
+344.4502,135.1419,-297.0185
+337.3645,132.9907,-297.6649
+337.1865,132.9532,-299.2334
+338.3782,128.2794,-298.3948
+338.4893,128.1777,-301.1604
+342.009,128.0889,-296.3839
+343.5588,127.8724,-299.5141
+341.5839,128.0246,-299.1743
+343.4285,127.9663,-297.0167
+344.6752,130.4504,-296.7531
+338.9309,132.8299,-300.4769
+468.2253,124.5666,-434.7356
+465.2464,125.0641,-436.0974
+465.076,125.871,-435.4573
+467.7242,126.6039,-438.4073
+471.995,127.3418,-436.4819
+471.653,129.5801,-436.1118
+471.2285,129.6395,-435.4608
+468.064,129.4346,-438.3369
+470.3708,133.8408,-434.3655
+469.8215,133.896,-433.9214
+468.3617,133.6182,-437.2123
+466.3094,133.725,-436.6
+465.685,133.8551,-435.3857
+464.0313,127.7394,-435.2057
+464.6506,127.8169,-434.288
+470.2757,134.5628,-437.9663
+468.4503,133.3846,-439.6502
+468.8732,135.5122,-432.5102
+471.1526,134.5946,-436.6465
+465.361,133.9681,-434.2765
+465.3709,132.3346,-434.9724
+470.6366,129.1736,-439.1598
+471.8874,129.2382,-438.1983
+470.2316,124.7521,-437.149
+472.1412,124.8967,-435.1481
+466.2611,124.9608,-435.9431
+467.4318,125.2449,-432.6573
+468.5616,125.0613,-434.3093
+465.7283,125.1118,-434.4858
+464.7962,127.7286,-434.2068
+471.5694,129.489,-436.091
+-590.39,119.1584,95.19995
+-590.9054,119.6377,91.96255
+-591.6533,120.3349,92.17328
+-587.9022,121.6461,92.85355
+-587.363,122.3964,97.50528
+-588.1955,124.5337,97.45124
+-588.9726,124.4736,97.44012
+-588.2145,124.4561,93.22667
+-590.9836,128.4153,97.36979
+-591.6533,128.3713,97.14275
+-589.6362,128.4541,94.14904
+-591.2492,128.3366,92.7411
+-592.613,128.2549,92.86232
+-592.7019,122.0758,91.45544
+-593.1522,122.067,92.46977
+-588.1389,129.6209,95.38232
+-587.5186,128.567,92.92066
+-593.5803,129.7089,97.12021
+-588.7814,129.5287,96.8281
+-593.7276,128.1911,93.18139
+-592.8914,126.6741,92.79112
+-586.1268,124.4856,94.95994
+-586.2775,124.5006,96.53158
+-587.3426,119.8111,95.61385
+-588.0247,119.8057,98.29826
+-590.4815,119.5827,92.90147
+-592.6483,119.4874,95.64794
+-590.6437,119.6108,95.72005
+-592.0029,119.4942,93.23002
+-593.1295,121.9783,92.63476
+-588.2431,124.4351,97.39002
+706.59,119.8541,-530.04
+708.9497,120.4769,-532.2805
+708.306,121.1159,-532.7974
+709.7186,122.6091,-529.3294
+706.1038,123.1366,-526.3049
+705.5201,125.2203,-527.0673
+705.1033,125.1148,-527.7175
+709.0165,125.3712,-529.4349
+703.7388,128.9277,-529.5021
+703.5593,128.8564,-530.1838
+707.1516,129.2215,-530.1783
+707.4336,129.0848,-532.2996
+706.5837,128.9156,-533.3628
+708.1836,122.8277,-534.1014
+707.0942,122.737,-533.9101
+706.8681,130.4067,-528.2706
+709.3343,129.5267,-529.1066
+702.4054,130.0762,-531.822
+705.321,130.198,-527.9969
+705.7065,128.7683,-534.1093
+706.6121,127.3272,-533.6031
+708.7349,125.4307,-526.7366
+707.3477,125.3514,-525.9866
+707.8848,120.6636,-527.2918
+705.2826,120.4718,-526.3627
+708.4108,120.3963,-531.4045
+704.9414,120.0233,-531.6718
+705.983,120.2617,-529.9696
+707.3023,120.1997,-532.4829
+706.977,122.641,-533.7976
+705.5521,125.1226,-527.139
+-235.8,116.8887,488.5
+-238.4455,117.4689,490.4081
+-237.9104,118.1805,490.9532
+-238.991,119.3691,487.2556
+-235.0818,119.9789,484.6404
+-234.7278,122.139,485.3279
+-234.3858,122.1007,486.0273
+-238.4845,122.1756,487.2616
+-233.4909,126.0966,487.7057
+-233.3898,126.0772,488.4068
+-236.9717,126.185,487.9632
+-237.4958,126.1498,490.0421
+-236.77,126.1024,491.205
+-238.0543,119.9682,492.1485
+-236.9463,119.9445,492.0904
+-236.5386,127.2766,486.0279
+-239.0257,126.2725,486.6293
+-232.5203,127.4675,490.0843
+-234.9598,127.1632,485.9487
+-235.9807,126.0608,492.0556
+-236.7253,124.5324,491.5433
+-237.8868,122.101,484.6156
+-236.4178,122.0779,484.0374
+-236.8062,117.4459,485.5741
+-234.1048,117.387,484.9658
+-237.8017,117.377,489.6072
+-234.3725,117.2675,490.2965
+-235.2162,117.3337,488.4737
+-236.8198,117.3216,490.8168
+-236.8106,119.8509,491.9987
+-234.7618,122.0435,485.4017
+-62.25368,128.6737,-551.0253
+-59.88867,130.9935,-550.9908
+-60.07219,131.2116,-551.9952
+-62.89919,132.5442,-549.4487
+-66.94746,130.2276,-550.3074
+-67.63805,131.6582,-551.9629
+-67.25662,131.4547,-552.6115
+-64.47894,134.3075,-551.0386
+-68.34216,133.9722,-556.0855
+-67.85725,133.942,-556.6013
+-66.58416,136.3559,-554.2368
+-64.77621,136.8272,-555.2891
+-64.22256,136.3972,-556.468
+-59.97521,132.7298,-553.522
+-60.51919,131.976,-554.1284
+-68.75115,136.7446,-553.7101
+-66.67066,137.6806,-552.1769
+-67.67823,134.529,-558.8654
+-69.48526,135.6114,-554.5399
+-63.9336,135.9067,-557.48
+-63.23593,135.2189,-555.9991
+-66.6904,133.6643,-549.6036
+-67.789,132.6346,-550.0789
+-64.23643,129.5415,-548.745
+-65.90978,127.669,-549.9133
+-60.73859,130.4413,-550.7986
+-61.75729,128.1449,-553.235
+-62.75714,128.6189,-551.5573
+-60.26466,129.8395,-552.1564
+-60.6052,131.8098,-554.1049
+-67.52139,131.6147,-551.9478
+267,156.0013,312.2
+270.1938,156.5961,312.8493
+270.2216,157.325,312.1024
+268.2412,158.4209,315.4384
+263.658,159.0132,314.3728
+263.9002,161.1914,313.6939
+264.1794,161.1719,312.9665
+267.8749,161.2319,315.1269
+264.7614,165.2128,311.2581
+265.2058,165.2098,310.7062
+267.321,165.2711,313.632
+269.2,165.2762,312.5987
+269.5568,165.2618,311.2744
+271.1782,159.137,311.4337
+270.3808,159.1234,310.6619
+265.5997,166.3242,314.6579
+267.7437,165.3082,316.0457
+265.8282,166.6454,308.9586
+264.4669,166.2253,313.5539
+269.6418,165.247,310.1165
+269.7882,163.7002,310.976
+265.532,161.1053,316.4901
+264.108,161.0846,315.8084
+265.5394,156.4837,314.9418
+263.2538,156.4392,313.3779
+269.1699,156.4933,312.9216
+267.3385,156.4341,309.9401
+266.5789,156.4516,311.8007
+269.3864,156.4745,311.3779
+270.2221,159.0291,310.623
+263.9783,161.0972,313.6665
+178.7,130.504,523.8
+177.3186,131.0548,526.7605
+178.0103,131.8121,526.955
+175.1715,132.7883,524.2642
+177.2272,133.4477,520.0414
+177.7471,135.6493,520.4244
+178.3922,135.6567,520.8618
+175.4475,135.6113,523.9689
+179.7633,139.7578,521.8035
+180.1994,139.7738,522.3618
+176.8692,139.7088,523.756
+177.4472,139.7436,525.8207
+178.6552,139.7789,526.4694
+178.3723,133.6434,528.0325
+179.3051,133.6644,527.4316
+176.221,140.7309,521.843
+174.4231,139.6493,523.6187
+181.7019,141.273,523.3605
+177.5566,140.6816,520.9913
+179.7631,139.8088,526.8156
+178.9543,138.2288,526.7678
+174.6587,135.4449,521.3779
+175.6466,135.4589,520.1462
+176.3452,130.8873,521.7526
+178.3883,130.9169,519.8828
+177.485,130.955,525.7473
+180.8049,131.0227,524.6422
+179.1665,130.972,523.4793
+178.9386,130.9953,526.3093
+179.3828,133.5727,527.2862
+177.7597,135.5558,520.507
+173.14,161.178,271.25
+170.7443,161.4808,273.5182
+171.2924,162.2172,274.0153
+169.6262,163.4239,270.5483
+173.0807,164.4319,267.4592
+173.3574,166.592,268.181
+173.794,166.5609,268.826
+169.9099,166.2611,270.6014
+174.5987,170.5645,270.5316
+174.7961,170.5323,271.2114
+171.1897,170.3584,271.2576
+170.96,170.2175,273.3849
+171.8399,170.1949,274.4369
+171.1758,163.9502,275.2916
+172.2639,164.0195,275.0843
+171.2675,171.5397,269.3282
+168.9717,170.3168,270.2164
+175.7772,171.9381,272.8126
+172.8245,171.559,269.0331
+172.7392,170.1927,275.1714
+172.052,168.6244,274.7013
+170.143,166.3158,267.8984
+171.5162,166.431,267.1277
+171.7019,161.7385,268.511
+174.2908,161.9204,267.5436
+171.2773,161.4663,272.6351
+174.7668,161.6186,272.8526
+173.6784,161.6702,271.1639
+172.4172,161.4554,273.6985
+172.3926,163.9401,274.9713
+173.3413,166.4918,268.2547
+-33.37616,136.1436,-551.5377
+-33.86943,138.8514,-549.6936
+-33.54529,138.3436,-548.841
+-30.60715,139.3375,-551.4163
+-28.73094,135.3659,-553.2047
+-27.24307,135.0665,-551.484
+-27.6396,134.744,-550.8955
+-28.21295,138.8769,-549.9368
+-25.09872,133.962,-547.3575
+-25.47973,133.8806,-546.7656
+-25.15358,137.4497,-547.2056
+-26.26354,138.0322,-545.4659
+-26.90903,137.3391,-544.4738
+-32.63893,138.5504,-546.8964
+-32.63008,137.4409,-546.9221
+-23.21571,136.9794,-548.277
+-24.38363,139.466,-548.3664
+-25.16452,133.0819,-544.5826
+-23.27299,135.3974,-548.3519
+-27.38745,136.5738,-543.7432
+-28.42625,137.2787,-544.999
+-26.90228,138.203,-552.2154
+-26.62297,136.7179,-552.6731
+-31.37858,137.075,-553.7796
+-31.11543,134.3567,-554.2411
+-33.53239,138.1837,-550.4041
+-33.98754,134.7741,-549.7601
+-32.98283,135.5666,-551.3098
+-34.2093,137.2358,-549.3679
+-32.66254,137.3012,-547.0446
+-27.36299,135.1011,-551.4717
+477,123.5049,-90.70001
+480.2335,124.1489,-91.02533
+480.0203,124.9692,-91.63489
+479.2165,125.5348,-87.72511
+474.534,126.0601,-87.18559
+474.5464,128.3166,-87.60079
+474.5772,128.404,-88.3747
+478.7708,128.3438,-87.51544
+474.5817,132.6542,-89.60838
+474.8253,132.7423,-90.26788
+477.768,132.5149,-88.18772
+479.2157,132.7363,-89.75407
+479.1284,132.9097,-91.11185
+480.7123,126.8928,-92.31804
+479.7094,126.9448,-92.79026
+476.4677,133.3497,-86.53341
+478.9434,132.2563,-86.0529
+474.8543,134.4187,-91.90849
+475.0404,133.3459,-87.22225
+478.8371,133.0493,-92.22717
+479.251,131.4117,-91.67953
+476.9896,127.939,-85.50867
+475.422,127.9449,-85.69798
+476.4973,123.5626,-87.5971
+473.8307,123.6221,-88.34323
+479.287,123.993,-90.64584
+476.5952,124.2421,-92.86829
+476.4732,123.9845,-90.87888
+478.9963,124.1845,-92.16547
+479.5465,126.8496,-92.78918
+474.6115,128.2302,-87.66431
+-35.5,124.9295,-359.99
+-33.87035,125.7974,-362.7408
+-34.63085,126.4663,-362.9939
+-32.28358,127.6747,-359.9472
+-34.88776,127.8567,-355.9877
+-35.65274,129.9874,-356.3606
+-36.23752,129.9314,-356.8729
+-32.97182,130.4201,-359.5977
+-38.03211,133.8587,-357.8433
+-38.39827,133.8444,-358.4498
+-34.95036,134.2818,-359.4289
+-35.2831,134.3398,-361.5464
+-36.40082,134.2481,-362.3361
+-35.10936,128.2842,-364.0484
+-36.10006,128.1544,-363.5654
+-34.67401,135.2869,-357.4194
+-32.55157,134.5358,-358.9962
+-39.96323,135.1806,-359.5759
+-36.08077,135.0228,-356.739
+-37.4546,134.1496,-362.8137
+-36.45044,132.6883,-362.7181
+-32.4753,130.2341,-356.9364
+-33.59274,130.0598,-355.8346
+-33.47373,125.5185,-357.6595
+-35.70594,125.1912,-356.0527
+-34.13872,125.6283,-361.7592
+-37.54311,125.2087,-361.0655
+-36.0598,125.3166,-359.7137
+-35.50888,125.5053,-362.4926
+-36.18099,128.0464,-363.4335
+-35.64291,129.8971,-356.4471
+-240.7747,117.3092,461.5574
+-242.0506,118.1727,458.6244
+-242.5124,119.003,459.0569
+-238.5198,119.3472,458.617
+-236.5183,119.5476,462.9119
+-236.7784,121.816,463.1376
+-237.5166,121.9385,463.3558
+-238.0111,122.1103,459.1068
+-238.429,126.2293,463.9408
+-239.1249,126.3612,463.9212
+-238.0822,126.2336,460.4666
+-240.0049,126.6144,459.5968
+-241.2548,126.8402,460.1146
+-243.2585,120.9946,458.7067
+-243.3909,121.0025,459.8086
+-236.0577,126.9114,461.219
+-236.4394,125.9593,458.6689
+-240.5876,128.105,464.4889
+-236.2668,126.8457,462.7886
+-242.2133,127.0086,460.7479
+-241.9226,125.3789,460.1058
+-235.578,121.5062,460.1457
+-235.2692,121.4198,461.6917
+-237.672,117.2011,461.0614
+-237.5457,117.1217,463.8271
+-241.4056,117.9402,459.3951
+-242.66,118.1116,462.6577
+-240.7511,117.7614,462.1358
+-242.7446,118.1779,460.1574
+-243.3449,120.8971,459.9582
+-236.8642,121.7368,463.0918
+-281.65,117.9474,-225.01
+-284.0799,118.5683,-227.1748
+-284.5063,119.2567,-226.5159
+-281.1325,120.5314,-228.3173
+-277.7557,121.0772,-225.0322
+-278.3735,123.216,-224.4775
+-278.9843,123.1576,-223.9969
+-281.0581,123.3229,-227.7386
+-280.4738,127.1015,-222.6505
+-281.1374,127.0685,-222.4044
+-281.4624,127.279,-225.9944
+-283.6047,127.2253,-226.0686
+-284.5873,127.1404,-225.1154
+-285.7222,121.0288,-226.3515
+-285.4308,120.9764,-225.282
+-279.4898,128.3886,-225.9478
+-280.594,127.4422,-228.2803
+-282.6063,128.4087,-221.1598
+-279.0775,128.2343,-224.4253
+-285.2513,127.0644,-224.1659
+-284.8934,125.5647,-225.0465
+-278.3451,123.2736,-227.7155
+-277.469,123.2202,-226.403
+-279.0085,118.5769,-226.5945
+-277.8422,118.4552,-224.0852
+-283.1602,118.4717,-226.7176
+-283.1076,118.2598,-223.2248
+-281.5052,118.377,-224.4321
+-284.1341,118.3712,-225.5045
+-285.3115,120.8806,-225.1715
+-278.4519,123.1203,-224.4981
+-1.919983,128.6149,-361.17
+1.065625,129.4391,-359.994
+1.140488,130.2108,-360.693
+-1.425111,130.9343,-357.6687
+-5.823584,131.1976,-359.4226
+-5.683448,133.425,-359.9547
+-5.29463,133.4727,-360.6285
+-1.999219,133.7176,-357.9067
+-4.834688,137.6428,-362.0371
+-4.312049,137.7104,-362.5108
+-2.689429,137.7769,-359.2857
+-0.6821525,138.0029,-360.0053
+-0.1251762,138.0977,-361.2552
+2.015824,132.134,-361.1179
+1.352081,132.0987,-362.0067
+-4.639173,138.6172,-358.5004
+-2.650104,137.706,-356.8364
+-3.563521,139.2951,-364.07
+-5.573517,138.4883,-359.774
+0.1388118,138.159,-362.3842
+0.2940707,136.5818,-361.5835
+-4.502551,133.3116,-356.9412
+-5.795925,133.2106,-357.8412
+-3.825325,128.8077,-358.6767
+-5.827468,128.6624,-360.585
+0.05692601,129.2455,-360.0904
+-1.278123,129.2086,-363.3251
+-2.314387,129.0509,-361.6104
+0.5102315,129.3371,-361.5792
+1.210737,131.9938,-362.0746
+-5.59363,133.3396,-359.9736
+-38.56156,142.65,-574.2891
+-37.81951,142.4352,-571.0674
+-38.83425,142.4333,-570.8221
+-37.49809,138.9946,-572.4477
+-39.59762,138.373,-576.6546
+-41.45741,137.3452,-575.7893
+-41.92208,137.9092,-575.5181
+-39.62201,137.1477,-571.9886
+-45.67483,136.334,-573.78
+-45.9876,136.8006,-573.3481
+-43.44831,135.1991,-571.3418
+-43.82757,136.2768,-569.5273
+-44.7179,137.2581,-569.1726
+-40.30394,141.8015,-569.3777
+-41.02419,142.1738,-570.1356
+-43.72779,133.4112,-572.7018
+-41.6141,133.62,-570.9572
+-48.07376,137.0993,-572.3178
+-44.70503,134.0013,-573.8012
+-45.54111,138.0718,-569.0806
+-43.87845,138.6099,-569.3949
+-39.01635,135.8379,-574.2867
+-39.79346,136.0273,-575.648
+-37.1584,140.1528,-575.585
+-38.74334,140.7837,-577.7671
+-37.90833,142.2516,-572.0786
+-40.43214,143.9469,-573.8118
+-39.23216,142.518,-574.5582
+-38.98552,143.3566,-571.8568
+-41.02406,142.2346,-570.3141
+-41.40064,137.4461,-575.7412
+72.89905,137.6827,-522.2421
+71.49574,138.2702,-519.2991
+72.08885,139.12,-519.1732
+69.11678,139.5362,-521.865
+71.0209,140.1389,-526.1666
+71.26374,142.4102,-525.9509
+71.90813,142.5298,-525.529
+69.03102,142.3427,-522.3643
+72.76277,146.8273,-524.9079
+73.20018,146.9382,-524.3616
+69.92213,146.5593,-522.8956
+70.51649,146.8157,-520.8514
+71.71828,147.0486,-520.2327
+72.23029,141.0555,-518.2354
+73.14554,141.1492,-518.856
+69.12682,147.3509,-524.8617
+67.50156,146.185,-522.9763
+74.51391,148.6818,-523.5032
+70.44746,147.407,-525.7361
+72.81776,147.2416,-519.9131
+72.21408,145.5737,-519.8322
+68.23777,141.8915,-524.9198
+69.20081,141.9393,-526.1702
+70.48977,137.6194,-524.2609
+72.48974,137.768,-526.1713
+71.66097,138.1187,-520.306
+74.93195,138.52,-521.4837
+73.2989,138.1808,-522.6049
+73.10471,138.3809,-519.7794
+73.23235,141.0575,-518.9962
+71.28912,142.3252,-525.8622
+466.3445,123.3778,-61.40021
+463.2293,123.5867,-62.50846
+463.0194,124.3347,-61.81116
+465.3233,125.5228,-64.89874
+469.6216,126.6636,-63.25099
+469.0568,128.8243,-62.7254
+468.6815,128.8004,-62.0427
+465.3423,128.3666,-64.68647
+467.4397,132.8104,-60.64156
+466.9247,132.7779,-60.15592
+465.2489,132.4944,-63.34173
+463.2531,132.3268,-62.57561
+462.7166,132.3211,-61.31331
+461.7916,126.0514,-61.37389
+462.4691,126.1556,-60.50103
+466.9764,133.6956,-64.17685
+465.1693,132.3954,-65.78912
+465.9135,134.1978,-58.58619
+467.9462,133.7648,-62.92523
+462.4712,132.3393,-60.17856
+462.6122,130.7553,-60.96855
+467.8542,128.4535,-65.70947
+469.1619,128.6175,-64.84004
+468.1179,123.9201,-63.93893
+470.1517,124.1893,-62.07812
+464.2583,123.5967,-62.43525
+465.6467,123.8525,-59.23304
+466.6549,123.8868,-60.97121
+463.8294,123.6104,-60.93649
+462.6299,126.0812,-60.43603
+468.9861,128.723,-62.70398
+19.55005,129.5249,-344.04
+19.93379,129.8777,-340.7682
+20.57927,130.6841,-340.9195
+16.69341,131.495,-341.623
+16.13778,132.4386,-346.2375
+16.65853,134.6644,-346.0408
+17.43594,134.7132,-346.0127
+16.61188,134.3383,-341.8284
+18.86774,138.8864,-345.6668
+19.53277,138.9233,-345.425
+17.47031,138.5439,-342.4856
+19.05804,138.5697,-341.0446
+20.42165,138.6873,-341.1343
+21.35804,132.5088,-340.077
+21.8233,132.6237,-341.078
+15.84558,139.5609,-343.6899
+15.33618,138.2854,-341.3089
+21.25045,140.5139,-345.2762
+16.52085,139.646,-345.1212
+21.53968,138.7995,-341.427
+20.91945,137.1597,-341.1452
+14.57267,134.1783,-343.6115
+14.74819,134.308,-345.1753
+16.44894,129.7677,-344.4964
+17.17346,130.0181,-347.1579
+19.53905,129.82,-341.7196
+21.74688,130.1932,-344.4091
+19.74658,130.0387,-344.5268
+21.06338,129.9653,-342.0125
+21.81631,132.5428,-341.2483
+16.7185,134.57,-345.9841
+-15.10981,127.9,-619.5189
+-17.95345,128.1621,-621.1985
+-17.42857,128.236,-622.0979
+-17.48516,124.539,-620.491
+-13.06964,123.3482,-619.2351
+-12.49556,122.5371,-621.3031
+-12.31992,123.1533,-621.747
+-16.50862,122.866,-622.584
+-11.11234,122.0079,-625.8477
+-11.16551,122.5473,-626.3041
+-14.49953,121.1848,-626.0471
+-15.44576,122.5452,-627.4079
+-14.99957,123.602,-628.1599
+-17.50511,127.8916,-624.2242
+-16.43111,128.1677,-624.18
+-13.4864,119.2185,-625.5656
+-16.18061,119.6181,-625.1956
+-10.43768,123.0798,-628.4696
+-11.97076,119.6661,-625.4459
+-14.42589,124.45,-628.7076
+-15.30192,124.8707,-627.2216
+-15.392,121.1929,-620.7626
+-13.86155,121.1967,-620.3743
+-15.36704,125.1813,-617.9611
+-12.65093,125.523,-617.5399
+-17.18232,127.8267,-620.601
+-14.04689,129.3237,-621.0196
+-14.46493,127.7526,-619.8382
+-16.50089,128.9919,-621.3811
+-16.29772,128.2,-624.0505
+-12.56051,122.6422,-621.2813
+158.2,127.5618,524
+155.2181,127.2724,522.5856
+154.7889,127.8431,523.3472
+157.0058,129.9513,520.7216
+160.7875,131.7118,522.9781
+159.7082,133.597,523.7165
+159.2942,133.3897,524.3435
+156.3639,132.6676,521.307
+157.0688,136.782,526.1115
+156.5372,136.567,526.5275
+155.2314,136.4259,523.164
+153.2701,135.7234,523.672
+152.6488,135.4108,524.8542
+153.1735,129.1726,523.8655
+153.7372,129.2831,524.8151
+156.7041,138.0795,522.6938
+155.3739,136.6883,520.7316
+155.1078,137.4826,528.1466
+157.5289,138.1603,524.0447
+152.3148,135.2025,525.9465
+152.8736,133.8246,524.976
+158.8652,133.441,520.5934
+160.0275,133.7435,521.6184
+160.0036,128.8502,521.7704
+161.767,129.2565,523.8673
+156.2088,127.4891,522.7747
+157.2404,127.5401,526.1184
+158.3516,128.0533,524.5244
+155.6684,127.1818,524.2044
+153.9049,129.2355,524.8875
+159.6607,133.4809,523.7163
+-389.5,117.6475,511.4
+-388.0749,119.8484,509.3748
+-388.9701,120.3808,509.305
+-387.0514,120.7861,512.8273
+-389.7023,118.8436,516.2467
+-390.9557,120.7305,516.611
+-391.4986,120.7529,516.0521
+-388.3952,122.9588,514.0948
+-394.176,124.2574,516.4193
+-394.5151,124.4012,515.814
+-391.2585,125.9215,515.4659
+-391.5517,126.7252,513.4997
+-392.5968,126.7081,512.6116
+-389.8555,122.3149,508.9574
+-390.7944,121.7959,509.2416
+-391.2769,126.0993,517.7226
+-389.0034,126.5007,516.2308
+-396.3351,125.6964,515.0978
+-392.5905,125.293,518.0915
+-393.5847,126.5772,512.0157
+-392.2568,125.4495,511.6726
+-387.9232,121.8644,516.5326
+-388.9868,121.0373,517.3558
+-387.7268,117.7073,513.9955
+-389.8445,116.3051,515.1003
+-388.314,119.2567,510.1854
+-391.527,117.8729,510.2822
+-390.1429,117.7652,511.7354
+-389.5975,119.1349,509.3088
+-390.8493,121.6304,509.3137
+-390.9224,120.6854,516.4988
+-73.64001,120.7649,-40.06
+-72.45613,121.366,-37.02466
+-71.81521,122.096,-37.40687
+-75.69486,123.1824,-37.26416
+-77.2849,123.766,-41.69401
+-76.58858,125.9458,-41.86071
+-75.82587,125.9281,-42.02039
+-75.63858,125.9931,-37.74384
+-74.08483,129.9728,-42.46143
+-73.38018,129.9717,-42.38712
+-74.69264,130.0332,-39.02381
+-72.80592,130.0441,-38.00488
+-71.49957,130.0326,-38.42276
+-70.73931,123.9112,-36.96735
+-70.52286,123.8969,-38.05575
+-76.49033,131.0809,-39.91547
+-76.49199,130.0676,-37.36038
+-71.57771,131.4114,-42.81278
+-76.17628,130.9812,-41.46569
+-70.48035,130.0197,-38.97887
+-71.11948,128.4719,-38.38841
+-78.05373,125.8591,-38.97378
+-78.25265,125.8362,-40.53996
+-76.73709,121.2399,-39.80187
+-76.66145,121.1926,-42.57016
+-73.07164,121.2607,-37.84581
+-71.55849,121.202,-41.00084
+-73.5338,121.215,-40.63073
+-71.65689,121.2448,-38.50055
+-70.57597,123.8024,-38.21014
+-76.52295,125.8518,-41.80988
+-52.54902,137.3049,-553.1447
+-55.51909,137.7286,-551.7393
+-55.96227,137.8281,-552.6792
+-54.8706,134.0645,-551.7328
+-51.4176,132.6861,-554.6771
+-52.84608,131.9544,-556.3167
+-53.07994,132.5848,-556.7109
+-56.14068,132.4612,-553.7201
+-55.84818,131.594,-560.0186
+-56.22514,132.1551,-560.2308
+-57.96164,130.8821,-557.3321
+-59.54199,132.3314,-557.3141
+-59.85388,133.4079,-558.1049
+-57.77897,137.5845,-553.8132
+-57.12368,137.8262,-554.6756
+-57.10261,128.8665,-557.9011
+-58.28963,129.3286,-555.4653
+-57.57405,132.7649,-562.0505
+-56.12746,129.2627,-559.0859
+-59.93699,134.2627,-558.8862
+-59.1799,134.6404,-557.3252
+-54.10161,130.6735,-553.6201
+-52.92079,130.6138,-554.6666
+-51.55698,134.5263,-552.0587
+-49.66404,134.7671,-554.0663
+-54.61087,137.3433,-552.0407
+-53.11204,138.7639,-554.866
+-52.45814,137.1532,-553.8576
+-54.80784,138.5223,-553.0415
+-56.94009,137.8484,-554.713
+-52.85878,132.0602,-556.2505
+720.5,114.7749,-475.8
+722.952,115.642,-477.8524
+722.3478,116.3773,-478.2816
+723.6961,117.2645,-474.5873
+720.0042,117.4616,-471.6169
+719.5175,119.6588,-472.0636
+719.119,119.6706,-472.7333
+723.0929,120.0352,-474.2835
+717.9451,123.7625,-473.9434
+717.7856,123.8036,-474.6326
+721.3862,124.0236,-474.4731
+721.7329,124.2032,-476.5816
+720.9131,124.2324,-477.6808
+722.327,118.2725,-479.3081
+721.2294,118.1959,-479.1627
+721.0811,124.912,-472.4135
+723.5417,124.0755,-473.3083
+716.7286,125.3044,-476.0931
+719.5197,124.7241,-472.2176
+720.0563,124.2357,-478.4646
+720.8949,122.6999,-478.163
+722.725,119.6907,-471.6172
+721.3121,119.5512,-470.9263
+721.7309,115.102,-472.9256
+719.0945,114.8713,-472.1083
+722.3821,115.449,-477.0143
+718.9127,115.2566,-477.4301
+719.9053,115.1902,-475.6839
+721.3035,115.4635,-478.1399
+721.1053,118.0885,-479.0696
+719.5485,119.572,-472.1487
+187.9344,131.0866,486.9314
+189.1593,131.5598,489.9731
+189.7842,132.3161,489.6161
+185.8932,133.3399,489.8707
+184.224,134.1102,485.4989
+184.8884,136.3049,485.4252
+185.6486,136.3055,485.2531
+185.9043,136.1706,489.5244
+187.3283,140.3907,484.9778
+188.034,140.3959,485.041
+186.7756,140.2798,488.4235
+188.6782,140.2689,489.4123
+189.9777,140.2955,488.9741
+190.8428,134.1234,490.1247
+191.0417,134.1637,489.0336
+184.9499,141.3431,487.6107
+185.0031,140.21,490.1145
+189.81,141.8794,484.6563
+185.2401,141.3213,486.0528
+190.9878,140.3233,488.4022
+190.379,138.7405,488.9282
+183.4715,136.0611,488.3272
+183.2476,136.1096,486.765
+184.8359,131.5052,487.26
+184.8673,131.5902,484.4917
+188.532,131.4849,489.1575
+189.9944,131.5969,485.9801
+188.0254,131.5646,486.3811
+189.936,131.5199,488.4808
+190.9874,134.0759,488.8757
+184.9561,136.2096,485.4705
+33.31,848.48,381.45
+34.11758,836.4095,383.0468
+37.91133,836.695,383.6036
+29.63244,841.5796,394.9206
+32.01936,858.7986,396.6315
+38.86912,858.0745,401.527
+41.08558,857.5341,399.7843
+36.51449,842.7415,402.7703
+55.16933,855.9988,407.8452
+56.97962,854.7444,406.4452
+49.46436,845.1855,411.8323
+53.3412,839.0415,408.7345
+57.35475,838.6035,405.6979
+44.24959,833.4231,387.0882
+46.13142,836.812,385.7908
+47.98701,850.6253,417.9757
+42.64895,842.0934,416.8782
+65.51553,853.4276,406.6776
+50.50913,855.4548,415.8807
+60.7584,839.0433,403.1461
+54.92757,838.1608,400.3191
+31.19871,850.3703,406.4356
+32.52265,855.973,405.6133
+25.66737,851.9437,389.4297
+29.14677,861.2399,387.0759
+33.22693,840.087,383.3928
+41.03633,848.653,377.7556
+35.27726,850.2045,382.1393
+37.81275,840.2995,379.9438
+45.96971,837.4246,385.5056
+38.77884,857.8215,401.1512
+-1.139013,128.76,-576.0675
+-2.131907,130.3062,-573.3108
+-1.670778,129.5775,-572.7224
+0.8740916,132.1394,-574.5148
+3.492175,129.7452,-577.6622
+5.078647,129.0972,-576.1367
+4.785881,128.4861,-575.7515
+3.369651,131.6409,-573.2277
+7.578394,126.8948,-572.7093
+7.24862,126.4997,-572.2223
+6.774769,129.917,-571.1567
+5.637004,129.487,-569.3907
+5.198292,128.329,-568.8008
+-0.7520858,129.1628,-570.8172
+-0.5039114,128.1904,-571.291
+8.723043,130.3518,-572.2242
+7.041021,132.345,-571.3563
+7.818542,124.9685,-570.5389
+9.007188,128.9657,-572.9382
+4.927495,127.2493,-568.4703
+3.710102,128.164,-569.3835
+4.700974,132.2525,-575.5118
+5.276725,131.1807,-576.5182
+0.5156714,130.9288,-577.6302
+1.342934,128.7605,-579.142
+-1.687439,130.0754,-574.2126
+-1.36565,126.6888,-575.0342
+-0.6209414,128.2393,-576.0735
+-2.099733,128.6665,-573.6877
+-0.5102832,128.1093,-571.4612
+4.954683,129.0973,-576.1177
+-572.05,113.4502,65.44995
+-568.9149,114.1219,64.61554
+-569.2416,114.7211,63.82561
+-569.7369,116.3508,67.47955
+-574.3795,116.7925,68.34206
+-574.572,118.8319,67.30867
+-574.6163,118.6941,66.54277
+-570.3704,119.0775,66.93477
+-575.0376,122.4045,64.16765
+-574.8604,122.3102,63.48811
+-571.7368,122.8275,65.22397
+-570.4537,122.655,63.51458
+-570.6732,122.426,62.18017
+-568.758,116.3963,62.55854
+-569.7998,116.2639,62.19985
+-572.9444,124.0423,66.7039
+-570.3614,123.2491,67.20802
+-575.1015,123.4427,61.44796
+-574.4227,123.7744,66.19936
+-571.0715,122.2248,61.10817
+-570.4899,120.8353,62.04821
+-571.9323,119.1859,69.15121
+-573.5065,119.0647,69.13511
+-572.2795,114.3757,68.44576
+-574.9987,114.0947,68.00005
+-569.8099,114.0383,65.12166
+-572.6986,113.5124,63.2174
+-572.6248,113.8332,65.19997
+-570.2471,113.7705,63.64938
+-569.9544,116.1656,62.24498
+-574.5065,118.734,67.26556
+315.1,127.8287,-276
+312.643,128.6807,-278.0526
+312.3385,129.4318,-277.3947
+315.733,130.2471,-279.4109
+319.3294,130.4682,-276.3272
+319.0008,132.679,-275.8095
+318.4152,132.7065,-275.2958
+316.169,133.0234,-278.9265
+317.48,136.8334,-273.9998
+316.832,136.8863,-273.7181
+316.3334,137.0426,-277.2909
+314.199,137.244,-277.2505
+313.2682,137.3017,-276.2447
+311.3517,131.3404,-277.2233
+311.6943,131.2807,-276.1694
+318.4228,137.9089,-277.3837
+317.0855,137.0423,-279.6234
+315.6039,138.424,-272.4414
+318.8987,137.7452,-275.8809
+312.6542,137.3299,-275.2596
+312.7825,135.7762,-276.1094
+318.8542,132.6503,-279.0447
+319.79,132.5258,-277.7791
+317.7043,128.0969,-277.7406
+318.987,127.9005,-275.2936
+313.569,128.4864,-277.6417
+313.7919,128.3588,-274.1515
+315.3268,128.2525,-275.4446
+312.6596,128.5342,-276.3763
+311.8074,131.1742,-276.0623
+318.9106,132.5929,-275.8228
+-234.9,120.3384,-215.6
+-238.2076,120.1662,-215.6799
+-238.2771,120.9833,-215.0338
+-237.1743,121.9141,-218.7981
+-232.7345,123.5799,-218.7248
+-233.3503,125.7439,-218.2753
+-233.4941,125.7839,-217.5103
+-237.4103,124.7544,-218.9
+-234.6901,129.8426,-216.2133
+-235.0251,129.8374,-215.589
+-237.5508,129.0068,-218.0323
+-239.1853,128.7962,-216.6604
+-239.3066,128.92,-215.2998
+-239.497,122.6476,-214.4114
+-238.6016,122.9175,-213.8139
+-236.3068,130.2096,-219.4918
+-238.3621,128.5753,-220.3041
+-235.6613,131.3762,-213.9366
+-235.0154,130.5173,-218.6261
+-239.1944,129.0718,-214.1541
+-239.1247,127.4111,-214.7787
+-235.3571,124.8889,-220.6691
+-233.8734,125.264,-220.2807
+-234.0589,120.6654,-218.6116
+-231.5978,121.331,-217.5294
+-237.2133,120.2619,-215.9378
+-234.9514,121.0462,-213.3852
+-234.5325,120.9219,-215.3468
+-237.1629,120.4445,-214.3904
+-238.4214,122.8646,-213.7958
+-233.3993,125.6414,-218.2222
+-463.2483,173.4185,-544.3792
+-519.6959,171.5664,-512.2737
+-493.5475,171.5887,-490.6765
+-509.8971,168.6234,-472.0079
+-439.4106,170.3683,-589.405
+-461.635,170.6285,-563.6077
+-494.374,168.6254,-468.5876
+-477.6938,167.7735,-456.6851
+-494.7226,169.7188,-569.4561
+-470.627,170.5817,-571.9469
+-443.7839,170.2185,-556.1314
+-447.8928,169.8969,-596.2538
+-455.8235,169.8929,-583.1416
+-495.614,168.5853,-451.5638
+-463.9886,166.2595,-445.1516
+-507.8447,174.8969,-467.3699
+-435.9703,176.6771,-585.7387
+-499.0135,174.8988,-466.5386
+-465.2612,176.7274,-567.446
+-508.3087,166.6159,-521.1072
+-508.9388,166.1332,-501.8445
+-447.9926,166.5508,-536.3981
+-486.0245,166.7843,-520.6045
+-454.3364,171.0926,-556.9726
+-449.9893,170.7031,-609.5811
+-465.2214,170.6683,-600.8252
+-454.3326,170.6672,-593.4078
+-475.7516,169.4478,-481.5532
+-425.5636,170.9146,-582.2858
+-437.1348,170.0358,-548.324
+-487.5106,168.729,-473.2426
+-460.5895,170.7302,-576.0824
+-446.8648,173.9925,-574.5281
+-431.5844,166.5408,-541.8405
+-494.5568,165.8654,-508.9445
+-514.9614,165.8506,-481.8878
+-468.9739,167.7817,-557.3561
+-467.5881,167.0719,-587.6777
+-477.4112,167.5988,-578.0519
+-466.7272,167.742,-581.9838
+-468.1,162.0703,-438.1355
+-472.1885,165.1557,-464.0625
+-483.4606,164.4554,-447.8244
+-488.1386,165.7826,-445.8306
+-479.7072,165.6932,-436.0613
+-482.0803,168.1529,-563.6348
+-489.8486,167.8579,-562.6605
+-424.8118,176.3877,-617.555
+-461.6971,169.1066,-461.3499
+-412.1239,176.3881,-604.7654
+-492.9594,171.2624,-591.2963
+-467.7635,173.0663,-601.0547
+-500.2555,171.7686,-460.9908
+-450.0153,167.9574,-571.0875
+-464.0699,172.9243,-590.0583
+-472.0331,173.9994,-555.288
+-492.2587,171.6278,-444.7567
+-477.0564,166.1861,-444.9456
+-470.8788,170.8459,-459.7961
+-469.0858,173.5047,-585.6613
+-470.2494,168.6716,-440.1599
+-480.8485,173.5302,-575.7501
+-493.1938,170.1514,-506.2724
+-433.5526,171.0759,-543.5513
+-513.4925,170.1276,-479.2579
+-455.0927,175.9199,-581.9558
+-464.653,172.2431,-443.7305
+-495.9288,174.6158,-452.9047
+-444.3302,176.2949,-557.1526
+-478.8917,173.8266,-456.2491
+-496.1637,175.5346,-570.9937
+-471.2947,176.6276,-573.0722
+-449.205,175.8587,-595.2536
+-481.6625,165.7273,-485.2708
+-452.7504,167.0814,-600.2808
+-458.3426,167.0719,-599.2931
+-451.6458,167.049,-602.7617
+-452.9298,167.6582,-563.9601
+-508.142,174.7996,-466.7769
+-436.0478,176.579,-585.08
+-499.6063,174.8015,-466.8364
+-465.1798,176.6139,-568.1018
+-451.4496,167.9174,-570.8639
+-445.801,166.7545,-591.4508
+-475.6301,167.6201,-570.0715
+-499.2944,166.2889,-567.2991
+-477.6353,164.652,-451.4342
+-448.8432,167.3276,-554.2969
+-500.9272,165.5736,-451.4252
+-464.2845,162.331,-440.4827
+-450.8535,166.8997,-585.0543
+-452.5518,173.0497,-604.3488
+-451.826,173.5681,-562.1706
+-451.8967,173.0832,-598.6689
+-479.9047,171.7354,-485.6725
+-459.9512,173.0677,-598.3926
+-437.1456,170.3849,-585.3759
+-498.9333,168.6189,-467.8274
+-463.8938,170.4665,-567.6371
+-509.1335,168.6169,-467.4492
+-466.4749,167.0757,-602.5274
+-501.198,165.778,-462.7057
+-450.3287,170.9371,-572.0838
+-451.3541,173.917,-570.9565
+-514.1908,165.6129,-470.9344
+-495.4443,165.6149,-472.8821
+-457.8962,167.6277,-565.9885
+-443.0545,167.3205,-586.9384
+-530.912,169.9289,-491.0745
+-477.3204,169.827,-504.3366
+-432.9301,168.8015,-528.1761
+-466.8477,173.0837,-606.6409
+-505.1904,171.786,-463.7641
+-501.8381,166.0335,-488.3547
+-415.6184,166.1053,-526.3128
+-451.5903,165.3019,-485.0331
+-471.6771,166.0396,-488.3411
+-454.4576,163.4034,-451.7757
+-466.7245,165.4732,-469.421
+-486.8363,167.2492,-598.3688
+-408.3191,172.1543,-596.3264
+-419.5375,172.3399,-609.8467
+-482.1622,168.338,-558.3799
+-494.7328,168.9973,-496.2858
+-520.8272,168.8526,-517.8361
+-458.4848,170.8141,-547.559
+-454.4576,170.6763,-578.9929
+-457.5656,169.7667,-605.5576
+-431.631,170.6116,-579.543
+-488.1586,168.5835,-480.0036
+-493.8748,167.6706,-497.4831
+-457.1282,169.4033,-547.2447
+-519.9396,167.5264,-519.0123
+-450.8035,165.217,-483.9699
+-415.8785,166.0977,-525.0132
+-502.6169,166.0364,-489.4271
+-470.8966,166.0574,-487.27
+-453.6826,163.1713,-450.7258
+-436.118,168.3653,-585.574
+-464.8595,168.4225,-567.3848
+-499.0893,166.5889,-466.8131
+-508.119,166.587,-467.2939
+-418.4221,172.3729,-610.6837
+-487.9321,167.2727,-599.2316
+-407.0577,172.3053,-596.9025
+-467.8884,165.5877,-468.6606
+-432.9693,166.9988,-547.8576
+-495.5232,165.8825,-502.829
+-515.6822,165.8467,-475.7385
+-492.8848,166.098,-491.0477
+-518.9034,166.0875,-512.5529
+-462.9174,167.8872,-544.2358
+-422.5361,176.336,-608.8948
+-485.1751,171.2617,-595.7219
+-411.7212,175.9025,-595.8333
+-463.3813,169.2371,-470.1434
+-516.6591,170.0322,-474.799
+-496.5363,170.0711,-501.9436
+-432.0789,171.1989,-548.8173
+-507.0626,174.7994,-467.3058
+-435.2119,176.5874,-585.9438
+-499.0781,174.8014,-465.7566
+-466.0168,176.6201,-567.239
+-426.0997,170.8949,-577.6045
+-436.6089,170.1813,-553.0043
+-491.7407,168.7384,-475.3184
+-460.0638,170.8032,-580.7643
+683.4365,117.89,596.9787
+730.9708,149.5176,-684.134
+762.1532,250.2914,-669.0444
+761.4437,170.6752,-674.8663
+786.7144,169.9385,-696.6931
+781.3282,170.8839,-652.0045
+734.5092,171.5176,-648.6955
+740.4346,170.4966,-696.889
+795.3293,170.308,-672.619
+761.2928,171.3013,-643.1655
+724.402,171.1777,-672.1898
+761.1943,170.1069,-703.8748
+606.6423,154.2879,-487.836
+622.5848,153.8956,-506.3033
+638.5274,153.5032,-524.7705
+652.0524,153.1704,-540.4375
+667.995,152.7781,-558.9048
+682.6494,153.0176,-575.8551
+696.1744,152.6848,-591.522
+712.1169,152.2924,-609.9893
+484.3638,154.2879,-348.2149
+515.3708,153.1704,-379.234
+500.2708,153.1704,-363.534
+606.6423,154.2879,-487.836
+529.7739,153.1704,-400.8164
+545.7165,152.7781,-419.2837
+560.3708,153.0176,-436.234
+573.8959,152.6848,-451.9008
+589.8384,152.2924,-470.3682
+454.7308,198.5176,-309.074
+723.4208,155.0976,-622.214
+716.2808,155.0976,-627.924
+685.2008,156.0176,-575.824
+676.9091,156.054,-580.9362
+645.8826,156.9612,-530.1118
+639.6208,156.9376,-535.624
+607.5508,157.8876,-484.414
+601.0708,157.8776,-490.574
+569.4608,158.8476,-437.714
+562.0009,158.8676,-444.364
+530.9608,159.8076,-391.854
+523.8208,160.0576,-398.144
+485.1108,161.0176,-352.174
+492.0008,160.7676,-346.004
+-123.5859,163.3095,148.0179
+-126.6022,162.7957,145.7594
+-690.1534,141.5,-16.66249
+87.39998,175.8,-72
+155.3,175.8,-111
+-611.5449,113.915,-76.2429
+-333.8956,227.7,-491.4001
+-129.1335,163.0237,145.6271
+-439.1,162.2,60.80001
+-382.0617,227.7,-535.0851
+-100.5,158.2,574.4
+163.3,175.8,-11.90003
+-458.4193,213.62,40.16998
+-126.9061,162.6083,146.5063
+356.2,177.2,485.2
+147.2,124,-359.1
+-123.3958,163.4733,147.2149
+-337.2119,243.96,-545.4359
+439.262,263.2822,105.1209
+492.5257,167.75,89.05804
+464.8,167.75,90.1
+496.9,167.75,79
+435.8144,167.75,90.48581
+466.4,167.75,159.3
+446.4854,167.75,46.58933
+424.0146,167.75,69.64379
+402.2,167.75,68.1
+390.4,167.75,123.3
+359.2,167.75,149.1
+313.3,167.75,167.8
+288,167.75,221.9
+541.9,167.75,30.7
+469.8,167.75,36.6
+-105.3001,158.2,652.6
+656.8568,157.1,606.5244
+-413.46,253.76,32.69003
+-42.30004,158.2,615.3
+173.2,175.8,-123.3
+-128.2972,162.2037,146.662
+-24.01165,138.5,-537.7819
+456.5,137.7,69.3
+434.28,148.61,35.02
+433.99,148.58,37.15
+529.89,139.27,86.94
+433.07,148.49,35.51
+431.3,148.33,34.24
+429.78,148.19,32.76
+432.68,148.46,32.48
+434.59,147.96,32.74
+436.7,148.83,32.14
+436,148.76,33.95
+434.46,148.62,33.79
+529.52,139.36,88.74
+530.05,139.29,88.09
+530.58,139.27,89.6
+534.49,137.4,102.95
+534.19,137.44,103.66
+529.36,130.8,92.36
+527.92,130.92,91.17
+528.15,130.86,89.54
+526.63,131.01,90.56
+526.96,131.01,91.75
+525.15,131.15,91.54
+526.78,131.07,95.24
+526.06,131.19,97.78
+529.53,131.07,93.99
+528.71,130.9,94.47
+526.97,139.92,106.7
+525.72,140.23,107.58
+523.94,140.65,108.04
+523.08,140.87,108.97
+521.72,141.19,109.13
+502.13,134.36,99.61
+502.7,134.32,99.14
+501.35,134.13,99
+501.1,134.15,99.22
+502.16,134.51,100.26
+501.39,134.27,99.6
+503.11,134.29,95.19
+503.33,131.99,89.08
+502.27,132,89.23
+502.55,132.08,89.68
+503.33,132.15,89.97
+502.44,132.17,90.43
+501.94,132.04,89.97
+501.94,132.04,89.97
+503.7,132.04,91.1
+503.27,132.04,91
+502.01,133.39,91
+492.06,134.8,99.72
+492.36,134.25,98.94
+492.88,134.52,99.45
+492.68,133.84,98.2
+492.04,133.69,97.66
+491.65,134.05,98.52
+491.25,134.41,99.27
+491.25,134.78,100.17
+491.88,134.48,99.27
+492.11,133.9,98.19
+492.11,133.9,98.19
+491.32,132.11,88.95
+492.48,132.02,89.4
+496.82,131.95,90.3
+491.79,132.2,90.29
+482.49,134.06,84.96
+481.38,134.43,83.01
+483.08,134.12,83.05
+481.97,134.49,81.16
+426.11,134.25,66.52
+426.47,134.31,64.94
+427.63,134.43,64.54
+427.63,134.43,64.54
+427.38,134.43,65.79
+428.35,134.48,66.33
+428.78,134.54,64.86
+428.6,134.54,63.53
+427.51,134.44,63.3
+426.37,134.32,63.93
+427.57,134.42,65.32
+428.95,144.06,91.52
+427.98,143.97,89.53
+428.61,144.07,88.74
+429.23,144.13,90.15
+428.66,144.04,90.53
+429.05,144.04,93.17
+433.3,152.8,98.32
+432.78,152.68,97.64
+432.23,152.53,97.32
+433.17,152.81,97.41
+433.73,152.94,98.15
+432.63,152.61,98.04
+434.08,146.87,114.6
+435.05,147.15,113.75
+434.41,146.98,113.54
+433.09,146.07,112.55
+433.01,145.63,111.66
+431.85,145.22,111.26
+433.98,144.18,111.75
+435.14,147.2,112.98
+430.11,133.44,105.08
+430.67,133.63,104.12
+431.97,134.03,104.1
+431.82,134,102.87
+432.9,134.33,103.06
+432.9,134.33,103.06
+433.15,134.42,102.16
+433.75,134.6,101.85
+433.65,134.59,101.25
+434.94,134.97,101.66
+434.85,134.98,99.71
+436.21,135.36,101.53
+440.09,134.75,92.77
+440.78,139.54,90.86
+441.43,134.86,92.84
+443.39,135.46,95.57
+444.32,135.41,94.62
+441.53,139.4,91.56
+440.8,134.95,93.78
+447.71,138.19,106.72
+449.79,138.25,106.06
+448.06,138.1,105.18
+447.08,138.07,105.8
+448.37,138.21,106.13
+432.6,137.726,32.1
+432.96,137.786,30.52001
+434.12,137.906,30.12001
+434.12,137.906,30.12001
+433.87,137.906,31.37001
+434.84,137.956,31.91001
+435.27,138.016,30.44001
+435.09,138.016,29.11
+434,137.916,28.88001
+432.86,137.796,29.51001
+434.06,137.896,30.90001
+395.65,142.64,60.85
+396.01,142.7,59.27
+397.17,142.82,58.87
+397.17,142.82,58.87
+396.92,142.82,60.12
+397.89,142.87,60.66
+398.32,142.93,59.19
+398.14,142.93,57.86
+397.05,142.83,57.63
+395.91,142.71,58.26
+397.11,142.81,59.65
+389.1,151.05,70.2
+389.46,151.11,68.62
+390.62,151.23,68.22
+390.62,151.23,68.22
+390.37,151.23,69.47
+391.34,151.28,70.01
+391.77,151.34,68.54
+391.59,151.34,67.21
+390.5,151.24,66.98
+389.36,151.12,67.61
+390.56,151.22,69
+411.19,150.6,55.37
+411.55,150.66,53.79
+412.71,150.78,53.39
+412.71,150.78,53.39
+412.46,150.78,54.64
+413.43,150.83,55.18
+413.86,150.89,53.71
+413.68,150.89,52.38
+412.59,150.79,52.15
+411.45,150.67,52.78
+412.65,150.77,54.17
+381.88,153.54,111.75
+382.24,153.6,110.17
+383.4,153.72,109.77
+383.4,153.72,109.77
+383.15,153.72,111.02
+384.12,153.77,111.56
+384.55,153.83,110.09
+384.37,153.83,108.76
+383.28,153.73,108.53
+382.14,153.61,109.16
+383.34,153.71,110.55
+347.963,140.131,135.92
+348.365,140.091,136.282
+348.502,140.067,136.637
+348.314,140.041,137.238
+348.921,140.05,136.391
+348.421,140.05,136.891
+348.93,140.011,137.152
+348.756,140.02,136.254
+348.756,140.02,136.254
+348.649,140.011,136.601
+349.064,140.02,136.758
+348.957,140.011,137.105
+349.064,140.02,136.758
+349.576,140.011,136.376
+349.97,139.936,136.369
+349.891,139.936,135.891
+349.707,139.936,136.625
+350.2,139.936,137.017
+349.187,139.869,137.8
+349.794,139.848,137.743
+349.263,139.819,138.075
+349.747,139.733,138.482
+350.187,139.741,138.18
+350.253,139.779,137.645
+350.517,139.741,137.515
+349.811,139.874,137.29
+349.894,139.889,136.855
+474.0157,131.4544,25.66221
+474.218,131.323,25.254
+474.22,131.4395,25.78376
+474.052,131.544,26.10975
+473.4888,131.6951,26.34855
+474.5071,131.4883,26.27143
+473.8119,131.6021,26.21123
+474.4897,131.4004,26.0743
+473.9584,131.6971,26.75729
+474.1666,131.4935,26.21161
+474.4897,131.4004,26.0743
+474.3336,131.5915,26.61092
+474.0104,131.6846,26.74825
+474.3336,131.5915,26.61092
+474.9504,131.5083,26.75513
+475.2062,131.4725,27.06192
+475.4973,131.3113,26.70973
+474.8456,131.5301,27.02596
+474.8941,131.7025,27.62978
+473.639,131.7959,27.38525
+474.0836,131.8149,27.80268
+473.4831,131.8444,27.62453
+473.4995,131.9398,28.25532
+474.0135,131.8916,28.39096
+474.4497,131.7616,28.0996
+474.7135,131.7088,28.22463
+474.4257,131.6953,27.52915
+474.7971,131.5773,27.31833
+473.6039,131.863,30.28134
+473.3156,131.9123,30.23075
+472.9382,131.8268,30.6078
+472.405,131.8298,30.581
+472.2684,132.0015,29.98178
+473.263,131.53,28.802
+472.3756,132.086,29.72618
+478.2825,131.9902,26.80549
+477.7625,131.8072,27.56649
+478.3485,131.7842,27.50549
+477.7325,131.7942,27.28149
+476.17,131.59,30
+476.659,131.468,29.841
+476.814,131.516,30.159
+477.1285,137.3382,20.61249
+478.6475,137.3362,21.73749
+478.0815,137.3912,21.95549
+478.1835,137.4612,22.85849
+487.4885,133.1482,26.39249
+487.4585,133.2182,27.18249
+486.8685,133.2082,26.69249
+486.7885,133.2882,27.60249
+485.8285,133.3082,27.11249
+484.93,133.72,83.79
+483.82,134.09,81.84
+485.52,133.78,81.88
+484.41,134.15,79.99001
+447.54,137.12,57.04
+447.9,137.18,55.46001
+449.06,137.3,55.06001
+449.06,137.3,55.06001
+448.81,137.3,56.31001
+449.78,137.35,56.85001
+450.21,137.41,55.38
+450.03,137.41,54.05
+448.94,137.31,53.82001
+447.8,137.19,54.45
+449,137.29,55.84
+451.4861,137.9242,59.54
+451.8333,138.0368,57.96
+452.9628,138.327,57.56
+452.9628,138.327,57.56
+452.7155,138.29,58.81
+453.6675,138.4828,59.35
+454.0839,138.6058,57.88
+453.9059,138.5791,56.55
+452.8427,138.3191,56.32
+451.7329,138.0319,56.95
+452.905,138.3082,58.34
+454.3049,138.5242,56.66417
+454.6197,138.5983,55.07513
+455.731,138.9143,54.64494
+455.731,138.9143,54.64495
+455.5076,138.9087,55.89995
+456.4617,139.1513,56.41553
+456.8473,139.2415,54.9348
+456.6466,139.1664,53.60988
+455.5892,138.8628,53.4083
+454.5015,138.5578,54.06786
+455.6879,138.9184,55.42611
+484.57,124.72,176.57
+484.42,124.78,179.2
+483.54,124.73,177.82
+483.03,124.82,181.66
+482.14,124.79,181.07
+481.81,124.81,182.21
+470.31,125.73,182.79
+440.05,135.53,161.52
+439.02,135.84,160.84
+448.93,133.47,162.53
+459.04,129.58,164.81
+455.77,130.3,166.46
+459.52,129.19,168.94
+456.79,129.88,167.53
+434.74,137.64,159.56
+433.52,137.7,159.38
+436.53,136.96,159.57
+436.66,136.41,160.7
+439.74,136.31,158.61
+442,136.09,160.77
+442.08,136.86,136.88
+438.59,136.34,137.45
+438.57,136.32,136.41
+453.54,143.84,144.36
+461.69,141.8,147.29
+468.73,138.44,151.48
+469.07,138.42,152.05
+476.4,137.29,155.56
+477.4,137.09,156.46
+477.48,137.21,155.17
+475.41,139.31,172.18
+475.81,139.22,172.91
+466.88,138.32,167.52
+542.12,137.81,21.08001
+541.75,137.9,22.88
+542.28,137.83,22.23
+542.81,137.81,23.74
+541.29,137.66,21.32
+539.85,137.78,20.13
+540.08,137.72,18.5
+538.56,137.87,19.52
+538.89,137.87,20.71
+537.08,138.01,20.5
+538.71,137.93,24.2
+538.71,137.85,25.77
+541.46,137.93,22.95
+540.64,137.76,23.43
+500.02,142.52,49.22
+510.21,142.47,43.22
+510.04,142.46,44.3
+508.65,142.49,43.69
+508.59,142.48,44.8
+508.09,143.48,44.8
+491.59,135.77,66.75
+490.28,135.67,67.52
+488.88,135.55,68.41
+490.75,135.78,66.87
+492.97,135.74,66.65
+478.86,135.37,77.52
+502.17,142.9,89.34
+495.98,152.59,96.64
+494.2,152.71,96.32001
+492.75,152.85,96.24001
+493.01,152.58,95.11
+493.35,152.71,95.87
+493.29,152.87,96.63
+493.79,152.12,95.38
+495.04,152.37,95.63
+499.22,152.42,97.41
+497.26,152.32,95.96001
+496.16,152.04,94.10001
+495.03,151.98,93.28
+458.69,135.9,86.71001
+459.44,135.9,86.71001
+459.6,136.05,88.22
+460.48,136.02,89.63
+460.4,136.05,88.45
+461.43,135.86,89.23
+461.44,135.82,90.66
+461.06,135.8,91.33
+460.4,136.13,90.77
+456.09,135.99,89.38
+457.7,136.17,90.69
+458.91,135.94,92.05
+459.67,135.96,91.83
+455.39,135.77,90.72
+456.99,135.73,92.64
+458.42,135.74,93.01
+459.42,135.74,92.76
+455.52,135.8,89.72
+498.7,125.9,148
+496.77,125.83,148.66
+498.21,125.77,149.27
+496.99,125.67,149.93
+496.96,125.46,151.76
+495.61,125.42,154
+494.21,125.38,156.12
+493.01,125.34,158.34
+492.76,125.34,158.59
+491.52,125.34,159.09
+491.75,125.43,157.39
+493.36,125.43,156.74
+-610.7897,113.915,-80.44197
+-399.61,213.62,68.02002
+-122.8446,163.3327,149.3214
+-345.3861,176.6,390.4927
+-167.6784,186.46,-231.6113
+132.2,175.8,-33.50002
+-640.4003,141.5,5.088759
+714.3021,182.1713,9.48387
+-110.7265,206.3358,104.7008
+-126.2691,162.6333,147.5902
+-124.626,163.2334,146.5262
+-127.1945,162.442,147.1324
+144.3,175.8,-123.3
+-38.69991,158.2,543.9001
+-122.1034,163.7477,147.8015
+-125.5927,163.0252,146.1086
+604.415,157.1,629.5974
+-371.0001,210,-766.4
+106.4,175.8,-71
+-125.9033,162.8336,146.8725
+-533,126,330
+-482.7,215.3,324
+-605.1,215.3,329.3
+-552.3,215.3,281.8
+44.39999,175.8,-33.49997
+-127.8559,162.4107,146.0464
+-204.5305,206.3127,114.9567
+0,777,-125
+0.16,778.594,-125
+-0.16,778.608,-125.025
+-612.7436,116.802,-78.48151
+-123.9192,163.1137,148.7671
+-125.2175,162.8501,148.1141
+-1320.695,-37.24001,57.75952
+173,175.8,-33.50003
+-122.4598,163.5224,148.7179
+191.1,175.8,-5.900047
+144.3,175.8,-10.90002
+681.7904,182.7184,7.743292
+-124.8558,163.0468,147.4146
+417.4,177.2,485.7
+337.0395,208.7,-690.0472
+-35.49956,138.5,-593.4495
+-573.1904,115.8527,356.1591
+-572.568,114.697,355.409
+-573.041,114.928,354.644
+-573.719,115.505,353.798
+-572.177,114.749,354.835
+-572.562,115.005,354.311
+-572.81,114.807,354.843
+-573.112,114.794,354.949
+-572.421,114.69,355.187
+-571.132,114.596,356.77
+-571.304,114.614,356.258
+-569.031,115.587,356.463
+-569.366,115.568,356.014
+-568.646,115.743,356.168
+-568.873,115.558,356.729
+-569.542,115.456,356.415
+-569.614,115.475,355.876
+-569.372,115.582,355.413
+-573.0301,114.6137,355.9998
+-573.361,114.66,355.78
+-650.7404,114.9227,393.179
+-649.6234,114.8527,394.2261
+-650.0544,114.8727,394.3391
+-649.0704,114.7947,394.907
+-648.1573,114.7287,394.0661
+-647.6003,114.8327,392.179
+-647.2504,114.7627,392.9991
+-644.1804,114.5527,395.2191
+-643.4904,114.5727,394.9091
+-642.6703,114.4727,396.0391
+-643.5504,114.4827,396.0891
+-644.9104,114.8027,391.329
+-654.1124,115.7537,388.9341
+-653.8884,115.7807,388.8461
+-654.0244,115.6967,389.2541
+-664.2704,115.2127,388.1391
+-663.6904,115.1527,388.119
+-669.7164,116.0727,374.8121
+-600.43,113.93,351.81
+-600.77,113.84,353.27
+-599.34,113.88,353.79
+-599.38,113.79,355.2
+-596.05,113.82,355
+-596.98,113.79,357.61
+-596.93,113.9,354.95
+-592.93,114.21,353.12
+-595.16,114.17,352.43
+-594.83,114.05,354.48
+-607.68,114.06,350.32
+-607.29,113.77,351.75
+-607.37,113.39,358.31
+-605.25,113.39,358.59
+-603.84,113.43,357.45
+-595.85,113.68,363.61
+-594.36,113.65,364.13
+-585.91,128.87,242.82
+-585.91,128.87,242.82
+-576.65,131.46,244.41
+-577.93,131.32,244.23
+-576.35,131.32,245.31
+-669.4714,116.0497,375.3581
+-669.3804,116.0737,374.8271
+-669.7823,116.0877,375.2101
+-669.4094,116.0607,375.0401
+-667.9874,115.9277,375.3101
+-661.7603,115.5427,376.5391
+-661.6003,115.2927,376.8391
+-661.9703,115.3127,376.619
+-681.9203,118.1327,369.5091
+-681.7603,117.8827,369.8091
+-682.1304,117.9027,369.5891
+-533.3,119.1263,275.8835
+-535.9946,119.2816,275.2061
+-536.9449,119.29,275.6436
+-535.3696,119.2234,275.4684
+-537.0633,119.5035,274.6407
+-586.3,128.84,243.65
+-597.5332,114.0072,353.0366
+65.79997,175.8,-70.99998
+632.2822,119.7,240.7811
+632.2822,133.9,240.7811
+614.994,134.12,252.955
+605.4792,132.78,259.0922
+623.6072,149.45,241.4557
+629.0093,149.42,248.7887
+633.808,149.45,232.8298
+641.8261,149.45,239.7498
+639.7636,149.44,245.8318
+643.3588,133.88,256.6743
+620.8806,133.86,224.8175
+643.8876,122.64,217.4233
+635.6591,122.64,212.1768
+627.8103,122.62,217.0462
+619.2244,122.64,221.2571
+611.694,122.64,226.826
+606.5206,122.64,234.7157
+609.2137,122.64,244.3454
+613.5025,124.85,252.9306
+618.8256,125.78,261.2502
+624.154,127.56,270.9605
+631.1937,126.886,269.9411
+637.6658,125.724,264.8506
+645.1448,124.98,260.3789
+652.7148,125.9,254.1658
+659.5884,125.564,249.5993
+657.6139,122.65,238.8388
+651.4629,121.19,227.7293
+648.799,133.88,229.6097
+-391.2206,176.6,394.4125
+-638.1727,176.48,-79.39302
+-326.6202,227.7,-574.8973
+-108.3209,211.1119,172.0383
+694.1,134,7.1
+698.18,131.87,32.04
+697.424,131.654,33.431
+698.3849,131.662,33.455
+697.869,131.464,34.514
+697.037,131.453,34.538
+696.552,131.562,33.908
+696.552,131.562,33.908
+695.742,131.562,34.829
+701.25,131.7,33.72
+701.243,132.065,30.761
+699.801,132.051,30.693
+700.393,132.17,29.675
+701.469,132.016,31.235
+700.085,132.104,30.27
+700.707,132.11,30.293
+704.75,132.44,27.23
+703.68,132.36,28.17
+703.55,132.44,27.18
+701.763,132.44,27.963
+703.93,132.39,27.86
+705.33,132.39,27.96
+703.61,132.29,28.86
+700.435,132.26,28.777
+701.95,134.12,25.11
+708,132.83,28.48
+687.3199,130.22,40.42
+688.13,130.77,37.82
+695.88,130.37,38.98
+695.71,129.78,41.24
+697.89,130.28,39.15
+697.89,130.28,40.65
+696.41,129.99,40.39
+697.02,129.75,41.42
+696.15,129.54,42.33
+675.79,131.71,38.3
+676.431,131.549,39.655
+675.716,131.607,39.192
+675.673,131.652,38.817
+675.673,131.652,38.817
+674.972,131.663,38.748
+675.301,131.596,39.3
+675.917,131.531,39.83
+674.81,131.603,39.266
+676.008,132.076,35.218
+676.649,131.915,36.573
+675.934,131.973,36.11
+675.891,132.018,35.735
+675.891,132.018,35.735
+675.19,132.029,35.666
+675.519,131.962,36.218
+676.135,131.897,36.748
+675.028,131.969,36.184
+674.2709,131.911,36.676
+674.9119,131.75,38.031
+674.197,131.808,37.568
+674.1539,131.853,37.193
+674.1539,131.853,37.193
+673.4529,131.864,37.124
+673.7819,131.797,37.676
+674.3979,131.732,38.206
+673.291,131.804,37.642
+651.55,138.363,26.48
+652.191,138.202,27.835
+651.476,138.26,27.372
+651.433,138.305,26.997
+651.433,138.305,26.997
+650.732,138.316,26.928
+651.061,138.249,27.48
+651.677,138.184,28.01
+650.57,138.256,27.446
+651.6198,138.2371,20.92963
+650.7641,138.1716,22.16903
+650.8073,138.1969,21.31674
+651.1116,138.2155,21.08981
+651.1116,138.2155,21.08981
+650.8193,138.2216,20.44892
+650.5047,138.1935,21.01259
+650.3536,138.1659,21.8132
+650.2875,138.1982,20.57091
+653.2057,138.3055,22.59059
+652.35,138.24,23.83
+652.3931,138.2654,22.97771
+652.6974,138.2839,22.75078
+652.6974,138.2839,22.75078
+652.4052,138.2901,22.10988
+652.0906,138.2619,22.67356
+651.9395,138.2343,23.47416
+651.8734,138.2666,22.23187
+651.3482,138.2916,24.71982
+650.4925,138.2261,25.95922
+650.5356,138.2514,25.10693
+650.84,138.27,24.88
+650.84,138.27,24.88
+650.5477,138.2761,24.23911
+650.2331,138.248,24.80278
+650.082,138.2204,25.60339
+650.0159,138.2527,24.3611
+651.7805,141.0855,10.19071
+650.9248,141.02,11.43012
+650.968,141.0453,10.57782
+651.2723,141.0639,10.35089
+651.2723,141.0639,10.35089
+650.98,141.07,9.71
+650.6654,141.0419,10.27367
+650.5143,141.0143,11.07428
+650.4482,141.0465,9.831991
+652.0782,140.0916,-10.19018
+651.2225,140.0261,-8.950777
+651.2656,140.0514,-9.803072
+651.5699,140.07,-10.03
+651.5699,140.07,-10.03
+651.2776,140.0761,-10.67089
+650.9631,140.048,-10.10722
+650.812,140.0204,-9.306612
+650.7459,140.0527,-10.5489
+653.2182,140.0916,-8.060186
+652.3625,140.0261,-6.82078
+652.4056,140.0514,-7.673075
+652.71,140.07,-7.9
+652.71,140.07,-7.900002
+652.4177,140.0761,-8.540895
+652.1031,140.048,-7.977225
+651.952,140.0204,-7.176615
+651.8859,140.0527,-8.418905
+653.2728,132.517,-7.60499
+652.4965,132.2433,-6.342017
+652.4888,132.3694,-7.186387
+652.7775,132.4375,-7.424017
+652.7775,132.4375,-7.424019
+652.4492,132.4941,-8.044722
+652.1703,132.3771,-7.473755
+652.0677,132.2463,-6.675673
+651.9285,132.4153,-7.900711
+653.8243,132.7917,-10.57428
+653.048,132.518,-9.311304
+653.0403,132.6441,-10.15567
+653.329,132.7122,-10.3933
+653.329,132.7122,-10.39331
+653.0007,132.7688,-11.01401
+652.7219,132.6518,-10.44304
+652.6193,132.521,-9.64496
+652.48,132.69,-10.87
+655.8147,133.0595,-9.517172
+654.5518,132.7858,-10.29345
+655.3961,132.9118,-10.30123
+655.6337,132.98,-10.01249
+655.6337,132.98,-10.01249
+656.2544,133.0366,-10.34077
+655.6834,132.9196,-10.61967
+654.8854,132.7888,-10.72228
+656.1104,132.9578,-10.8615
+664.481,133.0895,-15.43468
+663.218,132.8158,-16.21095
+664.0623,132.9418,-16.21873
+664.3,133.01,-15.93
+664.3,133.01,-15.93
+664.9207,133.0666,-16.25827
+664.3497,132.9496,-16.53718
+663.5516,132.8188,-16.63978
+664.7767,132.9878,-16.77901
+662.9775,132.7699,-18.25804
+663.7538,132.4962,-19.52095
+663.7615,132.6223,-18.67669
+663.4728,132.6904,-18.43903
+663.4728,132.6904,-18.43903
+663.8011,132.747,-17.81833
+664.08,132.63,-18.38932
+664.1826,132.4992,-19.18737
+664.3218,132.6682,-17.96238
+667.6975,132.7699,-25.61872
+668.4738,132.4962,-26.88162
+668.4815,132.6223,-26.03737
+668.1927,132.6904,-25.7997
+668.1927,132.6904,-25.7997
+668.5211,132.747,-25.17901
+668.8,132.63,-25.75
+668.9026,132.4992,-26.54804
+669.0417,132.6682,-25.32306
+670.7213,132.7699,-25.4776
+669.4583,132.4962,-26.25381
+670.3026,132.6223,-26.26157
+670.5403,132.6904,-25.97282
+670.5403,132.6904,-25.97282
+671.1609,132.747,-26.30104
+670.59,132.63,-26.58
+669.792,132.4992,-26.68267
+671.017,132.6682,-26.82183
+693.0672,133.3244,-25.86748
+693.8434,133.2934,-27.15933
+693.8512,133.2582,-26.30645
+693.5624,133.2804,-26.0602
+693.5624,133.2804,-26.0602
+693.8907,133.2192,-25.43994
+694.1697,133.2117,-26.02275
+694.2723,133.2335,-26.83115
+694.4114,133.1689,-25.59626
+696.0909,133.2979,-25.72889
+694.828,133.1752,-26.54273
+695.6723,133.3004,-26.52663
+695.91,133.313,-26.23022
+695.91,133.313,-26.23022
+696.5306,133.4304,-26.54193
+695.9597,133.368,-26.83791
+695.1617,133.2589,-26.96337
+696.3867,133.451,-27.06822
+728.0755,132.6352,-15.66808
+729.2357,132.6042,-16.63007
+728.9606,132.5691,-15.82272
+728.6066,132.5913,-15.68596
+728.6066,132.5913,-15.68596
+728.711,132.53,-14.992
+729.1672,132.5226,-15.44959
+729.5317,132.5443,-16.17841
+729.2542,132.4797,-14.9671
+730.8828,132.6087,-14.53619
+729.9606,132.486,-15.72228
+730.7519,132.6113,-15.42754
+730.8781,132.6238,-15.06915
+730.8781,132.6238,-15.06915
+731.5668,132.7412,-15.15781
+731.1262,132.6788,-15.62612
+730.4147,132.5697,-16.00869
+731.6053,132.7619,-15.70207
+726.5349,140.2572,-16.47536
+727.6951,140.2261,-17.43735
+727.42,140.191,-16.63
+727.066,140.2132,-16.49324
+727.066,140.2132,-16.49324
+727.1703,140.1519,-15.79928
+727.6266,140.1445,-16.25686
+727.9911,140.1663,-16.98569
+727.7135,140.1016,-15.77437
+729.3422,140.2306,-15.34346
+728.4199,140.1079,-16.52956
+729.2112,140.2332,-16.23482
+729.3374,140.2458,-15.87642
+729.3374,140.2458,-15.87642
+730.0262,140.3631,-15.96508
+729.5855,140.3008,-16.4334
+728.8741,140.1916,-16.81597
+730.0646,140.3838,-16.50935
+734.0327,140.3675,-11.51192
+735.1262,140.065,-10.47475
+734.2918,140.3014,-10.65155
+734.1138,140.3236,-10.9867
+734.1138,140.3236,-10.9867
+733.4373,140.2623,-10.80029
+733.946,140.2549,-10.40191
+734.7131,140.2766,-10.12696
+733.4773,140.212,-10.25808
+733.2438,140.341,-8.589602
+734.3114,140.2183,-9.646788
+734.1131,140.3436,-8.825983
+733.7723,140.3561,-8.657938
+733.7723,140.3561,-8.657938
+733.9426,140.4735,-7.984606
+734.3549,140.4111,-8.478039
+734.65,140.302,-9.23
+734.4875,140.4942,-8.011414
+690.1,134.25,5.09
+690.75,134.17,6.51
+689.588,134.253,5.452
+689.4109,134.29,4.632
+689.85,134.266,4.847
+690.181,134.258,4.74
+689.759,134.316,3.591
+694.08,134.12,4.6
+694.08,134.12,4.6
+694.08,134.12,4.6
+694.96,134.12,3.76
+694.96,134.12,3.76
+694.96,134.12,3.76
+695.17,134.09,4.4
+695.17,134.09,4.4
+695.17,134.09,4.4
+695.17,135.34,4.4
+695.17,135.34,4.4
+695.17,135.34,4.4
+694.16,133.9,10.39
+694.16,133.9,10.39
+694.16,133.9,10.39
+694.11,133.94,9.370001
+694.11,133.94,9.37
+694.11,133.94,9.37
+694.86,133.94,9.370001
+694.86,133.94,9.37
+694.86,133.94,9.37
+695.232,133.848,10.858
+695.232,133.848,10.858
+695.232,133.848,10.858
+696.2339,133.836,10.175
+696.2339,133.836,10.175
+696.2339,133.836,10.175
+696.068,133.884,9.041
+696.068,133.884,9.041
+696.068,133.884,9.041
+688.65,134.19,10.89
+688.65,134.19,10.89
+688.65,134.19,10.89
+689.7599,134.05,10.91
+689.7599,134.05,10.91
+689.7599,134.05,10.91
+690.92,134.1,8.38
+690.92,134.1,8.38
+690.92,134.1,8.380001
+710.7,132.989,-23.98
+710.7,132.989,-23.98
+710.7,132.989,-23.98
+711.58,132.989,-24.82
+711.58,132.989,-24.82
+711.58,132.989,-24.82
+711.79,132.959,-24.18
+711.79,132.959,-24.18
+711.79,132.959,-24.18
+712.067,132.856,-25.041
+712.067,132.856,-25.041
+712.067,132.856,-25.041
+713.222,132.797,-25.185
+713.222,132.797,-25.185
+713.222,132.797,-25.185
+712.858,132.813,-25.542
+712.858,132.813,-25.542
+712.858,132.813,-25.542
+709.94,133,-20.33
+709.94,133,-20.33
+709.94,133,-20.33
+711.38,132.92,-20.99
+711.38,132.92,-20.99
+711.38,132.92,-20.99
+710.88,132.94,-22
+710.88,132.94,-22
+710.88,132.94,-22
+710.11,139.46,-26.38
+710.11,139.46,-26.38
+710.11,139.46,-26.38
+710.91,139.46,-26.38
+710.91,139.46,-26.38
+710.91,139.46,-26.38
+711.73,139.46,-26.38
+711.73,139.46,-26.38
+711.73,139.46,-26.38
+711.06,139.46,-25.42
+711.06,139.46,-25.42
+711.06,139.46,-25.42
+709.88,139.46,-24.62
+709.88,139.46,-24.62
+709.88,139.46,-24.62
+710.68,139.46,-24.62
+710.68,139.46,-24.62
+710.68,139.46,-24.62
+711.5,139.46,-24.62
+711.5,139.46,-24.62
+711.5,139.46,-24.62
+710.83,139.46,-23.66
+710.83,139.46,-23.66
+710.83,139.46,-23.66
+836.2532,102.71,-857
+78.7,175.8,-33.49999
+448.7221,148.3036,-318.9026
+759.18,154.89,-671.43
+496.5228,142.7908,-374.4104
+33.39063,994.0056,309.5008
+-42.77753,134.9102,-587.1757
+72.1178,586.1419,541.2913
+-432.7605,206.1494,9.511383
+-48.18634,128.7996,-635.9368
+69.08185,725.491,480.4488
+-37.75519,132.3478,-587.1385
+25.11603,985.3711,323.0712
+-427.8912,206.1491,12.35431
+60.12799,599.361,538.3448
+-43.44202,125.8435,-635.1991
+51.80786,739.4707,480.0981
+79.67773,613.8173,558.7683
+-426.722,198.0302,6.814392
+32.14575,960.866,304.1405
+-42.86151,126.1788,-592.9559
+35.91016,708.2228,462.9794
+-48.79388,119.3536,-640.4156
+-412.7205,206.8513,30.37155
+-412.8629,167.4352,93.28415
+-459.5715,160.7358,19.68747
+-456.6387,162.3564,17.83292
+-414.2289,168.016,96.81461
+-409.4581,207.8874,28.65378
+-457.4218,160.3028,16.74158
+-412.0808,166.8297,96.82108
+-410.9248,206.5854,27.17899
+-418.1439,212.7524,25.44547
+-405.8936,173.7059,94.06607
+-465.9854,162.9708,13.17816
+-408.8293,209.2636,35.62808
+-419.389,169.6053,92.14804
+-457.317,165.5813,24.16293
+-416.5864,207.8795,22.10858
+-404.5693,168.5492,97.05972
+-462.5562,158.2513,11.36899
+-413.1979,175.8396,97.19034
+-460.3994,168.7163,15.03644
+-410.8824,215.6324,28.02249
+-413.9163,175.1735,92.62338
+-462.7251,167.8779,18.99954
+-413.2528,214.5218,31.89096
+-410.7777,215.5527,27.15335
+-460.1726,168.4601,14.22675
+-412.6971,175.7116,97.9014
+-414.1432,168.1573,96.121
+-457.2147,162.3471,18.25287
+-409.9917,207.9481,29.12283
+-414.6996,216.9455,31.2435
+-412.5473,177.7177,92.42386
+-464.7889,169.4114,17.66696
+-464.3354,161.7563,12.56509
+-405.9236,172.0818,95.45694
+-417.0261,211.292,24.3544
+-461.0732,157.9572,13.71234
+-406.8212,167.0933,96.29398
+-415.2347,206.4834,24.10889
+-451.0685,166.6555,25.02274
+-424.2332,167.6289,95.83115
+-402.5712,207.981,35.98618
+-462.5492,158.0761,10.92374
+-404.2063,168.5,97.36752
+-416.6512,207.8426,21.63593
+-424.4889,167.7895,94.99258
+-451.5431,166.8064,25.76193
+-402.9463,208.0651,36.79025
+-406.6147,171.9707,95.91257
+-463.5646,162.049,12.69815
+-416.1986,211.2711,24.465
+-463.4207,167.909,19.61121
+-413.8997,175.3559,91.71481
+-413.8799,214.604,32.56839
+-401.9265,207.9483,35.88388
+-424.646,167.5181,96.32559
+-450.4403,166.8209,24.95004
+-465.962,166.6892,14.25748
+-408.3669,176.6712,93.78049
+-416.8207,215.809,27.41983
+-413.8771,175.5807,98.38577
+-459.0779,168.9722,14.65512
+-409.5634,215.5438,27.56473
+-466.7756,165.423,11.74274
+-405.668,176.5219,94.91318
+-418.0826,215.6252,24.78104
+-411.93,167.0568,95.69852
+-458.3607,160.2805,17.41385
+-411.7973,206.6812,27.92996
+-411.8058,206.5835,26.74918
+-458.1976,159.8904,16.30701
+-411.1375,166.9107,96.56717
+-415.7704,206.5564,24.71884
+-461.6719,157.9941,14.26407
+-406.8278,167.2531,95.49484
+-413.927,169.0336,96.42264
+-457.5238,163.0457,17.68527
+-410.057,208.8376,28.79111
+-403.1747,175.0779,92.19974
+-469.472,162.6227,12.48575
+-421.5554,213.7546,25.10507
+-417.7266,215.9085,28.1763
+-408.1948,176.906,92.63235
+-466.9343,166.6602,14.93317
+-414.5237,206.4056,23.5181
+-406.9583,166.9093,97.19296
+-460.3104,157.981,13.18481
+-461.8865,157.6255,13.51492
+-406.0448,167.204,95.85202
+-416.1172,206.5005,23.93161
+-413.2307,176.474,98.36343
+-459.8711,169.438,14.04666
+-410.1641,216.3903,27.19217
+-452.1417,166.6678,25.87851
+-424.1345,167.9005,94.48923
+-403.5531,208.1004,36.93796
+-417.1888,216.3975,25.67435
+-466.291,166.6539,12.40845
+-406.9722,177.2235,94.91104
+-409.2913,209.8385,37.37009
+-458.1423,166.384,25.66397
+-420.2283,170.3028,90.60281
+-414.2025,168.2863,95.46829
+-457.6705,162.4016,18.73822
+-410.3886,208.0093,29.65659
+-413.4497,176.2852,94.92899
+-461.9496,168.9258,16.74783
+-412.2229,215.846,29.90219
+-412.775,176.8406,92.25192
+-464.3861,168.7347,18.14703
+-414.5409,216.0697,31.48563
+-413.9083,175.0369,93.30643
+-462.2147,167.8454,18.52643
+-412.7968,214.4593,31.36807
+-417.5905,215.5543,24.17624
+-405.6323,176.3693,95.68027
+-466.2191,165.3744,11.19424
+-464.694,161.9069,13.21411
+-406.192,172.2133,94.76187
+-417.2947,211.3633,25.05807
+-417.1019,216.6324,29.2767
+-409.4318,177.5994,92.29398
+-466.7113,167.8076,15.80438
+-409.621,209.3453,36.22964
+-458.1581,165.5362,24.69766
+-419.1991,169.8028,91.18875
+-413.3176,168.7303,96.53207
+-457.6884,162.5061,17.28891
+-410.4066,208.5128,28.29349
+-410.9921,211.9241,26.69003
+-412.0188,172.1153,97.71793
+-459.1489,164.9864,14.78558
+-412.6525,207.0527,31.8248
+-459.7446,161.309,21.02859
+-413.8859,167.6889,92.26138
+-410.9276,177.5753,92.73508
+-465.5004,168.5572,16.44037
+-415.6917,216.7432,29.93381
+-444.6042,169.7703,91.04068
+-448.0999,170.8098,93.44864
+-441.7723,170.0326,94.31772
+-443.1416,170.3934,94.21005
+-441.3235,169.7593,90.1088
+-440.9368,170.6573,89.66074
+-441.2813,170.5305,90.81479
+-447.1772,171.3698,91.54831
+-446.4987,171.7862,90.30856
+-445.9603,174.8235,88.00552
+-446.1616,171.2204,88.59982
+-446.2233,170.6043,91.58939
+-443.287,169.7828,92.07846
+-441.1705,170.5233,90.1188
+-442.697,170.1418,89.33267
+-477.4558,188.239,7.709412
+-477.9309,188.8428,3.407318
+-481.4678,189.5329,8.737579
+-480.7325,189.5811,7.523712
+-477.9806,188.7876,11.03442
+-477.5505,189.6769,11.45972
+-478.4587,189.6396,10.65964
+-476.5063,189.3186,4.994812
+-475.5975,189.6945,6.091827
+-473.1284,192.4337,7.196198
+-474.3427,188.9839,7.22049
+-477.0984,188.7827,5.922119
+-478.9142,188.6684,8.417236
+-477.8889,189.5608,11.06686
+-476.6466,188.7646,10.10974
+-407.4188,170.135,67.89224
+-410.3132,171.0834,71.02621
+-403.9268,171.1729,70.2493
+-405.3171,171.3541,70.47464
+-404.5121,170.3766,66.12442
+-404.3875,171.2431,65.49973
+-404.4089,171.2373,66.71048
+-409.9897,171.4796,68.90146
+-409.7131,171.7972,67.48965
+-410.2249,174.5302,64.8273
+-409.7353,171.0445,65.82034
+-408.9535,170.843,68.76468
+-405.9003,170.4431,68.53366
+-404.4764,171.1473,66.0148
+-406.0774,170.4865,65.70828
+-450.7308,194.4866,26.8522
+-451.7789,196.0489,30.79672
+-446.5483,195.62,27.07455
+-447.6624,195.9196,27.90268
+-449.0305,194.2911,23.90216
+-449.2305,195.0516,23.1683
+-448.6687,195.2173,24.22824
+-452.5183,196.1213,28.74142
+-452.9559,196.2191,27.33804
+-454.7126,198.578,24.85434
+-453.7672,195.2422,26.0184
+-451.6674,195.4068,28.22842
+-449.0942,194.7841,26.63864
+-449.0605,195.0349,23.67154
+-450.6049,194.4414,24.26865
+-465.0465,177.3626,87.95163
+-468.6616,177.9801,90.32822
+-462.2965,178.5055,91.10733
+-463.71,178.5886,90.99838
+-461.8289,177.8681,86.94003
+-461.6223,178.7691,86.39017
+-461.9296,178.7053,87.55978
+-467.8733,178.4949,88.35599
+-467.2935,178.895,87.06198
+-467.3552,181.7122,84.43924
+-466.8652,178.2213,85.41379
+-466.7911,177.9315,88.45212
+-463.7494,177.7348,88.94736
+-461.8237,178.6439,86.86569
+-463.2546,177.8993,86.16446
+-466.8304,172.0694,51.1727
+-468.302,172.9093,47.14438
+-470.3379,173.6144,53.20694
+-469.9244,173.6637,51.84933
+-466.4675,172.4992,54.53659
+-465.8713,173.3323,54.86411
+-466.9491,173.4017,54.31631
+-466.4937,173.2004,48.33658
+-465.313,173.4542,49.18063
+-462.4232,175.943,49.70395
+-463.8832,172.598,49.93973
+-466.8813,172.6679,49.36801
+-468.0262,172.5746,52.23441
+-466.3052,173.2608,54.56558
+-465.4106,172.4185,53.30698
+-429.454,167.4548,16.81802
+-432.7813,166.9663,14.02722
+-431.8992,168.8846,20.10498
+-432.1887,168.6453,18.73553
+-427.7133,168.7986,19.42505
+-427.2837,169.7737,19.27859
+-428.4659,169.5219,19.35233
+-430.7821,167.8477,14.07611
+-429.4637,168.5009,14.15451
+-427.453,171.4757,12.76651
+-427.6738,168.1161,14.1951
+-430.4905,167.5463,15.22589
+-430.1122,168.0176,18.25418
+-427.7687,169.5574,19.2565
+-427.3647,168.5735,17.85559
+-476.2845,178.7759,82.53214
+-480.5823,179.3022,83.12418
+-475.1443,180.4954,86.34921
+-476.3866,180.435,85.66415
+-472.9612,179.4685,82.8605
+-472.5819,180.3218,82.32675
+-473.3446,180.3533,83.26688
+-479.0674,179.6771,81.59427
+-478.0192,179.9907,80.60757
+-477.1006,182.4978,77.83456
+-476.9175,179.1897,79.38345
+-478.101,179.2299,82.19748
+-475.535,179.3697,83.90982
+-472.9574,180.2292,82.69119
+-473.9357,179.2852,81.5751
+-415.6278,183.1629,68.23257
+-417.9747,181.8392,71.67313
+-417.8442,180.8328,65.31967
+-417.8595,180.8471,66.73947
+-414.1741,182.9527,65.15451
+-413.3146,182.313,65.05954
+-414.4517,181.9496,65.26334
+-415.8806,182.0643,71.09006
+-414.4774,182.1519,70.64981
+-411.0278,180.5122,71.13083
+-413.1547,183.3728,70.31241
+-416.0634,182.5124,69.96597
+-416.2784,182.4015,66.88748
+-413.8212,182.2602,65.21127
+-413.593,183.2628,66.63821
+-462.3318,173.3477,71.49442
+-461.0179,176.6134,74.0842
+-458.7382,173.2984,69.06326
+-459.2051,174.2003,70.05576
+-462.558,171.5054,68.63321
+-463.1364,171.9194,67.82645
+-462.0809,172.3483,68.23715
+-462.7758,176.0302,72.92404
+-463.9204,175.6559,72.07535
+-466.7743,177.1614,69.97592
+-465.3231,174.4812,71.99747
+-462.3499,174.9676,72.49112
+-461.0919,173.0776,70.39792
+-462.7152,172.0661,68.11539
+-463.6635,172.2114,69.58963
+-386.6914,178.677,27.8295
+-382.5473,179.4882,28.95493
+-386.1072,179.4263,23.59579
+-385.272,179.6358,24.72488
+-389.5626,178.952,26.00949
+-390.1321,179.8572,26.12363
+-389.043,179.7639,25.60239
+-384.5675,180.0275,29.59061
+-385.9349,180.4379,29.9545
+-387.941,183.3727,31.43155
+-387.4516,179.8098,30.76627
+-385.1876,179.3691,28.76608
+-386.7867,178.888,26.16855
+-389.6376,179.7271,25.97897
+-389.2244,179.1428,27.58572
+-427.7999,168.3411,28.40286
+-432.1385,168.3653,28.92624
+-426.9131,169.8663,32.36697
+-428.1304,169.7297,31.64865
+-424.5753,169.3509,28.86557
+-424.2803,170.2784,28.40793
+-425.0575,170.156,29.32852
+-430.647,169.016,27.4675
+-429.6218,169.5142,26.53391
+-428.9297,172.3135,23.98364
+-428.4209,168.9317,25.28012
+-429.6486,168.6268,28.05869
+-427.141,168.9005,29.84
+-424.6498,170.1187,28.75485
+-425.5031,169.1677,27.54611
+-417.2677,168.3194,69.58151
+-419.6003,167.1877,73.09946
+-414.9115,171.3383,71.62155
+-416.0505,170.589,72.01871
+-415.472,170.3689,67.53043
+-416.0173,171.118,66.98428
+-415.8487,171.0948,68.18326
+-419.9221,167.708,71.00143
+-420.1232,168.135,69.60574
+-422.6356,169.9223,67.30087
+-419.915,167.5486,67.88345
+-418.7522,167.8805,70.68674
+-416.2101,169.5236,70.07523
+-415.9474,170.9852,67.49405
+-416.7952,169.4557,67.30594
+-457.3817,166.3922,25.09976
+-420.3333,170.1151,91.52518
+-408.5884,209.7576,36.74039
+-411.4486,176.3112,98.64737
+-460.6903,168.485,12.74142
+-411.2932,216.1553,25.79471
+-414.5819,206.5118,24.70975
+-460.5404,158.3586,14.29807
+-407.7084,167.0719,96.27341
+-52.24396,128.569,-583.9367
+20.1217,988.569,274.3095
+-439.4564,196.3909,10.01389
+78.44305,575.6255,577.2557
+-58.37799,123.8516,-632.4781
+82.68445,706.6367,439.9571
+-462.7162,162.4249,13.20035
+-407.6277,171.8106,96.16049
+-415.2603,211.198,24.94193
+-408.5416,211.6018,32.82095
+-457.4689,167.0853,20.82452
+-417.8854,171.7739,94.69089
+95.11566,723.939,446.2478
+-56.31226,127.5512,-628.7624
+-441.1697,200.463,13.51306
+67.10901,564.6321,568.4492
+14.39703,1003.977,281.8395
+-50.26227,131.8863,-579.8343
+-417.1282,167.1915,93.79837
+-456.5394,162.6233,22.08755
+-409.1652,206.9136,32.79489
+-412.2072,207.2102,34.90152
+-459.7411,162.3825,23.95044
+-416.2618,167.9244,90.26413
+-406.5728,167.2859,95.05588
+-462.1337,157.8433,14.41534
+-416.2518,206.5268,24.88052
+-417.2052,211.2309,24.45187
+-464.4955,161.6644,12.67111
+-405.8505,172.0459,95.26028
+-49.56061,124.7448,-636.715
+59.17053,718.3793,468.3907
+30.05463,981.8722,303.4568
+-43.8432,130.8935,-588.4666
+-431.4695,202.0228,9.020905
+74.34973,594.4293,552.301
+-413.8668,206.5216,25.90298
+-460.0131,158.9143,15.45926
+-409.0326,167.0502,95.84769
+-52.71472,133.9202,-582.8276
+27.43005,1004.4,276.6778
+-442.3558,200.9982,9.339569
+80.69843,562.5985,565.6428
+-58.39313,129.3282,-632.1718
+98.79858,709.0826,454.1636
+-403.9813,211.7926,37.17978
+-424.1893,171.6243,94.42557
+-453.7633,169.923,25.07291
+45.8432,728.2117,468.7495
+-45.98602,122.5561,-636.4069
+-427.7246,202.0656,10.92792
+65.98486,604.6913,549.7521
+24.57507,975.0967,313.7447
+-40.07922,129.0359,-588.6774
+22.17499,996.4264,288.3599
+-48.49371,131.9145,-583.3585
+-438.0383,201.0991,11.20258
+72.08319,574.5441,562.3644
+-54.36121,126.9067,-632.1279
+83.38263,719.3146,455.3324
+75.59833,582.5808,574.7441
+-437.0233,196.5486,10.40784
+-50.0968,127.7043,-584.7982
+19.23627,983.759,280.543
+73.89807,710.2451,442.0912
+-56.28015,122.6861,-633.062
+-453.9901,168.592,21.90912
+-421.4014,171.3192,96.41714
+-404.7308,211.5414,33.832
+28.5929,971.2773,317.0135
+-39.1991,129.0628,-590.4799
+-426.1469,202.3909,9.732513
+68.58685,609.6962,546.6545
+-45.01129,122.2409,-638.1316
+39.9267,725.7789,473.397
+70.12921,613.5471,561.5465
+-426.457,197.584,9.871674
+22.50867,961.7969,306.4265
+-41.56335,124.8638,-590.4655
+35.40796,718.5317,456.4309
+-47.76428,118.3114,-637.6825
+-57.07947,123.712,-636.5387
+72.59509,698.413,450.5989
+-51.21472,129.1305,-588.0378
+30.85547,981.5759,279.118
+-436.8152,197.1349,6.748383
+86.67206,584.4299,570.7748
+-43.00879,125.0333,-588.3171
+18.36407,967.0344,301.4579
+-428.7231,197.1958,11.07483
+67.96667,606.5339,565.4753
+-49.3009,118.9202,-635.682
+43.82813,720.3358,450.9115
+-414.4164,211.5088,29.04727
+-462.5096,164.0338,17.07739
+-410.9905,172.1963,93.66934
+18.70984,1009.602,273.3822
+-53.34601,133.3928,-579.6031
+73.81036,556.1379,570.6208
+-444.2611,200.4174,12.00534
+-59.24548,129.3378,-628.955
+106.1277,716.041,445.8019
+-407.3019,211.9327,37.34592
+-456.9467,168.9541,25.10898
+-421.8229,172.1517,92.14621
+-413.8001,215.7923,29.50302
+-412.0027,176.3961,94.19162
+-463.3663,168.2359,16.33932
+-414.6084,215.3583,23.93979
+-463.3273,166.1589,11.09756
+-407.6958,175.8223,97.78513
+-406.2838,167.8947,92.02896
+-464.5931,157.8364,16.30405
+-418.516,206.7885,26.98331
+6,0,-6
+-53.25934,121.3092,-635.7997
+58.86902,710.0792,449.9519
+23.75104,974.7814,290.0077
+-47.159,127.0245,-587.868
+76.62659,594.8971,568.595
+-432.9391,197.1096,9.174957
+-407.945,207.0463,34.93814
+-455.6898,163.7036,24.13968
+-419.4653,167.2739,93.00418
+-429.2806,206.6963,8.4841
+72.89618,596.5544,535.8564
+37.24927,986.5229,317.7278
+-40.23346,134.3861,-589.7675
+56.36676,725.5386,487.3419
+-45.56775,127.6807,-638.251
+59.08191,581.3809,546.8977
+-433.844,205.4384,13.99353
+-42.05511,133.476,-582.7951
+19.13202,998.5564,309.3646
+73.78668,739.3226,469.2786
+-47.84253,127.968,-631.3586
+290.3333,122.7705,-222.8441
+436.3638,124.5283,-34.40942
+225.8807,149.9296,227.429
+122.7126,143.0967,191.5175
+-466.2981,166.5413,-599.672
+-471.9728,173.1071,-604.3566
+-470.3204,173.7059,-607.2045
+-466.8477,173.0837,-606.6409
+-467.7634,173.0663,-601.0547
+-466.2334,170.0764,-604.1456
+-466.683,170.0743,-602.7529
+-466.1812,170.0722,-603.7025
+-471.2363,170.0687,-603.3366
+-469.8678,170.0732,-605.1285
+-466.6412,167.0772,-600.5532
+-466.475,167.0757,-602.5275
+-467.9742,167.0753,-607.427
+-471.0176,167.772,-606.0536
+-469.3972,167.0837,-604.0059
+-498.4546,165.2436,-461.8941
+-504.7992,171.8094,-458.1666
+-506.9091,172.4082,-460.6943
+-505.1903,171.786,-463.7641
+-500.2555,171.7686,-460.9908
+-502.6356,168.7787,-463.4868
+-501.4811,168.7766,-462.5874
+-502.2013,168.7745,-463.3841
+-503.5886,168.771,-458.5092
+-504.8037,168.7755,-460.4087
+-499.4,165.7795,-461.8735
+-501.198,165.778,-462.7057
+-506.3147,165.7776,-462.9749
+-506.0664,166.4743,-459.6452
+-503.5878,165.786,-460.4664
+385.63,126.1557,-591.2524
+-65.34766,129.4189,-258.8851
+209.2041,135.7997,-449.7078
+95.0658,146.6285,248.0786
+480.0663,128.7029,-384.2017
+147.8822,146.092,-473.0922
+199.6871,146.0367,173.2903
+109.2006,149.5485,266.0674
+-477.822,167.1814,-570.1224
+-475.6536,173.4355,-575.8356
+-482.1133,173.727,-574.066
+-480.1426,173.7108,-572.5488
+-478.9421,173.4417,-578.6678
+-480.8485,173.5302,-575.7501
+-475.3074,170.6089,-575.6107
+-478.9211,171.3091,-571.2288
+-480.0594,170.7063,-573.1373
+-480.0865,170.6393,-577.5894
+-477.4111,167.5988,-578.0519
+-474.8743,167.6078,-576.7189
+-480.8099,167.6904,-574.7593
+-479.7639,167.7895,-573.0599
+-479.2036,173.4501,-578.3105
+-477.7634,173.4198,-577.6263
+-479.3529,173.5515,-574.6785
+-482.6351,173.548,-574.5359
+-479.1759,170.4527,-578.0466
+-477.474,170.4606,-575.7629
+-480.7102,170.5197,-574.6512
+-477.6078,170.4981,-572.9152
+-479.5341,167.4608,-577.7725
+-476.0698,167.4431,-575.6113
+-477.6671,167.4754,-573.3567
+-479.3722,167.4939,-575.1705
+-480.9474,167.5192,-574.6638
+-474.6516,167.2273,-582.3821
+-469.0046,173.6226,-580.4668
+-470.7705,173.6327,-586.9341
+-472.2894,173.6812,-584.9653
+-466.1692,173.5237,-583.7512
+-469.0857,173.5047,-585.6614
+-469.201,170.8103,-580.006
+-473.5862,171.3179,-583.6479
+-471.6705,170.6888,-584.7595
+-467.2179,170.6662,-584.7811
+-466.7273,167.742,-581.9838
+-468.0629,167.8408,-579.4503
+-470.0171,167.6615,-585.3855
+-471.7185,167.7858,-584.3455
+-466.5264,173.5178,-584.013
+-467.2117,173.5392,-582.5732
+-470.1591,173.5759,-584.1685
+-470.2982,173.4373,-587.448
+-466.7598,170.5215,-583.8634
+-469.0452,170.5755,-582.1646
+-470.1541,170.4913,-585.4012
+-471.8929,170.5784,-582.3016
+-467.0031,167.5148,-584.0995
+-469.1675,167.6162,-580.6387
+-471.4207,167.5604,-582.2374
+-469.6053,167.528,-583.9407
+-470.1107,167.4839,-585.5159
+-475.9685,161.7737,-439.2393
+-470.5463,167.2884,-435.1596
+-471.8387,169.1778,-441.4607
+-473.4968,168.6733,-439.677
+-467.4794,168.1099,-438.1187
+-470.2494,168.6716,-440.1599
+-470.7445,164.4647,-435.5432
+-474.8594,166.0442,-439.1932
+-472.8615,165.742,-440.2968
+-468.4189,165.6808,-440.0007
+-468.1,162.0703,-438.1355
+-469.6167,161.4493,-435.7846
+-471.1335,163.0062,-441.6459
+-472.9072,162.8434,-440.7404
+-467.8164,168.1833,-438.3963
+-468.6045,167.7964,-437.065
+-471.4288,168.3211,-438.7917
+-471.3284,169.1338,-441.9734
+-468.027,165.2733,-439.1328
+-470.4299,164.8595,-437.6609
+-471.3003,165.722,-440.8563
+-473.2601,164.9311,-437.9976
+-468.2192,162.4645,-440.2412
+-470.6298,161.5877,-437.0644
+-472.7604,162.0177,-438.7706
+-470.8262,162.4582,-440.2747
+-471.2156,162.8746,-441.8283
+-464.8816,164.2454,-461.0626
+-469.2297,170.8895,-464.7239
+-469.7061,170.9073,-458.0368
+-467.6207,170.849,-459.3909
+-472.9934,170.9842,-462.5646
+-470.8788,170.8459,-459.7961
+-469.0409,168.0643,-465.101
+-466.088,168.4033,-460.2106
+-468.2941,167.8891,-459.7981
+-472.4974,168.093,-461.2529
+-472.1885,165.1557,-464.0625
+-470.0863,165.1484,-466.0103
+-470.2191,164.9594,-459.7632
+-468.2653,164.9815,-460.1805
+-472.7439,170.9641,-462.1993
+-471.6206,170.9291,-463.3307
+-469.3698,170.8401,-460.8489
+-470.3314,170.7439,-457.7089
+-472.6329,167.958,-462.271
+-469.9147,167.8702,-463.1165
+-469.9456,167.7785,-459.6956
+-467.2767,167.7306,-462.0438
+-472.6409,164.9467,-461.9756
+-469.4508,164.8859,-464.5235
+-467.8601,164.7399,-462.2687
+-470.1359,164.8253,-461.2632
+-470.1835,164.7793,-459.6096
+-478.4457,158.4974,-449.4281
+-477.9899,167.2136,-449.9533
+-475.5992,164.8811,-444.1405
+-474.9116,164.1914,-446.429
+-479.3518,168.5622,-446.0594
+-477.0564,166.1861,-444.9456
+-479.9646,165.2001,-450.4071
+-475.9854,161.8685,-447.9955
+-477.515,162.5782,-446.4278
+-480.5114,165.6672,-445.2847
+-483.4606,164.4554,-447.8244
+-482.9645,164.0253,-450.614
+-480.6825,161.5206,-445.3606
+-479.6459,160.5972,-446.7975
+-479.0681,168.264,-445.896
+-478.8606,168.0469,-447.4621
+-476.5629,165.7417,-446.6617
+-475.9608,164.987,-443.5214
+-481.0927,166.0435,-446.0551
+-479.8374,164.7763,-448.2756
+-478.5542,163.3897,-445.4219
+-477.9014,162.7668,-448.8606
+-483.0465,163.7429,-445.8434
+-482.1652,162.8946,-449.739
+-480.3986,161.0093,-448.759
+-481.3224,161.9625,-446.6529
+-480.7231,161.3095,-445.2554
+-491.2303,165.2024,-438.5283
+-487.3473,171.5933,-443.0597
+-494.0266,171.7767,-443.6047
+-492.6941,171.7524,-441.5049
+-489.468,171.619,-446.8463
+-492.2588,171.6278,-444.7567
+-487.0498,168.7669,-442.7721
+-491.9563,169.3387,-439.8825
+-492.3623,168.7614,-442.0741
+-490.8633,168.783,-446.2668
+-488.1387,165.7826,-445.8306
+-486.2115,165.7936,-443.7096
+-492.4598,165.7702,-443.8998
+-492.0603,165.8472,-441.9436
+-489.8361,171.6174,-446.6
+-488.7166,171.5897,-445.4647
+-491.2207,171.6445,-443.2376
+-494.353,171.6013,-444.2275
+-489.8481,168.6158,-446.3873
+-489.0306,168.5973,-443.6591
+-492.4524,168.5977,-443.7219
+-490.1313,168.5765,-441.0291
+-490.2263,165.6152,-446.297
+-487.7107,165.5933,-443.0809
+-489.9834,165.5627,-441.5092
+-490.9651,165.5982,-443.7968
+-492.6187,165.5956,-443.8596
+-469.3712,167.7094,-549.4153
+-466.854,173.5849,-555.3818
+-473.2755,174.3405,-553.6103
+-471.3021,174.2652,-552.0983
+-470.1498,173.6776,-558.2042
+-472.0331,173.9994,-555.288
+-466.6793,170.7538,-555.0436
+-470.2227,171.8486,-550.6852
+-471.4047,171.24,-552.565
+-471.4573,170.9958,-557.0107
+-468.9739,167.7817,-557.3561
+-466.4348,167.6897,-556.0306
+-472.345,168.2126,-554.062
+-471.2867,168.3161,-552.3704
+-470.4084,173.7162,-557.8469
+-468.9696,173.6258,-557.1655
+-470.5338,173.9725,-554.2216
+-473.8096,174.1748,-554.0714
+-470.5619,170.7358,-557.462
+-468.8516,170.7318,-555.1846
+-472.0729,171.0327,-554.0686
+-468.9692,170.8919,-552.3405
+-471.0999,167.7847,-557.0663
+-467.6328,167.6428,-554.9144
+-469.2144,167.8631,-552.6592
+-470.9238,167.9126,-554.4683
+-472.4921,168.0541,-553.9593
+-467.181,166.5413,-595.6006
+-469.2657,172.9013,-589.9739
+-462.8022,173.081,-591.7444
+-464.7726,173.071,-593.2621
+-465.978,172.9013,-587.1406
+-464.0699,172.9243,-590.0583
+-469.6501,170.0769,-590.1605
+-466.0261,170.6683,-594.5499
+-464.8966,170.0761,-592.633
+-464.8716,170.0693,-588.1803
+-467.5881,167.0719,-587.6778
+-470.1244,167.0973,-589.0118
+-464.1876,167.0726,-590.9698
+-465.2317,167.1628,-592.6709
+-465.7164,172.9013,-587.4979
+-467.1567,172.8813,-588.1821
+-465.5649,172.9513,-591.1309
+-462.283,172.9013,-591.2719
+-465.7848,169.9013,-587.7211
+-467.4858,169.9013,-590.0054
+-464.2489,169.9013,-591.1163
+-467.3508,169.8983,-592.8532
+-465.4673,166.9013,-587.9543
+-468.9309,166.9013,-590.1166
+-467.3328,166.8813,-592.3707
+-465.6279,166.9013,-590.5566
+-464.0525,166.8983,-591.0629
+-510.1038,165.2696,-476.014
+-508.1421,174.7996,-466.7769
+-507.5299,174.8264,-467.1547
+-507.0626,174.7994,-467.3058
+-507.8447,174.8969,-467.3699
+-513.2546,171.6184,-471.7966
+-508.5677,171.6242,-466.3049
+-507.932,171.6178,-470.5375
+-509.1335,168.6169,-467.4492
+-511.3698,168.6206,-470.8945
+-509.8971,168.6234,-472.0078
+-506.032,168.6176,-468.6412
+-508.3091,165.6147,-471.1885
+-508.1191,166.587,-467.2938
+-510.1473,165.6669,-465.0008
+-514.1908,165.6129,-470.9344
+-510.7595,165.6712,-473.4735
+-506.4666,165.4396,-469.0415
+-506.0883,165.4296,-469.4453
+-509.8662,165.4396,-465.6633
+-510.094,165.4276,-469.2364
+-512.8074,165.4426,-470.0891
+-511.821,165.4426,-471.9157
+-511.1123,169.2076,-474.1103
+-512.3235,168.4426,-471.9207
+-512.2454,168.4426,-468.7477
+-510.1528,168.4396,-466.0894
+-507.8779,168.4396,-469.4118
+-510.4755,168.4426,-470.796
+-505.8289,171.4396,-469.1276
+-509.9518,171.4396,-465.2868
+-511.9193,171.4426,-468.5135
+-513.999,172.1886,-470.2064
+-509.1746,171.4396,-468.2202
+-512.7007,171.4426,-472.8027
+-511.9286,171.4426,-470.8786
+-490.3678,165.2715,-468.7914
+-499.6063,174.8015,-466.8364
+-499.229,174.8283,-466.224
+-499.0781,174.8014,-465.7566
+-499.0135,174.8988,-466.5386
+-494.5829,171.6203,-471.9453
+-500.078,171.6262,-467.2625
+-495.8458,171.6197,-466.6237
+-498.9333,168.6189,-467.8274
+-495.4863,168.6225,-470.0611
+-494.374,168.6254,-468.5876
+-497.7435,168.6196,-464.725
+-495.1946,165.6167,-467.0002
+-499.0894,166.5889,-466.8131
+-501.381,165.6689,-468.843
+-495.4443,165.6149,-472.8821
+-492.9077,165.6731,-469.4489
+-497.3429,165.4415,-465.1592
+-496.9395,165.4315,-464.7806
+-500.7186,165.4415,-468.5614
+-497.1454,165.4296,-468.7865
+-496.2908,165.4445,-471.4993
+-494.4648,165.4445,-470.5116
+-492.2708,169.2095,-469.8012
+-494.4594,168.4445,-471.014
+-497.6326,168.4445,-470.9382
+-500.2924,168.4415,-468.8477
+-496.9717,168.4415,-466.5703
+-495.5856,168.4445,-469.1669
+-497.2573,171.4415,-464.5215
+-501.0951,171.4415,-468.6472
+-497.8669,171.4445,-470.6123
+-496.1726,172.1906,-472.6908
+-498.1624,171.4415,-467.8678
+-493.5771,171.4445,-471.3907
+-495.5018,171.4445,-470.62
+-460.0186,167.4086,-559.8183
+-465.1798,176.6139,-568.1018
+-465.6287,176.6468,-567.54
+-466.0167,176.6201,-567.239
+-465.2611,176.7274,-567.446
+-458.608,173.6483,-565.0238
+-464.874,173.4293,-568.6036
+-464.0419,173.5538,-564.4071
+-463.8938,170.4665,-567.6371
+-460.6254,170.6042,-565.1531
+-461.635,170.6285,-563.6077
+-466.4094,170.4749,-565.4664
+-463.3448,167.5791,-563.7593
+-464.8595,168.4225,-567.3848
+-463.707,167.4489,-570.203
+-457.8962,167.6277,-565.9885
+-460.2682,167.7341,-562.4407
+-465.8005,167.316,-565.1506
+-466.0199,167.3154,-564.6426
+-463.7432,167.2404,-569.4786
+-462.3212,167.3465,-566.1943
+-459.4802,167.4163,-566.3109
+-459.791,167.4657,-564.259
+-459.7931,171.2926,-562.0571
+-459.3777,170.4691,-564.5057
+-460.5234,170.3654,-567.4639
+-463.3905,170.2553,-569.2562
+-464.4086,170.3404,-565.3613
+-461.4966,170.4142,-564.9384
+-466.4937,173.309,-565.0167
+-463.912,173.2256,-570.0245
+-460.9705,173.3528,-567.6553
+-458.4567,174.1741,-566.787
+-463.6522,173.3129,-567.0024
+-458.7858,173.4998,-563.8852
+-460.1625,173.4297,-565.4338
+-440.9301,166.9988,-593.1034
+-436.0477,176.579,-585.08
+-435.6005,176.6104,-585.6431
+-435.2119,176.5874,-585.9438
+-435.9703,176.6771,-585.7387
+-442.5276,173.3316,-588.0671
+-436.2557,173.4014,-584.4916
+-437.0938,173.3864,-588.6887
+-437.1455,170.3849,-585.3759
+-440.418,170.3551,-587.8581
+-439.4105,170.3683,-589.4051
+-434.6326,170.4112,-587.5496
+-437.6082,167.3778,-589.1732
+-436.1179,168.3653,-585.574
+-437.2383,167.4337,-582.7288
+-443.0544,167.3205,-586.9384
+-440.689,167.4029,-590.4912
+-435.1448,167.2277,-587.7788
+-434.9258,167.22,-588.2869
+-437.1964,167.2068,-583.4474
+-438.6228,167.1803,-586.7313
+-441.4645,167.1663,-586.6126
+-441.1566,167.1695,-588.6656
+-441.2728,170.9335,-590.9705
+-441.6614,170.1645,-588.4998
+-440.5114,170.1762,-585.5415
+-437.6411,170.2025,-583.751
+-436.6285,170.2128,-587.6482
+-439.5415,170.1861,-588.0688
+-434.6353,173.2332,-588.0761
+-437.2102,173.207,-583.0643
+-440.1558,173.18,-585.4319
+-442.694,173.9002,-586.3186
+-437.4744,173.2043,-586.0873
+-442.3461,173.1577,-589.2015
+-440.967,173.1717,-587.6535
+220.6602,150.5103,228.4297
+119.3033,142.5349,187.5238
+291.479,122.4024,-217.5433
+441.4255,124.5675,-37.79346
+46.09375,730.4323,489.3336
+-43.06146,126.2427,-638.741
+-426.4309,206.8375,9.153839
+68.93005,604.6413,533.1603
+35.53937,980.9655,325.116
+-37.65033,133.2788,-590.5984
+-527.2103,165.6906,-491.6425
+-530.912,169.9289,-491.0744
+-528.7731,169.6255,-496.8922
+-526.2119,169.7838,-494.9964
+-531.2239,168.8776,-494.4553
+-522.564,166.0087,-490.2104
+-522.7544,166.0422,-489.2696
+-523.4187,166.0181,-489.1932
+-524.575,166.0122,-489.2032
+-531.9594,166.0144,-492.6385
+-528.6893,166.0218,-490.6503
+-526.8862,166.0508,-496.3473
+-526.3535,166.0017,-495.5244
+-525.8268,168.9217,-486.3586
+-530.4694,168.7031,-493.8572
+-527.8928,168.702,-494.1971
+-526.746,168.7462,-487.0542
+-525.0786,168.7414,-488.4588
+-526.9139,165.8414,-488.46
+-523.1486,165.8443,-489.0862
+-527.0145,165.8437,-494.2655
+-531.8807,165.8321,-492.6818
+-528.4736,165.8146,-496.3699
+-522.7197,165.8521,-488.8492
+-477.9203,165.6111,-508.0587
+-477.3203,169.827,-504.3366
+-483.1189,169.6296,-506.539
+-481.1931,169.7639,-509.079
+-480.7218,168.8324,-504.0648
+-476.4327,165.9199,-512.6884
+-475.4937,165.9367,-512.4877
+-475.4249,165.9092,-511.8227
+-475.4475,165.8996,-510.6666
+-478.9619,165.9364,-503.3196
+-476.9386,165.9205,-506.5681
+-482.6145,166.0523,-508.4321
+-481.7869,165.9909,-508.9561
+-472.5676,168.7563,-509.3743
+-480.1185,168.6502,-504.8134
+-480.4305,168.6632,-507.3934
+-473.2759,168.5897,-508.4633
+-474.6624,168.6142,-510.1457
+-474.7327,165.7087,-508.3204
+-475.318,165.7345,-512.0922
+-480.538,165.8094,-508.2822
+-479.0073,165.755,-503.3994
+-482.6582,165.8113,-506.8459
+-475.0762,165.7396,-512.5186
+-430.4308,164.7883,-531.2804
+-432.9301,168.8015,-528.1762
+-434.4542,169.368,-534.1653
+-431.2664,169.3334,-534.045
+-435.1471,168.221,-530.8929
+-425.7744,165.0346,-532.6942
+-425.4005,164.9319,-531.8154
+-425.907,164.8789,-531.3813
+-426.8668,164.842,-530.7376
+-434.8909,165.1141,-529.3696
+-431.0745,164.9371,-529.5937
+-432.7894,165.8065,-535.2515
+-431.8899,165.6586,-534.8878
+-426.1383,167.2927,-527.3336
+-434.1979,167.9865,-530.854
+-432.2635,168.1046,-532.5855
+-427.2976,167.1897,-527.4045
+-426.7123,167.4265,-529.4913
+-428.3879,164.5045,-528.8339
+-425.6337,164.6996,-531.4692
+-431.736,165.3091,-533.5091
+-434.8605,164.9418,-529.473
+-434.1249,165.5313,-534.4047
+-425.146,164.6864,-531.5171
+295.3866,125.7758,-221.8441
+435.0403,127.8498,-40.0528
+225.3116,153.5262,232.0293
+117.7108,145.5693,193.0797
+54.40155,718.8295,446.8236
+-51.52588,120.1105,-634.2503
+68.83514,597.9813,569.0424
+-431.5946,196.9558,11.41351
+16.94763,973.2479,294.6747
+-45.22742,125.7902,-586.6078
+199.5051,143.1263,174.3004
+109.5299,146.5311,265.7993
+147.2,143.1628,-473.4671
+479.9714,125.6246,-384.272
+-66.06079,126.4536,-258.649
+385.343,123.1573,-590.6722
+209.0698,132.7208,-449.6077
+95.53943,143.608,248.5445
+-491.136,166.3615,-520.7014
+-487.8203,166.3634,-517.2905
+-490.3209,166.152,-516.9313
+-491.5309,167.7277,-521.4203
+-490.9805,168.0682,-524.4491
+-494.4586,168.2489,-524.861
+-495.4171,166.7682,-521.4645
+-495.2434,166.5458,-519.3317
+-486.0245,166.7843,-520.6045
+-493.0316,166.457,-520.0829
+-492.9641,166.6711,-522.6945
+-490.3278,166.7231,-522.9465
+-491.071,167.8735,-524.193
+-489.2367,166.4131,-519.6423
+-487.3528,166.5319,-520.8785
+-487.7455,166.2336,-517.7506
+-490.7649,166.1954,-517.4044
+-493.5807,166.6818,-522.6819
+-488.3794,166.6237,-521.8293
+-493.0236,166.9334,-525.3121
+-493.2295,166.464,-520.1633
+-442.9169,165.9682,-536.8595
+-446.5305,166.5507,-539.8976
+-444.0852,166.3188,-540.5247
+-442.3992,167.2065,-536.0006
+-442.6522,167.1308,-532.9148
+-439.1462,167.1488,-532.823
+-438.5701,166.1365,-536.4687
+-438.9496,166.2237,-538.5845
+-447.9926,166.5508,-536.3981
+-441.0842,166.0945,-537.6407
+-440.9008,165.9384,-535.0306
+-443.4979,166.0318,-534.5179
+-442.594,166.9718,-533.2029
+-444.902,166.2251,-537.711
+-446.6567,166.223,-536.2924
+-446.568,166.3593,-539.4548
+-443.5979,166.2817,-540.0958
+-440.2881,165.9327,-535.1016
+-445.5437,166.149,-535.4427
+-440.5885,165.8256,-532.4202
+-440.8795,166.0842,-537.5798
+-507.3142,165.7205,-506.6927
+-511.5645,166.0334,-504.5795
+-511.1553,165.8655,-507.0758
+-506.3901,167.0139,-506.8047
+-503.6594,167.0648,-505.3445
+-502.1844,167.2175,-508.5227
+-505.2396,166.0677,-510.5205
+-507.3336,166.0474,-511.014
+-508.9388,166.1332,-501.8445
+-507.3093,165.8805,-508.6825
+-504.8365,165.8465,-507.8135
+-505.4032,165.8655,-505.2259
+-503.8915,166.8955,-505.5152
+-508.8966,165.8655,-505.2072
+-508.2936,165.8605,-503.0329
+-511.163,165.8605,-504.3719
+-510.5668,165.8655,-507.3524
+-504.6581,165.8605,-508.4036
+-507.0691,165.8655,-503.7163
+-502.3149,165.8605,-507.0617
+-507.1716,165.8805,-508.8461
+-504.0109,166.4031,-523.8997
+-508.6553,166.7036,-524.883
+-506.7771,166.6475,-526.5848
+-503.2362,167.6806,-523.3456
+-502.0121,167.6034,-520.5017
+-498.8798,167.878,-522.0553
+-500.0076,166.8906,-525.5768
+-501.3369,166.9383,-527.2678
+-508.3087,166.6159,-521.1072
+-502.7689,166.6587,-525.4415
+-501.3768,166.5306,-523.2241
+-503.4331,166.4368,-521.5568
+-502.0848,167.4474,-520.7882
+-506.1759,166.5097,-523.7191
+-507.0597,166.3872,-521.6465
+-508.4685,166.5123,-524.4796
+-506.1447,166.6484,-526.434
+-500.8696,166.5693,-523.5728
+-505.6765,166.3993,-521.4166
+-499.8741,166.4551,-521.0654
+-502.5593,166.6637,-525.4834
+-47.74878,118.2949,-637.1742
+36.19385,720.0288,455.3527
+21.04718,962.5216,306.3739
+-41.51227,124.7771,-589.9668
+-426.6332,197.5571,10.34827
+68.76404,612.809,562.0519
+14.77893,971.6827,297.3758
+-44.19928,125.2249,-586.4427
+-430.661,196.928,12.14273
+65.9718,600.4521,568.6622
+-50.56708,119.4883,-633.938
+51.11847,722.1163,446.344
+35.41809,719.3206,491.7701
+-43.2077,124.5068,-642.2948
+77.5177,613.9749,533.7463
+-424.2926,205.4412,6.130219
+43.01154,970.717,324.5287
+-37.88403,132.0574,-594.3558
+40.94952,986.0435,317.0099
+-40.67841,134.8732,-590.7511
+76.50879,596.8363,534.7133
+-429.3202,206.8745,7.313843
+-45.91022,128.0546,-639.3214
+56.33624,721.6543,489.9318
+64.49408,723.4419,449.5973
+-51.76978,122.528,-632.6639
+66.45947,589.563,565.8568
+-433.618,198.8025,12.37036
+16.17798,982.525,294.6985
+-45.57324,127.9244,-584.6722
+-479.4393,167.4738,-563.8154
+-475.5471,168.1715,-557.6692
+-476.2789,168.1324,-557.7634
+-482.1621,168.338,-558.3799
+-480.141,171.2959,-557.629
+-479.037,168.1054,-561.2552
+-476.7378,168.0991,-554.8392
+-477.4603,167.9179,-559.7043
+-479.7356,168.8452,-561.8919
+-481.6361,168.1476,-558.1396
+-480.1195,168.0723,-557.6137
+-475.8976,167.8416,-560.3916
+-480.4406,171.0289,-560.0685
+-482.2913,171.1841,-557.7103
+-478.4401,169.1019,-558.3354
+-40.76141,124.0296,-588.5898
+15.6582,962.97,307.7246
+63.40338,612.7538,563.5774
+-426.4531,197.3072,12.0582
+-47.14856,117.6956,-635.6578
+35.79346,725.8199,451.7188
+33.19873,721.5469,455.873
+-47.00983,117.8668,-637.2921
+-425.8011,197.5941,10.57095
+67.52295,615.1606,561.2925
+20.46198,960.9121,308.5453
+-40.74854,124.4428,-590.1862
+-431.5391,196.7855,12.55469
+65.30017,597.7538,570.1309
+-44.77863,125.3121,-585.6567
+13.34412,973.6849,295.4208
+54.37213,722.6364,444.3258
+-51.17706,119.7402,-633.2131
+-44.90369,123.9848,-639.1949
+42.83948,723.5238,480.5685
+-39.31555,130.9418,-591.2794
+34.14612,974.5112,318.3396
+72.13965,607.5581,541.5692
+-426.5348,203.9664,8.487244
+-463.6626,164.9745,-467.6288
+-456.774,168.7686,-467.0337
+-459.0491,168.9189,-464.3684
+-458.5652,168.8621,-462.7711
+-463.3812,169.2371,-470.1434
+-460.8658,169.0527,-469.675
+-464.1339,169.4037,-473.6211
+-469.4437,169.7102,-471.9712
+-468.108,169.6098,-470.0385
+-466.7787,166.2204,-467.2306
+-467.8883,165.5877,-468.6606
+-466.2471,165.4626,-474.944
+-462.5068,166.4455,-472.7488
+-458.1975,165.9283,-468.2354
+-464.8138,167.2175,-462.8299
+-463.0256,165.2089,-465.0653
+-460.944,165.054,-464.8613
+-465.9248,169.4362,-471.6012
+-461.697,169.1066,-461.3499
+-461.0989,169.0598,-466.2436
+-469.5497,169.7191,-469.6297
+-459.7643,168.9556,-468.1871
+-462.042,166.4049,-472.2542
+-457.8937,166.0813,-467.5904
+-466.1958,165.4319,-472.9588
+-466.7245,165.4732,-469.421
+-460.3643,164.9771,-463.2882
+-465.101,165.187,-474.4204
+-463.7549,165.091,-472.653
+-467.9146,165.4166,-469.8978
+-469.5303,165.5427,-470.0405
+-461.1802,164.8813,-461.7086
+-462.0176,164.9466,-463.0215
+-462.6747,164.9879,-461.4257
+-463.51,165.0721,-463.9146
+-462.3033,164.9618,-464.0898
+-456.9055,164.5476,-466.2044
+-456.6782,164.5299,-464.9647
+-458.4807,164.6806,-465.5015
+-458.1099,164.6517,-464.0687
+-458.772,165.9731,-468.4962
+-458.6888,169.9327,-465.415
+-458.4611,169.9149,-464.6187
+-458.8296,168.7109,-467.9611
+-460.0614,168.806,-467.7088
+-457.8187,168.628,-467.0398
+-456.5938,168.5325,-465.977
+-456.3632,168.5045,-464.4487
+-457.3661,168.5747,-463.5537
+-459.3824,168.7551,-462.4602
+-461.2932,168.8922,-461.6003
+-460.6918,168.8573,-463.1507
+-462.4917,168.9957,-464.2605
+-462.489,168.9955,-467.3988
+-461.1399,168.8802,-466.1532
+-460.7052,168.8562,-467.5786
+-459.4705,168.7599,-467.0983
+-459.4589,168.759,-468.7766
+-464.1437,169.1245,-472.2976
+-466.3113,169.2936,-473.1121
+-467.6256,169.3962,-471.6137
+-467.2197,169.3645,-469.7182
+-411.0929,171.8165,-598.5687
+-417.814,175.7285,-599.8822
+-415.179,176.0301,-602.1774
+-415.4283,176.0876,-603.8277
+-411.7212,175.9025,-595.8333
+-414.1436,175.7818,-596.6687
+-411.4759,175.8241,-592.2805
+-405.9833,176.1746,-593.1278
+-407.0275,176.2219,-595.2342
+-407.9485,173.0471,-598.4298
+-407.0577,172.3053,-596.9025
+-409.5857,171.7762,-590.9426
+-412.9688,172.9523,-593.5781
+-416.5858,172.7957,-598.6871
+-409.2575,174.3642,-602.9875
+-411.3541,172.2317,-601.1747
+-413.3851,172.1171,-601.685
+-409.4131,175.9706,-594.016
+-412.124,176.3881,-604.7654
+-413.4196,176.018,-600.0227
+-405.5417,176.3405,-595.4238
+-415.0201,175.7994,-598.3022
+-413.3577,172.9511,-594.1359
+-416.7933,172.9959,-599.3569
+-409.3511,171.8805,-592.912
+-408.3191,172.1543,-596.3264
+-413.7329,172.1541,-603.3264
+-410.6453,171.551,-591.6426
+-411.7236,171.5918,-593.587
+-407.2101,172.0506,-595.689
+-405.6314,172.1464,-595.308
+-412.6985,172.1551,-604.7757
+-412.0585,172.1209,-603.355
+-411.1787,172.2617,-604.8336
+-410.7096,172.1669,-602.2508
+-411.9293,172.0603,-602.2582
+-417.5761,171.572,-600.9723
+-417.6229,171.641,-602.23
+-415.9159,171.7323,-601.4314
+-416.0769,171.805,-602.9011
+-416.0547,172.8156,-598.3441
+-415.6831,176.9752,-601.126
+-415.7941,177.0142,-601.946
+-415.9133,175.5824,-598.676
+-414.6577,175.6788,-598.7422
+-416.7814,175.5747,-599.7362
+-417.8411,175.5667,-600.9675
+-417.8496,175.645,-602.5114
+-416.7283,175.763,-603.2465
+-414.5751,175.9915,-604.0248
+-412.5602,176.1624,-604.5908
+-413.3784,176.0303,-603.1486
+-411.7563,176.0707,-601.7855
+-412.2101,175.8582,-598.6875
+-413.3666,175.8444,-600.1184
+-414.0018,175.7296,-598.775
+-415.1548,175.6815,-599.4327
+-415.4076,175.5673,-597.7775
+-411.2767,175.6348,-593.605
+-409.2482,175.7212,-592.4788
+-407.7319,175.9083,-593.7628
+-407.8612,176.0101,-595.6945
+-487.5399,166.9902,-594.8654
+-485.9913,171.3086,-588.4502
+-489.2478,171.2814,-589.7526
+-490.604,171.2624,-588.7782
+-485.1752,171.2617,-595.7219
+-484.8082,171.2736,-593.1831
+-482.1273,171.3694,-597.5624
+-485.3986,171.2619,-602.0676
+-486.7982,171.2656,-600.1781
+-488.9465,167.9898,-597.7711
+-487.9321,167.2727,-599.2316
+-481.453,167.2758,-599.6922
+-482.358,168.5467,-595.5281
+-485.2384,168.3662,-589.9711
+-492.5092,169.1366,-594.5753
+-489.7692,167.2733,-593.4575
+-489.2916,167.2808,-591.4153
+-484.6146,171.2624,-598.6064
+-492.9594,171.2624,-591.2963
+-488.1324,171.2624,-592.3008
+-487.65,171.2624,-601.4158
+-485.8618,171.2624,-591.6578
+-482.6765,168.5424,-594.9272
+-485.7556,168.5424,-589.4883
+-483.3157,167.2492,-599.0035
+-486.8363,167.2492,-598.3688
+-490.5935,167.2492,-590.3567
+-481.5747,167.0902,-598.4217
+-482.8147,167.0992,-596.5758
+-486.7646,167.1002,-599.6414
+-487.1503,167.1002,-601.2219
+-492.3484,167.0902,-590.6124
+-491.375,167.0902,-591.8297
+-493.0978,167.0802,-591.9402
+-491.0106,167.0992,-593.535
+-490.4553,167.0832,-592.4438
+-486.7131,167.0902,-587.9969
+-487.8138,167.0902,-587.3826
+-487.8867,167.1002,-589.268
+-489.124,167.1002,-588.4553
+-485.1765,168.3662,-590.6006
+-488.1667,172.3202,-589.8235
+-488.8473,172.3202,-589.3513
+-485.7701,171.0912,-590.6846
+-486.4063,171.0902,-591.7736
+-486.3167,171.0872,-589.4281
+-486.9282,171.0872,-587.9231
+-488.3009,171.0772,-587.2121
+-489.4716,171.0692,-587.8765
+-491.1575,171.0922,-589.442
+-492.5875,171.0802,-590.9797
+-490.9258,171.0922,-590.9076
+-490.455,171.0902,-592.9738
+-487.4823,171.0902,-593.9797
+-488.2267,171.0802,-592.2972
+-486.7369,171.0902,-592.3431
+-486.7938,171.0902,-591.016
+-485.2008,171.0902,-591.5444
+-483.3767,171.0902,-597.1257
+-483.3042,171.0902,-599.4464
+-485.1467,171.0902,-600.2131
+-486.8108,171.0902,-599.2184
+-422.7413,172.0808,-611.4292
+-429.3536,176.3777,-611.5527
+-427.2578,176.3768,-614.3651
+-427.8507,176.3663,-615.9263
+-422.536,176.336,-608.8948
+-425.084,176.3411,-609.1927
+-421.5414,176.4238,-605.4755
+-416.3463,176.3475,-607.4792
+-417.8125,176.3587,-609.3176
+-419.5751,173.0953,-612.0347
+-418.422,172.3729,-610.6837
+-419.6426,172.3285,-604.3041
+-423.4385,173.5997,-606.2407
+-428.0674,173.4321,-610.4541
+-421.7515,174.2637,-616.2913
+-423.5298,172.3784,-613.9435
+-425.6261,172.3791,-614.007
+-419.8926,176.3369,-607.6115
+-424.8118,176.3877,-617.555
+-425.0819,176.3534,-612.6321
+-416.3974,176.3638,-609.8224
+-426.2871,176.3355,-610.6032
+-423.9371,173.5969,-606.7029
+-428.4016,173.6114,-611.0769
+-419.8292,172.3147,-606.2814
+-419.5375,172.3399,-609.8468
+-426.3143,172.3556,-615.5375
+-420.8385,172.1419,-604.7496
+-422.3036,172.1573,-606.4224
+-418.3257,172.1924,-609.4513
+-416.6991,172.1976,-609.4177
+-425.6155,172.21,-617.1688
+-424.6895,172.2046,-615.9151
+-424.1396,172.2076,-617.5516
+-423.1351,172.2135,-615.1245
+-424.3323,172.1917,-614.8685
+-429.5918,172.1641,-612.3954
+-429.9025,172.1713,-613.6171
+-428.0618,172.1848,-613.2027
+-428.5291,172.1927,-614.6073
+-427.4751,173.4326,-610.2324
+-427.4707,177.4075,-613.295
+-427.7521,177.4119,-614.0741
+-427.2505,176.1621,-610.7661
+-426.0347,176.1675,-611.1007
+-428.3242,176.1602,-611.6172
+-429.6215,176.1624,-612.5952
+-429.9556,176.1616,-614.1046
+-429.0126,176.1633,-615.065
+-427.0663,176.2012,-616.2916
+-425.2126,176.2022,-617.2783
+-425.7096,176.2018,-615.6909
+-423.8339,176.1994,-614.7047
+-423.626,176.1789,-611.5734
+-425.0605,176.1718,-612.7253
+-425.3992,176.1708,-611.2739
+-426.6671,176.1692,-611.67
+-426.566,176.1582,-609.9948
+-421.6412,176.1532,-606.7971
+-419.4172,176.1562,-606.1303
+-418.2026,176.1711,-607.7137
+-418.736,176.1819,-609.5776
+-433.7582,197.7891,12.85385
+65.41467,589.925,569.3142
+-45.93823,126.9449,-584.2388
+13.5368,981.063,292.683
+63.97284,723.4563,445.1679
+-52.24988,121.6585,-632.1219
+224.8218,150.5001,232.1775
+118.1145,142.5693,192.9254
+295.2086,122.6612,-221.8369
+435.4102,124.378,-39.90314
+-57.71436,126.0802,-633.354
+86.10632,706.5544,449.1339
+-51.83716,130.9523,-584.5097
+25.65973,993.2761,277.5829
+80.78607,572.9774,570.1116
+-439.733,198.6646,9.050568
+-487.7843,167.7038,-559.6401
+-489.8486,167.8579,-562.6606
+-485.3898,168.0022,-566.6826
+-487.7595,168.0378,-562.9535
+-487.7402,167.5459,-567.4637
+-485.4182,167.8343,-566.4749
+-487.6111,168.8431,-564.6789
+-486.6127,167.7273,-566.5023
+-489.0217,167.8361,-561.5165
+-486.8339,167.8942,-563.2943
+-490.0171,168.3053,-565.0529
+-484.0607,167.365,-566.6124
+-482.0802,168.1529,-563.6348
+-486.5901,168.266,-559.6689
+-484.1803,168.1134,-563.3694
+-484.215,168.2022,-558.8334
+-486.5382,168.0777,-559.8534
+-484.4532,169.1082,-561.7621
+-485.3402,168.121,-559.8113
+-482.8795,167.885,-564.7673
+-485.0875,167.9031,-563.014
+-482.0065,168.9189,-561.3198
+-480.6842,165.1658,-439.5507
+-479.7072,165.6932,-436.0613
+-485.2173,165.7035,-433.67
+-481.7872,165.7078,-436.4555
+-483.2158,165.5058,-432.154
+-485.1135,165.5258,-433.8427
+-482.5295,166.6058,-434.9422
+-483.9862,165.5258,-433.4327
+-480.1222,165.5258,-437.4003
+-482.7625,165.5058,-436.411
+-480.3403,166.3058,-433.7864
+62.77332,583.1327,545.0408
+-433.3951,205.6792,12.69052
+-42.14465,133.8738,-584.1334
+23.32312,997.0057,309.7816
+71.95862,735.4634,472.7677
+-47.82104,128.171,-632.7427
+-38.48584,125.0065,-590.1002
+19.70465,961.4814,315.9709
+63.23431,617.7568,555.7333
+-424.277,199.1263,11.45084
+-44.71155,118.2381,-637.1345
+29.61359,728.274,461.0199
+74.51996,717.4445,475.5489
+-50.93628,128.7855,-636.1685
+77.59949,582.1204,546.9619
+-434.785,204.6813,8.344269
+35.0592,994.4647,300.8184
+-45.52515,134.6655,-587.2579
+117.83,142.2826,185.5198
+218.1592,150.7699,228.7231
+443.9314,124.5927,-39.21802
+291.838,122.2275,-215.0012
+-41.41516,133.4395,-583.9056
+21.4425,996.026,311.6404
+-432.7756,205.636,13.31259
+60.45099,584.729,544.9392
+-47.1499,127.7131,-632.4072
+69.79633,738.0935,472.1265
+67.59955,590.042,568.6479
+-433.8,197.8948,12.15002
+15.7597,980.8118,292.2067
+-46.2207,127.2432,-584.8216
+64.02008,721.103,446.7034
+-52.47052,121.8912,-632.7587
+40.20557,726.5297,473.1471
+-44.95123,122.2623,-637.9285
+-426.1898,202.4325,9.936768
+67.96143,609.4235,546.6804
+28.03052,971.629,317.1757
+-39.12769,129.0609,-590.2794
+-43.71344,136.7524,-588.1237
+39.82263,997.2271,308.3011
+77.63049,582.9822,537.7117
+-433.7039,207.3124,7.800995
+-48.88879,130.5566,-637.1968
+73.42664,720.5016,486.4925
+119.1077,143.4636,194.1662
+226.5436,151.0403,231.7859
+433.7871,125.1976,-38.84729
+294.8492,123.5193,-223.4672
+296.3544,123.0143,-215.6217
+441.3538,125.3047,-43.65692
+218.8254,151.9177,233.0763
+114.2203,142.6862,188.1673
+-426.4817,197.447,11.14145
+66.23181,612.9814,562.6791
+-41.10803,124.4104,-589.3615
+18.55719,962.5896,307.168
+35.76105,722.7793,453.7504
+-47.41486,117.9875,-636.4973
+477.5076,125.4265,-381.5657
+-69.60638,127.1267,-258.1777
+386.9583,123.4182,-587.4095
+98.48645,144.1803,250.6724
+212.1998,132.4334,-447.7155
+202.5035,143.4411,176.3965
+105.9867,145.8944,266.2288
+144.0145,143.8846,-474.9962
+-423.8656,199.1258,11.69534
+62.20801,618.8718,555.4883
+18.992,960.7545,317.1199
+-38.06,124.7884,-590.0933
+28.15521,729.4696,460.981
+-44.30951,117.9872,-637.0681
+99.96021,715.983,430.2871
+-60.34894,125.4963,-627.5527
+-443.7118,196.5243,13.58096
+69.98053,560.9365,582.7429
+-54.01422,129.3037,-578.7236
+9.450928,1001.312,267.888
+101.3077,713.0048,431.5742
+-60.88733,125.9116,-628.129
+72.67261,560.0303,582.4164
+-444.1144,196.6123,12.79065
+-54.62427,129.7427,-579.2026
+11.89563,1001.764,266.4755
+42.45453,727.8409,471.1321
+-45.28613,122.346,-637.168
+66.61481,607.4956,547.9644
+-426.7844,202.2929,10.5065
+-39.41656,129.0037,-589.4979
+26.14056,973.1285,316.0104
+7.628113,1002.231,267.4081
+-54.07587,129.1679,-578.0872
+68.47217,559.8271,583.6869
+-444.0267,196.4101,14.14224
+-60.45764,125.4616,-626.9091
+101.1904,717.5305,428.6348
+74.92499,714.3264,477.4088
+-51.29755,129.1259,-636.9511
+-434.9333,204.8091,7.438385
+80.4751,581.9949,546.2166
+37.90656,994.3365,299.972
+-45.96661,135.0771,-587.9613
+108.276,146.4589,261.4102
+197.4833,144.2924,178.292
+148.4683,143.094,-477.8271
+476.1178,125.4756,-386.8079
+207.3263,132.6097,-445.331
+93.46289,143.5866,252.6868
+381.6031,123.6903,-588.0544
+-67.44568,126.1065,-263.004
+-41.53381,135.9135,-590.1932
+42.03125,990.1273,315.0039
+77.64429,592.3354,534.1438
+-430.6534,207.4424,7.156036
+-46.69086,129.2361,-638.9752
+61.95013,720.901,490.8994
+435.595,131.6973,-39.90637
+295.0081,129.1588,-221.1571
+117.4344,148.86,192.3887
+225.1764,156.8583,231.2882
+-57.96545,126.3754,-634.2733
+85.91455,703.3259,451.3712
+-52.17438,131.3492,-585.3607
+28.78284,992.7781,277.0907
+-439.7207,198.8187,8.064911
+83.79816,573.3479,569.0946
+-453.3173,166.8986,-556.055
+-453.3263,173.5238,-558.6315
+-457.4899,173.6977,-559.6845
+-455.5139,173.5746,-558.1792
+-452.2118,173.595,-562.345
+-451.8259,173.5681,-562.1706
+-450.7554,170.5142,-561.3988
+-454.3364,171.0926,-556.9726
+-455.4944,170.598,-558.9001
+-455.5408,170.7287,-563.3508
+-452.9298,167.6582,-563.9602
+-450.3879,167.557,-562.6406
+-456.3127,167.6726,-560.6501
+-455.2582,167.6753,-558.9531
+-454.8743,167.5153,-562.7145
+-451.5945,167.3481,-561.3441
+-453.4462,167.3658,-559.5055
+-455.1787,167.4707,-561.5042
+-457.8048,167.5133,-560.1771
+-458.2175,170.5269,-559.8991
+-454.6644,170.5523,-564.0543
+-452.761,170.405,-561.7736
+-455.3021,170.4667,-561.5615
+-453.6392,171.1383,-558.1624
+-452.5519,173.4277,-562.2206
+-453.0776,173.3436,-559.0479
+-455.7736,173.4326,-558.9011
+-455.6169,173.5125,-562.4774
+-451.0977,166.5758,-610.6797
+-450.9725,173.0971,-607.8533
+-446.8311,173.1178,-606.7036
+-448.7745,173.1051,-608.2554
+-452.1696,173.0595,-604.165
+-452.5519,173.0497,-604.3488
+-453.6848,170.0572,-605.2595
+-449.9893,170.7031,-609.5811
+-448.8892,170.1053,-607.6488
+-448.9414,170.0678,-603.1965
+-451.6459,167.049,-602.7617
+-454.1586,167.0666,-604.1396
+-448.1887,167.0951,-605.994
+-449.2037,167.1901,-607.7124
+-449.6777,166.8999,-603.9691
+-452.9286,166.8737,-605.4164
+-451.0355,166.9097,-607.212
+-449.347,166.8923,-605.1733
+-446.691,166.913,-606.44
+-446.1926,169.9226,-606.5939
+-449.838,169.8891,-602.5196
+-451.6919,169.8793,-604.8454
+-449.1459,169.8797,-604.9993
+-450.7122,170.7232,-608.4059
+-451.8312,172.8877,-604.2883
+-451.2354,172.9082,-607.4496
+-448.5354,172.9292,-607.5338
+-448.7716,172.8793,-603.9614
+-466.2671,166.5413,-599.6658
+-463.4894,173.0806,-599.8958
+-462.4299,173.081,-604.0613
+-463.9391,173.071,-602.0844
+-459.7758,173.0762,-598.7789
+-459.9512,173.0677,-598.3927
+-460.8163,170.0769,-597.2203
+-465.2214,170.6683,-600.8252
+-463.3093,170.0761,-601.9631
+-458.8568,170.0693,-602.0074
+-458.3425,167.0719,-599.2931
+-459.6656,167.0973,-596.7511
+-461.6493,167.0726,-602.6793
+-463.3458,167.1628,-601.6278
+-459.5913,166.9013,-601.2334
+-460.9674,166.8873,-597.9518
+-462.804,166.8983,-599.8055
+-460.8022,166.8833,-601.5378
+-462.1265,166.8773,-604.1657
+-462.312,169.8823,-604.6807
+-458.1594,169.9013,-601.1246
+-460.4442,169.8883,-599.2206
+-460.6533,169.8703,-601.7626
+-464.031,170.7013,-600.1282
+-459.9053,172.9013,-599.1134
+-463.0787,172.8963,-599.6404
+-463.2217,172.8983,-602.3381
+-459.6448,172.8743,-602.1792
+-474.332,165.3231,-482.2179
+-477.0889,171.8214,-483.0568
+-479.5017,171.8576,-479.5
+-477.4102,171.846,-480.8458
+-480.201,171.746,-485.369
+-479.9047,171.7354,-485.6725
+-478.662,168.7438,-486.4301
+-475.7517,169.4478,-481.5532
+-477.9305,168.8406,-481.1231
+-482.1324,168.7659,-482.5945
+-481.6625,165.7273,-485.2708
+-479.5542,165.7412,-487.2118
+-479.7046,165.8211,-480.9628
+-477.7526,165.9242,-481.3765
+-481.1464,165.6002,-483.019
+-478.7362,165.5663,-485.6368
+-477.6398,165.6286,-483.2696
+-480.111,165.6046,-482.3209
+-479.7594,165.6517,-479.3996
+-479.7906,168.6655,-478.9033
+-482.4865,168.5762,-483.6588
+-479.6902,168.5745,-484.6725
+-480.3579,168.5915,-482.2108
+-476.6344,169.4538,-482.6137
+-480.1913,171.5773,-485.0076
+-477.3862,171.6276,-483.4333
+-478.1693,171.6655,-480.8481
+-481.4785,171.5846,-482.2129
+-453.149,166.5481,-592.3577
+-453.413,173.0858,-595.1363
+-457.5745,173.0579,-596.2113
+-455.6031,173.0612,-594.6948
+-452.2823,173.0891,-598.8456
+-451.8966,173.0832,-598.6689
+-450.7072,170.1004,-597.7994
+-454.3325,170.6672,-593.4078
+-455.4592,170.0673,-595.324
+-455.4868,170.0603,-599.7767
+-452.7502,167.0814,-600.2808
+-450.2135,167.124,-598.9483
+-456.1488,167.059,-596.9868
+-455.1042,167.1564,-595.2863
+-454.6941,166.8976,-599.0394
+-451.4176,166.9059,-597.6509
+-453.2783,166.9042,-595.8214
+-455.0028,166.8775,-597.8295
+-457.6356,166.8536,-596.5152
+-458.1718,169.8551,-596.3315
+-454.6003,169.8983,-600.4708
+-452.7048,169.8982,-598.1788
+-455.2474,169.8629,-597.9793
+-453.6313,170.7049,-594.5955
+-452.6161,172.9119,-598.7175
+-453.1549,172.9032,-595.546
+-455.853,172.8869,-595.4131
+-455.6805,172.864,-598.9894
+61.79797,723.6512,449.3272
+-51.39679,121.9917,-632.8846
+66.07703,591.736,566.0128
+-432.974,198.5573,12.38992
+-45.17072,127.4629,-584.9891
+15.85876,980.5686,295.6798
+17.71094,986.1931,306.3891
+-42.3158,129.9748,-584.6879
+61.54346,591.2534,554.6564
+-431.8123,202.1029,13.18393
+-48.33478,124.2627,-632.7502
+61.93921,732.9175,461.1678
+-48.40643,127.7883,-588.0009
+26.35364,977.007,286.7715
+-434.1339,197.2163,8.327637
+79.9967,591.6198,568.9138
+-54.41882,122.1507,-636.1231
+63.18506,706.2864,450.6604
+195.2972,144.0444,176.6911
+110.9083,146.9299,261.1524
+150.8024,142.5621,-476.6397
+477.9884,125.6239,-388.7713
+380.4614,123.4905,-590.4979
+-64.80994,125.6143,-263.2932
+205.0394,132.8233,-446.7853
+91.31567,143.1644,251.0603
+67.25891,722.0051,488.0019
+-47.59253,129.7211,-637.7986
+76.43872,587.9236,536.1732
+-432.049,207.3224,7.842438
+39.78186,993.5634,312.1455
+-42.39294,136.1385,-588.911
+383.7839,124.0719,-583.387
+-72.48035,127.0464,-262.452
+97.56445,144.393,255.7939
+211.6942,132.2016,-442.5529
+472.5446,125.1925,-383.0576
+144.0099,144.1099,-480.0953
+201.6586,144.7664,181.3501
+103.248,145.5594,261.9024
+475.6273,126.0552,-379.7989
+214.3165,133.0022,-446.2119
+100.3066,145.3354,252.2409
+-71.95667,128.3212,-258.1305
+387.9615,124.3797,-585.1599
+103.3827,146.2075,266.372
+204.5269,144.4499,177.7985
+142.0405,145.1181,-476.183
+-263.9,130.4025,-118.1
+-266.294,130.877,-121.7252
+-266.9014,132.0351,-115.4254
+-266.8149,131.9813,-116.8418
+-262.7875,131.1151,-114.9557
+-262.1654,131.9847,-114.8398
+-263.3424,131.9861,-115.1246
+-264.2723,131.3033,-121.0131
+-262.9397,131.6505,-120.4893
+-260.1082,134.2344,-120.843
+-261.3405,130.8901,-120.0227
+-264.39,130.8493,-119.8827
+-264.8375,130.9679,-116.8296
+-262.6532,131.8798,-115.0226
+-262.0408,130.9559,-116.3882
+-43.42255,125.5283,-559.1895
+-45.71179,122.4018,-557.169
+-45.58679,128.8308,-557.3904
+-45.81622,127.4295,-557.3927
+-42.84222,128.5723,-560.6141
+-43.29071,128.7594,-561.5736
+-43.88263,128.6395,-560.5239
+-45.01678,122.9026,-559.1796
+-44.60388,123.2977,-560.5375
+-45.65112,123.0421,-564.2331
+-43.12506,123.401,-561.6128
+-44.42517,123.9376,-558.903
+-44.04987,126.9937,-558.6685
+-43.45911,128.6275,-561.0871
+-42.68817,127.0478,-561.1503
+91.96997,138.4444,-535.18
+88.68536,139.0068,-532.3528
+94.95914,140.3889,-532.708
+93.5473,140.2881,-532.5944
+94.90497,139.1542,-536.7656
+94.90167,139.9738,-537.4619
+94.7785,140.0619,-536.2604
+89.10071,139.289,-534.4797
+89.42584,139.5425,-535.8942
+88.5921,141.8788,-538.838
+89.70172,138.6693,-537.4801
+90.2536,138.8783,-534.4847
+93.33215,139.1194,-534.472
+94.79062,139.9034,-536.9471
+93.39203,138.8947,-537.2937
+-385.3434,128.236,77.76541
+-383.9934,128.0335,73.61392
+-389.3432,129.6237,76.81516
+-388.1768,129.4622,76.02158
+-387.1403,129.3744,80.4313
+-386.8685,130.3342,80.83353
+-387.374,130.1346,79.75125
+-383.3112,128.8175,75.53641
+-382.9059,129.4042,76.82571
+-380.9417,132.3433,78.34964
+-382.2621,128.9349,78.47458
+-384.2594,128.4497,76.21719
+-386.9355,128.7614,77.72617
+-387.0244,130.142,80.36325
+-385.5496,129.2066,80.15457
+486.4,126.4792,-56.59998
+490.7429,126.9218,-56.39603
+486.1027,127.4219,-60.82489
+487.1796,127.5059,-59.90311
+483.233,127.0648,-57.72192
+482.78,128.0012,-57.44855
+483.7167,127.8585,-58.2027
+488.9634,127.5698,-55.30542
+487.7481,128.0575,-54.63016
+486.3667,131.0424,-52.62991
+486.3992,127.4967,-53.52579
+488.1249,127.006,-55.996
+485.961,126.79,-58.18839
+483.2181,127.8438,-57.70477
+483.9231,127.1412,-56.25458
+-24.47375,128.18,-604.6468
+-22.52484,132.0155,-605.4142
+-28.10236,129.1352,-606.8257
+-26.98865,129.9253,-606.4362
+-27.06342,126.0186,-604.1428
+-27.57642,126.0777,-603.1993
+-27.59558,126.9168,-604.0723
+-22.92963,130.6747,-603.7366
+-23.27905,129.7942,-602.6082
+-24.08582,129.8438,-598.8445
+-22.83411,128.1856,-601.8544
+-23.51459,129.7967,-604.3569
+-25.96851,128.2422,-605.4045
+-27.46918,126.4068,-603.6025
+-25.74078,126.388,-603.277
+-407.6,112.9931,530.6
+-406.2945,113.3945,534.7512
+-403.8699,114.3843,528.8743
+-404.3538,114.3649,530.2092
+-407.7368,113.7078,527.2679
+-408.2441,114.6112,526.9795
+-407.1968,114.5465,527.5841
+-408.0032,113.9288,533.4979
+-409.11,114.346,532.6194
+-411.7546,117.1047,532.1556
+-410.5594,113.6752,531.7234
+-407.6024,113.4455,532.4474
+-406.3093,113.4741,529.6434
+-407.8351,114.4805,527.2925
+-408.8643,113.6238,528.4329
+-417.5,114.724,510.5
+-417.8864,115.2255,506.176
+-421.3741,116.4337,511.446
+-420.6299,116.3697,510.2384
+-417.9907,115.4325,513.7999
+-417.4792,116.29,514.1998
+-418.3816,116.3137,513.3927
+-416.4327,115.6146,507.7607
+-415.4988,115.9377,508.8535
+-412.783,118.4609,509.8911
+-414.3261,115.1475,510.0172
+-417.08,115.17,508.6994
+-418.9144,115.3161,511.1791
+-417.8247,116.1939,513.8077
+-416.6592,115.2495,512.8895
+-262.48,114.8831,-252.5
+-263.3889,115.2523,-256.7586
+-266.3655,116.258,-251.1439
+-265.7573,116.2345,-252.4268
+-262.6639,115.6172,-249.1745
+-262.192,116.5258,-248.8449
+-263.1769,116.4505,-249.5455
+-261.81,115.8054,-255.3525
+-260.7941,116.2351,-254.3757
+-258.223,119.0146,-253.6807
+-259.4318,115.5794,-253.3424
+-262.3054,115.3252,-254.3417
+-263.8586,115.3604,-251.6729
+-262.5687,116.3904,-249.1944
+-261.4307,115.5346,-250.2269
+-1.679993,1086.9,119.5327
+-11.89594,1092.478,113.7848
+-7.223083,1085.953,131.1304
+-8.386475,1087.928,127.5891
+4.631836,1084.548,127.1004
+6.602417,1086.845,128.125
+3.027466,1086.799,128.5226
+-5.478699,1093.324,114.2827
+-1.186462,1093.971,114.841
+6.730103,1102.209,115.3209
+3.649231,1091.98,113.3426
+-4.752075,1090.461,116.4014
+-2.974487,1086.108,124.2776
+5.042908,1086.652,127.9755
+5.286072,1086.54,122.7577
+-135.1083,115.0801,-47.56732
+-135.352,115.4187,-51.91751
+-139.2769,116.0541,-46.85901
+-138.4708,116.1073,-48.02686
+-135.8956,115.7469,-44.31653
+-135.5738,116.6921,-43.91687
+-136.421,116.5317,-44.76712
+-134.0815,116.1022,-50.276
+-133.2828,116.6146,-49.1489
+-131.1407,119.6196,-48.05331
+-132.0471,116.0794,-47.90787
+-134.6838,115.5624,-49.35751
+-136.642,115.4104,-46.97461
+-135.8744,116.5259,-44.32233
+-134.507,115.7984,-45.15585
+-644.4664,109.0058,95.53299
+-641.0392,111.2529,94.01547
+-647.4465,111.8279,94.1254
+-646.0294,111.8907,94.18875
+-647.6028,108.527,96.78452
+-647.772,108.8102,97.8082
+-647.5516,109.567,96.88882
+-641.682,110.2627,95.85458
+-642.1664,109.6556,97.1066
+-641.9233,109.9703,100.9356
+-642.469,108.0264,97.88608
+-642.766,109.8547,95.45914
+-645.8351,109.882,95.1188
+-647.6057,109.0487,97.36337
+-646.1238,108.1032,97.30252
+718.5699,120.2107,-530.98
+722.636,120.7946,-532.4714
+716.6174,121.5069,-534.6317
+717.9722,121.5501,-534.2082
+715.2183,120.7741,-530.6951
+714.9121,121.6657,-530.1772
+715.4714,121.6242,-531.2504
+721.4374,121.2785,-530.7092
+720.5914,121.66,-529.565
+720.1215,124.4056,-526.908
+719.7926,120.9553,-528.0754
+720.3931,120.7464,-531.0615
+717.5356,120.6425,-532.2274
+715.212,121.5475,-530.5996
+716.4352,120.7477,-529.6209
+-23.59882,131.84,-594.6383
+-27.1145,129.3804,-595.4681
+-20.71295,128.7831,-595.7128
+-22.12158,128.7446,-595.5378
+-20.38324,132.5149,-593.7236
+-20.13953,132.4231,-592.6801
+-20.42145,131.5122,-593.4265
+-26.34644,130.6862,-593.8929
+-25.77655,131.5089,-592.8117
+-25.74255,131.9048,-588.9827
+-25.42719,133.2511,-592.3685
+-25.29584,131.0059,-594.4331
+-22.25897,130.8915,-594.9812
+-20.33606,132.1083,-593.0604
+-21.82336,133.0386,-593.1879
+-104.798,129.8521,304.5677
+-105.9876,130.8611,300.4854
+-108.2919,131.6107,306.4456
+-107.8036,131.6525,305.1129
+-104.5872,130.1996,307.9539
+-103.9521,130.9823,308.3291
+-104.9913,131.1378,307.727
+-104.23,131.0024,301.7765
+-103.0815,131.1571,302.6864
+-100.0555,133.4236,303.4109
+-101.7587,130.1884,303.502
+-104.7094,130.4822,302.7752
+-106.0106,130.4241,305.575
+-104.3732,130.947,308.0068
+-103.4741,130.0636,306.7802
+351.0327,125.9893,-288.6968
+355.3784,126.4098,-288.5065
+350.6577,127.5601,-292.724
+351.7512,127.507,-291.8197
+347.8454,126.7279,-289.6598
+347.397,127.6106,-289.2395
+348.3199,127.5868,-290.0234
+353.6188,126.8795,-287.2983
+352.416,127.2553,-286.5352
+351.07,129.8983,-284.0812
+351.0878,126.5293,-285.5044
+352.7682,126.4241,-288.0511
+350.5646,126.5357,-290.2116
+347.8305,127.4952,-289.5245
+348.5622,126.5833,-288.2104
+40.47424,127.49,-521.2476
+36.56158,128.1583,-523.0759
+38.93365,126.8163,-517.2476
+38.31714,127.2753,-518.4416
+42.8299,127.4934,-518.7812
+43.24207,128.4452,-518.4966
+42.10468,128.0771,-518.3033
+38.54077,129.0836,-523.0247
+39.85919,129.7323,-522.9156
+41.57068,133.1798,-522.9824
+41.59381,129.556,-523.4756
+39.08978,128.2724,-522.291
+40.1972,127.1824,-519.6224
+42.75946,128.2238,-518.5187
+42.78503,128.1277,-520.2748
+-338.31,112.5284,202.0601
+-338.1303,112.5569,197.6938
+-342.3627,114.0596,202.3009
+-341.4586,113.9227,201.2145
+-339.2826,113.5363,205.1698
+-338.8769,114.4629,205.5354
+-339.6609,114.3426,204.6203
+-336.9288,113.2039,199.4007
+-336.1711,113.6997,200.5629
+-333.7606,116.4942,201.6584
+-335.1272,113.1142,201.9489
+-337.6732,112.815,200.2909
+-339.8334,113.0897,202.4804
+-339.1602,114.304,205.1148
+-337.8317,113.3516,204.4655
+-408.6858,113.9706,544.6798
+-413.0002,114.1377,544.0046
+-408.8064,115.9862,548.5204
+-409.7944,115.7777,547.522
+-405.6522,114.9767,545.8702
+-405.1985,115.8311,545.4001
+-406.1977,115.8436,546.0844
+-411.1431,114.566,542.9353
+-409.8824,114.92,542.26
+-408.3934,117.349,539.6711
+-408.4232,114.1579,541.4578
+-410.3592,114.2405,543.817
+-408.4044,114.702,546.1625
+-405.6547,115.7245,545.6511
+-406.2042,114.6382,544.3816
+-213.21,124.1591,-244.17
+-208.9522,125.0327,-243.7157
+-213.4028,125.2885,-248.355
+-212.3859,125.4335,-247.3746
+-216.3639,124.4758,-245.4288
+-216.9252,125.3451,-245.1354
+-215.9438,125.3391,-245.8449
+-210.8399,125.4365,-242.6911
+-212.1304,125.7608,-242.0586
+-213.9113,128.4786,-239.9944
+-213.4641,125.0072,-241.0552
+-211.5806,124.8271,-243.4512
+-213.6029,124.5069,-245.7628
+-216.4612,125.2471,-245.3753
+-215.7563,124.5447,-243.925
+-57.4585,133.6544,-569.8588
+-58.42584,129.4675,-569.064
+-57.04449,133.1589,-574.1495
+-57.19189,132.2229,-573.0918
+-56.03265,136.2952,-571.4791
+-54.97229,136.4303,-571.3603
+-55.51074,135.5223,-571.9537
+-57.0957,131.0279,-568.3077
+-56.15442,132.0708,-567.8638
+-52.64355,132.5642,-566.364
+-56.09418,133.6402,-566.922
+-57.44403,131.9285,-569.0596
+-57.23749,133.7887,-571.5157
+-55.29614,136.0467,-571.5346
+-55.98871,135.7819,-569.9397
+-67.43427,129.97,-525.5167
+-69.16736,133.9801,-525.3998
+-70.95587,127.9698,-523.9595
+-70.61517,129.343,-524.081
+-66.94446,126.7316,-524.5653
+-66.40558,126.5645,-523.6497
+-67.51093,127.0499,-523.7451
+-67.33386,132.9547,-524.7972
+-66.13904,132.2296,-524.3312
+-63.448,132.2475,-521.5786
+-64.60638,131.4436,-524.9532
+-67.62415,131.8356,-525.1987
+-68.61505,128.9213,-524.9524
+-66.84589,126.8226,-523.7977
+-65.94617,127.9988,-524.7467
+-119.14,112.524,-16.27002
+-123.0844,112.7179,-14.39841
+-116.9572,113.742,-12.72342
+-118.3445,113.7104,-13.02469
+-115.8741,113.3483,-16.80548
+-115.6775,114.289,-17.28839
+-116.1331,114.143,-16.1759
+-122.0862,113.3921,-16.22195
+-121.3753,113.9018,-17.40747
+-121.3362,116.8269,-19.90976
+-120.6688,113.3471,-19.00336
+-120.9805,112.9184,-15.99673
+-118.0286,112.9561,-15.09085
+-115.9292,114.1244,-16.85028
+-117.1788,113.296,-17.77011
+717.96,118.1269,-491.73
+716.7697,117.996,-487.5271
+721.9258,119.7151,-490.9703
+720.7968,119.5282,-490.1296
+719.6082,119.258,-494.4933
+719.2798,120.1921,-494.9134
+719.832,120.0485,-493.8452
+715.985,118.6893,-489.4453
+715.5083,119.2174,-490.7355
+713.3625,122.0199,-492.272
+714.8273,118.6695,-492.3448
+716.9236,118.3418,-490.1496
+719.5276,118.7215,-491.7654
+719.4609,120.0217,-494.4437
+718.0374,119.0304,-494.1529
+691.61,118.9471,-524.91
+688.5879,119.3348,-528.0429
+689.0725,120.4415,-521.7233
+688.9059,120.397,-523.1328
+693.2379,119.6934,-522.0074
+693.8349,120.5879,-521.9948
+692.6268,120.5409,-522.0645
+690.6854,119.8429,-527.6991
+692.0751,120.2438,-527.4182
+694.6899,122.9458,-528.2432
+693.7617,119.5494,-527.2538
+690.7908,119.3799,-526.5711
+690.8931,119.4675,-523.4861
+693.3269,120.4633,-522.0886
+693.7217,119.5714,-523.5522
+-33.97302,129.9384,-542.1268
+-33.90759,132.443,-545.7075
+-36.98322,132.281,-540.0585
+-36.25043,132.5117,-541.2527
+-34.3468,129.1982,-538.8186
+-33.57672,129.5377,-538.1489
+-34.36023,130.242,-538.7461
+-32.50275,131.5294,-544.3047
+-31.57727,130.9685,-543.3049
+-28.18109,131.6023,-541.6069
+-30.84686,129.3799,-542.7603
+-33.31927,130.9698,-543.5851
+-35.10229,130.6163,-541.0887
+-33.91119,129.759,-538.4976
+-33.13013,128.9891,-539.8727
+-223.1715,119.0917,452.6444
+-225.3847,119.5752,448.9073
+-226.5815,119.8302,455.2239
+-226.3998,119.9658,453.8221
+-222.4052,119.6002,455.9287
+-221.9628,120.5452,456.1895
+-223.1001,120.3736,455.8104
+-223.5243,120.2614,449.826
+-222.3136,120.7718,450.4927
+-219.9923,123.8383,450.6574
+-220.6331,120.2543,451.0041
+-223.6252,119.6593,450.8867
+-224.2736,119.3234,453.8871
+-222.4106,120.3789,455.9568
+-221.5554,119.7513,454.5539
+-53.70001,128.7926,-150.4
+-57.57117,129.632,-152.2461
+-54.8172,130.2324,-146.4623
+-55.46674,130.3041,-147.723
+-51.10156,129.201,-148.229
+-50.4552,130.0455,-148.3894
+-51.61078,130.0933,-148.0305
+-55.44672,129.9569,-152.6427
+-54.01465,130.2321,-152.8531
+-51.60522,132.7865,-154.4307
+-52.45032,129.4046,-153.324
+-55.00037,129.4057,-151.6453
+-53.82428,129.2586,-148.7939
+-50.97351,129.9661,-148.3033
+-51.19885,129.1574,-149.8488
+290.2344,142.2747,93.3699
+286.2916,142.9507,95.12943
+292.4546,143.7847,96.77841
+291.0714,143.8038,96.45761
+293.5526,142.8168,92.79733
+293.8153,143.6755,92.20541
+293.3394,143.6987,93.31876
+287.3508,143.3274,93.25528
+288.106,143.639,92.02921
+288.3625,146.2206,89.18515
+288.7915,142.8458,90.52768
+288.4208,142.8162,93.55795
+291.3591,142.7792,94.50699
+293.5488,143.5831,92.65579
+292.2576,142.7275,91.82254
+158.91,158.305,264.1501
+155.0543,157.8486,262.1443
+157.2309,159.4623,267.9799
+156.6476,159.288,266.6971
+161.1588,159.5668,266.3824
+161.5217,160.5635,266.2044
+160.3922,160.265,266.5235
+156.9924,158.7986,261.8016
+158.2791,159.4942,261.6249
+159.8575,162.612,260.0102
+160.0411,159.1735,261.2428
+157.5412,158.4456,262.8369
+158.5775,158.7639,265.7284
+161.0493,160.3312,266.2774
+161.1519,159.4408,264.7639
+-27.86194,130.04,-507.8506
+-30.36786,133.5366,-507.0811
+-30.92572,127.1305,-506.8631
+-30.86707,128.5413,-506.7124
+-26.74084,126.8392,-507.4901
+-26.18939,126.6094,-506.5957
+-27.36871,126.8784,-506.6538
+-28.37219,132.7939,-506.5891
+-27.06104,132.2413,-506.207
+-24.45892,132.2604,-503.3701
+-25.39484,131.9033,-506.8876
+-28.42688,131.7371,-507.2037
+-28.8136,128.6928,-507.5478
+-26.67096,126.7998,-506.7149
+-26.01611,128.288,-507.3857
+-462.2042,193.155,58.69131
+-459.1302,194.3226,61.56973
+-460.3495,195.1343,55.30466
+-460.0692,195.1636,56.69644
+-464.1815,193.4251,55.92557
+-464.9739,194.1517,55.95694
+-463.7878,194.3946,55.9296
+-461.3085,194.3098,61.39322
+-462.771,194.3625,61.22299
+-465.8837,196.3847,62.24332
+-464.2506,193.2837,61.1976
+-461.3867,193.8088,60.27939
+-461.744,193.7973,57.21213
+-464.4452,194.1535,56.01016
+-464.502,193.2279,57.50467
+150.5,125.9473,492.6
+146.9793,126.4852,490.0675
+148.4116,126.6496,496.3379
+148.018,126.8054,494.9825
+152.5195,126.4082,495.3095
+153.035,127.3492,495.3839
+151.84,127.1834,495.4893
+149.056,127.1576,490.1738
+150.4354,127.6579,490.3069
+152.6471,130.7211,489.5689
+152.177,127.1326,490.0963
+149.3843,126.5403,491.1783
+149.9887,126.1615,494.1828
+152.5304,127.1865,495.3476
+152.7491,126.5789,493.7116
+-24.35443,122.3012,-549.2774
+-27.79755,122.8857,-551.9045
+-26.31653,123.8035,-545.7109
+-26.69629,123.8031,-547.0792
+-22.27649,122.9078,-546.6418
+-21.64819,123.7787,-546.7017
+-22.85376,123.7789,-546.5874
+-25.65302,123.3055,-551.8738
+-24.22156,123.6463,-551.7996
+-21.65295,126.2697,-552.9569
+-22.55957,122.8851,-551.9086
+-25.39722,122.8088,-550.7849
+-24.82544,122.8097,-547.7503
+-22.16919,123.6758,-546.7195
+-22.0376,122.8092,-548.2445
+488.79,122.5845,-442.74
+487.5048,123.6821,-438.7099
+492.846,124.0549,-442.2776
+491.6888,124.1789,-441.4641
+490.5758,122.8091,-445.637
+490.3268,123.613,-446.3068
+490.8441,123.7297,-445.218
+486.8146,123.8768,-440.7743
+486.4059,124.0637,-442.1774
+484.5073,126.4766,-444.4996
+485.7201,123.1442,-443.605
+487.7394,123.2895,-441.3198
+490.398,123.0425,-442.8712
+490.4847,123.5653,-445.8016
+488.9856,122.7867,-445.3117
+-272.72,118.7059,-239.37
+-272.0441,118.7757,-243.687
+-276.4147,120.9767,-239.5097
+-275.4349,120.689,-240.4964
+-273.8328,119.8264,-236.3471
+-273.3048,120.6522,-235.9043
+-273.9886,120.6994,-236.9026
+-270.9441,119.1521,-241.8364
+-270.2437,119.4742,-240.5809
+-267.4924,121.7388,-239.1243
+-269.4921,118.6765,-239.1138
+-271.8442,118.8967,-241.0476
+-274.1489,119.5397,-239.0954
+-273.5634,120.5575,-236.3588
+-272.3719,119.381,-236.897
+82.70642,130.8219,-561.9165
+85.84216,130.2631,-564.9087
+79.48792,131.2665,-564.7924
+80.89899,131.2132,-564.9418
+79.77252,131.9823,-560.6213
+79.72803,133.0253,-560.3624
+79.80591,132.5743,-561.4835
+85.47064,131.4402,-563.1052
+85.16937,132.2787,-561.9318
+85.89319,135.7313,-560.3908
+85.01782,132.1915,-560.1089
+84.35742,131.0045,-562.8431
+81.27063,131.0232,-562.7593
+79.82861,132.7391,-560.7987
+81.31769,132.0806,-560.1334
+-81.70001,119.585,-57.40002
+-77.98169,120.0031,-59.65781
+-84.28241,120.8475,-60.6503
+-82.87097,120.8591,-60.49484
+-84.91919,120.2599,-56.49814
+-85.09735,121.1735,-55.95932
+-84.75543,121.0871,-57.11783
+-78.80725,120.5693,-57.71512
+-79.40814,121.0062,-56.44284
+-79.289,123.8324,-53.83179
+-79.92438,120.3652,-54.80692
+-79.91309,120.0612,-57.84473
+-82.94287,120.0167,-58.43988
+-84.88715,121.0353,-56.42737
+-83.52002,120.223,-55.67575
+-14.40002,123.5908,-312.1
+-11.18396,123.8335,-309.151
+-12.33557,125.91,-315.1309
+-12.04413,125.6522,-313.7652
+-16.34711,124.5969,-314.7131
+-17.04193,125.3969,-314.5289
+-15.83502,125.4943,-314.5472
+-13.34784,124.1187,-309.2626
+-14.7934,124.3793,-309.3774
+-17.62103,126.5473,-307.9202
+-16.39667,123.5117,-309.5518
+-13.49603,123.8412,-310.4454
+-13.87323,124.4297,-313.4532
+-16.51678,125.3246,-314.4918
+-16.67871,124.1573,-313.1861
+-389.1386,189.22,57.79373
+-392.033,190.1684,60.9277
+-385.6466,190.2579,60.15079
+-387.0369,190.4392,60.37613
+-386.2319,189.4616,56.02591
+-386.1072,190.3282,55.40121
+-386.1287,190.3224,56.61197
+-391.7095,190.5647,58.80295
+-391.4329,190.8823,57.39114
+-391.9447,193.6152,54.72879
+-391.4551,190.1295,55.72183
+-390.6733,189.9281,58.66617
+-387.6201,189.5281,58.43515
+-386.1962,190.2323,55.91629
+-387.7972,189.5716,55.60977
+-235.72,119.2794,-233.29
+-235.3713,119.3925,-237.6447
+-239.9583,120.2051,-233.2067
+-239.001,120.2151,-234.2554
+-236.9525,120.0941,-230.216
+-236.7004,121.0646,-229.8268
+-237.4214,120.8445,-230.7746
+-234.3458,120.1834,-235.8843
+-233.7152,120.7678,-234.6879
+-231.7814,123.8664,-233.472
+-232.6539,120.3208,-233.2641
+-235.061,119.6789,-235.0289
+-237.3243,119.6088,-232.9293
+-236.9406,120.8721,-230.26
+-235.463,120.1307,-230.8606
+-48.69232,132.7092,-562.6083
+-47.67413,131.6485,-558.4929
+-44.59772,133.406,-563.8635
+-45.1778,133.1784,-562.5875
+-48.35944,134.2674,-565.6238
+-48.58344,135.3187,-565.6612
+-47.64435,134.8123,-565.0883
+-49.07062,132.9403,-559.5686
+-49.95074,133.86,-560.3103
+-51.7215,137.2668,-560.0317
+-51.44714,133.8725,-561.3659
+-48.72711,132.6525,-560.7074
+-47.24591,133.0426,-563.3888
+-48.25092,135.0034,-565.392
+-49.56091,134.2024,-564.5341
+-50.76788,125.8324,-546.7515
+-49.17755,122.5023,-549.0923
+-54.87933,124.4481,-546.8339
+-53.71381,124.0147,-547.5195
+-53.07422,128.1168,-545.7054
+-53.30054,128.9283,-546.3741
+-53.57922,127.7631,-546.551
+-49.06995,124.6844,-549.0396
+-49.0719,126.1577,-549.0333
+-48.78265,129.2124,-551.3581
+-48.40613,127.5878,-548.1031
+-49.79211,124.8677,-548.0687
+-52.41669,125.5665,-546.5994
+-53.31702,128.3974,-546.3907
+-51.56702,128.2499,-546.2935
+-780.1,112.4752,77.00003
+-779.0455,112.8614,81.22342
+-776.1609,113.5197,75.51004
+-776.7327,113.5694,76.80893
+-779.9548,113.1243,73.65494
+-780.3654,114.0594,73.31747
+-779.3696,113.9232,73.99313
+-780.6168,113.5049,79.84763
+-781.6243,113.991,78.88876
+-783.995,116.9446,78.19949
+-783.0613,113.4206,77.90726
+-780.1882,112.9673,78.83517
+-778.713,112.8282,76.12589
+-779.9902,113.9028,73.65982
+-781.1605,113.1583,74.74142
+467.3,123.2747,-454.9
+465.7743,124.1377,-458.9032
+463.9259,125.0209,-452.804
+464.3078,125.0322,-454.1716
+467.7666,123.7276,-451.552
+468.4119,124.5334,-451.2502
+467.3258,124.6506,-451.773
+467.6237,124.3517,-457.7586
+468.836,124.5558,-456.9466
+471.8595,126.9012,-456.5266
+470.239,123.6378,-456.2102
+467.235,123.8524,-456.711
+466.1576,123.8531,-453.8171
+467.9678,124.4803,-451.5373
+468.7875,123.5781,-452.8052
+105.7201,145.9975,261.7845
+199.6899,144.5045,179.7578
+146.1365,143.6193,-478.8758
+474.3828,125.3338,-384.806
+209.6245,132.4025,-444.0173
+95.63306,144.0026,254.1736
+-70.0014,126.6003,-262.5999
+382.8295,123.8722,-585.7217
+438.9641,124.5504,-36.06183
+290.8503,122.5839,-220.149
+121.0348,142.8169,189.4566
+223.2274,150.2184,227.8738
+-440.8085,199.0567,8.572052
+82.82281,569.5878,569.6594
+-52.70557,131.827,-584.3674
+27.50269,996.1437,275.528
+90.43854,704.6045,450.2941
+-58.50134,127.0384,-633.3956
+295.9888,122.4098,-218.2166
+438.8682,124.4048,-42.21204
+221.2562,150.8965,232.8587
+115.788,142.1858,190.1968
+66.0072,742.0573,475.0218
+-45.5824,127.6013,-632.4797
+57.79468,587.6179,541.7662
+-431.4819,206.38,13.81024
+-39.85236,133.4898,-584.0784
+20.88849,995.1156,316.5733
+-450.1234,167.3706,-577.3104
+-451.3541,173.917,-570.9565
+-450.7002,173.9333,-572.0027
+-446.8647,173.9925,-574.5281
+-450.3287,170.9371,-572.0839
+-449.6384,170.9415,-573.9978
+-450.0154,167.9574,-571.0875
+-449.9911,167.9535,-569.6364
+-451.4496,167.9174,-570.8639
+-448.916,167.9449,-574.6664
+119.9014,145.6977,188.7847
+222.6251,153.3678,227.954
+439.6448,128.0298,-36.9397
+291.2876,125.6214,-219.0476
+-517.119,165.6987,-479.8774
+-513.4001,165.8373,-479.4612
+-514.9614,165.8506,-481.8878
+-512.3682,165.8328,-478.1336
+-515.6823,165.8467,-475.7385
+-518.0917,165.8563,-478.5819
+-516.6591,170.0322,-474.799
+-513.0115,170.0371,-479.2283
+-513.4926,170.1276,-479.2578
+-513.9779,169.3225,-476.525
+-518.667,165.8587,-479.2833
+-517.4846,165.8534,-477.7162
+-516.2372,165.8487,-481.3425
+-516.5704,165.826,-476.4226
+-496.7931,165.7205,-507.0216
+-493.0938,165.8605,-506.4573
+-494.5568,165.8655,-508.9445
+-492.1158,165.8605,-505.0895
+-495.5232,165.8825,-502.829
+-497.8168,165.8825,-505.7667
+-496.5363,170.0711,-501.9436
+-492.7142,170.0611,-506.2233
+-493.1937,170.1514,-506.2724
+-493.7882,169.3556,-503.5585
+-498.3635,165.8825,-506.4905
+-497.2449,165.8825,-504.8773
+-495.8533,165.8655,-508.4508
+-496.3833,165.8595,-503.5481
+-430.2417,166.4557,-544.4691
+-433.8661,166.7914,-543.5892
+-431.5845,166.5408,-541.8405
+-435.2811,166.939,-544.4854
+-432.9692,166.9988,-547.8577
+-429.7513,166.6737,-546.0057
+-432.0789,171.1989,-548.8173
+-434.0208,171.0094,-543.4213
+-433.5526,171.0759,-543.5513
+-434.0682,170.4721,-546.3301
+-428.9755,166.5944,-545.5425
+-430.6122,166.7671,-546.6125
+-430.5687,166.5264,-542.7854
+-431.9067,166.884,-547.5181
+-457.4598,167.3326,-544.4633
+-452.9254,170.2877,-543.0817
+-458.4849,170.8141,-547.559
+-461.7651,170.7454,-544.5927
+-460.7556,171.6232,-542.5123
+-460.3491,173.584,-548.7067
+-463.2483,173.4185,-544.3792
+-459.6251,173.5134,-547.8149
+-457.1282,169.4033,-547.2448
+-462.9175,167.8872,-544.2358
+-457.1993,167.5854,-543.4298
+-459.2817,167.8507,-546.204
+-459.4003,167.719,-544.3677
+-452.4333,172.7064,-543.022
+-453.1439,172.5576,-540.6945
+-458.7144,173.276,-548.0442
+-459.9869,173.1332,-544.647
+-462.1666,170.6404,-545.2534
+-458.7178,170.5912,-546.8489
+-456.9686,170.3214,-542.5225
+-459.173,167.5514,-544.5065
+-453.5153,167.3103,-544.5586
+-453.2323,167.1372,-542.0829
+-455.5465,167.1552,-540.8564
+-458.9283,167.4533,-543.168
+-461.1519,167.5857,-543.6064
+-460.2667,167.8783,-548.8294
+-458.9917,167.6577,-546.2325
+-452.3135,170.0904,-543.1661
+-456.1062,170.1498,-541.7571
+-459.6215,170.6919,-547.6374
+-460.5342,171.443,-542.545
+-517.2384,165.7108,-517.7712
+-514.7209,168.9417,-521.5693
+-520.8273,168.8526,-517.8361
+-519.136,168.9401,-513.7499
+-516.9355,170.0419,-513.9993
+-522.8,171.436,-516.4579
+-519.6959,171.5664,-512.2737
+-521.7152,171.4741,-516.8404
+-519.9397,167.5264,-519.0123
+-518.9034,166.0875,-512.5529
+-516.2078,166.067,-517.6685
+-519.5299,166.0001,-516.6387
+-517.8353,166.0343,-515.9103
+-514.7401,171.3717,-522.0059
+-512.7811,171.4128,-520.5548
+-521.6023,171.2494,-517.7758
+-518.8291,171.375,-515.4362
+-519.8789,168.7602,-513.5942
+-520.2173,168.6879,-517.3787
+-515.551,168.8816,-517.5732
+-517.8729,165.8629,-516.1716
+-516.0077,165.8214,-521.5185
+-513.5756,165.8878,-520.9537
+-513.2008,165.9358,-518.3618
+-516.5269,165.8976,-515.9525
+-517.6937,165.9089,-514.0052
+-522.3228,165.75,-516.593
+-519.4407,165.8159,-516.922
+-514.5762,168.7596,-522.1746
+-514.5284,168.8124,-518.1287
+-521.2683,168.6829,-516.7922
+-516.8744,169.8675,-514.2193
+-491.2196,165.7704,-496.2693
+-488.6193,169.0047,-500.0084
+-494.7328,168.9973,-496.2858
+-493.0472,168.9753,-492.1964
+-490.8209,170.0285,-492.4238
+-496.6461,171.6031,-494.8667
+-493.5475,171.5887,-490.6765
+-495.5601,171.6219,-495.2469
+-493.8748,167.6706,-497.4831
+-492.8848,166.098,-491.0477
+-490.181,166.1003,-496.1591
+-493.5057,166.0949,-495.1352
+-491.8121,166.0764,-494.4041
+-488.58,171.4415,-500.4035
+-486.6232,171.4114,-498.9492
+-495.4508,171.4104,-496.1859
+-492.6797,171.4305,-493.8405
+-493.7946,168.8104,-492.0447
+-494.1277,168.8104,-495.8304
+-489.4579,168.8965,-496.015
+-491.8533,165.9104,-494.6682
+-489.9797,165.9155,-500.0124
+-487.5477,165.9144,-499.4431
+-487.1768,165.9095,-496.8502
+-490.5072,165.9095,-494.4467
+-491.677,165.9155,-492.5011
+-496.3037,165.9104,-495.0978
+-493.4203,165.9135,-495.4215
+-488.4777,168.8295,-500.6163
+-488.4362,168.8124,-496.5701
+-495.1797,168.8204,-495.2456
+-490.7635,169.8564,-492.6467
+-48.09399,118.326,-636.0366
+38.95831,722.3802,452.3855
+18.02106,964.4526,305.0819
+-41.78149,124.6137,-588.82
+-427.3547,197.3518,11.271
+66.4212,610.3903,563.8455
+72.79059,740.6277,473.3036
+-46.97668,128.5143,-631.7687
+58.91766,582.1697,543.4528
+-433.2938,206.3786,13.82196
+20.77399,999.1938,312.4329
+-41.26965,134.1551,-583.1665
+-457.5902,166.5413,-590.1533
+-450.8378,175.9103,-582.7131
+-452.3792,176.2237,-584.7355
+-455.0928,175.9199,-581.9559
+-458.7631,175.9695,-583.914
+-458.5955,172.8906,-584.1424
+-458.912,172.9419,-586.1118
+-453.277,172.914,-584.2687
+-451.9647,172.8866,-585.5671
+-458.7443,169.9866,-584.567
+-455.8235,169.8929,-583.1416
+-452.5315,169.8932,-585.5328
+-453.5912,169.8968,-583.0989
+-458.1808,166.8896,-584.8113
+-458.7173,167.6711,-586.9147
+-452.5549,167.8745,-579.3944
+-450.8535,166.8997,-585.0543
+-455.4177,166.8927,-582.4619
+-458.4996,166.7143,-583.6442
+-459.0731,167.4523,-585.7658
+-455.1895,166.7143,-583.3547
+-453.0304,166.7113,-584.6642
+-455.5446,166.7143,-586.4084
+-453.9562,169.7113,-585.1805
+-454.4536,169.7123,-580.9747
+-454.4384,169.7143,-583.1578
+-458.6034,169.7143,-584.3607
+-457.8446,169.7143,-586.6343
+-459.708,172.7113,-584.2584
+-455.1256,172.7113,-581.0701
+-457.2794,172.7113,-582.9658
+-452.9619,172.7113,-585.6726
+-454.2954,172.7113,-584.4645
+-452.8484,175.7413,-583.7316
+-457.9783,175.7413,-583.4563
+-457.2358,162.0264,-445.1447
+-465.4315,171.5217,-439.5411
+-462.9772,171.6907,-440.2564
+-464.653,172.2431,-443.7305
+-461.5472,172.457,-446.4904
+-461.7473,169.3911,-446.837
+-459.799,169.146,-446.4827
+-463.4795,168.6648,-441.8596
+-462.7318,168.2355,-440.227
+-461.6345,166.5054,-447.3807
+-463.9886,166.2595,-445.1516
+-462.9106,165.3987,-441.3237
+-464.8054,165.9653,-443.0945
+-461.9598,163.3649,-447.3583
+-459.7262,163.8393,-447.028
+-468.8452,164.4872,-443.7122
+-464.2845,162.331,-440.4827
+-465.1074,163.3938,-445.5567
+-462.9546,163.4381,-448.065
+-460.6963,163.8719,-447.7712
+-464.377,163.0351,-445.0892
+-463.911,162.5119,-442.6631
+-461.4124,162.5589,-444.4288
+-462.7631,165.4765,-442.7931
+-466.5023,166.2682,-444.6171
+-464.4766,165.893,-443.8952
+-461.9069,166.2559,-447.3678
+-460.0559,165.7614,-445.9274
+-461.2725,169.3484,-447.8647
+-465.8346,169.2695,-444.6483
+-463.3209,169.2384,-446.0314
+-462.3064,168.1827,-441.1503
+-462.9659,168.5727,-442.7784
+-463.8031,171.4568,-441.1072
+-462.2726,172.2057,-445.9536
+-496.2714,165.207,-444.3753
+-500.193,174.5942,-453.6075
+-499.4141,174.902,-451.1862
+-495.9288,174.6158,-452.9047
+-493.12,174.6646,-449.836
+-493.3436,171.5844,-449.687
+-493.7012,171.6278,-447.7243
+-498.4008,171.5962,-451.3386
+-500.0704,171.5605,-450.5514
+-493.3348,168.6789,-449.2469
+-495.614,168.5853,-451.5638
+-499.5144,168.5685,-450.4052
+-497.7048,168.5848,-452.3473
+-493.937,165.5797,-449.2147
+-494.1342,166.3532,-447.05
+-497.4417,166.5765,-456.1923
+-500.9271,165.5736,-451.4252
+-495.7603,165.5873,-452.35
+-493.2472,165.4101,-450.2096
+-493.4154,166.1401,-448.0156
+-496.2721,165.4045,-451.5847
+-498.7439,165.3914,-451.0689
+-496.954,165.392,-448.587
+-498.0531,168.391,-450.2635
+-496.1837,168.4113,-454.0637
+-496.9249,168.4038,-452.0103
+-493.3981,168.4072,-449.4893
+-494.8706,168.3958,-447.598
+-492.3326,171.4069,-449.2077
+-495.5919,171.4112,-453.7398
+-494.1923,171.4075,-451.2352
+-499.1647,171.3868,-450.1204
+-497.505,171.3948,-450.8156
+-498.6356,174.4249,-451.9781
+-493.7069,174.4368,-450.5297
+-442.1211,166.6254,-549.2145
+-448.5836,176.3947,-556.3928
+-447.0336,176.6058,-554.3638
+-444.3303,176.2949,-557.1526
+-440.6603,176.1793,-555.1965
+-440.9219,173.1019,-555.0517
+-440.6041,173.09,-553.0818
+-446.2372,173.2841,-554.9209
+-447.5498,173.2616,-553.6227
+-440.8618,170.1842,-554.7062
+-443.7839,170.2185,-556.1314
+-447.0747,170.2544,-553.7388
+-446.0151,170.2917,-556.1724
+-441.5197,167.1004,-554.5456
+-440.9597,167.8078,-552.4221
+-447.1123,168.4033,-559.9296
+-448.8433,167.3276,-554.297
+-444.2811,167.2516,-556.892
+-441.2062,166.9472,-555.7172
+-440.6107,167.6095,-553.5768
+-444.5148,167.0561,-556.0043
+-446.6731,167.0834,-554.6937
+-444.1602,166.9623,-552.9518
+-445.6561,170.0387,-554.0968
+-445.1584,170.1386,-558.3014
+-445.174,170.0818,-556.1191
+-441.011,169.9221,-554.9197
+-441.7697,169.8835,-552.6463
+-439.8153,172.8856,-554.9414
+-444.3953,173.112,-558.1251
+-442.2427,172.9948,-556.2318
+-446.5585,173.0531,-553.5227
+-445.2255,173.0452,-554.7314
+-446.5791,176.1368,-555.3807
+-441.4517,175.9877,-555.6597
+-470.5887,164.2125,-456.0887
+-479.6016,173.735,-451.987
+-477.1724,174.0009,-452.7568
+-478.8916,173.8266,-456.2491
+-475.8182,173.8594,-459.0529
+-475.7427,170.7726,-458.8919
+-473.7802,170.762,-458.5314
+-477.4017,170.7209,-453.8374
+-476.6182,170.6325,-452.168
+-475.3718,167.8582,-458.9594
+-477.6938,167.7735,-456.6851
+-476.5422,167.6498,-452.7846
+-478.4806,167.7491,-454.5956
+-475.4142,164.7475,-458.4203
+-473.2321,165.4652,-458.2051
+-482.3717,165.8385,-454.9039
+-477.6354,164.652,-451.4342
+-478.5513,164.7926,-456.6008
+-476.4117,164.6157,-459.1146
+-474.2013,165.2898,-458.9291
+-477.7915,164.5814,-456.092
+-477.28,164.5057,-453.6203
+-474.796,164.4837,-455.4071
+-476.4026,167.4988,-454.2491
+-480.1981,167.6474,-456.1219
+-478.1467,167.576,-455.3787
+-475.6206,167.5911,-458.9019
+-473.7325,167.5048,-457.4278
+-475.2662,170.6043,-459.9058
+-479.8021,170.6502,-456.6521
+-477.296,170.6153,-458.0488
+-476.1901,170.4671,-453.0766
+-476.8822,170.5253,-454.7365
+-477.9742,173.5587,-453.5457
+-476.5181,173.6362,-458.4716
+-468.9048,167.1411,-564.9673
+-475.5507,176.6538,-572.3209
+-474.0092,176.9308,-570.2933
+-471.2947,176.6276,-573.0722
+-467.6268,176.6199,-571.1087
+-467.8262,173.5406,-570.9119
+-467.512,173.5686,-568.9417
+-473.1443,173.617,-570.7925
+-474.4587,173.5898,-569.4963
+-467.7075,170.6311,-570.5168
+-470.6271,170.5817,-571.947
+-473.9224,170.5913,-569.5604
+-472.8591,170.6088,-571.9927
+-468.303,167.5377,-570.3047
+-467.7616,168.2923,-568.1927
+-473.9106,168.635,-575.7189
+-475.6301,167.6201,-570.0715
+-471.0625,167.5929,-572.6577
+-467.9843,167.371,-571.4731
+-467.4064,168.0815,-569.3434
+-471.2937,167.4077,-571.7671
+-473.4546,167.4135,-570.4606
+-470.9431,167.3731,-568.713
+-472.499,170.3984,-569.9125
+-471.9955,170.4371,-574.1174
+-472.0139,170.4171,-571.9344
+-467.851,170.3624,-570.726
+-468.613,170.347,-568.4535
+-466.7156,173.3488,-570.7963
+-471.2932,173.428,-573.9905
+-469.1422,173.3868,-572.092
+-473.4635,173.4033,-569.3912
+-472.1283,173.402,-570.5974
+-473.5432,176.4539,-571.3014
+-468.4133,176.4043,-571.5698
+-492.53,167.0347,-562.2793
+-500.3832,175.0746,-570.1799
+-498.8766,175.6898,-568.2011
+-496.1637,175.5346,-570.9938
+-492.5122,176.1332,-569.092
+-492.3156,173.0757,-568.6758
+-491.9949,173.2848,-566.7175
+-497.5991,172.4852,-568.4792
+-498.8909,172.3847,-567.1639
+-491.824,170.2407,-568.0787
+-494.7225,169.7188,-569.4562
+-497.9767,169.4817,-567.0251
+-496.9402,169.4592,-569.4689
+-492.0183,167.12,-567.6401
+-491.564,168.0869,-565.5952
+-497.7551,167.1055,-573.03
+-499.2944,166.2889,-567.2991
+-494.7775,166.6556,-569.9478
+-491.6885,166.9117,-568.7986
+-491.1923,167.8408,-566.7335
+-494.9775,166.507,-569.0429
+-497.1129,166.3324,-567.7065
+-494.6056,166.7366,-565.9998
+-496.5426,169.4461,-567.3849
+-496.0754,169.2463,-571.5894
+-496.077,169.3809,-569.4105
+-491.9333,169.9416,-568.2662
+-492.6724,169.9929,-565.9866
+-491.189,173.0351,-568.5642
+-495.7598,172.3034,-571.6844
+-493.6089,172.6718,-569.8215
+-497.8793,172.334,-567.0615
+-496.5627,172.4154,-568.2853
+-498.3602,175.2046,-569.1803
+-493.2677,175.7871,-569.5244
+-440.844,166.7925,-598.302
+-448.3546,175.6968,-591.0194
+-446.3744,176.1215,-592.5887
+-449.205,175.8587,-595.2536
+-447.3296,176.1039,-598.9591
+-447.0245,173.0273,-598.9218
+-445.0643,173.1397,-599.2772
+-446.7821,172.8401,-593.6106
+-445.455,172.7919,-592.328
+-446.5345,170.1429,-599.1976
+-447.8928,169.8969,-596.2538
+-445.4307,169.8239,-593.0153
+-447.8866,169.8101,-594.0227
+-446.2045,167.0327,-598.7657
+-444.1324,167.8867,-599.314
+-451.5184,167.6573,-592.9921
+-445.801,166.7545,-591.4508
+-448.4921,166.867,-595.9562
+-447.3738,166.8417,-599.067
+-445.2834,167.6541,-599.6542
+-447.5906,166.7016,-595.7542
+-446.2343,166.6441,-593.625
+-444.5461,166.791,-596.1729
+-445.8097,169.6907,-594.4385
+-450.0242,169.6082,-594.8472
+-447.842,169.6633,-594.8777
+-446.7312,169.8602,-599.0635
+-444.442,169.8857,-598.3532
+-446.9287,172.8957,-600.043
+-450.0148,172.6332,-595.3985
+-448.1674,172.7664,-597.5898
+-445.3672,172.6595,-593.3335
+-446.604,172.6833,-594.6403
+-447.3767,175.6338,-593.0562
+-447.7644,175.8331,-598.1748
+-425.1643,167.3933,-584.1111
+-426.0997,170.8949,-577.6045
+-425.0791,170.9392,-579.0303
+-425.5636,170.9146,-582.2858
+-426.9692,167.8258,-576.6708
+-425.0719,167.9258,-576.6849
+-422.8928,168.1243,-580.5682
+-426.0768,168.9972,-580.8257
+-427.1331,167.6469,-577.1849
+-425.136,167.7553,-576.6727
+-425.1598,167.751,-579.8467
+-422.7614,167.8813,-579.8649
+-424.9849,170.7679,-576.9997
+-425.8156,170.7198,-578.8503
+-423.0062,170.8724,-580.4191
+-424.7008,170.7804,-582.3229
+-437.2784,166.4468,-546.5952
+-436.609,170.1813,-553.0043
+-437.627,170.1142,-551.5776
+-437.1348,170.0358,-548.324
+-435.5253,167.2084,-554.0214
+-437.4249,167.1726,-554.0041
+-439.604,167.11,-550.1162
+-436.4896,168.2001,-549.8359
+-435.348,167.0277,-553.5124
+-437.3489,167.0075,-554.021
+-437.3179,166.9189,-550.8482
+-439.7194,166.8775,-550.8259
+-437.7133,169.9918,-553.612
+-436.8772,169.9527,-551.7636
+-439.6868,169.8623,-550.1905
+-437.9857,169.8396,-548.2903
+-485.8608,165.1912,-472.4345
+-491.7406,168.7384,-475.3184
+-490.7402,168.7274,-473.8778
+-487.5106,168.729,-473.2426
+-492.2731,165.7211,-476.6064
+-492.8973,165.7179,-474.8118
+-489.9727,165.798,-471.449
+-488.6793,166.8423,-474.3131
+-491.7307,165.5512,-476.5972
+-492.8843,165.5512,-474.8849
+-489.8861,165.5482,-473.8426
+-490.6748,165.5482,-471.5738
+-492.6815,168.5512,-474.4792
+-490.6591,168.5482,-474.6421
+-490.125,168.5482,-471.4654
+-487.7622,168.5482,-472.4254
+-460.7931,167.1679,-574.3049
+-460.0638,170.8032,-580.7644
+-461.082,170.7727,-579.3366
+-460.5895,170.7302,-576.0824
+-459.0313,167.7988,-581.7413
+-460.9312,167.7954,-581.723
+-463.109,167.8227,-577.834
+-459.9764,168.8634,-577.5695
+-458.8568,167.622,-581.23
+-460.858,167.6289,-581.7377
+-460.8268,167.5828,-578.564
+-463.2286,167.5825,-578.5403
+-461.1714,170.6242,-581.3691
+-460.3352,170.5961,-579.5206
+-463.145,170.5747,-577.9456
+-461.4437,170.5489,-576.0458
+-443.8584,196.7213,12.23044
+74.21747,560.9671,581.5433
+-54.6109,129.8954,-579.809
+13.7066,1000.967,266.8102
+100.2926,711.4049,433.1518
+-60.82666,125.9716,-628.7487
+-38.36005,134.2524,-589.7373
+35.62708,985.4032,323.4223
+-427.7762,207.4285,9.338074
+68.99701,599.9114,532.7195
+-43.72015,127.3904,-638.076
+51.89417,730.9122,489.7794
+-480.0011,165.1409,-477.3687
+-487.4938,165.5544,-477.839
+-485.8354,165.6115,-479.847
+-485.0909,165.5767,-477.0359
+-488.1586,168.5835,-480.0036
+-486.2206,168.5675,-477.4141
+-486.8898,168.5576,-477.4313
+-482.0697,168.6454,-477.649
+-484.8939,168.6178,-475.0787
+-485.8138,166.4995,-477.6573
+-483.8617,165.4419,-477.9276
+-481.7263,165.4759,-477.7917
+-484.7813,165.3854,-475.5178
+-484.327,165.4377,-478.1419
+-487.0846,165.3427,-475.3068
+-485.7004,165.4245,-480.51
+-481.7039,168.4703,-477.3881
+-483.8899,168.3963,-475.2216
+-486.7699,168.3642,-476.0303
+-483.9669,168.4052,-476.9381
+-483.9291,169.9259,-478.0338
+-487.3496,168.42,-479.8992
+-431.9658,167.0763,-588.071
+-429.774,167.6089,-580.8986
+-432.2384,167.6038,-581.7424
+-429.87,167.6041,-583.4303
+-431.6311,170.6116,-579.543
+-429.8911,170.6068,-582.2696
+-429.6711,170.6079,-581.6372
+-431.5756,170.6102,-586.0713
+-428.1749,170.6741,-584.3351
+-430.2168,168.5283,-582.5439
+-431.1346,167.4333,-584.2646
+-431.7607,167.4333,-586.3109
+-428.5547,167.4333,-584.2537
+-431.171,167.4333,-583.7535
+-427.5446,167.4333,-582.1725
+-432.9021,167.4033,-581.6331
+-431.4567,170.4333,-586.5039
+-428.6577,170.4333,-585.2219
+-428.3984,170.4363,-582.2417
+-430.2366,170.4143,-584.5445
+-431.3083,171.9153,-584.2085
+-431.8149,170.4363,-580.3351
+-454.1738,167.175,-570.449
+-456.2725,167.6405,-577.6539
+-453.8209,167.6883,-576.7748
+-456.2128,167.6455,-575.1212
+-454.4576,170.6763,-578.993
+-456.2362,170.6444,-576.2916
+-456.447,170.6391,-576.9271
+-454.6071,170.694,-572.4661
+-457.983,170.683,-574.2511
+-455.8723,168.5738,-576.0056
+-454.9572,167.5031,-574.2682
+-454.3607,167.5223,-572.2132
+-457.5361,167.4504,-574.3162
+-454.9135,167.5023,-574.7787
+-458.516,167.4233,-576.4116
+-453.1516,167.5011,-576.874
+-454.7286,170.516,-572.0347
+-457.5083,170.4549,-573.3567
+-457.7245,170.4433,-576.3404
+-455.9197,170.466,-574.0114
+-454.874,171.9875,-574.337
+-454.2816,170.5072,-578.1976
+-457.7635,166.4337,-614.171
+-455.6705,166.8093,-606.9592
+-458.1234,166.8083,-607.8358
+-455.733,166.8642,-609.4913
+-457.5657,169.7667,-605.5576
+-455.7898,169.8382,-608.26
+-455.5782,169.8257,-607.6249
+-457.4238,169.9214,-612.0828
+-454.0469,169.9659,-610.3002
+-456.0977,167.7648,-608.588
+-456.9852,166.7052,-610.3463
+-457.5842,166.75,-612.4002
+-454.4058,166.7216,-610.3008
+-457.0284,166.6928,-609.8359
+-453.4232,166.6785,-608.2069
+-458.7871,166.601,-607.7401
+-457.298,169.7556,-612.5178
+-454.5162,169.7431,-611.1989
+-454.2965,169.6767,-608.2161
+-456.1038,169.6978,-610.5432
+-457.1901,171.1834,-610.1861
+-457.7378,169.6091,-606.3561
+-53.08789,132.2255,-585.1368
+30.453,995.8284,274.8738
+-440.8728,199.1962,7.637482
+85.72986,569.7173,568.7853
+-58.80157,127.3512,-634.2377
+90.53345,701.4716,452.3221
+94.58154,150.0157,248.4579
+209.4613,139.1337,-448.9343
+-65.20282,132.7074,-259.7559
+385.5667,129.5661,-591.0963
+479.283,132.0413,-384.1871
+148.4435,149.3896,-473.5326
+108.2194,152.7788,265.7408
+199.9384,149.4539,173.0439
+69.67542,589.7441,568.2075
+-433.9764,197.9787,11.51123
+17.75708,980.8694,291.4326
+-46.59113,127.5544,-585.2822
+64.56702,718.8365,447.9267
+-52.784,122.1623,-633.2826
+74.0199,727.5939,476.9328
+-48.94196,129.1276,-634.5328
+69.97186,581.9655,543.5764
+-434.0518,205.965,10.48529
+30.21191,997.303,306.9921
+-43.46252,134.9622,-585.7
+475.4698,128.4935,-385.8924
+382.4041,126.7668,-587.6404
+-67.8194,129.2806,-263.0761
+208.4326,135.6004,-444.8664
+93.90662,146.7836,252.859
+198.5981,147.2948,177.9107
+106.86,149.2803,261.8294
+148.1633,146.246,-477.9047
+-456.4734,163.3237,-451.6747
+-456.062,165.0324,-455.739
+-453.6826,163.1713,-450.7258
+-454.4576,163.4034,-451.7757
+-457.7339,164.0318,-447.4352
+-458.4181,163.7045,-450.277
+-459.9531,165.1244,-451.1893
+-457.2653,163.9225,-453.0437
+-456.1385,163.7301,-453.9979
+-455.6958,164.6608,-454.6094
+-455.267,163.2476,-451.1218
+-453.7906,163.1169,-451.5072
+-455.5674,162.9636,-448.7415
+-457.9855,163.5305,-450.7686
+-458.567,163.9339,-453.2036
+-454.4208,163.2403,-451.8696
+-473.6736,165.7563,-488.2239
+-473.3918,166.8564,-492.5038
+-470.8966,166.0574,-487.27
+-471.6771,166.0396,-488.3411
+-475.0641,166.9637,-484.1407
+-475.668,166.1318,-486.8964
+-477.3348,167.2185,-488.0125
+-474.506,166.048,-489.6667
+-473.3517,165.836,-490.5828
+-473.0037,166.7048,-491.3314
+-472.474,165.8983,-487.669
+-470.9869,165.8724,-488.0334
+-472.776,165.9514,-485.2725
+-475.2119,165.9329,-487.3565
+-475.799,165.8923,-489.8231
+-471.6215,165.8691,-488.4089
+-499.8455,165.7205,-488.462
+-500.1173,166.9256,-484.2099
+-502.6169,166.0364,-489.4271
+-501.838,166.0335,-488.3547
+-498.4337,166.8115,-492.5706
+-497.8446,166.0372,-489.795
+-496.1644,167.1273,-488.7024
+-499.0109,166.0349,-487.0253
+-500.1692,165.8605,-486.1062
+-500.5062,166.7515,-485.379
+-501.0422,165.8655,-489.022
+-502.5302,165.8685,-488.6593
+-500.7367,165.8575,-491.4186
+-498.3038,165.8555,-489.331
+-497.7205,165.8655,-486.8633
+-501.8961,165.8655,-488.2829
+-453.5946,165.0781,-484.9202
+-453.3003,166.4711,-489.113
+-450.8036,165.217,-483.9699
+-451.5903,165.302,-485.0332
+-454.9198,166.0365,-480.7502
+-455.5674,165.4243,-483.5531
+-457.2026,166.6432,-484.5753
+-454.4249,165.4998,-486.3317
+-453.2837,165.3152,-487.27
+-452.9108,166.2232,-487.9576
+-452.3877,165.1398,-484.3664
+-450.9044,165.0902,-484.7439
+-452.674,165.0315,-481.9698
+-455.1211,165.2437,-484.0299
+-455.7233,165.399,-486.4882
+-451.5409,165.135,-485.1135
+-416.949,165.461,-527.6891
+-413.9454,167.2282,-530.4209
+-415.8785,166.0977,-525.0132
+-415.6184,166.1053,-526.3128
+-421.0717,165.7731,-525.9658
+-419.2987,165.2747,-528.259
+-419.8433,166.2075,-530.2686
+-416.5276,165.8166,-529.2878
+-415.0627,165.9519,-529.0584
+-414.4969,166.9715,-529.3354
+-416.5919,165.726,-526.4365
+-415.3472,166.0175,-525.5933
+-418.5227,165.3619,-525.0305
+-418.623,165.231,-528.2321
+-417.2289,165.4614,-530.3376
+-415.4939,165.9595,-526.3135
+72.966,718.6378,483.4052
+-49.53357,129.8974,-637.1762
+78.35724,583.4205,540.5461
+-433.8759,206.4108,7.710297
+-44.29559,136.0382,-588.1655
+39.02509,995.6097,305.9552
+207.6594,133.5864,-450.4461
+94.06335,144.0696,247.5099
+-64.29248,126.8526,-258.9668
+384.6366,123.7612,-592.2667
+481.0732,126.4491,-385.5136
+148.8256,143.534,-472.7291
+111.0493,147.5413,265.6208
+198.163,143.6915,173.1486
+-42.71881,125.9368,-638.1069
+45.57306,733.0834,487.8421
+-37.24042,132.9205,-590.0358
+33.16895,980.9691,325.9464
+66.49518,604.8922,533.7233
+-426.257,206.7351,9.910309
+-426.5787,202.4992,9.29126
+70.20062,608.508,546.4849
+-39.67542,129.4372,-590.641
+30.01862,972.1217,315.8737
+41.5249,724.0403,474.1245
+-45.44012,122.6275,-638.3758
+75.43457,582.2744,547.495
+-434.6533,204.5875,9.021912
+-45.17792,134.3516,-586.7419
+32.93225,994.5181,301.5025
+74.14178,719.7964,474.1829
+-50.64911,128.5219,-635.591
+5,730.0601,-24
+5,730.0601,-24
+5,730.0601,-24
+5,730.0601,-24
+5,730.0601,-24
+5,730.0601,-24
+87.39996,175.8,-72
+155.3,175.8,-111
+0,730.0601,-35
+-12.25,730.0601,-35
+12.25,730.0601,-35
+0,730.0601,-22.75
+0,730.0601,-47.25
+5,730.0601,-33
+0,730.0601,-25
+0,730.0601,-25
+0,730.0601,-25
+0,730.0601,-25
+0,730.0601,-25
+0,730.0601,-25
+0,730.0601,-35
+-2.200012,730.0601,-36
+2.200012,730.0601,-36
+0,730.0601,-37.20001
+0,730.0601,-32.79999
+163.3,175.8,-11.90002
+0,730.0601,-25
+0,730.0601,-21.07001
+0,730.0601,-35
+1.139771,706.0175,-1.955139
+-16.53796,706.0175,-19.63278
+18.81744,706.0175,15.7225
+18.81744,706.0175,-19.63284
+-16.5379,706.0175,15.72256
+0,774.5,95.00003
+-5,730.0601,-33
+173.2,175.8,-123.3
+0,730.0601,-35
+-5,730.0601,-24
+-5,730.0601,-24
+-5,730.0601,-24
+-5,730.0601,-24
+-5,730.0601,-24
+-5,730.0601,-24
+5,730.0601,-24
+5,730.0601,-20.07001
+-439.9673,260.6617,57.97751
+-444.2373,261.5852,57.86758
+-439.5264,261.346,62.24875
+-440.5981,261.5743,61.34525
+-436.7445,260.8333,59.08054
+-442.1743,261.3492,58.34927
+-438.4735,260.5458,61.08432
+-442.408,262.0978,56.78732
+-441.2538,261.7545,56.07748
+-438.2653,260.9221,59.21036
+-440.4935,261.8184,55.34122
+-451.6534,267.9854,57.95749
+-439.8563,267.7051,62.10788
+-433.9375,271.514,65.56546
+-435.2634,273.3267,56.83102
+-434.6139,272.9836,59.15897
+-444.6737,263.025,53.08578
+-443.4015,263.848,51.57687
+-450.2527,265.3755,61.50943
+-434.1753,262.4295,55.73746
+0,774.5,95.00003
+-5,730.0601,-24
+-5,730.0601,-20.07001
+132.2,175.8,-33.50003
+0,774.5,1495
+144.3,175.8,-123.3
+0,0,0
+0,768.24,-51.60001
+0,700,0
+0,700,0
+0,700,0
+0,700,0
+106.4,175.8,-71
+0,730.0601,-35
+0,730.0601,-35
+0,730.0601,-35
+0,730.0601,-35
+0,730.0601,-35
+0,750.62,-35
+44.39996,175.8,-33.49997
+0,774.5,95.00003
+0,774.5,795
+173,175.8,-33.50003
+191.1,175.8,-5.900055
+144.3,175.8,-10.90002
+0,700,0
+0,730.0601,-35
+7.042786,730.0601,-42.04279
+-7.042786,730.0601,-27.95721
+-7.042786,730.0601,-42.04279
+7.042786,730.0601,-27.95721
+65.79999,175.8,-70.99997
+0,730.0601,-35
+0,700,0
+-22,700,-10
+22,700,-10.00003
+0,700,-22
+0,700,22
+78.70001,175.8,-33.5
+448.7221,148.3036,-318.9026
+759.18,154.89,-671.43
+496.5228,142.7908,-374.4104
\ No newline at end of file
diff --git a/TABGServer/DataFiles/TABG_Items.csv b/TABGServer/DataFiles/TABG_Items.csv
new file mode 100644
index 0000000..1046557
--- /dev/null
+++ b/TABGServer/DataFiles/TABG_Items.csv
@@ -0,0 +1,347 @@
+Index, Name, Class/Type
+0, .45 ACP, Ammo
+1, Big Ammo, Ammo
+2, Bolts, Ammo
+3, Money Ammo, Ammo
+4, Musket Ammo, Ammo
+5, No Ammo, Ammo
+6, Normal Ammo, Ammo
+7, Rocket Ammo, Ammo
+8, Shotgun Ammo, Ammo
+9, Small Ammo, Ammo
+10, Soul, Soul
+11, Taser Ammo, Ammo
+12, Water Ammo, Ammo
+13, Lv0 JetpackArmor, Armor
+14, Lv1 Safety Vest, Armor
+15, Lv2 Kevlar Vest, Armor
+16, Lv3 Big Boy Kevlar Vest, Armor
+17, Lv4 Heavy Armor, Armor
+
+18, Banana Armor, Armor
+19, Lv5 Pickle Armor, Armor
+20, 0.5xScope, Scope/Attachment
+21, 2xScope, Scope/Attachment
+22, 4xScope, Scope/Attachment
+23, 8xScope, Scope/Attachment
+24, Compensator, Muzzle/Attachment
+25, Damage Analyzer, Utility/Attachment
+26, Healing Barrel, Muzzle/Attachment
+27, Health Analyzer, Utility/Attachment
+28, Heavy Barrel, Muzzle/Attachment
+29, Laser Sight, Utility/Attachment
+30, Double Barrel, Muzzle/Attachment
+31, Fast Barrel, Muzzle/Attachment
+32, Accuracy Barrel, Muzzle/Attachment
+33, Fire Rate Barrel, Muzzle/Attachment
+34, Big Slow Bullet Barrel, Muzzle/Attachment
+35, Periscope Barrel, Muzzle/Attachment
+
+36, Periscope, Scope/Attachment
+37, Recycler, Utility/Attachment
+38, Red Dot, Scope/Attachment
+39, Suppressor, Muzzle/Attachment
+40, Suppressor002, Muzzle/Attachment
+41, Tazer Barrel, Muzzle/Attachment
+42, Common bloodlust, Blessing
+43, Common cardio, Blessing
+44, Common dash, Blessing
+45, Common health, Blessing
+46, Common ice, Blessing
+47, Common jump, Blessing
+48, Common posion, Blessing
+49, Common recycling, Blessing
+50, Common regeneration, Blessing
+51, Common relax, Blessing
+52, Common shield, Blessing
+53, Common speed, Blessing
+
+54, Common spray, Blessing
+55, Common storm, Blessing
+56, Common the hunt, Blessing
+57, Common vampire, Blessing
+58, Common weapon mastery, Blessing
+59, Epic battlecry, Blessing
+60, Epic bloodlust, Blessing
+61, Epic cardio, Blessing
+62, Epic charge, Blessing
+63, Epic dash, Blessing
+64, Epic healing words, Blessing
+65, Epic health, Blessing
+66, Epic ice, Blessing
+67, Epic jump, Blessing
+68, Epic lit beats, Blessing
+69, Epic poison, Blessing
+70, Epic recycling, Blessing
+71, Epic regeneration, Blessing
+
+72, Epic relax, Blessing
+73, Epic shield, Blessing
+74, Epic small, Blessing
+75, Epic speed, Blessing
+76, Epic spray, Blessing
+77, Epic storm call, Blessing
+78, Epic storm, Blessing
+79, Epic the hunt, Blessing
+80, Epic vampire, Blessing
+81, Epic weapon mastery, Blessing
+82, Epic words of justice, Blessing
+83, Legendary battlecry, Blessing
+84, Legendary bloodlust, Blessing
+85, Legendary cardio, Blessing
+86, Legendary charge, Blessing
+87, Legendary dash, Blessing
+88, Legendary healing words, Blessing
+89, Legendary health, Blessing
+
+90, Legendary ice, Blessing
+91, Legendary jump, Blessing
+92, Legendary lit beats, Blessing
+93, Legendary poison, Blessing
+94, Legendary recycling, Blessing
+95, Legendary regeneration, Blessing
+96, Legendary relax, Blessing
+97, Legendary shield, Blessing
+98, Legendary speed, Blessing
+99, Legendary spray, Blessing
+100, Legendary storm call, Blessing
+101, Legendary storm, Blessing
+102, Legendary the hunt, Blessing
+103, Legendary vampire, Blessing
+104, Legendary weapon mastery, Blessing
+105, Legendary words of justice, Blessing
+106, Rare airstrike, Blessing
+107, Rare bloodlust, Blessing
+
+108, Rare cardio, Blessing
+109, Rare dash, Blessing
+110, Rare health, Blessing
+111, Rare ice, Blessing
+112, Rare insight, Blessing
+113, Rare jump, Blessing
+114, Rare lit beats, Blessing
+115, Rare poison, Blessing
+116, Rare pull, Blessing
+117, Rare recycling, Blessing
+118, Rare regeneration, Blessing
+119, Rare relax, Blessing
+120, Rare shield, Blessing
+121, Rare speed, Blessing
+122, Rare spray, Blessing
+123, Rare storm, Blessing
+124, Rare the hunt, Blessing
+125, Rare vampire, Blessing
+
+126, Rare weapon mastery, Blessing
+127, The assassin, Blessing
+128, The mad mechanic, Blessing
+129, Blessing pickup, None
+130, Transcention Orb, None
+131, Bandage, Healing
+132, Med Kit, Healing
+133, Lv1 Bike Helmet, Armor
+134, Lv2 Fast Motorcycle Helmet, Armor
+135, Lv2 Fastest Motorcycle Helmet, Armor
+136, Lv2 Motorcycle Helmet Open, Armor
+137, Lv2 Motorcycle Helmet, Armor
+138, Lv2 Old School Motorcycle Helmet, Armor
+139, Lv3 Grey Kevlar Helmet with Googles, Armor
+140, Lv3 Grey Kevlar Helmet, Armor
+141, Lv3 Kevlar Helmet with Googles, Armor
+142, Lv3 Kevlar Helmet, Armor
+143, Lv3 Heavy Helmet Open 1, Armor
+
+144, Lv4 Cowboy Hat, Armor
+145, Lv4 Explosiveguy Hat, Armor
+146, Lv4 Heavy Helmet Open, Armor
+147, Lv4 Heavy Helmet, Armor
+148, Lv4 Knight Helmet, Armor
+149, Lv4 Rambo Bandana, Armor
+150, Lv4 Tricorne Hat, Armor
+151, AK-2K47, NormalAmmoGun
+152, AK-47, NormalAmmoGun
+153, AUG, NormalAmmoGun
+154, Beam-AR, SmallAmmoGun
+155, Burstgun, NormalAmmoGun
+156, Famas, NormalAmmoGun
+157, Cursed Famas, NormalAmmoGun
+158, H1, NormalAmmoGun
+159, Liberating M16, NormalAmmoGun
+160, M16, NormalAmmoGun
+161, MP-44, NormalAmmoGun
+
+162, SCAR-H, NormalAmmoGun
+163, Automatic Crossbow, BoltsAmmoGun
+164, Balloon Crossbow, BoltsAmmoGun
+165, AK-47, NormalAmmoGun
+166, AK-47, NormalAmmoGun
+167, AK-47, NormalAmmoGun
+168, BOMB, MoneyAmmoGun
+169, Crossbow, BoltsAmmoGun
+170, Taser Crossbow, TaserAmmoGun
+171, Firework Crossbow, BoltsAmmoGun
+172, Gaussbow, BoltsAmmoGun
+173, Grappling hook, BoltsAmmoGun
+174, Harpoon, BoltsAmmoGun
+175, Mini Gun, BrokenGun
+176, Liberating Mini Gun, NormalAmmoGun
+177, Mega Gun, NormalAmmoGun
+178, Mini Gun, NormalAmmoGun
+179, MissileLauncher, BigAmmoGun
+
+180, MoneyStack, MoneyAmmoGun
+181, Smoke Rocket Launcher, RocketAmmoGun
+182, Rocket Launcher, RocketAmmoGun
+183, Taser Mini Gun, TaserAmmoGun
+184, The Promise, BoltsAmmoGun
+185, Water Gun, WaterAmmoGun
+186, Grenade, Grenade (Big Weird Model)
+187, BIG Healing Grenade, Grenade
+188, Black Hole Grenade, Grenade
+189, Bombardment Grenade, Grenade
+190, Bouncy Grenade, Grenade
+191, Cage Grenade, Grenade
+192, Taser Cage Grenade, Grenade
+193, Cluster Grenade, Grenade
+194, Cluster Dummy Grenade, Grenade
+195, Dummy Grenade, Grenade
+196, Fire Grenade, Grenade
+197, Grenade, Grenade
+
+198, Healing Grenade, Grenade
+199, Implosion Grenade, Grenade
+200, Knockback Grenade, Grenade
+201, BIG Knockback Grenade, Grenade
+202, Launch Pad Grenade, Grenade
+203, MGL, BigAmmoGun
+204, Orbital Tase Grenade, Grenade
+205, Orbital Strike Grenade, Grenade
+206, Poof Grenade, Grenade
+207, Shield Grenade, Grenade
+208, Smoke Grenade, Grenade
+209, Snow Storm Grenade, Grenade
+210, Splinter Grenade, Grenade
+211, Taser Splinter Grenade, Grenade
+212, Stun Grenade, Grenade
+213, Snow Storm Grenade, Grenade
+214, Dynamite, Grenade
+215, Volley Grenade, Grenade
+
+216, Wall Grenade, Grenade
+217, Browning M2, NormalAmmoGun
+218, M1918-BAR, NormalAmmoGun
+219, M8, NormalAmmoGun
+220, MG-42, NormalAmmoGun,
+221, Spell: Blinding Light, SpellBook
+222, Spell: Gravity Field, SpellBook
+223, Spell: Gust, SpellBook
+224, Spell: Healing aura, SpellBook
+225, Spell: Speed aura, SpellBook
+226, Spell: Summon rock, SpellBook
+227, Spell: Teleport, SpellBook
+228, Spell: Track, SpellBook
+229, Spell: Fireball, SpellBook
+230, Spell: Ice bold, SpellBook
+231, Spell: Magical missile, SpellBook
+232, Spell: Mirage, SpellBook
+233, Spell: Orb of sight, SpellBook
+234, Spell: Reveal, SpellBook
+235, Spell: Shockwave, SpellBook
+236, Spell: Summom tree, SpellBook
+237, Spell: Track, SpellBook (Weird Cover)
+238, Ballistic Shield, Melee
+239, Ballistic Shields, Melee
+240, Taser Ballistic Shield, Melee
+241, Baton, Melee
+242, Black Katana, Melee
+243, Boxing Glove, Melee
+244, Cleaver, Melee
+245, Crowbar, Melee
+246, Crusader Sword, Melee
+247, Taser Crusader Sword, Melee
+248, Fish, Melee
+249, Taser Fish, Melee
+250, Holy Sword, Melee
+251, Inflatable Hammer, Melee
+
+252, Jarl Axe, Melee
+253, Taser Jarl Axe, Melee
+254, Katana, Melee
+255, Knife, Melee
+256, Rapier, Melee
+257, Riot Shield, Melee
+258, Sabre, Melee
+259, Shallow Pot With Long Handel, Melee
+260, Shield, Melee
+261, Shovel, Melee
+262, Viking Axe, Melee
+263, Weights, Melee
+264, Beretta 93R, SmallAmmoGun
+265, Crossbow pistol, BoltsAmmoGun
+266, Desert Eagle, NormalAmmoGun
+267, Flintlock, MusketAmmoGun
+268, Taser Flintlock, TaserAmmoGun
+269, Auto Revolver, NormalAmmoGun
+
+270, Wind up pistol, SmallAmmoGun
+271, G18c, SmallAmmoGun
+272, Glue Gun, SmallAmmoGun
+273, Hand Gun, SmallAmmoGun
+274, HandCannon, MusketAmmoGun
+275, Liberating m1911, SmallAmmoGun
+276, Luger-P08, SmallAmmoGun
+277, m1911, SmallAmmoGun
+278, Real Gun, NormalAmmoGun
+279, Really Big Deagle, NormalAmmoGun
+280, Revolver, NormalAmmoGun
+281, Holy Revolver, NormalAmmoGun
+282, Revolver, NormalAmmoGun
+283, Hardballer, SmallAmmoGun
+284, Taser, TaserAmmoGun
+285, Beam-DMR, SmallAmmoGun
+286, FAL, NormalAmmoGun
+287, Garand, BigAmmoGun
+
+288, Liverating Garand, BigAmmoGun
+289, M14, NormalAmmoGun
+290, S7, NormalAmmoGun
+291, Winchester-Model1886, BigAmmoGun
+292, AA-12, ShotgunAmmoGun
+293, Blunderbuss, MusketAmmoGun
+294, Sawed-off Shotgun, ShotgunAmmoGun
+295, FlyingBlunderbuss, MusketAmmoGun
+296, Liberating AA-12, ShotgunAmmoGun
+297, Mossberg-500, ShotgunAmmoGun
+298, Mossberg-5000, ShotgunAmmoGun
+299, Taser Mossberg-500, TaserAmmoGun
+300, Rainmaker, ShotgunAmmoGun
+301, The Arnold, ShotGunAmmoGun
+302, AKS-74U, SmallAmmoGun
+303, AWPS-74U, BigAmmoGun
+304, Money maker mac, SmallAmmoGun
+305, Glockinator, SmallAmmoGun
+
+306, Liberating M1a1-Thompson, SmallAmmoGun
+307, M1a1-Thompson, SmallAmmoGun
+308, Mac-10, SmallAmmoGun
+309, MP-40, SmallAmmoGun
+310, MP5-K, SmallAmmoGun
+311, P90, SmallAmmoGun
+312, PPSH-41, SmallAmmoGun
+313, Tec-9, SmallAmmoGun
+314, UMP-45, SmallAmmoGun
+315, Vector, SmallAmmoGun
+316, Z4, SmallAmmoGun
+317, AWP, BigAmmoGun
+318, Taser AWP, TaserAmmoGun
+319, Barrett, BigAmmoGun
+320, Beam-Sniper, SmallAmmoGun
+321, Kar98K, BigAmmoGun
+322, Liberating Barrett, BigAmmoGun
+323, Musket, MusketAmmoGun
+
+324, Taser Musket, TaserAmmoGun
+325, Really Big Barret, BigAmmoGun
+326, Sniper Shotgun..?, ShotgunAmmoGun
+327, Double Shot, BigAmmoGun
+328, VSS, SmallAmmoGun
\ No newline at end of file
diff --git a/TABGServer/Droppables.cs b/TABGServer/Droppables.cs
new file mode 100644
index 0000000..55f75c2
--- /dev/null
+++ b/TABGServer/Droppables.cs
@@ -0,0 +1,112 @@
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Xml;
+
+namespace TABGCommunityServer
+{
+ internal class Droppables
+ {
+ public static byte[] ClientRequestDrop(BinaryReader binaryReader, WeaponConcurrencyHandler weaponConcurrencyHandler)
+ {
+ // player
+ var playerIndex = binaryReader.ReadByte();
+ // item id
+ var itemID = binaryReader.ReadInt32();
+ // count of items
+ var itemCount = binaryReader.ReadInt32();
+
+ // location
+ var x = binaryReader.ReadSingle();
+ var y = binaryReader.ReadSingle();
+ var z = binaryReader.ReadSingle();
+
+ int networkID = weaponConcurrencyHandler.CurrentID;
+ //Weapon weapon = new Weapon(networkID, itemID, itemCount, (x, y, z));
+ Weapon weapon = new Weapon(itemID, networkID, itemCount, (x, y, z));
+ weaponConcurrencyHandler.SpawnWeapon(weapon);
+
+ return SendItemDropPacket(networkID, itemID, itemCount, (x, y, z));
+ }
+
+ public static byte[] SendItemDropPacket(int index, int type, int count, (float x, float y, float z) loc)
+ {
+ byte[] sendByte = new byte[512];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // index (doesn't seem to serve a purpose)
+ binaryWriterStream.Write((Int32)index);
+ // type
+ binaryWriterStream.Write(type);
+ // quantity
+ binaryWriterStream.Write(count);
+
+ // location
+ binaryWriterStream.Write(loc.x);
+ binaryWriterStream.Write(loc.y);
+ binaryWriterStream.Write(loc.z);
+ }
+ }
+ return sendByte;
+ }
+
+ public static byte[] ClientRequestPickUp(BinaryReader binaryReader, WeaponConcurrencyHandler weaponConcurrencyHandler)
+ {
+ // player
+ var playerIndex = binaryReader.ReadByte();
+ // item network index
+ var netIndex = binaryReader.ReadInt32();
+ // item slot of player
+ var itemSlot = binaryReader.ReadByte();
+
+ /*
+ Console.WriteLine(
+ "{" + string.Join(",", weaponConcurrencyHandler.WeaponDB.Select(kv => kv.Key + "=" + kv.Value).ToArray()) + "}"
+ );
+ Console.WriteLine(netIndex);
+ foreach (var item in weaponConcurrencyHandler.WeaponDB)
+ {
+ Console.WriteLine(item.Value.Type);
+ }
+ int indx = weaponConcurrencyHandler.WeaponDB.FirstOrDefault(x => x.Value.Type == netIndex).Key;
+ Weapon weapon = weaponConcurrencyHandler.WeaponDB[indx];
+ */
+ // if "WeaponDB[weapon.Type] = weapon;" is "WeaponDB[weapon.Id] = weapon;" in "WeaponConcurrencyHandler.cs"
+
+ Weapon weapon = weaponConcurrencyHandler.WeaponDB[netIndex];
+
+ // clean up DB
+ weaponConcurrencyHandler.RemoveWeapon(weapon);
+
+ return SendWeaponPickUpAcceptedPacket(playerIndex, netIndex, weapon.Type, weapon.Count, itemSlot);
+ }
+
+ public static byte[] SendWeaponPickUpAcceptedPacket(byte playerID, int networkIndex, int weaponID, int quantity, byte slot)
+ {
+ byte[] sendByte = new byte[512];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // player id
+ binaryWriterStream.Write(playerID);
+ // network index of the gun
+ binaryWriterStream.Write(networkIndex);
+ // weapon index in the game (id)
+ binaryWriterStream.Write(weaponID);
+ // quantity
+ binaryWriterStream.Write(quantity);
+ // slot
+ binaryWriterStream.Write(slot);
+ }
+ }
+ return sendByte;
+ }
+ }
+}
diff --git a/TABGServer/GameHandler.cs b/TABGServer/GameHandler.cs
new file mode 100644
index 0000000..4ea4548
--- /dev/null
+++ b/TABGServer/GameHandler.cs
@@ -0,0 +1,158 @@
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TABGCommunityServer
+{
+ internal class GameHandler
+ {
+ public static byte[] SetWaitingForPlayersState()
+ {
+ byte[] sendByte = new byte[512];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // game state
+ binaryWriterStream.Write((byte)GameState.WaitingForPlayers);
+ }
+ }
+ return sendByte;
+ }
+ public static byte[] SetCountDown(int countdownFrom)
+ {
+ byte[] sendByte = new byte[512];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // game state
+ binaryWriterStream.Write((byte)GameState.CountDown);
+ // count down from this int
+ binaryWriterStream.Write((float)countdownFrom);
+ }
+ }
+ return sendByte;
+ }
+ public static byte[] SetFlying(byte matchModifier)
+ {
+ byte[] sendByte = new byte[512];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // game state
+ binaryWriterStream.Write((byte)GameState.Flying);
+
+ #region CustomRandomBusPath
+
+ Random rand = new Random();
+ float max = 360;
+ float angleOne = (float)(rand.NextDouble() * max);
+ float angleTwo = (float)(rand.NextDouble() * max);
+ float radius = 1_000;
+
+
+ // Circle Points
+ float x1 = MathF.Sin(angleOne) * radius;
+ float y1 = MathF.Cos(angleOne) * radius;
+
+ float x2 = MathF.Sin(angleTwo) * radius;
+ float y2 = MathF.Cos(angleTwo) * radius;
+
+ //Console.WriteLine($"{angleOne} - {angleTwo}\n{x1}, {y1} ~ {x2}, {y2}");
+
+ binaryWriterStream.Write(x1);
+ binaryWriterStream.Write((float)200f);
+ binaryWriterStream.Write(y1);
+
+
+ binaryWriterStream.Write(x2);
+ binaryWriterStream.Write((float)125);
+ binaryWriterStream.Write(y2);
+
+
+ #endregion CustomRandomBusPath
+
+ /*
+ // start flying from this X Y Z
+ binaryWriterStream.Write((float)0f);
+ binaryWriterStream.Write((float)200f);
+ binaryWriterStream.Write((float)0f);
+
+ // "end vector"
+ binaryWriterStream.Write((float)100f);
+ binaryWriterStream.Write((float)125f);
+ binaryWriterStream.Write((float)100f);
+ */
+
+ // time of day
+ binaryWriterStream.Write((float)0f);
+
+ // match modifier
+ binaryWriterStream.Write(matchModifier);
+ }
+ }
+ return sendByte;
+ }
+
+ public static byte[] SetStarted()
+ {
+ byte[] sendByte = new byte[512];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // game state
+ binaryWriterStream.Write((byte)GameState.Started);
+ }
+ }
+ return sendByte;
+ }
+
+ public static byte[] GenerateRingPacket(byte ringStatus, byte newStateOrTimeTravelled, Single X, Single Y, Single Z, Single Size)
+ {
+ // Ring Update
+ // 1 = Set Size, and Position
+ // 0 = TimeTraveled (sync time)
+ // 2 = Start moving ring
+
+ byte[] sendByte = new byte[512];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // ring status (See Ring Update Line for info)
+ binaryWriterStream.Write(ringStatus);
+ if (ringStatus == 1)
+ {
+ // new state (index according to PhotonServerHandler : 1437)
+ binaryWriterStream.Write(newStateOrTimeTravelled);
+
+ // X
+ binaryWriterStream.Write(X);
+
+ // Y
+ binaryWriterStream.Write(Y);
+
+ // Z
+ binaryWriterStream.Write(Z);
+
+ // Size
+ binaryWriterStream.Write(Size);
+ }
+ else if (ringStatus == 0)
+ {
+ // time travelled
+ binaryWriterStream.Write(newStateOrTimeTravelled);
+ }
+ // no data is sent, other than the status we already have, when we give the update code "2"
+ }
+ }
+ return sendByte;
+ }
+ }
+}
diff --git a/TABGServer/Packet.cs b/TABGServer/Packet.cs
new file mode 100644
index 0000000..ef74efb
--- /dev/null
+++ b/TABGServer/Packet.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TABGCommunityServer
+{
+ internal class Packet
+ {
+ public EventCode Type { get; set; }
+ public byte[] Data { get; set; }
+ public Packet(EventCode type, byte[] data)
+ {
+ Data = data;
+ Type = type;
+ }
+ }
+}
diff --git a/TABGServer/PacketHandler.cs b/TABGServer/PacketHandler.cs
new file mode 100644
index 0000000..69ec726
--- /dev/null
+++ b/TABGServer/PacketHandler.cs
@@ -0,0 +1,514 @@
+using ENet;
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Diagnostics.Tracing;
+using System.Linq;
+using System.Numerics;
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TABGCommunityServer
+{
+ internal class PacketHandler
+ {
+ private readonly Peer m_peer;
+ private readonly PlayerConcurencyHandler concurrencyHandler;
+ private readonly WeaponConcurrencyHandler weaponConcurrencyHandler;
+
+ public PacketHandler(Peer peer, PlayerConcurencyHandler handler, WeaponConcurrencyHandler weaponConcurrencyHandler)
+ {
+ this.m_peer = peer;
+ this.concurrencyHandler = handler;
+ this.weaponConcurrencyHandler = weaponConcurrencyHandler;
+ }
+
+ public void Handle(EventCode code, byte[] buffer)
+ {
+ string? stringCode = Enum.GetName(typeof(EventCode), code);
+ if ((stringCode != "TABGPing") && (stringCode != "PlayerUpdate")) {
+ Console.WriteLine("Handling packet: " + Enum.GetName(typeof(EventCode), code));
+ }
+
+ using (MemoryStream memoryStream = new MemoryStream(buffer))
+ {
+ using (BinaryReader binaryReader = new BinaryReader(memoryStream))
+ {
+ switch (code)
+ {
+ case EventCode.RoomInit:
+ string roomName = "DecompileServer";
+ byte newIndex = concurrencyHandler.LastID++;
+
+ var playerName = binaryReader.ReadString();
+ var gravestoneText = binaryReader.ReadString();
+ var loginKey = binaryReader.ReadUInt64();
+ var squadHost = binaryReader.ReadBoolean();
+ var squadMembers = binaryReader.ReadByte();
+ var userGearLength = binaryReader.ReadInt32();
+
+ int[] gearData = new int[userGearLength];
+
+ for(int i = 0; i < userGearLength; i++)
+ {
+ var userGear = binaryReader.ReadInt32();
+ gearData[i] = (int)userGear;
+ }
+
+ byte[] sendByte = new byte[4 + 4 + 4 + 4 + 4 + 4 + (roomName.Length + 4)];
+
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // accepted or not
+ binaryWriterStream.Write((byte)ServerResponse.Accepted);
+ // gamemode
+ binaryWriterStream.Write((byte)GameMode.BattleRoyale);
+ // client requires this, but it's useless
+ binaryWriterStream.Write((byte)1);
+ // player index
+ binaryWriterStream.Write(newIndex);
+ // group index
+ binaryWriterStream.Write((Byte)newIndex);
+ // useless
+ binaryWriterStream.Write(1);
+ // useless string (but using it to notify server of a custom server)
+ binaryWriterStream.Write(Encoding.UTF8.GetBytes("CustomServer"));
+ }
+ }
+
+ Console.WriteLine("Sending request RESPONSE to client!");
+ this.SendMessageToServer(EventCode.RoomInitRequestResponse, sendByte, true);
+
+ Console.WriteLine("Sending Login RESPONSE to client!");
+ this.SendMessageToServer(EventCode.Login, SendJoinMessageToServer(newIndex, playerName, gearData), true);
+
+ foreach (var item in concurrencyHandler.Players)
+ {
+ if(item.Key == newIndex)
+ {
+ continue;
+ }
+ // this has been moved into the natively supported Login event for the main player
+ //this.SendMessageToServer(ClientEventCode.Login, new PlayerHandler().BroadcastPlayerJoin((byte)item.Key, item.Value.Name, item.Value.GearData), true);
+
+ // broadcast to ALL players
+ item.Value.PendingBroadcastPackets.Add(new Packet(EventCode.Login, SendLoginMessageToServer(newIndex, playerName, gearData)));
+ }
+
+ this.SendMessageToServer(EventCode.PlayerDead, new PlayerHandler().SendNotification(0, "WELCOME - RUNNING COMMUNITY SERVER V1.TEST"), true);
+ return;
+ case EventCode.ChatMessage:
+ var playerIndex = binaryReader.ReadByte(); // or ReadInt32(), depending on the type of PlayerIndex
+ var messageLength = binaryReader.ReadByte();
+ var messageBytes = binaryReader.ReadBytes(messageLength);
+ var message = Encoding.Unicode.GetString(messageBytes);
+ Console.WriteLine("Player " + playerIndex + ": " + message);
+
+ var handler = new AdminCommandHandler(message, playerIndex);
+ handler.Handle(concurrencyHandler);
+
+ // test if there needs to be a packet sent back
+ if (handler.shouldSendPacket)
+ {
+ this.SendMessageToServer(handler.code, handler.packetData, true);
+ }
+
+ if((handler.notification != null) && (handler.notification != ""))
+ {
+ this.SendMessageToServer(EventCode.PlayerDead, new PlayerHandler().SendNotification(playerIndex, handler.notification), true);
+ }
+
+ return;
+ case EventCode.RequestItemThrow:
+ this.BroadcastPacket(EventCode.ItemThrown, Throwables.ClientRequestThrow(binaryReader), true);
+ return;
+ case EventCode.RequestItemDrop:
+ this.BroadcastPacket(EventCode.ItemDrop, Droppables.ClientRequestDrop(binaryReader, weaponConcurrencyHandler), true);
+ return;
+ case EventCode.RequestWeaponPickUp:
+ this.BroadcastPacket(EventCode.WeaponPickUpAccepted, Droppables.ClientRequestPickUp(binaryReader, weaponConcurrencyHandler), true);
+ return;
+ case EventCode.PlayerUpdate:
+ // this packet is different because it can have an unlimited amount of subpackets
+ UpdatePacket updatePacket = new PlayerHandler().PlayerUpdate(binaryReader, buffer.Length, concurrencyHandler);
+
+ this.SendMessageToServer(EventCode.PlayerUpdate, updatePacket.Packet, true);
+
+ // have to do this so enumeration is safe
+ List packetList = updatePacket.BroadcastPackets.PendingBroadcastPackets;
+
+ // also use this packet to send pending broadcast packets
+ foreach (var item in packetList)
+ {
+ this.SendMessageToServer(item.Type, item.Data, true);
+ }
+
+ updatePacket.BroadcastPackets.PendingBroadcastPackets = new List();
+
+ return;
+ case EventCode.WeaponChange:
+ this.BroadcastPacket(EventCode.WeaponChanged, new PlayerHandler().PlayerChangedWeapon(binaryReader), true);
+ return;
+ case EventCode.PlayerFire:
+ new PlayerHandler().PlayerFire(binaryReader, buffer.Length, concurrencyHandler);
+ return;
+ case EventCode.RequestSyncProjectileEvent:
+ this.BroadcastPacket(EventCode.SyncProjectileEvent, new PlayerHandler().ClientRequestProjectileSyncEvent(concurrencyHandler, binaryReader, buffer.Length), true);
+ return;
+ case EventCode.RequestAirplaneDrop:
+ this.SendMessageToServer(EventCode.PlayerAirplaneDropped, new PlayerHandler().RequestAirplaneDrop(binaryReader), true);
+ return;
+ // damage event breaks damage for some reason
+ case EventCode.DamageEvent:
+ new PlayerHandler().PlayerDamagedEvent(concurrencyHandler, binaryReader);
+ return;
+ case EventCode.RequestBlessing:
+ this.BroadcastPacket(EventCode.BlessingRecieved, new PlayerHandler().RequestBlessingEvent(binaryReader), true);
+ return;
+ case EventCode.RequestHealthState:
+ this.BroadcastPacket(EventCode.PlayerHealthStateChanged, new PlayerHandler().RequestHealthState(concurrencyHandler, binaryReader), true);
+ return;
+
+ case EventCode.BossFightResult:
+ byte[][] bossFightRespawnBytes = new PlayerHandler().BossFightResultEvent(concurrencyHandler, binaryReader);
+
+ this.SendMessageToServer(EventCode.PlayerRespawnFromBoss, bossFightRespawnBytes[0], true);
+ //this.SendMessageToServer(EventCode.PlayerEffect, bossFightRespawnBytes[1], true);
+ return;
+ case EventCode.RingDeath:
+ new PlayerHandler().RingDeathEvent(concurrencyHandler, binaryReader);
+ break;
+
+ default:
+ Console.WriteLine("Unhandled Handle Event Code: " + code);
+ return;
+ }
+ }
+ }
+ }
+
+
+ private void BroadcastPacket(EventCode eventCode, byte[] playerData, bool unused)
+ {
+ foreach (var item in concurrencyHandler.Players)
+ {
+ item.Value.PendingBroadcastPackets.Add(new Packet(eventCode, playerData));
+ }
+ }
+
+ private byte[] SendJoinMessageToServer(byte playerIndex, string playerName, int[] gearData)
+ {
+ List itemsSpawnLocations = LoadItemSpawns();
+ List allowedItemTypes = new List { (int)ItemTypes.Spell_Blinding_Light };
+ List lootPool = new List { ItemIDs.The_mad_mechanic };
+ foreach(ItemIDs enumValue in Enum.GetValues(typeof(ItemIDs)))
+ {
+ ItemTypes itemType;
+ if (Enum.TryParse(enumValue.ToString(), out itemType) == false) { continue; }
+ if (allowedItemTypes.IndexOf((int)itemType) == -1) { continue; }
+
+ lootPool.Add(enumValue);
+ //Console.WriteLine($"Added {enumValue.ToString()} to the loot pool.");
+ }
+ lootPool = new List();
+
+
+ byte[] sendByte = new byte[1024 * 512];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // player index
+ binaryWriterStream.Write((Byte)playerIndex);
+ // group index
+ binaryWriterStream.Write((Byte)playerIndex);
+ // username length
+ binaryWriterStream.Write((Int32)(playerName.Length));
+ // username
+ binaryWriterStream.Write(Encoding.UTF8.GetBytes(playerName));
+ // is dev
+ binaryWriterStream.Write(true);
+
+ // set up locations properly
+ Player player = new(playerIndex, 0, playerName, (0f, 200f, 0f), (0f, 0f), gearData);
+ concurrencyHandler.AddPlayer(player);
+ concurrencyHandler.UpdatePlayerLocation(playerIndex, (0f, 200f, 0f));
+
+ // x
+ binaryWriterStream.Write(0f);
+ // y
+ binaryWriterStream.Write(200f);
+ // z
+
+ binaryWriterStream.Write(0f);
+ // rotation
+ binaryWriterStream.Write((float)0);
+ // is dead
+ binaryWriterStream.Write(false);
+ // is downed
+ binaryWriterStream.Write(false);
+ // health value (not needed)
+ binaryWriterStream.Write((float)100);
+ // something relating to cars? not needed
+ binaryWriterStream.Write(false);
+ // how many players are in the lobby?
+ //binaryWriterStream.Write((byte)concurrencyHandler.Players.Count);
+ binaryWriterStream.Write((byte)(concurrencyHandler.Players.Count - 1));
+
+ // --- OTHER PLAYERS ---
+
+ foreach (var item in concurrencyHandler.Players)
+ {
+ if (item.Key == playerIndex)
+ {
+ continue;
+ }
+ // player index
+ binaryWriterStream.Write((Byte)item.Key);
+ // group index
+ binaryWriterStream.Write((Byte)item.Key);
+
+ // convert so bytes can be grabbed
+ var nameBytes = Encoding.UTF8.GetBytes(item.Value.Name);
+
+ // username length
+ binaryWriterStream.Write((Int32)(nameBytes.Length));
+ // username
+ binaryWriterStream.Write(nameBytes);
+ // gun (this has been disabled for efficiency)
+ binaryWriterStream.Write((Int32)0);
+
+ // gear data
+ binaryWriterStream.Write((Int32)item.Value.GearData.Length);
+ for(int i = 0; i < item.Value.GearData.Length; i++)
+ {
+ binaryWriterStream.Write((Int32)item.Value.GearData[i]);
+ }
+
+ // is dev
+ binaryWriterStream.Write(true);
+ // colour (disabled amongus gamemode)
+ binaryWriterStream.Write((Int32)0);
+ }
+
+ // --- END OTHER PLAYERS ---
+
+ // --- WEAPONS SECTION ---
+ // number of weapons to spawn, just leave this empty...
+ //float numOfWeapons = 329; // there are 329 items with the index starting at 0, making 328 the last index
+ float numOfWeapons = itemsSpawnLocations.Count / 2;
+ int itemIdOffset = 0;
+ List weapons = new List();
+
+ List ammoClassIds = new List { 8, 9, 10, 11, 12, 14, 15, 16, 20, 21 };
+ List ammoIds = new List { 6, 9, 2, 3, 11, 1, 7, 12, 4, 8 };
+
+ Vector3 offset = new Vector3(0, 0, 0);
+ Random rand = new Random();
+
+ for (int k = 0; k < numOfWeapons; k++)
+ {
+
+ // Weapon at random spawn location
+ Vector3 randLocation = itemsSpawnLocations[(int)rand.NextInt64(0, itemsSpawnLocations.Count)] + offset;
+ //Vector3 randLocation = itemsSpawnLocations[k] + offset;
+
+ // Random Weapon ID from loot pool
+ int randItem;
+ if (lootPool.Count == 0) { randItem = (int)rand.NextInt64(0, 329); }
+ else { randItem = (int)lootPool[(int)rand.NextInt64(0, lootPool.Count)]; }
+
+ // Hellish way to spawn ammo, but ig it'll work for now
+ ItemIDs itemId;
+ ItemTypes itemType;
+ if (Enum.TryParse(randItem.ToString(), out itemId))
+ {
+ if (Enum.TryParse(itemId.ToString(), out itemType))
+ {
+ int index = ammoClassIds.IndexOf((int)(itemType));
+ if (index != -1) {
+ Weapon newAmmo = new Weapon(ammoIds[index], k + (int)itemIdOffset, (int)rand.NextInt64(10, 30), (randLocation.X, randLocation.Y, randLocation.Z));
+ weapons.Add(newAmmo);
+ itemIdOffset += 1;
+ }
+ }
+ }
+ //Console.WriteLine($"{itemId} - {itemType}");
+
+ Weapon newWeapon = new Weapon(randItem, k + (int)itemIdOffset, 1, (randLocation.X, randLocation.Y, randLocation.Z));
+ weapons.Add(newWeapon);
+
+ // Weapon newWeapon = new Weapon(k, k*5, k, (xInc, 113, k % squareSize));
+ // ItemId, NetworkId, Amount, Location
+ }
+
+ // Generate the weapons first
+
+ // binaryWriterStream.Write((Int32)numOfWeapons);
+ binaryWriterStream.Write((Int32)weapons.Count);
+
+ for (int k = 0; k < weapons.Count; k++)
+ {
+ Weapon newWeapon = weapons[k];
+
+ weaponConcurrencyHandler.SpawnWeapon(newWeapon);
+
+ // Item ID
+ binaryWriterStream.Write((Int32)newWeapon.Type);
+ // Identifier
+ binaryWriterStream.Write((Int32)newWeapon.Id);
+ // Quantity / Amount
+ binaryWriterStream.Write((Int32)newWeapon.Count);
+
+ // X Y and Z
+ binaryWriterStream.Write((Single)newWeapon.Location.X);
+ binaryWriterStream.Write((Single)newWeapon.Location.Y);
+ binaryWriterStream.Write((Single)newWeapon.Location.Z);
+ }
+ // --- END WEAPONS SECTION ---
+
+ // --- CARS SECTION ---
+
+ // THIS IS CONFUSING AND BROKEN!!!
+ binaryWriterStream.Write((Int32)1);
+ // car id
+ binaryWriterStream.Write((Int32)1);
+ // car index
+ binaryWriterStream.Write((Int32)0);
+ // seats
+ binaryWriterStream.Write((Int32)4);
+ for(int i = 0; i < 4; i++)
+ {
+ binaryWriterStream.Write((Int32)i);
+ }
+ // parts of car
+ binaryWriterStream.Write((byte)4);
+ for (int i = 0; i < 4; i++)
+ {
+ // index
+ binaryWriterStream.Write((byte)i);
+ // health
+ binaryWriterStream.Write(100f);
+ // name
+ binaryWriterStream.Write("Test");
+ }
+
+ // --- END CARS SECTION ---
+
+ // time of day
+ binaryWriterStream.Write((float)0);
+ // seconds before first ring
+ binaryWriterStream.Write( TABGServer.secondsBeforeBaseRing );
+ // base ring time
+ binaryWriterStream.Write( TABGServer.baseRingTime );
+
+ int ringCount = TABGServer.ringCount;
+ // something ring-related, just set to false to disable
+ binaryWriterStream.Write((byte)ringCount);
+ for(int ringIndx = 0; ringIndx < ringCount; ringIndx++)
+ {
+ // ring time
+ binaryWriterStream.Write( TABGServer.ringTime[ringIndx] );
+ // ring speed
+ binaryWriterStream.Write( TABGServer.ringSpeed[ringIndx] );
+ }
+
+
+ // lives
+ binaryWriterStream.Write((Int32)2);
+ // kills to win
+ binaryWriterStream.Write((ushort)10);
+ // gamestate
+ GameState gameState = GameState.WaitingForPlayers;
+
+ binaryWriterStream.Write((Byte)gameState);
+
+ // flying stuff (?)
+ //binaryWriterStream.Write(0f);
+ //binaryWriterStream.Write(200f);
+ //binaryWriterStream.Write(0f);
+ //binaryWriterStream.Write(0f);
+ //binaryWriterStream.Write(200f);
+ //binaryWriterStream.Write(0f);
+
+ if ((gameState == GameState.Flying || gameState == GameState.Started))
+ {
+ // flying stuff (?)
+ binaryWriterStream.Write(false);
+ binaryWriterStream.Write(300f);
+ binaryWriterStream.Write(125f);
+ binaryWriterStream.Write(300f);
+
+ binaryWriterStream.Write(-200f);
+ binaryWriterStream.Write(125f);
+ binaryWriterStream.Write(-350f);
+ }
+ }
+ }
+ return sendByte;
+ }
+
+ private byte[] SendLoginMessageToServer(byte playerIndex, string playerName, int[] gearData)
+ {
+ byte[] sendByte = new byte[1024];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // player index
+ binaryWriterStream.Write((Byte)playerIndex);
+ // group index
+ binaryWriterStream.Write((Byte)playerIndex);
+ // username length
+ binaryWriterStream.Write((Int32)(playerName.Length));
+ // username
+ binaryWriterStream.Write(Encoding.UTF8.GetBytes(playerName));
+
+ // gear data
+ binaryWriterStream.Write((Int32)gearData.Length);
+ for (int i = 0; i < gearData.Length; i++)
+ {
+ binaryWriterStream.Write((Int32)gearData[i]);
+ }
+
+ // is dev
+ binaryWriterStream.Write(true);
+ }
+ }
+ return sendByte;
+ }
+
+ public void SendMessageToServer(EventCode code, byte[] buffer, bool reliable)
+ {
+ ENet.Packet packet = default(ENet.Packet);
+ byte[] array = new byte[buffer.Length + 1];
+ array[0] = (byte)code;
+ Array.Copy(buffer, 0, array, 1, buffer.Length);
+ packet.Create(array, reliable ? PacketFlags.Reliable : PacketFlags.None);
+ this.m_peer.Send(0, ref packet);
+ }
+
+ private List LoadItemSpawns()
+ {
+ List list = new List();
+
+ //string absPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "./DataFiles/ItemsSpawns.cs");
+ string absPath = @"C:\Users\Weaver\Downloads\TABGCommunityServer-master\TABGServer\DataFiles\ItemSpawns.csv";
+ string contents = File.ReadAllText(absPath);
+ string[] splits = contents.Split("\n");
+ foreach(string line in splits)
+ {
+ if (line.StartsWith("X")) continue;
+ string[] values = line.Split(",");
+ Vector3 vector = new Vector3(float.Parse(values[0]), float.Parse(values[1]), float.Parse(values[2]));
+ list.Add(vector);
+ }
+
+ return list;
+ }
+ }
+}
diff --git a/TABGServer/Player.cs b/TABGServer/Player.cs
new file mode 100644
index 0000000..a9d7df4
--- /dev/null
+++ b/TABGServer/Player.cs
@@ -0,0 +1,39 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TABGCommunityServer
+{
+ internal class Player
+ {
+ public byte Id { get; set; }
+ public byte Group { get; set; }
+ public string Name { get; set; }
+ public (float X, float Y, float Z) Location { get; set; }
+ public (float X, float Y) Rotation { get; set; }
+ public int[] GearData { get; set; }
+ public float Health { get; set; }
+
+ // aim down sights
+ public bool Ads { get; set; }
+ public byte[] OptimizedDirection { get; set; }
+ public List PendingBroadcastPackets { get; set; }
+ public byte MovementFlags { get; set; }
+ public Player(byte id, byte group, string name, (float X, float Y, float Z) location, (float X, float Y) rotation, int[] gearData)
+ {
+ Id = id;
+ Group = group;
+ Name = name;
+ Rotation = rotation;
+ Location = location;
+ Ads = false;
+ GearData = gearData;
+ OptimizedDirection = new byte[3];
+ MovementFlags = 0;
+ PendingBroadcastPackets = new List();
+ Health = 100f;
+ }
+ }
+}
diff --git a/TABGServer/PlayerConcurencyHandler.cs b/TABGServer/PlayerConcurencyHandler.cs
new file mode 100644
index 0000000..4928274
--- /dev/null
+++ b/TABGServer/PlayerConcurencyHandler.cs
@@ -0,0 +1,35 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TABGCommunityServer
+{
+ internal class PlayerConcurencyHandler
+ {
+ public Dictionary Players = new Dictionary();
+ public byte LastID = 0;
+
+ public PlayerConcurencyHandler() { }
+
+ public void AddPlayer(Player player)
+ {
+ Players[player.Id] = player;
+ LastID++;
+ }
+
+ public void RemovePlayer(Player player)
+ {
+ Players.Remove(player.Id);
+ }
+
+ public void UpdatePlayerLocation(int playerId, (float X, float Y, float Z) newLocation)
+ {
+ if (Players.TryGetValue(playerId, out Player? player))
+ {
+ player.Location = newLocation;
+ }
+ }
+ }
+}
diff --git a/TABGServer/PlayerHandler.cs b/TABGServer/PlayerHandler.cs
new file mode 100644
index 0000000..e76bb9e
--- /dev/null
+++ b/TABGServer/PlayerHandler.cs
@@ -0,0 +1,872 @@
+using System;
+using System.Collections.Generic;
+using System.Diagnostics.Tracing;
+using System.IO;
+using System.Linq;
+using System.Numerics;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TABGCommunityServer
+{
+ internal class PlayerHandler
+ {
+ public PlayerHandler() { }
+
+ public byte[] KillPlayer(int victim, int killer, string victimName)
+ {
+ byte[] sendByte = new byte[128];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // player index
+ binaryWriterStream.Write((Byte)victim);
+ // player who killed the player
+ binaryWriterStream.Write((Byte)killer);
+ // spectator value: 255 = don't respawn. 254 = go to boss. other ints = spectate that player
+ binaryWriterStream.Write((Byte)254);
+ // victim length
+ binaryWriterStream.Write((Int32)(victimName.Length));
+ // victim
+ binaryWriterStream.Write(Encoding.UTF8.GetBytes(victimName));
+ // weapon id for killscreen (unused for now)
+ binaryWriterStream.Write((Int32)1);
+ // is ring death (unused for now because ring isn't operational)
+ binaryWriterStream.Write(false);
+ }
+ }
+ return sendByte;
+ }
+
+ public byte[] SendNotification(int playerIndex, string notification)
+ {
+ byte[] sendByte = new byte[128];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // player index (set to 255 for invalid player so nobody gets killed)
+ binaryWriterStream.Write((Byte)255);
+ // player who killed the player
+ binaryWriterStream.Write((Byte)playerIndex);
+ // spectator value is unneeded when killing other players
+ binaryWriterStream.Write((Byte)255);
+
+ // get amount of bytes
+ byte[] message = Encoding.Unicode.GetBytes(notification);
+
+ // victim length
+ binaryWriterStream.Write((Byte)(message.Length));
+ // victim
+ binaryWriterStream.Write(message);
+
+ // weapon id for killscreen (unused for now)
+ binaryWriterStream.Write((Int32)1);
+ // is ring death (unused for now because ring isn't operational)
+ binaryWriterStream.Write(false);
+ }
+ }
+ return sendByte;
+ }
+
+ public byte[] GiveItem(int itemID, int amount)
+ {
+ byte[] sendByte = new byte[128];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // num of items (loops)
+ binaryWriterStream.Write((ushort)1);
+ // item id
+ binaryWriterStream.Write((Int32)itemID);
+ // quantity of item
+ binaryWriterStream.Write((Int32)amount);
+ // Client requires this, but it's redundant
+ binaryWriterStream.Write((Int32)0);
+ }
+ }
+ return sendByte;
+ }
+
+ public byte[] GiveGear()
+ {
+ byte[] sendByte = new byte[768];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // number of loops
+ binaryWriterStream.Write((ushort)14);
+
+ // start with the ammo
+ for (int i = 0; i < 10; i++)
+ {
+ // item id
+ binaryWriterStream.Write((Int32)i);
+ // quantity of item
+ binaryWriterStream.Write((Int32)999);
+ }
+
+ // give LP grenade
+ binaryWriterStream.Write((Int32)ItemIDs.Launch_Pad_Grenade);
+ binaryWriterStream.Write((Int32)1);
+
+ // give vector
+ binaryWriterStream.Write((Int32)ItemIDs.Vector);
+ binaryWriterStream.Write((Int32)999);
+
+ // give AWP
+ binaryWriterStream.Write((Int32)ItemIDs.AWP);
+ binaryWriterStream.Write((Int32)1);
+
+ // give deagle
+ binaryWriterStream.Write((Int32)ItemIDs.Desert_Eagle);
+ binaryWriterStream.Write((Int32)1);
+
+ // Client requires this, but it's redundant
+ binaryWriterStream.Write((Int32)0);
+ }
+ }
+ return sendByte;
+ }
+
+ public UpdatePacket PlayerUpdate(BinaryReader binaryReader, int packetLength, PlayerConcurencyHandler playerConncurencyHandler)
+ {
+ // player
+ var playerIndex = binaryReader.ReadByte();
+
+ // location
+ var x = binaryReader.ReadSingle();
+ var y = binaryReader.ReadSingle();
+ var z = binaryReader.ReadSingle();
+
+ // rotation
+ var rotX = binaryReader.ReadSingle();
+ var rotY = binaryReader.ReadSingle();
+
+ // "ads" bool (?)
+ // OHH THIS MEANS AIM DOWN SIGHTS
+ var ads = binaryReader.ReadBoolean();
+
+ // optimizeDirection (?)
+ var arrayLen = packetLength - 23;
+ var optimizeDirection = binaryReader.ReadBytes(arrayLen);
+
+ // movement flags
+ var movementFlags = binaryReader.ReadByte();
+
+ Player player = playerConncurencyHandler.Players[playerIndex];
+
+ player.Id = playerIndex;
+ player.Location = (x, y, z);
+ player.Rotation = (rotX, rotY);
+ player.Ads = ads;
+ player.OptimizedDirection = optimizeDirection;
+ player.MovementFlags = movementFlags;
+
+ UpdatePacket fullPacket = new UpdatePacket(SendPlayerUpdateResponsePacket(playerConncurencyHandler), player);
+
+ return fullPacket;
+ }
+
+ public void PlayerFire(BinaryReader binaryReader, int length, PlayerConcurencyHandler concurrencyHandler)
+ {
+ // player index
+ var playerIndex = binaryReader.ReadByte();
+ // firing mode
+ var firingMode = binaryReader.ReadByte();
+ // ammo type
+ var ammoType = binaryReader.ReadInt32();
+
+ // extra data (vectors and more)
+ // you gotta be kidding me, did Landfall really just put a flag in rather than passing at least idk like an EMPTY ARRAY?
+ // WTF LANDFALL
+ int extraDataLength = length - 6;
+ byte[] extraData = new byte[0];
+
+ if (extraDataLength != 0)
+ {
+ extraData = binaryReader.ReadBytes(extraDataLength);
+ }
+
+ FiringMode firingModeFlag = (FiringMode)firingMode;
+ byte[] sendByte = new byte[1024];
+ try
+ {
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+
+ // ANOTHER binary stream because of Landfall's bad design
+ // i KNOW this is confusing but the variable scopes require me to write it this way
+ using (MemoryStream memoryStream = new MemoryStream(extraData))
+ {
+ using (BinaryReader extraDataBinaryReader = new BinaryReader(memoryStream))
+ {
+ binaryWriterStream.Write(playerIndex);
+ binaryWriterStream.Write(firingMode);
+ binaryWriterStream.Write(ammoType);
+
+ // flag is used to signal firing mode
+ if ((firingModeFlag & FiringMode.ContainsDirection) == FiringMode.ContainsDirection)
+ {
+ // vector direction
+ float x = extraDataBinaryReader.ReadSingle();
+ float y = extraDataBinaryReader.ReadSingle();
+ float z = extraDataBinaryReader.ReadSingle();
+
+ binaryWriterStream.Write(x);
+ binaryWriterStream.Write(y);
+ binaryWriterStream.Write(z);
+
+ // random patch!!!
+ // THIS CRASHES THE SERVER
+ // IF YOU USE GUST SPELL!
+ while (binaryReader.PeekChar() != -1)
+ {
+ byte quaternion = binaryReader.ReadByte();
+ binaryWriterStream.Write(quaternion);
+ if (!(quaternion >= 4))
+ {
+ byte[] quaternionData = extraDataBinaryReader.ReadBytes(6);
+ binaryWriterStream.Write(quaternionData);
+ }
+ }
+ }
+
+ if ((firingModeFlag & FiringMode.WantsToBeSynced) == FiringMode.WantsToBeSynced)
+ {
+ var syncIndex = binaryReader.ReadInt32();
+ binaryWriterStream.Write(syncIndex);
+ }
+
+ if ((firingModeFlag & FiringMode.UseBulletEffect) == FiringMode.UseBulletEffect)
+ {
+ var bulletEffectType = binaryReader.ReadByte();
+ binaryWriterStream.Write(bulletEffectType);
+ }
+ }
+ }
+ }
+ }
+ } catch(Exception err)
+ {
+ Console.WriteLine(err);
+ }
+
+ foreach (var item in concurrencyHandler.Players)
+ {
+ if (item.Key == playerIndex)
+ {
+ continue;
+ }
+
+ // broadcast to ALL players but the shooter
+ item.Value.PendingBroadcastPackets.Add(new Packet(EventCode.PlayerFire, sendByte));
+ }
+
+ //return sendByte;
+ }
+
+ public byte[] PlayerChangedWeapon(BinaryReader binaryReader)
+ {
+ // player index
+ var playerIndex = binaryReader.ReadByte();
+ // slot flag
+ var slotFlag = binaryReader.ReadByte();
+
+ // UNKNOWN W VALUES
+ // w1
+ var w1 = binaryReader.ReadInt16();
+ // w2
+ var w2 = binaryReader.ReadInt16();
+ // w3
+ var w3 = binaryReader.ReadInt16();
+ // w4
+ var w4 = binaryReader.ReadInt16();
+ // w5
+ var w5 = binaryReader.ReadInt16();
+
+ // attachments
+ var attachmentsLength = binaryReader.ReadByte();
+ short[] attachments = new short[256];
+ for (int i = 0; i < attachmentsLength; i++)
+ {
+ var attachmentID = binaryReader.ReadInt16();
+ attachments[i] = (short)attachmentID;
+ }
+
+ // is throwable
+ var throwable = binaryReader.ReadInt16();
+
+ byte[] sendByte = new byte[2048];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // player index
+ binaryWriterStream.Write(playerIndex);
+ binaryWriterStream.Write(slotFlag);
+ binaryWriterStream.Write(w1);
+ binaryWriterStream.Write(w2);
+ binaryWriterStream.Write(w3);
+ binaryWriterStream.Write(w4);
+ binaryWriterStream.Write(w5);
+ binaryWriterStream.Write(attachments.Length);
+ for(int i = 0; i < attachments.Length; i++)
+ {
+ binaryWriterStream.Write(attachments[i]);
+ }
+ binaryWriterStream.Write(throwable);
+ }
+ }
+
+ return sendByte;
+ }
+
+ public byte[] SendPlayerUpdateResponsePacket(PlayerConcurencyHandler playerConcurrencyHandler)
+ {
+ byte[] sendByte = new byte[2048];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // ms (to get ms since last update)
+ float milliseconds = DateTime.Now.Ticks / TimeSpan.TicksPerMillisecond;
+ binaryWriterStream.Write(milliseconds);
+
+ // amount of players to loop (unimplemented)
+ binaryWriterStream.Write((byte)playerConcurrencyHandler.Players.Count);
+
+ foreach(var item in playerConcurrencyHandler.Players)
+ {
+ // player index
+ binaryWriterStream.Write((byte)item.Key);
+
+ // packet container flags
+ PacketContainerFlags packetContainerFlags = PacketContainerFlags.PlayerPosition | PacketContainerFlags.PlayerRotation | PacketContainerFlags.PlayerDirection;
+ binaryWriterStream.Write((byte)packetContainerFlags);
+
+ // driving state
+ binaryWriterStream.Write((byte)DrivingState.None);
+
+ // player position (triggered by packet container flag)
+ var loc = item.Value.Location;
+ binaryWriterStream.Write(loc.X);
+ binaryWriterStream.Write(loc.Y);
+ binaryWriterStream.Write(loc.Z);
+
+ // player rotation (triggered by flag)
+ var rot = item.Value.Rotation;
+ binaryWriterStream.Write(rot.X);
+ binaryWriterStream.Write(rot.Y);
+
+ // aim down sights state
+ binaryWriterStream.Write(item.Value.Ads);
+
+ // optimized direction
+ binaryWriterStream.Write(item.Value.OptimizedDirection);
+
+ // movement flag bytes
+ binaryWriterStream.Write(item.Value.MovementFlags);
+ }
+
+ // car stuff - vehicles are disabled so this isn't important
+ binaryWriterStream.Write((byte)0);
+ }
+ }
+ return sendByte;
+ }
+
+ public byte[] RequestAirplaneDrop(BinaryReader binaryReader)
+ {
+ // player index
+ var index = binaryReader.ReadByte();
+
+ // location
+ var x = binaryReader.ReadSingle();
+ var y = binaryReader.ReadSingle();
+ var z = binaryReader.ReadSingle();
+
+ //Console.WriteLine($"I, player index {index.ToString()}, am at the location {x}, {y}, {z}");
+
+ byte[] sendByte = new byte[128];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ binaryWriterStream.Write(index);
+ binaryWriterStream.Write(x);
+ binaryWriterStream.Write(y);
+ binaryWriterStream.Write(z);
+ binaryWriterStream.Write(x - 1);
+ binaryWriterStream.Write(y - 100);
+ binaryWriterStream.Write(z - 1);
+ }
+ }
+
+ return sendByte;
+ }
+
+ public byte[] RevivePlayer(byte playerID)
+ {
+ var sendByte = new byte[128];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ binaryWriterStream.Write((byte)ReviveState.Finished);
+ // player being revived
+ binaryWriterStream.Write(playerID);
+ // player who is revivng
+ binaryWriterStream.Write((byte)255);
+ }
+ }
+ return sendByte;
+ }
+
+ public byte[] ClientRequestProjectileSyncEvent(PlayerConcurencyHandler playerConcurrencyHandler, BinaryReader binaryReader, int fullLength)
+ {
+ // "sync index"
+ var syncIndex = binaryReader.ReadInt32();
+ // removed
+ var removed = binaryReader.ReadBoolean();
+ // "everyone"
+ var everyone = binaryReader.ReadBoolean();
+ // include self (?)
+ var includeSelf = binaryReader.ReadBoolean();
+ // is static (?)
+ var isStatic = binaryReader.ReadBoolean();
+
+ // additional data length
+ var addDataLength = fullLength - 8;
+ // additional data byte
+ var additionalData = binaryReader.ReadBytes(addDataLength);
+
+ using (MemoryStream memoryStream = new MemoryStream(additionalData))
+ {
+ using (BinaryReader extraDataBinaryReader = new BinaryReader(memoryStream))
+ {
+ byte syncProjectileDataType = (byte)0;
+ while (binaryReader.PeekChar() != -1)
+ {
+ syncProjectileDataType = extraDataBinaryReader.ReadByte();
+ }
+ byte[] sendByte = new byte[128];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ binaryWriterStream.Write(syncIndex);
+ // removed flag
+ binaryWriterStream.Write(removed);
+ // these don't matter
+ binaryWriterStream.Write(everyone);
+ binaryWriterStream.Write(includeSelf);
+ binaryWriterStream.Write(isStatic);
+
+ // case
+ switch (syncProjectileDataType)
+ {
+ case 1:
+ {
+ var syncedInt = extraDataBinaryReader.ReadInt32();
+ binaryWriterStream.Write(syncedInt);
+ break;
+ }
+ case 3:
+ {
+ var x = extraDataBinaryReader.ReadSingle();
+ var y = extraDataBinaryReader.ReadSingle();
+ var z = extraDataBinaryReader.ReadSingle();
+
+ binaryWriterStream.Write(x);
+ binaryWriterStream.Write(y);
+ binaryWriterStream.Write(z);
+ break;
+ }
+ case 4:
+ {
+ var x = extraDataBinaryReader.ReadSingle();
+ var y = extraDataBinaryReader.ReadSingle();
+ var z = extraDataBinaryReader.ReadSingle();
+
+ var x2 = extraDataBinaryReader.ReadSingle();
+ var y2 = extraDataBinaryReader.ReadSingle();
+ var z2 = extraDataBinaryReader.ReadSingle();
+
+ binaryWriterStream.Write(x);
+ binaryWriterStream.Write(y);
+ binaryWriterStream.Write(z);
+ binaryWriterStream.Write(x2);
+ binaryWriterStream.Write(y2);
+ binaryWriterStream.Write(z2);
+ break;
+ }
+ case 5:
+ {
+ // no idea what this does... client requires it tho
+ float randomFloat = extraDataBinaryReader.ReadSingle();
+ binaryWriterStream.Write(randomFloat);
+ break;
+ }
+ case 6:
+ {
+ bool flag2 = extraDataBinaryReader.ReadByte() == 1;
+ binaryWriterStream.Write(flag2);
+ break;
+ }
+ case 7:
+ {
+ // two bytes for collission
+ byte b = extraDataBinaryReader.ReadByte();
+ byte b2 = extraDataBinaryReader.ReadByte();
+
+ binaryWriterStream.Write(b);
+ binaryWriterStream.Write(b2);
+ break;
+ }
+ case 8:
+ {
+ // collision bytes PLUS vector
+ byte b = extraDataBinaryReader.ReadByte();
+ byte b2 = extraDataBinaryReader.ReadByte();
+
+ var x = extraDataBinaryReader.ReadSingle();
+ var y = extraDataBinaryReader.ReadSingle();
+ var z = extraDataBinaryReader.ReadSingle();
+
+ binaryWriterStream.Write(b);
+ binaryWriterStream.Write(b2);
+ binaryWriterStream.Write(x);
+ binaryWriterStream.Write(y);
+ binaryWriterStream.Write(z);
+ break;
+ }
+ case 9:
+ {
+ // just one byte (?)
+ byte b5 = extraDataBinaryReader.ReadByte();
+
+ binaryWriterStream.Write(b5);
+ break;
+ }
+ case 10:
+ {
+ // one byte and one bool. not sure what this does either
+ byte b6 = extraDataBinaryReader.ReadByte();
+ bool flag3 = extraDataBinaryReader.ReadBoolean();
+
+ binaryWriterStream.Write(b6);
+ binaryWriterStream.Write(flag3);
+ break;
+ }
+ }
+ }
+ }
+ return sendByte;
+ }
+ }
+ }
+
+ public byte[] RequestBlessingEvent(BinaryReader binaryReader)
+ {
+ // player index
+ var playerIndex = binaryReader.ReadByte();
+ // blessing slots
+ var slot1 = binaryReader.ReadInt32();
+ var slot2 = binaryReader.ReadInt32();
+ var slot3 = binaryReader.ReadInt32();
+
+ byte[] sendByte = new byte[256];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ binaryWriterStream.Write(playerIndex);
+ binaryWriterStream.Write(slot1);
+ binaryWriterStream.Write(slot2);
+ binaryWriterStream.Write(slot3);
+ }
+ }
+ return sendByte;
+ }
+
+ public void RingDeathEvent(PlayerConcurencyHandler playerConcurencyHandler, BinaryReader binaryReader)
+ {
+ byte deadUser = binaryReader.ReadByte();
+
+ byte[] killUserBytes = new PlayerHandler().KillPlayer(deadUser, deadUser, "The Wall");
+ foreach (var item in playerConcurencyHandler.Players)
+ {
+ item.Value.PendingBroadcastPackets.Add(new Packet(EventCode.PlayerDead, killUserBytes));
+ }
+ }
+
+ public byte[] GenerateRespawnPacket(byte playerIndex)
+ {
+ byte[] respawnBytes = new byte[512];
+
+ using (MemoryStream writerMemoryStream = new MemoryStream(respawnBytes))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // How many players we are respawning?
+ binaryWriterStream.Write(0);
+
+ // Player Index
+ binaryWriterStream.Write(playerIndex);
+
+ // New Player Index ( I'm going to keep this the same )
+ binaryWriterStream.Write(playerIndex);
+
+ // Health
+ binaryWriterStream.Write((Single)100f);
+
+ // Position X, Y, and Z
+ //Console.WriteLine($"PlayerHandler here, respawning from boss fight. Checking all circle positions!\n {TABGServer.centers.Length} {TABGServer.centers.ToString()}");
+ int[] pos = TABGServer.centers[TABGServer.currentRingIndex - 1];
+
+ binaryWriterStream.Write(pos[0]);
+ binaryWriterStream.Write(150);
+ binaryWriterStream.Write(pos[1]);
+
+ // Rotation
+ binaryWriterStream.Write((Single)0);
+
+ // Curse ID ~ 255 = None
+ binaryWriterStream.Write(255);
+ }
+ }
+
+ return respawnBytes;
+ }
+
+ public byte[] TaseEffectPlayer(byte playerIndex)
+ {
+ // Tase effect
+ byte[] taseEffectBytes = new byte[512];
+
+ using (MemoryStream writerMemoryStream = new MemoryStream(taseEffectBytes))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // player index
+ binaryWriterStream.Write(playerIndex);
+
+ // Weapon Effect
+ binaryWriterStream.Write((byte)WeaponEffect.Tase);
+
+ // Range Multiplier
+ binaryWriterStream.Write((Single)1);
+ }
+ }
+ return taseEffectBytes;
+ }
+
+ public byte[][] BossFightResultEvent(PlayerConcurencyHandler playerConcurencyHandler, BinaryReader binaryReader)
+ {
+ bool didWin = binaryReader.ReadBoolean();
+ byte difficulty = binaryReader.ReadByte();
+ Console.WriteLine($"Boss fight Result ~ Win : {didWin}, Difficulty : {difficulty}");
+ //if (didWin == false) return new byte[0][];
+
+ byte playerIndex = 0;
+
+ return new byte[][] {
+ GenerateRespawnPacket(playerIndex),
+ TaseEffectPlayer(playerIndex)
+ };
+ }
+
+ public void PlayerDamagedEvent(PlayerConcurencyHandler playerConcurrencyHandler, BinaryReader binaryReader)
+ {
+ byte[] sendByte = new byte[256];
+ Player playerOutside;
+ Player playerOutside2;
+ byte attackerOutside;
+
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // attacker id
+ var attacker = binaryReader.ReadByte();
+ attackerOutside = attacker;
+
+ // victim id
+ var victim = binaryReader.ReadByte();
+ Player player = playerConcurrencyHandler.Players[victim];
+ playerOutside = player;
+
+ Player player2 = playerConcurrencyHandler.Players[attacker];
+ playerOutside2 = player;
+
+ binaryWriterStream.Write(victim);
+ binaryWriterStream.Write(attacker);
+
+ // health
+ var health = binaryReader.ReadSingle();
+ binaryWriterStream.Write(health);
+ player.Health = health;
+
+ if(health <= 0)
+ {
+ byte[] killUserBytes = KillPlayer(victim, attacker, player2.Name);
+ foreach (var item in playerConcurrencyHandler.Players)
+ {
+ item.Value.PendingBroadcastPackets.Add(new Packet(EventCode.PlayerDead, killUserBytes));
+ }
+ }
+
+ Console.WriteLine("Attacker: " + attacker + ". Victim: " + victim + ". New health value: " + health);
+
+ // direction
+ var x = binaryReader.ReadSingle();
+ var y = binaryReader.ReadSingle();
+ var z = binaryReader.ReadSingle();
+ binaryWriterStream.Write(x);
+ binaryWriterStream.Write(y);
+ binaryWriterStream.Write(z);
+
+ // "flag" for force
+ var flag = binaryReader.ReadBoolean();
+ binaryWriterStream.Write((byte)1);
+ if (flag)
+ {
+ var forceX = binaryReader.ReadSingle();
+ var forceY = binaryReader.ReadSingle();
+ var forceZ = binaryReader.ReadSingle();
+ var rigIndex = binaryReader.ReadByte();
+ var forceMode = binaryReader.ReadByte();
+ binaryWriterStream.Write(forceX);
+ binaryWriterStream.Write(forceY);
+ binaryWriterStream.Write(forceZ);
+ binaryWriterStream.Write(rigIndex);
+ binaryWriterStream.Write(forceMode);
+ }
+ else
+ {
+ var returnToSender = binaryReader.ReadBoolean();
+ }
+ }
+ }
+
+ playerOutside.PendingBroadcastPackets.Add(new Packet(EventCode.PlayerDamaged, sendByte));
+ playerOutside2.PendingBroadcastPackets.Add(new Packet(EventCode.PlayerDamaged, sendByte));
+
+ //foreach (var item in playerConcurrencyHandler.Players)
+ //{
+ // if (item.Key == attackerOutside)
+ // {
+ // continue;
+ // }
+
+ // broadcast to ALL players but the shooter
+ // item.Value.PendingBroadcastPackets.Add(new Packet(ClientEventCode.PlayerDamaged, sendByte));
+ //}
+
+ return;
+ }
+
+ public byte[] SetPlayerHealth(byte playerID, float newHealth)
+ {
+ byte[] sendByte = new byte[128];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ binaryWriterStream.Write(playerID);
+ binaryWriterStream.Write(newHealth);
+ }
+ }
+ return sendByte;
+ }
+
+ public byte[] SimulateChunkEnter(PlayerConcurencyHandler playerConcurrencyHandler, byte playerIndex, TABGPlayerState playerState, float health)
+ {
+ byte[] sendByte = new byte[1024];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // player index
+ binaryWriterStream.Write(playerIndex);
+ // player state (transcended etc)
+ binaryWriterStream.Write((byte)playerState);
+ // health
+ binaryWriterStream.Write(health);
+ // is player downed
+ binaryWriterStream.Write(false);
+ // is skydiving
+ binaryWriterStream.Write(false);
+ // gear data
+ var player = playerConcurrencyHandler.Players[playerIndex];
+ binaryWriterStream.Write((Int32)player.GearData.Length);
+ for(int i = 0; i < player.GearData.Length; i++)
+ {
+ binaryWriterStream.Write(player.GearData[i]);
+ }
+ // equipment (not tracked by concurrency handler yet)
+ binaryWriterStream.Write((byte)0);
+ // attachments (also not tracked)
+ binaryWriterStream.Write((byte)0);
+ // blessings
+ binaryWriterStream.Write((Int32)0);
+ binaryWriterStream.Write((Int32)0);
+ binaryWriterStream.Write((Int32)0);
+ // should spawn car?
+ binaryWriterStream.Write((byte)DrivingState.None);
+ }
+ }
+ return sendByte;
+ }
+
+ public byte[] RequestHealthState(PlayerConcurencyHandler playerConcurrencyHandler, BinaryReader binaryReader)
+ {
+
+ // player's index
+ var playerIndex = binaryReader.ReadByte();
+ // new health
+ var newHealth = binaryReader.ReadSingle();
+
+ // same packet as heal
+ return SetPlayerHealth(playerIndex, newHealth);
+ }
+
+ public byte[] BroadcastPlayerJoin(byte playerID, string playerName, int[] gearData)
+ {
+ byte[] sendByte = new byte[128];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // player id
+ binaryWriterStream.Write(playerID);
+
+ // group id
+ binaryWriterStream.Write((byte)0);
+
+ // username length
+ binaryWriterStream.Write((Int32)(playerName.Length));
+ // username
+ binaryWriterStream.Write(Encoding.UTF8.GetBytes(playerName));
+
+ // gear data.
+ binaryWriterStream.Write(gearData.Length);
+ foreach (int num in gearData)
+ {
+ binaryWriterStream.Write(num);
+ }
+
+ // is dev
+ binaryWriterStream.Write(true);
+ }
+ }
+ return sendByte;
+ }
+ }
+}
diff --git a/TABGServer/Program.cs b/TABGServer/Program.cs
new file mode 100644
index 0000000..0e5bfa2
--- /dev/null
+++ b/TABGServer/Program.cs
@@ -0,0 +1,443 @@
+namespace TABGCommunityServer;
+
+using System;
+using System.Diagnostics;
+using System.Diagnostics.Tracing;
+using System.Timers;
+using System.Text;
+using System.Threading.Channels;
+using ENet;
+
+class TABGServer
+{
+ static Stopwatch stopwatch = new Stopwatch();
+
+ static PlayerConcurencyHandler manager;
+ static WeaponConcurrencyHandler weaponConcurrencyHandler;
+
+
+ // Player/Server Data
+ public static int minPlayersStart = 16;
+ public static bool startGame = false;
+
+
+ // Ring Data
+ public static int maxRingSize = 1600;
+ public static int currentRingIndex = 1;
+
+ public static int secondsBeforeBaseRing = 10;
+ public static int baseRingTime = 120; // 2 minutes
+
+ public static int ringCount = 4;
+ public static int[] ringTime = new int[] { 60, 60, 60, 60 };
+ //public static int[] ringTime = new int[] { 120, 120, 120, 120 };
+ public static int[] ringSpeed = new int[] { 1, 1, 1, 1 };
+
+ public static int[] radii = new int[] { maxRingSize, maxRingSize / 2, maxRingSize / 4, maxRingSize / 8, maxRingSize / 16 };
+ public static int[][] centers = new int[][] { new int[] { 0, 0 } };
+
+ // Timer Values
+ public static int countdownTimerValue = 10;
+ public static int maxBusDuration = 60;
+
+ // Boolean Check Values
+ static bool flyingTimerSet = false;
+ static bool sentFirstRing = false;
+ static bool ringSet = false;
+
+ // data to ensure everyone gets packets
+
+ // List of packets, index is their ID
+ static List< Tuple > packetList = new();
+ // Index is Peer ID, Sublist is list of every packet ID recieved
+ static List> peerPacketsRecievedList = new();
+
+
+ static GameState currentGameState = GameState.WaitingForPlayers;
+
+ static void handleFrame(Event netEvent)
+ {
+ while(centers.Length < ringCount)
+ {
+ int[] oldCenter = centers[ centers.Length-1 ];
+ int oldRadius = radii[centers.Length-1 ];
+ int newRadius = radii[centers.Length ];
+
+ int[] c = getCenterOfNewRing(oldRadius, newRadius, oldCenter);
+ //Console.WriteLine($"Center Old: {oldCenter[0]}, {oldCenter[1]} - oldRad: {oldRadius}, newRad: {newRadius} ~ newCenter: {c[0]}, {c[1]}");
+ Array.Resize(ref centers, centers.Length+1);
+ centers[centers.Length - 1] = c;
+ }
+
+
+ long deltaTime = stopwatch.ElapsedMilliseconds;
+ stopwatch.Restart();
+
+ // i'd rather die than reverse this because im lazy
+ if (manager.Players.Count >= minPlayersStart || startGame) {}
+ else { return; }
+
+ switch (currentGameState)
+ {
+ case GameState.WaitingForPlayers:
+ currentGameState = GameState.CountDown;
+ setGamestate(manager, currentGameState, countdownTimerValue);
+
+ Timer countdownTimer = new Timer(countdownTimerValue * 1000);
+ countdownTimer.Elapsed += (sender, e) =>
+ {
+ currentGameState = GameState.Flying;
+ setGamestate(manager, currentGameState, 0);
+ countdownTimer.Stop();
+ };
+ countdownTimer.Enabled = true;
+ break;
+ case GameState.CountDown:
+ break;
+ case GameState.Flying:
+ if (flyingTimerSet == true) break;
+
+ Timer flyingTimer = new Timer(maxBusDuration * 1000);
+ flyingTimer.Elapsed += (sender, e) =>
+ {
+ currentGameState = GameState.Started;
+ setGamestate(manager, currentGameState, 0);
+
+ byte[] dropEveryonePacket = new byte[128];
+ using (MemoryStream writerMemoryStream = new MemoryStream(dropEveryonePacket))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ binaryWriterStream.Write(0);
+ binaryWriterStream.Write(0);
+ binaryWriterStream.Write(0);
+ }
+ }
+ //new PacketHandler(netEvent.Peer, manager, weaponConcurrencyHandler).SendMessageToServer(EventCode.AllDrop, dropEveryonePacket, true);
+ SendMessageToServer(EventCode.AllDrop, dropEveryonePacket, true);
+
+ flyingTimer.Stop();
+ };
+ flyingTimer.Enabled = true;
+
+ flyingTimerSet = true;
+ break;
+ case GameState.Started:
+ if (sentFirstRing == true) break;
+
+ Timer firstRingTimer = new Timer(secondsBeforeBaseRing * 1000);
+ firstRingTimer.Elapsed += (sender, e) =>
+ {
+ bool oldRingStatus = ringSet ? true : false;
+ nextRingUpdate(netEvent.Peer, manager, weaponConcurrencyHandler, false);
+
+ if (oldRingStatus == false)
+ {
+ Console.WriteLine($"Set ring, will start moving in {firstRingTimer.Interval / 1000} seconds");
+ return;
+ }
+ else { firstRingTimer.Stop(); }
+
+ if (currentRingIndex > ringCount)
+ {
+ Console.WriteLine("Completed all rings, now exiting ring timer loop thing");
+ }
+ else
+ {
+ Console.WriteLine($"Now on ring index {currentRingIndex}, setting an Interval of {ringTime[currentRingIndex - 1]} ");
+ firstRingTimer.Interval = (ringTime[currentRingIndex - 1]) * 1000;
+ firstRingTimer.Start();
+ }
+ };
+ firstRingTimer.Enabled = true;
+ sentFirstRing = true;
+ break;
+ }
+ // end of func.
+ }
+
+ static void Main()
+ {
+ ushort port = 9701;
+ ushort maxClients = 256;
+ Console.WriteLine("TABG COMMUNITY SERVER v1 STARTED");
+
+ ENet.Library.Initialize();
+
+ using Host server = new Host();
+
+ Address address = new Address();
+ bool oneTimeClientStart = false;
+
+ address.Port = port;
+ address.SetIP("0.0.0.0");
+
+ server.Create(address, maxClients);
+
+ Event netEvent;
+
+ manager = new();
+ weaponConcurrencyHandler = new();
+
+ stopwatch.Start();
+ while (!Console.KeyAvailable)
+ {
+ if (!oneTimeClientStart)
+ {
+ //Task.Run(TABGEmulationClient);
+ oneTimeClientStart = true;
+ Console.WriteLine($"Server Started on port {port}!");
+ }
+ bool polled = false;
+
+ while (!polled)
+ {
+
+
+ if (server.CheckEvents(out netEvent) <= 0)
+ {
+ if (server.Service(15, out netEvent) <= 0)
+ break;
+
+ polled = true;
+ }
+
+ switch (netEvent.Type)
+ {
+ case EventType.None:
+ break;
+
+ case EventType.Connect:
+ Console.WriteLine("Client connected - ID: " + netEvent.Peer.ID + ", IP: " + netEvent.Peer.IP);
+ break;
+
+ case EventType.Disconnect:
+ Console.WriteLine("Client disconnected - ID: " + netEvent.Peer.ID + ", IP: " + netEvent.Peer.IP);
+ break;
+
+ case EventType.Timeout:
+ Console.WriteLine("Client timeout - ID: " + netEvent.Peer.ID + ", IP: " + netEvent.Peer.IP);
+ break;
+
+ case EventType.Receive:
+ //Console.WriteLine("Packet received from - ID: " + netEvent.Peer.ID + ", IP: " + netEvent.Peer.IP + ", Channel ID: " + netEvent.ChannelID + ", Data length: " + netEvent.Packet.Length);
+ handleFrame(netEvent);
+ Console.WriteLine(netEvent.Peer.ID);
+
+
+ byte[] array = new byte[netEvent.Packet.Length];
+ netEvent.Packet.CopyTo(array);
+
+ var code = (EventCode)array[0];
+ var buffer = new byte[array.Length - 1];
+
+ Array.Copy(array, 1, buffer, 0, buffer.Length);
+
+ new PacketHandler(netEvent.Peer, manager, weaponConcurrencyHandler).Handle(code, buffer);
+
+ netEvent.Packet.Dispose();
+ break;
+
+ default:
+ Console.WriteLine("Client (ID: " + netEvent.Peer.ID + " ~ IP: " + netEvent.Peer.IP + ") Sent Event: " + netEvent.Type.ToString());
+ break;
+ }
+ }
+ }
+
+ server.Flush();
+
+ }
+
+ /*
+ // List of packets, index is their ID
+ static List packetList = new();
+ // Index is Peer ID, Sublist is list of every packet ID recieved
+ static List> peerPacketsRecievedList = new();
+ */
+
+ public static void checkUnsetPacketsForClient(Peer peer)
+ {
+ uint peerID = peer.ID;
+ List recievedPackets = peerPacketsRecievedList[(int)peerID];
+
+ for(int packetIndex=0; packetIndex tupleData = Tuple.Create(eventCode, packetData, reliable);
+
+ packetList.Add(tupleData);
+ int indexOfPacket = packetList.LastIndexOf(tupleData);
+ //new PacketHandler(netEvent.Peer, manager, weaponConcurrencyHandler).SendMessageToServer(eventCode, packetData, reliable);
+ }
+
+ public static void nextRingUpdate(Peer peer, PlayerConcurencyHandler manager, WeaponConcurrencyHandler weaponConcurrencyHandler, bool doAll)
+ {
+ if (doAll || ringSet==false)
+ {
+ // set ring radius
+ int[] ringPosition = centers[currentRingIndex - 1];
+ byte[] newRingPacket = GameHandler.GenerateRingPacket(1, (byte)currentRingIndex, ringPosition[0], 113, ringPosition[0], radii[currentRingIndex - 1]);
+ //new PacketHandler(peer, manager, weaponConcurrencyHandler).SendMessageToServer(EventCode.RingUpdate, newRingPacket, true);
+ SendMessageToServer(EventCode.RingUpdate, newRingPacket, true);
+ }
+
+ if (doAll || ringSet)
+ {
+ // start moving the ring
+ byte[] startRingPacket = GameHandler.GenerateRingPacket(2, 0, 0, 0, 0, 0);
+ //new PacketHandler(peer, manager, weaponConcurrencyHandler).SendMessageToServer(EventCode.RingUpdate, startRingPacket, true);
+ SendMessageToServer(EventCode.RingUpdate, startRingPacket, true);
+ currentRingIndex++;
+ }
+
+ ringSet = !ringSet;
+ }
+
+ public static void setGamestate(PlayerConcurencyHandler manager, GameState gamestate, int secondsOrModifier)
+ {
+ byte[] packetBytes = new byte[512];
+ switch (gamestate)
+ {
+ case GameState.WaitingForPlayers:
+ packetBytes = GameHandler.SetWaitingForPlayersState();
+ break;
+ case GameState.CountDown:
+ packetBytes = GameHandler.SetCountDown(secondsOrModifier);
+ break;
+ case GameState.Flying:
+ packetBytes = GameHandler.SetFlying((byte)secondsOrModifier);
+ break;
+ case GameState.Started:
+ packetBytes = GameHandler.SetStarted();
+ break;
+ }
+
+ foreach (var item in manager.Players)
+ {
+ item.Value.PendingBroadcastPackets.Add(new Packet(EventCode.GameStateChanged, packetBytes));
+ }
+ return;
+ }
+
+ public static int[] getCenterOfNewRing(int oldRadius, int newRadius, int[] oldPosition) {
+ int diff = oldRadius - newRadius;
+ int[] newPosition = randomPointInCircle(oldRadius, oldPosition);
+
+ return newPosition;
+ }
+
+ public static int[] randomPointInCircle(int radius, int[] position)
+ {
+ Random rand = new Random();
+ int randomRadius = (int)rand.NextInt64(radius);
+ int randomAngle = (int)rand.NextInt64(360);
+
+ return new int[] {
+ (int)(position[0] + (randomRadius * Math.Cos(randomAngle))),
+ (int)(position[1] + (randomRadius * Math.Sin(randomAngle)))
+ };
+ }
+
+
+
+ public static void TABGEmulationClient()
+ {
+ ushort port = 9700;
+ bool connected = false;
+
+ Thread.Sleep(1000);
+
+ Console.WriteLine("[CLIENT] Started Client!");
+
+ using (Host client = new Host())
+ {
+ Address address = new Address();
+
+ address.SetHost("127.0.0.1");
+ address.Port = port;
+ client.Create();
+
+ Peer peer = client.Connect(address);
+
+ Event netEvent;
+
+ while (!Console.KeyAvailable)
+ {
+ bool polled = false;
+
+ if (connected)
+ {
+ //Console.WriteLine("[CLIENT] Sending Packet to server!");
+ //Packet packet = new Packet();
+ //byte[] data = Encoding.ASCII.GetBytes("POLL_NOTIMEOUT");
+
+ //packet.Create(data, PacketFlags.Reliable);
+
+ //bool error = peer.Send(0, ref packet);
+ //if (error)
+ // Console.WriteLine(error);
+ //Console.WriteLine("[CLIENT] FAILED sending packet!");
+ //else
+ // Console.WriteLine("[CLIENT] Succeeded sending NOTIMEOUT!");
+ }
+
+ while (!polled)
+ {
+ if (client.CheckEvents(out netEvent) <= 0)
+ {
+ if (client.Service(15, out netEvent) <= 0)
+ break;
+
+ polled = true;
+ }
+
+ switch (netEvent.Type)
+ {
+ case EventType.None:
+ break;
+
+ case EventType.Connect:
+ Console.WriteLine("Client connected to server");
+ connected = true;
+ break;
+
+ case EventType.Disconnect:
+ Console.WriteLine("Client disconnected from server");
+ break;
+
+ case EventType.Timeout:
+ Console.WriteLine("Client connection timeout");
+ break;
+
+ case EventType.Receive:
+ Console.WriteLine("Packet received from server - Channel ID: " + netEvent.ChannelID + ", Data length: " + netEvent.Packet.Length);
+ netEvent.Packet.Dispose();
+ break;
+ }
+ }
+ }
+
+ client.Flush();
+ }
+ }
+}
\ No newline at end of file
diff --git a/TABGServer/ServerInstance.cs b/TABGServer/ServerInstance.cs
new file mode 100644
index 0000000..2014c76
--- /dev/null
+++ b/TABGServer/ServerInstance.cs
@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TABG
+{
+ internal class ServerInstance
+ {
+ }
+}
diff --git a/TABGServer/TABGClientEmuns/DrivingState.cs b/TABGServer/TABGClientEmuns/DrivingState.cs
new file mode 100644
index 0000000..89eee44
--- /dev/null
+++ b/TABGServer/TABGClientEmuns/DrivingState.cs
@@ -0,0 +1,10 @@
+// DrivingState gotten from the TABG Client, on 11/26/2023, using ILspy
+[Flags]
+public enum DrivingState : byte
+{
+ None = 0,
+ InsideCar = 1,
+ Driving = 2,
+ Slow = 4
+}
+
diff --git a/TABGServer/TABGClientEmuns/EventCode.cs b/TABGServer/TABGClientEmuns/EventCode.cs
new file mode 100644
index 0000000..06e3a29
--- /dev/null
+++ b/TABGServer/TABGClientEmuns/EventCode.cs
@@ -0,0 +1,130 @@
+// EventCode gotten from the TABG Client, on 11/23/2023, using ILspy
+public enum EventCode : byte
+{
+ NoCodeSet = 0,
+ Info = 1,
+ PlayerUpdate = 2,
+ Login = 3,
+ PlayerLeft = 4,
+ WeaponPickUpAccepted = 5,
+ PlayerDamaged = 6,
+ PlayerRespawn = 7,
+ SpawnGun = 8,
+ Data = 9,
+ GameStateChanged = 10,
+ ServerRestart = 11,
+ AllWeapons = 12,
+ SeatAccepted = 13,
+ PingRecieved = 14,
+ CarUpdate = 15,
+ PlayerMarkerEvent = 16,
+ CarDamage = 17,
+ TeamDead = 18,
+ ItemDrop = 19,
+ RingUpdate = 20,
+ PlayerAirplaneDropped = 21,
+ PlaneUpdate = 22,
+ AllDrop = 23,
+ RoomInitRequestResponse = 24,
+ ServerShutDown = 25,
+ ChunkEntry = 26,
+ ChunkExit = 27,
+ ReviveState = 28,
+ PlayerEnteredChunk = 29,
+ PlayerLeftChunk = 30,
+ ChatMessage = 31,
+ ItemThrown = 32,
+ WeaponChanged = 33,
+ GearChange = 34,
+ ThrowChatMessage = 35,
+ PlayerHealed = 36,
+ PlayerDead = 37,
+ PlayerStateChanged = 38,
+ PlayerEffect = 39,
+ PlayerDeathLootDrop = 40,
+ PlayerFire = 41,
+ ACMessage = 42,
+ PlayerLand = 43,
+ KickPlayer = 44,
+ SpectatorForce = 45,
+ ACRequestedData = 46,
+ KickPlayerMessage = 47,
+ PlayerRegMessage = 48,
+ LootRemovedFromMap = 49,
+ SoulDrop = 50,
+ CatchPhrase = 51,
+ BlessingRecieved = 52,
+ CurseCleansed = 53,
+ TakeDamageEvent = 54,
+ PlayerHealthStateChanged = 55,
+ DropSpawned = 56,
+ DropOpened = 57,
+ SyncProjectileEvent = 58,
+ PlayerFireSyncReturn = 59,
+ LootDropped = 60,
+ ScoresChanged = 61,
+ BombPlanted = 62,
+ GunPurchasedAccepted = 63,
+ MoneyChanged = 64,
+ BombStartDefuse = 65,
+ BombStopDefuse = 66,
+ PlayerLootRecieved = 67,
+ GraveStoneSpawned = 68,
+ PlayerRespawnFromBoss = 69,
+ NetworkPlayerTransmittedPackage = 70,
+ LootPackGiven = 71,
+ RecievedSteamID = 72,
+ ServerBrowserHandshake = 100,
+ SteamTicketAuthenticationResponse = 101,
+ AssignSteamID = 163,
+ FlagMatchOver = 164,
+ BossFightResult = 166,
+ PackedServerData = 167,
+ RequestStopDefuse = 168,
+ RequestDefuseBomb = 169,
+ RequestPlantBomb = 170,
+ RequestPurchaseGun = 171,
+ RequestSyncProjectileEvent = 172,
+ RequestClickInteract = 173,
+ RequestTakeDamageEvent = 174,
+ RequestCurseCleanse = 175,
+ RequestHealthState = 176,
+ RequestBlessing = 177,
+ SendCatchPhrase = 178,
+ RequestRespawnTeamMate = 179,
+ RingDeath = 180,
+ KickMessage = 181,
+ ACCacheState = 182,
+ SpectatorRequest = 184,
+ CarTemporaryUpdate = 189,
+ PassangerUpdate = 190,
+ PlayerState = 193,
+ RequestHealing = 194,
+ PhotonCloseRoom = 195,
+ WeaponChange = 198,
+ RequestItemThrow = 199,
+ RequestAirplaneDrop = 203,
+ RoomInit = 202,
+ RequestItemDrop = 206,
+ AdminCommand = 207,
+ PlayerMarkerAdded = 208,
+ TABGPing = 210,
+ RequestSeat = 211,
+ DamageEvent = 214,
+ RequestWeaponPickUp = 215,
+ RequestWorldState = 218,
+ LobbyStats = 224,
+ GameServerOffline = 225,
+ AppStats = 226,
+ QueueState = 228,
+ GameListUpdate = 229,
+ GameList = 230,
+ Ping = 248,
+ EventCacheSlicePurged = 249,
+ CacheSliceChanged = 250,
+ ErrorInfo = 251,
+ Disconnect = 252,
+ PropertiesChanged = 253,
+ Leave = 254,
+ Join = byte.MaxValue
+}
diff --git a/TABGServer/TABGClientEmuns/FiringMode.cs b/TABGServer/TABGClientEmuns/FiringMode.cs
new file mode 100644
index 0000000..729ef8a
--- /dev/null
+++ b/TABGServer/TABGClientEmuns/FiringMode.cs
@@ -0,0 +1,14 @@
+// FiringMode gotten from the TABG Client, on 11/26/2023, using ILspy
+[Flags]
+public enum FiringMode : byte
+{
+ None = 0,
+ Semi = 1,
+ Burst = 2,
+ FullAutoStart = 4,
+ FullAutoStop = 8,
+ ContainsDirection = 0x10,
+ RightGun = 0x20,
+ WantsToBeSynced = 0x40,
+ UseBulletEffect = 0x80
+}
diff --git a/TABGServer/TABGClientEmuns/GameMode.cs b/TABGServer/TABGClientEmuns/GameMode.cs
new file mode 100644
index 0000000..67a7bea
--- /dev/null
+++ b/TABGServer/TABGClientEmuns/GameMode.cs
@@ -0,0 +1,9 @@
+// GameMode gotten from the TABG Client, on 11/23/2023, using ILspy
+public enum GameMode : byte
+{
+ BattleRoyale,
+ Brawl,
+ Test,
+ Bomb,
+ Deception
+}
\ No newline at end of file
diff --git a/TABGServer/TABGClientEmuns/GameState.cs b/TABGServer/TABGClientEmuns/GameState.cs
new file mode 100644
index 0000000..4f0cd26
--- /dev/null
+++ b/TABGServer/TABGClientEmuns/GameState.cs
@@ -0,0 +1,14 @@
+// GameState gotten from the TABG Client, on 11/23/2023, using ILspy
+public enum GameState : byte
+{
+ WaitingForPlayers,
+ CountDown,
+ Flying,
+ Started,
+ Ended,
+ OpenDoors,
+ RoundOver,
+ Intermission,
+ Voting,
+ VotingOver
+}
\ No newline at end of file
diff --git a/TABGServer/TABGClientEmuns/ItemIDs.cs b/TABGServer/TABGClientEmuns/ItemIDs.cs
new file mode 100644
index 0000000..91b56c8
--- /dev/null
+++ b/TABGServer/TABGClientEmuns/ItemIDs.cs
@@ -0,0 +1,332 @@
+public enum ItemIDs : Int32
+{
+ fortyFive_ACP = 0,
+ Big_Ammo = 1,
+ Bolts = 2,
+ Money_Ammo = 3,
+ Musket_Ammo = 4,
+ No_Ammo = 5,
+ Normal_Ammo = 6,
+ Rocket_Ammo = 7,
+ Shotgun_Ammo = 8,
+ Small_Ammo = 9,
+ Soul = 10,
+ Taser_Ammo = 11,
+ Water_Ammo = 12,
+ Lv0_JetpackArmor = 13,
+ Lv1_Safety_Vest = 14,
+ Lv2_Kevlar_Vest = 15,
+ Lv3_Big_Boy_Kevlar_Vest = 16,
+ Lv4_Heavy_Armor = 17,
+ Banana_Armor = 18,
+ Lv5_Pickle_Armor = 19,
+ Half_xScope = 20,
+ Two_xScope = 21,
+ Four_xScope = 22,
+ Eight_xScope = 23,
+ Compensator = 24,
+ Damage_Analyzer = 25,
+ Healing_Barrel = 26,
+ Health_Analyzer = 27,
+ Heavy_Barrel = 28,
+ Laser_Sight = 29,
+ Double_Barrel = 30,
+ Fast_Barrel = 31,
+ Accuracy_Barrel = 32,
+ Fire_Rate_Barrel = 33,
+ Big_Slow_Bullet_Barrel = 34,
+ Periscope_Barrel = 35,
+ Periscope = 36,
+ Recycler = 37,
+ Red_Dot = 38,
+ Suppressor = 39,
+ Suppressor002 = 40,
+ Tazer_Barrel = 41,
+ Common_bloodlust = 42,
+ Common_cardio = 43,
+ Common_dash = 44,
+ Common_health = 45,
+ Common_ice = 46,
+ Common_jump = 47,
+ Common_posion = 48,
+ Common_recycling = 49,
+ Common_regeneration = 50,
+ Common_relax = 51,
+ Common_shield = 52,
+ Common_speed = 53,
+ Common_spray = 54,
+ Common_storm = 55,
+ Common_the_hunt = 56,
+ Common_vampire = 57,
+ Common_weapon_mastery = 58,
+ Epic_battlecry = 59,
+ Epic_bloodlust = 60,
+ Epic_cardio = 61,
+ Epic_charge = 62,
+ Epic_dash = 63,
+ Epic_healing_words = 64,
+ Epic_health = 65,
+ Epic_ice = 66,
+ Epic_jump = 67,
+ Epic_lit_beats = 68,
+ Epic_poison = 69,
+ Epic_recycling = 70,
+ Epic_regeneration = 71,
+ Epic_relax = 72,
+ Epic_shield = 73,
+ Epic_small = 74,
+ Epic_speed = 75,
+ Epic_spray = 76,
+ Epic_storm_call = 77,
+ Epic_storm = 78,
+ Epic_the_hunt = 79,
+ Epic_vampire = 80,
+ Epic_weapon_mastery = 81,
+ Epic_words_of_justice = 82,
+ Legendary_battlecry = 83,
+ Legendary_bloodlust = 84,
+ Legendary_cardio = 85,
+ Legendary_charge = 86,
+ Legendary_dash = 87,
+ Legendary_healing_words = 88,
+ Legendary_health = 89,
+ Legendary_ice = 90,
+ Legendary_jump = 91,
+ Legendary_lit_beats = 92,
+ Legendary_poison = 93,
+ Legendary_recycling = 94,
+ Legendary_regeneration = 95,
+ Legendary_relax = 96,
+ Legendary_shield = 97,
+ Legendary_speed = 98,
+ Legendary_spray = 99,
+ Legendary_storm_call = 100,
+ Legendary_storm = 101,
+ Legendary_the_hunt = 102,
+ Legendary_vampire = 103,
+ Legendary_weapon_mastery = 104,
+ Legendary_words_of_justice = 105,
+ Rare_airstrike = 106,
+ Rare_bloodlust = 107,
+ Rare_cardio = 108,
+ Rare_dash = 109,
+ Rare_health = 110,
+ Rare_ice = 111,
+ Rare_insight = 112,
+ Rare_jump = 113,
+ Rare_lit_beats = 114,
+ Rare_poison = 115,
+ Rare_pull = 116,
+ Rare_recycling = 117,
+ Rare_regeneration = 118,
+ Rare_relax = 119,
+ Rare_shield = 120,
+ Rare_speed = 121,
+ Rare_spray = 122,
+ Rare_storm = 123,
+ Rare_the_hunt = 124,
+ Rare_vampire = 125,
+ Rare_weapon_mastery = 126,
+ The_assassin = 127,
+ The_mad_mechanic = 128,
+ Blessing_pickup = 129,
+ Transcention_Orb = 130,
+ Bandage = 131,
+ Med_Kit = 132,
+ Lv1_Bike_Helmet = 133,
+ Lv2_Fast_Motorcycle_Helmet = 134,
+ Lv2_Fastest_Motorcycle_Helmet = 135,
+ Lv2_Motorcycle_Helmet_Open = 136,
+ Lv2_Motorcycle_Helmet = 137,
+ Lv2_Old_School_Motorcycle_Helmet = 138,
+ Lv3_Grey_Kevlar_Helmet_with_Googles = 139,
+ Lv3_Grey_Kevlar_Helmet = 140,
+ Lv3_Kevlar_Helmet_with_Googles = 141,
+ Lv3_Kevlar_Helmet = 142,
+ Lv3_Heavy_Helmet_Open_1 = 143,
+ Lv4_Cowboy_Hat = 144,
+ Lv4_Explosiveguy_Hat = 145,
+ Lv4_Heavy_Helmet_Open = 146,
+ Lv4_Heavy_Helmet = 147,
+ Lv4_Knight_Helmet = 148,
+ Lv4_Rambo_Bandana = 149,
+ Lv4_Tricorne_Hat = 150,
+ AK_2K47 = 151,
+ AK_47 = 152,
+ AUG = 153,
+ Beam_AR = 154,
+ Burstgun = 155,
+ Famas = 156,
+ Cursed_Famas = 157,
+ H1 = 158,
+ Liberating_M16 = 159,
+ M16 = 160,
+ MP_44 = 161,
+ SCAR_H = 162,
+ Automatic_Crossbow = 163,
+ Balloon_Crossbow = 164,
+ AK_47_1 = 165,
+ AK_47_2 = 166,
+ AK_47_3 = 167,
+ BOMB = 168,
+ Crossbow = 169,
+ Taser_Crossbow = 170,
+ Firework_Crossbow = 171,
+ Gaussbow = 172,
+ Grappling_hook = 173,
+ Harpoon = 174,
+ Mini_Gun_1 = 175,
+ Liberating_Mini_Gun = 176,
+ Mega_Gun = 177,
+ Mini_Gun = 178,
+ MissileLauncher = 179,
+ MoneyStack = 180,
+ Smoke_Rocket_Launcher = 181,
+ Rocket_Launcher = 182,
+ Taser_Mini_Gun = 183,
+ The_Promise = 184,
+ Water_Gun = 185,
+ Grenade_LooksLikeNuke = 186,
+ BIG_Healing_Grenade = 187,
+ Black_Hole_Grenade = 188,
+ Bombardment_Grenade = 189,
+ Bouncy_Grenade = 190,
+ Cage_Grenade = 191,
+ Taser_Cage_Grenade = 192,
+ Cluster_Grenade = 193,
+ Cluster_Dummy_Grenade = 194,
+ Dummy_Grenade = 195,
+ Fire_Grenade = 196,
+ Grenade = 197,
+ Healing_Grenade = 198,
+ Implosion_Grenade = 199,
+ Knockback_Grenade = 200,
+ BIG_Knockback_Grenade = 201,
+ Launch_Pad_Grenade = 202,
+ MGL = 203,
+ Orbital_Tase_Grenade = 204,
+ Orbital_Strike_Grenade = 205,
+ Poof_Grenade = 206,
+ Shield_Grenade = 207,
+ Smoke_Grenade = 208,
+ Snow_Storm_Grenade = 209,
+ Splinter_Grenade = 210,
+ Taser_Splinter_Grenade = 211,
+ Stun_Grenade = 212,
+ Snow_Storm_Grenade_1 = 213,
+ Dynamite = 214,
+ Volley_Grenade = 215,
+ Wall_Grenade = 216,
+ Browning_M2 = 217,
+ M1918_BAR = 218,
+ M8 = 219,
+ MG_42 = 220,
+ Spell_Blinding_Light = 221,
+ Spell_Gravity_Field = 222,
+ Spell_Gust = 223,
+ Spell_Healing_aura = 224,
+ Spell_Speed_aura = 225,
+ Spell_Summon_rock = 226,
+ Spell_Teleport = 227,
+ Spell_Track = 228,
+ Spell_Fireball = 229,
+ Spell_Ice_bold = 230,
+ Spell_Magical_missile = 231,
+ Spell_Mirage = 232,
+ Spell_Orb_of_sight = 233,
+ Spell_Reveal = 234,
+ Spell_Shockwave = 235,
+ Spell_Summom_tree = 236,
+ Spell_Track_1 = 237,
+ Ballistic_Shield = 238,
+ Ballistic_Shields = 239,
+ Taser_Ballistic_Shield = 240,
+ Baton = 241,
+ Black_Katana = 242,
+ Boxing_Glove = 243,
+ Cleaver = 244,
+ Crowbar = 245,
+ Crusader_Sword = 246,
+ Taser_Crusader_Sword = 247,
+ Fish = 248,
+ Taser_Fish = 249,
+ Holy_Sword = 250,
+ Inflatable_Hammer = 251,
+ Jarl_Axe = 252,
+ Taser_Jarl_Axe = 253,
+ Katana = 254,
+ Knife = 255,
+ Rapier = 256,
+ Riot_Shield = 257,
+ Sabre = 258,
+ Shallow_Pot_With_Long_Handel = 259,
+ Shield = 260,
+ Shovel = 261,
+ Viking_Axe = 262,
+ Weights = 263,
+ Beretta_93R = 264,
+ Crossbow_pistol = 265,
+ Desert_Eagle = 266,
+ Flintlock = 267,
+ Taser_Flintlock = 268,
+ Auto_Revolver = 269,
+ Wind_up_pistol = 270,
+ G18c = 271,
+ Glue_Gun = 272,
+ Hand_Gun = 273,
+ HandCannon = 274,
+ Liberating_m1911 = 275,
+ Luger_P08 = 276,
+ m1911 = 277,
+ Real_Gun = 278,
+ Really_Big_Deagle = 279,
+ Revolver = 280,
+ Holy_Revolver = 281,
+ Revolver_Suicide = 282,
+ Hardballer = 283,
+ Taser = 284,
+ Beam_DMR = 285,
+ FAL = 286,
+ Garand = 287,
+ Liverating_Garand = 288,
+ M14 = 289,
+ S7 = 290,
+ Winchester_Model1886 = 291,
+ AA_12 = 292,
+ Blunderbuss = 293,
+ Sawed_off_Shotgun = 294,
+ FlyingBlunderbuss = 295,
+ Liberating_AA_12 = 296,
+ Mossberg_500 = 297,
+ Mossberg_5000 = 298,
+ Taser_Mossberg_500 = 299,
+ Rainmaker = 300,
+ The_Arnold = 301,
+ AKS_74U = 302,
+ AWPS_74U = 303,
+ Money_maker_mac = 304,
+ Glockinator = 305,
+ Liberating_M1a1_Thompson = 306,
+ M1a1_Thompson = 307,
+ Mac_10 = 308,
+ MP_40 = 309,
+ MP5_K = 310,
+ P90 = 311,
+ PPSH_41 = 312,
+ Tec_9 = 313,
+ UMP_45 = 314,
+ Vector = 315,
+ Z4 = 316,
+ AWP = 317,
+ Taser_AWP = 318,
+ Barrett = 319,
+ Beam_Sniper = 320,
+ Kar98K = 321,
+ Liberating_Barrett = 322,
+ Musket = 323,
+ Taser_Musket = 324,
+ Really_Big_Barret = 325,
+ Sniper_Shotgun = 326,
+ Double_Shot = 327,
+ VSS = 328,
+}
\ No newline at end of file
diff --git a/TABGServer/TABGClientEmuns/ItemTyps.cs b/TABGServer/TABGClientEmuns/ItemTyps.cs
new file mode 100644
index 0000000..893ec96
--- /dev/null
+++ b/TABGServer/TABGClientEmuns/ItemTyps.cs
@@ -0,0 +1,355 @@
+// 0 = Ammo
+// 1 = None
+// 2 = Armor
+// 3 = Scope
+// 4 = Muzzle
+// 5 = Utility
+// 6 = Blessing
+// 7 = Healing
+// 8 = Normal Ammo Gun
+// 9 = Small Ammo Gun
+// 10 = Bolts Ammo Gun
+// 11 = Money Ammo Gun
+// 12 = Taser Ammo Gun
+// 13 = Broken Gun
+// 14 = Big Gun Ammo
+// 15 = Rocket Ammo Gun
+// 16 = Water Ammo Gun
+// 17 = Grenade
+// 18 = SpellBook
+// 19 = Melee
+// 20 = Musket Ammo Gun
+// 21 = Shotgun Ammo Gun
+
+public enum ItemTypes : Int32
+{
+ fortyFive_ACP = 0,
+ Big_Ammo = 0,
+ Bolts = 0,
+ Money_Ammo = 0,
+ Musket_Ammo = 0,
+ No_Ammo = 0,
+ Normal_Ammo = 0,
+ Rocket_Ammo = 0,
+ Shotgun_Ammo = 0,
+ Small_Ammo = 0,
+ Soul = 1,
+ Taser_Ammo = 0,
+ Water_Ammo = 0,
+ Lv0_Jetpack2 = 2,
+ Lv1_Safety_Vest = 2,
+ Lv2_Kevlar_Vest = 2,
+ Lv3_Big_Boy_Kevlar_Vest = 2,
+ Lv4_Heavy_2 = 2,
+ Banana_2 = 2,
+ Lv5_Pickle_2 = 2,
+ Half_x3 = 3,
+ Two_x3 = 3,
+ Four_x3 = 3,
+ Eight_x3 = 3,
+ Compensator = 4,
+ Damage_Analyzer = 5,
+ Healing_Barrel = 4,
+ Health_Analyzer = 5,
+ Heavy_Barrel = 4,
+ Laser_Sight = 5,
+ Double_Barrel = 4,
+ Fast_Barrel = 4,
+ Accuracy_Barrel = 4,
+ Fire_Rate_Barrel = 4,
+ Big_Slow_Bullet_Barrel = 4,
+ Periscope_Barrel = 4,
+ Periscope = 3,
+ Recycler = 5,
+ Red_Dot = 3,
+ Suppressor = 4,
+ Suppressor002 = 4,
+ Tazer_Barrel = 4,
+ Common_bloodlust = 6,
+ Common_cardio = 6,
+ Common_dash = 6,
+ Common_health = 6,
+ Common_ice = 6,
+ Common_jump = 6,
+ Common_posion = 6,
+ Common_recycling = 6,
+ Common_regeneration = 6,
+ Common_relax = 6,
+ Common_shield = 6,
+ Common_speed = 6,
+ Common_spray = 6,
+ Common_storm = 6,
+ Common_the_hunt = 6,
+ Common_vampire = 6,
+ Common_weapon_mastery = 6,
+ Epic_battlecry = 6,
+ Epic_bloodlust = 6,
+ Epic_cardio = 6,
+ Epic_charge = 6,
+ Epic_dash = 6,
+ Epic_healing_words = 6,
+ Epic_health = 6,
+ Epic_ice = 6,
+ Epic_jump = 6,
+ Epic_lit_beats = 6,
+ Epic_poison = 6,
+ Epic_recycling = 6,
+ Epic_regeneration = 6,
+ Epic_relax = 6,
+ Epic_shield = 6,
+ Epic_small = 6,
+ Epic_speed = 6,
+ Epic_spray = 6,
+ Epic_storm_call = 6,
+ Epic_storm = 6,
+ Epic_the_hunt = 6,
+ Epic_vampire = 6,
+ Epic_weapon_mastery = 6,
+ Epic_words_of_justice = 6,
+ Legendary_battlecry = 6,
+ Legendary_bloodlust = 6,
+ Legendary_cardio = 6,
+ Legendary_charge = 6,
+ Legendary_dash = 6,
+ Legendary_healing_words = 6,
+ Legendary_health = 6,
+ Legendary_ice = 6,
+ Legendary_jump = 6,
+ Legendary_lit_beats = 6,
+ Legendary_poison = 6,
+ Legendary_recycling = 6,
+ Legendary_regeneration = 6,
+ Legendary_relax = 6,
+ Legendary_shield = 6,
+ Legendary_speed = 6,
+ Legendary_spray = 6,
+ Legendary_storm_call = 6,
+ Legendary_storm = 6,
+ Legendary_the_hunt = 6,
+ Legendary_vampire = 6,
+ Legendary_weapon_mastery = 6,
+ Legendary_words_of_justice = 6,
+ Rare_airstrike = 6,
+ Rare_bloodlust = 6,
+ Rare_cardio = 6,
+ Rare_dash = 6,
+ Rare_health = 6,
+ Rare_ice = 6,
+ Rare_insight = 6,
+ Rare_jump = 6,
+ Rare_lit_beats = 6,
+ Rare_poison = 6,
+ Rare_pull = 6,
+ Rare_recycling = 6,
+ Rare_regeneration = 6,
+ Rare_relax = 6,
+ Rare_shield = 6,
+ Rare_speed = 6,
+ Rare_spray = 6,
+ Rare_storm = 6,
+ Rare_the_hunt = 6,
+ Rare_vampire = 6,
+ Rare_weapon_mastery = 6,
+ The_assassin = 6,
+ The_mad_mechanic = 6,
+ Blessing_pickup = 1,
+ Transcention_Orb = 1,
+ Bandage = 7,
+ Med_Kit = 7,
+ Lv1_Bike_Helmet = 2,
+ Lv2_Fast_Motorcycle_Helmet = 2,
+ Lv2_Fastest_Motorcycle_Helmet = 2,
+ Lv2_Motorcycle_Helmet_Open = 2,
+ Lv2_Motorcycle_Helmet = 2,
+ Lv2_Old_School_Motorcycle_Helmet = 2,
+ Lv3_Grey_Kevlar_Helmet_with_Googles = 2,
+ Lv3_Grey_Kevlar_Helmet = 2,
+ Lv3_Kevlar_Helmet_with_Googles = 2,
+ Lv3_Kevlar_Helmet = 2,
+ Lv3_Heavy_Helmet_Open_1 = 2,
+ Lv4_Cowboy_Hat = 2,
+ Lv4_Explosiveguy_Hat = 2,
+ Lv4_Heavy_Helmet_Open = 2,
+ Lv4_Heavy_Helmet = 2,
+ Lv4_Knight_Helmet = 2,
+ Lv4_Rambo_Bandana = 2,
+ Lv4_Tricorne_Hat = 2,
+ AK_2K47 = 8,
+ AK_47 = 8,
+ AUG = 8,
+ Beam_AR = 9,
+ Burstgun = 8,
+ Famas = 8,
+ Cursed_Famas = 8,
+ H1 = 8,
+ Liberating_M16 = 8,
+ M16 = 8,
+ MP_44 = 8,
+ SCAR_H = 8,
+ Automatic_Crossbow = 10,
+ Balloon_Crossbow = 10,
+ AK_47_1 = 8,
+ AK_47_2 = 8,
+ AK_47_3 = 8,
+ BOMB = 11,
+ Crossbow = 10,
+ Taser_Crossbow = 12,
+ Firework_Crossbow = 10,
+ Gaussbow = 10,
+ Grappling_hook = 10,
+ Harpoon = 10,
+ Mini_Gun_1 = 13,
+ Liberating_Mini_Gun = 8,
+ Mega_Gun = 8,
+ Mini_Gun = 8,
+ MissileLauncher = 14,
+ MoneyStack = 11,
+ Smoke_Rocket_Launcher = 15,
+ Rocket_Launcher = 15,
+ Taser_Mini_Gun = 12,
+ The_Promise = 10,
+ Water_Gun = 16,
+ Grenade_LooksLikeNuke = 17,
+ BIG_Healing_Grenade = 17,
+ Black_Hole_Grenade = 17,
+ Bombardment_Grenade = 17,
+ Bouncy_Grenade = 17,
+ Cage_Grenade = 17,
+ Taser_Cage_Grenade = 17,
+ Cluster_Grenade = 17,
+ Cluster_Dummy_Grenade = 17,
+ Dummy_Grenade = 17,
+ Fire_Grenade = 17,
+ Grenade = 17,
+ Healing_Grenade = 17,
+ Implosion_Grenade = 17,
+ Knockback_Grenade = 17,
+ BIG_Knockback_Grenade = 17,
+ Launch_Pad_Grenade = 17,
+ MGL = 17,
+ Orbital_Tase_Grenade = 17,
+ Orbital_Strike_Grenade = 17,
+ Poof_Grenade = 17,
+ Shield_Grenade = 17,
+ Smoke_Grenade = 17,
+ Snow_Storm_Grenade = 17,
+ Splinter_Grenade = 17,
+ Taser_Splinter_Grenade = 17,
+ Stun_Grenade = 17,
+ Snow_Storm_Grenade_1 = 17,
+ Dynamite = 17,
+ Volley_Grenade = 17,
+ Wall_Grenade = 17,
+ Browning_M2 = 8,
+ M1918_BAR = 8,
+ M8 = 8,
+ MG_42 = 8,
+ Spell_Blinding_Light = 18,
+ Spell_Gravity_Field = 18,
+ Spell_Gust = 18,
+ Spell_healing_aura = 18,
+ Spell_Speed_aura = 18,
+ Spell_Summon_rock = 18,
+ Spell_Teleport = 18,
+ Spell_Track = 18,
+ Spell_Fireball = 18,
+ Spell_Ice_bold = 18,
+ Spell_Magical_missile = 18,
+ Spell_Mirage = 18,
+ Spell_Orb_of_sight = 18,
+ Spell_Reveal = 18,
+ Spell_Shockwave = 18,
+ Spell_Summom_tree = 18,
+ Spell_Track_1 = 18, // (Weird Cover)
+ Ballistic_Shield = 19,
+ Ballistic_Shields = 19,
+ Taser_Ballistic_Shield = 19,
+ Baton = 19,
+ Black_Katana = 19,
+ Boxing_Glove = 19,
+ Cleaver = 19,
+ Crowbar = 19,
+ Crusader_Sword = 19,
+ Taser_Crusader_Sword = 19,
+ Fish = 19,
+ Taser_Fish = 19,
+ Holy_Sword = 19,
+ Inflatable_Hammer = 19,
+ Jarl_Axe = 19,
+ Taser_Jarl_Axe = 19,
+ Katana = 19,
+ Knife = 19,
+ Rapier = 19,
+ Riot_Shield = 19,
+ Sabre = 19,
+ Shallow_Pot_With_Long_Handel = 19,
+ Shield = 19,
+ Shovel = 19,
+ Viking_Axe = 19,
+ Weights = 19,
+ Beretta_93R = 9,
+ Crossbow_pistol = 10,
+ Desert_Eagle = 8,
+ Flintlock = 20,
+ Taser_Flintlock = 12,
+ Auto_Revolver = 8,
+ Wind_up_pistol = 9,
+ G18c = 9,
+ Glue_Gun = 9,
+ Hand_Gun = 9,
+ HandCannon = 20,
+ Liberating_m1911 = 9,
+ Luger_P08 = 9,
+ m1911 = 9,
+ Real_Gun = 8,
+ Really_Big_Deagle = 8,
+ Revolver = 8,
+ Holy_Revolver = 8,
+ Revolver_Suicide = 8,
+ Hardballer = 9,
+ Taser = 12,
+ Beam_DMR = 9,
+ FAL = 8,
+ Garand = 14,
+ Liverating_Garand = 14,
+ M14 = 8,
+ S7 = 8,
+ Winchester_Model1886 = 14,
+ AA_12 = 21,
+ Blunderbuss = 20,
+ Sawed_off_Shotgun = 21,
+ FlyingBlunderbuss = 20,
+ Liberating_AA_12 = 21,
+ Mossberg_500 = 21,
+ Mossberg_5000 = 21,
+ Taser_Mossberg_500 = 12,
+ Rainmaker = 21,
+ The_Arnold = 21,
+ AKS_74U = 9,
+ AWPS_74U = 14,
+ Money_maker_mac = 9,
+ Glockinator = 9,
+ Liberating_M1a1_Thompson = 9,
+ M1a1_Thompson = 9,
+ Mac_10 = 9,
+ MP_40 = 9,
+ MP5_K = 9,
+ P90 = 9,
+ PPSH_41 = 9,
+ Tec_9 = 9,
+ UMP_45 = 9,
+ Vector = 9,
+ Z4 = 9,
+ AWP = 14,
+ Taser_AWP = 12,
+ Barrett = 14,
+ Beam_Sniper = 9,
+ Kar98K = 14,
+ Liberating_Barrett = 14,
+ Musket = 20,
+ Taser_Musket = 12,
+ Really_Big_Barret = 14,
+ Sniper_Shotgun = 21,
+ Double_Shot = 14,
+ VSS = 9,
+}
\ No newline at end of file
diff --git a/TABGServer/TABGClientEmuns/PacketContainerFlags.cs b/TABGServer/TABGClientEmuns/PacketContainerFlags.cs
new file mode 100644
index 0000000..f022338
--- /dev/null
+++ b/TABGServer/TABGClientEmuns/PacketContainerFlags.cs
@@ -0,0 +1,13 @@
+// PacketContainerFlags gotten from the TABG Client, on 11/26/2023, using ILspy
+[Flags]
+public enum PacketContainerFlags : byte
+{
+ Nothing = 0,
+ PlayerPosition = 1,
+ PlayerRotation = 2,
+ PlayerDirection = 4,
+ CarPosition = 8,
+ CarRotation = 0x10,
+ CarInput = 0x20,
+ All = 0x40
+}
diff --git a/TABGServer/TABGClientEmuns/ReviveState.cs b/TABGServer/TABGClientEmuns/ReviveState.cs
new file mode 100644
index 0000000..12c695e
--- /dev/null
+++ b/TABGServer/TABGClientEmuns/ReviveState.cs
@@ -0,0 +1,7 @@
+// ReviveState gotten from the TABG Client, on 11/26/2023, using ILspy
+public enum ReviveState : byte
+{
+ Start,
+ Stop,
+ Finished
+}
\ No newline at end of file
diff --git a/TABGServer/TABGClientEmuns/ServerResponse.cs b/TABGServer/TABGClientEmuns/ServerResponse.cs
new file mode 100644
index 0000000..66dfd61
--- /dev/null
+++ b/TABGServer/TABGClientEmuns/ServerResponse.cs
@@ -0,0 +1,12 @@
+// ServerResponse gotten from the TABG Client, on 11/23/2023, using ILspy
+[Flags]
+public enum ServerResponse : byte
+{
+ Error = 0,
+ Accepted = 1,
+ SquadDontFit = 2,
+ SquadIsBiggerThanTeamSize = 4,
+ DontHaveBooking = 8,
+ MatchAlreadyStarted = 0x10,
+ WrongPassword = 0x20
+}
\ No newline at end of file
diff --git a/TABGServer/TABGClientEmuns/TABGPlayerState.cs b/TABGServer/TABGClientEmuns/TABGPlayerState.cs
new file mode 100644
index 0000000..846ac2e
--- /dev/null
+++ b/TABGServer/TABGClientEmuns/TABGPlayerState.cs
@@ -0,0 +1,8 @@
+// TABGPlayerState gotten from the TABG Client, on 11/26/2023, using ILspy
+[Flags]
+public enum TABGPlayerState : byte
+{
+ None = 0,
+ Buff = 1,
+ Transcended = 2
+}
diff --git a/TABGServer/TABGClientEmuns/WeaponEffect.cs b/TABGServer/TABGClientEmuns/WeaponEffect.cs
new file mode 100644
index 0000000..a57b483
--- /dev/null
+++ b/TABGServer/TABGClientEmuns/WeaponEffect.cs
@@ -0,0 +1,14 @@
+using System;
+
+// Token: 0x02000178 RID: 376
+public enum WeaponEffect : byte
+{
+ // Token: 0x040009AE RID: 2478
+ Tase,
+ // Token: 0x040009AF RID: 2479
+ Skydiving,
+ // Token: 0x040009B0 RID: 2480
+ Misc,
+ // Token: 0x040009B1 RID: 2481
+ PlayerEffectVector3
+}
diff --git a/TABGServer/TABGCommunityServer.csproj b/TABGServer/TABGCommunityServer.csproj
new file mode 100644
index 0000000..732303a
--- /dev/null
+++ b/TABGServer/TABGCommunityServer.csproj
@@ -0,0 +1,23 @@
+
+
+
+ Exe
+ net7.0
+ enable
+ enable
+
+
+
+ true
+ true
+
+
+
+ embedded
+
+
+
+
+
+
+
diff --git a/TABGServer/Throwables.cs b/TABGServer/Throwables.cs
new file mode 100644
index 0000000..cba45bf
--- /dev/null
+++ b/TABGServer/Throwables.cs
@@ -0,0 +1,67 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TABGCommunityServer
+{
+ internal class Throwables
+ {
+ public static byte[] ClientRequestThrow(BinaryReader binaryReader)
+ {
+ // player
+ var playerIndex = binaryReader.ReadByte();
+ // not sure what this is..? maybe the throwable ID?
+ var throwableID = binaryReader.ReadInt32();
+ // count of throwables
+ var throwableCount = binaryReader.ReadInt32();
+
+ // location
+ var x = binaryReader.ReadSingle();
+ var y = binaryReader.ReadSingle();
+ var z = binaryReader.ReadSingle();
+
+ // rotation
+ var rotX = binaryReader.ReadSingle();
+ var rotY = binaryReader.ReadSingle();
+ var rotZ = binaryReader.ReadSingle();
+
+ return SendItemThrowPacket(playerIndex, throwableID, throwableCount, (x, y, z), (rotX, rotY, rotZ));
+ }
+
+ public static byte[] SendItemThrowPacket(byte thrower, int throwable, int count, (float x, float y, float z) loc, (float rotX, float rotY, float rotZ) rot)
+ {
+ byte[] sendByte = new byte[512];
+ using (MemoryStream writerMemoryStream = new MemoryStream(sendByte))
+ {
+ using (BinaryWriter binaryWriterStream = new BinaryWriter(writerMemoryStream))
+ {
+ // thrower
+ binaryWriterStream.Write(thrower);
+ // network index (?)
+ binaryWriterStream.Write((Int32)0);
+ // throwable id
+ binaryWriterStream.Write(throwable);
+ // count of throwables
+ binaryWriterStream.Write(count);
+
+ // location
+ binaryWriterStream.Write(loc.x);
+ binaryWriterStream.Write(loc.y);
+ binaryWriterStream.Write(loc.z);
+
+ // rotation
+ binaryWriterStream.Write(rot.rotX);
+ binaryWriterStream.Write(rot.rotY);
+ binaryWriterStream.Write(rot.rotZ);
+
+ // projectileSyncWatcher (not sure what this is, but it will Throw if it's true)
+ binaryWriterStream.Write(false);
+ }
+ }
+ return sendByte;
+ }
+ }
+}
diff --git a/TABGServer/UpdatePacket.cs b/TABGServer/UpdatePacket.cs
new file mode 100644
index 0000000..9237d02
--- /dev/null
+++ b/TABGServer/UpdatePacket.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TABGCommunityServer
+{
+ internal class UpdatePacket
+ {
+ public byte[] Packet { get; set; }
+ public Player BroadcastPackets { get; set; }
+
+ public UpdatePacket(byte[] packet, Player broadcastPlayer) {
+ Packet = packet;
+ BroadcastPackets = broadcastPlayer;
+ }
+ }
+}
diff --git a/TABGServer/Weapon.cs b/TABGServer/Weapon.cs
new file mode 100644
index 0000000..f70e18f
--- /dev/null
+++ b/TABGServer/Weapon.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TABGCommunityServer
+{
+ internal class Weapon
+ {
+ public int Id { get; set; }
+ public int Type { get; set; }
+ public int Count { get; set; }
+ public (float X, float Y, float Z) Location { get; set; }
+ public Weapon(int id, int localIndex, int count, (float x, float y, float z) loc)
+ {
+ Id = id;
+ Type = localIndex;
+ Count = count;
+ Location = loc;
+ }
+ }
+}
diff --git a/TABGServer/WeaponConcurrencyHandler.cs b/TABGServer/WeaponConcurrencyHandler.cs
new file mode 100644
index 0000000..63bc667
--- /dev/null
+++ b/TABGServer/WeaponConcurrencyHandler.cs
@@ -0,0 +1,29 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TABGCommunityServer
+{
+ internal class WeaponConcurrencyHandler
+ {
+ public Dictionary WeaponDB = new Dictionary();
+ public int CurrentID = 0;
+
+ public WeaponConcurrencyHandler() { }
+
+ public void SpawnWeapon(Weapon weapon)
+ {
+ //WeaponDB[weapon.Id] = weapon;
+ WeaponDB[weapon.Type] = weapon;
+
+ CurrentID++;
+ }
+
+ public void RemoveWeapon(Weapon weapon)
+ {
+ WeaponDB.Remove(weapon.Id);
+ }
+ }
+}