diff --git a/.eslintrc b/.eslintrc old mode 100755 new mode 100644 diff --git a/.stylelintrc b/.stylelintrc old mode 100755 new mode 100644 diff --git a/.tern-project b/.tern-project old mode 100755 new mode 100644 diff --git a/INSTALL.md b/INSTALL.md index 2b2e84418a16ddde31ae18a43dcab19613338e6e..40d4c8fba011a3fe8e9d0c84ae2bca5a3dfaebba 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,12 +1,9 @@ -# Running without Installation (Supports only Hard-Coded Maps) +# Running without Installation -Use these instructions to run the simulator on a single machine using one of -the hard-coded maps. +Use these instructions to run the simulator on a single machine using a +placeholder map. -1. In `js/index.js`, change `HARD_CODED_MAP` to whichever of the hard-coded - maps you want to use. By default, the code loads `AVERY_MAP`, a small map - centered on Avery Hall, University of Nebraska—Lincoln, NE, USA. Other - maps are listed in `js/data.js`. +1. In `js/index.js`, ensure that `LOAD_MAPS_FROM_SERVER` is set to `false`. 2. To run the app, open the file `index.html` in a web browser. @@ -56,18 +53,18 @@ loaded from the internet. $ sudo make install ```` - 7. Clean up the source code: + 7. Clean up the downloaded source code: ```` $ cd .. - $ rm -r spatialindex-src-1.8.5 + $ rm -rf spatialindex-src-1.8.5 $ rm spatialindex-src-1.8.5.tar.gz ```` 2. Install GDAL: ```` - $ sudo apt-get install libgdal-dev + $ sudo apt install libgdal-dev ```` 3. Install `python-slugify` and `osmnx`: @@ -78,43 +75,23 @@ loaded from the internet. 4. Reboot the VM (to guarantee that `ld` can find `libspatialindex`). -5. Configure Apache's `mod_userdir` to allow CGI scripts: +5. In `js/index.js`, ensure that `LOAD_MAPS_FROM_SERVER` is set to `true`. + Change `SERVER_MAP_CENTER_ADDRESS` to the address you want the map centered + on and `SERVER_MAP_RADIUS` to the distance the map should extend from that + center. - 1. Open the `mod_userdir` configuration file: +6. Symlink the project into your Apache user directory: - ```` - $ kdesu kwrite /etc/apache2/mod_userdir.conf - ```` - - 2. Find the `Options` directive inside the block marked - `<Directory /home/*/public_html>`. - - 3. Just after that directive, add the following lines at the same - indentation level: - - ```` - Options +ExecCGI -Includes - AddHandler cgi-script .cgi - ```` - - 4. Save and exit. - - 5. Restart Apache: - - ```` - $ sudo service apache2 restart - ```` - -6. Optionally, in `js/index.js`, change `LOAD_MAPS_FROM_SERVER` from `false` - to `true`. Change `SERVER_MAP_CENTER_ADDRESS` to the address you want the - map centered on and `SERVER_MAP_RADIUS` to the distance the map should - extend from that center. + ```` + $ ln -sT ~/git/soft260_project ~/public_html/soft260_project + ```` -7. Symlink the project into your Apache user directory: +7. Make sure that the web server has permission to see the website and to run + the server-side CGI scripts: ```` - $ mkdir -p ~/public_html - $ ln -sT ~/git/soft260_project ~/public_html/soft260_project + $ chmod 644 $(find ~/git/soft260_project -type f -not -path '*/.git/*') + $ chmod 755 $(find ~/git/soft260_project -type f -name '*.cgi') ```` 8. Make sure that the web server has permission to cache maps in a `data` @@ -125,31 +102,8 @@ loaded from the internet. $ chmod 777 ~/public_html/soft260_project/server/data ```` -9. To optionally allow access to the app from your laptop's browser (as - opposed to the VM's browser), take the following steps: - - 1. In YaST, under "Firewall" → "Allowed Services", used the "Advanced" - button to add `80` to the allowed TCP ports. Then click "Ok", "Next", and - "Finish" to apply your changes. - - 2. In VirtualBox, change the port forwarding of the OpenSUSE VM's NAT - adapter so that TCP traffic on port 8080 is forwarded to port 80 of your - OpenSUSE VM. (You can leave the IP fields blank.) - -10. To optionally allow access to the app from other computers on the same - network, open port 8080 on your laptop's firewall. Use this option with - care; while you have the port open and the VM running, anyone on the same - network will be able to see (and possibly plagiarize) your source code. - -11. To run the app, open one of the following URLs: - - * <http://localhost/~cse/soft260_project/index.html> (from within your - VM), - * <http://localhost:8080/~cse/soft260_project/index.html> (from your - laptop browser), or - * <http://IP_ADDRESS:8080/~cse/soft260_project/index.html> where - `IP_ADDRESS` is your laptop's IP address (from a browser on another - machine). +9. To run the app, open the URL + <http://localhost/~cse/soft260_project/index.html>. -12. To run the unit tests, open a similar URL, but replace `index.html` with - `unit_tests/unit_tests.html`. +10. To run the unit tests, open the URL + <http://localhost/~cse/soft260_project/unit_tests/unit_tests.html>. diff --git a/README.md b/README.md index 11d5c9c004914b3fc34d3aa7e78cd68bb2acb392..43055796c2596eb489f98fd91757dec36774919f 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,6 @@ simulation speed, etc., are all hard-coded, and passengers choose destinations at random. Routes are required to be either simple or two-vertex cycles. No statistics are collected yet. -There are a number of outstanding bugs, some of which are noted below. - The simulation is also very processor-intensive. It's a good idea to pause it or even close it when you are not using it so that it's not taking up all of your CPU. @@ -28,7 +26,8 @@ Changing the Simulation Speed Selecting Objects ----------------- -* Click on a passenger to select them. +* Click on a passenger to select them (note that passengers are only shown + when they are traveling). * Click on a bus to select it. * Click on a route to select it. If the route overlaps another route, you might have to click several times to select the right route. diff --git a/css/index.css b/css/index.css index 045392faabf6c744068b31806175a45aa63f6e16..6c8ca4a01a08529b68ec52173fdaa1c20b635e27 100644 --- a/css/index.css +++ b/css/index.css @@ -9,6 +9,7 @@ body { padding: 0; height: 100vh; background: rgba(240, 240, 240, 1.0); + font: sans-serif; } .visualization { @@ -19,6 +20,13 @@ body { background: rgba(128, 196, 128, 1.0); } +.visualization .loading { + margin: 1em; + color: rgba(255, 255, 255, 1.0); + font-size: 36pt; + text-align: center; +} + .visualization svg { position: absolute; width: 100%; diff --git a/index.html b/index.html index cf7d809fa9b247a6924578368355a4ab8e761435..5a5171b7bce26cf808e40a3df5ee0d3c2dd72dd4 100644 --- a/index.html +++ b/index.html @@ -4,14 +4,17 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> - <link rel="stylesheet" type="text/css" href="libraries/jquery-ui/jquery-ui.min.css"> - <link rel="stylesheet" type="text/css" href="libraries/jquery-svg/jquery.svg.css"> - <link rel="stylesheet" type="text/css" href="css/index.css"> - <title>Public Transit Simulator (Fall 2018 Version)</title> + <link rel="stylesheet" href="libraries/normalize/normalize.css"> + <link rel="stylesheet" href="libraries/jquery-ui/jquery-ui.min.css"> + <link rel="stylesheet" href="libraries/jquery-svg/jquery.svg.css"> + <link rel="stylesheet" href="css/index.css"> + <title>Public Transit Simulator (Fall 2019 Version)</title> </head> <body> - <div class="visualization" id="visualization"></div> + <div class="visualization" id="visualization"> + <div class="loading">[Loading…]</div> + </div> <div class="controls" id="controls"> <div class="control-group" id="selection"></div> <div class="control-group" id="actions"></div> @@ -30,12 +33,11 @@ <script src="js/undirected_graph.js"></script> <script src="js/transit.js"></script> <script src="js/patching.js"></script> - <script src="js/heat_map.js"></script> <script src="js/positioned_graph.js"></script> + <script src="js/pseudoplanarity.js"></script> <script src="js/throttled_simulation.js"></script> <script src="js/visualization_style.js"></script> <script src="js/visualization.js"></script> - <script src="js/data.js"></script> <script src="js/loading.js"></script> <script src="js/index.js"></script> </body> diff --git a/js/data.js b/js/data.js deleted file mode 100644 index 96f442b56de7c93f93fe535475a143f98537dc56..0000000000000000000000000000000000000000 --- a/js/data.js +++ /dev/null @@ -1,7 +0,0 @@ -/* exported AVERY_MAP */ - -const AVERY_MAP = JSON.parse('{"vertices": [{"name": 4719820416, "position": [-536.3963302897901, -146.67568806814302]}, {"name": 2585900459, "position": [-843.8463302837818, 553.9243119301318]}, {"name": 4719864580, "position": [142.60366971541316, -668.6756880682765]}, {"name": 4719864582, "position": [140.85366971272606, -778.8256880694178]}, {"name": 2568600193, "position": [428.1036697122431, -311.52568806902536]}, {"name": 4719864584, "position": [-85.89633028321941, -722.0256880700049]}, {"name": 2585900332, "position": [-869.3463302833493, 553.1243119314411]}, {"name": 2585936653, "position": [-502.24633028506105, 726.7743119321324]}, {"name": 2568599384, "position": [67.75366971112362, -4.675688067834471]}, {"name": 844923267, "position": [476.30366971418425, -348.97568806968593]}, {"name": 2585900564, "position": [-709.7463302869755, 601.3243119298295]}, {"name": 4719907357, "position": [521.8036697129946, -933.4256880713099]}, {"name": 2585900320, "position": [-617.2463302860365, 520.6243119317833]}, {"name": 2585900329, "position": [-804.9963302880769, 555.1243119299443]}, {"name": 2568600199, "position": [506.70366971417025, -257.225688070406]}, {"name": 2568600108, "position": [790.0536697107441, -540.3756880681954]}, {"name": 2585900335, "position": [-1013.7963302838671, 553.0743119308568]}, {"name": 2568599344, "position": [649.8036697166754, -1.4256880689345053]}, {"name": 4719820337, "position": [-557.3963302865081, 1.174311929474925]}, {"name": 2568600116, "position": [612.3536697160148, -540.8756880704857]}, {"name": 1667939637, "position": [-10.59633028432927, -669.325688068767]}, {"name": 2568600119, "position": [713.5536697120415, -588.4256880683836]}, {"name": 2568600122, "position": [713.6036697161785, -540.6256880711169]}, {"name": 2568600125, "position": [712.2536697110604, -502.3256880711813]}, {"name": 2585900350, "position": [-295.84633028889584, 476.52431193156986]}, {"name": 2585900608, "position": [-676.9463302873646, 601.7243119309512]}, {"name": 2585900353, "position": [-552.6463302842899, 480.8743119291137]}, {"name": 2585900611, "position": [-773.1463302889097, 630.8243119299561]}, {"name": 2585900356, "position": [-550.9463302857398, 642.7743119310492]}, {"name": 2568599419, "position": [313.6536697141423, 273.1243119313831]}, {"name": 2585900614, "position": [-890.4463302883414, 632.2243119321058]}, {"name": 2585900359, "position": [-965.2463302884939, 553.0743119308568]}, {"name": 2585900362, "position": [-955.896330289363, -5.225688070709111]}, {"name": 2585900364, "position": [-963.9963302845445, 477.9743119307511]}, {"name": 2568600143, "position": [792.8536697150435, -408.9756880709672]}, {"name": 2568599376, "position": [-19.346330283553925, 441.3743119293656]}, {"name": 4719820419, "position": [-367.24633028484277, -171.2756880678512]}, {"name": 4719495256, "position": [-280.54633028773424, 477.1743119320604]}, {"name": 4719495257, "position": [-281.09633028350345, 560.1243119315313]}, {"name": 2585900379, "position": [-963.3463302876066, 439.474311932031]}, {"name": 2585900602, "position": [-698.9463302886634, 595.1743119290143]}, {"name": 3380364844, "position": [-1124.2963302890985, 726.3243119304263]}, {"name": 2568600161, "position": [676.0536697143493, -451.0756880691247]}, {"name": 2585936649, "position": [-21.346330285609838, 685.9243119308189]}, {"name": 2568600167, "position": [613.4036697105216, -403.3756880694739]}, {"name": 2568600170, "position": [614.0536697145649, -321.1256880710778]}, {"name": 2585900397, "position": [-1307.2463302847837, 699.2743119305089]}, {"name": 2585900605, "position": [-551.3963302874458, 603.3243119318854]}, {"name": 2585900402, "position": [-1257.5963302836612, 613.5743119308756]}, {"name": 2568600183, "position": [35.15366971384992, -193.42568807090288]}, {"name": 2568600212, "position": [569.6036697102613, -309.17568806998474]}, {"name": 2568600187, "position": [614.1536697157335, -308.4756880689099]}, {"name": 2568600189, "position": [376.7536697125706, -184.62568807109392]}, {"name": 2585900437, "position": [-1248.1963302874988, 726.6743119309638]}, {"name": 2568624512, "position": [-122.24633028523613, -935.975688069135]}, {"name": 2568624513, "position": [-11.346330289541129, -544.9756880686607]}, {"name": 2568624514, "position": [-107.59633028811777, -545.1256880704136]}, {"name": 2568624515, "position": [-11.0463302860353, -936.5256880684569]}, {"name": 2568624516, "position": [-11.0463302860353, -779.9756880686459]}, {"name": 2568624519, "position": [713.9536697167159, -932.275688068529]}, {"name": 2568624520, "position": [711.2536697135852, -842.5756880683366]}, {"name": 2568624521, "position": [-18.29633028904709, -211.175688068721]}, {"name": 2568624522, "position": [-153.6463302898028, -213.1756880707769]}, {"name": 2568624523, "position": [-18.04633028967828, -190.87568806952504]}, {"name": 2568624525, "position": [-153.09633028692815, -111.6756880712444]}, {"name": 2568624526, "position": [-16.99633028806602, -110.72568807080074]}, {"name": 2568600173, "position": [794.7536697159308, -320.1256880700498]}, {"name": 2585900432, "position": [-864.646330285268, 725.6243119293515]}, {"name": 2568624529, "position": [-114.79633028699254, -212.57568807087068]}, {"name": 2568624530, "position": [-114.89633028816115, -111.42568806832287]}, {"name": 2568624532, "position": [-117.54633028715489, -5.125688069540502]}, {"name": 2568624533, "position": [-39.69633028333419, -211.47568806867412]}, {"name": 2568624534, "position": [-50.44633028461476, -110.97568807016955]}, {"name": 2568624535, "position": [-117.04633028841727, -23.425688070233264]}, {"name": 2568624537, "position": [-184.596330285558, 1.9743119317183755]}, {"name": 2568624538, "position": [-59.846330287882665, -5.1756880701248065]}, {"name": 2703708315, "position": [799.6536697163492, -87.27568807032071]}, {"name": 2568599452, "position": [459.25366971033554, 444.574311931234]}, {"name": 2703708317, "position": [615.8036697101466, -87.32568807090502]}, {"name": 2568624543, "position": [-184.6963302867266, 206.5243119311333]}, {"name": 2568624544, "position": [-185.94633028357066, 313.2743119316217]}, {"name": 2568624545, "position": [-184.596330285558, 361.2743119312256]}, {"name": 2568624550, "position": [-98.7463302877245, 438.37431192983445]}, {"name": 2568624551, "position": [235.50366971392123, 324.12431193051816]}, {"name": 2568599372, "position": [11.403669716969489, 441.5743119317028]}, {"name": 2568624555, "position": [215.25366971530957, 442.9243119297155]}, {"name": 2568624556, "position": [213.8536697131599, 523.8243119300989]}, {"name": 2568624541, "position": [-183.24633028754533, 120.7243119303314]}, {"name": 2568600249, "position": [687.8536697101367, -87.32568807090502]}, {"name": 2568599455, "position": [762.4036697109204, -0.7756880684439693]}, {"name": 2568600140, "position": [736.4036697126153, -451.5756880678623]}, {"name": 4719909591, "position": [-10.796330286666489, -721.6756880694675]}, {"name": 2568600033, "position": [789.4036697138063, -587.375688070324]}, {"name": 2568600035, "position": [801.4536697160679, -0.5256880690751586]}, {"name": 4719494628, "position": [-930.1963302874583, -4.825688069587386]}, {"name": 2568600235, "position": [714.5536697166222, -87.32568807090502]}, {"name": 2568600038, "position": [612.4036697130464, -589.775688069949]}, {"name": 2568599340, "position": [-15.696330287084947, -5.1756880701248065]}, {"name": 2568600041, "position": [616.3536697130212, -1.6256880712717248]}, {"name": 2568600044, "position": [797.7536697154619, -179.62568806950685]}, {"name": 4719494637, "position": [-482.3463302869868, 469.874311932017]}, {"name": 2568600047, "position": [615.1536697132087, -180.6256880705348]}, {"name": 2585936626, "position": [-680.096330285096, 726.2243119292577]}, {"name": 4719865979, "position": [-209.5963302863879, -325.4756880686216]}, {"name": 2568599540, "position": [923.3036697153807, 448.02431192891845]}, {"name": 2568599542, "position": [940.6536697156298, 159.57431192958893]}, {"name": 2568600191, "position": [477.9036697115657, -310.7256880703346]}, {"name": 2568600060, "position": [843.0536697119351, -87.27568807032071]}, {"name": 2568600063, "position": [579.3036697099296, -87.32568807090502]}], "edges": [{"source": 4719495256, "destination": 4719495257, "path": [[-280.54633028773424, 477.1743119320604], [-281.09633028350345, 560.1243119315313]], "length": 18.44778906296424}, {"source": 4719495256, "destination": 2585900350, "path": [[-280.54633028773424, 477.1743119320604], [-295.84633028889584, 476.52431193156986]], "length": 2.580777421390384}, {"source": 4719495256, "destination": 2568624550, "path": [[-280.54633028773424, 477.1743119320604], [-260.49633028435437, 477.9743119307511], [-206.84633028622557, 471.9243119311045], [-177.34633028965163, 457.67431193155517], [-142.49633028384778, 445.52431193167763], [-98.7463302877245, 438.37431192983445]], "length": 32.38767625205762}, {"source": 4719495257, "destination": 4719495256, "path": [[-281.09633028350345, 560.1243119315313], [-280.54633028773424, 477.1743119320604]], "length": 18.44778906296424}, {"source": 4719865979, "destination": 4719820416, "path": [[-209.5963302863879, -325.4756880686216], [-215.29633028904982, -326.77568806960267], [-268.1463302849352, -329.7256880685495], [-309.39633028737035, -322.97568806782806], [-361.4463302881177, -306.92568806856], [-401.946330285341, -276.87568806911145], [-469.44633028545013, -221.42568807126395], [-513.7963302885851, -175.32568806899462], [-536.3963302897901, -146.67568806814302]], "length": 72.89897571148174}, {"source": 4719865979, "destination": 2568624514, "path": [[-209.5963302863879, -325.4756880686216], [-202.59633028985036, -338.77568807128], [-107.59633028811777, -545.1256880704136]], "length": 51.77844490571554}, {"source": 4719865979, "destination": 2568600183, "path": [[-209.5963302863879, -325.4756880686216], [-176.39633028920798, -317.7256880704249], [-146.6963302831914, -306.075688069285], [-108.89633028909884, -277.7756880689708], [35.15366971384992, -193.42568807090288]], "length": 51.07942842283859}, {"source": 2703708315, "destination": 2568600060, "path": [[799.6536697163492, -87.27568807032071], [843.0536697119351, -87.27568807032071]], "length": 7.30509489441747}, {"source": 2703708315, "destination": 2568600035, "path": [[799.6536697163492, -87.27568807032071], [801.4536697160679, -0.5256880690751586]], "length": 19.294794552895787}, {"source": 2703708315, "destination": 2568600044, "path": [[799.6536697163492, -87.27568807032071], [797.7536697154619, -179.62568806950685]], "length": 20.540087566343985}, {"source": 2703708315, "destination": 2568600235, "path": [[799.6536697163492, -87.27568807032071], [714.5536697166222, -87.32568807090502]], "length": 14.322355859226722}, {"source": 2703708317, "destination": 2568600041, "path": [[615.8036697101466, -87.32568807090502], [616.3536697130212, -1.6256880712717248]], "length": 19.05886433211187}, {"source": 2703708317, "destination": 2568600063, "path": [[615.8036697101466, -87.32568807090502], [579.3036697099296, -87.32568807090502]], "length": 6.142256425711491}, {"source": 2703708317, "destination": 2568600249, "path": [[615.8036697101466, -87.32568807090502], [687.8536697101367, -87.32568807090502]], "length": 12.125748612085177}, {"source": 2703708317, "destination": 2568600047, "path": [[615.8036697101466, -87.32568807090502], [615.1536697132087, -180.6256880705348]], "length": 20.74898517608282}, {"source": 2585900605, "destination": 2585900608, "path": [[-551.3963302874458, 603.3243119318854], [-676.9463302873646, 601.7243119309512]], "length": 21.133318073696366}, {"source": 2585900605, "destination": 2585900353, "path": [[-551.3963302874458, 603.3243119318854], [-552.6463302842899, 480.8743119291137]], "length": 27.232572472074107}, {"source": 2585900605, "destination": 2585900356, "path": [[-551.3963302874458, 603.3243119318854], [-550.9463302857398, 642.7743119310492]], "length": 8.774211825753742}, {"source": 844923267, "destination": 2568600191, "path": [[476.30366971418425, -348.97568806968593], [477.9036697115657, -310.7256880703346]], "length": 8.511426090049174}, {"source": 2568624530, "destination": 2568624533, "path": [[-114.89633028816115, -111.42568806832287], [-39.69633028333419, -211.47568806867412]], "length": 25.59773333389087}, {"source": 2568624530, "destination": 2568624529, "path": [[-114.89633028816115, -111.42568806832287], [-114.79633028699254, -212.57568807087068]], "length": 22.494689701813765}, {"source": 2568624530, "destination": 2568624525, "path": [[-114.89633028816115, -111.42568806832287], [-153.09633028692815, -111.6756880712444]], "length": 6.42902858172305}, {"source": 2568624530, "destination": 2568624534, "path": [[-114.89633028816115, -111.42568806832287], [-50.44633028461476, -110.97568807016955]], "length": 10.847593496109926}, {"source": 2568624530, "destination": 2568624535, "path": [[-114.89633028816115, -111.42568806832287], [-117.04633028841727, -23.425688070233264]], "length": 19.57328263452477}, {"source": 2568624512, "destination": 4719864584, "path": [[-122.24633028523613, -935.975688069135], [-85.89633028321941, -722.0256880700049]], "length": 47.97218051138056}, {"source": 2568624512, "destination": 2568624515, "path": [[-122.24633028523613, -935.975688069135], [-11.0463302860353, -936.5256880684569]], "length": 18.714564681058825}, {"source": 2568624513, "destination": 2568624521, "path": [[-11.346330289541129, -544.9756880686607], [-18.29633028904709, -211.175688068721]], "length": 74.24308912167396}, {"source": 2568624513, "destination": 2568624514, "path": [[-11.346330289541129, -544.9756880686607], [-107.59633028811777, -545.1256880704136]], "length": 16.19894491357993}, {"source": 2568624513, "destination": 2568600116, "path": [[-11.346330289541129, -544.9756880686607], [612.3536697160148, -540.8756880704857]], "length": 104.97073016077182}, {"source": 2568624513, "destination": 1667939637, "path": [[-11.346330289541129, -544.9756880686607], [-10.59633028432927, -669.325688068767]], "length": 27.654578927261678}, {"source": 2568624514, "destination": 4719864584, "path": [[-107.59633028811777, -545.1256880704136], [-85.89633028321941, -722.0256880700049]], "length": 39.51002368761264}, {"source": 2568624514, "destination": 2568624513, "path": [[-107.59633028811777, -545.1256880704136], [-11.346330289541129, -544.9756880686607]], "length": 16.19894491357993}, {"source": 2568624514, "destination": 4719865979, "path": [[-107.59633028811777, -545.1256880704136], [-202.59633028985036, -338.77568807128], [-209.5963302863879, -325.4756880686216]], "length": 51.77844490571554}, {"source": 2568624515, "destination": 2568624512, "path": [[-11.0463302860353, -936.5256880684569], [-122.24633028523613, -935.975688069135]], "length": 18.714564681058825}, {"source": 2568624515, "destination": 2568624516, "path": [[-11.0463302860353, -936.5256880684569], [-11.0463302860353, -779.9756880686459]], "length": 34.815037686922956}, {"source": 2568624515, "destination": 4719907357, "path": [[-11.0463302860353, -936.5256880684569], [521.8036697129946, -933.4256880713099]], "length": 89.6785136478145}, {"source": 2568624516, "destination": 2568624515, "path": [[-11.0463302860353, -779.9756880686459], [-11.0463302860353, -936.5256880684569]], "length": 34.815037686922956}, {"source": 2568624516, "destination": 4719909591, "path": [[-11.0463302860353, -779.9756880686459], [-10.796330286666489, -721.6756880694675]], "length": 12.965552698888807}, {"source": 2568624519, "destination": 2568624520, "path": [[713.9536697167159, -932.275688068529], [711.2536697135852, -842.5756880683366]], "length": 19.95361213361137}, {"source": 2568624519, "destination": 4719907357, "path": [[713.9536697167159, -932.275688068529], [521.8036697129946, -933.4256880713099]], "length": 32.338859984215986}, {"source": 2568624520, "destination": 2568600119, "path": [[711.2536697135852, -842.5756880683366], [713.5536697120415, -588.4256880683836]], "length": 56.521912546255265}, {"source": 2568624520, "destination": 4719864582, "path": [[711.2536697135852, -842.5756880683366], [229.2536697154901, -844.7256880685927], [140.0536697104826, -845.1256880697144], [140.85366971272606, -778.8256880694178]], "length": 110.87634682546826}, {"source": 2568624520, "destination": 2568624519, "path": [[711.2536697135852, -842.5756880683366], [713.9536697167159, -932.275688068529]], "length": 19.95361213361137}, {"source": 2568624521, "destination": 2568624513, "path": [[-18.29633028904709, -211.175688068721], [-11.346330289541129, -544.9756880686607]], "length": 74.24308912167396}, {"source": 2568624521, "destination": 2568624523, "path": [[-18.29633028904709, -211.175688068721], [-18.04633028967828, -190.87568806952504]], "length": 4.514177299560981}, {"source": 2568624521, "destination": 2568624533, "path": [[-18.29633028904709, -211.175688068721], [-39.69633028333419, -211.47568806867412]], "length": 3.6025463521656906}, {"source": 2568624522, "destination": 2568624529, "path": [[-153.6463302898028, -213.1756880707769], [-114.79633028699254, -212.57568807087068]], "length": 6.539528543443746}, {"source": 2568624523, "destination": 2568624521, "path": [[-18.04633028967828, -190.87568806952504], [-18.29633028904709, -211.175688068721]], "length": 4.514177299560981}, {"source": 2568624523, "destination": 2568624526, "path": [[-18.04633028967828, -190.87568806952504], [-16.99633028806602, -110.72568807080074]], "length": 17.82512283927249}, {"source": 2568624523, "destination": 2568600183, "path": [[-18.04633028967828, -190.87568806952504], [35.15366971384992, -193.42568807090288]], "length": 8.971272754378425}, {"source": 2568624525, "destination": 2568624530, "path": [[-153.09633028692815, -111.6756880712444], [-114.89633028816115, -111.42568806832287]], "length": 6.42902858172305}, {"source": 2568624526, "destination": 2568624523, "path": [[-16.99633028806602, -110.72568807080074], [-18.04633028967828, -190.87568806952504]], "length": 17.82512283927249}, {"source": 2568624526, "destination": 2568599340, "path": [[-16.99633028806602, -110.72568807080074], [-16.496330289328398, -68.67568806967483], [-15.696330287084947, -5.1756880701248065]], "length": 23.47440668883975}, {"source": 2568624526, "destination": 2568624534, "path": [[-16.99633028806602, -110.72568807080074], [-50.44633028461476, -110.97568807016955]], "length": 5.629278879449782}, {"source": 2568624529, "destination": 2568624522, "path": [[-114.79633028699254, -212.57568807087068], [-153.6463302898028, -213.1756880707769]], "length": 6.539528543443746}, {"source": 2568624529, "destination": 2568624533, "path": [[-114.79633028699254, -212.57568807087068], [-39.69633028333419, -211.47568806867412]], "length": 12.641749856139285}, {"source": 2568624529, "destination": 2568624530, "path": [[-114.79633028699254, -212.57568807087068], [-114.89633028816115, -111.42568806832287]], "length": 22.494689701813765}, {"source": 2568624532, "destination": 2568624537, "path": [[-117.54633028715489, -5.125688069540502], [-152.3963302858533, -4.125688068512545], [-184.596330285558, 1.9743119317183755]], "length": 11.456625851373502}, {"source": 2568624532, "destination": 2568624538, "path": [[-117.54633028715489, -5.125688069540502], [-59.846330287882665, -5.1756880701248065]], "length": 9.711296116468318}, {"source": 2568624532, "destination": 2568624535, "path": [[-117.54633028715489, -5.125688069540502], [-117.04633028841727, -23.425688070233264]], "length": 4.070062561238178}, {"source": 2568624533, "destination": 2568624529, "path": [[-39.69633028333419, -211.47568806867412], [-114.79633028699254, -212.57568807087068]], "length": 12.641749856139285}, {"source": 2568624533, "destination": 2568624530, "path": [[-39.69633028333419, -211.47568806867412], [-114.89633028816115, -111.42568806832287]], "length": 25.59773333389087}, {"source": 2568624533, "destination": 2568624521, "path": [[-39.69633028333419, -211.47568806867412], [-18.29633028904709, -211.175688068721]], "length": 3.6025463521656906}, {"source": 2568624534, "destination": 2568624530, "path": [[-50.44633028461476, -110.97568807016955], [-114.89633028816115, -111.42568806832287]], "length": 10.847593496109926}, {"source": 2568624534, "destination": 2568624526, "path": [[-50.44633028461476, -110.97568807016955], [-16.99633028806602, -110.72568807080074]], "length": 5.629278879449782}, {"source": 2568624534, "destination": 2568624535, "path": [[-50.44633028461476, -110.97568807016955], [-117.04633028841727, -23.425688070233264]], "length": 22.46622478814499}, {"source": 2568624535, "destination": 2568624530, "path": [[-117.04633028841727, -23.425688070233264], [-114.89633028816115, -111.42568806832287]], "length": 19.57328263452477}, {"source": 2568624535, "destination": 2568624532, "path": [[-117.04633028841727, -23.425688070233264], [-117.54633028715489, -5.125688069540502]], "length": 4.070062561238178}, {"source": 2568624535, "destination": 2568624534, "path": [[-117.04633028841727, -23.425688070233264], [-50.44633028461476, -110.97568807016955]], "length": 22.46622478814499}, {"source": 2568624537, "destination": 4719820337, "path": [[-184.596330285558, 1.9743119317183755], [-206.69633028802537, 6.774311930968224], [-557.3963302865081, 1.174311929474925]], "length": 62.906088154631654}, {"source": 2568624537, "destination": 2568624532, "path": [[-184.596330285558, 1.9743119317183755], [-152.3963302858533, -4.125688068512545], [-117.54633028715489, -5.125688069540502]], "length": 11.456625851373502}, {"source": 2568624537, "destination": 2568624541, "path": [[-184.596330285558, 1.9743119317183755], [-183.24633028754533, 120.7243119303314]], "length": 26.409801853934226}, {"source": 2568624538, "destination": 2568624532, "path": [[-59.846330287882665, -5.1756880701248065], [-117.54633028715489, -5.125688069540502]], "length": 9.711296116468318}, {"source": 2568624538, "destination": 2568599340, "path": [[-59.846330287882665, -5.1756880701248065], [-15.696330287084947, -5.1756880701248065]], "length": 7.430479281343225}, {"source": 2568624538, "destination": 2568624541, "path": [[-59.846330287882665, -5.1756880701248065], [-110.79633028998614, 42.5743119301103], [-161.79633028912122, 90.2743119297611], [-183.24633028754533, 120.7243119303314]], "length": 34.96848677358353}, {"source": 2568624543, "destination": 2568624541, "path": [[-184.6963302867266, 206.5243119311333], [-183.24633028754533, 160.32431193124808], [-183.24633028754533, 120.7243119303314]], "length": 19.083607062527747}, {"source": 2568624544, "destination": 2568624545, "path": [[-185.94633028357066, 313.2743119316217], [-184.596330285558, 361.2743119312256]], "length": 10.6771766398043}, {"source": 2568624545, "destination": 2568624544, "path": [[-184.596330285558, 361.2743119312256], [-185.94633028357066, 313.2743119316217]], "length": 10.6771766398043}, {"source": 2568624545, "destination": 2568624550, "path": [[-184.596330285558, 361.2743119312256], [-176.54633028740818, 390.67431193018365], [-168.49633028925837, 401.87431192961753], [-152.3963302858533, 417.07431192961053], [-132.29633028544185, 429.2743119300724], [-98.7463302877245, 438.37431192983445]], "length": 24.18091754559427}, {"source": 2568624545, "destination": 2585900350, "path": [[-184.596330285558, 361.2743119312256], [-196.096330284945, 400.8743119321423], [-209.54633028935632, 419.12431192869803], [-227.64633028771186, 440.42431192892195], [-254.44633028826047, 460.7243119316706], [-295.84633028889584, 476.52431193156986]], "length": 33.480731281130886}, {"source": 2568624550, "destination": 2568599376, "path": [[-98.7463302877245, 438.37431192983445], [-19.346330283553925, 441.3743119293656]], "length": 13.37949803492484}, {"source": 2568624550, "destination": 4719495256, "path": [[-98.7463302877245, 438.37431192983445], [-142.49633028384778, 445.52431193167763], [-177.34633028965163, 457.67431193155517], [-206.84633028622557, 471.9243119311045], [-260.49633028435437, 477.9743119307511], [-280.54633028773424, 477.1743119320604]], "length": 32.38767625205762}, {"source": 2568624550, "destination": 2568624545, "path": [[-98.7463302877245, 438.37431192983445], [-132.29633028544185, 429.2743119300724], [-152.3963302858533, 417.07431192961053], [-168.49633028925837, 401.87431192961753], [-176.54633028740818, 390.67431193018365], [-184.596330285558, 361.2743119312256]], "length": 24.180917545594273}, {"source": 2568624551, "destination": 2568599419, "path": [[235.50366971392123, 324.12431193051816], [313.6536697141423, 273.1243119313831]], "length": 17.367217157504484}, {"source": 2568624551, "destination": 2568599372, "path": [[235.50366971392123, 324.12431193051816], [220.65366971446565, 333.82431193018647], [140.15366971165122, 374.4243119321311], [75.80366971637886, 400.7743119309737], [11.403669716969489, 441.5743119317028]], "length": 46.0327394188412}, {"source": 2568624551, "destination": 2568624555, "path": [[235.50366971392123, 324.12431193051816], [219.303669716453, 360.47431192898216], [216.60366971332223, 384.87431192990584], [213.90366971019148, 417.42431193014795], [215.25366971530957, 442.9243119297155]], "length": 26.906903862163794}, {"source": 2568624555, "destination": 2568599372, "path": [[215.25366971530957, 442.9243119297155], [11.403669716969489, 441.5743119317028]], "length": 34.30980174994407}, {"source": 2568624555, "destination": 2568624556, "path": [[215.25366971530957, 442.9243119297155], [213.8536697131599, 523.8243119300989]], "length": 17.992706483091453}, {"source": 2568624555, "destination": 2568599452, "path": [[215.25366971530957, 442.9243119297155], [459.25366971033554, 444.574311931234]], "length": 41.06722885778385}, {"source": 2568624555, "destination": 2568624551, "path": [[215.25366971530957, 442.9243119297155], [213.90366971019148, 417.42431193014795], [216.60366971332223, 384.87431192990584], [219.303669716453, 360.47431192898216], [235.50366971392123, 324.12431193051816]], "length": 26.906903862163794}, {"source": 2585936626, "destination": 2585900432, "path": [[-680.096330285096, 726.2243119292577], [-864.646330285268, 725.6243119293515]], "length": 31.060720425207073}, {"source": 2585936626, "destination": 2585936653, "path": [[-680.096330285096, 726.2243119292577], [-502.24633028506105, 726.7743119321324]], "length": 29.932827087212946}, {"source": 2568624541, "destination": 2568624537, "path": [[-183.24633028754533, 120.7243119303314], [-184.596330285558, 1.9743119317183755]], "length": 26.409801853934226}, {"source": 2568624541, "destination": 2568624538, "path": [[-183.24633028754533, 120.7243119303314], [-161.79633028912122, 90.2743119297611], [-110.79633028998614, 42.5743119301103], [-59.846330287882665, -5.1756880701248065]], "length": 34.96848677358353}, {"source": 2568624541, "destination": 2568624543, "path": [[-183.24633028754533, 120.7243119303314], [-183.24633028754533, 160.32431193124808], [-184.6963302867266, 206.5243119311333]], "length": 19.083607062527747}, {"source": 2568600033, "destination": 2568600108, "path": [[789.4036697138063, -587.375688070324], [790.0536697107441, -540.3756880681954]], "length": 10.452817884329411}, {"source": 2568600035, "destination": 2703708315, "path": [[801.4536697160679, -0.5256880690751586], [799.6536697163492, -87.27568807032071]], "length": 19.294794552895787}, {"source": 2568600035, "destination": 2568599455, "path": [[801.4536697160679, -0.5256880690751586], [762.4036697109204, -0.7756880684439693]], "length": 6.5718362863740065}, {"source": 2568600038, "destination": 2568600116, "path": [[612.4036697130464, -589.775688069949], [612.3536697160148, -540.8756880704857]], "length": 10.874562635525944}, {"source": 2568600038, "destination": 2568600119, "path": [[612.4036697130464, -589.775688069949], [713.5536697120415, -588.4256880683836]], "length": 17.025763901937186}, {"source": 2568600041, "destination": 2568599344, "path": [[616.3536697130212, -1.6256880712717248], [649.8036697166754, -1.4256880689345053]], "length": 5.629278879449782}, {"source": 2568600041, "destination": 2568599384, "path": [[616.3536697130212, -1.6256880712717248], [67.75366971112362, -4.675688067834471]], "length": 92.33162625212474}, {"source": 2568600041, "destination": 2703708317, "path": [[616.3536697130212, -1.6256880712717248], [615.8036697101466, -87.32568807090502]], "length": 19.05886433211187}, {"source": 2568600047, "destination": 2568600189, "path": [[615.1536697132087, -180.6256880705348], [503.9036697169763, -182.4756880708378], [376.7536697125706, -184.62568807109392]], "length": 40.13232274459213}, {"source": 2568600047, "destination": 2568600187, "path": [[615.1536697132087, -180.6256880705348], [614.1536697157335, -308.4756880689099]], "length": 28.43312228442653}, {"source": 2568600047, "destination": 2568600044, "path": [[615.1536697132087, -180.6256880705348], [797.7536697154619, -179.62568806950685]], "length": 30.7321111954749}, {"source": 2568600047, "destination": 2703708317, "path": [[615.1536697132087, -180.6256880705348], [615.8036697101466, -87.32568807090502]], "length": 20.74898517608282}, {"source": 2568600047, "destination": 2568600199, "path": [[615.1536697132087, -180.6256880705348], [583.9536697109793, -190.97568807069365], [565.5036697120863, -200.32568806982454], [552.5036697164865, -209.62568806837112], [545.0036697141059, -216.32568806850827], [540.203669714856, -222.02568807117018], [506.70366971417025, -257.225688070406]], "length": 25.585649020723178}, {"source": 2568600060, "destination": 2703708315, "path": [[843.0536697119351, -87.27568807032071], [799.6536697163492, -87.27568807032071]], "length": 7.30509489441747}, {"source": 2568600063, "destination": 2703708317, "path": [[579.3036697099296, -87.32568807090502], [615.8036697101466, -87.32568807090502]], "length": 6.142256425711491}, {"source": 2568624556, "destination": 2568624555, "path": [[213.8536697131599, 523.8243119300989], [215.25366971530957, 442.9243119297155]], "length": 17.992706483091453}, {"source": 4719907357, "destination": 2568624515, "path": [[521.8036697129946, -933.4256880713099], [-11.0463302860353, -936.5256880684569]], "length": 89.6785136478145}, {"source": 4719907357, "destination": 2568624519, "path": [[521.8036697129946, -933.4256880713099], [713.9536697167159, -932.275688068529]], "length": 32.338859984215986}, {"source": 2568600108, "destination": 2568600033, "path": [[790.0536697107441, -540.3756880681954], [789.4036697138063, -587.375688070324]], "length": 10.452817884329411}, {"source": 2568600108, "destination": 2568600122, "path": [[790.0536697107441, -540.3756880681954], [713.6036697161785, -540.6256880711169]], "length": 12.866465703090917}, {"source": 2568600108, "destination": 2568600143, "path": [[790.0536697107441, -540.3756880681954], [792.8536697150435, -408.9756880709672]], "length": 29.225776780673176}, {"source": 4719864584, "destination": 2568624512, "path": [[-85.89633028321941, -722.0256880700049], [-122.24633028523613, -935.975688069135]], "length": 47.97218051138056}, {"source": 4719864584, "destination": 2568624514, "path": [[-85.89633028321941, -722.0256880700049], [-107.59633028811777, -545.1256880704136]], "length": 39.51002368761264}, {"source": 4719864584, "destination": 4719909591, "path": [[-85.89633028321941, -722.0256880700049], [-10.796330286666489, -721.6756880694675]], "length": 12.639610872476112}, {"source": 2568600116, "destination": 2568624513, "path": [[612.3536697160148, -540.8756880704857], [-11.346330289541129, -544.9756880686607]], "length": 104.97073016077182}, {"source": 2568600116, "destination": 2568600122, "path": [[612.3536697160148, -540.8756880704857], [713.6036697161785, -540.6256880711169]], "length": 17.040050592728274}, {"source": 2568600116, "destination": 2568600038, "path": [[612.3536697160148, -540.8756880704857], [612.4036697130464, -589.775688069949]], "length": 10.874562635525944}, {"source": 2568600116, "destination": 2568600167, "path": [[612.3536697160148, -540.8756880704857], [613.4036697105216, -403.3756880694739]], "length": 30.57893698846292}, {"source": 2568600119, "destination": 2568624520, "path": [[713.5536697120415, -588.4256880683836], [711.2536697135852, -842.5756880683366]], "length": 56.521912546255265}, {"source": 2568600119, "destination": 2568600033, "path": [[713.5536697120415, -588.4256880683836], [789.4036697138063, -587.375688070324]], "length": 12.767315616937415}, {"source": 2568600119, "destination": 2568600122, "path": [[713.5536697120415, -588.4256880683836], [713.6036697161785, -540.6256880711169]], "length": 10.630225175052919}, {"source": 2568600122, "destination": 2568600116, "path": [[713.6036697161785, -540.6256880711169], [612.3536697160148, -540.8756880704857]], "length": 17.040050592728274}, {"source": 2568600122, "destination": 2568600108, "path": [[713.6036697161785, -540.6256880711169], [790.0536697107441, -540.3756880681954]], "length": 12.866465703090917}, {"source": 2568600122, "destination": 2568600125, "path": [[713.6036697161785, -540.6256880711169], [712.2536697110604, -502.3256880711813]], "length": 8.520950847124608}, {"source": 2568600122, "destination": 2568600119, "path": [[713.6036697161785, -540.6256880711169], [713.5536697120415, -588.4256880683836]], "length": 10.630225175052919}, {"source": 2568600125, "destination": 2568600161, "path": [[712.2536697110604, -502.3256880711813], [697.5036697127734, -501.82568806889094], [687.4536697125677, -498.27568807003786], [677.403669712362, -493.6756880695725], [676.0536697143493, -484.0756880710728], [676.0536697143493, -469.82568806797076], [676.0536697143493, -451.0756880691247]], "length": 15.815824234600303}, {"source": 2568600125, "destination": 2568600122, "path": [[712.2536697110604, -502.3256880711813], [713.6036697161785, -540.6256880711169]], "length": 8.520950847124608}, {"source": 2568600125, "destination": 2568600140, "path": [[712.2536697110604, -502.3256880711813], [721.6536697143283, -501.3256880701533], [735.7036697115404, -494.22568806889444], [736.4036697126153, -482.0256880684326], [736.4036697126153, -459.67568807014914], [736.4036697126153, -451.5756880678623]], "length": 13.93090299649291}, {"source": 2568600140, "destination": 2568600161, "path": [[736.4036697126153, -451.5756880678623], [676.0536697143493, -451.0756880691247]], "length": 10.157647598979924}, {"source": 2568600140, "destination": 2568600125, "path": [[736.4036697126153, -451.5756880678623], [736.4036697126153, -459.67568807014914], [736.4036697126153, -482.0256880684326], [735.7036697115404, -494.22568806889444], [721.6536697143283, -501.3256880701533], [712.2536697110604, -502.3256880711813]], "length": 13.930902996492911}, {"source": 2568600140, "destination": 2568600143, "path": [[736.4036697126153, -451.5756880678623], [792.8536697150435, -408.9756880709672]], "length": 13.416496139288684}, {"source": 2568600143, "destination": 2568600140, "path": [[792.8536697150435, -408.9756880709672], [736.4036697126153, -451.5756880678623]], "length": 13.416496139288684}, {"source": 2568600143, "destination": 2568600108, "path": [[792.8536697150435, -408.9756880709672], [790.0536697107441, -540.3756880681954]], "length": 29.225776780673176}, {"source": 2568600143, "destination": 2568600173, "path": [[792.8536697150435, -408.9756880709672], [794.7536697159308, -320.1256880700498]], "length": 19.761626003434866}, {"source": 2568600161, "destination": 2568600140, "path": [[676.0536697143493, -451.0756880691247], [736.4036697126153, -451.5756880678623]], "length": 10.157647598979924}, {"source": 2568600161, "destination": 2568600125, "path": [[676.0536697143493, -451.0756880691247], [676.0536697143493, -469.82568806797076], [676.0536697143493, -484.0756880710728], [677.403669712362, -493.6756880695725], [687.4536697125677, -498.27568807003786], [697.5036697127734, -501.82568806889094], [712.2536697110604, -502.3256880711813]], "length": 15.815824234600303}, {"source": 2568600161, "destination": 2568600167, "path": [[676.0536697143493, -451.0756880691247], [673.3536697112186, -444.47568807015614], [613.4036697105216, -403.3756880694739]], "length": 15.150550818290823}, {"source": 2568600170, "destination": 2568600187, "path": [[614.0536697145649, -321.1256880710778], [614.1536697157335, -308.4756880689099]], "length": 2.8130379377802424}, {"source": 2568600170, "destination": 2568600173, "path": [[614.0536697145649, -321.1256880710778], [794.7536697159308, -320.1256880700498]], "length": 30.412251163619413}, {"source": 2568600170, "destination": 2568600167, "path": [[614.0536697145649, -321.1256880710778], [613.4036697105216, -403.3756880694739]], "length": 18.291769215906964}, {"source": 2568600173, "destination": 2568600170, "path": [[794.7536697159308, -320.1256880700498], [614.0536697145649, -321.1256880710778]], "length": 30.412251163619413}, {"source": 2568600173, "destination": 2568600044, "path": [[794.7536697159308, -320.1256880700498], [797.7536697154619, -179.62568806950685]], "length": 31.249767993208742}, {"source": 2568600173, "destination": 2568600143, "path": [[794.7536697159308, -320.1256880700498], [792.8536697150435, -408.9756880709672]], "length": 19.761626003434866}, {"source": 2568600183, "destination": 2568624523, "path": [[35.15366971384992, -193.42568807090288], [-18.04633028967828, -190.87568806952504]], "length": 8.971272754378425}, {"source": 2568600183, "destination": 4719865979, "path": [[35.15366971384992, -193.42568807090288], [-108.89633028909884, -277.7756880689708], [-146.6963302831914, -306.075688069285], [-176.39633028920798, -317.7256880704249], [-209.5963302863879, -325.4756880686216]], "length": 51.07942842283859}, {"source": 2568600183, "destination": 2568600189, "path": [[35.15366971384992, -193.42568807090288], [180.55366971481135, -193.57568806910308], [239.35366971272742, -192.0256880687532], [283.80366971703097, -189.42568807034377], [336.4536697105791, -185.32568806861605], [376.7536697125706, -184.62568807109392]], "length": 57.565945956181444}, {"source": 2568600187, "destination": 2568600170, "path": [[614.1536697157335, -308.4756880689099], [614.0536697145649, -321.1256880710778]], "length": 2.8130379377802424}, {"source": 2568600187, "destination": 2568600212, "path": [[614.1536697157335, -308.4756880689099], [569.6036697102613, -309.17568806998474]], "length": 7.4992982528043965}, {"source": 2568600187, "destination": 2568600047, "path": [[614.1536697157335, -308.4756880689099], [615.1536697132087, -180.6256880705348]], "length": 28.43312228442653}, {"source": 2568600189, "destination": 2568600193, "path": [[376.7536697125706, -184.62568807109392], [377.05366971607646, -214.9756880704956], [374.3536697129457, -312.4256880688847], [428.1036697122431, -311.52568806902536]], "length": 37.47479790675694}, {"source": 2568600189, "destination": 2568600183, "path": [[376.7536697125706, -184.62568807109392], [336.4536697105791, -185.32568806861605], [283.80366971703097, -189.42568807034377], [239.35366971272742, -192.0256880687532], [180.55366971481135, -193.57568806910308], [35.15366971384992, -193.42568807090288]], "length": 57.565945956181444}, {"source": 2568600189, "destination": 2568600199, "path": [[376.7536697125706, -184.62568807109392], [390.45366971635076, -195.12568806945296], [403.4536697119506, -201.3256880708525], [419.20366971481826, -205.4756880696118], [441.75366971188623, -215.82568806977065], [462.2536697169721, -226.1756880699295], [483.45366971602743, -240.12568806952572], [506.70366971417025, -257.225688070406]], "length": 27.447754405981847}, {"source": 2568600189, "destination": 2568600047, "path": [[376.7536697125706, -184.62568807109392], [503.9036697169763, -182.4756880708378], [615.1536697132087, -180.6256880705348]], "length": 40.13232274459213}, {"source": 2568600191, "destination": 2568600193, "path": [[477.9036697115657, -310.7256880703346], [428.1036697122431, -311.52568806902536]], "length": 8.38285778519803}, {"source": 2568600191, "destination": 844923267, "path": [[477.9036697115657, -310.7256880703346], [476.30366971418425, -348.97568806968593]], "length": 8.511426090049174}, {"source": 2568600191, "destination": 2568600212, "path": [[477.9036697115657, -310.7256880703346], [569.6036697102613, -309.17568806998474]], "length": 15.436863243813317}, {"source": 2568600193, "destination": 2568600191, "path": [[428.1036697122431, -311.52568806902536], [477.9036697115657, -310.7256880703346]], "length": 8.38285778519803}, {"source": 2568600193, "destination": 2568600189, "path": [[428.1036697122431, -311.52568806902536], [374.3536697129457, -312.4256880688847], [377.05366971607646, -214.9756880704956], [376.7536697125706, -184.62568807109392]], "length": 37.47479790675694}, {"source": 2568600193, "destination": 2568600199, "path": [[428.1036697122431, -311.52568806902536], [461.5536697158973, -291.3756880680296], [480.7036697158651, -276.87568806911145], [506.70366971417025, -257.225688070406]], "length": 17.938619503417062}, {"source": 2568600212, "destination": 2568600187, "path": [[569.6036697102613, -309.17568806998474], [614.1536697157335, -308.4756880689099]], "length": 7.4992982528043965}, {"source": 2568600212, "destination": 2568600191, "path": [[569.6036697102613, -309.17568806998474], [477.9036697115657, -310.7256880703346]], "length": 15.436863243813317}, {"source": 2568600212, "destination": 2568600199, "path": [[569.6036697102613, -309.17568806998474], [548.403669711206, -290.8256880687077], [523.8036697150505, -272.72568807035213], [506.70366971417025, -257.225688070406]], "length": 15.684320391162444}, {"source": 2568600235, "destination": 2568600249, "path": [[714.5536697166222, -87.32568807090502], [687.8536697101367, -87.32568807090502]], "length": 4.492161672744394}, {"source": 2568600235, "destination": 2703708315, "path": [[714.5536697166222, -87.32568807090502], [799.6536697163492, -87.27568807032071]], "length": 14.322355859226722}, {"source": 2568600235, "destination": 2568599455, "path": [[714.5536697166222, -87.32568807090502], [715.20366971356, -66.82568806937184], [715.20366971356, -60.625688067972305], [717.2536697126475, -53.87568807080356], [720.7036697138847, -45.0756880709946], [726.8536697111472, -34.22568806854542], [737.803669714765, -23.37568806964896], [762.4036697109204, -0.7756880684439693]], "length": 21.69413938297753}, {"source": 2568600249, "destination": 2568599344, "path": [[687.8536697101367, -87.32568807090502], [689.2536697122864, -70.97568806813115], [689.9036697163297, -61.12568807026264], [688.5536697112116, -53.87568807080356], [685.8036697110492, -47.67568806940403], [679.6536697137867, -36.82568807050757], [667.3536697121563, -20.22568806836489], [649.8036697166754, -1.4256880689345053]], "length": 20.89224669801228}, {"source": 2568600249, "destination": 2568600235, "path": [[687.8536697101367, -87.32568807090502], [714.5536697166222, -87.32568807090502]], "length": 4.492161672744394}, {"source": 2568600249, "destination": 2703708317, "path": [[687.8536697101367, -87.32568807090502], [615.8036697101466, -87.32568807090502]], "length": 12.125748612085177}, {"source": 4719909591, "destination": 4719864584, "path": [[-10.796330286666489, -721.6756880694675], [-85.89633028321941, -722.0256880700049]], "length": 12.639610872476112}, {"source": 4719909591, "destination": 1667939637, "path": [[-10.796330286666489, -721.6756880694675], [-10.59633028432927, -669.325688068767]], "length": 11.641886785706086}, {"source": 4719864580, "destination": 2568600038, "path": [[142.60366971541316, -668.6756880682765], [144.15366971576304, -596.0256880683801], [224.35366971507165, -594.9756880703205], [612.4036697130464, -589.775688069949]], "length": 94.97581124111208}, {"source": 2585936649, "destination": 2568599376, "path": [[-21.346330285609838, 685.9243119308189], [-19.346330283553925, 441.3743119293656]], "length": 54.38665222113492}, {"source": 2585936653, "destination": 2585936626, "path": [[-502.24633028506105, 726.7743119321324], [-680.096330285096, 726.2243119292577]], "length": 29.932827087212946}, {"source": 4719864582, "destination": 4719864580, "path": [[140.85366971272606, -778.8256880694178], [142.60366971541316, -668.6756880682765]], "length": 24.498124576997128}, {"source": 4719864582, "destination": 2568624516, "path": [[140.85366971272606, -778.8256880694178], [-11.0463302860353, -779.9756880686459]], "length": 25.56532042358342}, {"source": 2568600044, "destination": 2568600173, "path": [[797.7536697154619, -179.62568806950685], [794.7536697159308, -320.1256880700498]], "length": 31.249767993208742}, {"source": 2568600044, "destination": 2703708315, "path": [[797.7536697154619, -179.62568806950685], [799.6536697163492, -87.27568807032071]], "length": 20.540087566343985}, {"source": 2568600044, "destination": 2568600047, "path": [[797.7536697154619, -179.62568806950685], [615.1536697132087, -180.6256880705348]], "length": 30.7321111954749}, {"source": 2585900320, "destination": 2585900353, "path": [[-617.2463302860365, 520.6243119317833], [-579.6963302842073, 504.374311930178], [-558.1963302887516, 490.17431193121297], [-552.6463302842899, 480.8743119291137]], "length": 14.353679308948124}, {"source": 2585900320, "destination": 2585900602, "path": [[-617.2463302860365, 520.6243119317833], [-632.6463302883667, 541.9243119320072], [-650.0963302897844, 560.2243119291472], [-659.4963302859469, 569.8243119311996], [-672.8963302862212, 579.9743119290213], [-688.2963302885514, 589.1243119293677], [-698.9463302886634, 595.1743119290143]], "length": 21.80084426673441}, {"source": 2585900320, "destination": 2585900329, "path": [[-617.2463302860365, 520.6243119317833], [-662.8463302860155, 536.8743119298358], [-727.1963302883933, 547.0243119312101], [-804.9963302880769, 555.1243119299443]], "length": 32.76344445467777}, {"source": 2585900329, "destination": 2585900320, "path": [[-804.9963302880769, 555.1243119299443], [-727.1963302883933, 547.0243119312101], [-662.8463302860155, 536.8743119298358], [-617.2463302860365, 520.6243119317833]], "length": 32.76344445467777}, {"source": 2585900329, "destination": 2585900602, "path": [[-804.9963302880769, 555.1243119299443], [-698.9463302886634, 595.1743119290143]], "length": 19.94728754901837}, {"source": 2585900329, "destination": 2585900459, "path": [[-804.9963302880769, 555.1243119299443], [-843.8463302837818, 553.9243119301318]], "length": 6.543661817980569}, {"source": 2585900332, "destination": 2585900459, "path": [[-869.3463302833493, 553.1243119314411], [-843.8463302837818, 553.9243119301318]], "length": 4.29523819263534}, {"source": 2585900332, "destination": 2585900364, "path": [[-869.3463302833493, 553.1243119314411], [-906.2463302882406, 540.9243119309792], [-922.3463302845403, 530.7743119296049], [-938.4463302879453, 515.5243119290276], [-951.8463302882196, 502.3743119316748], [-963.9963302845445, 477.9743119307511]], "length": 24.13541072445112}, {"source": 2585900332, "destination": 2585900359, "path": [[-869.3463302833493, 553.1243119314411], [-965.2463302884939, 553.0743119308568]], "length": 16.140140301793767}, {"source": 2585900335, "destination": 2585900359, "path": [[-1013.7963302838671, 553.0743119308568], [-965.2463302884939, 553.0743119308568]], "length": 8.171067876375522}, {"source": 1667939637, "destination": 2568624513, "path": [[-10.59633028432927, -669.325688068767], [-11.346330289541129, -544.9756880686607]], "length": 27.654578927261678}, {"source": 1667939637, "destination": 4719864580, "path": [[-10.59633028432927, -669.325688068767], [142.60366971541316, -668.6756880682765]], "length": 25.783316830847074}, {"source": 2585900350, "destination": 4719495256, "path": [[-295.84633028889584, 476.52431193156986], [-280.54633028773424, 477.1743119320604]], "length": 2.580777421390384}, {"source": 2585900350, "destination": 2568624545, "path": [[-295.84633028889584, 476.52431193156986], [-254.44633028826047, 460.7243119316706], [-227.64633028771186, 440.42431192892195], [-209.54633028935632, 419.12431192869803], [-196.096330284945, 400.8743119321423], [-184.596330285558, 361.2743119312256]], "length": 33.480731281130886}, {"source": 2585900350, "destination": 4719494637, "path": [[-295.84633028889584, 476.52431193156986], [-357.04633028643684, 473.9243119296077], [-482.3463302869868, 469.874311932017]], "length": 31.423410151492064}, {"source": 2585900353, "destination": 2585900320, "path": [[-552.6463302842899, 480.8743119291137], [-558.1963302887516, 490.17431193121297], [-579.6963302842073, 504.374311930178], [-617.2463302860365, 520.6243119317833]], "length": 14.353679308948124}, {"source": 2585900353, "destination": 2585900605, "path": [[-552.6463302842899, 480.8743119291137], [-551.3963302874458, 603.3243119318854]], "length": 27.232572472074107}, {"source": 2585900353, "destination": 4719494637, "path": [[-552.6463302842899, 480.8743119291137], [-544.7963302884773, 467.8243119293768], [-482.3463302869868, 469.874311932017]], "length": 13.710600597909112}, {"source": 2585900356, "destination": 2585900605, "path": [[-550.9463302857398, 642.7743119310492], [-551.3963302874458, 603.3243119318854]], "length": 8.774211825753742}, {"source": 2585900359, "destination": 2585900332, "path": [[-965.2463302884939, 553.0743119308568], [-869.3463302833493, 553.1243119314411]], "length": 16.140140301793767}, {"source": 2585900359, "destination": 2585900364, "path": [[-965.2463302884939, 553.0743119308568], [-963.9963302845445, 477.9743119307511]], "length": 16.702971323633847}, {"source": 2585900359, "destination": 2585900335, "path": [[-965.2463302884939, 553.0743119308568], [-1013.7963302838671, 553.0743119308568]], "length": 8.171067876375522}, {"source": 2585900362, "destination": 4719494628, "path": [[-955.896330289363, -5.225688070709111], [-930.1963302874583, -4.825688069587386]], "length": 4.327639767314646}, {"source": 2585900362, "destination": 2585900379, "path": [[-955.896330289363, -5.225688070709111], [-963.3463302876066, 439.474311932031]], "length": 98.90486127602979}, {"source": 2585900364, "destination": 2585900379, "path": [[-963.9963302845445, 477.9743119307511], [-963.3463302876066, 439.474311932031]], "length": 8.562102356762043}, {"source": 2585900364, "destination": 2585900332, "path": [[-963.9963302845445, 477.9743119307511], [-951.8463302882196, 502.3743119316748], [-938.4463302879453, 515.5243119290276], [-922.3463302845403, 530.7743119296049], [-906.2463302882406, 540.9243119309792], [-869.3463302833493, 553.1243119314411]], "length": 24.135410724451123}, {"source": 2585900364, "destination": 2585900359, "path": [[-963.9963302845445, 477.9743119307511], [-965.2463302884939, 553.0743119308568]], "length": 16.702971323633847}, {"source": 2585900379, "destination": 2585900362, "path": [[-963.3463302876066, 439.474311932031], [-955.896330289363, -5.225688070709111]], "length": 98.90486127602979}, {"source": 2585900379, "destination": 2585900364, "path": [[-963.3463302876066, 439.474311932031], [-963.9963302845445, 477.9743119307511]], "length": 8.562102356762043}, {"source": 2585900397, "destination": 2585900402, "path": [[-1307.2463302847837, 699.2743119305089], [-1275.046330285079, 683.0243119289037], [-1257.5963302836612, 658.674311932117], [-1257.5963302836612, 613.5743119308756]], "length": 22.70309270362477}, {"source": 2585900397, "destination": 2585900437, "path": [[-1307.2463302847837, 699.2743119305089], [-1273.6963302870663, 706.3743119317678], [-1262.9463302857857, 712.4243119314144], [-1252.2463302886422, 722.574311929236], [-1248.1963302874988, 726.6743119309638]], "length": 12.145709080825945}, {"source": 2585900402, "destination": 2585900397, "path": [[-1257.5963302836612, 613.5743119308756], [-1257.5963302836612, 658.674311932117], [-1275.046330285079, 683.0243119289037], [-1307.2463302847837, 699.2743119305089]], "length": 22.70309270362477}, {"source": 2585900432, "destination": 2585936626, "path": [[-864.646330285268, 725.6243119293515], [-680.096330285096, 726.2243119292577]], "length": 31.060720425207073}, {"source": 2585900432, "destination": 2585900611, "path": [[-864.646330285268, 725.6243119293515], [-810.9963302871392, 669.8243119309666], [-801.6463302880084, 659.6743119295922], [-795.596330284809, 653.0743119306237], [-773.1463302889097, 630.8243119299561]], "length": 26.11134734387032}, {"source": 2585900432, "destination": 3380364844, "path": [[-864.646330285268, 725.6243119293515], [-1124.2963302890985, 726.3243119304263]], "length": 43.700213808282705}, {"source": 2585900432, "destination": 2585900614, "path": [[-864.646330285268, 725.6243119293515], [-864.646330285268, 700.7743119302745], [-872.04633028648, 687.0743119300471], [-882.7463302836236, 666.7743119308511], [-889.4963302878978, 643.4243119315397], [-890.4463302883414, 632.2243119321058]], "length": 21.492075956385722}, {"source": 2585900437, "destination": 3380364844, "path": [[-1248.1963302874988, 726.6743119309638], [-1124.2963302890985, 726.3243119304263]], "length": 20.85297339095346}, {"source": 2585900437, "destination": 2585900397, "path": [[-1248.1963302874988, 726.6743119309638], [-1252.2463302886422, 722.574311929236], [-1262.9463302857857, 712.4243119314144], [-1273.6963302870663, 706.3743119317678], [-1307.2463302847837, 699.2743119305089]], "length": 12.145709080825945}, {"source": 2585900459, "destination": 2585900329, "path": [[-843.8463302837818, 553.9243119301318], [-804.9963302880769, 555.1243119299443]], "length": 6.543661817980569}, {"source": 2585900459, "destination": 2585900332, "path": [[-843.8463302837818, 553.9243119301318], [-869.3463302833493, 553.1243119314411]], "length": 4.29523819263534}, {"source": 2585900459, "destination": 2585900614, "path": [[-843.8463302837818, 553.9243119301318], [-863.2963302872554, 575.4243119291402], [-870.0463302844241, 584.5743119294866], [-878.7463302866172, 598.274311929714], [-888.1463302898851, 614.5243119313193], [-890.7963302888788, 628.2243119315467], [-890.4463302883414, 632.2243119321058]], "length": 19.422948347935314}, {"source": 4719494628, "destination": 4719820337, "path": [[-930.1963302874583, -4.825688069587386], [-557.3963302865081, 1.174311929474925]], "length": 62.75627013717298}, {"source": 4719494628, "destination": 2585900362, "path": [[-930.1963302874583, -4.825688069587386], [-955.896330289363, -5.225688070709111]], "length": 4.327639767314646}, {"source": 4719494628, "destination": 4719494637, "path": [[-930.1963302874583, -4.825688069587386], [-933.1463302899579, 134.47431193114312], [-920.3463302895898, 180.2243119293223], [-891.8463302833857, 208.8243119295896], [-840.6463302890188, 231.72431193074772], [-743.4963302870301, 256.8243119291935], [-709.1963302841009, 277.0743119313579], [-653.9463302885906, 321.52431193210873], [-556.1963302866957, 395.0243119312802], [-482.3463302869868, 469.874311932017]], "length": 141.49536314741704}, {"source": 4719494637, "destination": 2585900353, "path": [[-482.3463302869868, 469.874311932017], [-544.7963302884773, 467.8243119293768], [-552.6463302842899, 480.8743119291137]], "length": 13.710600597909112}, {"source": 4719494637, "destination": 4719494628, "path": [[-482.3463302869868, 469.874311932017], [-556.1963302866957, 395.0243119312802], [-653.9463302885906, 321.52431193210873], [-709.1963302841009, 277.0743119313579], [-743.4963302870301, 256.8243119291935], [-840.6463302890188, 231.72431193074772], [-891.8463302833857, 208.8243119295896], [-920.3463302895898, 180.2243119293223], [-933.1463302899579, 134.47431193114312], [-930.1963302874583, -4.825688069587386]], "length": 141.49536314741707}, {"source": 4719494637, "destination": 2585900350, "path": [[-482.3463302869868, 469.874311932017], [-357.04633028643684, 473.9243119296077], [-295.84633028889584, 476.52431193156986]], "length": 31.423410151492064}, {"source": 2585900564, "destination": 2585900608, "path": [[-709.7463302869755, 601.3243119298295], [-676.9463302873646, 601.7243119309512]], "length": 5.5209667670893}, {"source": 2585900564, "destination": 2585900602, "path": [[-709.7463302869755, 601.3243119298295], [-698.9463302886634, 595.1743119290143]], "length": 2.2764716891578742}, {"source": 2585900564, "destination": 2585900611, "path": [[-709.7463302869755, 601.3243119298295], [-716.4463302871127, 603.824311930623], [-724.4963302852625, 605.3743119309729], [-734.5963302896052, 607.4243119300604], [-747.9963302898796, 610.9743119289135], [-756.6963302849672, 616.0243119310849], [-765.3963302871603, 623.124311928791], [-773.1463302889097, 630.8243119299561]], "length": 12.95108630959228}, {"source": 3380364844, "destination": 2585900432, "path": [[-1124.2963302890985, 726.3243119304263], [-864.646330285268, 725.6243119293515]], "length": 43.700213808282705}, {"source": 3380364844, "destination": 2585900437, "path": [[-1124.2963302890985, 726.3243119304263], [-1248.1963302874988, 726.6743119309638]], "length": 20.85297339095346}, {"source": 4719820337, "destination": 4719820416, "path": [[-557.3963302865081, 1.174311929474925], [-556.5963302842647, -93.02568807001421], [-551.1963302851086, -127.1756880711905], [-536.3963302897901, -146.67568806814302]], "length": 33.60072623686294}, {"source": 4719820337, "destination": 2568624537, "path": [[-557.3963302865081, 1.174311929474925], [-206.69633028802537, 6.774311930968224], [-184.596330285558, 1.9743119317183755]], "length": 62.906088154631654}, {"source": 4719820337, "destination": 4719494628, "path": [[-557.3963302865081, 1.174311929474925], [-930.1963302874583, -4.825688069587386]], "length": 62.75627013717298}, {"source": 2585900602, "destination": 2585900608, "path": [[-698.9463302886634, 595.1743119290143], [-676.9463302873646, 601.7243119309512]], "length": 3.978236403078894}, {"source": 2585900602, "destination": 2585900329, "path": [[-698.9463302886634, 595.1743119290143], [-804.9963302880769, 555.1243119299443]], "length": 19.94728754901837}, {"source": 2585900602, "destination": 2585900564, "path": [[-698.9463302886634, 595.1743119290143], [-709.7463302869755, 601.3243119298295]], "length": 2.2764716891578742}, {"source": 2585900602, "destination": 2585900320, "path": [[-698.9463302886634, 595.1743119290143], [-688.2963302885514, 589.1243119293677], [-672.8963302862212, 579.9743119290213], [-659.4963302859469, 569.8243119311996], [-650.0963302897844, 560.2243119291472], [-632.6463302883667, 541.9243119320072], [-617.2463302860365, 520.6243119317833]], "length": 21.8008442667344}, {"source": 2585900608, "destination": 2585900602, "path": [[-676.9463302873646, 601.7243119309512], [-698.9463302886634, 595.1743119290143]], "length": 3.978236403078894}, {"source": 2585900608, "destination": 2585900564, "path": [[-676.9463302873646, 601.7243119309512], [-709.7463302869755, 601.3243119298295]], "length": 5.5209667670893}, {"source": 2585900608, "destination": 2585900605, "path": [[-676.9463302873646, 601.7243119309512], [-551.3963302874458, 603.3243119318854]], "length": 21.133318073696366}, {"source": 2585900611, "destination": 2585900432, "path": [[-773.1463302889097, 630.8243119299561], [-795.596330284809, 653.0743119306237], [-801.6463302880084, 659.6743119295922], [-810.9963302871392, 669.8243119309666], [-864.646330285268, 725.6243119293515]], "length": 26.111347343870317}, {"source": 2585900611, "destination": 2585900564, "path": [[-773.1463302889097, 630.8243119299561], [-765.3963302871603, 623.124311928791], [-756.6963302849672, 616.0243119310849], [-747.9963302898796, 610.9743119289135], [-734.5963302896052, 607.4243119300604], [-724.4963302852625, 605.3743119309729], [-716.4463302871127, 603.824311930623], [-709.7463302869755, 601.3243119298295]], "length": 12.951086309592283}, {"source": 2585900611, "destination": 2585900614, "path": [[-773.1463302889097, 630.8243119299561], [-890.4463302883414, 632.2243119321058]], "length": 19.74428763829181}, {"source": 2585900614, "destination": 2585900432, "path": [[-890.4463302883414, 632.2243119321058], [-889.4963302878978, 643.4243119315397], [-882.7463302836236, 666.7743119308511], [-872.04633028648, 687.0743119300471], [-864.646330285268, 700.7743119302745], [-864.646330285268, 725.6243119293515]], "length": 21.492075956385722}, {"source": 2585900614, "destination": 2585900611, "path": [[-890.4463302883414, 632.2243119321058], [-773.1463302889097, 630.8243119299561]], "length": 19.74428763829181}, {"source": 2585900614, "destination": 2585900459, "path": [[-890.4463302883414, 632.2243119321058], [-890.7963302888788, 628.2243119315467], [-888.1463302898851, 614.5243119313193], [-878.7463302866172, 598.274311929714], [-870.0463302844241, 584.5743119294866], [-863.2963302872554, 575.4243119291402], [-843.8463302837818, 553.9243119301318]], "length": 19.42294834793531}, {"source": 2568600167, "destination": 2568600161, "path": [[613.4036697105216, -403.3756880694739], [673.3536697112186, -444.47568807015614], [676.0536697143493, -451.0756880691247]], "length": 15.150550818290823}, {"source": 2568600167, "destination": 2568600170, "path": [[613.4036697105216, -403.3756880694739], [614.0536697145649, -321.1256880710778]], "length": 18.291769215906964}, {"source": 2568600167, "destination": 2568600116, "path": [[613.4036697105216, -403.3756880694739], [612.3536697160148, -540.8756880704857]], "length": 30.57893698846292}, {"source": 4719820416, "destination": 4719820337, "path": [[-536.3963302897901, -146.67568806814302], [-551.1963302851086, -127.1756880711905], [-556.5963302842647, -93.02568807001421], [-557.3963302865081, 1.174311929474925]], "length": 33.60072623686294}, {"source": 4719820416, "destination": 4719820419, "path": [[-536.3963302897901, -146.67568806814302], [-438.99633028843255, -145.87568806945228], [-394.6463302852976, -145.87568806945228], [-367.24633028484277, -171.2756880678512]], "length": 31.148959942004623}, {"source": 4719820416, "destination": 4719865979, "path": [[-536.3963302897901, -146.67568806814302], [-513.7963302885851, -175.32568806899462], [-469.44633028545013, -221.42568807126395], [-401.946330285341, -276.87568806911145], [-361.4463302881177, -306.92568806856], [-309.39633028737035, -322.97568806782806], [-268.1463302849352, -329.7256880685495], [-215.29633028904982, -326.77568806960267], [-209.5963302863879, -325.4756880686216]], "length": 72.89897571148175}, {"source": 4719820419, "destination": 4719820416, "path": [[-367.24633028484277, -171.2756880678512], [-394.6463302852976, -145.87568806945228], [-438.99633028843255, -145.87568806945228], [-536.3963302897901, -146.67568806814302]], "length": 31.148959942004623}, {"source": 2568600199, "destination": 2568600193, "path": [[506.70366971417025, -257.225688070406], [480.7036697158651, -276.87568806911145], [461.5536697158973, -291.3756880680296], [428.1036697122431, -311.52568806902536]], "length": 17.938619503417062}, {"source": 2568600199, "destination": 2568600212, "path": [[506.70366971417025, -257.225688070406], [523.8036697150505, -272.72568807035213], [548.403669711206, -290.8256880687077], [569.6036697102613, -309.17568806998474]], "length": 15.684320391162444}, {"source": 2568600199, "destination": 2568600189, "path": [[506.70366971417025, -257.225688070406], [483.45366971602743, -240.12568806952572], [462.2536697169721, -226.1756880699295], [441.75366971188623, -215.82568806977065], [419.20366971481826, -205.4756880696118], [403.4536697119506, -201.3256880708525], [390.45366971635076, -195.12568806945296], [376.7536697125706, -184.62568807109392]], "length": 27.447754405981847}, {"source": 2568600199, "destination": 2568600047, "path": [[506.70366971417025, -257.225688070406], [540.203669714856, -222.02568807117018], [545.0036697141059, -216.32568806850827], [552.5036697164865, -209.62568806837112], [565.5036697120863, -200.32568806982454], [583.9536697109793, -190.97568807069365], [615.1536697132087, -180.6256880705348]], "length": 25.585649020723178}, {"source": 2568599340, "destination": 2568599384, "path": [[-15.696330287084947, -5.1756880701248065], [67.75366971112362, -4.675688067834471]], "length": 14.045311364882943}, {"source": 2568599340, "destination": 2568599376, "path": [[-15.696330287084947, -5.1756880701248065], [-19.346330283553925, 441.3743119293656]], "length": 99.31026704505275}, {"source": 2568599340, "destination": 2568624538, "path": [[-15.696330287084947, -5.1756880701248065], [-59.846330287882665, -5.1756880701248065]], "length": 7.430479281343225}, {"source": 2568599340, "destination": 2568624526, "path": [[-15.696330287084947, -5.1756880701248065], [-16.496330289328398, -68.67568806967483], [-16.99633028806602, -110.72568807080074]], "length": 23.47440668883975}, {"source": 2568599344, "destination": 2568600249, "path": [[649.8036697166754, -1.4256880689345053], [667.3536697121563, -20.22568806836489], [679.6536697137867, -36.82568807050757], [685.8036697110492, -47.67568806940403], [688.5536697112116, -53.87568807080356], [689.9036697163297, -61.12568807026264], [689.2536697122864, -70.97568806813115], [687.8536697101367, -87.32568807090502]], "length": 20.892246698012283}, {"source": 2568599344, "destination": 2568599419, "path": [[649.8036697166754, -1.4256880689345053], [580.0536697151415, 51.674311929872374], [531.7536697120318, 98.32431193146363], [486.2036697161898, 145.02431193008647], [435.2036697099493, 193.72431193076523], [376.2036697168014, 232.32431193065395], [313.6536697141423, 273.1243119313831]], "length": 83.58184954152631}, {"source": 2568599344, "destination": 2568599455, "path": [[649.8036697166754, -1.4256880689345053], [762.4036697109204, -0.7756880684439693]], "length": 18.951214403467436}, {"source": 2568599344, "destination": 2568600041, "path": [[649.8036697166754, -1.4256880689345053], [616.3536697130212, -1.6256880712717248]], "length": 5.629278879449782}, {"source": 2568599372, "destination": 2568599376, "path": [[11.403669716969489, 441.5743119317028], [-19.346330283553925, 441.3743119293656]], "length": 5.17550501644539}, {"source": 2568599372, "destination": 2568624555, "path": [[11.403669716969489, 441.5743119317028], [215.25366971530957, 442.9243119297155]], "length": 34.30980174994407}, {"source": 2568599372, "destination": 2568624551, "path": [[11.403669716969489, 441.5743119317028], [75.80366971637886, 400.7743119309737], [140.15366971165122, 374.4243119321311], [220.65366971446565, 333.82431193018647], [235.50366971392123, 324.12431193051816]], "length": 46.03273941884121}, {"source": 2568599376, "destination": 2585936649, "path": [[-19.346330283553925, 441.3743119293656], [-21.346330285609838, 685.9243119308189]], "length": 54.38665222113492}, {"source": 2568599376, "destination": 2568599372, "path": [[-19.346330283553925, 441.3743119293656], [11.403669716969489, 441.5743119317028]], "length": 5.17550501644539}, {"source": 2568599376, "destination": 2568624550, "path": [[-19.346330283553925, 441.3743119293656], [-98.7463302877245, 438.37431192983445]], "length": 13.37949803492484}, {"source": 2568599376, "destination": 2568599340, "path": [[-19.346330283553925, 441.3743119293656], [-15.696330287084947, -5.1756880701248065]], "length": 99.31026704505275}, {"source": 2568599384, "destination": 2568600041, "path": [[67.75366971112362, -4.675688067834471], [616.3536697130212, -1.6256880712717248]], "length": 92.33162625212474}, {"source": 2568599384, "destination": 2568599419, "path": [[67.75366971112362, -4.675688067834471], [94.55366971167223, 27.324311929532996], [140.15366971165122, 61.82431193124671], [180.40366971661115, 96.32431192940771], [215.25366971530957, 130.82431193112143], [239.40366971686444, 157.2243119305483], [255.50366971316407, 175.47431193065677], [274.30366971259446, 199.82431193099615], [298.4036697100123, 244.47431193053148], [313.6536697141423, 273.1243119313831]], "length": 75.05574871872967}, {"source": 2568599384, "destination": 2568599340, "path": [[67.75366971112362, -4.675688067834471], [-15.696330287084947, -5.1756880701248065]], "length": 14.045311364882943}, {"source": 2568599419, "destination": 2568599344, "path": [[313.6536697141423, 273.1243119313831], [376.2036697168014, 232.32431193065395], [435.2036697099493, 193.72431193076523], [486.2036697161898, 145.02431193008647], [531.7536697120318, 98.32431193146363], [580.0536697151415, 51.674311929872374], [649.8036697166754, -1.4256880689345053]], "length": 83.58184954152631}, {"source": 2568599419, "destination": 2568599384, "path": [[313.6536697141423, 273.1243119313831], [298.4036697100123, 244.47431193053148], [274.30366971259446, 199.82431193099615], [255.50366971316407, 175.47431193065677], [239.40366971686444, 157.2243119305483], [215.25366971530957, 130.82431193112143], [180.40366971661115, 96.32431192940771], [140.15366971165122, 61.82431193124671], [94.55366971167223, 27.324311929532996], [67.75366971112362, -4.675688067834471]], "length": 75.05574871872967}, {"source": 2568599419, "destination": 2568599452, "path": [[313.6536697141423, 273.1243119313831], [330.6036697168224, 305.3743119316721], [349.4036697162528, 339.8743119298331], [373.50366971367066, 368.3243119319002], [405.70366971337535, 400.7743119309737], [429.8536697149302, 423.12431192925715], [459.25366971033554, 444.574311931234]], "length": 45.85179498994553}, {"source": 2568599419, "destination": 2568624551, "path": [[313.6536697141423, 273.1243119313831], [235.50366971392123, 324.12431193051816]], "length": 17.367217157504484}, {"source": 2568599452, "destination": 2568624555, "path": [[459.25366971033554, 444.574311931234], [215.25366971530957, 442.9243119297155]], "length": 41.06722885778385}, {"source": 2568599452, "destination": 2568599540, "path": [[459.25366971033554, 444.574311931234], [605.1536697100346, 445.5743119287092], [848.2536697158594, 447.52431193018083], [923.3036697153807, 448.02431192891845]], "length": 78.10456856691698}, {"source": 2568599452, "destination": 2568599419, "path": [[459.25366971033554, 444.574311931234], [429.8536697149302, 423.12431192925715], [405.70366971337535, 400.7743119309737], [373.50366971367066, 368.3243119319002], [349.4036697162528, 339.8743119298331], [330.6036697168224, 305.3743119316721], [313.6536697141423, 273.1243119313831]], "length": 45.85179498994553}, {"source": 2568599455, "destination": 2568599344, "path": [[762.4036697109204, -0.7756880684439693], [649.8036697166754, -1.4256880689345053]], "length": 18.951214403467436}, {"source": 2568599455, "destination": 2568600035, "path": [[762.4036697109204, -0.7756880684439693], [801.4536697160679, -0.5256880690751586]], "length": 6.5718362863740065}, {"source": 2568599455, "destination": 2568600235, "path": [[762.4036697109204, -0.7756880684439693], [737.803669714765, -23.37568806964896], [726.8536697111472, -34.22568806854542], [720.7036697138847, -45.0756880709946], [717.2536697126475, -53.87568807080356], [715.20366971356, -60.625688067972305], [715.20366971356, -66.82568806937184], [714.5536697166222, -87.32568807090502]], "length": 21.69413938297753}, {"source": 2568599455, "destination": 2568599542, "path": [[762.4036697109204, -0.7756880684439693], [824.1536697113361, 39.47431192941053], [861.7036697131653, 76.02431193021175], [923.4036697165493, 136.92431193135235], [940.6536697156298, 159.57431192958893]], "length": 46.891921780167216}, {"source": 2568599540, "destination": 2568599452, "path": [[923.3036697153807, 448.02431192891845], [848.2536697158594, 447.52431193018083], [605.1536697100346, 445.5743119287092], [459.25366971033554, 444.574311931234]], "length": 78.10456856691698}, {"source": 2568599540, "destination": 2568599542, "path": [[923.3036697153807, 448.02431192891845], [947.4536697169356, 410.6743119294265], [950.9536697152043, 209.42431192949584], [940.6536697156298, 159.57431192958893]], "length": 65.22760002940002}, {"source": 2568599542, "destination": 2568599540, "path": [[940.6536697156298, 159.57431192958893], [950.9536697152043, 209.42431192949584], [947.4536697169356, 410.6743119294265], [923.3036697153807, 448.02431192891845]], "length": 65.22760002940001}, {"source": 2568599542, "destination": 2568599455, "path": [[940.6536697156298, 159.57431192958893], [923.4036697165493, 136.92431193135235], [861.7036697131653, 76.02431193021175], [824.1536697113361, 39.47431192941053], [762.4036697109204, -0.7756880684439693]], "length": 46.891921780167216}]}'); -const AVERY_MAP_LARGE = JSON.parse('{"edges": [{"length": 153.699760874, "source": 1394286592, "destination": 1930367395, "path": [[8544.539276492458, -8435.000581421547], [8536.53927649134, -7743.900581420604]]}, {"length": 64.2716704854, "source": 1394286598, "destination": 1295456170, "path": [[3491.739276491046, -4567.450581422605], [3467.0892764907535, -4570.700581421505], [3424.839276490843, -4582.550581421429], [3389.5892764945756, -4600.3005814228], [3332.63927649341, -4636.1005814219425], [3308.039276490149, -4661.350581422141], [3285.339276494881, -4690.200581421777], [3273.8392764883884, -4716.600581421204], [3262.58927648837, -4771.100581422161]]}, {"length": 23.2419310878, "source": 1394286598, "destination": 1394286622, "path": [[3491.739276491046, -4567.450581422605], [3438.2392764911174, -4471.10058142286]]}, {"length": 28.8865915993, "source": 1394286598, "destination": 2080585087, "path": [[3491.739276491046, -4567.450581422605], [3663.3892764896814, -4567.450581422605]]}, {"length": 121.904562222, "source": 2086776833, "destination": 2086776817, "path": [[-3781.210723509787, 1506.5994185761156], [-3777.710723511518, 958.4494185794767]]}, {"length": 62.5143873217, "source": 2086776833, "destination": 135012764, "path": [[-3781.210723509787, 1506.5994185761156], [-3409.8107235109865, 1507.949418577681]]}, {"length": 62.5903191095, "source": 2086776833, "destination": 135012761, "path": [[-3781.210723509787, 1506.5994185761156], [-4153.060723510293, 1505.249418578103]]}, {"length": 2.49916510672, "source": 2293202952, "destination": 2293202953, "path": [[-11812.560723505783, -52.65058142356338], [-11827.410723505238, -52.65058142356338]]}, {"length": 42.7688051727, "source": 2293202952, "destination": 2293202934, "path": [[-11812.560723505783, -52.65058142356338], [-11812.360723510552, 3.0494185772056426], [-11838.01072350832, 30.44941857766048], [-11938.510723510375, 99.94941857627282]]}, {"length": 12.2536601124, "source": 2293202952, "destination": 2293202967, "path": [[-11812.560723505783, -52.65058142356338], [-11812.76072350812, -107.75058142087346]]}, {"length": 2.49916510672, "source": 2293202953, "destination": 2293202952, "path": [[-11827.410723505238, -52.65058142356338], [-11812.560723505783, -52.65058142356338]]}, {"length": 40.232578773, "source": 134968426, "destination": 1428268136, "path": [[-7138.960723509058, -6304.250581422366], [-7341.810723509923, -6400.000581422205]]}, {"length": 377.697464608, "source": 134968426, "destination": 135010520, "path": [[-7138.960723509058, -6304.250581422366], [-7307.160723506457, -6149.600581423442], [-7496.660723511184, -5961.600581422033], [-7678.160723507688, -5769.100581421327], [-7851.160723511441, -5571.600581422586], [-8021.160723508558, -5362.100581422169], [-8163.660723511157, -5173.100581423285], [-8358.160723510366, -4883.600581422343]]}, {"length": 10.7087840681, "source": 134968426, "destination": 1428268115, "path": [[-7138.960723509058, -6304.250581422366], [-7097.610723505454, -6340.8505814237515]]}, {"length": 12.2536601124, "source": 2293202967, "destination": 2293202952, "path": [[-11812.76072350812, -107.75058142087346], [-11812.560723505783, -52.65058142356338]]}, {"length": 15.6006387709, "source": 2293202968, "destination": 2293202970, "path": [[-12105.91072350553, -124.70058142355356], [-12105.960723509668, -194.85058142265643]]}, {"length": 78.374133647, "source": 2293202968, "destination": 2293202916, "path": [[-12105.91072350553, -124.70058142355356], [-12209.210723504782, -98.20058142295807], [-12216.560723508963, -85.5005814237586], [-12216.610723505994, 122.09941857932449], [-12216.660723510131, 170.49941857649742]]}, {"length": 59.9893455125, "source": 2293202968, "destination": 2293202922, "path": [[-12105.91072350553, -124.70058142355356], [-12105.91072350553, -85.5005814237586], [-12105.91072350553, 122.09941857932449], [-12105.8607235085, 145.0494185775142]]}, {"length": 15.6006387709, "source": 2293202970, "destination": 2293202968, "path": [[-12105.960723509668, -194.85058142265643], [-12105.91072350553, -124.70058142355356]]}, {"length": 98.9021274789, "source": 2293202970, "destination": 135023033, "path": [[-12105.960723509668, -194.85058142265643], [-11518.36072350676, -191.55058142317216]]}, {"length": 37.7783382149, "source": 2293202970, "destination": 2293202971, "path": [[-12105.960723509668, -194.85058142265643], [-12330.410723507157, -196.1005814230532]]}, {"length": 86.3765095676, "source": 2293202971, "destination": 2293202914, "path": [[-12330.410723507157, -196.1005814230532], [-12330.160723507788, -91.60058142398952], [-12329.66072350905, 157.39941857617623], [-12329.610723504913, 192.29941857901167]]}, {"length": 37.7783382149, "source": 2293202971, "destination": 2293202970, "path": [[-12330.410723507157, -196.1005814230532], [-12105.960723509668, -194.85058142265643]]}, {"length": 175.51540216, "source": 1394286622, "destination": 1933539536, "path": [[3438.2392764911174, -4471.10058142286], [3205.63927649431, -4643.900581420723], [3125.639276490233, -4713.200581420551], [2988.289276494527, -4842.35058142346], [2922.0392764912617, -4917.350581422397], [2877.939276494601, -4969.500581420761], [2826.63927649196, -5037.300581420823], [2784.9392764949243, -5081.750581421574]]}, {"length": 253.269033223, "source": 1394286622, "destination": 1295456178, "path": [[3438.2392764911174, -4471.10058142286], [3524.139276493088, -4401.150581422542], [3581.68927649416, -4346.100581422263], [3631.9392764951886, -4291.700581422475], [3709.6392764937036, -4186.650581420537], [3755.0392764913454, -4139.950581421914], [3812.3392764930486, -4097.500581423219], [3873.7892764899584, -4062.800581422721], [3932.1892764903055, -4042.6505814217253], [4010.5892764898954, -4018.450581423139], [4055.189276492399, -3998.3505814227274], [4190.839276489555, -3901.5505814212756], [4473.78927648856, -3668.200581422809]]}, {"length": 23.2419310878, "source": 1394286622, "destination": 1394286598, "path": [[3438.2392764911174, -4471.10058142286], [3491.739276491046, -4567.450581422605]]}, {"length": 138.107014689, "source": 134955039, "destination": 3146325505, "path": [[-4650.91072350532, -3506.0005814209208], [-4699.710723507167, -3460.750581421479], [-4751.3607235103445, -3420.6505814218244], [-4805.010723508474, -3396.800581423776], [-4863.360723511789, -3381.050581420908], [-4972.060723510196, -3368.9505814216145], [-5237.560723507784, -3362.900581421968], [-5322.310723506973, -3379.500581420558], [-5396.510723507219, -3406.350581421691]]}, {"length": 202.501559498, "source": 134955039, "destination": 134975725, "path": [[-4650.91072350532, -3506.0005814209208], [-4548.310723507143, -3472.3505814220343], [-4481.760723507477, -3477.2005814218687], [-4429.360723506193, -3492.2505814236615], [-4171.660723507386, -3604.100581423353], [-4143.660723507026, -3622.10058142054], [-4121.660723505727, -3641.600581421045], [-4116.160723505402, -3654.10058142146], [-4113.6607235117135, -4095.6005814223317]]}, {"length": 82.7423009946, "source": 134955039, "destination": 134955049, "path": [[-4650.91072350532, -3506.0005814209208], [-4680.560723507198, -3545.600581421837], [-4871.060723509401, -3838.6005814210475]]}, {"length": 98.904861276, "source": 2585900379, "destination": 2585900362, "path": [[-2113.0607235093635, -1931.5005814206643], [-2105.61072351112, -2376.2005814234044]]}, {"length": 8.56210235676, "source": 2585900379, "destination": 2585900364, "path": [[-2113.0607235093635, -1931.5005814206643], [-2113.7107235063013, -1893.0005814219442]]}, {"length": 89.1371415846, "source": 2585900379, "destination": 2585900382, "path": [[-2113.0607235093635, -1931.5005814206643], [-2642.6607235094934, -1935.5505814218077]]}, {"length": 72.6652285567, "source": 134955049, "destination": 1959915242, "path": [[-4871.060723509401, -3838.6005814210475], [-4900.160723508407, -3825.6505814224793], [-4912.210723510669, -3823.850581422761], [-4924.710723507531, -3824.300581420914], [-4935.110723508274, -3826.350581423554], [-4945.410723507848, -3829.7005814236227], [-4955.210723508685, -3834.7005814216573], [-4965.260723508891, -3841.050581421257], [-5004.160723508732, -3889.500581422567], [-5036.0107235078995, -3922.000581422225], [-5052.760723508243, -3935.2005814237145], [-5075.560723511785, -3947.600581422961], [-5128.560723505871, -3973.00058142136], [-5203.660723509529, -3999.650581423708]]}, {"length": 203.609193289, "source": 134955049, "destination": 2080625197, "path": [[-4871.060723509401, -3838.6005814210475], [-4837.2107235081785, -3849.450581423497], [-4833.760723506941, -3853.800581421041], [-4832.510723510097, -3858.0505814209687], [-4834.110723507479, -3863.950581422415], [-4877.410723509001, -3926.300581422737], [-4935.410723511779, -4015.350581422439], [-4985.960723509208, -4072.750581421758], [-5046.310723507475, -4168.1505814210595], [-5079.510723511759, -4230.850581421919], [-5267.0107235073265, -4559.100581420949], [-5289.810723510868, -4616.150581423284], [-5293.160723510937, -4632.900581423627], [-5297.66072350668, -4658.800581420764]]}, {"length": 201.506397132, "source": 134955049, "destination": 134955062, "path": [[-4871.060723509401, -3838.6005814210475], [-5165.210723511393, -4269.650581420592], [-5225.010723506784, -4369.850581422696], [-5284.860723506313, -4474.000581421223], [-5338.760723510915, -4582.40058142323], [-5369.460723507302, -4660.650581421067]]}, {"length": 82.7423009946, "source": 134955049, "destination": 134955039, "path": [[-4871.060723509401, -3838.6005814210475], [-4680.560723507198, -3545.600581421837], [-4650.91072350532, -3506.0005814209208]]}, {"length": 46.0134323007, "source": 2086862890, "destination": 134979230, "path": [[9754.789276492203, -6550.600581423538], [9756.439276493722, -6757.500581421993]]}, {"length": 61.2759701794, "source": 877895724, "destination": 2086854568, "path": [[8962.039276489975, -1215.4505814230276], [8969.289276492986, -1174.3505814223454], [8973.839276492869, -1125.6005814210823], [8973.839276492869, -940.4005814239724]]}, {"length": 118.058536739, "source": 877895724, "destination": 877895789, "path": [[8962.039276489975, -1215.4505814230276], [8260.589276488872, -1217.200581422162]]}, {"length": 79.374821561, "source": 877895724, "destination": 2074057118, "path": [[8962.039276489975, -1215.4505814230276], [9433.639276494432, -1212.950581422234]]}, {"length": 62.2464983701, "source": 877895724, "destination": 2086854575, "path": [[8962.039276489975, -1215.4505814230276], [8953.089276488412, -1250.300581421726], [8948.589276492668, -1294.1005814219864], [8951.239276491662, -1494.5505814232263]]}, {"length": 42.8176690779, "source": 2086862856, "destination": 134979234, "path": [[10018.289276494841, -7244.050581423522], [9763.839276494935, -7243.600581421816]]}, {"length": 48.9765628195, "source": 2086862856, "destination": 134983493, "path": [[10018.289276494841, -7244.050581423522], [10309.339276489027, -7244.600581422845]]}, {"length": 101.255392165, "source": 2086862856, "destination": 2086862902, "path": [[10018.289276494841, -7244.050581423522], [10015.489276490542, -7699.350581422237]]}, {"length": 96.240369926, "source": 2086862856, "destination": 2086862767, "path": [[10018.289276494841, -7244.050581423522], [10020.939276493835, -6811.300581421875]]}, {"length": 7.37717944546, "source": 1930503160, "destination": 1930503170, "path": [[9640.139276491765, -7631.850581422128], [9642.53927649139, -7656.0505814207145], [9642.53927649139, -7664.950581421692]]}, {"length": 255.6367576, "source": 1930503160, "destination": 1930503139, "path": [[9640.139276491765, -7631.850581422128], [9640.539276489335, -7612.1505814228385], [9640.139276491765, -7553.300581420785], [9640.93927649401, -7503.450581420879], [9641.339276491579, -7465.550581422065], [9641.739276489148, -7444.050581423056], [9643.689276494171, -7430.000581422291], [9648.439276489284, -7413.600581422486], [9650.039276493771, -7402.850581421206], [9651.189276489447, -7388.50058142404], [9651.189276489447, -7295.950581422517], [9651.189276489447, -7249.650581421463], [9650.389276494308, -7153.5505814210865], [9650.039276493771, -7052.300581420923], [9649.239276491528, -6982.750581421726], [9657.139276491478, -6935.75058142315], [9657.239276492646, -6878.500581422031], [9605.839276488838, -6835.800581423968], [9198.789276489095, -6841.400581421908], [9168.639276488477, -6859.900581421385]]}, {"length": 11.1521623927, "source": 1930503160, "destination": 1930503165, "path": [[9640.139276491765, -7631.850581422128], [9634.639276491442, -7643.500581423268], [9625.13927649411, -7650.350581421606], [9614.089276489323, -7653.950581421042], [9601.489276491293, -7654.250581420996], [9589.339276494968, -7654.350581422164]]}, {"length": 101.255392165, "source": 2086862902, "destination": 2086862856, "path": [[10015.489276490542, -7699.350581422237], [10018.289276494841, -7244.050581423522]]}, {"length": 7.73243120709, "source": 2086862902, "destination": 2087861329, "path": [[10015.489276490542, -7699.350581422237], [10061.439276491057, -7698.900581420531]]}, {"length": 42.8853936372, "source": 2086862902, "destination": 134979236, "path": [[10015.489276490542, -7699.350581422237], [9760.639276493066, -7698.0005814206725]]}, {"length": 94.3637896421, "source": 1429422148, "destination": 1942315667, "path": [[10175.339276493389, 6292.0994185766685], [10065.43927649517, 6179.299418576534], [9995.38927649013, 6105.849418577946], [9968.83927648895, 6079.799418579058], [9956.989276489025, 6071.999418576724], [9943.639276492888, 6066.849418576936], [9928.889276494601, 6063.14941857633], [9833.9392764899, 6051.099418577622], [9820.539276489626, 6049.399418579071], [9799.939276490477, 6049.449418576103], [9783.93927648824, 6051.599418576359], [9766.889276491496, 6058.449418578249]]}, {"length": 40.8418747968, "source": 1429422148, "destination": 844180741, "path": [[10175.339276493389, 6292.0994185766685], [10267.639276491991, 6369.249418579415], [10310.13927649127, 6409.499418577269], [10329.18927649007, 6433.549418577655]]}, {"length": 96.0837023908, "source": 4720001094, "destination": 4719999032, "path": [[2119.289276492964, -1370.7505814224419], [2118.139276490183, -1584.2005814228344], [2118.739276490089, -1715.2005814224935], [2234.489276489171, -1714.9505814231247]]}, {"length": 237.927721391, "source": 134955091, "destination": 1855078882, "path": [[-5544.160723509605, -5229.100581424007], [-5816.960723507236, -5214.000581421629], [-5990.910723511433, -5195.550581422736], [-6109.3107235095085, -5153.100581424042], [-6200.510723509467, -5153.100581424042], [-6289.010723506294, -5177.450581420828], [-6433.860723511487, -5199.800581422664], [-6530.410723506464, -5193.700581422434], [-6851.860723507742, -5081.850581422742], [-6878.81072350649, -5050.200581422359]]}, {"length": 86.6829202538, "source": 134955091, "destination": 134955099, "path": [[-5544.160723509605, -5229.100581424007], [-5571.160723505386, -5387.100581422999], [-5588.160723505098, -5535.10058142237], [-5595.810723505679, -5616.800581421444]]}, {"length": 129.875594272, "source": 134955091, "destination": 134955062, "path": [[-5544.160723509605, -5229.100581424007], [-5507.160723510651, -5072.10058142249], [-5460.660723507261, -4916.600581420738], [-5369.460723507302, -4660.650581421067]]}, {"length": 69.5313016789, "source": 1428267094, "destination": 1428267171, "path": [[-6790.810723508401, -4441.350581423365], [-6773.560723509319, -4421.150581421784], [-6748.810723507859, -4406.05058142296], [-6719.06072350481, -4397.600581423689], [-6687.310723506812, -4396.600581422661], [-6656.760723508625, -4403.200581421629], [-6630.460723506814, -4416.700581423072], [-6611.0607235074785, -4435.750581421871], [-6600.510723508534, -4458.450581420692], [-6599.9107235086285, -4482.500581421078], [-6609.310723504791, -4505.4505814228205], [-6627.710723506652, -4525.050581420942], [-6653.3107235073885, -4539.300581424044], [-6683.560723509174, -4546.750581422288]]}, {"length": 9.02935281402, "source": 2139783257, "destination": 2139783259, "path": [[3911.9892764887254, -1327.4005814238876], [3958.139276491579, -1306.70058142357]]}, {"length": 8.15118959017, "source": 2139783258, "destination": 135047491, "path": [[7343.589276494811, -7764.650581421506], [7342.9892764949045, -7728.000581423089]]}, {"length": 51.1334554045, "source": 2139783258, "destination": 1933540860, "path": [[7343.589276494811, -7764.650581421506], [7410.989276493751, -7762.850581421788], [7592.539276494392, -7760.700581421532], [7647.389276492333, -7759.90058142284]]}, {"length": 296.365469516, "source": 2139783258, "destination": 1933603725, "path": [[7343.589276494811, -7764.650581421506], [7345.989276494436, -7908.600581423287], [7347.139276490111, -8096.900581421096], [7345.539276492729, -8121.700581423142], [7341.939276493293, -8143.150581421565], [7333.039276488762, -8168.1005814218115], [7317.189276491831, -8194.80058142119], [7298.189276490064, -8215.10058142394], [7276.289276489933, -8233.300581423464], [7254.739276490341, -8247.90058142355], [7230.039276493017, -8261.200581422656], [7196.039276493593, -8271.700581421015], [7160.239276494451, -8277.900581422415], [7122.839276490822, -8280.350581422625], [7075.189276491756, -8281.650581423604], [6973.88927649456, -8282.50058142288], [6935.18927648995, -8281.250581422484], [6899.28927648964, -8274.150581421225], [6861.239276489073, -8260.300581422796], [6824.7392764888555, -8240.65058142054], [6801.0392764890075, -8221.50058142057], [6774.7392764943015, -8190.850581421217], [6758.739276492065, -8165.350581421649], [6749.539276491134, -8138.000581421778], [6746.439276490435, -8099.750581422427], [6746.8392764951095, -8040.000581420514], [6746.8392764951095, -7941.950581422219], [6743.339276489734, -7772.750581423793]]}, {"length": 101.023726785, "source": 2139783258, "destination": 1933603725, "path": [[7343.589276494811, -7764.650581421506], [7203.2892764895, -7765.400581423165], [7065.839276492625, -7767.950581420991], [6914.339276491432, -7770.90058142349], [6743.339276489734, -7772.750581423793]]}, {"length": 9.02935281402, "source": 2139783259, "destination": 2139783257, "path": [[3958.139276491579, -1306.70058142357], [3911.9892764887254, -1327.4005814238876]]}, {"length": 141.67469515, "source": 2139783259, "destination": 1429422315, "path": [[3958.139276491579, -1306.70058142357], [3926.3392764894434, -1258.2005814216757], [3884.2392764948386, -1178.8505814216421], [3850.589276488847, -1104.7005814219801], [3828.9392764951913, -1040.0005814226176], [3812.439276494217, -972.3505814207556], [3801.989276489337, -898.2005814210936], [3797.9392764881936, -787.4505814235988], [3796.739276488381, -689.3505814211665]]}, {"length": 23.5948464261, "source": 2139783259, "destination": 2139783260, "path": [[3958.139276491579, -1306.70058142357], [4015.239276490945, -1287.100581421896], [4083.03927649456, -1258.700581423966]]}, {"length": 17.8962957569, "source": 2139783260, "destination": 1429422611, "path": [[4083.03927649456, -1258.700581423966], [4087.2392764939036, -1264.9005814218128], [4137.439276490795, -1327.8005814214566]]}, {"length": 10.1953240017, "source": 2139783260, "destination": 1942240505, "path": [[4083.03927649456, -1258.700581423966], [4121.139276492158, -1243.050581422267], [4136.489276490352, -1237.1505814208206]]}, {"length": 23.5948464261, "source": 2139783260, "destination": 2139783259, "path": [[4083.03927649456, -1258.700581423966], [4015.239276490945, -1287.100581421896], [3958.139276491579, -1306.70058142357]]}, {"length": 29.026653904, "source": 2139783261, "destination": 1962177665, "path": [[5268.489276488708, -2725.000581421], [5265.339276490977, -2594.500581423631]]}, {"length": 36.5834152514, "source": 2139783261, "destination": 1942220078, "path": [[5268.489276488708, -2725.000581421], [5051.139276488925, -2722.550581420791]]}, {"length": 29.106961955, "source": 2139783261, "destination": 2271725710, "path": [[5268.489276488708, -2725.000581421], [5441.439276488325, -2725.050581421584]]}, {"length": 43.7493307889, "source": 2139783262, "destination": 1932196426, "path": [[5770.839276493689, -7329.300581421449], [5770.539276490183, -7412.150581423304], [5771.739276489996, -7450.050581422119], [5771.739276489996, -7494.850581423407], [5769.389276494508, -7519.250581420778], [5768.239276491727, -7525.9005814238835]]}, {"length": 8.08346076323, "source": 2139783262, "destination": 1932196355, "path": [[5770.839276493689, -7329.300581421449], [5770.939276494857, -7292.950581422985]]}, {"length": 80.0395131877, "source": 2139783262, "destination": 1932196380, "path": [[5770.839276493689, -7329.300581421449], [5719.739276493385, -7329.4505814232025], [5482.439276491391, -7332.500581423318], [5309.539276488806, -7336.100581422756], [5295.589276492763, -7338.300581423596]]}, {"length": 45.7115202876, "source": 2139783262, "destination": 1933540027, "path": [[5770.839276493689, -7329.300581421449], [5885.489276494127, -7327.650581423484], [6042.4392764915065, -7325.500581423228]]}, {"length": 11.1838613129, "source": 2139783264, "destination": 135010418, "path": [[4660.739276488357, -1241.9505814236231], [4594.289276489861, -1241.9005814230388]]}, {"length": 19.2886333381, "source": 2139783264, "destination": 1942240487, "path": [[4660.739276488357, -1241.9505814236231], [4654.139276489388, -1200.5005814224035], [4595.489276489672, -1193.20058142236]]}, {"length": 46.5006268204, "source": 2139783264, "destination": 1942240501, "path": [[4660.739276488357, -1241.9505814236231], [4664.039276491394, -1295.1505814235986], [4869.939276488822, -1293.3005814232956]]}, {"length": 34.7945805667, "source": 2139783264, "destination": 2573122335, "path": [[4660.739276488357, -1241.9505814236231], [4867.4392764951335, -1244.8005814214014]]}, {"length": 94.016986307, "source": 135086177, "destination": 135018864, "path": [[6025.6892764911645, 2284.6494185770894], [5900.039276490077, 2229.599418576811], [5820.489276494811, 2196.6994185760313], [5737.239276491835, 2168.349418578686], [5649.989276491851, 2146.9994185778773], [5514.489276492895, 2121.1494185777724]]}, {"length": 30.2096038138, "source": 135086177, "destination": 1962186585, "path": [[6025.6892764911645, 2284.6494185770894], [6062.43927649075, 2247.549418576966], [6081.23927649018, 2229.2994185768575], [6101.339276490591, 2216.0994185789204], [6125.489276492146, 2203.8994185784586], [6154.68927649232, 2193.9994185764535]]}, {"length": 98.4206046136, "source": 877895779, "destination": 2573122344, "path": [[6093.239276488304, -1222.750581423071], [5944.439276490243, -1226.2005814207555], [5890.939276490315, -1231.850581422833], [5850.739276489492, -1244.750581420817], [5836.039276488236, -1264.650581422444], [5823.83927649488, -1299.5505814217267], [5827.689276493686, -1496.6005814223138]]}, {"length": 121.635149404, "source": 877895779, "destination": 877895781, "path": [[6093.239276488304, -1222.750581423071], [6815.9392764926, -1220.750581421015]]}, {"length": 59.5901925626, "source": 877895779, "destination": 2086854574, "path": [[6093.239276488304, -1222.750581423071], [6091.489276492723, -954.800581421722]]}, {"length": 121.584530976, "source": 877895781, "destination": 877895784, "path": [[6815.9392764926, -1220.750581421015], [7538.339276493389, -1218.9505814212964]]}, {"length": 59.6344154022, "source": 877895781, "destination": 2086854466, "path": [[6815.9392764926, -1220.750581421015], [6814.439276489282, -952.6005814208816]]}, {"length": 121.635149404, "source": 877895781, "destination": 877895779, "path": [[6815.9392764926, -1220.750581421015], [6093.239276488304, -1222.750581423071]]}, {"length": 59.9903297747, "source": 877895781, "destination": 2086854436, "path": [[6815.9392764926, -1220.750581421015], [6817.48927649295, -1490.5005814220829]]}, {"length": 60.9350153739, "source": 877895784, "destination": 2086854468, "path": [[7538.339276493389, -1218.9505814212964], [7538.9392764932945, -1492.950581422292]]}, {"length": 59.6901574778, "source": 877895784, "destination": 2086854422, "path": [[7538.339276493389, -1218.9505814212964], [7536.8892764942075, -950.550581421794]]}, {"length": 60.7585281924, "source": 877895784, "destination": 2086854462, "path": [[7538.339276493389, -1218.9505814212964], [7899.339276491446, -1218.1005814220214]]}, {"length": 121.584530976, "source": 877895784, "destination": 877895781, "path": [[7538.339276493389, -1218.9505814212964], [6815.9392764926, -1220.750581421015]]}, {"length": 105.28639029, "source": 1954283626, "destination": 134983511, "path": [[9792.789276488635, -667.850581422158], [10418.33927649094, -665.6005814207333]]}, {"length": 118.058536739, "source": 877895789, "destination": 877895724, "path": [[8260.589276488872, -1217.200581422162], [8962.039276489975, -1215.4505814230276]]}, {"length": 61.4582101088, "source": 877895789, "destination": 2086854509, "path": [[8260.589276488872, -1217.200581422162], [8262.23927649039, -1493.5505814221983]]}, {"length": 60.8007154155, "source": 877895789, "destination": 2086854462, "path": [[8260.589276488872, -1217.200581422162], [7899.339276491446, -1218.1005814220214]]}, {"length": 60.6575751806, "source": 877895789, "destination": 2086854421, "path": [[8260.589276488872, -1217.200581422162], [8258.989276491491, -944.4505814215631]]}, {"length": 229.835636967, "source": 1429422192, "destination": 3935046930, "path": [[7373.239276489585, 2106.2494185777323], [7312.889276491319, 1852.299418576564], [7296.489276491513, 1783.2994185766893], [7221.639276494329, 1619.3994185762506], [7195.039276489013, 1532.3494185786046], [7192.439276494156, 1396.4994185791113], [7166.289276490545, 1331.9994185785333], [7063.639276488231, 1273.4994185770177], [6923.689276490563, 1241.1494185791128], [6882.489276492265, 1239.1494185770568]]}, {"length": 47.918632248, "source": 1429422192, "destination": 1429422189, "path": [[7373.239276489585, 2106.2494185777323], [7342.73927648843, 2114.7494185775886], [7128.339276491147, 2138.4494185774374], [7093.589276493617, 2143.949418577762]]}, {"length": 23.6236669926, "source": 1429422192, "destination": 1962191349, "path": [[7373.239276489585, 2106.2494185777323], [7385.039276492478, 2212.0994185783616]]}, {"length": 44.7148392487, "source": 1429422192, "destination": 1429422197, "path": [[7373.239276489585, 2106.2494185777323], [7415.789276493001, 2098.9494185776894], [7535.439276495026, 2098.9494185776894], [7545.0892764905575, 2092.8994185780425], [7544.73927649002, 2067.249418576722], [7551.289276491957, 2061.3494185788286], [7597.039276490136, 2061.9494185787344]]}, {"length": 16.4125763195, "source": 2069376742, "destination": 2069376776, "path": [[-5581.010723510361, 5935.349418578539], [-5581.010723510361, 5861.549418579415]]}, {"length": 13.240004544, "source": 2069376742, "destination": 135031620, "path": [[-5581.010723510361, 5935.349418578539], [-5659.660723509319, 5934.899418576833]]}, {"length": 94.592999476, "source": 2069376742, "destination": 3299414702, "path": [[-5581.010723510361, 5935.349418578539], [-5019.110723509357, 5937.949418576949]]}, {"length": 14.9121172819, "source": 2069376742, "destination": 2069376750, "path": [[-5581.010723510361, 5935.349418578539], [-5582.0607235048665, 6002.3994185769425]]}, {"length": 44.7148392487, "source": 1429422197, "destination": 1429422192, "path": [[7597.039276490136, 2061.9494185787344], [7551.289276491957, 2061.3494185788286], [7544.73927649002, 2067.249418576722], [7545.0892764905575, 2092.8994185780425], [7535.439276495026, 2098.9494185776894], [7415.789276493001, 2098.9494185776894], [7373.239276489585, 2106.2494185777323]]}, {"length": 158.761551823, "source": 1429422197, "destination": 2086776737, "path": [[7597.039276490136, 2061.9494185787344], [7598.639276494623, 1577.6994185792148], [7902.039276494577, 1576.4994185794023]]}, {"length": 7.10431721391, "source": 1429422197, "destination": 135072531, "path": [[7597.039276490136, 2061.9494185787344], [7596.839276494904, 2093.8994185790707]]}, {"length": 2.18969762575, "source": 2289072832, "destination": 2289072833, "path": [[-7976.810723505423, 6363.74941857909], [-7989.810723508128, 6363.74941857909]]}, {"length": 23.105859025, "source": 2289072832, "destination": 2289072861, "path": [[-7976.810723505423, 6363.74941857909], [-7976.660723507222, 6349.099418578418], [-7976.460723504886, 6342.399418578281], [-7975.360723506242, 6335.899418576929], [-7973.160723508954, 6327.74941857761], [-7972.260723505542, 6321.599418576796], [-7972.260723505542, 6315.599418577733], [-7973.810723505892, 6310.449418577946], [-7976.860723509561, 6303.099418577318], [-7986.360723506891, 6284.949418578379], [-7986.110723507522, 6261.949418576051]]}, {"length": 11.3552707981, "source": 2289072832, "destination": 2289072822, "path": [[-7976.810723505423, 6363.74941857909], [-7977.110723508929, 6394.399418578445], [-7997.51072350574, 6407.749418578134]]}, {"length": 268.661193783, "source": 2331404993, "destination": 2495519674, "path": [[-5095.360723508691, 939.7494185776623], [-5131.110723510801, 984.6994185771507], [-5289.360723509162, 993.8494185774971], [-5444.260723507455, 1014.149418576693], [-5751.360723508014, 1027.8494185769205], [-5813.710723508337, 1028.3494185792108], [-5858.660723511377, 1020.7494185792143], [-5898.860723505095, 1008.5494185787525], [-5939.760723506993, 989.7994185763537], [-5995.260723508977, 963.9494185762487], [-6019.3607235063955, 947.1994185794586], [-6040.160723507881, 928.8994185787658], [-6057.610723509299, 910.6494185786573], [-6071.660723506511, 887.2994185793459], [-6084.6107235050795, 858.8494185772788], [-6096.710723511478, 822.2994185764776], [-6102.060723506497, 783.7494185771732], [-6102.060723506497, 638.5994185791333], [-6102.910723505773, 504.0494185770683]]}, {"length": 34.8765954704, "source": 2331404993, "destination": 134968179, "path": [[-5095.360723508691, 939.7494185776623], [-4888.160723510282, 941.1994185768435]]}, {"length": 85.9622382889, "source": 2331404993, "destination": 134968171, "path": [[-5095.360723508691, 939.7494185776623], [-5606.060723508222, 942.9994185765622]]}, {"length": 121.625961093, "source": 2331404993, "destination": 3496300573, "path": [[-5095.360723508691, 939.7494185776623], [-5092.760723506728, 392.8494185778675]]}, {"length": 88.0719893092, "source": 2069376743, "destination": 2069376796, "path": [[-5070.710723508399, 4950.39941857911], [-5057.760723509829, 4962.399418577234], [-5004.36072351107, 5114.399418577164], [-4998.960723504808, 5129.599418577158], [-5001.660723507939, 5142.799418578647], [-5016.410723506226, 5159.0494185767], [-5040.5607235077805, 5178.34941857842], [-5060.660723508192, 5186.449418577155], [-5088.810723506754, 5192.549418577386], [-5106.260723508171, 5194.599418576473], [-5126.360723508583, 5198.649418577616], [-5134.410723506733, 5206.799418576935], [-5131.760723507739, 5217.949418579337], [-5118.310723510433, 5226.049418578072], [-5104.910723510158, 5241.299418578648], [-5098.210723510021, 5253.449418578526], [-5095.510723506891, 5266.649418576463]]}, {"length": 80.1661251142, "source": 2069376743, "destination": 2069376844, "path": [[-5070.710723508399, 4950.39941857911], [-5071.4107235094725, 4987.499418579233], [-5071.210723507136, 5087.249418576079], [-5074.060723508466, 5108.299418576934], [-5079.460723507623, 5124.549418578539], [-5095.510723506891, 5139.799418579116], [-5129.060723511713, 5147.89941857785], [-5189.41072350998, 5161.099418579341], [-5226.960723511809, 5166.149418577959], [-5255.11072351037, 5174.299418577277], [-5284.610723506944, 5181.399418578536], [-5306.760723506442, 5179.349418579449]]}, {"length": 7.91265820428, "source": 2069376743, "destination": 2069376751, "path": [[-5070.710723508399, 4950.39941857911], [-5064.510723506999, 4934.949418576196], [-5056.660723511186, 4916.449418576718]]}, {"length": 113.473889976, "source": 1428267152, "destination": 134982563, "path": [[-6754.91072350809, -4534.850581421779], [-6832.710723507773, -4537.450581423741], [-7359.2107235072035, -4664.100581422304], [-7396.160723509127, -4646.100581421564]]}, {"length": 23.3903569837, "source": 1428267152, "destination": 1428267094, "path": [[-6754.91072350809, -4534.850581421779], [-6779.960723505951, -4516.6005814216705], [-6795.310723511249, -4493.050581423575], [-6799.060723508887, -4466.900581423516], [-6790.810723508401, -4441.350581423365]]}, {"length": 67.0174222701, "source": 2086723529, "destination": 2086723538, "path": [[3580.6892764895792, 1807.1994185788753], [3182.539276494367, 1808.2494185769349]]}, {"length": 11.6542668363, "source": 135086232, "destination": 4224850360, "path": [[7688.339276491262, 4372.399418578254], [7643.6892764917275, 4332.349418579184]]}, {"length": 12.492579443, "source": 135086232, "destination": 844180730, "path": [[7688.339276491262, 4372.399418578254], [7735.539276488624, 4329.049418576147]]}, {"length": 16.1412570733, "source": 135086232, "destination": 135086398, "path": [[7688.339276491262, 4372.399418578254], [7627.339276488954, 4428.399418578976]]}, {"length": 12.5551814391, "source": 1428267171, "destination": 1428267152, "path": [[-6683.560723509174, -4546.750581422288], [-6708.4107235118045, -4547.3505814221935], [-6732.6607235074225, -4543.30058142105], [-6754.91072350809, -4534.850581421779]]}, {"length": 121.209207194, "source": 1428267171, "destination": 1855078882, "path": [[-6683.560723509174, -4546.750581422288], [-6908.61072350657, -4944.050581421778], [-6908.61072350657, -5015.100581420739], [-6878.81072350649, -5050.200581422359]]}, {"length": 121.625961093, "source": 3496300573, "destination": 2331404993, "path": [[-5092.760723506728, 392.8494185778675], [-5095.360723508691, 939.7494185776623]]}, {"length": 15.3844715759, "source": 3496300573, "destination": 2423705885, "path": [[-5092.760723506728, 392.8494185778675], [-5154.660723505344, 392.7494185766989], [-5184.160723509023, 392.649418579083]]}, {"length": 40.4712319077, "source": 3496300573, "destination": 2217933213, "path": [[-5092.760723506728, 392.8494185778675], [-4852.310723507003, 393.3494185766051]]}, {"length": 125.362157179, "source": 3496300573, "destination": 2331404989, "path": [[-5092.760723506728, 392.8494185778675], [-5090.110723507734, -170.85058142285448]]}, {"length": 53.2629232552, "source": 135036835, "destination": 1433125600, "path": [[-7074.160723504974, 3758.8494185776253], [-7075.560723507124, 3998.3494185769077]]}, {"length": 132.913537891, "source": 135036835, "destination": 134960025, "path": [[-7074.160723504974, 3758.8494185776253], [-7078.510723509624, 3161.1994185780645]]}, {"length": 8.40808558777, "source": 135036835, "destination": 1965661573, "path": [[-7074.160723504974, 3758.8494185776253], [-7124.110723509602, 3758.7994185770413]]}, {"length": 60.9402658584, "source": 1429422278, "destination": 135074776, "path": [[3915.839276494637, 136.54941857765834], [3930.4892764917554, -137.2505814210001]]}, {"length": 12.4042506219, "source": 1429422278, "destination": 2080617428, "path": [[3915.839276494637, 136.54941857765834], [3989.5392764890403, 136.59941857824265]]}, {"length": 21.7292251904, "source": 1429422278, "destination": 2080617404, "path": [[3915.839276494637, 136.54941857765834], [3786.7392764923125, 136.34941857887384]]}, {"length": 38.913337625, "source": 3496300577, "destination": 3146411802, "path": [[-4415.810723507719, -442.4005814236409], [-4647.010723509482, -442.90058142237854]]}, {"length": 122.144238296, "source": 1429422280, "destination": 1429422281, "path": [[2470.6392764883844, 135.6994185783833], [3196.3392764922105, 135.34941857784588]]}, {"length": 61.8915675076, "source": 1429422280, "destination": 135074770, "path": [[2470.6392764883844, 135.6994185783833], [2471.9392764893655, -142.6005814231246]]}, {"length": 121.454404948, "source": 1429422280, "destination": 1429422282, "path": [[2470.6392764883844, 135.6994185783833], [1749.0392764898388, 134.69941857735535]]}, {"length": 122.144238296, "source": 1429422281, "destination": 1429422280, "path": [[3196.3392764922105, 135.34941857784588], [2470.6392764883844, 135.6994185783833]]}, {"length": 99.3718240935, "source": 1429422281, "destination": 2080617404, "path": [[3196.3392764922105, 135.34941857784588], [3786.7392764923125, 136.34941857887384]]}, {"length": 61.2241538287, "source": 1429422281, "destination": 135074774, "path": [[3196.3392764922105, 135.34941857784588], [3197.0392764932853, -139.95058142057815]]}, {"length": 60.0675016906, "source": 1429422281, "destination": 134997383, "path": [[3196.3392764922105, 135.34941857784588], [3189.489276493873, 405.39941857886674]]}, {"length": 121.454404948, "source": 1429422282, "destination": 1429422280, "path": [[1749.0392764898388, 134.69941857735535], [2470.6392764883844, 135.6994185783833]]}, {"length": 58.9854704138, "source": 1429422282, "destination": 134990148, "path": [[1749.0392764898388, 134.69941857735535], [1743.4392764883455, 399.89941857854205]]}, {"length": 60.7463633426, "source": 135019213, "destination": 2086776745, "path": [[8251.33927649091, 425.8994185768472], [8252.83927649423, 152.7494185786793]]}, {"length": 121.608545859, "source": 135019213, "destination": 135016270, "path": [[8251.33927649091, 425.8994185768472], [7528.839276488952, 422.89941857731606]]}, {"length": 6.67254952338, "source": 135019213, "destination": 135100487, "path": [[8251.33927649091, 425.8994185768472], [8250.839276492172, 455.8994185792642]]}, {"length": 23.4546241934, "source": 1429422294, "destination": 135074776, "path": [[3791.1392764939933, -137.80058142387475], [3930.4892764917554, -137.2505814210001]]}, {"length": 60.972867897, "source": 1429422294, "destination": 2080617404, "path": [[3791.1392764939933, -137.80058142387475], [3786.7392764923125, 136.34941857887384]]}, {"length": 52.8235281076, "source": 135110872, "destination": 2573122344, "path": [[5832.339276494736, -1734.1005814230925], [5827.689276493686, -1496.6005814223138]]}, {"length": 44.9710454447, "source": 135110872, "destination": 2086854369, "path": [[5832.339276494736, -1734.1005814230925], [6099.539276490873, -1733.1005814220646]]}, {"length": 106.192102585, "source": 135110872, "destination": 135107417, "path": [[5832.339276494736, -1734.1005814230925], [5834.839276488424, -2211.6005814218906]]}, {"length": 11.3040954855, "source": 134971609, "destination": 134971606, "path": [[-11723.560723510218, 394.09941857826425], [-11656.410723510646, 394.9994185781236]]}, {"length": 48.8592005625, "source": 134971609, "destination": 2293202887, "path": [[-11723.560723510218, 394.09941857826425], [-11724.310723508324, 613.7994185770879]]}, {"length": 12.3907444699, "source": 2311060175, "destination": 2311060177, "path": [[-4093.210723510765, 3669.6994185767553], [-4117.360723505215, 3669.599418579139], [-4166.810723511106, 3668.69941857928]]}, {"length": 96.9179042826, "source": 2311060175, "destination": 2311060171, "path": [[-4093.210723510765, 3669.6994185767553], [-4045.8107235110674, 3669.849418578508], [-3853.7607235085147, 3671.099418578905], [-3517.4607235077815, 3671.8494185770114]]}, {"length": 47.7072586793, "source": 2311060175, "destination": 2251802364, "path": [[-4093.210723510765, 3669.6994185767553], [-4093.010723508428, 3634.8494185780564], [-4091.860723505647, 3466.2994185765683], [-4090.9607235093404, 3455.1994185783033]]}, {"length": 13.2325145051, "source": 2311060175, "destination": 2251802367, "path": [[-4093.210723510765, 3669.6994185767553], [-4093.610723508334, 3729.1994185792987]]}, {"length": 120.963789063, "source": 1429422301, "destination": 2086723498, "path": [[5366.5892764911405, -406.6005814209461], [5364.839276488454, -132.05058142062853], [5360.18927649451, 137.2994185793175]]}, {"length": 61.1580950293, "source": 1429422301, "destination": 4719616940, "path": [[5366.5892764911405, -406.6005814209461], [5368.339276493827, -681.6005814229698]]}, {"length": 122.524942678, "source": 1429422301, "destination": 1429422302, "path": [[5366.5892764911405, -406.6005814209461], [4638.639276492995, -411.05058142321127]]}, {"length": 60.9460334749, "source": 1429422302, "destination": 135010416, "path": [[4638.639276492995, -411.05058142321127], [4638.339276489489, -685.1005814212385]]}, {"length": 107.903546949, "source": 1429422302, "destination": 2080617362, "path": [[4638.639276492995, -411.05058142321127], [3997.5392764901585, -412.25058142302373]]}, {"length": 122.524942678, "source": 1429422302, "destination": 1429422301, "path": [[4638.639276492995, -411.05058142321127], [5366.5892764911405, -406.6005814209461]]}, {"length": 61.4593832832, "source": 1429422302, "destination": 135010413, "path": [[4638.639276492995, -411.05058142321127], [4641.4392764901895, -134.70058142317498]]}, {"length": 100.102289339, "source": 1429422303, "destination": 1429422305, "path": [[3793.8392764900186, -414.35058142269554], [3199.089276492373, -415.1505814213863]]}, {"length": 61.5036542512, "source": 1429422303, "destination": 1429422294, "path": [[3793.8392764900186, -414.35058142269554], [3791.1392764939933, -137.80058142387475]]}, {"length": 61.2240066197, "source": 1429422304, "destination": 2573122320, "path": [[3937.3392764900927, -412.3505814206396], [3937.289276493061, -687.6505814226164]]}, {"length": 10.1318836374, "source": 1429422304, "destination": 2080617362, "path": [[3937.3392764900927, -412.3505814206396], [3997.5392764901585, -412.25058142302373]]}, {"length": 121.608471746, "source": 1429422305, "destination": 1429422306, "path": [[3199.089276492373, -415.1505814213863], [2476.589276490415, -420.05058142180474]]}, {"length": 61.5913690731, "source": 1429422305, "destination": 135043180, "path": [[3199.089276492373, -415.1505814213863], [3200.339276489217, -692.1005814213288]]}, {"length": 61.2028048256, "source": 1429422305, "destination": 135074774, "path": [[3199.089276492373, -415.1505814213863], [3197.0392764932853, -139.95058142057815]]}, {"length": 100.102289339, "source": 1429422305, "destination": 1429422303, "path": [[3199.089276492373, -415.1505814213863], [3793.8392764900186, -414.35058142269554]]}, {"length": 121.608471746, "source": 1429422306, "destination": 1429422305, "path": [[2476.589276490415, -420.05058142180474], [3199.089276492373, -415.1505814213863]]}, {"length": 60.6575751806, "source": 1429422306, "destination": 135043178, "path": [[2476.589276490415, -420.05058142180474], [2478.3392764931023, -692.8005814224036]]}, {"length": 121.906188731, "source": 1429422306, "destination": 1429422307, "path": [[2476.589276490415, -420.05058142180474], [1752.3392764928758, -426.35058142082016]]}, {"length": 121.906188731, "source": 1429422307, "destination": 1429422306, "path": [[1752.3392764928758, -426.35058142082016], [2476.589276490415, -420.05058142180474]]}, {"length": 62.5253336162, "source": 1429422307, "destination": 135074767, "path": [[1752.3392764928758, -426.35058142082016], [1751.8892764911698, -344.25058142062426], [1750.789276492526, -145.20058142153403]]}, {"length": 236.342115303, "source": 134959142, "destination": 2291254721, "path": [[-9295.810723507713, 3148.4494185782805], [-9293.01072351052, 3326.4994185771], [-9292.91072350935, 3346.8494185768805], [-9294.3107235115, 3366.649418577339], [-9295.310723508976, 3386.4994185783817], [-9296.11072351122, 3419.2994185779926], [-9296.760723508158, 3450.6494185784222], [-9299.91072350589, 3705.64941857765], [-9301.610723511545, 3946.049418576791], [-9301.46072350624, 4211.099418576225]]}, {"length": 7.86189196666, "source": 134959142, "destination": 2282972957, "path": [[-9295.810723507713, 3148.4494185782805], [-9295.460723507176, 3113.099418577292]]}, {"length": 41.3920144882, "source": 134959142, "destination": 2282972945, "path": [[-9295.810723507713, 3148.4494185782805], [-9145.96072350804, 3149.049418578187], [-9049.9107235118, 3149.4494185793087]]}, {"length": 121.521061418, "source": 135019217, "destination": 135016275, "path": [[8257.339276489973, -669.1005814225548], [7535.339276493858, -672.6005814208236]]}, {"length": 61.2357822222, "source": 135019217, "destination": 2086854421, "path": [[8257.339276489973, -669.1005814225548], [8258.989276491491, -944.4505814215631]]}, {"length": 61.0580240795, "source": 135019217, "destination": 2086854438, "path": [[8257.339276489973, -669.1005814225548], [8255.539276490254, -394.5505814222372]]}, {"length": 99.8090606007, "source": 1429422312, "destination": 1942259848, "path": [[5675.989276490156, -615.3505814232574], [5653.539276494257, -581.9005814231559], [5644.189276495126, -573.8005814208691], [5614.689276491446, -557.5505814228165], [5585.189276494873, -540.300581423736], [5556.989276492175, -516.9505814208719], [5535.539276493751, -494.60058142258845], [5516.789276491352, -470.25058142224907], [5511.389276492196, -435.75058142053535], [5515.089276492801, -406.6005814209461], [5524.489276488965, -378.20058142301605], [5542.239276493888, -353.55058142272355], [5571.739276490462, -333.2505814235276], [5607.989276491309, -310.9005814216914], [5641.489276491995, -291.650581420555], [5680.0392764912995, -266.5505814221092]]}, {"length": 79.6262248046, "source": 1429422312, "destination": 1942259848, "path": [[5675.989276490156, -615.3505814232574], [5643.88927649162, -501.4005814238942], [5629.439276489734, -446.90058142293765], [5632.089276488728, -386.00058142179705], [5649.539276490145, -331.2005814208874], [5680.0392764912995, -266.5505814221092]]}, {"length": 27.6622864284, "source": 1429422312, "destination": 1429422318, "path": [[5675.989276490156, -615.3505814232574], [5681.039276488775, -639.6505814230125], [5691.089276488981, -739.1505814240418]]}, {"length": 100.380831062, "source": 1429422315, "destination": 135043180, "path": [[3796.739276488381, -689.3505814211665], [3200.339276489217, -692.1005814213288]]}, {"length": 61.1592002781, "source": 1429422315, "destination": 1429422303, "path": [[3796.739276488381, -689.3505814211665], [3793.8392764900186, -414.35058142269554]]}, {"length": 27.6622864284, "source": 1429422318, "destination": 1429422312, "path": [[5691.089276488981, -739.1505814240418], [5681.039276488775, -639.6505814230125], [5675.989276490156, -615.3505814232574]]}, {"length": 27.8598874092, "source": 1429422318, "destination": 1429422346, "path": [[5691.089276488981, -739.1505814240418], [5682.039276493356, -812.1005814238913], [5671.98927649315, -842.450581423293], [5663.939276495001, -862.2505814237513]]}, {"length": 25.0073873039, "source": 1429422318, "destination": 1279884627, "path": [[5691.089276488981, -739.1505814240418], [5730.18927649116, -740.700581420839], [5758.339276489722, -746.0005814223791], [5790.439276488258, -759.6505814220222], [5811.539276493249, -765.000581420594], [5832.5892764941045, -762.2505814239844]]}, {"length": 61.5121709068, "source": 3009732847, "destination": 2089552574, "path": [[-3278.3607235060686, -1507.7505814211634], [-3023.810723504994, -1511.000581423616], [-2921.5107235103233, -1543.4005814221052]]}, {"length": 577.820361098, "source": 135020785, "destination": 135031769, "path": [[-11165.060723506314, -2306.9005814235766], [-10814.160723505494, -2379.100581421767], [-10710.160723505169, -2401.6005814218033], [-10656.66072350524, -2421.600581421046], [-10619.160723507548, -2442.100581422579], [-10584.660723509387, -2467.600581422147], [-10549.160723506646, -2504.1005814223636], [-10088.160723505269, -3190.100581420552], [-10066.160723511075, -3230.6005814213277], [-10052.160723510895, -3276.6005814224286], [-10049.160723511362, -3323.600581421005], [-10056.160723507901, -3370.100581420843], [-10074.160723505087, -3415.1005814209157], [-10095.660723507648, -3449.1005814238915], [-10130.16072350581, -3488.1005814213495], [-10164.160723505232, -3515.600581422973], [-10202.660723507506, -3539.100581424037], [-10246.660723510104, -3559.1005814232803], [-10587.660723508918, -3659.6005814217847], [-10644.660723507115, -3668.1005814216405], [-10714.160723509282, -3669.600581421406], [-11382.310723504928, -3666.0005814219685]]}, {"length": 63.6743027257, "source": 135020785, "destination": 4615944723, "path": [[-11165.060723506314, -2306.9005814235766], [-11092.210723511187, -2094.700581423581], [-11065.810723508206, -2045.8005814205649], [-11055.560723505663, -2033.8505814230246]]}, {"length": 204.749949441, "source": 135020785, "destination": 2214680668, "path": [[-11165.060723506314, -2306.9005814235766], [-11797.860723511632, -2181.500581421858], [-11832.710723510332, -2173.450581423708], [-11875.36072350781, -2170.3005814224243], [-11929.960723506383, -2168.9505814208587], [-12358.460723511655, -2165.8005814231274]]}, {"length": 166.736499414, "source": 135020785, "destination": 135038393, "path": [[-11165.060723506314, -2306.9005814235766], [-11370.61072351031, -2934.5005814214173], [-11378.360723504955, -2981.2505814206247], [-11382.560723511404, -3037.2005814207623]]}, {"length": 61.8923684201, "source": 135019219, "destination": 134934056, "path": [[8263.839276494877, -1768.100581422516], [8266.089276489198, -2046.4005814240238]]}, {"length": 116.214929118, "source": 135019219, "destination": 135022772, "path": [[8263.839276494877, -1768.100581422516], [8954.339276492363, -1765.1005814229848]]}, {"length": 61.0578026651, "source": 135019219, "destination": 2086854509, "path": [[8263.839276494877, -1768.100581422516], [8262.23927649039, -1493.5505814221983]]}, {"length": 19.0032185855, "source": 3009732857, "destination": 2587024976, "path": [[1276.5392764890748, -4324.100581420964], [1276.739276491412, -4238.650581420699]]}, {"length": 154.580341449, "source": 3009732857, "destination": 2587024976, "path": [[1276.5392764890748, -4324.100581420964], [1681.1392764921607, -4322.700581422368], [1680.589276489286, -4239.400581422359], [1276.739276491412, -4238.650581420699]]}, {"length": 1.21205445874, "source": 3009732857, "destination": 2587024992, "path": [[1276.5392764890748, -4324.100581420964], [1276.739276491412, -4329.5505814207045]]}, {"length": 86.0340753963, "source": 3009732864, "destination": 2587024973, "path": [[710.439276488728, -4532.450581422154], [710.039276491159, -4187.350581421611], [711.3892764891716, -4145.600581423992]]}, {"length": 252.339860721, "source": 135094533, "destination": 135090896, "path": [[-1123.1607235089314, -6096.600581422252], [-2622.6607235102506, -6102.1005814225755]]}, {"length": 55.8200965697, "source": 135094533, "destination": 1916976465, "path": [[-1123.1607235089314, -6096.600581422252], [-1122.6607235101937, -6347.60058142092]]}, {"length": 53.851909414, "source": 135094533, "destination": 1483977762, "path": [[-1123.1607235089314, -6096.600581422252], [-1123.9107235070378, -5854.450581423976]]}, {"length": 157.403404458, "source": 135094533, "destination": 1483977772, "path": [[-1123.1607235089314, -6096.600581422252], [-187.81072351004013, -6093.000581422813]]}, {"length": 124.206545589, "source": 2280505606, "destination": 2287972808, "path": [[-9384.410723505709, 4870.699418578539], [-9297.010723507527, 4872.099418577136], [-9273.060723508308, 4871.899418578351], [-9252.810723509698, 4871.199418577276], [-9176.260723506857, 4868.099418576577], [-9162.91072351072, 4869.54941857931], [-9153.910723505021, 4871.2994185784455], [-9143.610723505446, 4873.2994185769485], [-9111.860723507449, 4872.099418577136], [-8884.36072350629, 4871.6494185789825], [-8687.960723506194, 4872.849418578795], [-8647.510723506002, 4873.099418578164]]}, {"length": 13.2770519536, "source": 2280505606, "destination": 2292321986, "path": [[-9384.410723505709, 4870.699418578539], [-9383.910723506971, 4810.999418577211]]}, {"length": 193.969914968, "source": 2280505606, "destination": 2292321958, "path": [[-9384.410723505709, 4870.699418578539], [-9525.460723509128, 4870.249418576833], [-9716.810723510605, 4869.54941857931], [-9797.410723507483, 4869.599418576343], [-9888.910723510946, 4868.899418578821], [-9961.760723506075, 4869.04941857702], [-10111.11072350701, 4867.899418577792], [-10314.860723511287, 4867.549418577255], [-10445.360723508657, 4866.599418576811], [-10536.660723509784, 4867.34941857847]]}, {"length": 54.0409471577, "source": 135094537, "destination": 1916976465, "path": [[-1122.1607235114561, -6590.600581422023], [-1122.6607235101937, -6347.60058142092]]}, {"length": 165.537254696, "source": 135094537, "destination": 1916976468, "path": [[-1122.1607235114561, -6590.600581422023], [-445.1607235083088, -6588.10058142123], [-138.46072350531813, -6587.050581423171]]}, {"length": 56.3537556452, "source": 135094537, "destination": 1916976477, "path": [[-1122.1607235114561, -6590.600581422023], [-1122.360723506688, -6844.00058142387]]}, {"length": 252.420263965, "source": 135094537, "destination": 135090901, "path": [[-1122.1607235114561, -6590.600581422023], [-2622.160723511513, -6596.100581422348]]}, {"length": 38.4760456665, "source": 1429422346, "destination": 1942240548, "path": [[5663.939276495001, -862.2505814237513], [5621.039276491047, -888.7505814207941], [5585.189276494873, -895.5505814220999], [5550.289276492038, -898.6005814222153], [5514.089276488221, -891.4505814239249], [5480.539276490504, -877.2505814214071], [5459.089276492079, -867.1005814235855]]}, {"length": 90.971720829, "source": 1429422346, "destination": 1429422509, "path": [[5663.939276495001, -862.2505814237513], [5680.0392764912995, -869.8005814231635], [5690.039276494474, -888.8005814213784], [5687.039276494943, -911.6005814213679], [5659.939276490888, -964.0005814226527], [5657.939276488833, -982.2505814227611], [5662.93927649042, -1005.0505814227506], [5686.039276490363, -1053.6505814222608], [5699.089276490099, -1104.55058142378], [5696.0892764905675, -1147.85058142175], [5683.039276490831, -1189.650581423507], [5653.939276491827, -1231.400581421127], [5642.48927648947, -1245.6505814206764]]}, {"length": 27.8598874092, "source": 1429422346, "destination": 1429422318, "path": [[5663.939276495001, -862.2505814237513], [5671.98927649315, -842.450581423293], [5682.039276493356, -812.1005814238913], [5691.089276488981, -739.1505814240418]]}, {"length": 233.12623106, "source": 135019223, "destination": 134979305, "path": [[8272.489276492934, -3140.3505814218133], [8562.339276494413, -3138.800581421464], [8949.339276490775, -3134.100581423382], [9105.339276494817, -3133.1005814223545], [9657.639276490216, -3131.4005814238044]]}, {"length": 62.437064064, "source": 135019223, "destination": 135019221, "path": [[8272.489276492934, -3140.3505814218133], [8270.339276492678, -2859.600581423649]]}, {"length": 25.778094462, "source": 2638686155, "destination": 2638686117, "path": [[-10632.560723507822, -9321.700581423898], [-10632.010723504947, -9294.650581423979], [-10630.160723508197, -9205.800581423062]]}, {"length": 3.20257612992, "source": 2282973370, "destination": 2282973384, "path": [[-9158.660723507239, 2525.249418578568], [-9158.41072350787, 2510.8494185772656]]}, {"length": 13.6934445743, "source": 2282973370, "destination": 2282973371, "path": [[-9158.660723507239, 2525.249418578568], [-9203.410723507943, 2524.849418577446], [-9240.01072350933, 2525.099418576815]]}, {"length": 10.9836952596, "source": 2282973370, "destination": 2282973366, "path": [[-9158.660723507239, 2525.249418578568], [-9103.810723509298, 2525.6494185761367], [-9093.410723508554, 2525.7494185773057]]}, {"length": 48.1263783824, "source": 2280505626, "destination": 2293563353, "path": [[-9381.010723508609, 4321.899418577857], [-9381.16072350681, 4374.749418577295], [-9382.61072350599, 4524.1994185794], [-9382.61072350599, 4538.299418577197]]}, {"length": 13.3106111606, "source": 2280505626, "destination": 2280505635, "path": [[-9381.010723508609, 4321.899418577857], [-9380.810723506273, 4262.049418578328]]}, {"length": 143.565091235, "source": 2280505626, "destination": 2280505630, "path": [[-9381.010723508609, 4321.899418577857], [-9389.010723509728, 4321.9494185784415], [-9698.110723505237, 4320.549418576292], [-9962.16072351075, 4318.899418578326], [-10132.410723507235, 4318.599418578373], [-10233.860723509735, 4318.899418578326]]}, {"length": 13.3159717566, "source": 2280505626, "destination": 2292322398, "path": [[-9381.010723508609, 4321.899418577857], [-9329.310723508399, 4321.649418578489], [-9302.160723507313, 4318.849418577742]]}, {"length": 72.9441506083, "source": 2295832861, "destination": 2294600112, "path": [[-4695.810723511329, 6440.899418578283], [-4262.510723506807, 6442.14941857868]]}, {"length": 7.9960209513, "source": 2295832861, "destination": 2295832905, "path": [[-4695.810723511329, 6440.899418578283], [-4695.4607235107915, 6404.949418577388]]}, {"length": 11.7681649133, "source": 2295832861, "destination": 2295832863, "path": [[-4695.810723511329, 6440.899418578283], [-4765.710723511063, 6440.399418575993]]}, {"length": 143.565091235, "source": 2280505630, "destination": 2280505626, "path": [[-10233.860723509735, 4318.899418578326], [-10132.410723507235, 4318.599418578373], [-9962.16072351075, 4318.899418578326], [-9698.110723505237, 4320.549418576292], [-9389.010723509728, 4321.9494185784415], [-9381.010723508609, 4321.899418577857]]}, {"length": 10.3287830431, "source": 2295832863, "destination": 2294600113, "path": [[-4765.710723511063, 6440.399418575993], [-4827.060723506804, 6439.9994185784235]]}, {"length": 11.7681649133, "source": 2295832863, "destination": 2295832861, "path": [[-4765.710723511063, 6440.399418575993], [-4695.810723511329, 6440.899418578283]]}, {"length": 5.43790287525, "source": 2295832863, "destination": 2295832870, "path": [[-4765.710723511063, 6440.399418575993], [-4765.710723511063, 6415.949418578038]]}, {"length": 7.86991255371, "source": 4719468832, "destination": 4719462289, "path": [[-3318.4107235086913, -2433.0505814234016], [-3271.810723511237, -2436.0505814229327]]}, {"length": 57.035630837, "source": 4719468832, "destination": 4719461082, "path": [[-3318.4107235086913, -2433.0505814234016], [-3348.4107235111082, -2431.1505814225143], [-3453.2607235107093, -2426.9005814225866], [-3552.510723508817, -2469.60058142065], [-3638.8107235083567, -2451.3005814235103]]}, {"length": 134.411611662, "source": 4719468832, "destination": 4719468835, "path": [[-3318.4107235086913, -2433.0505814234016], [-3300.060723510967, -2360.800581421074], [-3298.6607235088172, -2161.1505814220777], [-3293.7607235083988, -1830.0005814211318]]}, {"length": 10.8635489051, "source": 2280505635, "destination": 2280505648, "path": [[-9380.810723506273, 4262.049418578328], [-9380.76072350924, 4241.449418579179], [-9380.76072350924, 4213.19941857945]]}, {"length": 13.3106111606, "source": 2280505635, "destination": 2280505626, "path": [[-9380.810723506273, 4262.049418578328], [-9381.010723508609, 4321.899418577857]]}, {"length": 21.5154773249, "source": 2280505635, "destination": 2291254718, "path": [[-9380.810723506273, 4262.049418578328], [-9440.61072350877, 4261.349418577254], [-9504.710723511778, 4261.199418579054], [-9508.610723507616, 4261.199418579054]]}, {"length": 13.256671694, "source": 2280505635, "destination": 134957919, "path": [[-9380.810723506273, 4262.049418578328], [-9302.060723506145, 4262.349418578282]]}, {"length": 5.43790287525, "source": 2295832870, "destination": 2295832863, "path": [[-4765.710723511063, 6415.949418578038], [-4765.710723511063, 6440.399418575993]]}, {"length": 9.92336416824, "source": 2423701805, "destination": 2423701867, "path": [[-5663.1107235105555, -782.6505814207962], [-5668.310723507375, -738.2005814235981]]}, {"length": 25.199924432, "source": 2423701807, "destination": 2960627735, "path": [[-5881.860723505383, -1487.7505814219205], [-5873.86072351137, -1543.4005814221052], [-5843.410723507248, -1595.9005814210059]]}, {"length": 39.2305018231, "source": 2280505648, "destination": 2280505672, "path": [[-9380.76072350924, 4213.19941857945], [-9380.76072350924, 4097.5494185779835], [-9379.960723506996, 4036.799418578596]]}, {"length": 13.3958253891, "source": 2280505648, "destination": 2291254721, "path": [[-9380.76072350924, 4213.19941857945], [-9330.410723507044, 4214.099418579309], [-9301.46072350624, 4211.099418576225]]}, {"length": 10.8635489051, "source": 2280505648, "destination": 2280505635, "path": [[-9380.76072350924, 4213.19941857945], [-9380.76072350924, 4241.449418579179], [-9380.810723506273, 4262.049418578328]]}, {"length": 21.5540070395, "source": 2280505648, "destination": 2291254719, "path": [[-9380.76072350924, 4213.19941857945], [-9481.260723511297, 4212.649418576575], [-9508.810723509952, 4212.549418578959]]}, {"length": 14.5556268082, "source": 2423701809, "destination": 2423701866, "path": [[-5758.510723509858, -1204.0005814206722], [-5758.610723511027, -1221.3505814209213], [-5758.8607235103955, -1269.4505814216939]]}, {"length": 117.052132756, "source": 2280505657, "destination": 2291254720, "path": [[-10204.560723508393, 4211.049418579194], [-10101.310723506174, 4211.349418579147], [-9939.810723508912, 4211.599418578516], [-9669.910723509645, 4211.3994185761785], [-9509.210723507522, 4212.549418578959]]}, {"length": 16.1412570733, "source": 135086398, "destination": 135086232, "path": [[7627.339276488954, 4428.399418578976], [7688.339276491262, 4372.399418578254]]}, {"length": 9.63489405829, "source": 135086398, "destination": 4224850297, "path": [[7627.339276488954, 4428.399418578976], [7664.1892764897075, 4461.549418579125]]}, {"length": 9.25316132485, "source": 135086398, "destination": 4224850363, "path": [[7627.339276488954, 4428.399418578976], [7592.289276495023, 4460.449418576928]]}, {"length": 20.7936771521, "source": 4224950592, "destination": 4224950680, "path": [[6655.589276491014, 5029.749418579144], [6655.239276490476, 5123.249418577558]]}, {"length": 20.2491673176, "source": 4224950592, "destination": 4224950632, "path": [[6655.589276491014, 5029.749418579144], [6621.73927648979, 5021.749418578025], [6579.4892764898805, 5010.099418576885], [6542.5892764920945, 4998.699418578667]]}, {"length": 27.7869759905, "source": 4224950592, "destination": 4224950615, "path": [[6655.589276491014, 5029.749418579144], [6700.189276493518, 5036.999418578603], [6773.28927649512, 5045.099418577337], [6773.28927649512, 5079.5994185790505]]}, {"length": 24.2851070181, "source": 2074272065, "destination": 135104885, "path": [[-3307.610723510379, -6846.400581423495], [-3307.160723508673, -6955.60058142064]]}, {"length": 55.1085259906, "source": 2074272065, "destination": 135097197, "path": [[-3307.610723510379, -6846.400581423495], [-3308.660723504886, -6598.600581423142]]}, {"length": 115.608828346, "source": 2074272065, "destination": 1916976479, "path": [[-3307.610723510379, -6846.400581423495], [-2620.610723511163, -6849.9005814217635]]}, {"length": 201.506397132, "source": 134955062, "destination": 134955049, "path": [[-5369.460723507302, -4660.650581421067], [-5338.760723510915, -4582.40058142323], [-5284.860723506313, -4474.000581421223], [-5225.010723506784, -4369.850581422696], [-5165.210723511393, -4269.650581420592], [-4871.060723509401, -3838.6005814210475]]}, {"length": 129.875594272, "source": 134955062, "destination": 134955091, "path": [[-5369.460723507302, -4660.650581421067], [-5460.660723507261, -4916.600581420738], [-5507.160723510651, -5072.10058142249], [-5544.160723509605, -5229.100581424007]]}, {"length": 12.0900188884, "source": 134955062, "destination": 2080625197, "path": [[-5369.460723507302, -4660.650581421067], [-5297.66072350668, -4658.800581420764]]}, {"length": 30.9241878468, "source": 4224950598, "destination": 4224950672, "path": [[6497.639276489053, 2976.7994185760926], [6496.339276495178, 2837.7494185782834]]}, {"length": 38.6441899772, "source": 4224950598, "destination": 4224950696, "path": [[6497.639276489053, 2976.7994185760926], [6499.039276491203, 3127.0494185768885], [6508.68927649384, 3149.399418578724]]}, {"length": 60.076387875, "source": 4224950598, "destination": 4224950681, "path": [[6497.639276489053, 2976.7994185760926], [6514.439276493533, 3007.2494185766627], [6526.48927648869, 3026.0494185760936], [6542.089276493357, 3044.299418576202], [6559.489276490638, 3061.549418578835], [6579.4892764898805, 3078.2994185791777], [6601.739276490548, 3094.5494185772304], [6629.88927648911, 3110.249418575961], [6661.439276491876, 3125.499418576538], [6702.989276490712, 3138.1994185792905], [6751.139276488516, 3149.2494185769715]]}, {"length": 10.5962572813, "source": 2280505672, "destination": 2292322456, "path": [[-9379.960723506996, 4036.799418578596], [-9442.910723507226, 4036.899418576212]]}, {"length": 39.2305018231, "source": 2280505672, "destination": 2280505648, "path": [[-9379.960723506996, 4036.799418578596], [-9380.76072350924, 4097.5494185779835], [-9380.76072350924, 4213.19941857945]]}, {"length": 106.161849504, "source": 2280505672, "destination": 1959915218, "path": [[-9379.960723506996, 4036.799418578596], [-9380.060723508166, 3994.1494185775637], [-9378.96072350952, 3882.9994185789474], [-9380.410723508703, 3767.149418578697], [-9379.660723510597, 3678.1494185760266], [-9379.31072351006, 3621.2994185760294], [-9378.160723507279, 3559.4494185779977]]}, {"length": 7.9960209513, "source": 2295832905, "destination": 2295832861, "path": [[-4695.4607235107915, 6404.949418577388], [-4695.810723511329, 6440.899418578283]]}, {"length": 37.3017492224, "source": 135086410, "destination": 2140984936, "path": [[9366.339276489554, 5911.899418578059], [9489.139276489312, 5967.849418578197], [9520.639276495047, 5982.549418579452], [9536.839276492516, 5992.899418576058], [9549.789276491083, 6004.4994185766145]]}, {"length": 36.2841475605, "source": 135086410, "destination": 2140984935, "path": [[9366.339276489554, 5911.899418578059], [9431.839276494713, 5936.899418578889], [9454.839276493487, 5945.899418577483], [9495.339276490711, 5957.89941857916], [9547.339276494426, 5973.399418579106], [9563.539276491894, 5977.099418576159]]}, {"length": 49.2499914688, "source": 4224950604, "destination": 2069036930, "path": [[5510.93927649049, 2697.1494185765723], [5508.539276490865, 2918.599418578083]]}, {"length": 11.7539880119, "source": 4224950604, "destination": 135018866, "path": [[5510.93927649049, 2697.1494185765723], [5511.489276493365, 2644.299418577134]]}, {"length": 7.73476200781, "source": 4224950604, "destination": 4224950791, "path": [[5510.93927649049, 2697.1494185765723], [5556.889276491006, 2697.3494185789095]]}, {"length": 104.475826416, "source": 4224950605, "destination": 4224963692, "path": [[7416.33927648877, 4309.649418576811], [7409.089276492864, 4304.999418579314], [7400.38927649067, 4302.9994185772575], [7385.489276494183, 4300.999418578755], [7376.889276493159, 4298.399418576792], [7371.539276491035, 4293.349418578174], [7359.489276488774, 4270.4994185776], [7344.039276489411, 4245.0994185792015], [7327.839276491943, 4222.849418578534], [7301.7892764895005, 4196.399418578522], [7273.63927649094, 4169.4994185768055], [7241.439276491235, 4136.49941857841], [7209.139276490361, 4099.499418579455], [7184.439276493038, 4062.89941857807], [7156.289276494476, 4007.5994185784225], [7125.289276494585, 3942.6494185761385], [7113.389276490523, 3913.2994185777648]]}, {"length": 32.2800324149, "source": 4224950605, "destination": 4224950844, "path": [[7416.33927648877, 4309.649418576811], [7432.539276493344, 4322.249418578394], [7457.389276488868, 4342.599418578175], [7542.88927649327, 4418.649418578724]]}, {"length": 60.2758737396, "source": 4224950605, "destination": 4224963598, "path": [[7416.33927648877, 4309.649418576811], [7423.189276494213, 4337.499418578972], [7427.189276491219, 4368.949418577017], [7428.539276489232, 4396.899418576794], [7426.539276494282, 4421.249418577134], [7422.489276493138, 4448.649418577588], [7417.139276491014, 4473.5494185772495], [7407.739276494851, 4497.899418577589], [7395.68927649259, 4525.2994185780435], [7378.239276491172, 4557.24941857838], [7395.1392764897155, 4568.649418576598]]}, {"length": 7.00144788865, "source": 4224950614, "destination": 4224950626, "path": [[6116.139276493015, 2918.149418576377], [6074.5392764900425, 2918.199418576961]]}, {"length": 48.6300776472, "source": 4224950614, "destination": 4224950724, "path": [[6116.139276493015, 2918.149418576377], [6117.589276492197, 2753.949418575985], [6114.939276493204, 2709.2994185764496], [6112.889276494116, 2699.6494185773654]]}, {"length": 10.2424728512, "source": 4224950614, "destination": 135038582, "path": [[6116.139276493015, 2918.149418576377], [6176.98927649002, 2918.099418579345]]}, {"length": 27.7869759905, "source": 4224950615, "destination": 4224950592, "path": [[6773.28927649512, 5079.5994185790505], [6773.28927649512, 5045.099418577337], [6700.189276493518, 5036.999418578603], [6655.589276491014, 5029.749418579144]]}, {"length": 10.1629699193, "source": 4224950615, "destination": 4224950828, "path": [[6773.28927649512, 5079.5994185790505], [6773.28927649512, 5125.299418576646]]}, {"length": 15.9683541534, "source": 4224950615, "destination": 4224950686, "path": [[6773.28927649512, 5079.5994185790505], [6868.139276491547, 5080.599418576526]]}, {"length": 31.7363980562, "source": 134930780, "destination": 134930800, "path": [[-2764.160723508269, -9192.100581422836], [-2767.6607235065376, -9209.600581421284], [-2777.6607235097117, -9225.600581423521], [-2794.160723510686, -9238.100581423936], [-2823.6607235072597, -9250.600581420798], [-2895.9607235066187, -9283.950581423283]]}, {"length": 155.598814168, "source": 134930780, "destination": 134948864, "path": [[-2764.160723508269, -9192.100581422836], [-2694.160723507366, -9319.100581421935], [-2651.660723508087, -9426.600581420531], [-2630.1607235055258, -9500.100581423254], [-2613.160723505814, -9576.10058142322], [-2602.6607235110077, -9639.10058142403], [-2601.1607235076895, -9873.100581422988]]}, {"length": 6.61489490162, "source": 4224950623, "destination": 4224950809, "path": [[5506.189276488271, 3135.1494185791753], [5545.489276492788, 3135.249418576791]]}, {"length": 9.67503378977, "source": 4224950623, "destination": 134959978, "path": [[5506.189276488271, 3135.1494185791753], [5505.73927649367, 3178.6494185794822]]}, {"length": 48.1601561379, "source": 4224950623, "destination": 2069036930, "path": [[5506.189276488271, 3135.1494185791753], [5508.539276490865, 2918.599418578083]]}, {"length": 40.2308986189, "source": 4224950624, "destination": 4224950752, "path": [[5942.439276488187, 2737.3994185779793], [5941.139276494312, 2918.29941857813]]}, {"length": 47.3530854957, "source": 2286663056, "destination": 2068973812, "path": [[-6348.460723508253, 6434.749418577468], [-6343.860723511341, 6221.8494185763975]]}, {"length": 12.2801638014, "source": 2286663056, "destination": 2286663053, "path": [[-6348.460723508253, 6434.749418577468], [-6388.410723509707, 6434.849418578637], [-6421.410723511655, 6434.949418576252]]}, {"length": 7.10280942828, "source": 2286663056, "destination": 2286663055, "path": [[-6348.460723508253, 6434.749418577468], [-6335.060723507979, 6434.6994185768835], [-6306.260723505375, 6434.799418578052]]}, {"length": 22.4545038838, "source": 4224950626, "destination": 4224950752, "path": [[6074.5392764900425, 2918.199418576961], [6013.539276494839, 2918.199418576961], [5941.139276494312, 2918.29941857813]]}, {"length": 7.00144788865, "source": 4224950626, "destination": 4224950614, "path": [[6074.5392764900425, 2918.199418576961], [6116.139276493015, 2918.149418576377]]}, {"length": 51.2960018574, "source": 4224950626, "destination": 4224950639, "path": [[6074.5392764900425, 2918.199418576961], [6074.5392764900425, 3071.199418577919], [6177.139276488219, 3071.0494185761663]]}, {"length": 60.712971662, "source": 135094631, "destination": 135084637, "path": [[-1133.160723505, -9816.600581423529], [-1134.6607235083184, -10089.600581423496]]}, {"length": 27.6987037092, "source": 4224950632, "destination": 4224950744, "path": [[6542.5892764920945, 4998.699418578667], [6541.939276495157, 5123.249418577558]]}, {"length": 20.2491673176, "source": 4224950632, "destination": 4224950592, "path": [[6542.5892764920945, 4998.699418578667], [6579.4892764898805, 5010.099418576885], [6621.73927648979, 5021.749418578025], [6655.589276491014, 5029.749418579144]]}, {"length": 28.4272221102, "source": 4224950632, "destination": 4224950847, "path": [[6542.5892764920945, 4998.699418578667], [6510.439276489422, 4985.699418575961], [6477.539276488642, 4970.999418578259], [6444.689276491999, 4954.749418576654], [6401.139276491108, 4929.349418578255]]}, {"length": 29.2350268105, "source": 2423701866, "destination": 2423703504, "path": [[-5758.8607235103955, -1269.4505814216939], [-5585.160723505567, -1268.750581420619]]}, {"length": 14.5556268082, "source": 2423701866, "destination": 2423701809, "path": [[-5758.8607235103955, -1269.4505814216939], [-5758.610723511027, -1221.3505814209213], [-5758.510723509858, -1204.0005814206722]]}, {"length": 41.5045937642, "source": 2423701866, "destination": 2217927127, "path": [[-5758.8607235103955, -1269.4505814216939], [-5909.810723508713, -1269.1005814211564], [-6005.460723507384, -1268.8505814217876]]}, {"length": 57.0480909354, "source": 2423701867, "destination": 2217927122, "path": [[-5668.310723507375, -738.2005814235981], [-5911.160723506726, -738.75058142292], [-6007.260723507102, -738.9505814217046]]}, {"length": 9.92336416824, "source": 2423701867, "destination": 2423701805, "path": [[-5668.310723507375, -738.2005814235981], [-5663.1107235105555, -782.6505814207962]]}, {"length": 15.3578419062, "source": 2423701867, "destination": 2331404991, "path": [[-5668.310723507375, -738.2005814235981], [-5577.060723510385, -738.4505814229669]]}, {"length": 40.2751192985, "source": 4224950638, "destination": 4224950723, "path": [[5731.239276492772, 2737.349418577395], [5730.539276491698, 2918.4494185763297]]}, {"length": 8.76187693893, "source": 4224950639, "destination": 4224950688, "path": [[6177.139276488219, 3071.0494185761663], [6176.889276488851, 3110.4494185782983]]}, {"length": 51.2960018574, "source": 4224950639, "destination": 4224950626, "path": [[6177.139276488219, 3071.0494185761663], [6074.5392764900425, 3071.199418577919], [6074.5392764900425, 2918.199418576961]]}, {"length": 34.014452511, "source": 4224950639, "destination": 135038582, "path": [[6177.139276488219, 3071.0494185761663], [6176.98927649002, 2918.099418579345]]}, {"length": 141.311491446, "source": 134930800, "destination": 134948864, "path": [[-2895.9607235066187, -9283.950581423283], [-2851.160723508883, -9335.60058142291], [-2831.660723508378, -9358.600581421684], [-2793.6607235048427, -9408.100581421053], [-2749.160723510613, -9480.600581422748], [-2697.1607235068973, -9581.600581423543], [-2659.660723509205, -9671.600581423689], [-2624.1607235064635, -9781.100581420787], [-2601.1607235076895, -9873.100581422988]]}, {"length": 46.6723193027, "source": 134930800, "destination": 134939953, "path": [[-2895.9607235066187, -9283.950581423283], [-3069.160723505604, -9345.100581423792], [-3091.6607235056404, -9349.1005814208], [-3114.66072351152, -9346.600581423558], [-3126.160723510907, -9343.100581421737], [-3147.6607235063625, -9330.100581422585]]}, {"length": 79.0445665357, "source": 134930800, "destination": 134930762, "path": [[-2895.9607235066187, -9283.950581423283], [-2863.6607235057454, -9086.350581423374], [-2828.9107235082156, -8932.250581423774]]}, {"length": 102.589188794, "source": 4224950641, "destination": 135018864, "path": [[5512.339276492639, 2582.4494185791027], [5514.489276492895, 2121.1494185777724]]}, {"length": 7.3903438186, "source": 4224950641, "destination": 4224950665, "path": [[5512.339276492639, 2582.4494185791027], [5556.239276494069, 2582.649418577887]]}, {"length": 13.7554856373, "source": 4224950641, "destination": 135018866, "path": [[5512.339276492639, 2582.4494185791027], [5511.489276493365, 2644.299418577134]]}, {"length": 14.7143058129, "source": 1429422450, "destination": 1942240504, "path": [[5427.58927649345, -1197.9505814210256], [5457.339276489392, -1183.250581423323], [5469.83927649336, -1164.0505814227708], [5478.589276492585, -1147.4505814206282]]}, {"length": 44.0827939768, "source": 1429422450, "destination": 1942240522, "path": [[5427.58927649345, -1197.9505814210256], [5416.189276495232, -1181.250581421267], [5390.389276492158, -1167.900581421577], [5363.039276488735, -1165.1005814208304], [5334.189276489098, -1168.750581420852], [5315.339276492637, -1181.7505814235574], [5303.089276495143, -1198.3505814221473], [5297.389276492481, -1228.4505814221802], [5299.089276491031, -1248.600581423176], [5292.739276491431, -1271.9505814224874]]}, {"length": 17.4067587432, "source": 1429422450, "destination": 1429422541, "path": [[5427.58927649345, -1197.9505814210256], [5425.989276488963, -1223.7005814235147], [5399.439276494888, -1272.2005814218562]]}, {"length": 10.8550685815, "source": 4224950648, "destination": 4224950597, "path": [[6205.989276494961, 4785.19941857769], [6252.889276488815, 4751.6994185770045]]}, {"length": 45.9191319124, "source": 4224950648, "destination": 4224950847, "path": [[6205.989276494961, 4785.19941857769], [6307.889276492062, 4863.8994185772335], [6352.839276495104, 4896.899418579182], [6401.139276491108, 4929.349418578255]]}, {"length": 147.427036881, "source": 4224950648, "destination": 4224950847, "path": [[6205.989276494961, 4785.19941857769], [6055.78927649475, 4664.399418576437], [6020.889276491915, 4663.899418577699], [6022.239276489927, 4753.749418576092], [6187.8892764895, 4889.249418578601], [6220.089276489205, 4941.049418576426], [6353.489276492041, 4941.049418576426], [6401.139276491108, 4929.349418578255]]}, {"length": 27.7114246626, "source": 4224950657, "destination": 4224950738, "path": [[7047.639276493101, 3417.299418579489], [7037.589276492895, 3412.2494185773176], [7023.389276490378, 3407.6994185774365], [7003.389276491134, 3406.149418577087], [6886.339276491071, 3405.6994185789335]]}, {"length": 113.132422793, "source": 4224950657, "destination": 4224963692, "path": [[7047.639276493101, 3417.299418579489], [7059.739276492393, 3427.9494185760486], [7068.439276494587, 3437.599418578685], [7075.039276493555, 3447.2994185783537], [7078.489276494793, 3456.3994185781157], [7080.539276493881, 3464.99941857914], [7080.539276493881, 3668.549418577527], [7078.489276494793, 3686.799418577635], [7074.489276490681, 3709.149418579472], [7069.7892764926, 3732.9994185775204], [7067.089276489469, 3754.8494185770664], [7067.089276489469, 3774.099418578203], [7069.7892764926, 3796.9494185787767], [7074.489276490681, 3820.299418578088], [7082.539276488831, 3843.149418578662], [7099.839276492048, 3884.2994185763755], [7113.389276490523, 3913.2994185777648]]}, {"length": 38.1346294535, "source": 4224950657, "destination": 3357236917, "path": [[7047.639276493101, 3417.299418579489], [7054.889276489007, 3403.649418576293], [7058.239276489076, 3388.9494185785907], [7058.239276489076, 3374.1994185767508], [7053.6892764891945, 3358.449418577436], [7024.73927648839, 3315.8494185769882], [7001.889276494921, 3286.3494185768614], [6981.489276491004, 3261.9494185794906]]}, {"length": 239.381425946, "source": 4224950659, "destination": 4224950737, "path": [[5550.489276494374, 4298.049418576255], [5545.539276489819, 4272.5494185766875], [5544.289276492975, 4256.299418578636], [5546.239276490895, 3803.2994185783764], [5548.839276492856, 3349.8494185764116], [5548.839276492856, 3221.949418577452]]}, {"length": 120.07591268, "source": 4224950659, "destination": 4224950843, "path": [[5550.489276494374, 4298.049418576255], [5750.139276493372, 4300.29941857768], [5774.739276489527, 4301.749418576861], [5798.539276490545, 4304.649418578776], [5822.2392764903925, 4309.399418577442], [5843.08927648891, 4315.049418575967], [5865.639276493084, 4322.599418578931], [5882.589276488659, 4330.499418578882], [5937.539276494874, 4364.149418577767], [5984.18927648936, 4396.899418576794], [6027.7392764902515, 4431.399418578508], [6148.939276492627, 4528.299418577575]]}, {"length": 7.23006710401, "source": 4224950659, "destination": 4224950845, "path": [[5550.489276494374, 4298.049418576255], [5507.5392764933895, 4297.949418578639]]}, {"length": 47.5686215757, "source": 4224950661, "destination": 4224950802, "path": [[6234.289276491722, 2939.199418577232], [6232.939276493709, 3137.649418576416], [6229.339276494273, 3152.849418576409]]}, {"length": 7.3903438186, "source": 4224950665, "destination": 4224950641, "path": [[5556.239276494069, 2582.649418577887], [5512.339276492639, 2582.4494185791027]]}, {"length": 109.160166152, "source": 4224950665, "destination": 4224950699, "path": [[5556.239276494069, 2582.649418577887], [6117.489276491028, 2584.9994185769274], [6114.439276494466, 2650.999418577271]]}, {"length": 13.7436867911, "source": 4224950665, "destination": 4224950804, "path": [[5556.239276494069, 2582.649418577887], [5556.239276494069, 2644.449418578887]]}, {"length": 48.1931751924, "source": 4224950670, "destination": 4224950809, "path": [[5547.489276494844, 2918.5494185774987], [5545.489276492788, 3135.249418576791]]}, {"length": 13.6598198694, "source": 4224950670, "destination": 4224950602, "path": [[5547.489276494844, 2918.5494185774987], [5628.639276494596, 2918.499418576914]]}, {"length": 6.55673333125, "source": 4224950670, "destination": 2069036930, "path": [[5547.489276494844, 2918.5494185774987], [5508.539276490865, 2918.599418578083]]}, {"length": 49.2744410481, "source": 4224950670, "destination": 4224950791, "path": [[5547.489276494844, 2918.5494185774987], [5550.339276489069, 2771.2494185792025], [5550.989276493112, 2728.59941857817], [5552.989276495168, 2712.8494185788554], [5556.889276491006, 2697.3494185789095]]}, {"length": 30.9241878468, "source": 4224950672, "destination": 4224950598, "path": [[6496.339276495178, 2837.7494185782834], [6497.639276489053, 2976.7994185760926]]}, {"length": 21.3376755488, "source": 134979350, "destination": 1999574945, "path": [[9724.489276493387, -9512.450581421916], [9597.689276489518, -9513.750581422897]]}, {"length": 22.8743175588, "source": 134979350, "destination": 2074159346, "path": [[9724.489276493387, -9512.450581421916], [9722.989276490069, -9409.600581420818]]}, {"length": 11.8086855945, "source": 134979350, "destination": 134979246, "path": [[9724.489276493387, -9512.450581421916], [9794.63927649249, -9510.900581421567]]}, {"length": 65.098437897, "source": 4224950675, "destination": 4224950800, "path": [[6221.089276493785, 4597.1994185762815], [6492.189276492865, 4805.9494185785925]]}, {"length": 10.0056721121, "source": 4224950675, "destination": 4224849377, "path": [[6221.089276493785, 4597.1994185762815], [6179.039276489107, 4628.999418578416]]}, {"length": 17.8069112208, "source": 4224950675, "destination": 4224950749, "path": [[6221.089276493785, 4597.1994185762815], [6148.439276493889, 4538.999418578271]]}, {"length": 15.4925769309, "source": 4224950675, "destination": 4224850400, "path": [[6221.089276493785, 4597.1994185762815], [6226.239276493572, 4593.29941857689], [6250.389276495127, 4578.599418579188], [6266.339276493227, 4572.549418575989], [6283.08927649357, 4569.999418578163], [6301.889276493001, 4569.999418578163]]}, {"length": 124.414613282, "source": 135012759, "destination": 135012761, "path": [[-4892.210723511425, 1502.5494185785249], [-4153.060723510293, 1505.249418578103]]}, {"length": 121.706927713, "source": 135012759, "destination": 135032865, "path": [[-4892.210723511425, 1502.5494185785249], [-4898.0107235081505, 2049.799418578857]]}, {"length": 60.0927037064, "source": 135012759, "destination": 2086776743, "path": [[-4892.210723511425, 1502.5494185785249], [-4888.710723506051, 1232.3494185793038]]}, {"length": 20.7936771521, "source": 4224950680, "destination": 4224950592, "path": [[6655.239276490476, 5123.249418577558], [6655.589276491014, 5029.749418579144]]}, {"length": 123.227799902, "source": 135012761, "destination": 135034096, "path": [[-4153.060723510293, 1505.249418578103], [-4156.560723508563, 2059.349418576772]]}, {"length": 62.5903191095, "source": 135012761, "destination": 2086776833, "path": [[-4153.060723510293, 1505.249418578103], [-3781.210723509787, 1506.5994185761156]]}, {"length": 124.414613282, "source": 135012761, "destination": 135012759, "path": [[-4153.060723510293, 1505.249418578103], [-4892.210723511425, 1502.5494185785249]]}, {"length": 60.0906039421, "source": 135012761, "destination": 2086776761, "path": [[-4153.060723510293, 1505.249418578103], [-4151.310723507606, 1235.0494185788818]]}, {"length": 62.5143873217, "source": 135012764, "destination": 2086776833, "path": [[-3409.8107235109865, 1507.949418577681], [-3781.210723509787, 1506.5994185761156]]}, {"length": 60.3852037964, "source": 135012764, "destination": 2086776714, "path": [[-3409.8107235109865, 1507.949418577681], [-3051.0607235072484, 1509.2994185792463]]}, {"length": 122.626475078, "source": 135012764, "destination": 134984482, "path": [[-3409.8107235109865, 1507.949418577681], [-3409.9607235091867, 1830.7494185769713], [-3403.5107235084183, 2059.299418576188]]}, {"length": 18.2809261432, "source": 4224950686, "destination": 4224963657, "path": [[6868.139276491547, 5080.599418576526], [6868.589276493253, 4998.399418578714]]}, {"length": 14.033113958, "source": 4224950686, "destination": 2069036764, "path": [[6868.139276491547, 5080.599418576526], [6867.78927649101, 5143.699418578507]]}, {"length": 15.9683541534, "source": 4224950686, "destination": 4224950615, "path": [[6868.139276491547, 5080.599418576526], [6773.28927649512, 5079.5994185790505]]}, {"length": 124.818613547, "source": 135012767, "destination": 135012770, "path": [[-2670.160723511117, 1510.649418577259], [-1928.61072351036, 1513.349418576837]]}, {"length": 121.904562222, "source": 135012767, "destination": 134968188, "path": [[-2670.160723511117, 1510.649418577259], [-2666.6607235057427, 962.4994185770674]]}, {"length": 108.080132042, "source": 4224950688, "destination": 4224950809, "path": [[6176.889276488851, 3110.4494185782983], [6157.689276491851, 3107.74941857872], [6141.739276493752, 3106.699418577108], [6126.989276488359, 3107.1994185793983], [6112.889276494116, 3109.249418578486], [6098.139276488723, 3113.799418578367], [6085.939276488261, 3119.949418579182], [6071.339276488175, 3128.549418576654], [6061.139276489768, 3133.149418577119], [6051.889276491806, 3136.1494185766505], [5545.489276492788, 3135.249418576791]]}, {"length": 13.3158788371, "source": 4224950688, "destination": 4224950802, "path": [[6176.889276488851, 3110.4494185782983], [6192.239276494149, 3115.2994185781326], [6205.089276491549, 3123.9494185761887], [6218.039276490117, 3138.1994185792905], [6229.339276494273, 3152.849418576409]]}, {"length": 8.76187693893, "source": 4224950688, "destination": 4224950639, "path": [[6176.889276488851, 3110.4494185782983], [6177.139276488219, 3071.0494185761663]]}, {"length": 95.3239863876, "source": 134930849, "destination": 134962288, "path": [[9645.339276488585, -11405.600581422703], [9441.339276492045, -11406.10058142144], [9078.83927649067, -11410.600581420738]]}, {"length": 79.5072831195, "source": 134930849, "destination": 134930861, "path": [[9645.339276488585, -11405.600581422703], [9667.839276488621, -11186.600581421402], [9675.83927648974, -11080.100581423834], [9677.639276489459, -11048.95058142219]]}, {"length": 59.0873318791, "source": 134930849, "destination": 135030399, "path": [[9645.339276488585, -11405.600581422703], [9700.5892764912, -11408.050581422913], [9837.839276492843, -11401.750581423898], [9902.339276493421, -11393.100581422288], [9988.839276488194, -11367.600581422721]]}, {"length": 61.7140187944, "source": 135012770, "destination": 2086776770, "path": [[-1928.61072351036, 1513.349418576837], [-1930.3607235059417, 1790.8494185761015]]}, {"length": 124.515663854, "source": 135012770, "destination": 135012773, "path": [[-1928.61072351036, 1513.349418576837], [-1188.8607235093218, 1516.049418576415]]}, {"length": 121.893471809, "source": 135012773, "destination": 134968194, "path": [[-1188.8607235093218, 1516.049418576415], [-1185.360723511053, 967.9494185768078]]}, {"length": 122.091837824, "source": 135012773, "destination": 135012775, "path": [[-1188.8607235093218, 1516.049418576415], [-463.5107235060332, 1518.6994185789615]]}, {"length": 121.342858087, "source": 135012775, "destination": 134982659, "path": [[-463.5107235060332, 1518.6994185789615], [257.3892764914376, 1521.3494185779552]]}, {"length": 61.7473799948, "source": 135012775, "destination": 2086723542, "path": [[-463.5107235060332, 1518.6994185789615], [-465.2607235087203, 1796.3494185764262]]}, {"length": 31.9374493448, "source": 4224950696, "destination": 4224950712, "path": [[6508.68927649384, 3149.399418578724], [6508.939276493209, 3264.099418576194], [6508.939276493209, 3281.5494185776115], [6509.039276494377, 3292.9994185764144]]}, {"length": 17.9099707256, "source": 4224950696, "destination": 4224950789, "path": [[6508.68927649384, 3149.399418578724], [6532.089276490183, 3150.449418576784], [6615.039276489653, 3149.999418578631]]}, {"length": 38.6441899772, "source": 4224950696, "destination": 4224950598, "path": [[6508.68927649384, 3149.399418578724], [6499.039276491203, 3127.0494185768885], [6497.639276489053, 2976.7994185760926]]}, {"length": 12.4797930792, "source": 4224950696, "destination": 4224950815, "path": [[6508.68927649384, 3149.399418578724], [6484.839276488685, 3147.7494185772057], [6434.639276491794, 3147.79941857779]]}, {"length": 121.904562222, "source": 135012777, "destination": 134968200, "path": [[999.2892764927319, 1524.0494185775333], [1002.7892764910007, 975.8994185773417]]}, {"length": 124.052895944, "source": 135012777, "destination": 134990154, "path": [[999.2892764927319, 1524.0494185775333], [1736.2892764936078, 1526.7494185771113]]}, {"length": 109.160166152, "source": 4224950699, "destination": 4224950665, "path": [[6114.439276494466, 2650.999418577271], [6117.489276491028, 2584.9994185769274], [5556.239276494069, 2582.649418577887]]}, {"length": 10.8222228652, "source": 4224950699, "destination": 4224950724, "path": [[6114.439276494466, 2650.999418577271], [6112.889276494116, 2699.6494185773654]]}, {"length": 10.2436617115, "source": 4224950699, "destination": 135038574, "path": [[6114.439276494466, 2650.999418577271], [6136.089276495227, 2653.44941857748], [6174.789276492731, 2656.899418578718]]}, {"length": 79.5072831195, "source": 134930861, "destination": 134930849, "path": [[9677.639276489459, -11048.95058142219], [9675.83927648974, -11080.100581423834], [9667.839276488621, -11186.600581421402], [9645.339276488585, -11405.600581422703]]}, {"length": 208.578514641, "source": 134930861, "destination": 1424938831, "path": [[9677.639276489459, -11048.95058142219], [9615.639276489674, -11031.550581421357], [8650.339276492503, -10526.650581422104]]}, {"length": 89.661054068, "source": 134930861, "destination": 135030399, "path": [[9677.639276489459, -11048.95058142219], [9749.839276494753, -11089.600581421166], [9858.339276490824, -11178.100581421546], [9911.339276492015, -11239.100581423856], [9950.339276493025, -11296.600581420791], [9988.839276488194, -11367.600581422721]]}, {"length": 30.7180768376, "source": 4224950704, "destination": 4224950834, "path": [[6113.439276489885, 3245.799418579054], [6108.739276491804, 3251.899418579285], [6106.889276495053, 3257.9494185789317], [6109.539276494047, 3265.549418578928], [6145.789276494896, 3303.599418579495], [6155.8392764951, 3312.249418577551], [6167.239276493319, 3316.799418577432], [6182.639276488544, 3318.3494185777818], [6231.639276492729, 3318.799418579488]]}, {"length": 6.01921737801, "source": 4224950704, "destination": 4224950773, "path": [[6113.439276489885, 3245.799418579054], [6126.839276490159, 3248.349418576879], [6135.989276494058, 3250.199418577182], [6148.439276493889, 3250.8494185776726]]}, {"length": 80.790049906, "source": 4224950704, "destination": 4224980287, "path": [[6113.439276489885, 3245.799418579054], [6098.689276491597, 3240.749418576883], [6086.739276490505, 3234.0994185773297], [6072.689276493293, 3227.499418578361], [6057.23927649393, 3223.9494185759554], [6036.339276491276, 3221.949418577452], [5809.689276489394, 3221.949418577452], [5749.489276489328, 3222.8994185778956], [5641.139276491458, 3222.7994185767275]]}, {"length": 31.9374493448, "source": 4224950712, "destination": 4224950696, "path": [[6509.039276494377, 3292.9994185764144], [6508.939276493209, 3281.5494185776115], [6508.939276493209, 3264.099418576194], [6508.68927649384, 3149.399418578724]]}, {"length": 6.09290248318, "source": 4224950712, "destination": 4224950697, "path": [[6509.039276494377, 3292.9994185764144], [6509.089276491409, 3320.3994185768693]]}, {"length": 17.7420074045, "source": 4224950712, "destination": 4224950635, "path": [[6509.039276494377, 3292.9994185764144], [6614.4392764897475, 3293.4994185787045]]}, {"length": 14.0027997907, "source": 4224950716, "destination": 4224950697, "path": [[6425.8892764925695, 3320.199418578085], [6474.189276488573, 3320.299418579253], [6490.989276493054, 3320.3494185762847], [6509.089276491409, 3320.3994185768693]]}, {"length": 32.699158695, "source": 4224950716, "destination": 4224950834, "path": [[6425.8892764925695, 3320.199418578085], [6231.639276492729, 3318.799418579488]]}, {"length": 33.5369854364, "source": 4224950716, "destination": 4224950748, "path": [[6425.8892764925695, 3320.199418578085], [6393.189276494127, 3304.0994185782324], [6373.089276493715, 3290.949418577327], [6355.6392764922975, 3277.199418576515], [6340.089276491767, 3263.0494185781345], [6327.33927648843, 3248.8494185791697], [6314.0892764934615, 3230.5494185784764], [6298.539276492931, 3207.749418578487]]}, {"length": 23.6587401534, "source": 2573122320, "destination": 1429422315, "path": [[3937.289276493061, -687.6505814226164], [3796.739276488381, -689.3505814211665]]}, {"length": 131.069722588, "source": 2573122320, "destination": 2139783260, "path": [[3937.289276493061, -687.6505814226164], [3937.3892764942298, -746.0505814229634], [3938.2892764905364, -822.4005814234658], [3939.08927649278, -873.250581420848], [3946.3892764928232, -924.5005814229046], [3956.5392764941976, -984.8505814211705], [3970.339276492041, -1038.4005814216835], [3996.7392764950205, -1108.0005814214644], [4023.789276494938, -1163.7505814228177], [4050.9392764889185, -1209.1505814240122], [4083.03927649456, -1258.700581423966]]}, {"length": 64.4828961872, "source": 134997408, "destination": 2069036648, "path": [[3155.4892764944498, 5966.399418579016], [3153.439276488257, 6256.349418578111]]}, {"length": 122.107634137, "source": 134997408, "destination": 135007385, "path": [[3155.4892764944498, 5966.399418579016], [3880.839276490633, 5968.399418577519]]}, {"length": 63.6269986037, "source": 134997408, "destination": 2068020404, "path": [[3155.4892764944498, 5966.399418579016], [3157.739276488769, 5680.2994185787265]]}, {"length": 122.023242485, "source": 134997408, "destination": 134994393, "path": [[3155.4892764944498, 5966.399418579016], [2513.6892764905383, 5964.649418576329], [2430.6392764898987, 5964.39941857696]]}, {"length": 18.1793296369, "source": 4224950723, "destination": 4224950785, "path": [[5730.539276491698, 2918.4494185763297], [5838.539276489029, 2918.349418578714]]}, {"length": 17.1526022104, "source": 4224950723, "destination": 4224950602, "path": [[5730.539276491698, 2918.4494185763297], [5628.639276494596, 2918.499418576914]]}, {"length": 40.2751192985, "source": 4224950723, "destination": 4224950638, "path": [[5730.539276491698, 2918.4494185763297], [5731.239276492772, 2737.349418577395]]}, {"length": 10.8222228652, "source": 4224950724, "destination": 4224950699, "path": [[6112.889276494116, 2699.6494185773654], [6114.439276494466, 2650.999418577271]]}, {"length": 48.6300776472, "source": 4224950724, "destination": 4224950614, "path": [[6112.889276494116, 2699.6494185773654], [6114.939276493204, 2709.2994185764496], [6117.589276492197, 2753.949418575985], [6116.139276493015, 2918.149418576377]]}, {"length": 93.5903034692, "source": 4224950724, "destination": 4224950791, "path": [[6112.889276494116, 2699.6494185773654], [5556.889276491006, 2697.3494185789095]]}, {"length": 9.25023881238, "source": 4224950725, "destination": 4224950793, "path": [[6614.339276488579, 3320.5994185792065], [6559.389276489469, 3320.499418578038]]}, {"length": 6.02671777521, "source": 4224950725, "destination": 4224950635, "path": [[6614.339276488579, 3320.5994185792065], [6614.4392764897475, 3293.4994185787045]]}, {"length": 45.8524549348, "source": 4224950725, "destination": 4224950763, "path": [[6614.339276488579, 3320.5994185792065], [6630.439276491984, 3320.649418576238], [6647.889276493402, 3320.6994185768226], [6886.739276488641, 3321.2494185761443]]}, {"length": 34.2953509259, "source": 135012807, "destination": 2284152338, "path": [[-6855.110723506641, 1496.1994185789251], [-7058.8607235109175, 1495.4994185778503]]}, {"length": 17.4067587432, "source": 1429422541, "destination": 1429422450, "path": [[5399.439276494888, -1272.2005814218562], [5425.989276488963, -1223.7005814235147], [5427.58927649345, -1197.9505814210256]]}, {"length": 17.9581103956, "source": 1429422541, "destination": 1942240522, "path": [[5399.439276494888, -1272.2005814218562], [5292.739276491431, -1271.9505814224874]]}, {"length": 61.6760891303, "source": 1429422541, "destination": 1429422509, "path": [[5399.439276494888, -1272.2005814218562], [5399.239276492552, -1291.1505814230395], [5403.989276494769, -1305.8005814237106], [5419.589276492332, -1322.2505814205476], [5440.939276489587, -1333.800581420519], [5468.4892764882425, -1340.8005814206092], [5487.239276490641, -1339.1005814220591], [5505.939276488903, -1335.950581420775], [5520.989276490695, -1328.8005814224846], [5538.689276491482, -1314.4005814211823], [5558.139276494956, -1280.9005814240493], [5570.839276494155, -1263.4505814226316], [5584.189276490292, -1251.7005814238757], [5604.839276493578, -1243.6505814221732], [5626.539276491371, -1240.7505814238107], [5642.48927648947, -1245.6505814206764]]}, {"length": 7.23754261913, "source": 4224950734, "destination": 4224950737, "path": [[5505.839276494839, 3221.949418577452], [5548.839276492856, 3221.949418577452]]}, {"length": 9.62927986297, "source": 4224950734, "destination": 134959978, "path": [[5505.839276494839, 3221.949418577452], [5505.73927649367, 3178.6494185794822]]}, {"length": 193.879955547, "source": 4224950734, "destination": 135018868, "path": [[5505.839276494839, 3221.949418577452], [5507.489276489252, 4093.749418576209]]}, {"length": 15.5378301668, "source": 4224950737, "destination": 4224980287, "path": [[5548.839276492856, 3221.949418577452], [5641.139276491458, 3222.7994185767275]]}, {"length": 239.381425946, "source": 4224950737, "destination": 4224950659, "path": [[5548.839276492856, 3221.949418577452], [5548.839276492856, 3349.8494185764116], [5546.239276490895, 3803.2994185783764], [5544.289276492975, 4256.299418578636], [5545.539276489819, 4272.5494185766875], [5550.489276494374, 4298.049418576255]]}, {"length": 7.23754261913, "source": 4224950737, "destination": 4224950734, "path": [[5548.839276492856, 3221.949418577452], [5505.839276494839, 3221.949418577452]]}, {"length": 9.60679027244, "source": 4224950737, "destination": 4224950839, "path": [[5548.839276492856, 3221.949418577452], [5548.839276492856, 3178.7494185770984]]}, {"length": 27.7114246626, "source": 4224950738, "destination": 4224950657, "path": [[6886.339276491071, 3405.6994185789335], [7003.389276491134, 3406.149418577087], [7023.389276490378, 3407.6994185774365], [7037.589276492895, 3412.2494185773176], [7047.639276493101, 3417.299418579489]]}, {"length": 18.7811463747, "source": 4224950738, "destination": 4224950763, "path": [[6886.339276491071, 3405.6994185789335], [6886.739276488641, 3321.2494185761443]]}, {"length": 49.3043124383, "source": 4224950738, "destination": 4224950695, "path": [[6886.339276491071, 3405.6994185789335], [6885.239276492428, 3627.3994185762604]]}, {"length": 384.346651691, "source": 135012821, "destination": 2086776800, "path": [[8964.989276492473, 1519.449418577068], [8576.439276488656, 1519.5494185782366], [8562.339276494413, 2617.349418578385], [8565.039276490439, 2641.6994185787244], [8575.78927649172, 2659.949418578833], [8599.889276489137, 2672.149418579295], [8634.789276491972, 2682.2994185771167], [8954.039276488857, 2685.2494185760634]]}, {"length": 114.876658715, "source": 135012821, "destination": 134968225, "path": [[8964.989276492473, 1519.449418577068], [8967.889276490838, 1002.8994185766749]]}, {"length": 191.093710481, "source": 135012821, "destination": 2086776697, "path": [[8964.989276492473, 1519.449418577068], [8963.539276493293, 1714.6994185779363], [8961.789276490606, 2064.7494185794812], [8957.639276488295, 2378.6994185783783]]}, {"length": 4.9920596818, "source": 4224950742, "destination": 4224950802, "path": [[6257.639276491034, 3148.049418577159], [6243.439276488516, 3148.049418577159], [6229.339276494273, 3152.849418576409]]}, {"length": 14.9555700611, "source": 4224950742, "destination": 4224950748, "path": [[6257.639276491034, 3148.049418577159], [6298.539276492931, 3207.749418578487]]}, {"length": 29.7939997327, "source": 4224950742, "destination": 4224950815, "path": [[6257.639276491034, 3148.049418577159], [6434.639276491794, 3147.79941857779]]}, {"length": 117.844931535, "source": 2217927127, "destination": 2217927122, "path": [[-6005.460723507384, -1268.8505814217876], [-6007.260723507102, -738.9505814217046]]}, {"length": 97.2035383333, "source": 2217927127, "destination": 2217880484, "path": [[-6005.460723507384, -1268.8505814217876], [-6006.510723508995, -1321.6505814206414], [-6008.810723507451, -1626.1505814227917], [-6006.260723509627, -1705.900581423947]]}, {"length": 41.5045937642, "source": 2217927127, "destination": 2423701866, "path": [[-6005.460723507384, -1268.8505814217876], [-5909.810723508713, -1269.1005814211564], [-5758.8607235103955, -1269.4505814216939]]}, {"length": 27.6987037092, "source": 4224950744, "destination": 4224950632, "path": [[6541.939276495157, 5123.249418577558], [6542.5892764920945, 4998.699418578667]]}, {"length": 46.1712884324, "source": 1855078873, "destination": 1855078882, "path": [[-7118.910723505678, -5149.350581422851], [-7002.510723509658, -5110.500581423594], [-6878.81072350649, -5050.200581422359]]}, {"length": 121.286936611, "source": 1855078873, "destination": 134982563, "path": [[-7118.910723505678, -5149.350581422851], [-7368.160723508765, -4707.600581422611], [-7396.160723509127, -4646.100581421564]]}, {"length": 308.278803435, "source": 1855078873, "destination": 134955099, "path": [[-7118.910723505678, -5149.350581422851], [-7056.160723507787, -5260.600581422636], [-7022.6607235071015, -5303.600581420653], [-6859.660723506522, -5478.60058142291], [-6822.660723507568, -5510.600581423831], [-6769.160723507639, -5546.600581421757], [-6702.660723505005, -5579.100581421415], [-6637.160723506951, -5601.100581422714], [-6585.66072350908, -5612.600581422101], [-6521.660723507239, -5621.100581421956], [-5595.810723505679, -5616.800581421444]]}, {"length": 218.211035473, "source": 135012827, "destination": 3639136432, "path": [[5521.53927649357, 1225.2994185786292], [6100.8392764918535, 1225.8994185785355], [6193.189276494593, 1229.799418577926], [6235.239276492166, 1238.149418576029], [6317.639276488762, 1290.3994185791134], [6433.489276489013, 1390.7494185794178], [6498.089276490759, 1445.5494185767748], [6576.039276488644, 1525.6494185784675], [6572.739276492712, 1577.8994185779993]]}, {"length": 76.1947188384, "source": 135012827, "destination": 134936074, "path": [[5521.53927649357, 1225.2994185786292], [5516.9892764936885, 1567.899418578378]]}, {"length": 53.0106367947, "source": 135012827, "destination": 4719433523, "path": [[5521.53927649357, 1225.2994185786292], [5248.139276488928, 1221.999418579145], [5216.239276492729, 1201.8994185787335]]}, {"length": 57.0210372013, "source": 135012827, "destination": 134968247, "path": [[5521.53927649357, 1225.2994185786292], [5522.6892764892455, 968.8994185772515]]}, {"length": 27.6880255653, "source": 4224950748, "destination": 4224950834, "path": [[6298.539276492931, 3207.749418578487], [6285.08927648852, 3218.8994185773367], [6270.4892764884335, 3234.5994185760674], [6257.639276491034, 3249.849418576645], [6247.689276491997, 3267.5994185780155], [6238.189276494666, 3287.9494185777958], [6231.639276492729, 3318.799418579488]]}, {"length": 33.5369854364, "source": 4224950748, "destination": 4224950716, "path": [[6298.539276492931, 3207.749418578487], [6314.0892764934615, 3230.5494185784764], [6327.33927648843, 3248.8494185791697], [6340.089276491767, 3263.0494185781345], [6355.6392764922975, 3277.199418576515], [6373.089276493715, 3290.949418577327], [6393.189276494127, 3304.0994185782324], [6425.8892764925695, 3320.199418578085]]}, {"length": 14.9555700611, "source": 4224950748, "destination": 4224950742, "path": [[6298.539276492931, 3207.749418578487], [6257.639276491034, 3148.049418577159]]}, {"length": 26.6969662947, "source": 4224950748, "destination": 4224950815, "path": [[6298.539276492931, 3207.749418578487], [6320.789276493599, 3193.499418578938], [6340.789276492842, 3182.3494185765358], [6367.739276491591, 3170.149418576074], [6393.889276495202, 3159.999418578252], [6434.639276491794, 3147.79941857779]]}, {"length": 104.694136061, "source": 4224950749, "destination": 4224963689, "path": [[6148.439276493889, 4538.999418578271], [6484.939276489854, 4540.599418579205], [6484.939276489854, 4343.999418576772], [6489.089276492166, 4324.79941857622]]}, {"length": 2.38096852347, "source": 4224950749, "destination": 4224950843, "path": [[6148.439276493889, 4538.999418578271], [6148.939276492627, 4528.299418577575]]}, {"length": 17.8069112208, "source": 4224950749, "destination": 4224950675, "path": [[6148.439276493889, 4538.999418578271], [6221.089276493785, 4597.1994185762815]]}, {"length": 14.2936950562, "source": 4224950749, "destination": 2069120358, "path": [[6148.439276493889, 4538.999418578271], [6146.139276488328, 4603.24941857948]]}, {"length": 10.7214765571, "source": 4224950750, "destination": 2069120219, "path": [[6044.339276492394, 4590.1994185761905], [6062.58927648895, 4585.6994185768945], [6101.639276494097, 4569.549418576457]]}, {"length": 90.0818084824, "source": 4224950750, "destination": 2069120388, "path": [[6044.339276492394, 4590.1994185761905], [6027.039276489177, 4591.499418577172], [5946.48927648933, 4591.349418578971], [5509.289276488971, 4590.449418579112]]}, {"length": 23.8191466638, "source": 4224950750, "destination": 4224950829, "path": [[6044.339276492394, 4590.1994185761905], [6144.439276489777, 4665.899418576202]]}, {"length": 40.2308986189, "source": 4224950752, "destination": 4224950624, "path": [[5941.139276494312, 2918.29941857813], [5942.439276488187, 2737.3994185779793]]}, {"length": 17.2704225167, "source": 4224950752, "destination": 4224950785, "path": [[5941.139276494312, 2918.29941857813], [5838.539276489029, 2918.349418578714]]}, {"length": 22.4545038838, "source": 4224950752, "destination": 4224950626, "path": [[5941.139276494312, 2918.29941857813], [6013.539276494839, 2918.199418576961], [6074.5392764900425, 2918.199418576961]]}, {"length": 46.1712884324, "source": 1855078882, "destination": 1855078873, "path": [[-6878.81072350649, -5050.200581422359], [-7002.510723509658, -5110.500581423594], [-7118.910723505678, -5149.350581422851]]}, {"length": 237.927721391, "source": 1855078882, "destination": 134955091, "path": [[-6878.81072350649, -5050.200581422359], [-6851.860723507742, -5081.850581422742], [-6530.410723506464, -5193.700581422434], [-6433.860723511487, -5199.800581422664], [-6289.010723506294, -5177.450581420828], [-6200.510723509467, -5153.100581424042], [-6109.3107235095085, -5153.100581424042], [-5990.910723511433, -5195.550581422736], [-5816.960723507236, -5214.000581421629], [-5544.160723509605, -5229.100581424007]]}, {"length": 121.209207194, "source": 1855078882, "destination": 1428267171, "path": [[-6878.81072350649, -5050.200581422359], [-6908.61072350657, -5015.100581420739], [-6908.61072350657, -4944.050581421778], [-6683.560723509174, -4546.750581422288]]}, {"length": 27.8803103496, "source": 1855078885, "destination": 2960628177, "path": [[-2672.960723508311, -3832.0505814226635], [-2704.7607235104465, -3843.000581422729], [-2745.5107235070386, -3876.3505814216614], [-2770.160723507331, -3901.150581423707], [-2789.6607235078363, -3918.1005814228342]]}, {"length": 35.0787538928, "source": 1855078885, "destination": 2960628181, "path": [[-2672.960723508311, -3832.0505814226635], [-2693.0107235116907, -3860.4505814205936], [-2717.3107235114458, -3885.4505814214235], [-2729.410723510739, -3901.150581423707], [-2737.010723507183, -3918.7005814227405], [-2741.2607235106634, -3936.3005814223584], [-2742.9607235092135, -3976.2505814238125]]}, {"length": 15.1855668378, "source": 2586986513, "destination": 2586986524, "path": [[-786.5107235076607, -1585.6505814220156], [-785.160723509648, -1530.7005814229058], [-784.2107235092044, -1517.4005814238]]}, {"length": 40.2416503932, "source": 4224950762, "destination": 4224950785, "path": [[5838.539276489029, 2737.3994185779793], [5838.539276489029, 2918.349418578714]]}, {"length": 18.7811463747, "source": 4224950763, "destination": 4224950738, "path": [[6886.739276488641, 3321.2494185761443], [6886.339276491071, 3405.6994185789335]]}, {"length": 45.8524549348, "source": 4224950763, "destination": 4224950725, "path": [[6886.739276488641, 3321.2494185761443], [6647.889276493402, 3320.6994185768226], [6630.439276491984, 3320.649418576238], [6614.339276488579, 3320.5994185792065]]}, {"length": 20.7091207045, "source": 4224950763, "destination": 3357236917, "path": [[6886.739276488641, 3321.2494185761443], [6965.839276489305, 3270.099418578809], [6981.489276491004, 3261.9494185794906]]}, {"length": 6.59852475097, "source": 2293563340, "destination": 2293563339, "path": [[-10578.060723510418, 5083.299418576104], [-10538.86072350707, 5083.449418577857]]}, {"length": 47.9586773087, "source": 2293563340, "destination": 2292321956, "path": [[-10578.060723510418, 5083.299418576104], [-10575.560723509625, 4874.799418576714], [-10575.460723508457, 4867.649418578423]]}, {"length": 49.293067627, "source": 2293563340, "destination": 2292321597, "path": [[-10578.060723510418, 5083.299418576104], [-10578.310723509787, 5181.249418576783], [-10577.610723508713, 5304.949418576399]]}, {"length": 243.413333703, "source": 1429422573, "destination": 1942220075, "path": [[5692.839276491668, -1289.7505814208898], [5632.83927649394, -1322.2505814205476], [5349.7392764896285, -1546.7505814221738], [5266.189276490251, -1622.9505814209233], [5162.839276493969, -1754.8505814239945], [5079.639276495129, -1912.150581421912], [5067.139276491162, -1965.0505814219343], [5048.039276488225, -2045.9505814223178], [5040.889276493488, -2106.250581423552], [5040.789276492319, -2216.3505814205564]]}, {"length": 50.2816300293, "source": 1429422573, "destination": 1279884652, "path": [[5692.839276491668, -1289.7505814208898], [5766.639276494345, -1213.8505814220935], [5844.139276490523, -1095.750581423971]]}, {"length": 13.3043976515, "source": 1429422573, "destination": 1429422509, "path": [[5692.839276491668, -1289.7505814208898], [5680.239276493638, -1268.750581420619], [5653.7392764894885, -1251.7505814209073], [5642.48927648947, -1245.6505814206764]]}, {"length": 77.8477641031, "source": 1429422573, "destination": 1942224447, "path": [[5692.839276491668, -1289.7505814208898], [5693.439276491574, -1309.95058142247], [5693.439276491574, -1327.2005814215504], [5681.73927648985, -1350.2505814209087], [5660.289276491426, -1369.5005814220451], [5595.8892764920165, -1417.200581421696], [5584.8392764943355, -1434.8005814213138], [5577.139276489617, -1450.7005814223817], [5584.8392764943355, -1464.2005814238246], [5599.93927649316, -1476.1005814207806], [5621.389276491584, -1484.2005814230674], [5652.239276493276, -1484.2005814230674], [5683.089276494968, -1487.250581423183], [5709.889276488411, -1493.3505814234138], [5729.989276488823, -1506.550581421351], [5744.739276494215, -1523.800581423984]]}, {"length": 11.3140573249, "source": 135012848, "destination": 135076344, "path": [[9699.489276492557, 1688.3994185761253], [9632.289276488847, 1689.5494185789062]]}, {"length": 63.293246803, "source": 135012848, "destination": 2074050058, "path": [[9699.489276492557, 1688.3994185761253], [9701.589276488676, 1403.7994185791547]]}, {"length": 50.1259081365, "source": 135012848, "destination": 2062743142, "path": [[9699.489276492557, 1688.3994185761253], [9997.289276491018, 1687.949418577972]]}, {"length": 131.656688589, "source": 135012851, "destination": 135072514, "path": [[10339.839276490182, 1687.39941857865], [10335.839276493174, 2279.3994185761335]]}, {"length": 134.325316703, "source": 135012851, "destination": 134968314, "path": [[10339.839276490182, 1687.39941857865], [10343.839276494293, 1083.3994185794893]]}, {"length": 57.6582513535, "source": 135012851, "destination": 2062743142, "path": [[10339.839276490182, 1687.39941857865], [9997.289276491018, 1687.949418577972]]}, {"length": 6.01921737801, "source": 4224950773, "destination": 4224950704, "path": [[6148.439276493889, 3250.8494185776726], [6135.989276494058, 3250.199418577182], [6126.839276490159, 3248.349418576879], [6113.439276489885, 3245.799418579054]]}, {"length": 29.4049931817, "source": 4224950773, "destination": 4224950802, "path": [[6148.439276493889, 3250.8494185776726], [6168.439276493132, 3247.8494185781415], [6185.889276494549, 3241.7494185779105], [6202.789276493093, 3232.54941857698], [6216.189276493367, 3220.3994185771026], [6226.239276493572, 3206.1494185775528], [6232.289276489666, 3191.449418576298], [6234.289276491722, 3175.6994185769827], [6232.789276488404, 3161.049418576312], [6229.339276494273, 3152.849418576409]]}, {"length": 20.626324695, "source": 4224950773, "destination": 4224950834, "path": [[6148.439276493889, 3250.8494185776726], [6156.039276490333, 3258.2994185794687], [6164.43927648902, 3266.4994185793716], [6186.6892764896875, 3284.849418577096], [6231.639276492729, 3318.799418579488]]}, {"length": 13.3403706942, "source": 2069036868, "destination": 2311060240, "path": [[-4165.460723505987, 3454.5494185778125], [-4244.710723504852, 3454.9494185789345]]}, {"length": 47.6254266022, "source": 2069036868, "destination": 2311060177, "path": [[-4165.460723505987, 3454.5494185778125], [-4166.810723511106, 3668.69941857928]]}, {"length": 12.5408232504, "source": 2069036868, "destination": 2251802364, "path": [[-4165.460723505987, 3454.5494185778125], [-4090.9607235093404, 3455.1994185783033]]}, {"length": 65.0053343895, "source": 2069036868, "destination": 134959951, "path": [[-4165.460723505987, 3454.5494185778125], [-4163.610723509237, 3162.2494185761243]]}, {"length": 56.025258657, "source": 135012864, "destination": 2086723464, "path": [[4598.839276489742, 1572.3994185776746], [4265.989276490245, 1572.0494185771372]]}, {"length": 134.334810499, "source": 135012864, "destination": 134968250, "path": [[4598.839276489742, 1572.3994185776746], [4598.339276491004, 968.3494185779296]]}, {"length": 154.550962257, "source": 135012864, "destination": 134936074, "path": [[4598.839276489742, 1572.3994185776746], [5042.539276495007, 1567.5994185784248], [5166.789276493944, 1566.8494185767656], [5470.0892764927285, 1567.649418579009], [5516.9892764936885, 1567.899418578378]]}, {"length": 82.9414093579, "source": 135012864, "destination": 135088493, "path": [[4598.839276489742, 1572.3994185776746], [4601.339276490535, 1945.349418576825]]}, {"length": 17.2704225167, "source": 4224950785, "destination": 4224950752, "path": [[5838.539276489029, 2918.349418578714], [5941.139276494312, 2918.29941857813]]}, {"length": 40.2416503932, "source": 4224950785, "destination": 4224950762, "path": [[5838.539276489029, 2918.349418578714], [5838.539276489029, 2737.3994185779793]]}, {"length": 18.1793296369, "source": 4224950785, "destination": 4224950723, "path": [[5838.539276489029, 2918.349418578714], [5730.539276491698, 2918.4494185763297]]}, {"length": 6.54366181798, "source": 2585900459, "destination": 2585900329, "path": [[-1993.5607235055386, -1817.0505814225635], [-1954.7107235098338, -1815.850581422751]]}, {"length": 4.29523819264, "source": 2585900459, "destination": 2585900332, "path": [[-1993.5607235055386, -1817.0505814225635], [-2019.0607235051061, -1817.8505814212542]]}, {"length": 19.4229483479, "source": 2585900459, "destination": 2585900614, "path": [[-1993.5607235055386, -1817.0505814225635], [-2013.0107235090122, -1795.550581423555], [-2019.760723506181, -1786.4005814232087], [-2028.460723508374, -1772.7005814229813], [-2037.860723511642, -1756.450581421376], [-2040.5107235106357, -1742.7505814211486], [-2040.1607235100983, -1738.7505814205895]]}, {"length": 17.9099707256, "source": 4224950789, "destination": 4224950696, "path": [[6615.039276489653, 3149.999418578631], [6532.089276490183, 3150.449418576784], [6508.68927649384, 3149.399418578724]]}, {"length": 22.9101445168, "source": 4224950789, "destination": 4224950681, "path": [[6615.039276489653, 3149.999418578631], [6751.139276488516, 3149.2494185769715]]}, {"length": 31.9139894038, "source": 4224950789, "destination": 4224950635, "path": [[6615.039276489653, 3149.999418578631], [6614.539276490916, 3266.599418576988], [6614.489276493885, 3280.7994185759526], [6614.4392764897475, 3293.4994185787045]]}, {"length": 7.73476200781, "source": 4224950791, "destination": 4224950604, "path": [[5556.889276491006, 2697.3494185789095], [5510.93927649049, 2697.1494185765723]]}, {"length": 11.764335003, "source": 4224950791, "destination": 4224950804, "path": [[5556.889276491006, 2697.3494185789095], [5556.239276494069, 2644.449418578887]]}, {"length": 93.5903034692, "source": 4224950791, "destination": 4224950724, "path": [[5556.889276491006, 2697.3494185789095], [6112.889276494116, 2699.6494185773654]]}, {"length": 49.2744410481, "source": 4224950791, "destination": 4224950670, "path": [[5556.889276491006, 2697.3494185789095], [5552.989276495168, 2712.8494185788554], [5550.989276493112, 2728.59941857817], [5550.339276489069, 2771.2494185792025], [5547.489276494844, 2918.5494185774987]]}, {"length": 8.46683555056, "source": 4224950793, "destination": 4224950697, "path": [[6559.389276489469, 3320.499418578038], [6509.089276491409, 3320.3994185768693]]}, {"length": 9.25023881238, "source": 4224950793, "destination": 4224950725, "path": [[6559.389276489469, 3320.499418578038], [6614.339276488579, 3320.5994185792065]]}, {"length": 5.74721429854, "source": 4224950793, "destination": 4224843390, "path": [[6559.389276489469, 3320.499418578038], [6559.389276489469, 3325.9994185783626], [6559.389276489469, 3335.1494185787087], [6559.339276492437, 3346.349418578143]]}, {"length": 20.8059650185, "source": 2074042346, "destination": 2140984941, "path": [[9615.739276490842, 5750.449418577829], [9615.489276491473, 5823.549418579432], [9615.389276490305, 5843.999418576828]]}, {"length": 19.6608291187, "source": 2074042346, "destination": 2140984934, "path": [[9615.739276490842, 5750.449418577829], [9606.48927649288, 5792.249418576034], [9599.089276491668, 5816.099418577636], [9592.539276489731, 5828.84941857742], [9586.739276493006, 5835.349418578772]]}, {"length": 112.414728231, "source": 2139775503, "destination": 2139775504, "path": [[-6418.560723510325, 6005.499418577642], [-6462.160723508248, 6005.99941857638], [-6630.710723506183, 6006.249418579301], [-6836.56072350658, 6005.09941857652], [-6981.710723508172, 6003.949418577293], [-7086.310723508404, 6003.299418576802]]}, {"length": 13.0395839204, "source": 2139775503, "destination": 2251802370, "path": [[-6418.560723510325, 6005.499418577642], [-6384.260723507396, 6005.09941857652], [-6341.110723511179, 6005.549418578226]]}, {"length": 47.7918580967, "source": 2139775503, "destination": 1433125500, "path": [[-6418.560723510325, 6005.499418577642], [-6419.460723506631, 6220.399418577216]]}, {"length": 16.4712290678, "source": 2139775503, "destination": 135033661, "path": [[-6418.560723510325, 6005.499418577642], [-6416.6107235053005, 5931.449418579149]]}, {"length": 7.492083919, "source": 2139775504, "destination": 1965661601, "path": [[-7086.310723508404, 6003.299418576802], [-7130.81072350974, 6003.349418577386]]}, {"length": 15.8794941727, "source": 2139775504, "destination": 135033658, "path": [[-7086.310723508404, 6003.299418576802], [-7085.61072350733, 5931.899418577303]]}, {"length": 47.8707150624, "source": 2139775504, "destination": 1433125502, "path": [[-7086.310723508404, 6003.299418576802], [-7088.360723507492, 6218.549418576913]]}, {"length": 112.414728231, "source": 2139775504, "destination": 2139775503, "path": [[-7086.310723508404, 6003.299418576802], [-6981.710723508172, 6003.949418577293], [-6836.56072350658, 6005.09941857652], [-6630.710723506183, 6006.249418579301], [-6462.160723508248, 6005.99941857638], [-6418.560723510325, 6005.499418577642]]}, {"length": 114.683920082, "source": 2139775505, "destination": 2251802370, "path": [[-5660.160723508056, 6003.299418576802], [-5718.710723506603, 6007.749418579067], [-5917.060723511724, 6007.149418579161], [-6096.410723507972, 6006.549418579254], [-6263.060723505021, 6005.699418576427], [-6341.110723511179, 6005.549418578226]]}, {"length": 15.2116071087, "source": 2139775505, "destination": 135031620, "path": [[-5660.160723508056, 6003.299418576802], [-5659.660723509319, 5934.899418576833]]}, {"length": 48.5707707159, "source": 2139775505, "destination": 2068973834, "path": [[-5660.160723508056, 6003.299418576802], [-5661.710723508406, 6221.699418578197]]}, {"length": 13.1582507806, "source": 2139775505, "destination": 2069376750, "path": [[-5660.160723508056, 6003.299418576802], [-5630.410723505009, 6001.899418578205], [-5582.0607235048665, 6002.3994185769425]]}, {"length": 13.3158788371, "source": 4224950802, "destination": 4224950688, "path": [[6229.339276494273, 3152.849418576409], [6218.039276490117, 3138.1994185792905], [6205.089276491549, 3123.9494185761887], [6192.239276494149, 3115.2994185781326], [6176.889276488851, 3110.4494185782983]]}, {"length": 100.330323406, "source": 4224950802, "destination": 4224980290, "path": [[6229.339276494273, 3152.849418576409], [6149.189276491996, 3180.149418579248], [6068.539276490981, 3179.949418576911], [6016.2392764908645, 3179.8494185792947], [5641.03927649029, 3178.9494185794356]]}, {"length": 29.4049931817, "source": 4224950802, "destination": 4224950773, "path": [[6229.339276494273, 3152.849418576409], [6232.789276488404, 3161.049418576312], [6234.289276491722, 3175.6994185769827], [6232.289276489666, 3191.449418576298], [6226.239276493572, 3206.1494185775528], [6216.189276493367, 3220.3994185771026], [6202.789276493093, 3232.54941857698], [6185.889276494549, 3241.7494185779105], [6168.439276493132, 3247.8494185781415], [6148.439276493889, 3250.8494185776726]]}, {"length": 4.9920596818, "source": 4224950802, "destination": 4224950742, "path": [[6229.339276494273, 3152.849418576409], [6243.439276488516, 3148.049418577159], [6257.639276491034, 3148.049418577159]]}, {"length": 47.5686215757, "source": 4224950802, "destination": 4224950661, "path": [[6229.339276494273, 3152.849418576409], [6232.939276493709, 3137.649418576416], [6234.289276491722, 2939.199418577232]]}, {"length": 82.3445018852, "source": 1429422611, "destination": 135010418, "path": [[4137.439276490795, -1327.8005814214566], [4195.439276493573, -1288.7005814228303], [4273.6892764949625, -1258.9505814233348], [4362.139276494759, -1240.200581420936], [4594.289276489861, -1241.9005814230388]]}, {"length": 467.917249838, "source": 1429422611, "destination": 1429422909, "path": [[4137.439276490795, -1327.8005814214566], [4218.289276494147, -1418.6505814208772], [4450.03927649168, -1651.2505814212375], [4521.039276490057, -1722.500581422537], [4587.689276490892, -1796.650581422199], [4651.139276489857, -1889.0505814219694], [4696.8892764951415, -1982.600581420968], [4733.83927648996, -2073.150581423988], [4749.639276489859, -2126.6505814239167], [4763.539276488871, -2184.950581423095], [4772.439276493401, -2235.500581420524], [4778.289276494263, -2294.2505814214087], [4780.239276492182, -2354.2005814221056], [4785.939276494844, -2671.050581422918], [4783.639276489283, -2728.8505814233586], [4771.539276489989, -2810.000581423111], [4756.0892764906275, -2880.8505814232885], [4731.239276495103, -2968.7505814237625], [4701.789276488455, -3046.0505814211556], [4666.989276493894, -3118.0505814205617], [4624.9392764892145, -3192.2005814237764], [4578.1392764894235, -3270.3505814239975]]}, {"length": 13.7436867911, "source": 4224950804, "destination": 4224950665, "path": [[5556.239276494069, 2644.449418578887], [5556.239276494069, 2582.649418577887]]}, {"length": 94.0025997439, "source": 4224950804, "destination": 4224950699, "path": [[5556.239276494069, 2644.449418578887], [6014.339276489977, 2646.0994185768527], [6070.389276494836, 2647.749418578371], [6114.439276494466, 2650.999418577271]]}, {"length": 11.764335003, "source": 4224950804, "destination": 4224950791, "path": [[5556.239276494069, 2644.449418578887], [5556.889276491006, 2697.3494185789095]]}, {"length": 108.080132042, "source": 4224950809, "destination": 4224950688, "path": [[5545.489276492788, 3135.249418576791], [6051.889276491806, 3136.1494185766505], [6061.139276489768, 3133.149418577119], [6071.339276488175, 3128.549418576654], [6085.939276488261, 3119.949418579182], [6098.139276488723, 3113.799418578367], [6112.889276494116, 3109.249418578486], [6126.989276488359, 3107.1994185793983], [6141.739276493752, 3106.699418577108], [6157.689276491851, 3107.74941857872], [6176.889276488851, 3110.4494185782983]]}, {"length": 6.61489490162, "source": 4224950809, "destination": 4224950623, "path": [[5545.489276492788, 3135.249418576791], [5506.189276488271, 3135.1494185791753]]}, {"length": 48.1931751924, "source": 4224950809, "destination": 4224950670, "path": [[5545.489276492788, 3135.249418576791], [5547.489276494844, 2918.5494185774987]]}, {"length": 9.69085712753, "source": 4224950809, "destination": 4224950839, "path": [[5545.489276492788, 3135.249418576791], [5548.839276492856, 3178.7494185770984]]}, {"length": 12.4797930792, "source": 4224950815, "destination": 4224950696, "path": [[6434.639276491794, 3147.79941857779], [6484.839276488685, 3147.7494185772057], [6508.68927649384, 3149.399418578724]]}, {"length": 26.6969662947, "source": 4224950815, "destination": 4224950748, "path": [[6434.639276491794, 3147.79941857779], [6393.889276495202, 3159.999418578252], [6367.739276491591, 3170.149418576074], [6340.789276492842, 3182.3494185765358], [6320.789276493599, 3193.499418578938], [6298.539276492931, 3207.749418578487]]}, {"length": 29.7939997327, "source": 4224950815, "destination": 4224950742, "path": [[6434.639276491794, 3147.79941857779], [6257.639276491034, 3148.049418577159]]}, {"length": 40.2860829898, "source": 4224950818, "destination": 4224950602, "path": [[5627.989276490553, 2737.349418577395], [5628.639276494596, 2918.499418576914]]}, {"length": 308.278803435, "source": 134955099, "destination": 1855078873, "path": [[-5595.810723505679, -5616.800581421444], [-6521.660723507239, -5621.100581421956], [-6585.66072350908, -5612.600581422101], [-6637.160723506951, -5601.100581422714], [-6702.660723505005, -5579.100581421415], [-6769.160723507639, -5546.600581421757], [-6822.660723507568, -5510.600581423831], [-6859.660723506522, -5478.60058142291], [-7022.6607235071015, -5303.600581420653], [-7056.160723507787, -5260.600581422636], [-7118.910723505678, -5149.350581422851]]}, {"length": 86.6829202538, "source": 134955099, "destination": 134955091, "path": [[-5595.810723505679, -5616.800581421444], [-5588.160723505098, -5535.10058142237], [-5571.160723505386, -5387.100581422999], [-5544.160723509605, -5229.100581424007]]}, {"length": 18.4248127291, "source": 134955099, "destination": 2080625207, "path": [[-5595.810723505679, -5616.800581421444], [-5486.360723509165, -5614.600581420604]]}, {"length": 13.4520525831, "source": 2351111997, "destination": 2352259856, "path": [[-2622.710723507282, 6449.0494185776015], [-2702.6107235101904, 6448.199418578326]]}, {"length": 47.9611429733, "source": 2351111997, "destination": 2703728618, "path": [[-2622.710723507282, 6449.0494185776015], [-2624.1607235064635, 6360.449418576053], [-2622.710723507282, 6233.399418576369]]}, {"length": 96.3696112945, "source": 2351111997, "destination": 2352170540, "path": [[-2622.710723507282, 6449.0494185776015], [-2050.2607235073356, 6450.949418578489]]}, {"length": 10.1629699193, "source": 4224950828, "destination": 4224950615, "path": [[6773.28927649512, 5125.299418576646], [6773.28927649512, 5079.5994185790505]]}, {"length": 13.9351503592, "source": 4224950829, "destination": 2069120358, "path": [[6144.439276489777, 4665.899418576202], [6146.139276488328, 4603.24941857948]]}, {"length": 23.8191466638, "source": 4224950829, "destination": 4224950750, "path": [[6144.439276489777, 4665.899418576202], [6044.339276492394, 4590.1994185761905]]}, {"length": 26.4077541856, "source": 4224950829, "destination": 4224950597, "path": [[6144.439276489777, 4665.899418576202], [6252.889276488815, 4751.6994185770045]]}, {"length": 98.1701276001, "source": 1428267566, "destination": 1483977699, "path": [[-2492.5607235104508, -5099.650581421145], [-2513.4107235089687, -5084.70058142052], [-2516.360723511468, -4824.500581420921], [-2305.6107235106538, -4822.7005814212025]]}, {"length": 13.7243278587, "source": 1428267566, "destination": 1483977715, "path": [[-2492.5607235104508, -5099.650581421145], [-2411.010723506024, -5099.150581422407]]}, {"length": 57.8360178638, "source": 1428267566, "destination": 1483977719, "path": [[-2492.5607235104508, -5099.650581421145], [-2488.8107235057078, -5359.700581422544]]}, {"length": 30.7180768376, "source": 4224950834, "destination": 4224950704, "path": [[6231.639276492729, 3318.799418579488], [6182.639276488544, 3318.3494185777818], [6167.239276493319, 3316.799418577432], [6155.8392764951, 3312.249418577551], [6145.789276494896, 3303.599418579495], [6109.539276494047, 3265.549418578928], [6106.889276495053, 3257.9494185789317], [6108.739276491804, 3251.899418579285], [6113.439276489885, 3245.799418579054]]}, {"length": 32.699158695, "source": 4224950834, "destination": 4224950716, "path": [[6231.639276492729, 3318.799418579488], [6425.8892764925695, 3320.199418578085]]}, {"length": 177.776488456, "source": 4224950834, "destination": 4224963684, "path": [[6231.639276492729, 3318.799418579488], [6228.239276488523, 3842.0994185770496], [6226.88927649051, 3851.2494185773958], [6225.589276489529, 3861.899418577508], [6222.889276493504, 3871.549418576592], [6218.839276492361, 3880.1994185782005], [6177.939276490462, 3931.4494185767044], [6170.589276493388, 3941.0994185793415], [6167.239276493319, 3949.1994185780754], [6164.389276491988, 3959.949418579356], [6159.039276489864, 3988.8494185760237], [6157.1892764931135, 4005.049418577045], [6154.489276489983, 4026.8494185760064], [6152.489276495033, 4067.4994185785354], [6151.289276495219, 4106.099418578424]]}, {"length": 27.6880255653, "source": 4224950834, "destination": 4224950748, "path": [[6231.639276492729, 3318.799418579488], [6238.189276494666, 3287.9494185777958], [6247.689276491997, 3267.5994185780155], [6257.639276491034, 3249.849418576645], [6270.4892764884335, 3234.5994185760674], [6285.08927648852, 3218.8994185773367], [6298.539276492931, 3207.749418578487]]}, {"length": 20.626324695, "source": 4224950834, "destination": 4224950773, "path": [[6231.639276492729, 3318.799418579488], [6186.6892764896875, 3284.849418577096], [6164.43927648902, 3266.4994185793716], [6156.039276490333, 3258.2994185794687], [6148.439276493889, 3250.8494185776726]]}, {"length": 499.175451086, "source": 134955571, "destination": 135018149, "path": [[-2210.160723507215, -11071.60058142398], [-2817.16072350946, -11076.600581422013], [-3550.160723506224, -11082.100581422339], [-3552.6607235070173, -10623.100581423018], [-2532.7107235071367, -10615.350581421268]]}, {"length": 115.975419684, "source": 134955571, "destination": 135018149, "path": [[-2210.160723507215, -11071.60058142398], [-2232.160723508514, -11012.600581423725], [-2265.6607235091997, -10940.10058142203], [-2308.160723508479, -10870.600581423418], [-2408.660723510536, -10747.600581421324], [-2485.8107235061766, -10668.400581423044], [-2532.7107235071367, -10615.350581421268]]}, {"length": 11.7781168515, "source": 134955571, "destination": 134955574, "path": [[-2210.160723507215, -11071.60058142398], [-2140.1607235063125, -11071.10058142169]]}, {"length": 42.6550717494, "source": 134955574, "destination": 134955577, "path": [[-2140.1607235063125, -11071.10058142169], [-1886.66072350685, -11069.100581423187]]}, {"length": 11.7781168515, "source": 134955574, "destination": 134955571, "path": [[-2140.1607235063125, -11071.10058142169], [-2210.160723507215, -11071.60058142398]]}, {"length": 13.2970620822, "source": 134955574, "destination": 135092542, "path": [[-2140.1607235063125, -11071.10058142169], [-2129.0607235116, -11130.300581420726]]}, {"length": 9.69085712753, "source": 4224950839, "destination": 4224950809, "path": [[5548.839276492856, 3178.7494185770984], [5545.489276492788, 3135.249418576791]]}, {"length": 15.5198381642, "source": 4224950839, "destination": 4224980290, "path": [[5548.839276492856, 3178.7494185770984], [5641.03927649029, 3178.9494185794356]]}, {"length": 7.25495553254, "source": 4224950839, "destination": 134959978, "path": [[5548.839276492856, 3178.7494185770984], [5505.73927649367, 3178.6494185794822]]}, {"length": 9.60679027244, "source": 4224950839, "destination": 4224950737, "path": [[5548.839276492856, 3178.7494185770984], [5548.839276492856, 3221.949418577452]]}, {"length": 127.292272246, "source": 134955577, "destination": 134955579, "path": [[-1886.66072350685, -11069.100581423187], [-1130.160723505469, -11063.100581420571]]}, {"length": 364.429026085, "source": 134955577, "destination": 134955579, "path": [[-1886.66072350685, -11069.100581423187], [-1909.1607235068864, -11054.600581420715], [-2061.660723505554, -10937.100581422499], [-2098.160723505771, -10912.60058142396], [-2119.660723508332, -10890.600581422661], [-2136.6607235080437, -10866.100581420567], [-2148.1607235074307, -10840.100581422263], [-2154.6607235052306, -10799.600581421488], [-2151.6607235056995, -10772.100581423416], [-2136.160723509306, -10733.100581422406], [-2119.1607235095944, -10708.600581423867], [-2084.6607235114334, -10677.100581421684], [-2056.1607235052293, -10660.100581421972], [-2024.6607235065994, -10646.60058142053], [-1973.1607235087267, -10634.600581422405], [-1955.1607235115398, -10632.600581423902], [-1346.1607235072393, -10638.600581422963], [-1136.1607235116367, -10637.600581421935], [-1130.160723505469, -11063.100581420571]]}, {"length": 42.6550717494, "source": 134955577, "destination": 134955574, "path": [[-1886.66072350685, -11069.100581423187], [-2140.1607235063125, -11071.10058142169]]}, {"length": 17.4348158696, "source": 4242276922, "destination": 4242275962, "path": [[-3404.2607235065248, 2120.8994185784036], [-3450.46072350641, 2119.7494185791757], [-3507.810723505145, 2119.4494185792223]]}, {"length": 108.652941579, "source": 4242276922, "destination": 135035725, "path": [[-3404.2607235065248, 2120.8994185784036], [-3409.3607235092804, 2526.5494185759962], [-3409.9607235091867, 2609.4494185784356]]}, {"length": 120.07591268, "source": 4224950843, "destination": 4224950659, "path": [[6148.939276492627, 4528.299418577575], [6027.7392764902515, 4431.399418578508], [5984.18927648936, 4396.899418576794], [5937.539276494874, 4364.149418577767], [5882.589276488659, 4330.499418578882], [5865.639276493084, 4322.599418578931], [5843.08927648891, 4315.049418575967], [5822.2392764903925, 4309.399418577442], [5798.539276490545, 4304.649418578776], [5774.739276489527, 4301.749418576861], [5750.139276493372, 4300.29941857768], [5550.489276494374, 4298.049418576255]]}, {"length": 93.8959155369, "source": 4224950843, "destination": 4224963684, "path": [[6148.939276492627, 4528.299418577575], [6148.439276493889, 4366.449418576223], [6150.43927648884, 4131.949418578529], [6151.289276495219, 4106.099418578424]]}, {"length": 2.38096852347, "source": 4224950843, "destination": 4224950749, "path": [[6148.939276492627, 4528.299418577575], [6148.439276493889, 4538.999418578271]]}, {"length": 9.65799372223, "source": 4224950844, "destination": 4224850306, "path": [[7542.88927649327, 4418.649418578724], [7555.689276493638, 4406.949418577], [7579.489276494655, 4385.1994185786225]]}, {"length": 12.4723625632, "source": 4224950844, "destination": 4224850363, "path": [[7542.88927649327, 4418.649418578724], [7592.289276495023, 4460.449418576928]]}, {"length": 32.2800324149, "source": 4224950844, "destination": 4224950605, "path": [[7542.88927649327, 4418.649418578724], [7457.389276488868, 4342.599418578175], [7432.539276493344, 4322.249418578394], [7416.33927648877, 4309.649418576811]]}, {"length": 42.0920694561, "source": 4224950844, "destination": 4224963598, "path": [[7542.88927649327, 4418.649418578724], [7538.889276489158, 4436.449418577126], [7395.1392764897155, 4568.649418576598]]}, {"length": 7.23006710401, "source": 4224950845, "destination": 4224950659, "path": [[5507.5392764933895, 4297.949418578639], [5550.489276494374, 4298.049418576255]]}, {"length": 45.4120937734, "source": 4224950845, "destination": 135018868, "path": [[5507.5392764933895, 4297.949418578639], [5507.489276489252, 4093.749418576209]]}, {"length": 8.98432334549, "source": 4224950845, "destination": 135018870, "path": [[5507.5392764933895, 4297.949418578639], [5507.589276490421, 4338.3494185782465]]}, {"length": 147.427036881, "source": 4224950847, "destination": 4224950648, "path": [[6401.139276491108, 4929.349418578255], [6353.489276492041, 4941.049418576426], [6220.089276489205, 4941.049418576426], [6187.8892764895, 4889.249418578601], [6022.239276489927, 4753.749418576092], [6020.889276491915, 4663.899418577699], [6055.78927649475, 4664.399418576437], [6205.989276494961, 4785.19941857769]]}, {"length": 45.9191319124, "source": 4224950847, "destination": 4224950648, "path": [[6401.139276491108, 4929.349418578255], [6352.839276495104, 4896.899418579182], [6307.889276492062, 4863.8994185772335], [6205.989276494961, 4785.19941857769]]}, {"length": 28.4272221102, "source": 4224950847, "destination": 4224950632, "path": [[6401.139276491108, 4929.349418578255], [6444.689276491999, 4954.749418576654], [6477.539276488642, 4970.999418578259], [6510.439276489422, 4985.699418575961], [6542.5892764920945, 4998.699418578667]]}, {"length": 23.8792336125, "source": 2309494198, "destination": 2069036347, "path": [[-3688.1107235089416, 5378.349418577955], [-3829.9607235074973, 5377.799418578633]]}, {"length": 12.788475759, "source": 2309494198, "destination": 2309494189, "path": [[-3688.1107235089416, 5378.349418577955], [-3687.1107235114664, 5435.849418578442]]}, {"length": 14.4688575198, "source": 2309494198, "destination": 2309494197, "path": [[-3688.1107235089416, 5378.349418577955], [-3602.1607235099395, 5378.6994185784915]]}, {"length": 173.461294984, "source": 134955595, "destination": 134955618, "path": [[-8795.160723508388, -11195.600581423549], [-8708.160723507774, -11190.60058142196], [-8622.660723510478, -11177.600581422808], [-8540.66072351145, -11158.60058142104], [-8481.160723505354, -11152.600581421979], [-7916.160723510757, -11156.1005814238], [-7819.660723505705, -11164.600581423656], [-7772.16072350484, -11172.100581422485]]}, {"length": 64.7632141828, "source": 134955595, "destination": 135065381, "path": [[-8795.160723508388, -11195.600581423549], [-8923.160723504963, -11196.100581422286], [-9030.660723510664, -11196.600581421024], [-9029.660723506084, -11229.600581422972], [-9026.660723506553, -11309.600581423496]]}, {"length": 246.71780526, "source": 134955595, "destination": 135037807, "path": [[-8795.160723508388, -11195.600581423549], [-8790.1607235068, -10900.100581423543], [-8377.660723510871, -10901.100581421018], [-8282.66072350914, -10908.10058142111], [-8189.160723510724, -10921.100581423814], [-7730.660723510141, -11008.100581420877]]}, {"length": 61.7434389103, "source": 135053909, "destination": 134954264, "path": [[-6348.410723511222, 4543.499418577568], [-6354.310723509116, 4821.099418578001]]}, {"length": 142.95255556, "source": 2069120441, "destination": 2069120282, "path": [[4325.189276492836, 4046.2494185788955], [4326.43927648968, 3403.449418577509]]}, {"length": 54.362424655, "source": 2069120441, "destination": 2069120291, "path": [[4325.189276492836, 4046.2494185788955], [4064.989276493236, 4045.349418579036], [4037.539276488644, 4050.7994185787766], [4004.7392764890333, 4058.549418576973]]}, {"length": 54.8094077232, "source": 2069120441, "destination": 2069120455, "path": [[4325.189276492836, 4046.2494185788955], [4650.78927648932, 4047.3494185775394]]}, {"length": 87.7700279016, "source": 1429422683, "destination": 2139783259, "path": [[4278.789276490614, -1616.400581422539], [4135.739276492245, -1496.0005814224075], [4072.6892764908484, -1440.8005814239289], [3967.089276493141, -1320.350581423213], [3958.139276491579, -1306.70058142357]]}, {"length": 67.5406064649, "source": 1429422683, "destination": 135084837, "path": [[4278.789276490614, -1616.400581422539], [4206.589276492423, -1660.2505814233837], [4131.189276492364, -1697.4005814205384], [4097.889276494016, -1711.6005814230562], [4070.189276490055, -1721.4505814209247], [4042.6892764884315, -1728.4005814239833], [4013.089276490689, -1733.0505814214803], [3985.939276489603, -1735.1005814205678], [3922.539276494774, -1736.0005814239798]]}, {"length": 28.388392896, "source": 135038607, "destination": 4224849377, "path": [[6297.439276494288, 4719.899418578421], [6179.039276489107, 4628.999418578416]]}, {"length": 10.3073825521, "source": 135038607, "destination": 4224950597, "path": [[6297.439276494288, 4719.899418578421], [6252.889276488815, 4751.6994185770045]]}, {"length": 36.9823076424, "source": 135038607, "destination": 4224850341, "path": [[6297.439276494288, 4719.899418578421], [6395.83927649312, 4794.899418577359], [6452.439276493749, 4837.749418577176]]}, {"length": 173.461294984, "source": 134955618, "destination": 134955595, "path": [[-7772.16072350484, -11172.100581422485], [-7819.660723505705, -11164.600581423656], [-7916.160723510757, -11156.1005814238], [-8481.160723505354, -11152.600581421979], [-8540.66072351145, -11158.60058142104], [-8622.660723510478, -11177.600581422808], [-8708.160723507774, -11190.60058142196], [-8795.160723508388, -11195.600581423549]]}, {"length": 67.4219213123, "source": 134955618, "destination": 135037811, "path": [[-7772.16072350484, -11172.100581422485], [-7786.660723510863, -11229.600581422972], [-7791.660723505345, -11288.100581420935], [-7789.160723511657, -11474.100581423842]]}, {"length": 37.1345618869, "source": 134955618, "destination": 135037807, "path": [[-7772.16072350484, -11172.100581422485], [-7730.660723510141, -11008.100581420877]]}, {"length": 124.042215587, "source": 134980201, "destination": 134980203, "path": [[-2680.910723505292, 3200.199418579075], [-1944.0107235055848, 3202.8494185780687]]}, {"length": 10.8417759776, "source": 134980201, "destination": 2068887959, "path": [[-2680.910723505292, 3200.199418579075], [-2680.6107235088916, 3151.449418577812]]}, {"length": 58.2001432125, "source": 134980203, "destination": 2069036353, "path": [[-1944.0107235055848, 3202.8494185780687], [-1945.7107235112403, 3464.549418577434]]}, {"length": 125.304772955, "source": 134980203, "destination": 134980206, "path": [[-1944.0107235055848, 3202.8494185780687], [-1199.6107235106024, 3205.599418578231]]}, {"length": 10.8430228515, "source": 134980203, "destination": 2068887951, "path": [[-1944.0107235055848, 3202.8494185780687], [-1947.1607235104216, 3154.14941857739]]}, {"length": 17.6078995756, "source": 2310516505, "destination": 2311059946, "path": [[-3527.16072350745, 4341.7494185789], [-3422.5607235072175, 4341.299418577193]]}, {"length": 95.9186191912, "source": 2310516505, "destination": 2069376892, "path": [[-3527.16072350745, 4341.7494185789], [-3966.860723508603, 4339.29941857869], [-4096.960723508402, 4339.099418576353]]}, {"length": 13.2994341674, "source": 2310516505, "destination": 2310516522, "path": [[-3527.16072350745, 4341.7494185789], [-3526.8107235069124, 4281.949418576403]]}, {"length": 47.4137620496, "source": 2310516505, "destination": 2310516445, "path": [[-3527.16072350745, 4341.7494185789], [-3528.010723506725, 4554.949418576371]]}, {"length": 58.189147282, "source": 134980206, "destination": 2069036840, "path": [[-1199.6107235106024, 3205.599418578231], [-1201.3107235091525, 3467.249418577012]]}, {"length": 121.273242477, "source": 134980206, "destination": 134980211, "path": [[-1199.6107235106024, 3205.599418578231], [-479.1607235077322, 3208.1994185766407]]}, {"length": 10.8417759776, "source": 134980206, "destination": 2068887957, "path": [[-1199.6107235106024, 3205.599418578231], [-1199.3107235070966, 3156.8494185769678]]}, {"length": 10.8301315659, "source": 134980211, "destination": 2068887953, "path": [[-479.1607235077322, 3208.1994185766407], [-478.8607235113318, 3159.4994185759615]]}, {"length": 63.0648579587, "source": 134980211, "destination": 2069036653, "path": [[-479.1607235077322, 3208.1994185766407], [-104.51072351003177, 3209.549418578206]]}, {"length": 58.2001432125, "source": 134980211, "destination": 2069036654, "path": [[-479.1607235077322, 3208.1994185766407], [-480.8607235062823, 3469.8994185760057]]}, {"length": 10.8330438422, "source": 134980214, "destination": 2068887949, "path": [[248.48927649401276, 3210.849418579187], [247.03927649483148, 3162.149418578508]]}, {"length": 54.8976397827, "source": 134980214, "destination": 2069036655, "path": [[248.48927649401276, 3210.849418579187], [246.93927649366287, 3457.6994185790963]]}, {"length": 113.576565648, "source": 1429422711, "destination": 1429422611, "path": [[4435.889276493299, -1752.8505814219386], [4376.639276493677, -1657.9505814213746], [4126.089276489609, -1411.5005814225867], [4108.589276491159, -1389.0005814225503], [4105.339276492259, -1371.5505814211326], [4112.589276495271, -1351.3505814231053], [4137.439276490795, -1327.8005814214566]]}, {"length": 40.2483687936, "source": 1429422711, "destination": 1429422683, "path": [[4435.889276493299, -1752.8505814219386], [4278.789276490614, -1616.400581422539]]}, {"length": 1.37574511278, "source": 2327765627, "destination": 2327765636, "path": [[-1065.0607235049847, 4224.299418577715], [-1065.7607235060595, 4230.44941857853]]}, {"length": 47.714948604, "source": 1433125500, "destination": 2286663053, "path": [[-6419.460723506631, 6220.399418577216], [-6421.410723511655, 6434.949418576252]]}, {"length": 112.608069549, "source": 1433125500, "destination": 1433125502, "path": [[-6419.460723506631, 6220.399418577216], [-6580.460723505155, 6221.499418579413], [-6793.7607235109, 6220.399418577216], [-7088.360723507492, 6218.549418576913]]}, {"length": 47.7918580967, "source": 1433125500, "destination": 2139775503, "path": [[-6419.460723506631, 6220.399418577216], [-6418.560723510325, 6005.499418577642]]}, {"length": 47.8707150624, "source": 1433125502, "destination": 2139775504, "path": [[-7088.360723507492, 6218.549418576913], [-7086.310723508404, 6003.299418576802]]}, {"length": 7.36468918788, "source": 1433125502, "destination": 1965661530, "path": [[-7088.360723507492, 6218.549418576913], [-7132.110723510721, 6218.399418578712]]}, {"length": 112.608069549, "source": 1433125502, "destination": 1433125500, "path": [[-7088.360723507492, 6218.549418576913], [-6793.7607235109, 6220.399418577216], [-6580.460723505155, 6221.499418579413], [-6419.460723506631, 6220.399418577216]]}, {"length": 47.2721258263, "source": 1433125502, "destination": 2286590558, "path": [[-7088.360723507492, 6218.549418576913], [-7085.110723508592, 6431.099418577446]]}, {"length": 61.1574318704, "source": 1433125503, "destination": 135064200, "path": [[-7776.41072350832, 6215.949418578503], [-7775.610723506077, 6490.9494185769745]]}, {"length": 23.2620868639, "source": 1433125503, "destination": 1433125504, "path": [[-7776.41072350832, 6215.949418578503], [-7776.710723511826, 6111.349418578271]]}, {"length": 108.464884078, "source": 1433125503, "destination": 1965661530, "path": [[-7776.41072350832, 6215.949418578503], [-7132.110723510721, 6218.399418578712]]}, {"length": 23.802681356, "source": 2327765632, "destination": 135021878, "path": [[-1065.1107235091217, 4290.949418578549], [-1206.5107235059713, 4290.399418579227]]}, {"length": 45.6776580509, "source": 2327765632, "destination": 2327765663, "path": [[-1065.1107235091217, 4290.949418578549], [-793.7607235106725, 4291.8994185789925]]}, {"length": 21.4188305303, "source": 1433125505, "destination": 1433125511, "path": [[-7771.860723508439, 5739.499418577765], [-7773.8607235104955, 5643.199418578604]]}, {"length": 57.1397745782, "source": 1433125506, "destination": 2285539768, "path": [[-6414.61072351035, 5678.599418576624], [-6403.610723509701, 5421.799418577677]]}, {"length": 114.984922725, "source": 1433125506, "destination": 1433125509, "path": [[-6414.61072351035, 5678.599418576624], [-6428.460723505224, 5666.699418576116], [-6444.360723506293, 5657.049418577031], [-6461.460723507173, 5651.749418579044], [-6481.260723511185, 5648.249418577223], [-6506.960723505983, 5645.599418578229], [-6531.760723511581, 5643.949418576711], [-6567.210723510187, 5643.549418579141], [-6734.310723508941, 5643.999418577295], [-6782.810723507282, 5644.849418576569], [-6831.360723509761, 5644.099418578463], [-6869.610723505559, 5643.399418577388], [-6897.16072351132, 5642.999418576266], [-6924.360723509437, 5644.149418579047], [-6960.960723510823, 5647.099418577995], [-6986.510723507422, 5648.149418576054], [-7083.51072351121, 5647.4994185791165]]}, {"length": 56.2323969535, "source": 1433125506, "destination": 135033661, "path": [[-6414.61072351035, 5678.599418576624], [-6416.6107235053005, 5931.449418579149]]}, {"length": 65.484531481, "source": 1433125507, "destination": 135033667, "path": [[-6337.310723509404, 5637.499418579495], [-6340.160723510735, 5931.949418577887]]}, {"length": 59.2131712214, "source": 1433125507, "destination": 134985550, "path": [[-6337.310723509404, 5637.499418579495], [-6339.260723507323, 5529.099418577488], [-6339.160723506155, 5412.949418577284], [-6348.460723508253, 5371.849418576602]]}, {"length": 55.6009893281, "source": 1433125507, "destination": 2068973871, "path": [[-6337.310723509404, 5637.499418579495], [-6269.710723508126, 5635.4994185774385], [-6007.110723508902, 5638.799418576923]]}, {"length": 13.4554021145, "source": 2327765636, "destination": 2327765632, "path": [[-1065.7607235060595, 4230.44941857853], [-1065.1107235091217, 4290.949418578549]]}, {"length": 29.8039806178, "source": 2327765636, "destination": 2310516531, "path": [[-1065.7607235060595, 4230.44941857853], [-888.7107235082681, 4231.149418576052]]}, {"length": 10.9674052617, "source": 2327765636, "destination": 2355655019, "path": [[-1065.7607235060595, 4230.44941857853], [-1130.9107235106808, 4230.44941857853]]}, {"length": 51.0180574109, "source": 1433125509, "destination": 3299414704, "path": [[-7083.51072351121, 5647.4994185791165], [-7081.0607235074485, 5418.099418577071]]}, {"length": 8.86515990934, "source": 1433125509, "destination": 1965661641, "path": [[-7083.51072351121, 5647.4994185791165], [-7136.160723504759, 5646.649418576289]]}, {"length": 114.984922725, "source": 1433125509, "destination": 1433125506, "path": [[-7083.51072351121, 5647.4994185791165], [-6986.510723507422, 5648.149418576054], [-6960.960723510823, 5647.099418577995], [-6924.360723509437, 5644.149418579047], [-6897.16072351132, 5642.999418576266], [-6869.610723505559, 5643.399418577388], [-6831.360723509761, 5644.099418578463], [-6782.810723507282, 5644.849418576569], [-6734.310723508941, 5643.999418577295], [-6567.210723510187, 5643.549418579141], [-6531.760723511581, 5643.949418576711], [-6506.960723505983, 5645.599418578229], [-6481.260723511185, 5648.249418577223], [-6461.460723507173, 5651.749418579044], [-6444.360723506293, 5657.049418577031], [-6428.460723505224, 5666.699418576116], [-6414.61072351035, 5678.599418576624]]}, {"length": 48.637433375, "source": 1433125509, "destination": 2285539540, "path": [[-7083.51072351121, 5647.4994185791165], [-7085.110723508592, 5866.199418576912]]}, {"length": 21.4188305303, "source": 1433125511, "destination": 1433125505, "path": [[-7773.8607235104955, 5643.199418578604], [-7771.860723508439, 5739.499418577765]]}, {"length": 48.1739090323, "source": 1433125511, "destination": 2285539766, "path": [[-7773.8607235104955, 5643.199418578604], [-7770.060723508721, 5426.599418576927]]}, {"length": 107.406203011, "source": 1433125511, "destination": 1965661641, "path": [[-7773.8607235104955, 5643.199418578604], [-7690.560723510487, 5641.899418577623], [-7611.410723505685, 5641.549418577086], [-7457.660723510173, 5640.549418576057], [-7391.560723505108, 5640.4494185784415], [-7217.610723508016, 5641.349418578301], [-7136.160723504759, 5646.649418576289]]}, {"length": 48.6478093214, "source": 1433125515, "destination": 2285539848, "path": [[-7080.510723511679, 5092.449418576451], [-7080.560723508711, 5311.199418578382]]}, {"length": 60.6461331447, "source": 1433125515, "destination": 134954257, "path": [[-7080.510723511679, 5092.449418576451], [-7079.210723510698, 4819.749418576435]]}, {"length": 114.739396804, "source": 1433125515, "destination": 1433125516, "path": [[-7080.510723511679, 5092.449418576451], [-6398.910723511619, 5094.049418577384]]}, {"length": 8.24026425605, "source": 1433125515, "destination": 1965661566, "path": [[-7080.510723511679, 5092.449418576451], [-7129.460723511727, 5092.29941857825]]}, {"length": 56.290387174, "source": 2327765644, "destination": 135025217, "path": [[-816.9607235117837, 3740.4994185763485], [-482.56072350483237, 3741.699418576161]]}, {"length": 64.9848115267, "source": 2327765644, "destination": 135021875, "path": [[-816.9607235117837, 3740.4994185763485], [-1203.0107235077026, 3739.0994185777517]]}, {"length": 62.3816531662, "source": 2327765644, "destination": 2327765655, "path": [[-816.9607235117837, 3740.4994185763485], [-816.3107235077405, 3850.399418578121], [-814.3107235056846, 4002.1994185792664], [-814.3107235056846, 4020.999418578697]]}, {"length": 61.0101866419, "source": 1433125517, "destination": 1433125528, "path": [[-7773.610723511127, 5089.799418577457], [-7774.560723511569, 5043.249418577034], [-7774.610723508602, 5031.699418577063], [-7770.610723511595, 5013.549418578123], [-7765.610723510008, 4999.799418577311], [-7762.210723505803, 4983.899418576243], [-7759.46072350564, 4970.0994185784], [-7757.660723505922, 4952.6494185769825], [-7757.860723508258, 4940.799418577058], [-7758.910723509871, 4929.049418578302], [-7761.560723508865, 4912.849418577281], [-7762.7107235116455, 4902.999418579412], [-7761.910723509402, 4892.099418576379], [-7759.960723511484, 4884.84941857692], [-7753.36072350541, 4879.449418577764], [-7744.6107235061845, 4876.599418576433], [-7733.4607235073345, 4876.049418577111], [-7674.260723504744, 4875.949418579495]]}, {"length": 48.5439303598, "source": 1433125517, "destination": 2284260418, "path": [[-7773.610723511127, 5089.799418577457], [-7770.060723508721, 5219.499418576134], [-7771.010723509164, 5308.049418577099]]}, {"length": 108.43604677, "source": 1433125517, "destination": 1965661566, "path": [[-7773.610723511127, 5089.799418577457], [-7129.460723511727, 5092.29941857825]]}, {"length": 48.0709007776, "source": 1433125518, "destination": 2289073176, "path": [[-8583.010723505424, 5085.7494185763135], [-8585.060723511617, 5301.899418576284]]}, {"length": 10.8243046625, "source": 1433125518, "destination": 2289073265, "path": [[-8583.010723505424, 5085.7494185763135], [-8518.710723507184, 5085.599418578113]]}, {"length": 47.2023894515, "source": 1433125518, "destination": 1433125531, "path": [[-8583.010723505424, 5085.7494185763135], [-8582.510723506686, 4873.499418579286]]}, {"length": 11.0264142946, "source": 1433125518, "destination": 2291234701, "path": [[-8583.010723505424, 5085.7494185763135], [-8648.510723510582, 5085.399418579328]]}, {"length": 47.918632248, "source": 1429422189, "destination": 1429422192, "path": [[7093.589276493617, 2143.949418577762], [7128.339276491147, 2138.4494185774374], [7342.73927648843, 2114.7494185775886], [7373.239276489585, 2106.2494185777323]]}, {"length": 18.360620556, "source": 1429422189, "destination": 1962186600, "path": [[7093.589276493617, 2143.949418577762], [7041.2892764935, 2216.399418578874]]}, {"length": 27.8677135474, "source": 1429422189, "destination": 1962186595, "path": [[7093.589276493617, 2143.949418577762], [6943.9392764891745, 2197.5494185788593]]}, {"length": 269.990222885, "source": 1429422189, "destination": 1962186550, "path": [[7093.589276493617, 2143.949418577762], [7098.139276493498, 2106.949418578807], [7049.239276490482, 1869.1994185786598], [7039.83927649432, 1824.5494185791244], [7026.439276494046, 1797.0994185780853], [7006.289276489497, 1775.7994185778614], [6980.839276494066, 1760.5994185778684], [6896.3392764942455, 1676.3494185774164], [6345.139276490386, 1682.399418577063], [6304.889276492531, 1699.6994185767278], [6283.439276494108, 1774.7994185768334], [6275.3892764888515, 1799.6494185794631], [6270.689276490771, 1831.0994185775087], [6270.689276490771, 1860.0494185783134], [6272.739276489858, 1885.9494185790027], [6279.439276489995, 1919.4494185761357], [6284.139276495182, 1949.3994185779684]]}, {"length": 12.6588487141, "source": 2358476583, "destination": 2069036849, "path": [[-1133.060723510937, 4565.399418577698], [-1208.2607235086584, 4565.099418577745]]}, {"length": 95.8510090027, "source": 2358476583, "destination": 2358476580, "path": [[-1133.060723510937, 4565.399418577698], [-757.7107235050562, 4566.749418579264], [-563.660723507553, 4567.449418576785]]}, {"length": 47.9590275124, "source": 2358476583, "destination": 2355655012, "path": [[-1133.060723510937, 4565.399418577698], [-1134.4107235089496, 4781.049418578931]]}, {"length": 47.7366656735, "source": 2358476583, "destination": 2357086671, "path": [[-1133.060723510937, 4565.399418577698], [-1131.6607235087872, 4350.749418577493]]}, {"length": 10.6581671907, "source": 1942315667, "destination": 2140984944, "path": [[9766.889276491496, 6058.449418578249], [9709.539276492762, 6038.1494185790525]]}, {"length": 94.6733065927, "source": 1942315667, "destination": 4274705959, "path": [[9766.889276491496, 6058.449418578249], [9755.23927649391, 6065.899418576492], [9750.639276489892, 6068.849418578992], [9749.989276492954, 6105.39941857624], [9747.989276490898, 6299.299418579096], [9745.289276494874, 6478.44941857656]]}, {"length": 30.9639706241, "source": 1942315667, "destination": 1942315675, "path": [[9766.889276491496, 6058.449418578249], [9819.039276493413, 6162.599418576775], [9823.439276495094, 6176.849418576325], [9826.189276495257, 6189.899418576061]]}, {"length": 94.3637896421, "source": 1942315667, "destination": 1429422148, "path": [[9766.889276491496, 6058.449418578249], [9783.93927648824, 6051.599418576359], [9799.939276490477, 6049.449418576103], [9820.539276489626, 6049.399418579071], [9833.9392764899, 6051.099418577622], [9928.889276494601, 6063.14941857633], [9943.639276492888, 6066.849418576936], [9956.989276489025, 6071.999418576724], [9968.83927648895, 6079.799418579058], [9995.38927649013, 6105.849418577946], [10065.43927649517, 6179.299418576534], [10175.339276493389, 6292.0994185766685]]}, {"length": 10.6809744698, "source": 1942315667, "destination": 2140984943, "path": [[9766.889276491496, 6058.449418578249], [9763.339276489092, 6010.499418579229]]}, {"length": 91.9342195497, "source": 1433125525, "destination": 1433125528, "path": [[-7128.160723510746, 4880.549418576407], [-7674.260723504744, 4875.949418579495]]}, {"length": 119.672579504, "source": 1433125525, "destination": 2285540161, "path": [[-7128.160723510746, 4880.549418576407], [-6989.460723509921, 4879.499418578348], [-6903.760723510288, 4879.049418576642], [-6683.060723510436, 4878.849418577857], [-6538.36072351055, 4879.699418577133], [-6417.260723509344, 4880.099418578255]]}, {"length": 47.0916108091, "source": 1433125525, "destination": 1965661566, "path": [[-7128.160723510746, 4880.549418576407], [-7129.460723511727, 5092.29941857825]]}, {"length": 13.6786112172, "source": 1433125525, "destination": 1965661606, "path": [[-7128.160723510746, 4880.549418576407], [-7126.810723505628, 4819.049418578914]]}, {"length": 65.733583844, "source": 2327765655, "destination": 2069036397, "path": [[-814.3107235056846, 4020.999418578697], [-1204.8107235074212, 4020.9494185781123]]}, {"length": 55.5412035509, "source": 2327765655, "destination": 2069036774, "path": [[-814.3107235056846, 4020.999418578697], [-484.3607235116565, 4020.9494185781123]]}, {"length": 6.27005227901, "source": 1433125528, "destination": 1433125532, "path": [[-7674.260723504744, 4875.949418579495], [-7696.710723507749, 4853.449418579458]]}, {"length": 61.0101866419, "source": 1433125528, "destination": 1433125517, "path": [[-7674.260723504744, 4875.949418579495], [-7733.4607235073345, 4876.049418577111], [-7744.6107235061845, 4876.599418576433], [-7753.36072350541, 4879.449418577764], [-7759.960723511484, 4884.84941857692], [-7761.910723509402, 4892.099418576379], [-7762.7107235116455, 4902.999418579412], [-7761.560723508865, 4912.849418577281], [-7758.910723509871, 4929.049418578302], [-7757.860723508258, 4940.799418577058], [-7757.660723505922, 4952.6494185769825], [-7759.46072350564, 4970.0994185784], [-7762.210723505803, 4983.899418576243], [-7765.610723510008, 4999.799418577311], [-7770.610723511595, 5013.549418578123], [-7774.610723508602, 5031.699418577063], [-7774.560723511569, 5043.249418577034], [-7773.610723511127, 5089.799418577457]]}, {"length": 91.9342195497, "source": 1433125528, "destination": 1433125525, "path": [[-7674.260723504744, 4875.949418579495], [-7128.160723510746, 4880.549418576407]]}, {"length": 25.6715660033, "source": 1433125529, "destination": 2289073338, "path": [[-8104.760723504967, 4874.549418577345], [-7952.260723506299, 4874.599418577929]]}, {"length": 69.4472465244, "source": 1433125529, "destination": 1433125530, "path": [[-8104.760723504967, 4874.549418577345], [-8262.760723511064, 4874.34941857856], [-8517.310723505034, 4873.69941857807]]}, {"length": 4.85163416158, "source": 1433125529, "destination": 2289073341, "path": [[-8104.760723504967, 4874.549418577345], [-8085.810723507337, 4866.449418578612], [-8080.26072350998, 4863.149418579127]]}, {"length": 47.1250587791, "source": 1433125530, "destination": 2289073265, "path": [[-8517.310723505034, 4873.69941857807], [-8518.060723510245, 4972.949418576178], [-8518.710723507184, 5074.699418578632], [-8518.710723507184, 5085.599418578113]]}, {"length": 10.9756199323, "source": 1433125530, "destination": 1433125531, "path": [[-8517.310723505034, 4873.69941857807], [-8582.510723506686, 4873.499418579286]]}, {"length": 13.1764446073, "source": 1433125530, "destination": 2289073348, "path": [[-8517.310723505034, 4873.69941857807], [-8517.110723509802, 4857.499418577049], [-8516.510723509895, 4814.449418578448]]}, {"length": 69.4472465244, "source": 1433125530, "destination": 1433125529, "path": [[-8517.310723505034, 4873.69941857807], [-8262.760723511064, 4874.34941857856], [-8104.760723504967, 4874.549418577345]]}, {"length": 10.9419005902, "source": 1433125531, "destination": 2287972808, "path": [[-8582.510723506686, 4873.499418579286], [-8647.510723506002, 4873.099418578164]]}, {"length": 10.9756199323, "source": 1433125531, "destination": 1433125530, "path": [[-8582.510723506686, 4873.499418579286], [-8517.310723505034, 4873.69941857807]]}, {"length": 13.1765455026, "source": 1433125531, "destination": 134954243, "path": [[-8582.510723506686, 4873.499418579286], [-8582.810723510192, 4814.249418576111]]}, {"length": 47.2023894515, "source": 1433125531, "destination": 1433125518, "path": [[-8582.510723506686, 4873.499418579286], [-8583.010723505424, 5085.7494185763135]]}, {"length": 6.27005227901, "source": 1433125532, "destination": 1433125528, "path": [[-7696.710723507749, 4853.449418579458], [-7674.260723504744, 4875.949418579495]]}, {"length": 19.5061425294, "source": 1433125532, "destination": 1433125571, "path": [[-7696.710723507749, 4853.449418579458], [-7709.710723510454, 4814.049418577326], [-7712.610723508817, 4794.899418577359], [-7724.160723505236, 4782.199418578159], [-7734.810723505348, 4772.74941857786]]}, {"length": 8.77137372927, "source": 1433125532, "destination": 1433125539, "path": [[-7696.710723507749, 4853.449418579458], [-7712.610723508817, 4853.199418576537], [-7727.660723510609, 4851.849418578524], [-7746.6607235052725, 4844.9994185766345]]}, {"length": 21.6829284735, "source": 1942315678, "destination": 4274705916, "path": [[9937.48927648852, 6354.999418576313], [9937.439276491488, 6257.499418577339]]}, {"length": 76.4588942242, "source": 1942315678, "destination": 844180741, "path": [[9937.48927648852, 6354.999418576313], [10030.089276490628, 6355.299418576265], [10040.239276492002, 6356.549418576662], [10049.839276490502, 6359.749418578531], [10150.48927649076, 6438.499418578658], [10167.089276492901, 6448.199418578326], [10184.43927649315, 6454.449418576758], [10201.539276494032, 6459.099418577807], [10218.089276492037, 6461.799418577385], [10235.13927648878, 6462.49941857846], [10253.88927649118, 6460.899418577526], [10271.789276494303, 6457.799418576826], [10288.439276493478, 6453.799418576267], [10305.039276488515, 6447.699418576036], [10329.18927649007, 6433.549418577655]]}, {"length": 18.9305155585, "source": 1942315678, "destination": 1942315679, "path": [[9937.48927648852, 6354.999418576313], [9825.039276492476, 6354.899418578697]]}, {"length": 36.6948471929, "source": 1942315679, "destination": 1942315675, "path": [[9825.039276492476, 6354.899418578697], [9826.189276495257, 6189.899418576061]]}, {"length": 18.9305155585, "source": 1942315679, "destination": 1942315678, "path": [[9825.039276492476, 6354.899418578697], [9937.48927648852, 6354.999418576313]]}, {"length": 32.6321024849, "source": 1942315679, "destination": 4274705959, "path": [[9825.039276492476, 6354.899418578697], [9805.189276491434, 6354.799418577528], [9745.289276494874, 6478.44941857656]]}, {"length": 8.77137372927, "source": 1433125539, "destination": 1433125532, "path": [[-7746.6607235052725, 4844.9994185766345], [-7727.660723510609, 4851.849418578524], [-7712.610723508817, 4853.199418576537], [-7696.710723507749, 4853.449418579458]]}, {"length": 15.2133612455, "source": 1433125539, "destination": 1433125564, "path": [[-7746.6607235052725, 4844.9994185766345], [-7738.310723510722, 4840.649418579091], [-7735.760723505791, 4830.04941857601], [-7739.760723509903, 4817.4494185779795], [-7760.960723508959, 4798.349418578596], [-7768.160723507834, 4787.599418577315]]}, {"length": 14.7434151496, "source": 1433125539, "destination": 1433125558, "path": [[-7746.6607235052725, 4844.9994185766345], [-7758.360723506996, 4846.4994185764], [-7771.560723504934, 4841.749418577734], [-7808.010723508119, 4804.649418577611]]}, {"length": 131.49903234, "source": 2140988068, "destination": 4719871296, "path": [[-2532.460723507768, -3612.4005814208713], [-2393.460723510543, -3695.150581421558], [-2359.76072350752, -3715.6505814230914], [-2266.460723511443, -3742.5005814206716], [-2186.4107235103347, -3793.9505814215127], [-2135.8607235058003, -3797.1505814233806], [-1830.1607235073902, -3797.600581421534]]}, {"length": 209.910865139, "source": 2140988068, "destination": 3278420174, "path": [[-2532.460723507768, -3612.4005814208713], [-2537.860723506924, -3685.500581422474], [-2538.510723510967, -3740.050581424015], [-2530.910723507418, -4067.6505814225548], [-2531.310723504987, -4085.1005814239725], [-2528.110723510224, -4098.050581422541], [-2520.960723508381, -4109.150581420807], [-2513.4107235089687, -4117.900581423583], [-2500.710723509769, -4126.900581422177], [-2461.3607235082213, -4147.650581423079], [-2355.610723505208, -4203.300581423264], [-2254.6607235085503, -4256.850581423777], [-2137.8107235108246, -4317.300581423211], [-2042.9607235072922, -4367.70058142244]]}, {"length": 7.59246080936, "source": 2140988068, "destination": 1428266943, "path": [[-2532.460723507768, -3612.4005814208713], [-2577.510723504872, -3610.600581421153]]}, {"length": 16.4728235299, "source": 1433125543, "destination": 1433125569, "path": [[-7996.510723508265, 4838.549418579419], [-8004.010723510646, 4824.4494185780695], [-8030.1607235071515, 4809.54941857803], [-8035.560723506307, 4798.699418579134], [-8034.110723507127, 4787.549418576731], [-8022.010723507833, 4780.949418577762]]}, {"length": 12.9522310639, "source": 1433125543, "destination": 1433125540, "path": [[-7996.510723508265, 4838.549418579419], [-8007.6107235100835, 4849.949418577637], [-8014.310723510221, 4852.7994185789685], [-8022.810723510076, 4853.099418578921], [-8029.010723511476, 4850.799418576912], [-8034.160723511263, 4846.949418578106], [-8054.510723511044, 4832.549418576804]]}, {"length": 12.8884360647, "source": 1433125543, "destination": 1433125556, "path": [[-7996.510723508265, 4838.549418579419], [-7974.210723510567, 4829.499418576688], [-7961.660723509567, 4820.899418579216], [-7950.660723508918, 4814.149418578495], [-7931.860723509488, 4808.599418577586]]}, {"length": 19.9653524753, "source": 134961949, "destination": 134961952, "path": [[9711.489276490682, 5705.399418577173], [9830.089276491093, 5705.449418577757]]}, {"length": 51.3210505834, "source": 134961949, "destination": 2062743117, "path": [[9711.489276490682, 5705.399418577173], [9711.139276490143, 5655.999418578972], [9707.039276491969, 5593.049418578744], [9696.03927649132, 5474.999418577653]]}, {"length": 16.9057818866, "source": 1433125556, "destination": 1433125569, "path": [[-7931.860723509488, 4808.599418577586], [-7954.610723508893, 4805.199418576933], [-7967.860723510967, 4798.699418579134], [-7993.260723509366, 4784.849418577152], [-8007.6107235100835, 4779.9994185773185], [-8022.010723507833, 4780.949418577762]]}, {"length": 20.9251551864, "source": 1433125556, "destination": 1433125558, "path": [[-7931.860723509488, 4808.599418577586], [-7819.510723507506, 4807.09941857782], [-7808.010723508119, 4804.649418577611]]}, {"length": 12.8884360647, "source": 1433125556, "destination": 1433125543, "path": [[-7931.860723509488, 4808.599418577586], [-7950.660723508918, 4814.149418578495], [-7961.660723509567, 4820.899418579216], [-7974.210723510567, 4829.499418576688], [-7996.510723508265, 4838.549418579419]]}, {"length": 20.9251551864, "source": 1433125558, "destination": 1433125556, "path": [[-7808.010723508119, 4804.649418577611], [-7819.510723507506, 4807.09941857782], [-7931.860723509488, 4808.599418577586]]}, {"length": 14.7434151496, "source": 1433125558, "destination": 1433125539, "path": [[-7808.010723508119, 4804.649418577611], [-7771.560723504934, 4841.749418577734], [-7758.360723506996, 4846.4994185764], [-7746.6607235052725, 4844.9994185766345]]}, {"length": 7.70713306514, "source": 1433125558, "destination": 1433125564, "path": [[-7808.010723508119, 4804.649418577611], [-7786.760723504926, 4795.999418576002], [-7768.160723507834, 4787.599418577315]]}, {"length": 6.5139820639, "source": 1433125564, "destination": 1433125571, "path": [[-7768.160723507834, 4787.599418577315], [-7734.810723505348, 4772.74941857786]]}, {"length": 15.2133612455, "source": 1433125564, "destination": 1433125539, "path": [[-7768.160723507834, 4787.599418577315], [-7760.960723508959, 4798.349418578596], [-7739.760723509903, 4817.4494185779795], [-7735.760723505791, 4830.04941857601], [-7738.310723510722, 4840.649418579091], [-7746.6607235052725, 4844.9994185766345]]}, {"length": 7.70713306514, "source": 1433125564, "destination": 1433125558, "path": [[-7768.160723507834, 4787.599418577315], [-7786.760723504926, 4795.999418576002], [-7808.010723508119, 4804.649418577611]]}, {"length": 6.49655949126, "source": 1433125569, "destination": 1433125577, "path": [[-8022.010723507833, 4780.949418577762], [-8032.710723504977, 4763.14941857936], [-8040.510723510863, 4755.499418578779]]}, {"length": 16.9057818866, "source": 1433125569, "destination": 1433125556, "path": [[-8022.010723507833, 4780.949418577762], [-8007.6107235100835, 4779.9994185773185], [-7993.260723509366, 4784.849418577152], [-7967.860723510967, 4798.699418579134], [-7954.610723508893, 4805.199418576933], [-7931.860723509488, 4808.599418577586]]}, {"length": 16.4728235299, "source": 1433125569, "destination": 1433125543, "path": [[-8022.010723507833, 4780.949418577762], [-8034.110723507127, 4787.549418576731], [-8035.560723506307, 4798.699418579134], [-8030.1607235071515, 4809.54941857803], [-8004.010723510646, 4824.4494185780695], [-7996.510723508265, 4838.549418579419]]}, {"length": 19.5061425294, "source": 1433125571, "destination": 1433125532, "path": [[-7734.810723505348, 4772.74941857786], [-7724.160723505236, 4782.199418578159], [-7712.610723508817, 4794.899418577359], [-7709.710723510454, 4814.049418577326], [-7696.710723507749, 4853.449418579458]]}, {"length": 6.5139820639, "source": 1433125571, "destination": 1433125564, "path": [[-7734.810723505348, 4772.74941857786], [-7768.160723507834, 4787.599418577315]]}, {"length": 4.14031694116, "source": 1433125571, "destination": 1433125575, "path": [[-7734.810723505348, 4772.74941857786], [-7725.560723507386, 4755.499418578779]]}, {"length": 47.6883466414, "source": 1433125574, "destination": 1965661608, "path": [[-7127.410723505534, 4759.849418576323], [-7127.110723509133, 4637.4994185782725], [-7134.8107235067455, 4545.59941857724]]}, {"length": 117.501999961, "source": 1433125574, "destination": 2285540229, "path": [[-7127.410723505534, 4759.849418576323], [-6980.11072351079, 4757.299418578497], [-6866.060723510259, 4757.499418577282], [-6723.360723505322, 4759.199418579385], [-6626.060723505134, 4758.999418577048], [-6446.460723509517, 4759.4494185787535], [-6429.460723509806, 4759.199418579385]]}, {"length": 13.1655969793, "source": 1433125574, "destination": 1965661606, "path": [[-7127.410723505534, 4759.849418576323], [-7126.810723505628, 4819.049418578914]]}, {"length": 100.694250281, "source": 1433125574, "destination": 1433125575, "path": [[-7127.410723505534, 4759.849418576323], [-7663.910723508138, 4755.949418576933], [-7725.560723507386, 4755.499418578779]]}, {"length": 4.14031694116, "source": 1433125575, "destination": 1433125571, "path": [[-7725.560723507386, 4755.499418578779], [-7734.810723505348, 4772.74941857786]]}, {"length": 51.8328607079, "source": 1433125575, "destination": 1433125589, "path": [[-7725.560723507386, 4755.499418578779], [-7736.8607235115405, 4750.899418578314], [-7756.960723504846, 4741.649418576799], [-7767.460723506758, 4727.749418577787], [-7767.660723509096, 4713.099418577116], [-7765.66072350704, 4697.899418577123], [-7763.910723511458, 4686.399418577736], [-7753.610723504778, 4627.89941857622], [-7751.910723506227, 4609.699418576696], [-7757.860723508258, 4584.799418577035], [-7764.360723506059, 4539.599418578177]]}, {"length": 100.694250281, "source": 1433125575, "destination": 1433125574, "path": [[-7725.560723507386, 4755.499418578779], [-7663.910723508138, 4755.949418576933], [-7127.410723505534, 4759.849418576323]]}, {"length": 6.49655949126, "source": 1433125577, "destination": 1433125569, "path": [[-8040.510723510863, 4755.499418578779], [-8032.710723504977, 4763.14941857936], [-8022.010723507833, 4780.949418577762]]}, {"length": 8.01403510187, "source": 1433125577, "destination": 1433125578, "path": [[-8040.510723510863, 4755.499418578779], [-8088.1107235057925, 4755.099418577657]]}, {"length": 13.460090058, "source": 1433125577, "destination": 2287972835, "path": [[-8040.510723510863, 4755.499418578779], [-7960.560723510924, 4754.499418577751]]}, {"length": 8.01403510187, "source": 1433125578, "destination": 1433125577, "path": [[-8088.1107235057925, 4755.099418577657], [-8040.510723510863, 4755.499418578779]]}, {"length": 18.5816597555, "source": 1433125578, "destination": 1433125540, "path": [[-8088.1107235057925, 4755.099418577657], [-8075.210723511362, 4768.249418578563], [-8065.360723506387, 4780.999418578347], [-8061.3607235093805, 4791.099418579137], [-8058.110723510481, 4801.299418577542], [-8056.210723509594, 4811.449418578917], [-8055.010723509781, 4820.149418577557], [-8054.510723511044, 4832.549418576804]]}, {"length": 71.9628109178, "source": 1433125578, "destination": 2287972846, "path": [[-8088.1107235057925, 4755.099418577657], [-8515.560723509452, 4750.349418578991]]}, {"length": 93.3517052425, "source": 134980301, "destination": 2087861299, "path": [[10397.239276493054, -9063.550581423386], [10392.439276493804, -8643.80058142089]]}, {"length": 201.464731499, "source": 134980301, "destination": 134955644, "path": [[10397.239276493054, -9063.550581423386], [10401.089276491859, -9753.550581422132], [10400.589276493121, -9969.450581422734]]}, {"length": 60.9161575301, "source": 1433125587, "destination": 134954259, "path": [[-6396.810723508395, 4546.999418579389], [-6396.9107235095635, 4587.299418577828], [-6399.260723505051, 4697.799418575954], [-6399.610723505589, 4820.899418579216]]}, {"length": 114.602599639, "source": 1433125587, "destination": 1433125588, "path": [[-6396.810723508395, 4546.999418579389], [-7077.610723506212, 4545.799418576024]]}, {"length": 161.732739953, "source": 1433125587, "destination": 135050582, "path": [[-6396.810723508395, 4546.999418579389], [-6403.4607235115, 4448.499418579388], [-6415.510723506657, 4369.449418579307], [-6442.710723504774, 4323.549418579376], [-6484.510723510084, 4288.849418578877], [-6541.410723507113, 4270.0994185764785], [-7076.210723511167, 4268.749418578465]]}, {"length": 9.6288118656, "source": 1433125588, "destination": 1965661608, "path": [[-7077.610723506212, 4545.799418576024], [-7134.8107235067455, 4545.59941857724]]}, {"length": 60.9242911478, "source": 1433125588, "destination": 134954257, "path": [[-7077.610723506212, 4545.799418576024], [-7079.210723510698, 4819.749418576435]]}, {"length": 114.602599639, "source": 1433125588, "destination": 1433125587, "path": [[-7077.610723506212, 4545.799418576024], [-6396.810723508395, 4546.999418579389]]}, {"length": 48.2589587689, "source": 1433125588, "destination": 2284151911, "path": [[-7077.610723506212, 4545.799418576024], [-7076.5107235075675, 4328.799418576778]]}, {"length": 105.983579526, "source": 1433125589, "destination": 1965661608, "path": [[-7764.360723506059, 4539.599418578177], [-7134.8107235067455, 4545.59941857724]]}, {"length": 60.5422264116, "source": 1433125589, "destination": 135096727, "path": [[-7764.360723506059, 4539.599418578177], [-7764.510723511365, 4477.249418577856], [-7764.060723509658, 4368.849418579402], [-7764.460723507227, 4336.049418576238], [-7767.2607235115265, 4267.399418576901]]}, {"length": 51.8328607079, "source": 1433125589, "destination": 1433125575, "path": [[-7764.360723506059, 4539.599418578177], [-7757.860723508258, 4584.799418577035], [-7751.910723506227, 4609.699418576696], [-7753.610723504778, 4627.89941857622], [-7763.910723511458, 4686.399418577736], [-7765.66072350704, 4697.899418577123], [-7767.660723509096, 4713.099418577116], [-7767.460723506758, 4727.749418577787], [-7756.960723504846, 4741.649418576799], [-7736.8607235115405, 4750.899418578314], [-7725.560723507386, 4755.499418578779]]}, {"length": 97.7387822106, "source": 1433125590, "destination": 1433125591, "path": [[-7973.210723505986, 4540.049418576331], [-8553.81072350525, 4536.199418577525]]}, {"length": 49.4340409802, "source": 1433125591, "destination": 2287972832, "path": [[-8553.81072350525, 4536.199418577525], [-8559.410723506744, 4559.249418576883], [-8565.310723511742, 4594.949418578409], [-8571.060723511437, 4633.599418578882], [-8576.010723508887, 4668.549418578749], [-8579.810723510662, 4705.299418578335], [-8582.460723509656, 4749.5994185773325], [-8582.560723510824, 4757.199418577329]]}, {"length": 119.518707714, "source": 1433125591, "destination": 135096722, "path": [[-8553.81072350525, 4536.199418577525], [-8545.6107235089, 4504.849418577095], [-8533.910723507177, 4463.349418578844], [-8521.060723509778, 4422.799418577483], [-8507.960723505903, 4383.799418576473], [-8491.31072350673, 4341.099418578409], [-8480.210723504912, 4318.349418579004], [-8467.110723508142, 4298.349418576208], [-8451.81072350698, 4283.69941857909], [-8433.01072350755, 4271.999418577366], [-8405.610723507096, 4262.549418577066], [-8376.010723509353, 4256.249418578051], [-8342.260723509298, 4254.1494185783795], [-8218.560723506129, 4256.799418577373], [-8103.260723508754, 4263.34941857931]]}, {"length": 97.7387822106, "source": 1433125591, "destination": 1433125590, "path": [[-8553.81072350525, 4536.199418577525], [-7973.210723505986, 4540.049418576331]]}, {"length": 57.035630837, "source": 4719461082, "destination": 4719468832, "path": [[-3638.8107235083567, -2451.3005814235103], [-3552.510723508817, -2469.60058142065], [-3453.2607235107093, -2426.9005814225866], [-3348.4107235111082, -2431.1505814225143], [-3318.4107235086913, -2433.0505814234016]]}, {"length": 140.098966094, "source": 4719461082, "destination": 4719464841, "path": [[-3638.8107235083567, -2451.3005814235103], [-3584.210723509784, -2330.000581423519], [-3584.210723509784, -2245.250581420777], [-3585.560723507797, -1935.3005814224389], [-3587.560723509853, -1878.6505814212262], [-3586.9107235058095, -1828.200581421413]]}, {"length": 115.287283336, "source": 4719461082, "destination": 4719463893, "path": [[-3638.8107235083567, -2451.3005814235103], [-3676.760723507755, -2527.000581423522], [-3709.0107235115966, -2550.850581421571], [-3754.910723507976, -2551.2505814226924], [-3781.0607235115867, -2568.250581422404], [-3796.810723507349, -2566.00058142098], [-3821.960723506379, -2564.9005814223356], [-3849.560723509171, -2570.850581420814], [-3869.310723509045, -2583.5505814235657], [-4025.1107235107497, -2527.600581423428], [-4037.4607235094118, -2513.8005814220323], [-4199.710723504779, -2511.900581421145]]}, {"length": 106.021035051, "source": 1433125599, "destination": 1965661642, "path": [[-7759.010723511039, 4000.94941857887], [-7661.960723510219, 3998.2494185792916], [-7571.110723510799, 3996.3494185784043], [-7463.110723506361, 3996.149418576067], [-7405.110723510688, 3995.599418576745], [-7378.410723511308, 3995.599418576745], [-7354.360723510922, 3997.299418578848], [-7328.46072350668, 3997.6494185793854], [-7308.510723511574, 3997.1494185770953], [-7276.110723509532, 3995.8494185761137], [-7251.810723509778, 3995.4994185791293], [-7129.460723511727, 3997.449418577048]]}, {"length": 46.922895031, "source": 1433125599, "destination": 2284151931, "path": [[-7759.010723511039, 4000.94941857887], [-7766.510723506315, 4174.049418576687], [-7766.8107235098205, 4211.8494185778845]]}, {"length": 159.355648794, "source": 1433125599, "destination": 1965661573, "path": [[-7759.010723511039, 4000.94941857887], [-7759.260723510408, 3967.749418578137], [-7758.9607235069025, 3949.7494185773976], [-7757.46072351069, 3907.599418578656], [-7756.310723507909, 3860.2994185765738], [-7757.210723511321, 3825.9994185771975], [-7756.910723507815, 3804.199418578236], [-7754.560723505221, 3785.4994185764212], [-7748.3607235109275, 3769.9994185764754], [-7738.110723508385, 3757.7994185760135], [-7725.310723508017, 3748.849418578004], [-7707.960723507767, 3743.0994185783106], [-7686.460723505206, 3739.749418578242], [-7662.11072350842, 3738.599418579014], [-7124.110723509602, 3758.7994185770413]]}, {"length": 9.07515200844, "source": 1433125600, "destination": 1965661642, "path": [[-7075.560723507124, 3998.3494185769077], [-7129.460723511727, 3997.449418577048]]}, {"length": 53.2629232552, "source": 1433125600, "destination": 135036835, "path": [[-7075.560723507124, 3998.3494185769077], [-7074.160723504974, 3758.8494185776253]]}, {"length": 60.134308904, "source": 1433125600, "destination": 135050582, "path": [[-7075.560723507124, 3998.3494185769077], [-7076.210723511167, 4268.749418578465]]}, {"length": 91.0515429723, "source": 135103216, "destination": 4719464841, "path": [[-4127.910723511263, -1828.0005814226286], [-3586.9107235058095, -1828.200581421413]]}, {"length": 124.272782446, "source": 135103216, "destination": 2424998421, "path": [[-4127.910723511263, -1828.0005814226286], [-4118.860723508533, -1873.1505814209015], [-4114.510723510989, -1917.5005814240365], [-4104.110723510246, -2386.100581421857]]}, {"length": 63.939452155, "source": 135103216, "destination": 3148277103, "path": [[-4127.910723511263, -1828.0005814226286], [-4133.160723505114, -1794.6505814236957], [-4136.110723507613, -1761.2005814235943], [-4137.560723506795, -1540.8005814236958]]}, {"length": 37.3676762632, "source": 134986536, "destination": 2331413994, "path": [[-9381.660723505547, -10568.100581423323], [-9391.860723511058, -10400.25058142291]]}, {"length": 13.46276815, "source": 134986536, "destination": 134986541, "path": [[-9381.660723505547, -10568.100581423323], [-9301.660723508576, -10569.100581420798]]}, {"length": 31.0607204252, "source": 2585936626, "destination": 2585900432, "path": [[-1829.8107235068528, -1644.7505814234376], [-2014.3607235070249, -1645.3505814233438]]}, {"length": 21.523972682, "source": 2585936626, "destination": 2585936641, "path": [[-1829.8107235068528, -1644.7505814234376], [-1790.960723511148, -1635.000581423185], [-1777.6107235079053, -1629.900581423982], [-1766.9107235107617, -1623.8505814207826], [-1753.5107235104874, -1613.700581422961], [-1738.760723505095, -1598.500581422968], [-1731.41072350802, -1588.8005814232997]]}, {"length": 29.9328270872, "source": 2585936626, "destination": 2585936653, "path": [[-1829.8107235068528, -1644.7505814234376], [-1651.9607235068179, -1644.200581420563]]}, {"length": 23.5956091243, "source": 135103219, "destination": 2424998410, "path": [[-4104.060723506109, -2513.25058142271], [-4104.010723509077, -2407.150581422712]]}, {"length": 14.905467508, "source": 135103219, "destination": 2425001938, "path": [[-4104.060723506109, -2513.25058142271], [-4041.910723508124, -2561.0005814229453]]}, {"length": 162.013465604, "source": 135103219, "destination": 1667837790, "path": [[-4104.060723506109, -2513.25058142271], [-4103.660723508539, -2582.2005814220006], [-4105.0107235065525, -2684.3505814220234], [-4111.310723509121, -2747.1005814234672], [-4120.910723507621, -2788.800581424056], [-4140.210723505788, -2833.6005814217915], [-4204.860723511672, -2940.9505814221857], [-4340.310723506491, -3121.0005814230612], [-4394.460723510463, -3189.55058142123]]}, {"length": 8.61771122814, "source": 2585936640, "destination": 2585936651, "path": [[-1610.210723505645, -1586.8005814212438], [-1610.210723505645, -1548.0505814231549]]}, {"length": 4.66344642983, "source": 2585936640, "destination": 2585936652, "path": [[-1610.210723505645, -1586.8005814212438], [-1582.5107235087899, -1586.6005814224593]]}, {"length": 19.7078744613, "source": 2585936640, "destination": 2585936653, "path": [[-1610.210723505645, -1586.8005814212438], [-1610.0107235104133, -1643.650581421241], [-1624.9107235069005, -1644.100581422947], [-1651.9607235068179, -1644.200581420563]]}, {"length": 7.03675870212, "source": 2585936640, "destination": 2585936654, "path": [[-1610.210723505645, -1586.8005814212438], [-1652.010723510955, -1587.5005814223186]]}, {"length": 12.1046073495, "source": 2585936641, "destination": 2585936642, "path": [[-1731.41072350802, -1588.8005814232997], [-1728.7107235048893, -1581.2005814233032], [-1723.3607235098702, -1556.3505814206735], [-1724.860723506083, -1535.000581423418]]}, {"length": 21.523972682, "source": 2585936641, "destination": 2585936626, "path": [[-1731.41072350802, -1588.8005814232997], [-1738.760723505095, -1598.500581422968], [-1753.5107235104874, -1613.700581422961], [-1766.9107235107617, -1623.8505814207826], [-1777.6107235079053, -1629.900581423982], [-1790.960723511148, -1635.000581423185], [-1829.8107235068528, -1644.7505814234376]]}, {"length": 6.15251918379, "source": 2585936641, "destination": 2585936655, "path": [[-1731.41072350802, -1588.8005814232997], [-1694.8607235107715, -1588.2005814233935]]}, {"length": 28.4981687646, "source": 2585936642, "destination": 2585900673, "path": [[-1724.860723506083, -1535.000581423418], [-1725.3607235048207, -1527.5505814216217], [-1732.0607235049579, -1508.300581424038], [-1741.4107235111942, -1495.1005814225482], [-1752.1607235053693, -1485.0005814217582], [-1774.9107235047745, -1468.7505814237056], [-1796.360723510304, -1457.6005814213033], [-1832.3107235076463, -1446.3005814207008]]}, {"length": 12.1046073495, "source": 2585936642, "destination": 2585936641, "path": [[-1724.860723506083, -1535.000581423418], [-1723.3607235098702, -1556.3505814206735], [-1728.7107235048893, -1581.2005814233032], [-1731.41072350802, -1588.8005814232997]]}, {"length": 2.56501412713, "source": 2585936642, "destination": 2585936657, "path": [[-1724.860723506083, -1535.000581423418], [-1709.6107235090585, -1534.8005814210808]]}, {"length": 63.2374027427, "source": 1433125635, "destination": 2086776715, "path": [[-4146.010723509618, 399.99941857615795], [-4147.810723509338, 684.3494185773125]]}, {"length": 16.5792168261, "source": 1433125635, "destination": 3146412237, "path": [[-4146.010723509618, 399.99941857615795], [-4145.510723510881, 325.44941857892695]]}, {"length": 118.889108862, "source": 1433125635, "destination": 2217933213, "path": [[-4146.010723509618, 399.99941857615795], [-4852.310723507003, 393.3494185766051]]}, {"length": 14.4920772173, "source": 2585936645, "destination": 2585936650, "path": [[-1516.9607235065996, -1531.300581422812], [-1582.5107235087899, -1532.0005814238868], [-1582.5107235087899, -1547.5505814208645]]}, {"length": 13.543530132, "source": 2585936645, "destination": 2585936646, "path": [[-1516.9607235065996, -1531.300581422812], [-1516.5107235048936, -1592.2005814239526]]}, {"length": 49.0377117658, "source": 2585936645, "destination": 2585936647, "path": [[-1516.9607235065996, -1531.300581422812], [-1518.5607235110865, -1310.800581421745]]}, {"length": 78.9136784461, "source": 2585936646, "destination": 2585936649, "path": [[-1516.5107235048936, -1592.2005814239526], [-1515.8607235079558, -1686.1005814234886], [-1171.0607235073667, -1685.0505814218764]]}, {"length": 12.3886002521, "source": 2585936646, "destination": 2585936652, "path": [[-1516.5107235048936, -1592.2005814239526], [-1582.5107235087899, -1592.3505814221528], [-1582.5107235087899, -1586.6005814224593]]}, {"length": 13.543530132, "source": 2585936646, "destination": 2585936645, "path": [[-1516.5107235048936, -1592.2005814239526], [-1516.9607235065996, -1531.300581422812]]}, {"length": 36.3460149823, "source": 2585936647, "destination": 2585936684, "path": [[-1518.5607235110865, -1310.800581421745], [-1302.6107235063478, -1309.9005814218856]]}, {"length": 49.0377117658, "source": 2585936647, "destination": 2585936645, "path": [[-1518.5607235110865, -1310.800581421745], [-1516.9607235065996, -1531.300581422812]]}, {"length": 1.11927223705, "source": 2585936647, "destination": 2585936678, "path": [[-1518.5607235110865, -1310.800581421745], [-1525.2107235070866, -1310.800581421745]]}, {"length": 54.3866522211, "source": 2585936649, "destination": 2568599376, "path": [[-1171.0607235073667, -1685.0505814218764], [-1169.0607235053108, -1929.6005814233297]]}, {"length": 43.5560203309, "source": 2585936649, "destination": 2586986593, "path": [[-1171.0607235073667, -1685.0505814218764], [-1172.6607235047481, -1489.2005814211018]]}, {"length": 78.9136784461, "source": 2585936649, "destination": 2585936646, "path": [[-1171.0607235073667, -1685.0505814218764], [-1515.8607235079558, -1686.1005814234886], [-1516.5107235048936, -1592.2005814239526]]}, {"length": 4.66344642983, "source": 2585936650, "destination": 2585936651, "path": [[-1582.5107235087899, -1547.5505814208645], [-1610.210723505645, -1548.0505814231549]]}, {"length": 8.6843869705, "source": 2585936650, "destination": 2585936652, "path": [[-1582.5107235087899, -1547.5505814208645], [-1582.5107235087899, -1586.6005814224593]]}, {"length": 14.4920772173, "source": 2585936650, "destination": 2585936645, "path": [[-1582.5107235087899, -1547.5505814208645], [-1582.5107235087899, -1532.0005814238868], [-1516.9607235065996, -1531.300581422812]]}, {"length": 8.61771122814, "source": 2585936651, "destination": 2585936640, "path": [[-1610.210723505645, -1548.0505814231549], [-1610.210723505645, -1586.8005814212438]]}, {"length": 4.66344642983, "source": 2585936651, "destination": 2585936650, "path": [[-1610.210723505645, -1548.0505814231549], [-1582.5107235087899, -1547.5505814208645]]}, {"length": 15.8770785328, "source": 2585936651, "destination": 2585936661, "path": [[-1610.210723505645, -1548.0505814231549], [-1610.210723505645, -1533.6505814218526], [-1685.5107235116407, -1534.5005814211277]]}, {"length": 4.66344642983, "source": 2585936652, "destination": 2585936640, "path": [[-1582.5107235087899, -1586.6005814224593], [-1610.210723505645, -1586.8005814212438]]}, {"length": 8.6843869705, "source": 2585936652, "destination": 2585936650, "path": [[-1582.5107235087899, -1586.6005814224593], [-1582.5107235087899, -1547.5505814208645]]}, {"length": 12.3886002521, "source": 2585936652, "destination": 2585936646, "path": [[-1582.5107235087899, -1586.6005814224593], [-1582.5107235087899, -1592.3505814221528], [-1516.5107235048936, -1592.2005814239526]]}, {"length": 19.7078744613, "source": 2585936653, "destination": 2585936640, "path": [[-1651.9607235068179, -1644.200581420563], [-1624.9107235069005, -1644.100581422947], [-1610.0107235104133, -1643.650581421241], [-1610.210723505645, -1586.8005814212438]]}, {"length": 29.9328270872, "source": 2585936653, "destination": 2585936626, "path": [[-1651.9607235068179, -1644.200581420563], [-1829.8107235068528, -1644.7505814234376]]}, {"length": 12.6096270033, "source": 2585936653, "destination": 2585936654, "path": [[-1651.9607235068179, -1644.200581420563], [-1652.010723510955, -1587.5005814223186]]}, {"length": 47.9372231687, "source": 2352259854, "destination": 2068973824, "path": [[-1962.8107235050152, 6450.599418577951], [-1960.960723508265, 6235.049418577887]]}, {"length": 14.7220338835, "source": 2352259854, "destination": 2352170540, "path": [[-1962.8107235050152, 6450.599418577951], [-2050.2607235073356, 6450.949418578489]]}, {"length": 16.3393780053, "source": 2352259854, "destination": 2703719278, "path": [[-1962.8107235050152, 6450.599418577951], [-1865.7607235113005, 6451.749418577179]]}, {"length": 11.9203523409, "source": 2585936655, "destination": 2585936656, "path": [[-1694.8607235107715, -1588.2005814233935], [-1694.2607235108653, -1534.6005814222963]]}, {"length": 6.15251918379, "source": 2585936655, "destination": 2585936641, "path": [[-1694.8607235107715, -1588.2005814233935], [-1731.41072350802, -1588.8005814232997]]}, {"length": 7.21384357924, "source": 2585936655, "destination": 2585936654, "path": [[-1694.8607235107715, -1588.2005814233935], [-1652.010723510955, -1587.5005814223186]]}, {"length": 2.58426731808, "source": 2585936656, "destination": 2585936657, "path": [[-1694.2607235108653, -1534.6005814222963], [-1709.6107235090585, -1534.8005814210808]]}, {"length": 1.47379423242, "source": 2585936656, "destination": 2585936661, "path": [[-1694.2607235108653, -1534.6005814222963], [-1685.5107235116407, -1534.5005814211277]]}, {"length": 11.9203523409, "source": 2585936656, "destination": 2585936655, "path": [[-1694.2607235108653, -1534.6005814222963], [-1694.8607235107715, -1588.2005814233935]]}, {"length": 2.58426731808, "source": 2585936657, "destination": 2585936656, "path": [[-1709.6107235090585, -1534.8005814210808], [-1694.2607235108653, -1534.6005814222963]]}, {"length": 14.1003887171, "source": 2585936657, "destination": 2585936672, "path": [[-1709.6107235090585, -1534.8005814210808], [-1708.6107235115833, -1471.4005814226994]]}, {"length": 2.56501412713, "source": 2585936657, "destination": 2585936642, "path": [[-1709.6107235090585, -1534.8005814210808], [-1724.860723506083, -1535.000581423418]]}, {"length": 6.7504366191, "source": 2585936658, "destination": 2585936664, "path": [[-1706.9607235100648, -1367.4005814223733], [-1675.410723507298, -1386.1505814212194]]}, {"length": 13.8781185307, "source": 2585936658, "destination": 2585936674, "path": [[-1706.9607235100648, -1367.4005814223733], [-1707.96072350754, -1429.8005814232795]]}, {"length": 19.5232586758, "source": 2585936658, "destination": 2585936676, "path": [[-1706.9607235100648, -1367.4005814223733], [-1590.960723511614, -1367.0005814212516]]}, {"length": 270.413309649, "source": 4253573908, "destination": 4253571980, "path": [[9645.78927649029, 4958.149418577306], [9222.68927649128, 4953.999418578547], [9226.289276490717, 4356.299418578402], [9619.889276493155, 4353.049418575949]]}, {"length": 63.2039251101, "source": 4253573908, "destination": 134985629, "path": [[9645.78927649029, 4958.149418577306], [9644.539276493448, 5139.799418579116], [9644.139276488771, 5242.349418576709]]}, {"length": 37.0841664459, "source": 4253573908, "destination": 134954334, "path": [[9645.78927649029, 4958.149418577306], [9646.889276488935, 4791.39941857909]]}, {"length": 1.47379423242, "source": 2585936661, "destination": 2585936656, "path": [[-1685.5107235116407, -1534.5005814211277], [-1694.2607235108653, -1534.6005814222963]]}, {"length": 14.0221914951, "source": 2585936661, "destination": 2585936673, "path": [[-1685.5107235116407, -1534.5005814211277], [-1684.8607235075974, -1471.4505814232837]]}, {"length": 15.8770785328, "source": 2585936661, "destination": 2585936651, "path": [[-1685.5107235116407, -1534.5005814211277], [-1610.210723505645, -1533.6505814218526], [-1610.210723505645, -1548.0505814231549]]}, {"length": 6.7504366191, "source": 2585936664, "destination": 2585936658, "path": [[-1675.410723507298, -1386.1505814212194], [-1706.9607235100648, -1367.4005814223733]]}, {"length": 10.2055188494, "source": 2585936664, "destination": 2585936675, "path": [[-1675.410723507298, -1386.1505814212194], [-1681.4607235104972, -1392.7505814237406], [-1684.1607235065226, -1399.3505814227092], [-1684.4607235100284, -1430.300581422017]]}, {"length": 8.40069343671, "source": 2585936664, "destination": 2585936668, "path": [[-1675.410723507298, -1386.1505814212194], [-1665.3607235070922, -1381.1005814226007], [-1655.3107235068865, -1378.550581421223], [-1640.5607235085995, -1378.0505814224853], [-1628.5107235063379, -1380.600581423863]]}, {"length": 38.4316171062, "source": 135045913, "destination": 2080739113, "path": [[-9382.110723507252, -9858.400581421734], [-9384.860723507416, -9685.60058142387]]}, {"length": 158.758967632, "source": 135045913, "destination": 134986541, "path": [[-9382.110723507252, -9858.400581421734], [-9355.960723510747, -9989.000581423823], [-9339.860723507343, -10076.95058142133], [-9301.660723508576, -10569.100581420798]]}, {"length": 8.40069343671, "source": 2585936668, "destination": 2585936664, "path": [[-1628.5107235063379, -1380.600581423863], [-1640.5607235085995, -1378.0505814224853], [-1655.3107235068865, -1378.550581421223], [-1665.3607235070922, -1381.1005814226007], [-1675.410723507298, -1386.1505814212194]]}, {"length": 7.00595187617, "source": 2585936668, "destination": 2585936676, "path": [[-1628.5107235063379, -1380.600581423863], [-1590.960723511614, -1367.0005814212516]]}, {"length": 31.5079670839, "source": 2585936668, "destination": 2585936676, "path": [[-1628.5107235063379, -1380.600581423863], [-1617.1107235081195, -1385.6505814224818], [-1611.7107235089634, -1393.8005814218002], [-1609.0607235099696, -1401.9005814205343], [-1546.7107235096478, -1400.4005814207687], [-1546.7107235096478, -1366.9005814236357], [-1590.960723511614, -1367.0005814212516]]}, {"length": 14.1003887171, "source": 2585936672, "destination": 2585936657, "path": [[-1708.6107235115833, -1471.4005814226994], [-1709.6107235090585, -1534.8005814210808]]}, {"length": 9.2521872566, "source": 2585936672, "destination": 2585936674, "path": [[-1708.6107235115833, -1471.4005814226994], [-1707.96072350754, -1429.8005814232795]]}, {"length": 3.99857401226, "source": 2585936672, "destination": 2585936673, "path": [[-1708.6107235115833, -1471.4005814226994], [-1684.8607235075974, -1471.4505814232837]]}, {"length": 3.99857401226, "source": 2585936673, "destination": 2585936672, "path": [[-1684.8607235075974, -1471.4505814232837], [-1708.6107235115833, -1471.4005814226994]]}, {"length": 9.1517953483, "source": 2585936673, "destination": 2585936675, "path": [[-1684.8607235075974, -1471.4505814232837], [-1684.4607235100284, -1430.300581422017]]}, {"length": 14.0221914951, "source": 2585936673, "destination": 2585936661, "path": [[-1684.8607235075974, -1471.4505814232837], [-1685.5107235116407, -1534.5005814211277]]}, {"length": 9.2521872566, "source": 2585936674, "destination": 2585936672, "path": [[-1707.96072350754, -1429.8005814232795], [-1708.6107235115833, -1471.4005814226994]]}, {"length": 13.8781185307, "source": 2585936674, "destination": 2585936658, "path": [[-1707.96072350754, -1429.8005814232795], [-1706.9607235100648, -1367.4005814223733]]}, {"length": 3.95551642058, "source": 2585936674, "destination": 2585936675, "path": [[-1707.96072350754, -1429.8005814232795], [-1684.4607235100284, -1430.300581422017]]}, {"length": 10.2055188494, "source": 2585936675, "destination": 2585936664, "path": [[-1684.4607235100284, -1430.300581422017], [-1684.1607235065226, -1399.3505814227092], [-1681.4607235104972, -1392.7505814237406], [-1675.410723507298, -1386.1505814212194]]}, {"length": 9.1517953483, "source": 2585936675, "destination": 2585936673, "path": [[-1684.4607235100284, -1430.300581422017], [-1684.8607235075974, -1471.4505814232837]]}, {"length": 3.95551642058, "source": 2585936675, "destination": 2585936674, "path": [[-1684.4607235100284, -1430.300581422017], [-1707.96072350754, -1429.8005814232795]]}, {"length": 19.5232586758, "source": 2585936676, "destination": 2585936658, "path": [[-1590.960723511614, -1367.0005814212516], [-1706.9607235100648, -1367.4005814223733]]}, {"length": 7.00595187617, "source": 2585936676, "destination": 2585936668, "path": [[-1590.960723511614, -1367.0005814212516], [-1628.5107235063379, -1380.600581423863]]}, {"length": 31.5079670839, "source": 2585936676, "destination": 2585936668, "path": [[-1590.960723511614, -1367.0005814212516], [-1546.7107235096478, -1366.9005814236357], [-1546.7107235096478, -1400.4005814207687], [-1609.0607235099696, -1401.9005814205343], [-1611.7107235089634, -1393.8005814218002], [-1617.1107235081195, -1385.6505814224818], [-1628.5107235063379, -1380.600581423863]]}, {"length": 12.4314676813, "source": 2585936676, "destination": 2585936677, "path": [[-1590.960723511614, -1367.0005814212516], [-1590.960723511614, -1311.100581421698]]}, {"length": 12.4314676813, "source": 2585936677, "destination": 2585936676, "path": [[-1590.960723511614, -1311.100581421698], [-1590.960723511614, -1367.0005814212516]]}, {"length": 33.8549654168, "source": 2585936677, "destination": 2585900670, "path": [[-1590.960723511614, -1311.100581421698], [-1792.1107235068234, -1311.9005814239415]]}, {"length": 11.0663932855, "source": 2585936677, "destination": 2585936678, "path": [[-1590.960723511614, -1311.100581421698], [-1525.2107235070866, -1310.800581421745]]}, {"length": 4.68177045496, "source": 2585936678, "destination": 2585936680, "path": [[-1525.2107235070866, -1310.800581421745], [-1525.110723505918, -1289.7505814208898]]}, {"length": 11.0663932855, "source": 2585936678, "destination": 2585936677, "path": [[-1525.2107235070866, -1310.800581421745], [-1590.960723511614, -1311.100581421698]]}, {"length": 1.11927223705, "source": 2585936678, "destination": 2585936647, "path": [[-1525.2107235070866, -1310.800581421745], [-1518.5607235110865, -1310.800581421745]]}, {"length": 26.4805196232, "source": 2585936680, "destination": 2585936688, "path": [[-1525.110723505918, -1289.7505814208898], [-1412.3607235063673, -1206.700581423803]]}, {"length": 4.68177045496, "source": 2585936680, "destination": 2585936678, "path": [[-1525.110723505918, -1289.7505814208898], [-1525.2107235070866, -1310.800581421745]]}, {"length": 18.5029132762, "source": 2585936680, "destination": 2585936687, "path": [[-1525.110723505918, -1289.7505814208898], [-1524.5607235101488, -1206.55058142205]]}, {"length": 1.68760915477, "source": 2585936681, "destination": 2585936683, "path": [[-1282.5107235059363, -1111.1005814221642], [-1289.6607235077795, -1116.4005814237044]]}, {"length": 2.57903070212, "source": 2585936682, "destination": 2585936689, "path": [[-1524.0107235072742, -1119.750581423773], [-1524.1607235054744, -1108.1505814232173]]}, {"length": 39.4497559821, "source": 2585936682, "destination": 2585936683, "path": [[-1524.0107235072742, -1119.750581423773], [-1289.6607235077795, -1116.4005814237044]]}, {"length": 19.3036675483, "source": 2585936682, "destination": 2585936687, "path": [[-1524.0107235072742, -1119.750581423773], [-1524.5607235101488, -1206.55058142205]]}, {"length": 28.8053562965, "source": 2585936683, "destination": 2585936688, "path": [[-1289.6607235077795, -1116.4005814237044], [-1412.3607235063673, -1206.700581423803]]}, {"length": 1.68760915477, "source": 2585936683, "destination": 2585936681, "path": [[-1289.6607235077795, -1116.4005814237044], [-1282.5107235059363, -1111.1005814221642]]}, {"length": 39.4497559821, "source": 2585936683, "destination": 2585936682, "path": [[-1289.6607235077795, -1116.4005814237044], [-1524.0107235072742, -1119.750581423773]]}, {"length": 43.5601120467, "source": 2585936683, "destination": 2585936684, "path": [[-1289.6607235077795, -1116.4005814237044], [-1292.560723506142, -1231.400581421127], [-1303.9607235114659, -1246.1005814223824], [-1302.6107235063478, -1309.9005814218856]]}, {"length": 43.5601120467, "source": 2585936684, "destination": 2585936683, "path": [[-1302.6107235063478, -1309.9005814218856], [-1303.9607235114659, -1246.1005814223824], [-1292.560723506142, -1231.400581421127], [-1289.6607235077795, -1116.4005814237044]]}, {"length": 21.6273666128, "source": 2585936684, "destination": 2585900646, "path": [[-1302.6107235063478, -1309.9005814218856], [-1174.1107235110348, -1309.400581423148]]}, {"length": 36.3460149823, "source": 2585936684, "destination": 2585936647, "path": [[-1302.6107235063478, -1309.9005814218856], [-1518.5607235110865, -1310.800581421745]]}, {"length": 18.5029132762, "source": 2585936687, "destination": 2585936680, "path": [[-1524.5607235101488, -1206.55058142205], [-1525.110723505918, -1289.7505814208898]]}, {"length": 18.8840391797, "source": 2585936687, "destination": 2585936688, "path": [[-1524.5607235101488, -1206.55058142205], [-1412.3607235063673, -1206.700581423803]]}, {"length": 19.3036675483, "source": 2585936687, "destination": 2585936682, "path": [[-1524.5607235101488, -1206.55058142205], [-1524.0107235072742, -1119.750581423773]]}, {"length": 49.9987180088, "source": 2585936687, "destination": 2585936697, "path": [[-1524.5607235101488, -1206.55058142205], [-1650.3107235052994, -1207.0505814207877], [-1653.660723505368, -1217.200581422162], [-1659.0107235074925, -1222.2505814207807], [-1772.3107235099178, -1222.750581423071], [-1777.010723507999, -1218.7005814219276], [-1780.3607235080676, -1207.550581423078], [-1793.760723508342, -1207.5005814224937]]}, {"length": 26.4805196232, "source": 2585936688, "destination": 2585936680, "path": [[-1412.3607235063673, -1206.700581423803], [-1525.110723505918, -1289.7505814208898]]}, {"length": 28.8053562965, "source": 2585936688, "destination": 2585936683, "path": [[-1412.3607235063673, -1206.700581423803], [-1289.6607235077795, -1116.4005814237044]]}, {"length": 18.8840391797, "source": 2585936688, "destination": 2585936687, "path": [[-1412.3607235063673, -1206.700581423803], [-1524.5607235101488, -1206.55058142205]]}, {"length": 2.57903070212, "source": 2585936689, "destination": 2585936682, "path": [[-1524.1607235054744, -1108.1505814232173], [-1524.0107235072742, -1119.750581423773]]}, {"length": 14.7974466555, "source": 2352259893, "destination": 2068973824, "path": [[-2048.860723505186, 6234.999418577303], [-1960.960723508265, 6235.049418577887]]}, {"length": 48.0256948173, "source": 2352259893, "destination": 2352170540, "path": [[-2048.860723505186, 6234.999418577303], [-2050.2607235073356, 6450.949418578489]]}, {"length": 96.6053951124, "source": 2352259893, "destination": 2703728618, "path": [[-2048.860723505186, 6234.999418577303], [-2433.3607235078603, 6234.799418578518], [-2622.710723507282, 6233.399418576369]]}, {"length": 49.0488299179, "source": 2352259893, "destination": 2352260068, "path": [[-2048.860723505186, 6234.999418577303], [-2047.2607235078044, 6014.449418579205]]}, {"length": 20.8784578483, "source": 2585936696, "destination": 2585936697, "path": [[-1917.8107235049424, -1207.0505814207877], [-1793.760723508342, -1207.5005814224937]]}, {"length": 71.4996801633, "source": 2585936696, "destination": 2585900652, "path": [[-1917.8107235049424, -1207.0505814207877], [-1915.2607235071173, -885.5505814224784]]}, {"length": 23.4400176642, "source": 2585936696, "destination": 2585900649, "path": [[-1917.8107235049424, -1207.0505814207877], [-1918.1607235054798, -1312.4505814232634]]}, {"length": 20.8784578483, "source": 2585936697, "destination": 2585936696, "path": [[-1793.760723508342, -1207.5005814224937], [-1917.8107235049424, -1207.0505814207877]]}, {"length": 23.2190408461, "source": 2585936697, "destination": 2585900670, "path": [[-1793.760723508342, -1207.5005814224937], [-1792.1107235068234, -1311.9005814239415]]}, {"length": 49.9987180088, "source": 2585936697, "destination": 2585936687, "path": [[-1793.760723508342, -1207.5005814224937], [-1780.3607235080676, -1207.550581423078], [-1777.010723507999, -1218.7005814219276], [-1772.3107235099178, -1222.750581423071], [-1659.0107235074925, -1222.2505814207807], [-1653.660723505368, -1217.200581422162], [-1650.3107235052994, -1207.0505814207877], [-1524.5607235101488, -1206.55058142205]]}, {"length": 71.3614541961, "source": 1429422909, "destination": 1429422915, "path": [[4578.1392764894235, -3270.3505814239975], [4665.439276493544, -3285.1505814228685], [4864.339276494434, -3307.150581420615], [4997.839276491333, -3304.450581421037]]}, {"length": 15.6430432554, "source": 1429422909, "destination": 1146604909, "path": [[4578.1392764894235, -3270.3505814239975], [4532.789276488813, -3331.7505814238757]]}, {"length": 115.675814607, "source": 1428267841, "destination": 1483977720, "path": [[-2632.4107235069505, -5359.950581421913], [-3319.760723506704, -5365.050581421116]]}, {"length": 583.422546202, "source": 1428267841, "destination": 1567538290, "path": [[-2632.4107235069505, -5359.950581421913], [-2630.7107235084004, -5258.700581421749], [-2634.910723507744, -4726.400581422041], [-2635.610723508819, -4672.700581423328], [-2637.4107235085376, -4602.200581423687], [-2653.510723504837, -4503.700581423686], [-2672.710723508942, -4432.3005814206335], [-2698.0607235103093, -4362.4505814214845], [-2729.960723506508, -4292.7005814235035], [-2764.9107235063752, -4230.350581423181], [-2840.9607235104772, -4119.6005814221335], [-2935.660723508704, -3995.8005814213493], [-3094.0107235082337, -3779.000581420888], [-3221.46072350904, -3605.6005814231185], [-3285.260723508543, -3505.6005814233513], [-3331.1607235049223, -3409.900581420544], [-3349.8607235102895, -3358.1005814227183], [-3362.6607235106576, -3322.5005814223605], [-3376.4107235114693, -3275.400581422616], [-3384.710723508988, -3232.450581421631], [-3388.4607235066255, -3211.150581421407], [-3395.4107235061315, -3151.8005814206163], [-3396.4607235077438, -3128.200581421936], [-3396.91072350945, -3053.2005814229988], [-3389.6107235094064, -2862.5005814220117]]}, {"length": 24.1654967559, "source": 1428267841, "destination": 1483977719, "path": [[-2632.4107235069505, -5359.950581421913], [-2488.8107235057078, -5359.700581422544]]}, {"length": 55.3419015084, "source": 1428267841, "destination": 134968407, "path": [[-2632.4107235069505, -5359.950581421913], [-2631.660723508844, -5608.800581423879]]}, {"length": 144.969313763, "source": 1429422915, "destination": 135064564, "path": [[4997.839276491333, -3304.450581421037], [5126.389276490783, -3296.5505814210874], [5208.389276489811, -3287.850581422447], [5322.589276488543, -3273.2005814217755], [5445.289276494236, -3250.600581420571], [5698.039276488487, -3192.550581420761], [5837.0392764928165, -3165.9505814225495]]}, {"length": 130.004810447, "source": 1429422915, "destination": 1942220078, "path": [[4997.839276491333, -3304.450581421037], [5001.439276490772, -3273.800581421682], [5044.689276495263, -3049.1505814218553], [5050.689276494324, -2970.850581423434], [5047.739276491825, -2802.600581421899], [5051.139276488925, -2722.550581420791]]}, {"length": 10.0056721121, "source": 4224849377, "destination": 4224950675, "path": [[6179.039276489107, 4628.999418578416], [6221.089276493785, 4597.1994185762815]]}, {"length": 7.96609540689, "source": 4224849377, "destination": 2069120358, "path": [[6179.039276489107, 4628.999418578416], [6146.139276488328, 4603.24941857948]]}, {"length": 28.388392896, "source": 4224849377, "destination": 135038607, "path": [[6179.039276489107, 4628.999418578416], [6297.439276494288, 4719.899418578421]]}, {"length": 31.0105101148, "source": 2293563079, "destination": 2293563076, "path": [[-5204.460723511773, 6222.549418577472], [-5178.610723511667, 6222.899418578009], [-5149.360723507357, 6224.049418577238], [-5093.210723508435, 6225.1494185794345], [-5020.310723509169, 6225.649418578172]]}, {"length": 122.405701297, "source": 135045975, "destination": 135043204, "path": [[-9276.21072350604, -182.9005814215634], [-9279.060723507371, -491.00058142315106], [-9279.31072350674, -627.3005814207977], [-9278.260723505127, -733.3005814231797]]}, {"length": 12.6153437108, "source": 135045975, "destination": 3758384275, "path": [[-9276.21072350604, -182.9005814215634], [-9201.260723507687, -182.7505814233632]]}, {"length": 99.9073360067, "source": 135045975, "destination": 2282822484, "path": [[-9276.21072350604, -182.9005814215634], [-9357.46072350696, -183.55058142205394], [-9389.510723508465, -184.10058142137586], [-9455.960723506962, -186.4005814233849], [-9815.760723505207, -187.65058142378166], [-9869.710723506842, -187.50058142202874]]}, {"length": 109.262021491, "source": 135045975, "destination": 2282033853, "path": [[-9276.21072350604, -182.9005814215634], [-9279.860723509613, 308.39941857863096]]}, {"length": 35.8188504188, "source": 1962156892, "destination": 1429423360, "path": [[2150.1892764916875, -6304.500581421735], [2326.0392764896665, -6395.250581423539]]}, {"length": 17.908607426, "source": 1962156892, "destination": 1429423290, "path": [[2150.1892764916875, -6304.500581421735], [2061.889276490092, -6259.550581422246]]}, {"length": 23.8419109144, "source": 1962156892, "destination": 2271725719, "path": [[2150.1892764916875, -6304.500581421735], [2094.7892764908715, -6364.5505814236], [2129.3392764931696, -6386.250581421393]]}, {"length": 32.1934714908, "source": 2355676000, "destination": 2355668074, "path": [[-571.8107235068715, 5879.499418576017], [-574.2107235064964, 6024.249418576488]]}, {"length": 95.8873712389, "source": 2355676000, "destination": 2355676003, "path": [[-571.8107235068715, 5879.499418576017], [-1141.410723505487, 5878.949418576695]]}, {"length": 32.019006472, "source": 2355676000, "destination": 2355676004, "path": [[-571.8107235068715, 5879.499418576017], [-381.6107235081745, 5878.749418577911]]}, {"length": 95.6621816987, "source": 2355676000, "destination": 2703728622, "path": [[-571.8107235068715, 5879.499418576017], [-569.1607235078777, 5449.349418576332]]}, {"length": 46.1703085103, "source": 135037794, "destination": 3146557117, "path": [[-7524.210723509839, 367.1494185759627], [-7693.260723506512, 353.84941857685703], [-7733.960723506072, 344.64941857947906], [-7763.410723505614, 332.89941857717054], [-7782.0607235068455, 316.4994185773651]]}, {"length": 171.664328811, "source": 135037794, "destination": 134982215, "path": [[-7524.210723509839, 367.1494185759627], [-8346.660723510979, 358.09941857678496], [-8544.01072351152, 355.94941857652884]]}, {"length": 95.8873712389, "source": 2355676003, "destination": 2355676000, "path": [[-1141.410723505487, 5878.949418576695], [-571.8107235068715, 5879.499418576017]]}, {"length": 25.1501860122, "source": 2355676003, "destination": 2703719279, "path": [[-1141.410723505487, 5878.949418576695], [-1290.8107235105604, 5878.499418578542]]}, {"length": 32.0244948776, "source": 2355676003, "destination": 2355654861, "path": [[-1141.410723505487, 5878.949418576695], [-1142.3107235088992, 6022.94941857906]]}, {"length": 96.062508136, "source": 2355676003, "destination": 2355676183, "path": [[-1141.410723505487, 5878.949418576695], [-1138.6607235053248, 5446.999418577292]]}, {"length": 32.019006472, "source": 2355676004, "destination": 2355676000, "path": [[-381.6107235081745, 5878.749418577911], [-571.8107235068715, 5879.499418576017]]}, {"length": 5.6786944231, "source": 135037798, "destination": 2282034186, "path": [[-7854.860723504942, -157.9005814207335], [-7840.060723509623, -180.8505814224759]]}, {"length": 118.091572488, "source": 135037798, "destination": 135065293, "path": [[-7854.860723504942, -157.9005814207335], [-7884.160723506284, -167.5005814227859], [-7916.7607235106625, -175.2505814209826], [-7946.060723504899, -180.35058142373828], [-7977.660723511804, -182.00058142170406], [-8268.56072350779, -184.5005814224976], [-8551.410723505625, -181.60058142058233]]}, {"length": 97.889568593, "source": 135037798, "destination": 2080739429, "path": [[-7854.860723504942, -157.9005814207335], [-7838.760723508642, -145.70058142382436], [-7826.160723510611, -129.90058142392513], [-7815.410723509331, -110.10058142346679], [-7809.710723506669, -89.70058142310222], [-7807.1107235118125, -71.90058142114708], [-7807.410723508212, 55.799418579027815], [-7804.66072350805, 272.39941857715166]]}, {"length": 18.0369825887, "source": 1996284775, "destination": 1932196040, "path": [[1380.3892764912007, -5388.4505814210115], [1381.6392764951502, -5469.550581423732]]}, {"length": 59.1870002018, "source": 1996284775, "destination": 1932195954, "path": [[1380.3892764912007, -5388.4505814210115], [1379.0892764902196, -5305.750581420909], [1572.2892764884477, -5303.600581420653], [1621.2892764926323, -5300.300581421169]]}, {"length": 42.8167218577, "source": 1996284775, "destination": 1932195999, "path": [[1380.3892764912007, -5388.4505814210115], [1634.7392764899382, -5383.600581421178]]}, {"length": 15.9954230031, "source": 2355676008, "destination": 2423670840, "path": [[-1861.8107235113257, 5875.199418579058], [-1956.8107235059529, 5873.8494185774925]]}, {"length": 16.2021159325, "source": 2355676008, "destination": 2423670874, "path": [[-1861.8107235113257, 5875.199418579058], [-1861.8607235083573, 5905.549418578459], [-1861.2107235114195, 5948.049418577739]]}, {"length": 95.9646710624, "source": 2355676008, "destination": 2355676188, "path": [[-1861.8107235113257, 5875.199418579058], [-1861.66072350602, 5774.799418578169], [-1860.810723506745, 5672.149418579409], [-1859.1607235052265, 5607.9494185787835], [-1858.5107235082887, 5525.3994185768815], [-1858.5107235082887, 5443.699418577808]]}, {"length": 96.125769961, "source": 2355676008, "destination": 2703719279, "path": [[-1861.8107235113257, 5875.199418579058], [-1290.8107235105604, 5878.499418578542]]}, {"length": 37.1345618869, "source": 135037807, "destination": 134955618, "path": [[-7730.660723510141, -11008.100581420877], [-7772.16072350484, -11172.100581422485]]}, {"length": 246.71780526, "source": 135037807, "destination": 134955595, "path": [[-7730.660723510141, -11008.100581420877], [-8189.160723510724, -10921.100581423814], [-8282.66072350914, -10908.10058142111], [-8377.660723510871, -10901.100581421018], [-8790.1607235068, -10900.100581423543], [-8795.160723508388, -11195.600581423549]]}, {"length": 208.466449666, "source": 135037811, "destination": 135065386, "path": [[-7789.160723511657, -11474.100581423842], [-9028.16072350987, -11476.100581422344]]}, {"length": 75.5277656578, "source": 135037811, "destination": 135052452, "path": [[-7789.160723511657, -11474.100581423842], [-7463.160723510498, -11473.60058142155], [-7425.160723506962, -11468.600581423516], [-7387.160723510533, -11457.600581422867], [-7350.160723511579, -11440.100581420864]]}, {"length": 67.4219213123, "source": 135037811, "destination": 134955618, "path": [[-7789.160723511657, -11474.100581423842], [-7791.660723505345, -11288.100581420935], [-7786.660723510863, -11229.600581422972], [-7772.16072350484, -11172.100581422485]]}, {"length": 35.3029629918, "source": 2703708309, "destination": 2703708313, "path": [[-346.1107235054328, -1580.3505814240282], [-555.860723508772, -1581.7005814220408]]}, {"length": 46.1693552691, "source": 2703708309, "destination": 2586986535, "path": [[-346.1107235054328, -1580.3505814240282], [-224.36072350728864, -1579.5505814217847], [-200.16072350870218, -1576.5005814216693], [-175.9607235101157, -1568.3505814223508], [-159.81072350967906, -1556.150581421889], [-138.26072351008634, -1536.8005814231367], [-113.81072350502563, -1507.9505814235006]]}, {"length": 0.977420095934, "source": 2703708309, "destination": 2586986494, "path": [[-346.1107235054328, -1580.3505814240282], [-346.1107235054328, -1584.7505814221563]]}, {"length": 60.4459196708, "source": 2703708309, "destination": 2586986569, "path": [[-346.1107235054328, -1580.3505814240282], [-347.2107235111821, -1308.550581423873]]}, {"length": 9.79356097976, "source": 2282034667, "destination": 2282822761, "path": [[-9218.4107235056, -776.5505814205653], [-9218.2607235074, -756.6005814219068], [-9211.910723507799, -733.0005814232265]]}, {"length": 10.6632396907, "source": 2282034667, "destination": 2282034675, "path": [[-9218.4107235056, -776.5505814205653], [-9218.660723504967, -824.5005814231376]]}, {"length": 47.9689408633, "source": 2282034667, "destination": 2282822781, "path": [[-9218.4107235056, -776.5505814205653], [-9196.460723508437, -785.4005814209586], [-9167.660723505833, -797.3505814220516], [-9148.81072350937, -804.6005814215107], [-9131.660723511459, -810.3505814212042], [-9113.110723511398, -814.750581422885], [-9089.46072350858, -818.1005814229536], [-9065.110723511792, -820.2005814226254], [-9044.860723506077, -820.700581421363], [-8945.76072350617, -818.6505814222755]]}, {"length": 45.7810310648, "source": 2282034667, "destination": 2282822765, "path": [[-9218.4107235056, -776.5505814205653], [-8946.410723510213, -774.9505814231838]]}, {"length": 13.7106005979, "source": 4719494637, "destination": 2585900353, "path": [[-1632.0607235087436, -1901.1005814206783], [-1694.5107235102341, -1903.1505814233185], [-1702.3607235060467, -1890.1005814235816]]}, {"length": 141.495363147, "source": 4719494637, "destination": 4719494628, "path": [[-1632.0607235087436, -1901.1005814206783], [-1705.9107235084525, -1975.950581421415], [-1803.6607235103475, -2049.450581420587], [-1858.9107235058577, -2093.9005814213374], [-1893.210723508787, -2114.1505814235015], [-1990.3607235107756, -2139.2505814219476], [-2041.5607235051425, -2162.150581423106], [-2070.0607235113466, -2190.7505814233728], [-2082.8607235117147, -2236.500581421552], [-2079.910723509215, -2375.8005814222824]]}, {"length": 31.4234101515, "source": 4719494637, "destination": 2585900350, "path": [[-1632.0607235087436, -1901.1005814206783], [-1506.7607235081937, -1897.0505814230876], [-1445.5607235106527, -1894.4505814211254]]}, {"length": 40.726525822, "source": 135057560, "destination": 1483977712, "path": [[-1894.6107235109366, -5096.000581421123], [-2136.610723511012, -5097.500581420889]]}, {"length": 66.3500875442, "source": 135057560, "destination": 135092492, "path": [[-1894.6107235109366, -5096.000581421123], [-1894.3607235115678, -4797.650581423341]]}, {"length": 98.5026288947, "source": 135057560, "destination": 1483977718, "path": [[-1894.6107235109366, -5096.000581421123], [-1863.0107235111382, -5100.850581420957], [-1386.660723511568, -5106.45058142245], [-1351.0107235106261, -5112.65058142385], [-1321.260723507578, -5133.00058142363]]}, {"length": 18.0921130778, "source": 135039812, "destination": 1962156896, "path": [[2578.8392764951595, -6570.100581424043], [2577.839276490579, -6488.750581421954]]}, {"length": 59.6953492857, "source": 135039812, "destination": 135079176, "path": [[2578.8392764951595, -6570.100581424043], [2578.7892764910225, -6613.800581423135], [2578.689276489854, -6730.750581422029], [2568.5392764884796, -6781.500581421796], [2544.7392764945675, -6835.000581421724]]}, {"length": 56.6140028704, "source": 135039812, "destination": 1429423361, "path": [[2578.8392764951595, -6570.100581424043], [2304.5892764912423, -6422.6505814239945]]}, {"length": 67.0717987783, "source": 1429423002, "destination": 134956059, "path": [[2171.9392764936174, -4464.300581421554], [1773.389276493731, -4465.050581423213]]}, {"length": 68.8178797176, "source": 1429423002, "destination": 134956062, "path": [[2171.9392764936174, -4464.300581421554], [2361.0392764936705, -4461.400581423191], [2492.1392764909456, -4461.65058142256], [2580.5392764937096, -4467.050581421717]]}, {"length": 40.9641524402, "source": 1425441691, "destination": 2086854472, "path": [[7893.089276493015, -4480.050581420869], [7928.239276495219, -4472.500581421456], [7928.089276489914, -4315.950581421646]]}, {"length": 21.4818005489, "source": 1425441691, "destination": 2086854552, "path": [[7893.089276493015, -4480.050581420869], [7893.4892764905835, -4492.950581422406], [7906.039276491583, -4524.250581422251], [7931.389276492951, -4545.450581421306], [7960.989276490693, -4545.3505814236905]]}, {"length": 36.4354223343, "source": 1425441691, "destination": 2086854563, "path": [[7893.089276493015, -4480.050581420869], [7888.5892764901655, -4316.250581421599]]}, {"length": 122.867429955, "source": 4719616940, "destination": 135010416, "path": [[5368.339276493827, -681.6005814229698], [4638.339276489489, -685.1005814212385]]}, {"length": 61.1580950293, "source": 4719616940, "destination": 1429422301, "path": [[5368.339276493827, -681.6005814229698], [5366.5892764911405, -406.6005814209461]]}, {"length": 87.21141042, "source": 135046070, "destination": 135038393, "path": [[-11900.76072350621, -3036.0505814215344], [-11382.560723511404, -3037.2005814207623]]}, {"length": 17.2050664003, "source": 1429423034, "destination": 1429423040, "path": [[2794.339276491087, -4557.2005814236145], [2871.389276492664, -4608.050581420997]]}, {"length": 11.883246685, "source": 1429423034, "destination": 2080585171, "path": [[2794.339276491087, -4557.2005814236145], [2838.4892764918845, -4515.500581423026]]}, {"length": 13.2906214313, "source": 2355676091, "destination": 2068877148, "path": [[-2617.610723511632, 5656.949418579416], [-2696.560723506991, 5657.399418577569]]}, {"length": 48.5146995789, "source": 2355676091, "destination": 2352260084, "path": [[-2617.610723511632, 5656.949418579416], [-2618.6607235061388, 5875.099418577889]]}, {"length": 37.7606799901, "source": 2355676091, "destination": 2352260117, "path": [[-2617.610723511632, 5656.949418579416], [-2393.3107235052375, 5658.649418577966]]}, {"length": 48.3476805405, "source": 2355676091, "destination": 2352260149, "path": [[-2617.610723511632, 5656.949418579416], [-2617.0107235117257, 5439.5494185790485]]}, {"length": 112.372728334, "source": 1429423040, "destination": 1429423084, "path": [[2871.389276492664, -4608.050581420997], [2947.9392764883983, -4662.950581423075], [3106.1392764897278, -4782.750581423301], [3132.789276492076, -4811.000581423031], [3157.3892764882316, -4845.150581420654], [3177.339276490443, -4890.30058142248], [3188.83927648983, -4933.150581422296], [3189.7892764902736, -4973.800581421273], [3183.439276490674, -5024.100581422886]]}, {"length": 8.85498760546, "source": 1429423040, "destination": 2080585062, "path": [[2871.389276492664, -4608.050581420997], [2837.4892764944093, -4638.500581421567]]}, {"length": 6.96078085798, "source": 2290110624, "destination": 2290110648, "path": [[-8075.310723505425, 6440.249418577792], [-8075.4607235107305, 6408.949418577948]]}, {"length": 12.9373693288, "source": 2290110624, "destination": 2289072817, "path": [[-8075.310723505425, 6440.249418577792], [-7998.460723506185, 6440.399418575993]]}, {"length": 75.8488977763, "source": 2290110624, "destination": 2289072820, "path": [[-8075.310723505425, 6440.249418577792], [-8176.31072350622, 6439.9994185784235], [-8408.460723508426, 6439.249418576765], [-8525.860723509028, 6438.349418576905]]}, {"length": 49.8162315935, "source": 134979229, "destination": 2086862890, "path": [[9752.989276492484, -6326.600581420649], [9754.789276492203, -6550.600581423538]]}, {"length": 13.2434077068, "source": 2290110626, "destination": 134982240, "path": [[-8590.610723508973, 6427.299418579224], [-8590.810723511311, 6486.8494185787995]]}, {"length": 10.8998114399, "source": 2290110626, "destination": 2290110625, "path": [[-8590.610723508973, 6427.299418579224], [-8525.860723509028, 6427.299418579224]]}, {"length": 47.8252256552, "source": 2290110626, "destination": 2091809130, "path": [[-8590.610723508973, 6427.299418579224], [-8589.81072350673, 6212.249418577898]]}, {"length": 11.0851111724, "source": 2290110626, "destination": 2291095713, "path": [[-8590.610723508973, 6427.299418579224], [-8618.110723510597, 6427.299418579224], [-8656.460723507564, 6427.199418578056]]}, {"length": 39.1122255607, "source": 1935295439, "destination": 135016377, "path": [[-3403.610723509587, -1436.6005814210325], [-3402.760723510312, -1366.5505814230983], [-3397.7107235116932, -1260.8005814236378]]}, {"length": 9.89790094842, "source": 2352260065, "destination": 2423670848, "path": [[-1960.660723504759, 6016.699418577076], [-1933.0607235090724, 5977.399418576113]]}, {"length": 16.5345801827, "source": 2352260065, "destination": 2354509516, "path": [[-1960.660723504759, 6016.699418577076], [-1862.5107235052951, 6019.499418577823]]}, {"length": 14.5873473662, "source": 2352260065, "destination": 2352260068, "path": [[-1960.660723504759, 6016.699418577076], [-2047.2607235078044, 6014.449418579205]]}, {"length": 48.5588934975, "source": 2352260065, "destination": 2068973824, "path": [[-1960.660723504759, 6016.699418577076], [-1960.960723508265, 6235.049418577887]]}, {"length": 255.6367576, "source": 1930503139, "destination": 1930503160, "path": [[9168.639276488477, -6859.900581421385], [9198.789276489095, -6841.400581421908], [9605.839276488838, -6835.800581423968], [9657.239276492646, -6878.500581422031], [9657.139276491478, -6935.75058142315], [9649.239276491528, -6982.750581421726], [9650.039276493771, -7052.300581420923], [9650.389276494308, -7153.5505814210865], [9651.189276489447, -7249.650581421463], [9651.189276489447, -7295.950581422517], [9651.189276489447, -7388.50058142404], [9650.039276493771, -7402.850581421206], [9648.439276489284, -7413.600581422486], [9643.689276494171, -7430.000581422291], [9641.739276489148, -7444.050581423056], [9641.339276491579, -7465.550581422065], [9640.93927649401, -7503.450581420879], [9640.139276491765, -7553.300581420785], [9640.539276489335, -7612.1505814228385], [9640.139276491765, -7631.850581422128]]}, {"length": 177.326782562, "source": 1930503139, "destination": 1930503168, "path": [[9168.639276488477, -6859.900581421385], [9169.789276491258, -6959.150581423046], [9170.989276491071, -7032.600581421633], [9170.589276493502, -7118.3005814212665], [9172.139276493852, -7330.300581422478], [9173.739276491233, -7517.800581421597], [9173.739276491233, -7657.250581420527]]}, {"length": 6.87741520566, "source": 1930503139, "destination": 2139785364, "path": [[9168.639276488477, -6859.900581421385], [9127.789276490716, -6858.9505814209415]]}, {"length": 14.5873473662, "source": 2352260068, "destination": 2352260065, "path": [[-2047.2607235078044, 6014.449418579205], [-1960.660723504759, 6016.699418577076]]}, {"length": 96.4516891813, "source": 2352260068, "destination": 2703728619, "path": [[-2047.2607235078044, 6014.449418579205], [-2620.2107235064886, 6014.049418578083]]}, {"length": 14.9189367961, "source": 2352260068, "destination": 2423670837, "path": [[-2047.2607235078044, 6014.449418579205], [-2053.5107235062355, 5974.699418576534], [-2054.010723504973, 5947.649418576617]]}, {"length": 49.0488299179, "source": 2352260068, "destination": 2352259893, "path": [[-2047.2607235078044, 6014.449418579205], [-2048.860723505186, 6234.999418577303]]}, {"length": 60.2906519572, "source": 2960622567, "destination": 2086776715, "path": [[-4506.0107235102005, 683.7994185779905], [-4147.810723509338, 684.3494185773125]]}, {"length": 47.7698127882, "source": 1806083048, "destination": 2068973890, "path": [[-4102.310723510527, 6014.39941857862], [-4102.360723507559, 6107.399418578297], [-4103.160723509802, 6229.199418577025]]}, {"length": 4.96122794636, "source": 1806083048, "destination": 1806083091, "path": [[-4102.310723510527, 6014.39941857862], [-4101.460723511253, 5992.099418577368]]}, {"length": 13.1477137496, "source": 1806083048, "destination": 2251802373, "path": [[-4102.310723510527, 6014.39941857862], [-4151.860723510481, 6014.999418578526], [-4180.36072350958, 6013.849418579298]]}, {"length": 16.3030276064, "source": 1806083049, "destination": 2069376785, "path": [[-4259.360723509076, 6013.49941857876], [-4257.960723506926, 5963.599418578269], [-4258.060723508095, 5940.199418578373]]}, {"length": 95.081330662, "source": 1806083049, "destination": 2703728620, "path": [[-4259.360723509076, 6013.49941857876], [-4824.160723508441, 6010.949418577383]]}, {"length": 13.299095324, "source": 1806083049, "destination": 2251802373, "path": [[-4259.360723509076, 6013.49941857876], [-4180.36072350958, 6013.849418579298]]}, {"length": 47.6808423005, "source": 1806083049, "destination": 2294600143, "path": [[-4259.360723509076, 6013.49941857876], [-4260.660723510056, 6227.899418576044]]}, {"length": 24.8197607485, "source": 2960622571, "destination": 2217933213, "path": [[-4851.11072350719, 504.94941857692766], [-4852.310723507003, 393.3494185766051]]}, {"length": 10.7155149199, "source": 1429423084, "destination": 135057523, "path": [[3183.439276490674, -5024.100581422886], [3247.0892764919768, -5022.75058142132]]}, {"length": 105.946329533, "source": 1429423084, "destination": 2080585062, "path": [[3183.439276490674, -5024.100581422886], [3158.039276492275, -4983.400581423325], [3137.6392764883576, -4942.950581423133], [3120.239276491077, -4900.3505814226855], [3105.7392764921588, -4867.700581421275], [3090.489276495134, -4843.550581423273], [3070.539276492923, -4813.000581421534], [2921.7392764948613, -4696.350581422593], [2837.4892764944093, -4638.500581421567]]}, {"length": 344.703531882, "source": 1429423084, "destination": 1429423302, "path": [[3183.439276490674, -5024.100581422886], [3115.1392764883212, -5029.10058142092], [3052.7392764909678, -5037.100581422038], [2986.289276492471, -5050.050581420606], [2942.0392764905046, -5062.450581423405], [2898.489276489613, -5077.8005814215985], [2860.4892764931833, -5094.2505814219885], [2824.8392764922414, -5111.150581420532], [2786.539276492306, -5136.650581423652], [2740.1392764900834, -5174.250581422512], [2682.0892764902737, -5233.050581423981], [2644.039276489707, -5280.200581420758], [2623.9892764934325, -5312.100581420509], [2607.839276492996, -5344.60058142372], [2596.1392764912716, -5376.75058142284], [2585.0392764894536, -5419.100581423919], [2579.4392764950658, -5492.1005814208], [2578.439276490485, -6314.950581423062]]}, {"length": 61.4699408457, "source": 2352260078, "destination": 2352260080, "path": [[-2417.6107235049926, 5875.349418577258], [-2052.4607235117287, 5875.199418579058]]}, {"length": 15.9567795053, "source": 2352260078, "destination": 2352260072, "path": [[-2417.6107235049926, 5875.349418577258], [-2416.960723508055, 5947.099418577295]]}, {"length": 33.8449808414, "source": 2352260078, "destination": 2352260084, "path": [[-2417.6107235049926, 5875.349418577258], [-2618.6607235061388, 5875.099418577889]]}, {"length": 6.93808506604, "source": 2352260078, "destination": 2352260088, "path": [[-2417.6107235049926, 5875.349418577258], [-2417.860723511467, 5844.149418578581]]}, {"length": 16.1049223591, "source": 2352260080, "destination": 2423670840, "path": [[-2052.4607235117287, 5875.199418579058], [-1956.8107235059529, 5873.8494185774925]]}, {"length": 96.341129455, "source": 2352260080, "destination": 2352260147, "path": [[-2052.4607235117287, 5875.199418579058], [-2049.060723507523, 5441.9994185792575]]}, {"length": 16.1221433557, "source": 2352260080, "destination": 2423670837, "path": [[-2052.4607235117287, 5875.199418579058], [-2052.2607235093915, 5925.299418578334], [-2054.010723504973, 5947.649418576617]]}, {"length": 61.4699408457, "source": 2352260080, "destination": 2352260078, "path": [[-2052.4607235117287, 5875.199418579058], [-2417.6107235049926, 5875.349418577258]]}, {"length": 13.3491505873, "source": 2352260084, "destination": 2316883515, "path": [[-2618.6607235061388, 5875.099418577889], [-2697.9607235091407, 5874.999418576721]]}, {"length": 48.5146995789, "source": 2352260084, "destination": 2355676091, "path": [[-2618.6607235061388, 5875.099418577889], [-2617.610723511632, 5656.949418579416]]}, {"length": 33.8449808414, "source": 2352260084, "destination": 2352260078, "path": [[-2618.6607235061388, 5875.099418577889], [-2417.6107235049926, 5875.349418577258]]}, {"length": 30.9020299992, "source": 2352260084, "destination": 2703728619, "path": [[-2618.6607235061388, 5875.099418577889], [-2620.2107235064886, 6014.049418578083]]}, {"length": 10.384912235, "source": 1935295477, "destination": 4719468835, "path": [[-3355.460723511783, -1830.5505814240064], [-3293.7607235083988, -1830.0005814211318]]}, {"length": 88.2830572702, "source": 1935295477, "destination": 1935295439, "path": [[-3355.460723511783, -1830.5505814240064], [-3360.3107235080643, -1614.5005814216518], [-3403.610723509587, -1436.6005814210325]]}, {"length": 95.635656723, "source": 2355654861, "destination": 2355668074, "path": [[-1142.3107235088992, 6022.94941857906], [-574.2107235064964, 6024.249418576488]]}, {"length": 32.0244948776, "source": 2355654861, "destination": 2355676003, "path": [[-1142.3107235088992, 6022.94941857906], [-1141.410723505487, 5878.949418576695]]}, {"length": 48.3593300789, "source": 2355654861, "destination": 2355654746, "path": [[-1142.3107235088992, 6022.94941857906], [-1143.7107235110489, 6240.399418576459]]}, {"length": 12.4492173564, "source": 2355654861, "destination": 2355654862, "path": [[-1142.3107235088992, 6022.94941857906], [-1216.2607235097767, 6022.549418577938]]}, {"length": 6.93808506604, "source": 2352260088, "destination": 2352260078, "path": [[-2417.860723511467, 5844.149418578581], [-2417.6107235049926, 5875.349418577258]]}, {"length": 69.9370713199, "source": 1930503165, "destination": 1930503168, "path": [[9589.339276494968, -7654.350581422164], [9173.739276491233, -7657.250581420527]]}, {"length": 11.1521623927, "source": 1930503165, "destination": 1930503160, "path": [[9589.339276494968, -7654.350581422164], [9601.489276491293, -7654.250581420996], [9614.089276489323, -7653.950581421042], [9625.13927649411, -7650.350581421606], [9634.639276491442, -7643.500581423268], [9640.139276491765, -7631.850581422128]]}, {"length": 99.7282003038, "source": 1930503165, "destination": 1930503214, "path": [[9589.339276494968, -7654.350581422164], [9590.039276488937, -7689.450581423785], [9591.989276493961, -7699.350581422237], [9597.539276491318, -7709.200581423658], [9602.689276491106, -7718.450581421621], [9605.039276493699, -7728.000581423089], [9605.839276488838, -7736.350581421192], [9605.439276491268, -7745.6005814227065], [9603.039276491643, -7758.150581423706], [9597.939276488887, -7771.600581421012], [9588.439276491556, -7785.900581421146], [9577.039276493339, -7796.6505814224265], [9560.439276491195, -7806.8005814238], [9541.08927648889, -7814.600581422582], [9517.439276493178, -7819.050581421294], [9486.639276488517, -7822.050581420825], [9455.489276490425, -7824.450581424003], [9224.23927649163, -7827.700581422903], [9211.239276488925, -7828.000581422856], [9201.739276491593, -7825.900581423184], [9193.089276493538, -7821.150581420966]]}, {"length": 72.0165173676, "source": 3688816205, "destination": 3688816196, "path": [[527.8392764935802, -11223.300581423957], [528.2392764911492, -11180.250581421802], [518.7392764938181, -11141.250581420793], [501.339276489432, -11113.75058142272], [470.5892764889086, -11094.250581422217], [432.4892764913102, -11079.450581423345], [394.98927649361804, -11070.100581420662], [355.78927649027037, -11065.450581423163], [305.3892764910415, -11062.900581421785], [239.7392764947881, -11059.900581422255]]}, {"length": 44.9899803906, "source": 3688816205, "destination": 3688816206, "path": [[527.8392764935802, -11223.300581423957], [529.0892764904243, -11425.600581421946]]}, {"length": 6.06770365431, "source": 1930503167, "destination": 1999574947, "path": [[9797.189276490315, -7657.250581420527], [9761.239276492972, -7659.400581420783]]}, {"length": 177.326782562, "source": 1930503168, "destination": 1930503139, "path": [[9173.739276491233, -7657.250581420527], [9173.739276491233, -7517.800581421597], [9172.139276493852, -7330.300581422478], [9170.589276493502, -7118.3005814212665], [9170.989276491071, -7032.600581421633], [9169.789276491258, -6959.150581423046], [9168.639276488477, -6859.900581421385]]}, {"length": 69.9370713199, "source": 1930503168, "destination": 1930503165, "path": [[9173.739276491233, -7657.250581420527], [9589.339276494968, -7654.350581422164]]}, {"length": 10.3422886475, "source": 1930503168, "destination": 2139785359, "path": [[9173.739276491233, -7657.250581420527], [9173.739276491233, -7680.200581422269], [9173.389276490696, -7703.750581423918]]}, {"length": 189.091176679, "source": 1930503169, "destination": 134979336, "path": [[9695.389276494381, -7662.600581422652], [9692.039276494314, -7621.400581420801], [9692.83927648945, -7241.600581423313], [9685.18927648887, -6812.450581421103]]}, {"length": 8.90826261403, "source": 1930503169, "destination": 1930503170, "path": [[9695.389276494381, -7662.600581422652], [9642.53927649139, -7664.950581421692]]}, {"length": 11.103387742, "source": 1930503169, "destination": 1999574947, "path": [[9695.389276494381, -7662.600581422652], [9761.239276492972, -7659.400581420783]]}, {"length": 7.37717944546, "source": 1930503170, "destination": 1930503160, "path": [[9642.53927649139, -7664.950581421692], [9642.53927649139, -7656.0505814207145], [9640.139276491765, -7631.850581422128]]}, {"length": 8.90826261403, "source": 1930503170, "destination": 1930503169, "path": [[9642.53927649139, -7664.950581421692], [9695.389276494381, -7662.600581422652]]}, {"length": 193.950083563, "source": 1930503170, "destination": 1930503404, "path": [[9642.53927649139, -7664.950581421692], [9642.53927649139, -7678.150581423182], [9641.339276491579, -7705.0005814207625], [9640.139276491765, -7745.6005814227065], [9639.739276494198, -7782.05058142234], [9638.189276493848, -7805.600581423988], [9632.239276491817, -7839.3505814240425], [9626.339276493924, -7872.800581420592], [9618.439276493973, -7924.45058142377], [9616.489276488948, -7946.850581422637], [9615.289276489137, -7971.350581421177], [9616.08927649138, -7995.500581422732], [9616.889276493623, -8027.150581423115], [9616.489276488948, -8064.80058142256], [9617.289276491192, -8097.900581422124], [9618.839276491542, -8118.20058142132], [9620.839276493598, -8135.250581421616], [9623.58927649376, -8152.250581421327], [9625.53927649168, -8166.900581421998], [9626.339276493924, -8178.850581423092], [9625.53927649168, -8190.200581420726], [9623.98927649133, -8202.70058142114], [9620.839276493598, -8216.750581421906], [9618.839276491542, -8232.550581421805], [9619.239276489112, -8260.350581423381], [9620.039276491354, -8298.250581422195], [9620.439276488923, -8377.400581423444], [9621.189276494135, -8412.900581422633], [9625.13927649411, -8438.900581420938], [9630.289276493897, -8456.80058142051], [9637.789276489173, -8477.700581423163], [9648.439276489284, -8503.350581420931], [9652.789276493933, -8515.90058142193], [9654.68927649482, -8532.250581421153]]}, {"length": 16.5460229887, "source": 1806083082, "destination": 1806083093, "path": [[-8653.860723505602, 5998.699418576336], [-8653.66072351037, 5924.299418577306]]}, {"length": 11.0427497321, "source": 1806083082, "destination": 2139774710, "path": [[-8653.860723505602, 5998.699418576336], [-8588.26072350638, 5998.749418576921]]}, {"length": 110.764850291, "source": 1806083082, "destination": 1806083085, "path": [[-8653.860723505602, 5998.699418576336], [-8738.460723506592, 5998.449418576967], [-8985.210723508884, 5998.149418577014], [-9252.260723506823, 5996.699418577833], [-9311.81072350995, 5997.599418577693]]}, {"length": 23.138746676, "source": 2352260108, "destination": 2352260110, "path": [[-2255.6607235060255, 5710.7494185792975], [-2393.1107235100058, 5710.54941857696]]}, {"length": 110.764850291, "source": 1806083085, "destination": 1806083082, "path": [[-9311.81072350995, 5997.599418577693], [-9252.260723506823, 5996.699418577833], [-8985.210723508884, 5998.149418577014], [-8738.460723506592, 5998.449418576967], [-8653.860723505602, 5998.699418576336]]}, {"length": 48.4375619343, "source": 1806083085, "destination": 2091809971, "path": [[-9311.81072350995, 5997.599418577693], [-9313.610723509668, 6175.099418577191], [-9313.6607235067, 6215.399418579182]]}, {"length": 16.4241041268, "source": 1806083085, "destination": 134958927, "path": [[-9311.81072350995, 5997.599418577693], [-9311.06072350474, 5923.749418577983]]}, {"length": 30.1247643495, "source": 2352260110, "destination": 2352260112, "path": [[-2393.1107235100058, 5710.54941857696], [-2572.0607235086845, 5710.2994185775915]]}, {"length": 23.138746676, "source": 2352260110, "destination": 2352260108, "path": [[-2393.1107235100058, 5710.54941857696], [-2255.6607235060255, 5710.7494185792975]]}, {"length": 11.5423683639, "source": 2352260110, "destination": 2352260117, "path": [[-2393.1107235100058, 5710.54941857696], [-2393.3107235052375, 5658.649418577966]]}, {"length": 30.1247643495, "source": 2352260112, "destination": 2352260110, "path": [[-2572.0607235086845, 5710.2994185775915], [-2393.1107235100058, 5710.54941857696]]}, {"length": 95.1978734482, "source": 1806083089, "destination": 1806083091, "path": [[-3535.9607235108115, 5993.899418577086], [-4054.4107235049864, 5992.149418577952], [-4101.460723511253, 5992.099418577368]]}, {"length": 11.1418772787, "source": 1806083089, "destination": 2068853452, "path": [[-3535.9607235108115, 5993.899418577086], [-3536.3607235083805, 5943.799418577811]]}, {"length": 4.57072452232, "source": 1806083089, "destination": 2316883510, "path": [[-3535.9607235108115, 5993.899418577086], [-3535.9607235108115, 6014.449418579205]]}, {"length": 4.96122794636, "source": 1806083091, "destination": 1806083048, "path": [[-4101.460723511253, 5992.099418577368], [-4102.310723510527, 6014.39941857862]]}, {"length": 95.1978734482, "source": 1806083091, "destination": 1806083089, "path": [[-4101.460723511253, 5992.099418577368], [-4054.4107235049864, 5992.149418577952], [-3535.9607235108115, 5993.899418577086]]}, {"length": 11.4460424778, "source": 1806083091, "destination": 2068973833, "path": [[-4101.460723511253, 5992.099418577368], [-4100.41072350964, 5964.699418576913], [-4104.010723509077, 5940.79941857828]]}, {"length": 73.0018287691, "source": 2352260117, "destination": 2068877128, "path": [[-2393.3107235052375, 5658.649418577966], [-1959.6607235072838, 5660.3994185771]]}, {"length": 37.7606799901, "source": 2352260117, "destination": 2355676091, "path": [[-2393.3107235052375, 5658.649418577966], [-2617.610723511632, 5656.949418579416]]}, {"length": 11.5423683639, "source": 2352260117, "destination": 2352260110, "path": [[-2393.3107235052375, 5658.649418577966], [-2393.1107235100058, 5710.54941857696]]}, {"length": 96.062508136, "source": 2355676183, "destination": 2355676003, "path": [[-1138.6607235053248, 5446.999418577292], [-1141.410723505487, 5878.949418576695]]}, {"length": 12.6599166259, "source": 2355676183, "destination": 2358476141, "path": [[-1138.6607235053248, 5446.999418577292], [-1213.8607235101517, 5446.4494185779695]]}, {"length": 95.8706860398, "source": 2355676183, "destination": 2703728622, "path": [[-1138.6607235053248, 5446.999418577292], [-569.1607235078777, 5449.349418576332]]}, {"length": 13.0103112863, "source": 2355676183, "destination": 2358476143, "path": [[-1138.6607235053248, 5446.999418577292], [-1138.2607235077558, 5388.499418579329]]}, {"length": 12.920059763, "source": 2355676185, "destination": 2358476144, "path": [[-1288.060723510398, 5446.0994185774325], [-1287.8607235080608, 5416.699418578474], [-1287.7107235098606, 5387.999418577038]]}, {"length": 96.0306504271, "source": 2355676185, "destination": 2355676188, "path": [[-1288.060723510398, 5446.0994185774325], [-1858.5107235082887, 5443.699418577808]]}, {"length": 12.4904149139, "source": 2355676185, "destination": 2358476141, "path": [[-1288.060723510398, 5446.0994185774325], [-1213.8607235101517, 5446.4494185779695]]}, {"length": 96.1623770384, "source": 2355676185, "destination": 2703719279, "path": [[-1288.060723510398, 5446.0994185774325], [-1288.460723507967, 5510.149418576304], [-1289.5607235066109, 5679.649418578237], [-1290.410723505886, 5814.049418578548], [-1290.8107235105604, 5878.499418578542]]}, {"length": 247.359969159, "source": 1429423130, "destination": 1932196145, "path": [[164.48927649292955, -5488.7005814237], [196.1892764938966, -5507.50058142313], [224.03927648895205, -5526.150581420808], [252.38927648985054, -5545.700581421897], [407.4892764904803, -5623.250581422212], [487.3892764933885, -5665.05058142397], [564.8892764895663, -5703.550581422689], [715.5392764914836, -5774.2505814211145], [868.4392764948257, -5847.150581423932], [901.989276492543, -5861.200581421144], [938.1392764922225, -5873.200581422821], [1030.3392764896557, -5900.550581422693], [1056.5892764944351, -5909.60058142187], [1088.3892764894654, -5923.150581423897], [1156.3392764912805, -5954.550581421358], [1283.5392764927178, -6014.850581422593], [1305.9892764886172, -6024.200581421724], [1332.0392764910594, -6032.600581423963], [1359.8892764932202, -6038.350581423657], [1382.689276489657, -6040.100581422792], [1407.9392764898557, -6038.750581421226], [1424.4892764949668, -6034.700581423635]]}, {"length": 12.4401645641, "source": 1429423130, "destination": 1932196037, "path": [[164.48927649292955, -5488.7005814237], [102.38927649197649, -5458.350581420746]]}, {"length": 30.5649888334, "source": 1429423130, "destination": 2139769721, "path": [[164.48927649292955, -5488.7005814237], [178.78927648951048, -5472.900581423801], [184.18927648866656, -5464.700581423898], [187.68927649404077, -5455.80058142292], [191.18927649230955, -5445.950581421499], [194.38927649417792, -5434.850581423234], [198.53927648938452, -5425.250581421182], [222.389276494539, -5384.300581422252], [232.03927649007028, -5362.000581421]]}, {"length": 67.0717987783, "source": 134956059, "destination": 1429423002, "path": [[1773.389276493731, -4465.050581423213], [2171.9392764936174, -4464.300581421554]]}, {"length": 2.76781968777, "source": 134956059, "destination": 2587025004, "path": [[1773.389276493731, -4465.050581423213], [1773.4892764948995, -4477.500581423044]]}, {"length": 72.2355711284, "source": 134956059, "destination": 134975775, "path": [[1773.389276493731, -4465.050581423213], [1769.3392764925875, -4140.2505814218675]]}, {"length": 95.9646710624, "source": 2355676188, "destination": 2355676008, "path": [[-1858.5107235082887, 5443.699418577808], [-1858.5107235082887, 5525.3994185768815], [-1859.1607235052265, 5607.9494185787835], [-1860.810723506745, 5672.149418579409], [-1861.66072350602, 5774.799418578169], [-1861.8107235113257, 5875.199418579058]]}, {"length": 13.0247944809, "source": 2355676188, "destination": 2358476145, "path": [[-1858.5107235082887, 5443.699418577808], [-1858.5107235082887, 5415.8494185792], [-1859.96072350747, 5385.14941857926]]}, {"length": 16.7925725311, "source": 2355676188, "destination": 2358476142, "path": [[-1858.5107235082887, 5443.699418577808], [-1958.2607235051341, 5442.849418578533]]}, {"length": 96.0306504271, "source": 2355676188, "destination": 2355676185, "path": [[-1858.5107235082887, 5443.699418577808], [-1288.060723510398, 5446.0994185774325]]}, {"length": 12.624984785, "source": 1806083101, "destination": 2069376925, "path": [[-4098.810723505153, 4770.2494185770665], [-4173.810723507642, 4769.949418577113]]}, {"length": 48.6151777895, "source": 1806083101, "destination": 2069376922, "path": [[-4098.810723505153, 4770.2494185770665], [-4099.510723506228, 4664.949418579312], [-4099.110723508658, 4551.649418576886]]}, {"length": 13.0210442972, "source": 1806083101, "destination": 2069376797, "path": [[-4098.810723505153, 4770.2494185770665], [-4099.110723508658, 4828.799418579166]]}, {"length": 95.7587977577, "source": 1806083101, "destination": 2310516317, "path": [[-4098.810723505153, 4770.2494185770665], [-4013.9607235047947, 4770.549418577019], [-3529.960723511749, 4772.299418576154]]}, {"length": 12.4209508235, "source": 2355676190, "destination": 2358476146, "path": [[-2049.8107235056295, 5328.399418576879], [-2049.11072351166, 5384.249418579401]]}, {"length": 48.4045968427, "source": 2355676190, "destination": 2358476301, "path": [[-2049.8107235056295, 5328.399418576879], [-2047.5607235113102, 5110.749418577143]]}, {"length": 95.3306799257, "source": 2355676190, "destination": 2352260173, "path": [[-2049.8107235056295, 5328.399418576879], [-2616.1107235083136, 5326.9494185776975]]}, {"length": 15.531158146, "source": 2355676190, "destination": 2358476149, "path": [[-2049.8107235056295, 5328.399418576879], [-1957.5607235111647, 5329.549418576107]]}, {"length": 53.6681702167, "source": 2960622624, "destination": 2960627735, "path": [[-5608.710723507215, -1495.5505814207015], [-5781.060723506926, -1495.5505814207015], [-5843.410723507248, -1595.9005814210059]]}, {"length": 11.0511724224, "source": 2289072988, "destination": 2292321463, "path": [[-8522.110723511389, 5851.599418576825], [-8560.16072350485, 5851.499418579209], [-8587.760723507643, 5851.349418577456]]}, {"length": 16.2571006296, "source": 2289072988, "destination": 2291095886, "path": [[-8522.110723511389, 5851.599418576825], [-8522.41072350779, 5901.7994185772695], [-8522.660723507159, 5924.699418578428]]}, {"length": 236.593750844, "source": 2289072988, "destination": 2285539542, "path": [[-8522.110723511389, 5851.599418576825], [-8436.510723505819, 5851.799418579162], [-8310.210723507793, 5852.199418576731], [-7996.460723511234, 5853.99941857645], [-7963.460723509286, 5854.949418576894], [-7943.460723510043, 5862.6994185786425], [-7914.56072350627, 5876.049418578333], [-7899.310723509245, 5880.299418578261], [-7882.960723506471, 5880.4494185764615], [-7855.660723507185, 5880.7994185769985], [-7847.16072350733, 5880.899418578167], [-7823.8607235050495, 5877.849418578052], [-7797.460723509175, 5870.699418576209], [-7765.66072350704, 5860.699418576587], [-7739.7107235057665, 5855.849418576753], [-7622.56072351164, 5856.549418577828], [-7498.110723510365, 5856.599418578412], [-7244.160723509196, 5858.099418578177], [-7186.760723506324, 5861.449418578246], [-7130.910723510908, 5864.899418579484]]}, {"length": 47.7478256888, "source": 2289072988, "destination": 2289073095, "path": [[-8522.110723511389, 5851.599418576825], [-8521.510723511483, 5739.249418578396], [-8521.110723506808, 5636.899418576036]]}, {"length": 102.545296985, "source": 134956075, "destination": 134975753, "path": [[6499.7892764893095, -4545.200581421937], [6496.839276493915, -4084.1005814229447]]}, {"length": 97.2420623193, "source": 134956077, "destination": 2573122358, "path": [[6765.539276493371, -4519.350581421832], [6761.839276492765, -4082.100581420889]]}, {"length": 171.691363664, "source": 1930503214, "destination": 1930367775, "path": [[9193.089276493538, -7821.150581420966], [9179.639276489126, -7840.250581423902], [9174.139276488802, -7851.600581421536], [9170.989276491071, -7864.150581422536], [9168.989276489014, -7876.400581423582], [9168.989276489014, -7894.900581423059], [9169.38927649369, -7924.750581423723], [9170.189276488827, -8042.100581423739], [9170.189276488827, -8064.80058142256], [9172.139276493852, -8079.7005814225995], [9175.739276493288, -8092.250581423599], [9185.189276493587, -8112.5505814227945], [9197.039276493513, -8132.550581422038], [9208.089276491193, -8147.500581422662], [9215.1892764889, -8159.700581423123], [9218.739276491306, -8171.650581420664], [9220.689276489225, -8186.300581421336], [9221.489276491468, -8200.950581422007], [9220.689276489225, -8214.650581422233], [9218.339276493736, -8225.100581423561], [9213.589276491519, -8237.95058142096], [9207.689276493624, -8257.050581423897], [9202.139276489163, -8277.350581423092], [9199.789276493675, -8290.500581424], [9199.389276489, -8302.750581421493], [9200.589276488812, -8313.20058142282], [9202.539276493837, -8325.150581423912], [9208.089276491193, -8336.750581420914], [9216.33927649168, -8350.500581421727], [9227.789276494037, -8363.650581422633], [9245.539276491854, -8381.850581422157], [9255.039276489186, -8394.700581423109], [9258.98927648916, -8405.75058142079], [9263.689276494348, -8423.950581423867], [9266.08927649397, -8439.800581420797], [9267.639276494321, -8453.80058142098], [9266.48927649154, -8460.100581423547], [9264.489276489485, -8467.250581421837], [9258.189276494022, -8477.100581423258], [9251.489276493885, -8484.850581421455], [9237.689276488936, -8497.400581422455], [9224.639276489199, -8509.350581423547], [9217.939276489062, -8516.500581421838], [9212.789276489275, -8524.55058142354], [9210.439276493787, -8532.35058142232], [9207.239276491919, -8555.650581421049]]}, {"length": 99.7282003038, "source": 1930503214, "destination": 1930503165, "path": [[9193.089276493538, -7821.150581420966], [9201.739276491593, -7825.900581423184], [9211.239276488925, -7828.000581422856], [9224.23927649163, -7827.700581422903], [9455.489276490425, -7824.450581424003], [9486.639276488517, -7822.050581420825], [9517.439276493178, -7819.050581421294], [9541.08927648889, -7814.600581422582], [9560.439276491195, -7806.8005814238], [9577.039276493339, -7796.6505814224265], [9588.439276491556, -7785.900581421146], [9597.939276488887, -7771.600581421012], [9603.039276491643, -7758.150581423706], [9605.439276491268, -7745.6005814227065], [9605.839276488838, -7736.350581421192], [9605.039276493699, -7728.000581423089], [9602.689276491106, -7718.450581421621], [9597.539276491318, -7709.200581423658], [9591.989276493961, -7699.350581422237], [9590.039276488937, -7689.450581423785], [9589.339276494968, -7654.350581422164]]}, {"length": 26.7658918332, "source": 1930503214, "destination": 2139785359, "path": [[9193.089276493538, -7821.150581420966], [9184.789276488915, -7811.900581423004], [9178.489276493452, -7799.350581422004], [9176.889276488964, -7784.7005814213335], [9172.939276488989, -7735.15058142138], [9173.389276490696, -7703.750581423918]]}, {"length": 194.425817972, "source": 134956081, "destination": 2086854552, "path": [[9116.28927649133, -4541.400581423715], [7960.989276490693, -4545.3505814236905]]}, {"length": 51.4833719009, "source": 134956081, "destination": 2086854465, "path": [[9116.28927649133, -4541.400581423715], [9116.18927649016, -4309.900581421999]]}, {"length": 96.1507068424, "source": 134956081, "destination": 135022844, "path": [[9116.28927649133, -4541.400581423715], [9117.889276488711, -4973.750581420689]]}, {"length": 34.5170922533, "source": 134956081, "destination": 2074099157, "path": [[9116.28927649133, -4541.400581423715], [9321.389276493619, -4540.100581422735]]}, {"length": 96.341129455, "source": 2352260147, "destination": 2352260080, "path": [[-2049.060723507523, 5441.9994185792575], [-2052.4607235117287, 5875.199418579058]]}, {"length": 12.8426272087, "source": 2352260147, "destination": 2358476146, "path": [[-2049.060723507523, 5441.9994185792575], [-2049.11072351166, 5384.249418579401]]}, {"length": 95.6098313844, "source": 2352260147, "destination": 2352260149, "path": [[-2049.060723507523, 5441.9994185792575], [-2617.0107235117257, 5439.5494185790485]]}, {"length": 15.2860786459, "source": 2352260147, "destination": 2358476142, "path": [[-2049.060723507523, 5441.9994185792575], [-1958.2607235051341, 5442.849418578533]]}, {"length": 95.6098313844, "source": 2352260149, "destination": 2352260147, "path": [[-2617.0107235117257, 5439.5494185790485], [-2049.060723507523, 5441.9994185792575]]}, {"length": 48.3476805405, "source": 2352260149, "destination": 2355676091, "path": [[-2617.0107235117257, 5439.5494185790485], [-2617.610723511632, 5656.949418579416]]}, {"length": 13.1560095472, "source": 2352260149, "destination": 2316883622, "path": [[-2617.0107235117257, 5439.5494185790485], [-2695.1607235048414, 5439.199418578511]]}, {"length": 12.8769686564, "source": 2352260149, "destination": 2358476147, "path": [[-2617.0107235117257, 5439.5494185790485], [-2616.5607235100197, 5381.649418577439]]}, {"length": 128.221820344, "source": 135031647, "destination": 135032865, "path": [[-5659.760723510488, 2053.3994185782944], [-4898.0107235081505, 2049.799418578857]]}, {"length": 50.9292095171, "source": 135031647, "destination": 135072431, "path": [[-5659.760723510488, 2053.3994185782944], [-5962.310723511166, 2050.7994185763323]]}, {"length": 108.612897406, "source": 135031647, "destination": 135031649, "path": [[-5659.760723510488, 2053.3994185782944], [-5675.160723505713, 2541.649418578373]]}, {"length": 28.1468747071, "source": 2352260157, "destination": 2355655001, "path": [[-401.1107235086797, 5331.349418579379], [-568.3107235086027, 5330.549418577135]]}, {"length": 13.9577686996, "source": 844923969, "destination": 2568624489, "path": [[512.0892764907126, -3309.600581420824], [517.039276495268, -3246.950581420549]]}, {"length": 11.4691275068, "source": 844923972, "destination": 2568624509, "path": [[938.5892764939285, -3295.400581421859], [942.1892764933659, -3243.9005814239863]]}, {"length": 48.792563819, "source": 2352260173, "destination": 2357086394, "path": [[-2616.1107235083136, 5326.9494185776975], [-2616.310723510651, 5107.5494185788275]]}, {"length": 12.1654487046, "source": 2352260173, "destination": 2358476147, "path": [[-2616.1107235083136, 5326.9494185776975], [-2616.5607235100197, 5381.649418577439]]}, {"length": 95.3306799257, "source": 2352260173, "destination": 2355676190, "path": [[-2616.1107235083136, 5326.9494185776975], [-2049.8107235056295, 5328.399418576879]]}, {"length": 13.1902183769, "source": 2352260173, "destination": 2358476150, "path": [[-2616.1107235083136, 5326.9494185776975], [-2694.460723510872, 5326.349418577792]]}, {"length": 768.121456702, "source": 1428268115, "destination": 134939936, "path": [[-7097.610723505454, -6340.8505814237515], [-6928.1607235112115, -6489.100581422491], [-6715.160723508972, -6662.100581422692], [-6499.160723507202, -6826.1005814207465], [-6322.160723506442, -6953.1005814233995], [-5390.560723505188, -7527.750581420633], [-4969.260723505897, -7774.950581421081], [-4634.610723506683, -7977.350581423792], [-4310.960723508117, -8191.750581421075], [-4011.810723511644, -8418.70058142291], [-3727.2607235081523, -8658.600581423314]]}, {"length": 127.157111926, "source": 1428268115, "destination": 1428268064, "path": [[-7097.610723505454, -6340.8505814237515], [-7012.660723511033, -6288.150581422514], [-6966.810723511685, -6250.700581421853], [-6899.710723509144, -6188.4505814226995], [-6817.110723510212, -6140.150581423142], [-6541.9607235099875, -6000.500581421875], [-6519.910723511657, -5978.55058142116]]}, {"length": 10.7087840681, "source": 1428268115, "destination": 134968426, "path": [[-7097.610723505454, -6340.8505814237515], [-7138.960723509058, -6304.250581422366]]}, {"length": 42.4998162112, "source": 1428268115, "destination": 1428268153, "path": [[-7097.610723505454, -6340.8505814237515], [-7132.110723510721, -6365.9505814221975], [-7157.710723511456, -6392.450581422792], [-7162.260723511337, -6407.8505814215705], [-7171.360723511099, -6467.0005814235765], [-7180.510723507894, -6478.050581421257], [-7218.510723511428, -6495.650581420876]]}, {"length": 52.450687844, "source": 135038037, "destination": 135038042, "path": [[4949.889276488761, 4094.049418576162], [4950.139276495236, 4329.899418578975]]}, {"length": 93.8621964745, "source": 135038037, "destination": 135018868, "path": [[4949.889276488761, 4094.049418576162], [5507.489276489252, 4093.749418576209]]}, {"length": 204.464934533, "source": 135038037, "destination": 134959975, "path": [[4949.889276488761, 4094.049418576162], [4938.189276494142, 4060.4494185778603], [4933.239276489587, 4024.599418578134], [4933.639276494261, 3175.9994185769356]]}, {"length": 50.9410102518, "source": 135038042, "destination": 135088456, "path": [[4950.139276495236, 4329.899418578975], [4915.139276491232, 4324.549418576851], [4877.339276490034, 4320.299418576923], [4819.88927649013, 4315.549418578257], [4770.289276493145, 4312.74941857751], [4649.139276494907, 4310.799418576039]]}, {"length": 57.9781184479, "source": 135038042, "destination": 2069407058, "path": [[4950.139276495236, 4329.899418578975], [4948.039276492011, 4590.5994185773125]]}, {"length": 52.450687844, "source": 135038042, "destination": 135038037, "path": [[4950.139276495236, 4329.899418578975], [4949.889276488761, 4094.049418576162]]}, {"length": 93.929225885, "source": 135038042, "destination": 135018870, "path": [[4950.139276495236, 4329.899418578975], [4978.989276494872, 4333.299418576075], [5027.839276493751, 4336.599418579112], [5507.589276490421, 4338.3494185782465]]}, {"length": 11.4128026567, "source": 2284151911, "destination": 2284151913, "path": [[-7076.5107235075675, 4328.799418576778], [-7144.310723511182, 4328.599418577995]]}, {"length": 98.1414264594, "source": 2284151911, "destination": 2285540627, "path": [[-7076.5107235075675, 4328.799418576778], [-7033.610723510719, 4328.8994185779475], [-6870.560723506003, 4329.2994185790685], [-6751.410723509821, 4330.649418577082], [-6644.260723511763, 4330.649418577082], [-6493.510723508678, 4330.599418576498]]}, {"length": 48.2589587689, "source": 2284151911, "destination": 1433125588, "path": [[-7076.5107235075675, 4328.799418576778], [-7077.610723506212, 4545.799418576024]]}, {"length": 13.3545507294, "source": 2284151911, "destination": 135050582, "path": [[-7076.5107235075675, 4328.799418576778], [-7076.210723511167, 4268.749418578465]]}, {"length": 32.048814527, "source": 1428268136, "destination": 1428268153, "path": [[-7341.810723509923, -6400.000581422205], [-7280.3107235088755, -6411.650581423345], [-7218.510723511428, -6495.650581420876]]}, {"length": 40.232578773, "source": 1428268136, "destination": 134968426, "path": [[-7341.810723509923, -6400.000581422205], [-7138.960723509058, -6304.250581422366]]}, {"length": 412.227272027, "source": 1428268136, "destination": 134968422, "path": [[-7341.810723509923, -6400.000581422205], [-7635.910723507777, -6546.800581421763], [-8700.910723504763, -7097.6505814215325], [-9076.010723511274, -7296.90058142296], [-9156.010723508245, -7339.40058142224], [-9200.760723508949, -7366.350581420988], [-9242.410723508954, -7395.550581421162], [-9273.910723507583, -7423.75058142386], [-9323.660723509875, -7479.150581421123]]}, {"length": 48.3190706188, "source": 2284151913, "destination": 1965661608, "path": [[-7144.310723511182, 4328.599418577995], [-7144.560723510551, 4445.6494185780575], [-7134.8107235067455, 4545.59941857724]]}, {"length": 11.4128026567, "source": 2284151913, "destination": 2284151911, "path": [[-7144.310723511182, 4328.599418577995], [-7076.5107235075675, 4328.799418576778]]}, {"length": 13.3207639254, "source": 2284151913, "destination": 1965661549, "path": [[-7144.310723511182, 4328.599418577995], [-7144.210723510014, 4268.699418577881]]}, {"length": 112.196723914, "source": 2284151913, "destination": 2284151925, "path": [[-7144.310723511182, 4328.599418577995], [-7359.710723505941, 4327.949418577504], [-7519.160723511221, 4327.349418577597], [-7733.4607235073345, 4325.9994185760315], [-7732.960723508597, 4267.449418577485]]}, {"length": 32.1934714908, "source": 2355668074, "destination": 2355676000, "path": [[-574.2107235064964, 6024.249418576488], [-571.8107235068715, 5879.499418576017]]}, {"length": 77.2377195673, "source": 2355668074, "destination": 2355654855, "path": [[-574.2107235064964, 6024.249418576488], [-115.41072350951254, 6026.899418579034]]}, {"length": 95.635656723, "source": 2355668074, "destination": 2355654861, "path": [[-574.2107235064964, 6024.249418576488], [-1142.3107235088992, 6022.94941857906]]}, {"length": 48.3477737479, "source": 2355668074, "destination": 2355654743, "path": [[-574.2107235064964, 6024.249418576488], [-575.1107235099084, 6241.649418576855]]}, {"length": 3.73519955772, "source": 134939756, "destination": 4719464841, "path": [[-3564.710723509279, -1828.200581421413], [-3586.9107235058095, -1828.200581421413]]}, {"length": 72.9736855753, "source": 134939756, "destination": 3148277115, "path": [[-3564.710723509279, -1828.200581421413], [-3538.3607235104364, -1823.1505814227944], [-3515.160723509325, -1814.0505814230323], [-3494.760723505408, -1797.8505814220114], [-3485.3607235092454, -1783.5505814218777], [-3473.510723509321, -1755.8005814208855], [-3465.960723509909, -1725.650581423821], [-3463.4107235049783, -1633.3005814210821], [-3449.7107235083035, -1574.900581420735], [-3437.46072351081, -1538.1505814211494]]}, {"length": 27.5758083258, "source": 2587010578, "destination": 2587010617, "path": [[1171.7392764936108, -2510.200581422595], [1195.8892764951656, -2483.800581423168], [1211.9892764914653, -2463.500581423972], [1222.6892764886088, -2450.300581422482], [1233.4392764898894, -2436.100581423517], [1256.2392764934316, -2404.100581422597]]}, {"length": 65.9136200099, "source": 2587010578, "destination": 2587010594, "path": [[1171.7392764936108, -2510.200581422595], [1194.5392764900475, -2530.5005814217907], [1228.0892764948703, -2554.85058142213], [1258.939276489457, -2575.150581421326], [1281.7392764929991, -2594.4005814224624], [1301.8392764934106, -2613.7005814206304], [1283.0392764939802, -2612.700581423155], [1257.5892764914443, -2611.650581421543], [1236.1392764930201, -2606.6005814229243], [1211.9892764914653, -2599.5005814216656], [1186.4892764918977, -2596.45058142155], [1170.3892764884927, -2599.5005814216656], [1151.6392764931993, -2605.600581421896], [1135.5392764897942, -2610.6505814205148], [1106.0392764932203, -2610.6505814205148]]}, {"length": 25.0660376562, "source": 2587010578, "destination": 2587010594, "path": [[1171.7392764936108, -2510.200581422595], [1150.2892764951866, -2534.550581422934], [1135.5392764897942, -2555.850581423158], [1120.7892764915073, -2579.2005814224694], [1110.0392764902267, -2597.4505814225777], [1106.0392764932203, -2610.6505814205148]]}, {"length": 30.4088429228, "source": 2587010578, "destination": 2587010543, "path": [[1171.7392764936108, -2510.200581422595], [1053.7392764931042, -2406.6505814239745]]}, {"length": 12.5874502388, "source": 2284151921, "destination": 2284151928, "path": [[-7212.460723508229, 4268.599418576713], [-7211.910723505354, 4211.999418576084]]}, {"length": 80.3626610084, "source": 2284151921, "destination": 2284151923, "path": [[-7212.460723508229, 4268.599418576713], [-7689.860723509411, 4267.549418578654]]}, {"length": 11.4883641065, "source": 2284151921, "destination": 1965661549, "path": [[-7212.460723508229, 4268.599418576713], [-7144.210723510014, 4268.699418577881]]}, {"length": 80.3626610084, "source": 2284151923, "destination": 2284151921, "path": [[-7689.860723509411, 4267.549418578654], [-7212.460723508229, 4268.599418576713]]}, {"length": 7.2561977131, "source": 2284151923, "destination": 2284151925, "path": [[-7689.860723509411, 4267.549418578654], [-7732.960723508597, 4267.449418577485]]}, {"length": 12.4234901905, "source": 2284151923, "destination": 2284151934, "path": [[-7689.860723509411, 4267.549418578654], [-7688.260723504925, 4211.699418576131]]}, {"length": 61.4824356937, "source": 1806083189, "destination": 2311060360, "path": [[-4084.5607235056036, 3093.399418578002], [-3946.460723511791, 3093.74941857854], [-3744.56072351137, 3094.9994185789365], [-3719.310723511171, 3095.099418576552]]}, {"length": 13.2326670339, "source": 1806083189, "destination": 2311060364, "path": [[-4084.5607235056036, 3093.399418578002], [-4118.310723505658, 3092.9994185768805], [-4163.160723507531, 3092.5994185793115]]}, {"length": 14.1794259604, "source": 1806083189, "destination": 2251802375, "path": [[-4084.5607235056036, 3093.399418578002], [-4085.9607235077533, 3157.149418576921]]}, {"length": 11.2617593963, "source": 2284151928, "destination": 2284151936, "path": [[-7211.910723505354, 4211.999418576084], [-7145.010723505152, 4211.499418577347]]}, {"length": 12.5874502388, "source": 2284151928, "destination": 2284151921, "path": [[-7211.910723505354, 4211.999418576084], [-7212.460723508229, 4268.599418576713]]}, {"length": 4.49316472326, "source": 2284151928, "destination": 2284151949, "path": [[-7211.910723505354, 4211.999418576084], [-7211.710723510123, 4191.799418578057]]}, {"length": 80.1852427234, "source": 2284151928, "destination": 2284151934, "path": [[-7211.910723505354, 4211.999418576084], [-7328.560723507849, 4212.849418578912], [-7624.010723510821, 4211.899418578469], [-7672.260723509794, 4211.699418576131], [-7688.260723504925, 4211.699418576131]]}, {"length": 97.8373801107, "source": 1428268153, "destination": 1428268307, "path": [[-7218.510723511428, -6495.650581420876], [-7083.960723505811, -6667.9505814235545], [-7030.5107235100195, -6723.050581420865], [-6977.760723508198, -6769.150581423133], [-6952.510723507999, -6797.800581423985], [-6931.710723506512, -6829.850581421937], [-6914.6107235056315, -6868.050581420704]]}, {"length": 42.4998162112, "source": 1428268153, "destination": 1428268115, "path": [[-7218.510723511428, -6495.650581420876], [-7180.510723507894, -6478.050581421257], [-7171.360723511099, -6467.0005814235765], [-7162.260723511337, -6407.8505814215705], [-7157.710723511456, -6392.450581422792], [-7132.110723510721, -6365.9505814221975], [-7097.610723505454, -6340.8505814237515]]}, {"length": 13.4875152917, "source": 1428268153, "destination": 1428268159, "path": [[-7218.510723511428, -6495.650581420876], [-7286.760723509644, -6527.450581423011]]}, {"length": 46.922895031, "source": 2284151931, "destination": 1433125599, "path": [[-7766.8107235098205, 4211.8494185778845], [-7766.510723506315, 4174.049418576687], [-7759.010723511039, 4000.94941857887]]}, {"length": 5.78249526915, "source": 2284151931, "destination": 2284151932, "path": [[-7766.8107235098205, 4211.8494185778845], [-7732.460723509859, 4211.7994185773005]]}, {"length": 12.3540145656, "source": 2284151931, "destination": 135096727, "path": [[-7766.8107235098205, 4211.8494185778845], [-7767.2607235115265, 4267.399418576901]]}, {"length": 5.78249526915, "source": 2284151932, "destination": 2284151931, "path": [[-7732.460723509859, 4211.7994185773005], [-7766.8107235098205, 4211.8494185778845]]}, {"length": 12.3766096139, "source": 2284151932, "destination": 2284151925, "path": [[-7732.460723509859, 4211.7994185773005], [-7732.960723508597, 4267.449418577485]]}, {"length": 7.43957078026, "source": 2284151932, "destination": 2284151934, "path": [[-7732.460723509859, 4211.7994185773005], [-7688.260723504925, 4211.699418576131]]}, {"length": 80.1852427234, "source": 2284151934, "destination": 2284151928, "path": [[-7688.260723504925, 4211.699418576131], [-7672.260723509794, 4211.699418576131], [-7624.010723510821, 4211.899418578469], [-7328.560723507849, 4212.849418578912], [-7211.910723505354, 4211.999418576084]]}, {"length": 12.4234901905, "source": 2284151934, "destination": 2284151923, "path": [[-7688.260723504925, 4211.699418576131], [-7689.860723509411, 4267.549418578654]]}, {"length": 7.43957078026, "source": 2284151934, "destination": 2284151932, "path": [[-7688.260723504925, 4211.699418576131], [-7732.460723509859, 4211.7994185773005]]}, {"length": 4.34115555205, "source": 2284151934, "destination": 2284151943, "path": [[-7688.260723504925, 4211.699418576131], [-7687.060723505112, 4192.199418579179]]}, {"length": 31.3233997658, "source": 1428268159, "destination": 1428268136, "path": [[-7286.760723509644, -6527.450581423011], [-7350.6607235103165, -6443.1505814219745], [-7341.810723509923, -6400.000581422205]]}, {"length": 13.4875152917, "source": 1428268159, "destination": 1428268153, "path": [[-7286.760723509644, -6527.450581423011], [-7218.510723511428, -6495.650581420876]]}, {"length": 162.280188148, "source": 1428268159, "destination": 1428268292, "path": [[-7286.760723509644, -6527.450581423011], [-7321.060723505469, -6538.150581423707], [-7366.410723506078, -6529.8505814226355], [-7397.4607235101075, -6526.900581423689], [-7435.460723506538, -6532.400581424014], [-7472.910723507198, -6527.550581420627], [-7498.760723507303, -6527.550581420627], [-7538.610723507589, -6548.05058142216], [-8115.560723510384, -6846.100581423542]]}, {"length": 11.2617593963, "source": 2284151936, "destination": 2284151928, "path": [[-7145.010723505152, 4211.499418577347], [-7211.910723505354, 4211.999418576084]]}, {"length": 47.7139100712, "source": 2284151936, "destination": 1965661642, "path": [[-7145.010723505152, 4211.499418577347], [-7145.860723511532, 4152.299418578309], [-7129.460723511727, 3997.449418577048]]}, {"length": 12.7213478982, "source": 2284151936, "destination": 1965661549, "path": [[-7145.010723505152, 4211.499418577347], [-7144.210723510014, 4268.699418577881]]}, {"length": 3.92233869036, "source": 2322588806, "destination": 2139785359, "path": [[9196.689276492976, -7703.500581420996], [9173.389276490696, -7703.750581423918]]}, {"length": 4.34115555205, "source": 2284151943, "destination": 2284151934, "path": [[-7687.060723505112, 4192.199418579179], [-7688.260723504925, 4211.699418576131]]}, {"length": 108.203891562, "source": 3758384264, "destination": 2311060633, "path": [[-2677.5607235052235, 2668.049418577567], [-2571.8107235093157, 2669.9494185784542], [-2371.8607235068134, 2670.449418577192], [-2256.2107235089, 2670.449418577192], [-2059.560723509435, 2671.44941857822], [-2034.7607235109422, 2671.44941857822]]}, {"length": 11.9313104596, "source": 3758384264, "destination": 135016133, "path": [[-2677.5607235052235, 2668.049418577567], [-2677.2107235117915, 2614.399418579438]]}, {"length": 12.5012338115, "source": 3758384264, "destination": 2311060654, "path": [[-2677.5607235052235, 2668.049418577567], [-2751.8107235096068, 2666.7494185765863]]}, {"length": 13.5215519761, "source": 3758384266, "destination": 134959139, "path": [[-9293.960723510963, 2524.8994185780302], [-9294.3107235115, 2585.699418578002]]}, {"length": 47.2805139664, "source": 3758384266, "destination": 2282973563, "path": [[-9293.960723510963, 2524.8994185780302], [-9292.810723508182, 2312.299418576913]]}, {"length": 9.08110878756, "source": 3758384266, "destination": 2282973371, "path": [[-9293.960723510963, 2524.8994185780302], [-9240.01072350933, 2525.099418576815]]}, {"length": 13.0618183064, "source": 3758384266, "destination": 2282973373, "path": [[-9293.960723510963, 2524.8994185780302], [-9371.56072350831, 2524.5994185780773]]}, {"length": 99.8047051683, "source": 3758384268, "destination": 2282973562, "path": [[-8646.860723509064, 2314.2494185783844], [-8707.4607235067, 2313.6494185784786], [-8739.710723510541, 2311.2994185794378], [-8765.11072350894, 2310.4994185771943], [-8792.910723506964, 2311.7994185781754], [-8818.610723508868, 2313.6494185784786], [-8833.710723507693, 2315.199418578828], [-8853.610723505768, 2315.6994185775657], [-8883.110723509446, 2315.449418578197], [-8901.960723505908, 2315.199418578828], [-8928.710723509426, 2313.3494185785253], [-8960.260723505087, 2312.349418577497], [-8990.110723509304, 2311.7994185781754], [-9021.360723508566, 2312.349418577497], [-9057.010723509506, 2312.049418577544], [-9127.31072350681, 2313.0994185791565], [-9226.460723510854, 2312.349418577497], [-9239.110723505917, 2312.349418577497]]}, {"length": 50.0827855067, "source": 3758384268, "destination": 2282973723, "path": [[-8646.860723509064, 2314.2494185783844], [-8646.410723507359, 2223.549418577164], [-8646.06072350682, 2089.0494185792363]]}, {"length": 47.3822817183, "source": 3758384268, "destination": 2282973358, "path": [[-8646.860723509064, 2314.2494185783844], [-8647.110723508433, 2369.1994185774947], [-8648.060723508877, 2498.1994185786507], [-8648.460723506447, 2527.299418577655]]}, {"length": 15.2864682812, "source": 3758384268, "destination": 2282973551, "path": [[-8646.860723509064, 2314.2494185783844], [-8628.610723505404, 2314.399418576585], [-8556.060723506675, 2315.299418576444]]}, {"length": 4.49316472326, "source": 2284151949, "destination": 2284151928, "path": [[-7211.710723510123, 4191.799418578057], [-7211.910723505354, 4211.999418576084]]}, {"length": 122.589789645, "source": 3758384275, "destination": 2282822761, "path": [[-9201.260723507687, -182.7505814233632], [-9208.41072350953, -213.05058142218058], [-9207.660723511424, -345.85058142155845], [-9206.560723505674, -528.7505814237647], [-9205.810723507568, -686.4505814228039], [-9205.46072350703, -709.2005814222091], [-9211.910723507799, -733.0005814232265]]}, {"length": 113.381347717, "source": 3758384275, "destination": 2282033859, "path": [[-9201.260723507687, -182.7505814233632], [-9196.310723510236, -161.8005814236767], [-9196.660723510775, -143.75058142235275], [-9221.960723508004, -143.20058142303083], [-9222.310723508543, -100.00058142267676], [-9222.66072350908, 41.649418577094366], [-9223.410723507186, 168.0494185762882], [-9223.760723507723, 214.89941857666395], [-9223.760723507723, 270.8994185773861], [-9223.410723507186, 295.7994185770474], [-9220.210723505317, 307.8994185763406]]}, {"length": 109.377072036, "source": 3758384275, "destination": 135065293, "path": [[-9201.260723507687, -182.7505814233632], [-8551.410723505625, -181.60058142058233]]}, {"length": 12.6153437108, "source": 3758384275, "destination": 135045975, "path": [[-9201.260723507687, -182.7505814233632], [-9276.21072350604, -182.9005814215634]]}, {"length": 10.8969170077, "source": 3758384277, "destination": 3009796696, "path": [[1773.7392764942683, -4518.450581421974], [1838.4892764942151, -4518.600581423726]]}, {"length": 165.916173091, "source": 3758384277, "destination": 3758384282, "path": [[1773.7392764942683, -4518.450581421974], [1776.339276489125, -4949.15058142098], [1778.6392764946868, -5264.500581422027]]}, {"length": 9.10687647315, "source": 3758384277, "destination": 2587025004, "path": [[1773.7392764942683, -4518.450581421974], [1773.4892764948995, -4477.500581423044]]}, {"length": 6.94198104299, "source": 3758384277, "destination": 3009796695, "path": [[1773.7392764942683, -4518.450581421974], [1732.4892764918332, -4518.350581420805]]}, {"length": 16.9347355428, "source": 3758384279, "destination": 3758384281, "path": [[2702.7892764905914, -4641.350581422898], [2781.43927648955, -4688.850581423765]]}, {"length": 14.9961926917, "source": 3758384279, "destination": 2080585189, "path": [[2702.7892764905914, -4641.350581422898], [2759.4392764882514, -4589.300581422151]]}, {"length": 18.7085423155, "source": 3758384279, "destination": 3009796703, "path": [[2702.7892764905914, -4641.350581422898], [2643.839276494475, -4605.750581422541], [2648.389276494356, -4598.200581423129], [2651.489276495056, -4589.200581420982], [2650.6392764886755, -4579.750581420683]]}, {"length": 89.6693126079, "source": 3758384281, "destination": 3009796720, "path": [[2781.43927648955, -4688.850581423765], [2823.6892764894606, -4714.350581423332], [2855.139276491059, -4712.400581421861], [2870.1892764928516, -4714.800581421486], [2880.9892764911638, -4720.15058142361], [3041.2392764915808, -4841.650581422386], [3067.039276494654, -4868.250581420597], [3078.1392764893667, -4882.650581421899], [3092.289276494853, -4903.900581421539], [3102.23927649389, -4928.600581422415], [3105.3392764945897, -4944.2505814205615], [3103.93927649244, -4956.700581423946], [3101.6892764910153, -4964.400581421558], [3096.539276491228, -4973.450581420735]]}, {"length": 398.560226939, "source": 3758384281, "destination": 2573122567, "path": [[2781.43927648955, -4688.850581423765], [2509.3392764929945, -4933.400581421665], [2327.6392764941534, -5110.750581422963], [2163.889276488362, -5296.600581420563], [2058.3392764947916, -5428.650581421834], [1961.189276492803, -5567.550581421443], [1891.0892764907317, -5684.950581422044], [1833.6392764908283, -5781.400581422958], [1758.5392764942753, -5913.200581421307], [1636.1892764891195, -6126.200581423546], [1582.039276492253, -6220.5005814206515]]}, {"length": 16.9347355428, "source": 3758384281, "destination": 3758384279, "path": [[2781.43927648955, -4688.850581423765], [2702.7892764905914, -4641.350581422898]]}, {"length": 176.81599133, "source": 3758384282, "destination": 3009796696, "path": [[1778.6392764946868, -5264.500581422027], [1844.4392764891404, -5263.850581421537], [1844.7392764926462, -5122.40058142055], [1843.0392764940962, -5035.050581422951], [1841.3392764884406, -4719.950581421273], [1838.4892764942151, -4518.600581423726]]}, {"length": 165.916173091, "source": 3758384282, "destination": 3758384277, "path": [[1778.6392764946868, -5264.500581422027], [1776.339276489125, -4949.15058142098], [1773.7392764942683, -4518.450581421974]]}, {"length": 29.7719043843, "source": 3758384282, "destination": 1932195990, "path": [[1778.6392764946868, -5264.500581422027], [1779.189276490456, -5343.850581422061], [1776.9892764931683, -5356.250581421307], [1769.839276491325, -5366.800581423803], [1757.489276492663, -5374.000581422678], [1743.1892764889767, -5378.800581421928], [1734.6892764891209, -5380.100581422908]]}, {"length": 7.75861234398, "source": 3758384282, "destination": 3009796733, "path": [[1778.6392764946868, -5264.500581422027], [1732.5392764888647, -5264.950581423733]]}, {"length": 11.6356672176, "source": 2290110664, "destination": 2290110648, "path": [[-8054.110723506369, 6363.549418576753], [-8054.4107235098745, 6394.049418577907], [-8075.4607235107305, 6408.949418577948]]}, {"length": 2.39041310051, "source": 2290110664, "destination": 2290110665, "path": [[-8054.110723506369, 6363.549418576753], [-8068.310723508886, 6363.549418576753]]}, {"length": 23.0606994676, "source": 2290110664, "destination": 2290110714, "path": [[-8054.110723506369, 6363.549418576753], [-8053.960723508169, 6350.899418578138], [-8053.760723505831, 6342.049418577744], [-8052.210723505482, 6334.899418579454], [-8049.810723505857, 6325.099418578617], [-8048.910723509551, 6320.249418578783], [-8049.110723504782, 6315.249418577196], [-8050.010723508194, 6310.749418577899], [-8053.110723508894, 6303.749418577809], [-8063.410723508468, 6283.749418578565], [-8063.010723510899, 6262.0994185778045]]}, {"length": 23.3073298412, "source": 3688816211, "destination": 3688816206, "path": [[638.7892764934122, -11477.000581422202], [626.0892764942128, -11451.95058142079], [529.0892764904243, -11425.600581421946]]}, {"length": 135.833733061, "source": 2267910080, "destination": 2267910129, "path": [[-11185.310723504927, -8035.050581423065], [-11220.210723507762, -8035.050581423065], [-11273.860723505892, -8035.050581423065], [-11572.910723508301, -7970.10058142078], [-11963.410723510038, -7881.850581423322]]}, {"length": 20.6859056442, "source": 2267910080, "destination": 2267910091, "path": [[-11185.310723504927, -8035.050581423065], [-11090.110723507962, -7976.2005814210115]]}, {"length": 42.7300273857, "source": 2267910080, "destination": 2267910091, "path": [[-11185.310723504927, -8035.050581423065], [-11192.110723506232, -8012.800581422397], [-11204.110723511461, -7997.500581421235], [-11216.860723507692, -7979.200581420542], [-11212.910723507719, -7971.200581422977], [-11202.760723506344, -7959.450581420669], [-11184.660723507988, -7947.750581422497], [-11161.260723511645, -7941.2505814211445], [-11139.11072350504, -7941.2505814211445], [-11121.010723506686, -7945.85058142161], [-11106.860723508305, -7950.800581422613], [-11090.110723507962, -7976.2005814210115]]}, {"length": 25.329859069, "source": 2267910080, "destination": 1428269604, "path": [[-11185.310723504927, -8035.050581423065], [-11143.760723506091, -8045.200581420886], [-11047.610723508682, -8080.500581421291]]}, {"length": 2.39041310051, "source": 2290110665, "destination": 2290110664, "path": [[-8068.310723508886, 6363.549418576753], [-8054.110723506369, 6363.549418576753]]}, {"length": 203.484400913, "source": 1429423290, "destination": 2573122545, "path": [[2061.889276490092, -6259.550581422246], [2032.4392764905497, -6323.900581421071], [1977.63927648964, -6405.050581420824], [1948.6392764918037, -6438.40058142331], [1913.7892764931053, -6471.300581420536], [1884.6892764941003, -6492.900581420713], [1783.1392764904308, -6568.300581420772], [1757.3892764914945, -6590.550581421439], [1743.9892764912202, -6602.1505814219945], [1739.6392764936763, -6606.350581421339], [1723.389276492071, -6621.950581422453], [1709.0892764883847, -6635.750581423849], [1694.2892764930662, -6662.700581422598], [1680.7392764945916, -6710.750581422786], [1664.4892764929864, -6835.350581422262], [1644.2892764914063, -6887.600581421793], [1615.0392764942012, -6935.300581421444], [1518.689276494456, -7051.200581422279]]}, {"length": 17.908607426, "source": 1429423290, "destination": 1962156892, "path": [[2061.889276490092, -6259.550581422246], [2150.1892764916875, -6304.500581421735]]}, {"length": 15.5942826017, "source": 1429423290, "destination": 1279884630, "path": [[2061.889276490092, -6259.550581422246], [2075.139276492166, -6190.15058142125]]}, {"length": 86.6433410221, "source": 4719854784, "destination": 134975773, "path": [[213.43927649297711, -3759.0005814216456], [214.33927648928375, -4148.600581423523]]}, {"length": 13.666086523, "source": 4719854784, "destination": 4719854989, "path": [[213.43927649297711, -3759.0005814216456], [213.2892764947769, -3697.550581421183]]}, {"length": 98.2921060864, "source": 4719854784, "destination": 4719854989, "path": [[213.43927649297711, -3759.0005814216456], [-34.310723506791874, -3760.650581423164], [-47.96072350643499, -3749.2005814208087], [-47.96072350643499, -3713.850581423372], [-22.810723507404873, -3697.550581421183], [213.2892764947769, -3697.550581421183]]}, {"length": 60.6465046732, "source": 135099936, "destination": 2086776819, "path": [[264.5392764932808, 395.89941857798294], [266.28927648886247, 123.19941857796834]]}, {"length": 121.336547695, "source": 135099936, "destination": 135025165, "path": [[264.5392764932808, 395.89941857798294], [124.83927649498128, 393.89941857947974], [-456.3107235071584, 390.39941857765825]]}, {"length": 38.6514312488, "source": 1429423302, "destination": 1962156896, "path": [[2578.439276490485, -6314.950581423062], [2577.839276490579, -6488.750581421954]]}, {"length": 47.7223933398, "source": 1429423302, "destination": 1429423360, "path": [[2578.439276490485, -6314.950581423062], [2533.689276489781, -6315.4505814218], [2476.3392764910463, -6320.600581421587], [2454.689276490285, -6326.600581420649], [2331.6392764911598, -6389.250581420924], [2326.0392764896665, -6395.250581423539]]}, {"length": 344.703531882, "source": 1429423302, "destination": 1429423084, "path": [[2578.439276490485, -6314.950581423062], [2579.4392764950658, -5492.1005814208], [2585.0392764894536, -5419.100581423919], [2596.1392764912716, -5376.75058142284], [2607.839276492996, -5344.60058142372], [2623.9892764934325, -5312.100581420509], [2644.039276489707, -5280.200581420758], [2682.0892764902737, -5233.050581423981], [2740.1392764900834, -5174.250581422512], [2786.539276492306, -5136.650581423652], [2824.8392764922414, -5111.150581420532], [2860.4892764931833, -5094.2505814219885], [2898.489276489613, -5077.8005814215985], [2942.0392764905046, -5062.450581423405], [2986.289276492471, -5050.050581420606], [3052.7392764909678, -5037.100581422038], [3115.1392764883212, -5029.10058142092], [3183.439276490674, -5024.100581422886]]}, {"length": 77.1472331503, "source": 4615885005, "destination": 4615885006, "path": [[251.83927649408133, -3174.3505814212367], [259.63927649286234, -2827.50058142156]]}, {"length": 72.6652285567, "source": 1959915242, "destination": 134955049, "path": [[-5203.660723509529, -3999.650581423708], [-5128.560723505871, -3973.00058142136], [-5075.560723511785, -3947.600581422961], [-5052.760723508243, -3935.2005814237145], [-5036.0107235078995, -3922.000581422225], [-5004.160723508732, -3889.500581422567], [-4965.260723508891, -3841.050581421257], [-4955.210723508685, -3834.7005814216573], [-4945.410723507848, -3829.7005814236227], [-4935.110723508274, -3826.350581423554], [-4924.710723507531, -3824.300581420914], [-4912.210723510669, -3823.850581422761], [-4900.160723508407, -3825.6505814224793], [-4871.060723509401, -3838.6005814210475]]}, {"length": 19.6995024819, "source": 1959915242, "destination": 1959915348, "path": [[-5203.660723509529, -3999.650581423708], [-5164.210723506812, -3916.2505814225315]]}, {"length": 358.136613258, "source": 1959915242, "destination": 1667926869, "path": [[-5203.660723509529, -3999.650581423708], [-5140.660723505163, -3928.850581420562], [-4855.76072350824, -3535.800581421], [-4378.710723507595, -2880.900581423873], [-4196.360723511816, -2631.3005814238013], [-4168.360723511455, -2593.0505814208973]]}, {"length": 46.202379259, "source": 1959915242, "destination": 1959915350, "path": [[-5203.660723509529, -3999.650581423708], [-5236.010723507434, -4047.900581422681], [-5421.610723509219, -3985.6005814229434]]}, {"length": 54.7544579659, "source": 2069120213, "destination": 2069120282, "path": [[4001.189276493733, 3399.94941857924], [4326.43927648968, 3403.449418577509]]}, {"length": 146.467512284, "source": 2069120213, "destination": 2069120291, "path": [[4001.189276493733, 3399.94941857924], [4002.3892764935454, 3703.549418577978], [4004.7392764890333, 4058.549418576973]]}, {"length": 50.9607881501, "source": 2069120213, "destination": 134959967, "path": [[4001.189276493733, 3399.94941857924], [4001.0392764884273, 3170.799418576564]]}, {"length": 271.864505792, "source": 3085526232, "destination": 2080507888, "path": [[-256.4107235087931, -9416.000581421002], [-52.560723510453045, -9540.8505814234], [113.48927649379448, -9633.40058142137], [250.68927649130046, -9676.30058142177], [419.73927649507914, -9718.40058142348], [486.3392764917762, -9730.45058142219], [535.0892764894866, -9735.700581423145], [568.8892764936782, -9731.20058142385], [589.7892764892276, -9720.650581421352], [607.6392764882144, -9707.150581423462], [611.6392764923262, -9686.800581423682], [607.6392764882144, -9650.700581421035], [587.7892764942771, -9619.100581421237], [567.8892764890975, -9589.750581422863], [547.9892764910232, -9567.9505814239], [522.1392764909183, -9566.450581420582], [521.139276493443, -9590.350581422768], [517.9892764886063, -9601.500581421618], [505.68927649408124, -9615.90058142292], [489.13927648897015, -9630.25058142364], [475.43927649229545, -9638.500581420572], [459.98927649293364, -9647.000581423981], [436.439276491285, -9652.0505814226], [417.4392764895174, -9653.10058142066], [394.2392764884062, -9651.800581423231], [370.68927649386296, -9645.150581423679], [352.0392764926328, -9636.900581423191], [332.38927649392735, -9623.600581420533], [323.23927649002826, -9616.700581421612], [316.1892764893537, -9607.100581423112], [310.5892764949658, -9597.000581422322], [296.48927649361667, -9583.950581422585], [282.78927648983654, -9577.050581423662], [272.93927649196803, -9573.350581423058], [244.38927648873232, -9566.700581423504]]}, {"length": 47.2606850541, "source": 3085526232, "destination": 3085530033, "path": [[-256.4107235087931, -9416.000581421002], [-0.8107235061061147, -9504.100581423812]]}, {"length": 1328.09310929, "source": 3085526232, "destination": 1428268064, "path": [[-256.4107235087931, -9416.000581421002], [-910.7107235095668, -9160.95058142119], [-1206.0107235072337, -9043.55058142059], [-1374.0607235064317, -8987.150581422298], [-1710.1607235048277, -8807.350581420793], [-1934.8607235087911, -8725.350581421764], [-2223.210723506952, -8663.650581421933], [-2638.860723507719, -8590.6505814215], [-2721.3607235054837, -8556.80058142383], [-2809.8607235094164, -8519.200581421415], [-2895.4107235108495, -8443.950581423109], [-3221.5107235060714, -8149.050581423012], [-3500.9607235068074, -7941.350581422313], [-4173.110723506568, -7474.1505814230895], [-4555.910723510692, -7228.900581420561], [-5026.2607235112, -7019.700581423649], [-5323.560723510923, -6777.450581420652], [-5545.310723505281, -6505.850581422834], [-6023.560723505739, -6181.550581423779], [-6455.910723509816, -6008.0005814207025], [-6519.910723511657, -5978.55058142116]]}, {"length": 117.505621555, "source": 2069120219, "destination": 135018870, "path": [[6101.639276494097, 4569.549418576457], [6016.839276490771, 4504.399418578942], [5949.589276490031, 4453.449418576838], [5926.13927648955, 4437.249418579369], [5899.789276490708, 4420.649418577227], [5874.339276488172, 4406.799418578799], [5851.389276493535, 4395.549418578781], [5818.389276491587, 4381.79941857797], [5781.589276494969, 4368.899418576433], [5749.389276495265, 4359.799418576671], [5715.039276488198, 4351.99941857789], [5682.9892764937995, 4346.099418576443], [5642.689276491808, 4341.699418578315], [5610.489276492103, 4340.049418576797], [5507.589276490421, 4338.3494185782465]]}, {"length": 10.7214765571, "source": 2069120219, "destination": 4224950750, "path": [[6101.639276494097, 4569.549418576457], [6062.58927648895, 4585.6994185768945], [6044.339276492394, 4590.1994185761905]]}, {"length": 10.5962572813, "source": 2069120219, "destination": 2069120358, "path": [[6101.639276494097, 4569.549418576457], [6146.139276488328, 4603.24941857948]]}, {"length": 14.8730830312, "source": 2285539537, "destination": 2285539536, "path": [[-6520.060723509858, 5867.899418579014], [-6431.710723511231, 5868.149418578383]]}, {"length": 6.38259883678, "source": 2285539537, "destination": 2285539560, "path": [[-6520.060723509858, 5867.899418579014], [-6519.56072351112, 5839.199418577578]]}, {"length": 95.1245237027, "source": 2285539537, "destination": 2285539540, "path": [[-6520.060723509858, 5867.899418579014], [-6650.360723504889, 5867.549418578477], [-6936.810723509268, 5865.399418578221], [-7085.110723508592, 5866.199418576912]]}, {"length": 14.1456979511, "source": 2285539537, "destination": 2285539516, "path": [[-6520.060723509858, 5867.899418579014], [-6521.160723508501, 5931.499418576181]]}, {"length": 193.950083563, "source": 1930503404, "destination": 1930503170, "path": [[9654.68927649482, -8532.250581421153], [9652.789276493933, -8515.90058142193], [9648.439276489284, -8503.350581420931], [9637.789276489173, -8477.700581423163], [9630.289276493897, -8456.80058142051], [9625.13927649411, -8438.900581420938], [9621.189276494135, -8412.900581422633], [9620.439276488923, -8377.400581423444], [9620.039276491354, -8298.250581422195], [9619.239276489112, -8260.350581423381], [9618.839276491542, -8232.550581421805], [9620.839276493598, -8216.750581421906], [9623.98927649133, -8202.70058142114], [9625.53927649168, -8190.200581420726], [9626.339276493924, -8178.850581423092], [9625.53927649168, -8166.900581421998], [9623.58927649376, -8152.250581421327], [9620.839276493598, -8135.250581421616], [9618.839276491542, -8118.20058142132], [9617.289276491192, -8097.900581422124], [9616.489276488948, -8064.80058142256], [9616.889276493623, -8027.150581423115], [9616.08927649138, -7995.500581422732], [9615.289276489137, -7971.350581421177], [9616.489276488948, -7946.850581422637], [9618.439276493973, -7924.45058142377], [9626.339276493924, -7872.800581420592], [9632.239276491817, -7839.3505814240425], [9638.189276493848, -7805.600581423988], [9639.739276494198, -7782.05058142234], [9640.139276491765, -7745.6005814227065], [9641.339276491579, -7705.0005814207625], [9642.53927649139, -7678.150581423182], [9642.53927649139, -7664.950581421692]]}, {"length": 8.38579836623, "source": 1930503404, "destination": 1930503446, "path": [[9654.68927649482, -8532.250581421153], [9655.939276491665, -8537.100581420986], [9657.139276491478, -8550.250581421893], [9659.289276491734, -8569.750581422397]]}, {"length": 78.031535508, "source": 1930503404, "destination": 1930367775, "path": [[9654.68927649482, -8532.250581421153], [9633.839276489198, -8534.350581420824], [9615.439276494442, -8538.150581422598], [9599.539276493375, -8544.050581424046], [9579.739276489363, -8555.25058142348], [9566.589276488457, -8563.05058142226], [9551.839276490171, -8569.40058142186], [9540.089276491415, -8572.75058142193], [9529.239276488966, -8573.80058142354], [9517.23927649084, -8572.75058142193], [9503.539276494166, -8570.200581420551], [9480.389276490087, -8567.500581420973], [9445.239276494987, -8567.900581422095], [9386.639276492304, -8568.550581422585], [9335.289276492631, -8568.300581423216], [9308.789276488482, -8567.500581420973], [9278.389276488497, -8563.900581421534], [9240.139276492699, -8559.050581421701], [9207.239276491919, -8555.650581421049]]}, {"length": 17.0704361067, "source": 1930503408, "destination": 1930367808, "path": [[9101.689276491243, -8544.300581423415], [9103.139276490423, -8621.050581421485]]}, {"length": 5.58751242825, "source": 1930503408, "destination": 1930367771, "path": [[9101.689276491243, -8544.300581423415], [9108.989276491286, -8545.95058142138], [9134.289276488516, -8548.900581423879]]}, {"length": 21.683948119, "source": 1930503408, "destination": 1930367639, "path": [[9101.689276491243, -8544.300581423415], [9101.539276493042, -8475.900581423446], [9101.289276493673, -8446.800581420888]]}, {"length": 301.980702503, "source": 1930503408, "destination": 1930367695, "path": [[9101.689276491243, -8544.300581423415], [9083.039276490013, -8540.050581423486], [9040.089276489027, -8526.10058142389], [9014.989276494134, -8519.750581420738], [8994.039276494448, -8517.650581421065], [8970.339276494598, -8517.650581421065], [8926.239276490833, -8519.350581423168], [8897.539276489397, -8520.200581422443], [8872.939276493242, -8519.350581423168], [8846.989276491968, -8515.550581421394], [8825.539276493544, -8509.00058142301], [8798.43927648949, -8497.800581423577], [8772.789276491721, -8484.300581422132], [8744.589276489023, -8469.300581420925], [8723.1392764906, -8460.650581422868], [8698.589276491475, -8455.600581420696], [8676.23927648964, -8454.550581422638], [8653.089276492665, -8455.800581423035], [8626.839276494991, -8460.650581422868], [8600.339276490842, -8467.600581422374], [8579.139276491787, -8476.500581423352], [8565.489276492144, -8484.950581422623], [8543.989276489583, -8499.300581423342], [8523.889276489172, -8510.500581422775], [8500.489276492828, -8519.550581421952], [8480.389276492417, -8526.10058142389], [8458.589276493456, -8530.950581423724], [8437.139276495032, -8533.700581423887], [8417.33927649102, -8534.350581420824], [8398.889276492127, -8532.650581422275], [8373.78927649013, -8527.600581423656], [8339.489276494305, -8517.450581422281], [8300.389276492126, -8506.05058142051], [8259.08927649266, -8494.850581421077], [8228.1392764898, -8489.150581421967], [8201.639276492755, -8486.60058142059], [8171.489276492139, -8486.400581421805], [8146.38927649014, -8488.300581422693], [8117.639276491673, -8491.90058142213], [8081.389276490825, -8498.00058142236], [8043.439276491426, -8505.600581422357], [8001.039276493316, -8511.950581421956], [7956.63927649315, -8517.000581420576], [7880.189276491478, -8526.750581420827], [7811.439276494525, -8532.850581421058], [7674.689276491619, -8540.90058142276], [7612.189276493098, -8544.700581420982], [7588.489276493248, -8545.750581422595], [7564.189276493494, -8545.750581422595], [7534.089276489908, -8544.25058142283], [7508.389276495109, -8541.95058142082], [7484.139276492386, -8537.500581422108], [7460.139276489031, -8530.100581420897], [7431.939276493438, -8518.700581422678], [7405.18927648992, -8507.500581423245], [7390.589276489834, -8502.200581421705]]}, {"length": 50.684852704, "source": 1937679912, "destination": 135057528, "path": [[5543.239276491363, -5009.850581423336], [5844.389276489892, -5006.500581423268]]}, {"length": 202.949790778, "source": 1937679912, "destination": 1937679931, "path": [[5543.239276491363, -5009.850581423336], [5546.389276489094, -5639.30058142148], [5547.739276494212, -5694.10058142239], [5547.739276494212, -5733.900581422091], [5548.6392764905195, -5804.350581421148], [5550.439276490238, -5869.700581421001], [5551.089276494281, -5922.400581422238]]}, {"length": 49.8937857643, "source": 1937679912, "destination": 135057526, "path": [[5543.239276491363, -5009.850581423336], [5246.789276490916, -5013.15058142282]]}, {"length": 10.9451948551, "source": 1930503416, "destination": 1930503420, "path": [[9854.939276493724, -8568.800581421954], [9789.88927649027, -8569.100581421906]]}, {"length": 34.6638180673, "source": 1930503416, "destination": 2087861294, "path": [[9854.939276493724, -8568.800581421954], [9900.739276488934, -8568.550581422585], [10037.639276490041, -8568.850581422537], [10060.93927649232, -8569.300581420692]]}, {"length": 9.27699404875, "source": 1930503416, "destination": 1930503470, "path": [[9854.939276493724, -8568.800581421954], [9847.63927649368, -8610.150581422005]]}, {"length": 59.9471212247, "source": 2069120250, "destination": 2069120409, "path": [[3166.489276495099, 4579.29941857671], [2810.389276490355, 4576.549418576547]]}, {"length": 61.180564497, "source": 2069120250, "destination": 134954306, "path": [[3166.489276495099, 4579.29941857671], [3164.4892764930432, 4854.3994185763495]]}, {"length": 60.1352830952, "source": 2069120250, "destination": 134997404, "path": [[3166.489276495099, 4579.29941857671], [3168.4892764900496, 4308.899418578704]]}, {"length": 137.829443043, "source": 2069120250, "destination": 2069120402, "path": [[3166.489276495099, 4579.29941857671], [3985.239276488528, 4584.699418579419]]}, {"length": 10.9451948551, "source": 1930503420, "destination": 1930503416, "path": [[9789.88927649027, -8569.100581421906], [9854.939276493724, -8568.800581421954]]}, {"length": 12.1071525385, "source": 1930503420, "destination": 1930503424, "path": [[9789.88927649027, -8569.100581421906], [9717.93927649145, -8569.450581422445]]}, {"length": 9.22926705794, "source": 1930503420, "destination": 134979238, "path": [[9789.88927649027, -8569.100581421906], [9790.13927648964, -8610.60058142371]]}, {"length": 201.751241697, "source": 1930503424, "destination": 1930503169, "path": [[9717.93927649145, -8569.450581422445], [9717.439276492712, -8456.500581420556], [9716.3892764911, -8364.250581422539], [9715.889276492362, -8106.550581423733], [9712.139276494725, -7938.8005814209355], [9705.589276492788, -7801.450581421676], [9701.439276490475, -7735.450581421333], [9697.839276491039, -7692.600581421516], [9695.389276494381, -7662.600581422652]]}, {"length": 12.1071525385, "source": 1930503424, "destination": 1930503420, "path": [[9717.93927649145, -8569.450581422445], [9789.88927649027, -8569.100581421906]]}, {"length": 9.86917629796, "source": 1930503424, "destination": 1930503446, "path": [[9717.93927649145, -8569.450581422445], [9659.289276491734, -8569.750581422397]]}, {"length": 7.08271770176, "source": 1429423361, "destination": 1429423360, "path": [[2304.5892764912423, -6422.6505814239945], [2326.0392764896665, -6395.250581423539]]}, {"length": 56.6140028704, "source": 1429423361, "destination": 135039812, "path": [[2304.5892764912423, -6422.6505814239945], [2578.8392764951595, -6570.100581424043]]}, {"length": 37.4536544143, "source": 1429423361, "destination": 2271725719, "path": [[2304.5892764912423, -6422.6505814239945], [2176.6892764887302, -6353.850581422904], [2146.58927649225, -6366.650581423272], [2129.3392764931696, -6386.250581421393]]}, {"length": 42.4914223447, "source": 1428268292, "destination": 1959922645, "path": [[-8115.560723510384, -6846.100581423542], [-8016.860723508045, -6962.700581421899], [-7981.3107235082725, -7007.900581420756]]}, {"length": 398.589137234, "source": 1428268292, "destination": 1428269734, "path": [[-8115.560723510384, -6846.100581423542], [-8797.76072351035, -7195.9005814221655], [-8851.210723506141, -7234.600581423223], [-8953.460723510887, -7293.950581424014], [-9062.7607235092, -7355.10058142097], [-9181.610723508982, -7422.100581422342], [-9241.060723510942, -7470.650581421268], [-9282.660723506808, -7524.600581422902], [-9308.210723510512, -7575.850581421406], [-9324.26072350978, -7632.950581420772], [-9322.460723510063, -8191.400581420538]]}, {"length": 162.280188148, "source": 1428268292, "destination": 1428268159, "path": [[-8115.560723510384, -6846.100581423542], [-7538.610723507589, -6548.05058142216], [-7498.760723507303, -6527.550581420627], [-7472.910723507198, -6527.550581420627], [-7435.460723506538, -6532.400581424014], [-7397.4607235101075, -6526.900581423689], [-7366.410723506078, -6529.8505814226355], [-7321.060723505469, -6538.150581423707], [-7286.760723509644, -6527.450581423011]]}, {"length": 89.4251587516, "source": 134971606, "destination": 2293202896, "path": [[-11656.410723510646, 394.9994185781236], [-11384.110723511752, 395.3994185792453], [-11175.560723508226, 396.09941857676745], [-11125.11072350486, 395.69941857919844]]}, {"length": 12.4329175842, "source": 134971606, "destination": 134971372, "path": [[-11656.410723510646, 394.9994185781236], [-11657.510723509291, 339.09941857857007]]}, {"length": 59.6953492857, "source": 135079176, "destination": 135039812, "path": [[2544.7392764945675, -6835.000581421724], [2568.5392764884796, -6781.500581421796], [2578.689276489854, -6730.750581422029], [2578.7892764910225, -6613.800581423135], [2578.8392764951595, -6570.100581424043]]}, {"length": 43.7002138083, "source": 3380364844, "destination": 2585900432, "path": [[-2274.0107235108553, -1644.650581422269], [-2014.3607235070249, -1645.3505814233438]]}, {"length": 20.852973391, "source": 3380364844, "destination": 2585900437, "path": [[-2274.0107235108553, -1644.650581422269], [-2397.9107235092556, -1644.3005814217315]]}, {"length": 15.0777073692, "source": 3380364844, "destination": 3380364845, "path": [[-2274.0107235108553, -1644.650581422269], [-2332.8107235087714, -1593.500581421381]]}, {"length": 306.52981276, "source": 1429423374, "destination": 135097216, "path": [[1227.5892764890273, -6920.150581422035], [1289.1892764912427, -6824.0005814210745], [1422.3892764917423, -6686.250581420694], [1435.5892764896794, -6649.150581420571], [1419.8892764909488, -6608.250581422226], [1387.1892764925065, -6585.4005814216525], [1197.9392764942531, -6502.150581422228], [1055.8392764892233, -6387.50058142179], [983.5392764898643, -6351.850581420848], [901.8392764943428, -6332.800581422049], [261.389276488444, -6331.350581422867], [203.83927649447742, -6353.100581421245]]}, {"length": 57.0553906901, "source": 1429423374, "destination": 2573122545, "path": [[1227.5892764890273, -6920.150581422035], [1267.5392764904814, -6933.7505814210945], [1488.3392764915016, -7036.600581422192], [1518.689276494456, -7051.200581422279]]}, {"length": 292.689037207, "source": 1429423374, "destination": 2080507908, "path": [[1227.5892764890273, -6920.150581422035], [895.2892764924059, -7449.80058142275], [807.8892764942225, -7643.050581421562], [744.989276491026, -7784.300581423764], [712.5892764889841, -7864.550581423657], [699.2392764928468, -7953.700581420975], [689.9892764948845, -7986.300581421801], [652.1892764936865, -8046.250581422499], [612.8892764891702, -8089.05058142173], [556.8892764884481, -8117.400581422629]]}, {"length": 15.0896576821, "source": 2316883501, "destination": 2316883479, "path": [[-2774.4107235108117, 6015.249418577895], [-2773.860723507937, 6083.099418578541]]}, {"length": 12.8783684029, "source": 2316883501, "destination": 2316883499, "path": [[-2774.4107235108117, 6015.249418577895], [-2697.9107235050037, 6015.549418577848]]}, {"length": 95.6772787582, "source": 2316883501, "destination": 2316883507, "path": [[-2774.4107235108117, 6015.249418577895], [-2820.6607235077286, 6016.699418577076], [-3342.7107235084463, 6014.449418579205]]}, {"length": 15.4243054673, "source": 2316883501, "destination": 2316883513, "path": [[-2774.4107235108117, 6015.249418577895], [-2775.660723507656, 5945.899418577483]]}, {"length": 55.2884590813, "source": 2069120273, "destination": 2069120282, "path": [[4654.8892764946, 3404.799418579074], [4326.43927648968, 3403.449418577509]]}, {"length": 51.2726924374, "source": 2069120273, "destination": 134959972, "path": [[4654.8892764946, 3404.799418579074], [4656.339276493782, 3174.2494185778014]]}, {"length": 142.898450956, "source": 2069120273, "destination": 2069120455, "path": [[4654.8892764946, 3404.799418579074], [4650.78927648932, 4047.3494185775394]]}, {"length": 148.304573798, "source": 1428268307, "destination": 1428269050, "path": [[-6914.6107235056315, -6868.050581420704], [-6721.5107235085725, -7029.150581423948], [-6675.310723508687, -7070.850581420984], [-6642.960723510782, -7110.050581420779], [-6617.760723507616, -7149.250581420574], [-6586.410723507186, -7215.800581423792], [-6531.2607235057385, -7330.550581421847], [-6516.510723507452, -7351.800581421486], [-6504.1607235087895, -7363.300581420873], [-6482.760723507397, -7379.150581421356], [-6461.310723508973, -7397.400581421465], [-6437.310723505618, -7416.700581423185]]}, {"length": 100.185225241, "source": 1428268307, "destination": 1428268159, "path": [[-6914.6107235056315, -6868.050581420704], [-6965.860723511241, -6850.050581423517], [-7012.660723511033, -6826.450581421284], [-7052.060723509612, -6796.100581421882], [-7096.610723507979, -6754.500581422462], [-7147.860723506483, -6703.350581421574], [-7286.760723509644, -6527.450581423011]]}, {"length": 9.86917629796, "source": 1930503446, "destination": 1930503424, "path": [[9659.289276491734, -8569.750581422397], [9717.93927649145, -8569.450581422445]]}, {"length": 10.7634062266, "source": 1930503446, "destination": 1999574946, "path": [[9659.289276491734, -8569.750581422397], [9659.88927649164, -8575.050581423937], [9656.739276493909, -8618.050581421954]]}, {"length": 8.38579836623, "source": 1930503446, "destination": 1930503404, "path": [[9659.289276491734, -8569.750581422397], [9657.139276491478, -8550.250581421893], [9655.939276491665, -8537.100581420986], [9654.68927649482, -8532.250581421153]]}, {"length": 55.2884590813, "source": 2069120282, "destination": 2069120273, "path": [[4326.43927648968, 3403.449418577509], [4654.8892764946, 3404.799418579074]]}, {"length": 54.7544579659, "source": 2069120282, "destination": 2069120213, "path": [[4326.43927648968, 3403.449418577509], [4001.189276493733, 3399.94941857924]]}, {"length": 142.95255556, "source": 2069120282, "destination": 2069120441, "path": [[4326.43927648968, 3403.449418577509], [4325.189276492836, 4046.2494185788955]]}, {"length": 61.7696351032, "source": 2069407003, "destination": 134982666, "path": [[243.3392764942255, 4022.0994185773407], [245.08927648980716, 3744.3494185787076]]}, {"length": 60.8467246798, "source": 2069407003, "destination": 134982669, "path": [[243.3392764942255, 4022.0994185773407], [241.58927649153839, 4295.699418577215]]}, {"length": 122.495479004, "source": 2069407003, "destination": 2069036774, "path": [[243.3392764942255, 4022.0994185773407], [-484.3607235116565, 4020.9494185781123]]}, {"length": 126.060243488, "source": 134939936, "destination": 134943234, "path": [[-3727.2607235081523, -8658.600581423314], [-3587.710723508053, -8762.35058142072], [-3309.6607235094666, -8955.600581423085], [-3251.6607235066886, -8992.600581422039], [-3195.6607235059664, -9030.60058142202], [-3177.6607235087795, -9043.600581421175]]}, {"length": 768.121456702, "source": 134939936, "destination": 1428268115, "path": [[-3727.2607235081523, -8658.600581423314], [-4011.810723511644, -8418.70058142291], [-4310.960723508117, -8191.750581421075], [-4634.610723506683, -7977.350581423792], [-4969.260723505897, -7774.950581421081], [-5390.560723505188, -7527.750581420633], [-6322.160723506442, -6953.1005814233995], [-6499.160723507202, -6826.1005814207465], [-6715.160723508972, -6662.100581422692], [-6928.1607235112115, -6489.100581422491], [-7097.610723505454, -6340.8505814237515]]}, {"length": 58.4892412482, "source": 135099952, "destination": 135097216, "path": [[205.33927649069028, -6090.100581420898], [203.83927649447742, -6353.100581421245]]}, {"length": 57.5465004303, "source": 135099952, "destination": 1916976464, "path": [[205.33927649069028, -6090.100581420898], [176.33927649285397, -6091.600581420664], [-136.56072351153625, -6092.80058142403]]}, {"length": 36.1298860982, "source": 135099952, "destination": 885856839, "path": [[205.33927649069028, -6090.100581420898], [207.93927649265243, -5927.650581423194]]}, {"length": 54.362424655, "source": 2069120291, "destination": 2069120441, "path": [[4004.7392764890333, 4058.549418576973], [4037.539276488644, 4050.7994185787766], [4064.989276493236, 4045.349418579036], [4325.189276492836, 4046.2494185788955]]}, {"length": 57.3002615936, "source": 2069120291, "destination": 2069120435, "path": [[4004.7392764890333, 4058.549418576973], [3977.1892764903782, 4066.999418576245], [3753.189276494595, 4068.049418577857], [3728.389276488997, 4064.6494185772044], [3710.2892764906414, 4054.8494185763675], [3694.189276494342, 4043.6494185769334], [3681.3892764939737, 4034.79941857654]]}, {"length": 146.467512284, "source": 2069120291, "destination": 2069120213, "path": [[4004.7392764890333, 4058.549418576973], [4002.3892764935454, 3703.549418577978], [4001.189276493733, 3399.94941857924]]}, {"length": 56.5655865112, "source": 2069120291, "destination": 135007358, "path": [[4004.7392764890333, 4058.549418576973], [4006.33927649352, 4312.8994185792635]]}, {"length": 124.5073758, "source": 135021864, "destination": 135019146, "path": [[-1181.7107235074786, 388.84941857730837], [-1921.4107235114852, 383.4494185781523]]}, {"length": 5.90510597734, "source": 135021864, "destination": 135021866, "path": [[-1181.7107235074786, 388.84941857730837], [-1181.8607235056788, 415.39941857848817]]}, {"length": 121.148473362, "source": 135021864, "destination": 135074759, "path": [[-1181.7107235074786, 388.84941857730837], [-1178.2107235092099, -155.9005814222303]]}, {"length": 59.900872367, "source": 2069120297, "destination": 2069120424, "path": [[2078.4892764922347, 2901.099418576081], [2078.839276492772, 2631.7494185761348]]}, {"length": 64.6229328462, "source": 2069120297, "destination": 2069120370, "path": [[2078.4892764922347, 2901.099418576081], [2072.689276488404, 3191.649418578635]]}, {"length": 62.3909915589, "source": 2069120297, "destination": 2068020343, "path": [[2078.4892764922347, 2901.099418576081], [2090.2892764951275, 2901.149418576665], [2344.189276492159, 2901.799418577156], [2449.1392764929287, 2902.0494185765247]]}, {"length": 122.090951989, "source": 135021866, "destination": 135025168, "path": [[-1181.8607235056788, 415.39941857848817], [-456.5607235065272, 423.3994185760537]]}, {"length": 5.90510597734, "source": 135021866, "destination": 135021864, "path": [[-1181.8607235056788, 415.39941857848817], [-1181.7107235074786, 388.84941857730837]]}, {"length": 122.883126567, "source": 135021866, "destination": 134968194, "path": [[-1181.8607235056788, 415.39941857848817], [-1185.360723511053, 967.9494185768078]]}, {"length": 124.517726734, "source": 135021869, "destination": 135019155, "path": [[-1192.310723510559, 2060.6494185777537], [-1932.0607235115972, 2057.9494185781755]]}, {"length": 121.115065788, "source": 135021869, "destination": 135012773, "path": [[-1192.310723510559, 2060.6494185777537], [-1188.8607235093218, 1516.049418576415]]}, {"length": 9.27699404875, "source": 1930503470, "destination": 1930503416, "path": [[9847.63927649368, -8610.150581422005], [9854.939276493724, -8568.800581421954]]}, {"length": 36.3559324457, "source": 1930503470, "destination": 2087861313, "path": [[9847.63927649368, -8610.150581422005], [10063.689276492481, -8608.55058142107]]}, {"length": 9.67596529064, "source": 1930503470, "destination": 134979238, "path": [[9847.63927649368, -8610.150581422005], [9790.13927648964, -8610.60058142371]]}, {"length": 12.3408758758, "source": 1930503470, "destination": 1930503505, "path": [[9847.63927649368, -8610.150581422005], [9837.889276489876, -8665.150581421698]]}, {"length": 122.104312652, "source": 135021872, "destination": 135025174, "path": [[-1195.9107235099964, 2619.7994185785947], [-470.51072350967615, 2622.4494185775884]]}, {"length": 61.2913913448, "source": 135021872, "destination": 2086776830, "path": [[-1195.9107235099964, 2619.7994185785947], [-1194.1607235073093, 2344.1994185766644]]}, {"length": 61.0357309954, "source": 135021872, "destination": 2069036302, "path": [[-1195.9107235099964, 2619.7994185785947], [-1197.660723505578, 2894.249418577743]]}, {"length": 179.016235684, "source": 134939953, "destination": 134939936, "path": [[-3147.6607235063625, -9330.100581422585], [-3183.160723509104, -9274.100581421862], [-3281.6607235091055, -9133.100581422583], [-3391.1607235097563, -8994.100581421804], [-3492.160723510551, -8886.10058142092], [-3619.26072351082, -8776.400581421483], [-3727.2607235081523, -8658.600581423314]]}, {"length": 60.4574741365, "source": 135021875, "destination": 2069036840, "path": [[-1203.0107235077026, 3739.0994185777517], [-1201.3107235091525, 3467.249418577012]]}, {"length": 64.9848115267, "source": 135021875, "destination": 2327765644, "path": [[-1203.0107235077026, 3739.0994185777517], [-816.9607235117837, 3740.4994185763485]]}, {"length": 62.6814021089, "source": 135021875, "destination": 2069036397, "path": [[-1203.0107235077026, 3739.0994185777517], [-1204.8107235074212, 4020.9494185781123]]}, {"length": 125.306750919, "source": 135021875, "destination": 135019159, "path": [[-1203.0107235077026, 3739.0994185777517], [-1947.4107235097904, 3736.3994185781735]]}, {"length": 23.802681356, "source": 135021878, "destination": 2327765632, "path": [[-1206.5107235059713, 4290.399418579227], [-1065.1107235091217, 4290.949418578549]]}, {"length": 61.0913746882, "source": 135021878, "destination": 2069036849, "path": [[-1206.5107235059713, 4290.399418579227], [-1208.2607235086584, 4565.099418577745]]}, {"length": 59.9237380522, "source": 135021878, "destination": 2069036397, "path": [[-1206.5107235059713, 4290.399418579227], [-1204.8107235074212, 4020.9494185781123]]}, {"length": 125.3088727, "source": 135021878, "destination": 135019161, "path": [[-1206.5107235059713, 4290.399418579227], [-1950.9107235080592, 4287.699418576096]]}, {"length": 60.616849533, "source": 2069120311, "destination": 2069120305, "path": [[2811.0892764914297, 4032.1494185775464], [3171.1892764931804, 4033.149418578574]]}, {"length": 140.639529234, "source": 2069120311, "destination": 2069120453, "path": [[2811.0892764914297, 4032.1494185775464], [2811.0892764914297, 3399.749418576903]]}, {"length": 61.5089294596, "source": 2069120311, "destination": 2069120326, "path": [[2811.0892764914297, 4032.1494185775464], [2445.6892764916915, 4031.1494185765187]]}, {"length": 12.4828361064, "source": 135021881, "destination": 2355654865, "path": [[-1217.1107235090517, 5950.249418578579], [-1291.260723505161, 5950.099418576827]]}, {"length": 16.0797194605, "source": 135021881, "destination": 2355654862, "path": [[-1217.1107235090517, 5950.249418578579], [-1216.2607235097767, 6022.549418577938]]}, {"length": 64.5162924278, "source": 135021881, "destination": 2068877118, "path": [[-1217.1107235090517, 5950.249418578579], [-1215.260723505196, 5660.149418577731]]}, {"length": 121.284538226, "source": 135021881, "destination": 135025223, "path": [[-1217.1107235090517, 5950.249418578579], [-496.6607235061815, 5953.849418578016]]}, {"length": 121.83904022, "source": 2069120315, "destination": 2069120326, "path": [[1721.8892764887528, 4030.099418578459], [2445.6892764916915, 4031.1494185765187]]}, {"length": 60.7125263156, "source": 2069120315, "destination": 134990167, "path": [[1721.8892764887528, 4030.099418578459], [1721.9392764928898, 4303.099418578427]]}, {"length": 139.818455431, "source": 134939967, "destination": 134930800, "path": [[-2863.6607235057454, -9908.10058142344], [-2901.160723510543, -9773.100581423221], [-2915.660723509461, -9670.100581423923], [-2920.660723511048, -9567.100581421073], [-2915.660723509461, -9463.600581423038], [-2908.560723511755, -9342.7505814212], [-2895.9607235066187, -9283.950581423283]]}, {"length": 137.252419734, "source": 134939967, "destination": 134939953, "path": [[-2863.6607235057454, -9908.10058142344], [-2923.1607235047363, -9769.6005814214], [-2994.6607235089573, -9608.600581422877], [-3065.1607235085976, -9470.600581423128], [-3147.6607235063625, -9330.100581422585]]}, {"length": 156.915950138, "source": 4719871296, "destination": 2568624512, "path": [[-1830.1607235073902, -3797.600581421534], [-1694.1607235096967, -3730.6505814207467], [-1696.5607235093216, -3628.6505814224765], [-1553.360723505648, -3504.8005814211083], [-1482.9107235101446, -3502.0505814209455], [-1451.6607235108836, -3489.300581421162], [-1349.3107235049706, -3436.0005814235706], [-1319.8607235054283, -3396.400581422654], [-1271.960723506993, -3306.95058142183]]}, {"length": 213.426997374, "source": 4719871296, "destination": 4719884098, "path": [[-1830.1607235073902, -3797.600581421534], [-1782.0107235095861, -3796.7005814216745], [-1705.0107235050405, -3846.3505814227974], [-1655.4607235050867, -3846.3505814227974], [-1641.8107235054435, -3846.3505814227974], [-1594.860723507452, -3890.0505814218886], [-1552.7607235057417, -3918.7505814233245], [-1504.6107235079376, -3942.0005814214674], [-1425.1607235067354, -3956.1005814228165], [-1363.160723506951, -3962.4505814224167], [-1313.8107235093344, -3958.3505814206887], [-923.8607235104723, -3906.4505814216946], [-738.5107235080568, -3881.4005814238326], [-649.1107235078175, -3879.1505814224083]]}, {"length": 131.49903234, "source": 4719871296, "destination": 2140988068, "path": [[-1830.1607235073902, -3797.600581421534], [-2135.8607235058003, -3797.1505814233806], [-2186.4107235103347, -3793.9505814215127], [-2266.460723511443, -3742.5005814206716], [-2359.76072350752, -3715.6505814230914], [-2393.460723510543, -3695.150581421558], [-2532.460723507768, -3612.4005814208713]]}, {"length": 53.8626194849, "source": 2069120324, "destination": 135038807, "path": [[6531.289276495045, 6493.649418576552], [6211.33927648998, 6492.399418576156]]}, {"length": 4.57072452232, "source": 2316883510, "destination": 1806083089, "path": [[-3535.9607235108115, 6014.449418579205], [-3535.9607235108115, 5993.899418577086]]}, {"length": 17.2636217104, "source": 2316883510, "destination": 2316883508, "path": [[-3535.9607235108115, 6014.449418579205], [-3470.66072350799, 6014.449418579205], [-3433.4107235096667, 6014.449418579205]]}, {"length": 48.0699633264, "source": 2316883510, "destination": 2316883447, "path": [[-3535.9607235108115, 6014.449418579205], [-3537.0607235094553, 6230.599418579175]]}, {"length": 121.83904022, "source": 2069120326, "destination": 2069120315, "path": [[2445.6892764916915, 4031.1494185765187], [1721.8892764887528, 4030.099418578459]]}, {"length": 61.4812295661, "source": 2069120326, "destination": 134994390, "path": [[2445.6892764916915, 4031.1494185765187], [2448.139276488348, 3754.6994185788662]]}, {"length": 61.5089294596, "source": 2069120326, "destination": 2069120311, "path": [[2445.6892764916915, 4031.1494185765187], [2811.0892764914297, 4032.1494185775464]]}, {"length": 58.400339527, "source": 2068887957, "destination": 2069036302, "path": [[-1199.3107235070966, 3156.8494185769678], [-1197.660723505578, 2894.249418577743]]}, {"length": 10.8417759776, "source": 2068887957, "destination": 134980206, "path": [[-1199.3107235070966, 3156.8494185769678], [-1199.6107235106024, 3205.599418578231]]}, {"length": 125.885313672, "source": 2068887957, "destination": 2068887951, "path": [[-1199.3107235070966, 3156.8494185769678], [-1947.1607235104216, 3154.14941857739]]}, {"length": 59.1881116458, "source": 134939977, "destination": 135092597, "path": [[-2192.160723510028, -11399.100581421351], [-2198.660723507828, -11133.000581423858]]}, {"length": 27.1839034435, "source": 2587010385, "destination": 2568599584, "path": [[889.8892764932498, -2270.6005814221444], [888.0392764893941, -2234.800581423002], [882.639276490238, -2192.600581423676], [878.539276492063, -2175.100581421674], [869.3392764911323, -2149.800581420891]]}, {"length": 28.466896646, "source": 2587010385, "destination": 2568679361, "path": [[889.8892764932498, -2270.6005814221444], [890.7892764895564, -2287.3005814219027], [888.0392764893941, -2322.3005814223543], [886.6892764913814, -2344.900581423559], [870.8392764944506, -2397.150581423091]]}, {"length": 12.4961861583, "source": 2587010385, "destination": 2568599575, "path": [[889.8892764932498, -2270.6005814221444], [815.6392764888665, -2270.300581422191]]}, {"length": 57.9781184479, "source": 2069407058, "destination": 135038042, "path": [[4948.039276492011, 4590.5994185773125], [4950.139276495236, 4329.899418578975]]}, {"length": 59.7796286785, "source": 2069407058, "destination": 134954315, "path": [[4948.039276492011, 4590.5994185773125], [4945.839276494724, 4859.399418577937]]}, {"length": 94.4779753025, "source": 2069407058, "destination": 2069120388, "path": [[4948.039276492011, 4590.5994185773125], [5509.289276488971, 4590.449418579112]]}, {"length": 7.90875398966, "source": 1930503507, "destination": 1930503505, "path": [[9790.989276488915, -8667.50058142074], [9837.889276489876, -8665.150581421698]]}, {"length": 148.284462373, "source": 1930503507, "destination": 134937748, "path": [[9790.989276488915, -8667.50058142074], [9796.339276491039, -9022.600581420904], [9796.339276491039, -9047.600581421733], [9794.889276491858, -9334.250581421344]]}, {"length": 12.3013756086, "source": 1930503507, "destination": 1930503509, "path": [[9790.989276488915, -8667.50058142074], [9718.039276492618, -8671.100581423729]]}, {"length": 93.8382842147, "source": 2587010388, "destination": 2587010507, "path": [[1760.0392764904882, -1840.6005814206594], [1762.2392764948813, -2262.550581423994]]}, {"length": 8.22877193438, "source": 2587010388, "destination": 135076181, "path": [[1760.0392764904882, -1840.6005814206594], [1759.8392764952564, -1803.6005814217049]]}, {"length": 98.4186975083, "source": 2587010388, "destination": 2587010391, "path": [[1760.0392764904882, -1840.6005814206594], [1175.2892764889111, -1844.5505814206342]]}, {"length": 10.7163559791, "source": 1930503509, "destination": 1930503512, "path": [[9718.039276492618, -8671.100581423729], [9654.489276492484, -8674.25058142146]]}, {"length": 12.5874502388, "source": 1930503509, "destination": 134979345, "path": [[9718.039276492618, -8671.100581423729], [9717.839276490282, -8614.5005814231]]}, {"length": 12.3013756086, "source": 1930503509, "destination": 1930503507, "path": [[9718.039276492618, -8671.100581423729], [9790.989276488915, -8667.50058142074]]}, {"length": 30.5821389052, "source": 2587010391, "destination": 2587010408, "path": [[1175.2892764889111, -1844.5505814206342], [1173.9392764908985, -1898.2005814223157], [1172.6392764899174, -1964.600581423781], [1172.6392764899174, -1982.050581421646]]}, {"length": 98.4186975083, "source": 2587010391, "destination": 2587010388, "path": [[1175.2892764889111, -1844.5505814206342], [1760.0392764904882, -1840.6005814206594]]}, {"length": 46.9581203519, "source": 2587010391, "destination": 2586992559, "path": [[1175.2892764889111, -1844.5505814206342], [896.2892764898811, -1846.4505814215215]]}, {"length": 12.5041172699, "source": 1930503512, "destination": 1999574946, "path": [[9654.489276492484, -8674.25058142146], [9656.739276493909, -8618.050581421954]]}, {"length": 10.7163559791, "source": 1930503512, "destination": 1930503509, "path": [[9654.489276492484, -8674.25058142146], [9718.039276492618, -8671.100581423729]]}, {"length": 73.5711265529, "source": 1930503512, "destination": 1930503550, "path": [[9654.489276492484, -8674.25058142146], [9664.739276495027, -8716.050581423218], [9670.689276489953, -8766.800581422984], [9671.089276494626, -8838.750581421806], [9671.489276492195, -8901.450581422665], [9671.839276492734, -8950.150581423344], [9672.889276494345, -9004.15058142201]]}, {"length": 7.08399008437, "source": 4720043355, "destination": 134957801, "path": [[-4628.160723505915, -5582.100581420946], [-4628.31072351122, -5613.950581423665]]}, {"length": 144.389513417, "source": 4720043355, "destination": 1959915229, "path": [[-4628.160723505915, -5582.100581420946], [-4657.860723504826, -5582.100581420946], [-4997.960723507333, -5582.100581420946], [-5393.210723511288, -5582.100581420946], [-5485.960723511596, -5586.850581423164]]}, {"length": 46.969155109, "source": 4720043355, "destination": 1483977721, "path": [[-4628.160723505915, -5582.100581420946], [-4627.06072350727, -5370.900581421978]]}, {"length": 3.97823640308, "source": 2585900602, "destination": 2585900608, "path": [[-1848.6607235104202, -1775.800581423681], [-1826.6607235091215, -1769.250581421744]]}, {"length": 19.947287549, "source": 2585900602, "destination": 2585900329, "path": [[-1848.6607235104202, -1775.800581423681], [-1954.7107235098338, -1815.850581422751]]}, {"length": 2.27647168916, "source": 2585900602, "destination": 2585900564, "path": [[-1848.6607235104202, -1775.800581423681], [-1859.4607235087324, -1769.6505814228658]]}, {"length": 21.8008442667, "source": 2585900602, "destination": 2585900320, "path": [[-1848.6607235104202, -1775.800581423681], [-1838.0107235103083, -1781.8505814233276], [-1822.610723507978, -1791.000581423674], [-1809.2107235077037, -1801.1505814214956], [-1799.8107235115413, -1810.750581423548], [-1782.3607235101235, -1829.050581420688], [-1766.9607235077933, -1850.350581420912]]}, {"length": 56.1263765467, "source": 2587010400, "destination": 2587010408, "path": [[1302.4392764933168, -2136.5005814217852], [1301.2392764935043, -1981.4505814217398], [1172.6392764899174, -1982.050581421646]]}, {"length": 41.8878603935, "source": 2587010400, "destination": 2587010408, "path": [[1302.4392764933168, -2136.5005814217852], [1282.439276494074, -2113.2505814236424], [1271.739276489825, -2104.100581423296], [1263.6892764916752, -2095.0005814235337], [1255.6392764935254, -2085.8505814231876], [1247.6392764924071, -2075.7505814223978], [1243.5892764912637, -2059.5005814207925], [1240.93927649227, -2045.3005814218272], [1235.5892764901455, -2032.1505814209218], [1226.189276493983, -2018.9505814229847], [1210.139276494715, -2004.8005814210512], [1192.6892764932973, -1993.6505814222016], [1172.6392764899174, -1982.050581421646]]}, {"length": 26.0309272525, "source": 2587010400, "destination": 2587010513, "path": [[1302.4392764933168, -2136.5005814217852], [1301.8392764934106, -2217.9005814209063], [1305.839276490417, -2236.150581421015], [1314.6392764937787, -2251.950581420914]]}, {"length": 42.6933188353, "source": 2587010400, "destination": 2587010484, "path": [[1302.4392764933168, -2136.5005814217852], [1056.0392764915605, -2137.6005814239816], [1056.0392764915605, -2132.100581423657]]}, {"length": 8.36509918352, "source": 2587010619, "destination": 2587010617, "path": [[1305.9392764915856, -2403.850581423228], [1256.2392764934316, -2404.100581422597]]}, {"length": 4.8815647779, "source": 2587010619, "destination": 2587010541, "path": [[1305.9392764915856, -2403.850581423228], [1334.939276489422, -2403.5505814232747]]}, {"length": 5.73554595151, "source": 2587010619, "destination": 2587010621, "path": [[1305.9392764915856, -2403.850581423228], [1301.8392764934106, -2378.250581422492]]}, {"length": 237.96234519, "source": 2069120356, "destination": 2069036916, "path": [[3176.489276491168, 2910.4994185793485], [3224.7892764942776, 2917.9994185781766], [3305.2892764899866, 2922.04941857932], [3742.489276490346, 2922.04941857932], [3817.5892764940045, 2915.949418579089], [3868.5392764890025, 2911.8994185779457], [4588.289276490797, 2912.499418577852]]}, {"length": 61.1025858471, "source": 2069120356, "destination": 134997395, "path": [[3176.489276491168, 2910.4994185793485], [3178.4892764932238, 2635.7494185766936]]}, {"length": 55.8985112566, "source": 2069120356, "destination": 134959964, "path": [[3176.489276491168, 2910.4994185793485], [3174.689276491449, 3161.849418578555]]}, {"length": 122.446577943, "source": 2069120356, "destination": 2068020343, "path": [[3176.489276491168, 2910.4994185793485], [2449.1392764929287, 2902.0494185765247]]}, {"length": 377.411705012, "source": 1428266943, "destination": 4719462289, "path": [[-2577.510723504872, -3610.600581421153], [-2588.31072351029, -3581.3005814233634], [-2589.4107235089336, -3510.7005814225545], [-2595.3607235109644, -3344.2005814237064], [-2596.060723504934, -3267.200581422713], [-2596.410723505471, -3040.450581423215], [-2601.3607235100267, -2789.4505814209933], [-2572.110723505716, -2685.8505814217892], [-2571.7607235051787, -2627.7505814213955], [-2572.110723505716, -2447.350581423535], [-2591.5107235050527, -2447.350581423535], [-2685.1607235087727, -2446.850581421245], [-2904.860723511149, -2444.150581421667], [-3127.010723510182, -2443.350581422976], [-3227.010723506396, -2443.1005814236073], [-3271.810723511237, -2436.0505814229327]]}, {"length": 444.520676017, "source": 1428266943, "destination": 4719457762, "path": [[-2577.510723504872, -3610.600581421153], [-2577.0607235102716, -3959.7505814228384], [-2576.110723509828, -4726.800581423163], [-2571.560723509947, -5312.650581423384], [-2566.3607235060226, -5578.450581420924], [-2556.6107235093227, -5608.500581423925]]}, {"length": 7.59246080936, "source": 1428266943, "destination": 2140988068, "path": [[-2577.510723504872, -3610.600581421153], [-2532.460723507768, -3612.4005814208713]]}, {"length": 7.96609540689, "source": 2069120358, "destination": 4224849377, "path": [[6146.139276488328, 4603.24941857948], [6179.039276489107, 4628.999418578416]]}, {"length": 10.5962572813, "source": 2069120358, "destination": 2069120219, "path": [[6146.139276488328, 4603.24941857948], [6101.639276494097, 4569.549418576457]]}, {"length": 14.2936950562, "source": 2069120358, "destination": 4224950749, "path": [[6146.139276488328, 4603.24941857948], [6148.439276493889, 4538.999418578271]]}, {"length": 13.9351503592, "source": 2069120358, "destination": 4224950829, "path": [[6146.139276488328, 4603.24941857948], [6144.439276489777, 4665.899418576202]]}, {"length": 56.1263765467, "source": 2587010408, "destination": 2587010400, "path": [[1172.6392764899174, -1982.050581421646], [1301.2392764935043, -1981.4505814217398], [1302.4392764933168, -2136.5005814217852]]}, {"length": 41.8878603935, "source": 2587010408, "destination": 2587010400, "path": [[1172.6392764899174, -1982.050581421646], [1192.6892764932973, -1993.6505814222016], [1210.139276494715, -2004.8005814210512], [1226.189276493983, -2018.9505814229847], [1235.5892764901455, -2032.1505814209218], [1240.93927649227, -2045.3005814218272], [1243.5892764912637, -2059.5005814207925], [1247.6392764924071, -2075.7505814223978], [1255.6392764935254, -2085.8505814231876], [1263.6892764916752, -2095.0005814235337], [1271.739276489825, -2104.100581423296], [1282.439276494074, -2113.2505814236424], [1302.4392764933168, -2136.5005814217852]]}, {"length": 29.3729437465, "source": 2587010408, "destination": 2587010413, "path": [[1172.6392764899174, -1982.050581421646], [1141.8392764923624, -1998.7005814208203], [1128.439276492088, -2008.8505814221946], [1119.0392764888202, -2018.9505814229847], [1111.0392764948074, -2029.1005814208063], [1100.2892764935268, -2042.300581422296], [1089.5892764892778, -2056.450581420677], [1081.539276491128, -2065.600581421023], [1069.4892764888664, -2070.6505814231946], [1055.5892764898545, -2075.7505814223978]]}, {"length": 40.5535378396, "source": 2587010408, "destination": 2587010413, "path": [[1172.6392764899174, -1982.050581421646], [1054.839276491748, -1982.5505814239364], [1055.5892764898545, -2075.7505814223978]]}, {"length": 30.5821389052, "source": 2587010408, "destination": 2587010391, "path": [[1172.6392764899174, -1982.050581421646], [1172.6392764899174, -1964.600581423781], [1173.9392764908985, -1898.2005814223157], [1175.2892764889111, -1844.5505814206342]]}, {"length": 40.5535378396, "source": 2587010413, "destination": 2587010408, "path": [[1055.5892764898545, -2075.7505814223978], [1054.839276491748, -1982.5505814239364], [1172.6392764899174, -1982.050581421646]]}, {"length": 29.3729437465, "source": 2587010413, "destination": 2587010408, "path": [[1055.5892764898545, -2075.7505814223978], [1069.4892764888664, -2070.6505814231946], [1081.539276491128, -2065.600581421023], [1089.5892764892778, -2056.450581420677], [1100.2892764935268, -2042.300581422296], [1111.0392764948074, -2029.1005814208063], [1119.0392764888202, -2018.9505814229847], [1128.439276492088, -2008.8505814221946], [1141.8392764923624, -1998.7005814208203], [1172.6392764899174, -1982.050581421646]]}, {"length": 12.5318366328, "source": 2587010413, "destination": 2587010484, "path": [[1055.5892764898545, -2075.7505814223978], [1056.0392764915605, -2132.100581423657]]}, {"length": 63.939452155, "source": 3148277103, "destination": 135103216, "path": [[-4137.560723506795, -1540.8005814236958], [-4136.110723507613, -1761.2005814235943], [-4133.160723505114, -1794.6505814236957], [-4127.910723511263, -1828.0005814226286]]}, {"length": 117.830973177, "source": 3148277103, "destination": 3148277115, "path": [[-4137.560723506795, -1540.8005814236958], [-3437.46072351081, -1538.1505814211494]]}, {"length": 61.6700423401, "source": 3148277103, "destination": 135016374, "path": [[-4137.560723506795, -1540.8005814236958], [-4136.310723509951, -1317.750581421251], [-4135.4107235065385, -1263.5005814232159]]}, {"length": 63.8856208649, "source": 135046512, "destination": 4719850318, "path": [[-987.8107235081757, -4539.100581421707], [-608.2107235059198, -4536.200581423344]]}, {"length": 64.6229328462, "source": 2069120370, "destination": 2069120297, "path": [[2072.689276488404, 3191.649418578635], [2078.4892764922347, 2901.099418576081]]}, {"length": 63.5521636281, "source": 2069120370, "destination": 134959932, "path": [[2072.689276488404, 3191.649418578635], [2450.2392764915726, 3192.0494185762036]]}, {"length": 124.905520121, "source": 2069120370, "destination": 2069120438, "path": [[2072.689276488404, 3191.649418578635], [2073.439276493616, 3753.2994185767166]]}, {"length": 58.1490952359, "source": 2069120370, "destination": 134959929, "path": [[2072.689276488404, 3191.649418578635], [1727.2392764908773, 3190.94941857756]]}, {"length": 180.325961756, "source": 135046515, "destination": 1932195971, "path": [[207.589276492115, -4530.000581421945], [209.2892764906651, -4811.800581421721], [205.88927649356492, -5228.100581422978], [202.58927649052794, -5266.850581421068], [194.98927649408415, -5302.950581423715], [182.2892764948847, -5339.050581422811]]}, {"length": 84.8271858978, "source": 135046515, "destination": 134975773, "path": [[207.589276492115, -4530.000581421945], [214.33927648928375, -4148.600581423523]]}, {"length": 137.29678903, "source": 135046515, "destination": 4719850318, "path": [[207.589276492115, -4530.000581421945], [-608.2107235059198, -4536.200581423344]]}, {"length": 117.830973177, "source": 3148277115, "destination": 3148277103, "path": [[-3437.46072351081, -1538.1505814211494], [-4137.560723506795, -1540.8005814236958]]}, {"length": 23.2911269737, "source": 3148277115, "destination": 1935295439, "path": [[-3437.46072351081, -1538.1505814211494], [-3403.610723509587, -1436.6005814210325]]}, {"length": 117.656140751, "source": 1930503550, "destination": 2074159280, "path": [[9672.889276494345, -9004.15058142201], [9673.439276490115, -9033.450581423353], [9673.439276490115, -9137.950581422416], [9673.83927649479, -9239.450581421948], [9675.789276492707, -9383.350581423145], [9675.039276494601, -9423.950581421537], [9672.639276494976, -9438.0005814223], [9663.989276489814, -9449.90058142281], [9652.13927648989, -9459.750581420678], [9637.539276489804, -9466.950581423105], [9622.939276489717, -9471.700581421772], [9609.139276491875, -9474.700581421303], [9596.889276494381, -9476.200581421068], [9597.389276493119, -9498.900581423442]]}, {"length": 73.5711265529, "source": 1930503550, "destination": 1930503512, "path": [[9672.889276494345, -9004.15058142201], [9671.839276492734, -8950.150581423344], [9671.489276492195, -8901.450581422665], [9671.089276494626, -8838.750581421806], [9670.689276489953, -8766.800581422984], [9664.739276495027, -8716.050581423218], [9654.489276492484, -8674.25058142146]]}, {"length": 26.1338569583, "source": 1930503550, "destination": 1930503551, "path": [[9672.889276494345, -9004.15058142201], [9624.489276490067, -9004.750581421917], [9517.589276491379, -9004.15058142201]]}, {"length": 26.1338569583, "source": 1930503551, "destination": 1930503550, "path": [[9517.589276491379, -9004.15058142201], [9624.489276490067, -9004.750581421917], [9672.889276494345, -9004.15058142201]]}, {"length": 27.1345992474, "source": 2664670595, "destination": 1965661599, "path": [[-7309.410723507881, 3160.549418577574], [-7148.21072350702, 3160.9994185792802]]}, {"length": 90.0818084824, "source": 2069120388, "destination": 4224950750, "path": [[5509.289276488971, 4590.449418579112], [5946.48927648933, 4591.349418578971], [6027.039276489177, 4591.499418577172], [6044.339276492394, 4590.1994185761905]]}, {"length": 94.4779753025, "source": 2069120388, "destination": 2069407058, "path": [[5509.289276488971, 4590.449418579112], [4948.039276492011, 4590.5994185773125]]}, {"length": 60.3686343235, "source": 2069120388, "destination": 134954318, "path": [[5509.289276488971, 4590.449418579112], [5507.489276489252, 4861.899418578731]]}, {"length": 56.0653007683, "source": 2069120388, "destination": 135018870, "path": [[5509.289276488971, 4590.449418579112], [5507.589276490421, 4338.3494185782465]]}, {"length": 60.0675016906, "source": 134997383, "destination": 1429422281, "path": [[3189.489276493873, 405.39941857886674], [3196.3392764922105, 135.34941857784588]]}, {"length": 122.145640253, "source": 134997383, "destination": 134994382, "path": [[3189.489276493873, 405.39941857886674], [2463.789276490047, 403.99941857671706]]}, {"length": 7.00595187617, "source": 134997383, "destination": 134997385, "path": [[3189.489276493873, 405.39941857886674], [3189.489276493873, 436.8994185774966]]}, {"length": 100.538370658, "source": 134997385, "destination": 2080617369, "path": [[3189.489276493873, 436.8994185774966], [3786.6892764881754, 446.1994185760432]]}, {"length": 60.7353090192, "source": 134997385, "destination": 2086723490, "path": [[3189.489276493873, 436.8994185774966], [3187.989276490555, 709.9994185786329]]}, {"length": 7.00595187617, "source": 134997385, "destination": 134997383, "path": [[3189.489276493873, 436.8994185774966], [3189.489276493873, 405.39941857886674]]}, {"length": 121.569185651, "source": 2086854507, "destination": 2086854440, "path": [[6811.339276488581, -402.4505814221868], [7533.5892764911705, -396.3505814219559]]}, {"length": 60.5573468565, "source": 2086854507, "destination": 135074784, "path": [[6811.339276488581, -402.4505814221868], [6809.839276492368, -130.15058142329394]]}, {"length": 121.638187321, "source": 2086854507, "destination": 2086854556, "path": [[6811.339276488581, -402.4505814221868], [6088.639276491393, -404.5005814212743]]}, {"length": 60.7463633426, "source": 2086854507, "destination": 135043189, "path": [[6811.339276488581, -402.4505814221868], [6812.8392764919, -675.6005814239074]]}, {"length": 123.380017487, "source": 134997388, "destination": 134994385, "path": [[3183.9892764935485, 1532.399418579189], [2450.989276489679, 1529.3494185790735]]}, {"length": 61.3469500595, "source": 134997388, "destination": 2086723538, "path": [[3183.9892764935485, 1532.399418579189], [3182.539276494367, 1808.2494185769349]]}, {"length": 61.0019806045, "source": 134997388, "destination": 2086723461, "path": [[3183.9892764935485, 1532.399418579189], [3185.2392764903925, 1258.0994185782401]]}, {"length": 100.150176646, "source": 134997388, "destination": 2080617383, "path": [[3183.9892764935485, 1532.399418579189], [3778.989276490563, 1533.1494185772954]]}, {"length": 13.666086523, "source": 4719854989, "destination": 4719854784, "path": [[213.2892764947769, -3697.550581421183], [213.43927649297711, -3759.0005814216456]]}, {"length": 88.7115609756, "source": 4719854989, "destination": 2568624511, "path": [[213.2892764947769, -3697.550581421183], [212.38927649136485, -3298.650581420759]]}, {"length": 59.6788320034, "source": 134997392, "destination": 2086723538, "path": [[3181.1392764922175, 2076.5994185794057], [3182.539276494367, 1808.2494185769349]]}, {"length": 123.112296137, "source": 134997392, "destination": 134994387, "path": [[3181.1392764922175, 2076.5994185794057], [2449.739276492835, 2073.899418576275]]}, {"length": 61.735628981, "source": 134997392, "destination": 2086723573, "path": [[3181.1392764922175, 2076.5994185794057], [3180.4392764911427, 2354.199418576286]]}, {"length": 137.829443043, "source": 2069120402, "destination": 2069120250, "path": [[3985.239276488528, 4584.699418579419], [3166.489276495099, 4579.29941857671]]}, {"length": 61.1025858471, "source": 134997395, "destination": 2069120356, "path": [[3178.4892764932238, 2635.7494185766936], [3176.489276491168, 2910.4994185793485]]}, {"length": 62.614793592, "source": 134997395, "destination": 2086723573, "path": [[3178.4892764932238, 2635.7494185766936], [3180.4392764911427, 2354.199418576286]]}, {"length": 99.4980396499, "source": 134997395, "destination": 2080617406, "path": [[3178.4892764932238, 2635.7494185766936], [3769.5892764944006, 2637.9494185775343]]}, {"length": 85.6219709311, "source": 134997399, "destination": 2069120416, "path": [[3173.9892764903743, 3750.399418578354], [3682.639276490818, 3751.799418576951]]}, {"length": 62.8826675868, "source": 134997399, "destination": 2069120305, "path": [[3173.9892764903743, 3750.399418578354], [3171.1892764931804, 4033.149418578574]]}, {"length": 60.1454736873, "source": 134997399, "destination": 2069120437, "path": [[3173.9892764903743, 3750.399418578354], [3174.28927649388, 3479.9494185762114]]}, {"length": 59.9471212247, "source": 2069120409, "destination": 2069120250, "path": [[2810.389276490355, 4576.549418576547], [3166.489276495099, 4579.29941857671]]}, {"length": 53.1289078085, "source": 2069120410, "destination": 134959964, "path": [[3174.3892764950488, 3400.7494185779306], [3174.689276491449, 3161.849418578555]]}, {"length": 17.6130174073, "source": 2069120410, "destination": 2069120437, "path": [[3174.3892764950488, 3400.7494185779306], [3174.28927649388, 3479.9494185762114]]}, {"length": 61.1543370339, "source": 2069120410, "destination": 2069120453, "path": [[3174.3892764950488, 3400.7494185779306], [2811.0892764914297, 3399.749418576903]]}, {"length": 96.2511388651, "source": 1930503580, "destination": 1930503473, "path": [[10080.439276492825, -9073.60058142359], [10082.639276490114, -8640.80058142136]]}, {"length": 50.9082347321, "source": 2069120414, "destination": 135018884, "path": [[5259.939276491821, 6488.649418578518], [5562.339276494299, 6489.899418578915]]}, {"length": 50.2684681654, "source": 2069120414, "destination": 135064230, "path": [[5259.939276491821, 6488.649418578518], [4961.339276491117, 6487.399418578121]]}, {"length": 49.2518895325, "source": 1937679941, "destination": 1937679936, "path": [[4657.889276494132, -5965.250581422055], [4717.539276491323, -5965.550581422008], [4826.289276493867, -5963.900581424042], [4938.289276488205, -5962.900581423014], [4950.539276492805, -5962.650581423645]]}, {"length": 27.6515691447, "source": 1937679941, "destination": 1937679944, "path": [[4657.889276494132, -5965.250581422055], [4614.739276490809, -5966.2005814224985], [4493.589276492571, -5967.000581421189]]}, {"length": 6.96078085798, "source": 1937679941, "destination": 135010293, "path": [[4657.889276494132, -5965.250581422055], [4657.739276488826, -5933.950581422209]]}, {"length": 196.537706137, "source": 1937679941, "destination": 135010295, "path": [[4657.889276494132, -5965.250581422055], [4658.739276493407, -6177.800581422588], [4663.289276493288, -6800.700581422348], [4654.689276492263, -6848.550581423751]]}, {"length": 62.9366783837, "source": 2069120416, "destination": 2069120435, "path": [[3682.639276490818, 3751.799418576951], [3681.3892764939737, 4034.79941857654]]}, {"length": 155.534922561, "source": 2069120416, "destination": 2069120437, "path": [[3682.639276490818, 3751.799418576951], [3712.4892764950346, 3751.799418576951], [3712.639276493235, 3482.4994185775895], [3174.28927649388, 3479.9494185762114]]}, {"length": 85.6219709311, "source": 2069120416, "destination": 134997399, "path": [[3682.639276490818, 3751.799418576951], [3173.9892764903743, 3750.399418578354]]}, {"length": 51.9866933107, "source": 2282973136, "destination": 2282973289, "path": [[-9241.76072350491, 2860.799418577642], [-9241.710723507878, 2846.5494185780926], [-9241.360723507341, 2695.5494185791904], [-9240.810723511571, 2627.0494185780535]]}, {"length": 99.6060033547, "source": 2282973136, "destination": 2282973130, "path": [[-9241.76072350491, 2860.799418577642], [-9174.160723510739, 2859.899418577783], [-9111.160723506373, 2860.1494185771517], [-9059.110723505626, 2859.3494185784607], [-8995.410723507292, 2859.899418577783], [-8910.310723507564, 2862.5494185767766], [-8826.560723505849, 2864.6994185770327], [-8750.910723506422, 2864.6994185770327], [-8674.210723505383, 2865.2494185763544], [-8650.160723504996, 2865.2494185763544]]}, {"length": 50.7406941403, "source": 2282973136, "destination": 2282972973, "path": [[-9241.76072350491, 2860.799418577642], [-9242.060723508417, 3035.0494185782395], [-9243.16072350706, 3076.0994185783375], [-9243.16072350706, 3088.94941857929]]}, {"length": 8.8049734434, "source": 2282973136, "destination": 2282973135, "path": [[-9241.76072350491, 2860.799418577642], [-9294.060723505027, 2861.499418578717]]}, {"length": 59.900872367, "source": 2069120424, "destination": 2069120297, "path": [[2078.839276492772, 2631.7494185761348], [2078.4892764922347, 2901.099418576081]]}, {"length": 62.2809718823, "source": 2069120424, "destination": 134994389, "path": [[2078.839276492772, 2631.7494185761348], [2448.839276489423, 2633.0994185777]]}, {"length": 121.331419204, "source": 2086776765, "destination": 2086723508, "path": [[-458.3107235092143, 702.1994185762992], [262.5392764912249, 704.8494185788456]]}, {"length": 59.6791340439, "source": 2086776765, "destination": 134968196, "path": [[-458.3107235092143, 702.1994185762992], [-460.0107235077644, 970.54941857877]]}, {"length": 39.830137617, "source": 135099955, "destination": 2573122529, "path": [[197.13927649434027, -7168.650581423463], [197.28927649254047, -7347.750581423896]]}, {"length": 130.001725799, "source": 135099955, "destination": 135097204, "path": [[197.13927649434027, -7168.650581423463], [202.83927648989675, -6584.100581420671]]}, {"length": 56.8773377933, "source": 135099955, "destination": 135027023, "path": [[197.13927649434027, -7168.650581423463], [-140.86072350494305, -7169.350581420986]]}, {"length": 62.9366783837, "source": 2069120435, "destination": 2069120416, "path": [[3681.3892764939737, 4034.79941857654], [3682.639276490818, 3751.799418576951]]}, {"length": 85.8837782017, "source": 2069120435, "destination": 2069120305, "path": [[3681.3892764939737, 4034.79941857654], [3171.1892764931804, 4033.149418578574]]}, {"length": 57.3002615936, "source": 2069120435, "destination": 2069120291, "path": [[3681.3892764939737, 4034.79941857654], [3694.189276494342, 4043.6494185769334], [3710.2892764906414, 4054.8494185763675], [3728.389276488997, 4064.6494185772044], [3753.189276494595, 4068.049418577857], [3977.1892764903782, 4066.999418576245], [4004.7392764890333, 4058.549418576973]]}, {"length": 42.6933188353, "source": 2587010484, "destination": 2587010400, "path": [[1056.0392764915605, -2132.100581423657], [1056.0392764915605, -2137.6005814239816], [1302.4392764933168, -2136.5005814217852]]}, {"length": 28.4847953301, "source": 2587010484, "destination": 2568599581, "path": [[1056.0392764915605, -2132.100581423657], [1017.8892764898251, -2132.3505814230257], [992.8392764919636, -2132.450581420642], [886.78927649255, -2132.5505814218104]]}, {"length": 12.5318366328, "source": 2587010484, "destination": 2587010413, "path": [[1056.0392764915605, -2132.100581423657], [1055.5892764898545, -2075.7505814223978]]}, {"length": 155.534922561, "source": 2069120437, "destination": 2069120416, "path": [[3174.28927649388, 3479.9494185762114], [3712.639276493235, 3482.4994185775895], [3712.4892764950346, 3751.799418576951], [3682.639276490818, 3751.799418576951]]}, {"length": 17.6130174073, "source": 2069120437, "destination": 2069120410, "path": [[3174.28927649388, 3479.9494185762114], [3174.3892764950488, 3400.7494185779306]]}, {"length": 60.1454736873, "source": 2069120437, "destination": 134997399, "path": [[3174.28927649388, 3479.9494185762114], [3173.9892764903743, 3750.399418578354]]}, {"length": 59.1902434258, "source": 2069120438, "destination": 134990162, "path": [[2073.439276493616, 3753.2994185767166], [1721.8392764917212, 3749.7494185778633]]}, {"length": 124.905520121, "source": 2069120438, "destination": 2069120370, "path": [[2073.439276493616, 3753.2994185767166], [2072.689276488404, 3191.649418578635]]}, {"length": 63.0742894573, "source": 2069120438, "destination": 134994390, "path": [[2073.439276493616, 3753.2994185767166], [2448.139276488348, 3754.6994185788662]]}, {"length": 55.5740192077, "source": 2267910086, "destination": 2267910132, "path": [[-12213.360723507094, -7358.800581421576], [-12469.510723505551, -7372.000581423066], [-12541.910723506078, -7381.65058142215]]}, {"length": 104.146311982, "source": 2267910086, "destination": 2267910068, "path": [[-12213.360723507094, -7358.800581421576], [-12167.760723507115, -7518.10058142155], [-12167.110723510177, -7534.8505814218925], [-12171.110723507183, -7553.150581422586], [-12270.16072351006, -7812.550581423494]]}, {"length": 32.3843948506, "source": 2267910086, "destination": 2267910085, "path": [[-12213.360723507094, -7358.800581421576], [-12035.710723509397, -7302.800581420854]]}, {"length": 139.838924692, "source": 135038393, "destination": 135031769, "path": [[-11382.560723511404, -3037.2005814207623], [-11382.310723504928, -3666.0005814219685]]}, {"length": 87.21141042, "source": 135038393, "destination": 135046070, "path": [[-11382.560723511404, -3037.2005814207623], [-11900.76072350621, -3036.0505814215344]]}, {"length": 166.736499414, "source": 135038393, "destination": 135020785, "path": [[-11382.560723511404, -3037.2005814207623], [-11378.360723504955, -2981.2505814206247], [-11370.61072351031, -2934.5005814214173], [-11165.060723506314, -2306.9005814235766]]}, {"length": 21.5154773249, "source": 2291254718, "destination": 2280505635, "path": [[-9508.610723507616, 4261.199418579054], [-9504.710723511778, 4261.199418579054], [-9440.61072350877, 4261.349418577254], [-9380.810723506273, 4262.049418578328]]}, {"length": 124.999862819, "source": 2291254718, "destination": 134957917, "path": [[-9508.610723507616, 4261.199418579054], [-9704.660723507175, 4261.099418577885], [-10069.060723509438, 4259.249418577582], [-10251.160723505847, 4257.499418578447]]}, {"length": 10.8193076761, "source": 2291254718, "destination": 2291254719, "path": [[-9508.610723507616, 4261.199418579054], [-9508.810723509952, 4212.549418578959]]}, {"length": 0.0, "source": 2291254719, "destination": 2291254720, "path": [[-9508.810723509952, 4212.549418578959], [-9509.210723507522, 4212.549418578959]]}, {"length": 21.5540070395, "source": 2291254719, "destination": 2280505648, "path": [[-9508.810723509952, 4212.549418578959], [-9481.260723511297, 4212.649418576575], [-9380.76072350924, 4213.19941857945]]}, {"length": 10.8193076761, "source": 2291254719, "destination": 2291254718, "path": [[-9508.810723509952, 4212.549418578959], [-9508.610723507616, 4261.199418579054]]}, {"length": 29.1245407193, "source": 2587010496, "destination": 2587010496, "path": [[1415.8392764898053, -2271.650581423756], [1368.8892764918137, -2271.650581423756], [1368.8892764918137, -2302.100581420774], [1414.4892764917927, -2302.100581420774], [1415.8392764898053, -2271.650581423756]]}, {"length": 29.1245407193, "source": 2587010496, "destination": 2587010496, "path": [[1415.8392764898053, -2271.650581423756], [1414.4892764917927, -2302.100581420774], [1368.8892764918137, -2302.100581420774], [1368.8892764918137, -2271.650581423756], [1415.8392764898053, -2271.650581423756]]}, {"length": 58.8409879996, "source": 2587010496, "destination": 2587010507, "path": [[1415.8392764898053, -2271.650581423756], [1427.889276492067, -2265.6005814205573], [1445.3392764934847, -2261.5505814229664], [1675.9892764923734, -2261.5505814229664], [1762.2392764948813, -2262.550581423994]]}, {"length": 13.3958253891, "source": 2291254721, "destination": 2280505648, "path": [[-9301.46072350624, 4211.099418576225], [-9330.410723507044, 4214.099418579309], [-9380.76072350924, 4213.19941857945]]}, {"length": 8.73251720869, "source": 2291254721, "destination": 2292322434, "path": [[-9301.46072350624, 4211.099418576225], [-9271.51072350796, 4207.999418579078], [-9249.860723507198, 4207.549418577372]]}, {"length": 236.342115303, "source": 2291254721, "destination": 134959142, "path": [[-9301.46072350624, 4211.099418576225], [-9301.610723511545, 3946.049418576791], [-9299.91072350589, 3705.64941857765], [-9296.760723508158, 3450.6494185784222], [-9296.11072351122, 3419.2994185779926], [-9295.310723508976, 3386.4994185783817], [-9294.3107235115, 3366.649418577339], [-9292.91072350935, 3346.8494185768805], [-9293.01072351052, 3326.4994185771], [-9295.810723507713, 3148.4494185782805]]}, {"length": 11.397788404, "source": 2291254721, "destination": 134957919, "path": [[-9301.46072350624, 4211.099418576225], [-9302.060723506145, 4262.349418578282]]}, {"length": 25.4785491455, "source": 2291254723, "destination": 2292322434, "path": [[-9098.51072351131, 4207.2994185780035], [-9218.110723509199, 4206.8994185768815], [-9249.860723507198, 4207.549418577372]]}, {"length": 60.875675636, "source": 2069120452, "destination": 134960048, "path": [[2811.0892764914297, 3152.7994185793773], [2449.439276489329, 3152.6994185782087]]}, {"length": 61.3422435806, "source": 2069120452, "destination": 134959964, "path": [[2811.0892764914297, 3152.7994185793773], [3089.7892764940593, 3152.8994185769934], [3174.689276491449, 3161.849418578555]]}, {"length": 54.9193064057, "source": 2069120452, "destination": 2069120453, "path": [[2811.0892764914297, 3152.7994185793773], [2811.0892764914297, 3399.749418576903]]}, {"length": 61.1543370339, "source": 2069120453, "destination": 2069120410, "path": [[2811.0892764914297, 3399.749418576903], [3174.3892764950488, 3400.7494185779306]]}, {"length": 54.9193064057, "source": 2069120453, "destination": 2069120452, "path": [[2811.0892764914297, 3399.749418576903], [2811.0892764914297, 3152.7994185793773]]}, {"length": 140.639529234, "source": 2069120453, "destination": 2069120311, "path": [[2811.0892764914297, 3399.749418576903], [2811.0892764914297, 4032.1494185775464]]}, {"length": 58.5893155697, "source": 2069120455, "destination": 135088456, "path": [[4650.78927648932, 4047.3494185775394], [4649.139276494907, 4310.799418576039]]}, {"length": 142.898450956, "source": 2069120455, "destination": 2069120273, "path": [[4650.78927648932, 4047.3494185775394], [4654.8892764946, 3404.799418579074]]}, {"length": 54.8094077232, "source": 2069120455, "destination": 2069120441, "path": [[4650.78927648932, 4047.3494185775394], [4325.189276492836, 4046.2494185788955]]}, {"length": 58.8409879996, "source": 2587010507, "destination": 2587010496, "path": [[1762.2392764948813, -2262.550581423994], [1675.9892764923734, -2261.5505814229664], [1445.3392764934847, -2261.5505814229664], [1427.889276492067, -2265.6005814205573], [1415.8392764898053, -2271.650581423756]]}, {"length": 93.8382842147, "source": 2587010507, "destination": 2587010388, "path": [[1762.2392764948813, -2262.550581423994], [1760.0392764904882, -1840.6005814206594]]}, {"length": 109.316738157, "source": 2587010507, "destination": 135047215, "path": [[1762.2392764948813, -2262.550581423994], [1764.839276489738, -2754.1005814235577]]}, {"length": 5.09300058575, "source": 2291254735, "destination": 2291254720, "path": [[-9509.660723509227, 4189.649418577801], [-9509.210723507522, 4212.549418578959]]}, {"length": 15.159972781, "source": 1930503632, "destination": 2074159280, "path": [[9509.939276490797, -9515.300581423247], [9597.389276493119, -9498.900581423442]]}, {"length": 14.7690975706, "source": 1930503632, "destination": 1999574945, "path": [[9509.939276490797, -9515.300581423247], [9597.689276489518, -9513.750581422897]]}, {"length": 105.70045772, "source": 1930503632, "destination": 135022935, "path": [[9509.939276490797, -9515.300581423247], [9431.539276491207, -9517.100581422967], [9369.939276488993, -9520.050581421912], [9320.239276490838, -9527.250581420787], [9280.689276494059, -9542.40058142375], [9253.039276494235, -9570.350581423525], [9241.33927649251, -9604.300581422365], [9237.389276492537, -9638.900581421694], [9235.789276495154, -9681.900581423264], [9237.08927648903, -9758.650581421336], [9241.389276489543, -9831.500581423568]]}, {"length": 26.0309272525, "source": 2587010513, "destination": 2587010400, "path": [[1314.6392764937787, -2251.950581420914], [1305.839276490417, -2236.150581421015], [1301.8392764934106, -2217.9005814209063], [1302.4392764933168, -2136.5005814217852]]}, {"length": 9.46406746527, "source": 2139774318, "destination": 2139774320, "path": [[-9913.910723511777, 308.19941857629374], [-9914.860723505115, 350.74941857615727]]}, {"length": 98.4767621907, "source": 2139774318, "destination": 2282033848, "path": [[-9913.910723511777, 308.19941857629374], [-9883.010723505948, 307.7994185787247], [-9537.010723505546, 309.7494185766436], [-9369.210723505716, 309.4994185772748], [-9328.860723506694, 308.54941857683116]]}, {"length": 48.1391686921, "source": 2139774318, "destination": 2080739029, "path": [[-9913.910723511777, 308.19941857629374], [-10088.510723505806, 314.24941857949307], [-10199.660723507975, 317.3494185766401]]}, {"length": 5.50543659071, "source": 1930503644, "destination": 1999574944, "path": [[9600.739276493186, -9567.850581422732], [9598.539276488793, -9543.150581421854]]}, {"length": 265.549223837, "source": 1930503644, "destination": 1930503811, "path": [[9600.739276493186, -9567.850581422732], [9580.989276493312, -9567.250581422826], [9398.689276494566, -9569.350581422497], [9371.089276491773, -9570.850581422263], [9355.689276489444, -9573.550581421841], [9339.089276494406, -9580.100581423778], [9325.689276494131, -9589.35058142174], [9317.389276489506, -9598.900581423208], [9307.939276489207, -9613.850581423832], [9301.23927648907, -9632.050581423357], [9296.089276489283, -9654.150581422271], [9294.88927648947, -9680.400581423499], [9295.289276494146, -9715.050581423413], [9297.68927649377, -9777.750581420718], [9300.039276489259, -9841.950581421344], [9301.989276494282, -9864.650581423717], [9306.189276493626, -9894.400581423213], [9310.939276488738, -9918.050581422478], [9316.539276490232, -9940.400581420761], [9323.789276493244, -9964.900581422853], [9331.889276488426, -9986.00058142074], [9341.089276489356, -10006.050581420566], [9354.539276493768, -10032.00058142184], [9371.889276494017, -10062.45058142241], [9386.889276491673, -10085.150581421232], [9412.139276491871, -10119.200581421239], [9438.93927649242, -10149.350581421857], [9464.23927648965, -10173.550581423995], [9484.339276490062, -10190.550581423708], [9511.589276492316, -10212.350581422668], [9548.639276488302, -10239.200581423802], [9582.189276493125, -10260.400581422857], [9610.589276491055, -10277.1505814232], [9635.089276493147, -10289.350581423661], [9664.68927649089, -10300.700581421295], [9693.889276491063, -10307.900581423724], [9716.739276491637, -10310.550581422718], [9748.339276491435, -10312.050581422483], [9879.139276492311, -10312.300581421852]]}, {"length": 62.7562701372, "source": 4719494628, "destination": 4719820337, "path": [[-2079.910723509215, -2375.8005814222824], [-1707.110723508265, -2369.80058142322]]}, {"length": 4.32763976731, "source": 4719494628, "destination": 2585900362, "path": [[-2079.910723509215, -2375.8005814222824], [-2105.61072351112, -2376.2005814234044]]}, {"length": 141.495363147, "source": 4719494628, "destination": 4719494637, "path": [[-2079.910723509215, -2375.8005814222824], [-2082.8607235117147, -2236.500581421552], [-2070.0607235113466, -2190.7505814233728], [-2041.5607235051425, -2162.150581423106], [-1990.3607235107756, -2139.2505814219476], [-1893.210723508787, -2114.1505814235015], [-1858.9107235058577, -2093.9005814213374], [-1803.6607235103475, -2049.450581420587], [-1705.9107235084525, -1975.950581421415], [-1632.0607235087436, -1901.1005814206783]]}, {"length": 10.0051748545, "source": 2587010533, "destination": 2587010621, "path": [[1323.2892764918347, -2337.6505814205475], [1312.5392764905541, -2347.8005814219214], [1303.1892764914232, -2364.0505814235266], [1301.8392764934106, -2378.250581422492]]}, {"length": 4.8815647779, "source": 2587010541, "destination": 2587010619, "path": [[1334.939276489422, -2403.5505814232747], [1305.9392764915856, -2403.850581423228]]}, {"length": 34.0853899239, "source": 2587010543, "destination": 2587010617, "path": [[1053.7392764931042, -2406.6505814239745], [1256.2392764934316, -2404.100581422597]]}, {"length": 30.4088429228, "source": 2587010543, "destination": 2587010578, "path": [[1053.7392764931042, -2406.6505814239745], [1171.7392764936108, -2510.200581422595]]}, {"length": 53.7251976817, "source": 2587010543, "destination": 2587010594, "path": [[1053.7392764931042, -2406.6505814239745], [1056.389276492098, -2610.6505814205148], [1106.0392764932203, -2610.6505814205148]]}, {"length": 28.7962314195, "source": 2587010543, "destination": 2568599607, "path": [[1053.7392764931042, -2406.6505814239745], [994.2892764911448, -2408.7005814230624], [982.6892764905892, -2408.9005814218467], [882.7392764914066, -2410.6505814209813]]}, {"length": 128.70955014, "source": 135079428, "destination": 134968314, "path": [[10347.239276491393, 504.64941857697454], [10343.839276494293, 1083.3994185794893]]}, {"length": 203.803090721, "source": 135079432, "destination": 134959818, "path": [[10321.589276493625, 4110.799418576506], [10329.839276494113, 3194.399418578797]]}, {"length": 55.9466968032, "source": 135079432, "destination": 2062743178, "path": [[10321.589276493625, 4110.799418576506], [10077.139276489788, 4109.79941857903], [9989.239276492866, 4109.749418578445]]}, {"length": 185.477513393, "source": 1937679960, "destination": 1937680639, "path": [[4366.589276493471, -6019.450581423058], [4365.639276493028, -6087.650581420689], [4369.4392764948025, -6169.250581422148], [4371.339276488584, -6214.000581422852], [4373.589276490009, -6258.550581421218], [4373.289276493608, -6294.900581423235], [4370.739276488677, -6334.350581422399], [4368.489276494358, -6361.050581421779], [4364.689276492583, -6395.250581423539], [4363.389276491603, -6433.7505814222595], [4366.589276493471, -6534.85058142067], [4368.789276490759, -6566.600581422222], [4370.739276488677, -6590.7005814231925], [4371.339276488584, -6607.80058142052], [4368.789276490759, -6646.750581420946], [4366.889276489872, -6706.000581420568], [4365.939276489427, -6751.250581423563], [4364.339276492046, -6796.950581421157], [4363.58927649394, -6852.900581421295]]}, {"length": 11.4408028021, "source": 1937679960, "destination": 1937679933, "path": [[4366.589276493471, -6019.450581423058], [4363.789276489171, -5968.050581422802]]}, {"length": 20.4713021272, "source": 1937679960, "destination": 1937679967, "path": [[4366.589276493471, -6019.450581423058], [4488.239276490447, -6019.150581423105]]}, {"length": 11.2753562132, "source": 2284152338, "destination": 2281976594, "path": [[-7058.8607235109175, 1495.4994185778503], [-7059.110723510286, 1444.7994185786683]]}, {"length": 250.563722403, "source": 2284152338, "destination": 134982220, "path": [[-7058.8607235109175, 1495.4994185778503], [-7193.110723505924, 1495.899418578972], [-7303.860723510525, 1495.7994185778034], [-7570.160723510355, 1494.2494185774535], [-8547.46072350565, 1490.349418578063]]}, {"length": 34.2953509259, "source": 2284152338, "destination": 135012807, "path": [[-7058.8607235109175, 1495.4994185778503], [-6855.110723506641, 1496.1994185789251]]}, {"length": 4.27947194027, "source": 2587010591, "destination": 2587010594, "path": [[1106.089276490252, -2629.9005814216516], [1106.0392764932203, -2610.6505814205148]]}, {"length": 65.9136200099, "source": 2587010594, "destination": 2587010578, "path": [[1106.0392764932203, -2610.6505814205148], [1135.5392764897942, -2610.6505814205148], [1151.6392764931993, -2605.600581421896], [1170.3892764884927, -2599.5005814216656], [1186.4892764918977, -2596.45058142155], [1211.9892764914653, -2599.5005814216656], [1236.1392764930201, -2606.6005814229243], [1257.5892764914443, -2611.650581421543], [1283.0392764939802, -2612.700581423155], [1301.8392764934106, -2613.7005814206304], [1281.7392764929991, -2594.4005814224624], [1258.939276489457, -2575.150581421326], [1228.0892764948703, -2554.85058142213], [1194.5392764900475, -2530.5005814217907], [1171.7392764936108, -2510.200581422595]]}, {"length": 25.0660376562, "source": 2587010594, "destination": 2587010578, "path": [[1106.0392764932203, -2610.6505814205148], [1110.0392764902267, -2597.4505814225777], [1120.7892764915073, -2579.2005814224694], [1135.5392764897942, -2555.850581423158], [1150.2892764951866, -2534.550581422934], [1171.7392764936108, -2510.200581422595]]}, {"length": 4.27947194027, "source": 2587010594, "destination": 2587010591, "path": [[1106.0392764932203, -2610.6505814205148], [1106.089276490252, -2629.9005814216516]]}, {"length": 53.7251976817, "source": 2587010594, "destination": 2587010543, "path": [[1106.0392764932203, -2610.6505814205148], [1056.389276492098, -2610.6505814205148], [1053.7392764931042, -2406.6505814239745]]}, {"length": 25.2065639938, "source": 4719445539, "destination": 3009796720, "path": [[3246.2392764927017, -4977.25058142251], [3096.539276491228, -4973.450581420735]]}, {"length": 45.9516084575, "source": 4719445539, "destination": 1295456170, "path": [[3246.2392764927017, -4977.25058142251], [3246.0892764945015, -4939.650581423649], [3250.5892764902455, -4905.100581421351], [3259.489276494776, -4814.600581422468], [3262.58927648837, -4771.100581422161]]}, {"length": 10.1188459529, "source": 4719445539, "destination": 135057523, "path": [[3246.2392764927017, -4977.25058142251], [3246.2892764897333, -4984.5505814225535], [3247.0892764919768, -5022.75058142132]]}, {"length": 97.6633454907, "source": 3380364837, "destination": 3380364842, "path": [[-2577.9107235095466, -1672.3005814220926], [-2577.0107235061346, -1319.6505814221382], [-2462.710723506234, -1319.7505814233068]]}, {"length": 20.4476415995, "source": 3380364837, "destination": 2585900397, "path": [[-2577.9107235095466, -1672.3005814220926], [-2570.9107235059037, -1670.7005814211584], [-2498.510723505376, -1668.7005814226552], [-2456.9607235065405, -1671.7005814221864]]}, {"length": 68.8716409487, "source": 3380364837, "destination": 2585900382, "path": [[-2577.9107235095466, -1672.3005814220926], [-2601.7607235075957, -1677.8005814224173], [-2639.310723509425, -1693.0505814229946], [-2662.1107235058616, -1706.2505814209317], [-2678.6107235068357, -1725.8005814220212], [-2659.8607235115423, -1758.2505814210947], [-2651.810723506287, -1785.6505814215495], [-2646.3607235100994, -1823.7005814221163], [-2642.6607235094934, -1935.5505814218077]]}, {"length": 12.8766186959, "source": 3380364839, "destination": 3380364842, "path": [[-2462.2107235074964, -1377.6505814213635], [-2462.710723506234, -1319.7505814233068]]}, {"length": 12.1539601513, "source": 3380364840, "destination": 3380364843, "path": [[-2343.260723506546, -1412.5005814236147], [-2343.8107235094208, -1357.8505814209052]]}, {"length": 28.4239857936, "source": 3380364842, "destination": 3380364843, "path": [[-2462.710723506234, -1319.7505814233068], [-2344.3107235081584, -1319.6505814221382], [-2343.8107235094208, -1357.8505814209052]]}, {"length": 97.6633454907, "source": 3380364842, "destination": 3380364837, "path": [[-2462.710723506234, -1319.7505814233068], [-2577.0107235061346, -1319.6505814221382], [-2577.9107235095466, -1672.3005814220926]]}, {"length": 12.8766186959, "source": 3380364842, "destination": 3380364839, "path": [[-2462.710723506234, -1319.7505814233068], [-2462.2107235074964, -1377.6505814213635]]}, {"length": 12.1539601513, "source": 3380364843, "destination": 3380364840, "path": [[-2343.8107235094208, -1357.8505814209052], [-2343.260723506546, -1412.5005814236147]]}, {"length": 28.4239857936, "source": 3380364843, "destination": 3380364842, "path": [[-2343.8107235094208, -1357.8505814209052], [-2344.3107235081584, -1319.6505814221382], [-2462.710723506234, -1319.7505814233068]]}, {"length": 55.6755638374, "source": 3380364843, "destination": 2585900428, "path": [[-2343.8107235094208, -1357.8505814209052], [-2013.0107235090122, -1357.1005814227988]]}, {"length": 96.3696112945, "source": 2352170540, "destination": 2351111997, "path": [[-2050.2607235073356, 6450.949418578489], [-2622.710723507282, 6449.0494185776015]]}, {"length": 14.7220338835, "source": 2352170540, "destination": 2352259854, "path": [[-2050.2607235073356, 6450.949418578489], [-1962.8107235050152, 6450.599418577951]]}, {"length": 48.0256948173, "source": 2352170540, "destination": 2352259893, "path": [[-2050.2607235073356, 6450.949418578489], [-2048.860723505186, 6234.999418577303]]}, {"length": 15.0777073692, "source": 3380364845, "destination": 3380364844, "path": [[-2332.8107235087714, -1593.500581421381], [-2274.0107235108553, -1644.650581422269]]}, {"length": 14.6000077181, "source": 3380364845, "destination": 3380364846, "path": [[-2332.8107235087714, -1593.500581421381], [-2333.310723507509, -1527.8505814215748]]}, {"length": 7.52329606855, "source": 3380364845, "destination": 3380364847, "path": [[-2332.8107235087714, -1593.500581421381], [-2377.5107235053383, -1593.5505814219653]]}, {"length": 14.6000077181, "source": 3380364846, "destination": 3380364845, "path": [[-2333.310723507509, -1527.8505814215748], [-2332.8107235087714, -1593.500581421381]]}, {"length": 10.57070973, "source": 3380364847, "destination": 2585900424, "path": [[-2377.5107235053383, -1593.5505814219653], [-2373.8107235047323, -1546.1005814216833]]}, {"length": 7.52329606855, "source": 3380364847, "destination": 3380364845, "path": [[-2377.5107235053383, -1593.5505814219653], [-2332.8107235087714, -1593.500581421381]]}, {"length": 11.9427432444, "source": 3380364847, "destination": 2585900437, "path": [[-2377.5107235053383, -1593.5505814219653], [-2377.810723508844, -1597.650581423693], [-2381.8607235099876, -1616.9005814212767], [-2389.860723511106, -1634.15058142391], [-2397.9107235092556, -1644.3005814217315]]}, {"length": 27.5758083258, "source": 2587010617, "destination": 2587010578, "path": [[1256.2392764934316, -2404.100581422597], [1233.4392764898894, -2436.100581423517], [1222.6892764886088, -2450.300581422482], [1211.9892764914653, -2463.500581423972], [1195.8892764951656, -2483.800581423168], [1171.7392764936108, -2510.200581422595]]}, {"length": 8.36509918352, "source": 2587010617, "destination": 2587010619, "path": [[1256.2392764934316, -2404.100581422597], [1305.9392764915856, -2403.850581423228]]}, {"length": 9.73805936881, "source": 2587010617, "destination": 2587010621, "path": [[1256.2392764934316, -2404.100581422597], [1267.63927649165, -2395.5005814215724], [1279.6892764939116, -2389.4005814213415], [1294.8392764897676, -2384.400581423307], [1301.8392764934106, -2378.250581422492]]}, {"length": 34.0853899239, "source": 2587010617, "destination": 2587010543, "path": [[1256.2392764934316, -2404.100581422597], [1053.7392764931042, -2406.6505814239745]]}, {"length": 202.949790778, "source": 1937679931, "destination": 1937679912, "path": [[5551.089276494281, -5922.400581422238], [5550.439276490238, -5869.700581421001], [5548.6392764905195, -5804.350581421148], [5547.739276494212, -5733.900581422091], [5547.739276494212, -5694.10058142239], [5546.389276489094, -5639.30058142148], [5543.239276491363, -5009.850581423336]]}, {"length": 50.1903441485, "source": 1937679931, "destination": 135035915, "path": [[5551.089276494281, -5922.400581422238], [5471.939276489479, -5925.450581422354], [5252.939276488178, -5926.200581424013]]}, {"length": 203.346449335, "source": 1937679931, "destination": 1937680637, "path": [[5551.089276494281, -5922.400581422238], [5551.789276488251, -5977.6005814207165], [5552.239276489956, -6014.750581421424], [5553.139276493368, -6044.700581423257], [5550.889276491944, -6084.850581423496], [5552.689276491663, -6132.1505814220245], [5551.789276488251, -6169.9505814232225], [5548.1892764888125, -6216.900581421214], [5545.489276492788, -6253.3505814208465], [5544.139276494775, -6290.45058142097], [5545.039276491081, -6330.250581420671], [5546.389276489094, -6376.550581421725], [5545.489276492788, -6434.40058142275], [5547.739276494212, -6471.85058142341], [5549.5392764939315, -6508.300581423044], [5548.1892764888125, -6555.600581421572], [5549.5392764939315, -6721.000581421777], [5550.439276490238, -6776.500581423761], [5551.189276488344, -6836.450581420905]]}, {"length": 50.1129607236, "source": 1937679931, "destination": 135035917, "path": [[5551.089276494281, -5922.400581422238], [5848.839276488605, -5918.600581424016]]}, {"length": 50.0733784413, "source": 1937679932, "destination": 135035912, "path": [[4362.139276494759, -5935.550581423144], [4064.5892764885616, -5937.20058142111]]}, {"length": 7.23380582723, "source": 1937679932, "destination": 1937679933, "path": [[4362.139276494759, -5935.550581423144], [4363.789276489171, -5968.050581422802]]}, {"length": 49.7452605275, "source": 1937679932, "destination": 135010293, "path": [[4362.139276494759, -5935.550581423144], [4657.739276488826, -5933.950581422209]]}, {"length": 11.4408028021, "source": 1937679933, "destination": 1937679960, "path": [[4363.789276489171, -5968.050581422802], [4366.589276493471, -6019.450581423058]]}, {"length": 21.8462408925, "source": 1937679933, "destination": 1937679944, "path": [[4363.789276489171, -5968.050581422802], [4454.139276489855, -5966.75058142182], [4493.589276492571, -5967.000581421189]]}, {"length": 7.23380582723, "source": 1937679933, "destination": 1937679932, "path": [[4363.789276489171, -5968.050581422802], [4362.139276494759, -5935.550581423144]]}, {"length": 50.7653408605, "source": 1937679935, "destination": 1937679936, "path": [[5252.13927649304, -5957.750581423226], [4950.539276492805, -5962.650581423645]]}, {"length": 196.271905629, "source": 1937679935, "destination": 135039786, "path": [[5252.13927649304, -5957.750581423226], [5256.639276488784, -6840.300581423264]]}, {"length": 7.01752028455, "source": 1937679935, "destination": 135035915, "path": [[5252.13927649304, -5957.750581423226], [5252.939276488178, -5926.200581424013]]}, {"length": 7.38302302055, "source": 1937679936, "destination": 1932196124, "path": [[4950.539276492805, -5962.650581423645], [4950.539276492805, -5929.450581422912]]}, {"length": 196.11761512, "source": 1937679936, "destination": 1932196205, "path": [[4950.539276492805, -5962.650581423645], [4950.539276492805, -6022.650581421374], [4950.139276495236, -6092.100581422955], [4949.789276494698, -6157.400581422224], [4950.939276490373, -6196.50058142085], [4952.93927649243, -6233.500581423357], [4952.539276494861, -6299.050581421994], [4952.93927649243, -6374.850581423175], [4957.339276494111, -6470.800581421799], [4960.889276489411, -6579.050581422052], [4960.889276489411, -6645.550581421134], [4959.689276489598, -6676.800581423948], [4958.089276492217, -6736.350581423522], [4958.88927649446, -6844.350581420855]]}, {"length": 49.2518895325, "source": 1937679936, "destination": 1937679941, "path": [[4950.539276492805, -5962.650581423645], [4938.289276488205, -5962.900581423014], [4826.289276493867, -5963.900581424042], [4717.539276491323, -5965.550581422008], [4657.889276494132, -5965.250581422055]]}, {"length": 50.7653408605, "source": 1937679936, "destination": 1937679935, "path": [[4950.539276492805, -5962.650581423645], [5252.13927649304, -5957.750581423226]]}, {"length": 124.907725647, "source": 134948420, "destination": 134948449, "path": [[-11060.910723507788, 341.6994185769795], [-11334.110723510094, 318.89941857699], [-11419.710723508559, 310.8494185788402], [-11489.210723510723, 296.3494185763693], [-11527.360723505353, 279.44941857782624], [-11560.76072350487, 257.2994185783273], [-11587.56072350542, 234.29941857600056], [-11608.660723510411, 213.39941857689837], [-11621.660723506011, 198.3994185792426], [-11632.66072350666, 182.89941857929648], [-11644.160723506047, 157.89941857846657], [-11650.660723510953, 110.39941857760027]]}, {"length": 100.419984199, "source": 134948420, "destination": 134971372, "path": [[-11060.910723507788, 341.6994185769795], [-11287.760723504904, 342.2494185763014], [-11657.510723509291, 339.09941857857007]]}, {"length": 51.8712466901, "source": 135038533, "destination": 134957807, "path": [[-4631.260723506613, -6340.650581421414], [-4625.260723507552, -6107.450581421148]]}, {"length": 11.2657601636, "source": 1937679944, "destination": 1937679962, "path": [[4493.589276492571, -5967.000581421189], [4494.589276490046, -6017.65058142334]]}, {"length": 21.8462408925, "source": 1937679944, "destination": 1937679933, "path": [[4493.589276492571, -5967.000581421189], [4454.139276489855, -5966.75058142182], [4363.789276489171, -5968.050581422802]]}, {"length": 27.6515691447, "source": 1937679944, "destination": 1937679941, "path": [[4493.589276492571, -5967.000581421189], [4614.739276490809, -5966.2005814224985], [4657.889276494132, -5965.250581422055]]}, {"length": 45.9573362872, "source": 2587010637, "destination": 2568600069, "path": [[206.48927649347115, -2487.3505814220207], [202.43927649232774, -2612.200581420865], [199.789276493334, -2655.8005814223407], [191.73927649518419, -2679.150581421652], [179.43927649355373, -2689.6005814229793]]}, {"length": 17.1028044096, "source": 2587010637, "destination": 2568600013, "path": [[206.48927649347115, -2487.3505814220207], [215.88927648963363, -2470.10058142294], [227.93927649189527, -2458.950581420538], [245.389276493313, -2449.8005814237445], [280.98927649011785, -2443.050581423023]]}, {"length": 7.93605701905, "source": 2587010637, "destination": 2587010645, "path": [[206.48927649347115, -2487.3505814220207], [194.4392764912095, -2452.8505814238597]]}, {"length": 9.16655552457, "source": 2587010645, "destination": 2587010648, "path": [[194.4392764912095, -2452.8505814238597], [139.98927649083726, -2453.850581421335]]}, {"length": 7.93605701905, "source": 2587010645, "destination": 2587010637, "path": [[194.4392764912095, -2452.8505814238597], [206.48927649347115, -2487.3505814220207]]}, {"length": 18.8656554365, "source": 2587010645, "destination": 2568599493, "path": [[194.4392764912095, -2452.8505814238597], [197.43927649074067, -2368.0505814205335]]}, {"length": 9.16655552457, "source": 2587010648, "destination": 2587010645, "path": [[139.98927649083726, -2453.850581421335], [194.4392764912095, -2452.8505814238597]]}, {"length": 11.2657601636, "source": 1937679962, "destination": 1937679944, "path": [[4494.589276490046, -6017.65058142334], [4493.589276492571, -5967.000581421189]]}, {"length": 7.0172271482, "source": 1937679962, "destination": 1937679985, "path": [[4494.589276490046, -6017.65058142334], [4503.189276491071, -6018.650581420815], [4510.839276491652, -6022.300581420836], [4516.339276491976, -6029.100581422143], [4517.889276492326, -6035.650581420527], [4518.139276491695, -6039.150581422347]]}, {"length": 1.12329118081, "source": 1937679962, "destination": 1937679967, "path": [[4494.589276490046, -6017.65058142334], [4488.239276490447, -6019.150581423105]]}, {"length": 20.4713021272, "source": 1937679967, "destination": 1937679960, "path": [[4488.239276490447, -6019.150581423105], [4366.589276493471, -6019.450581423058]]}, {"length": 1.12329118081, "source": 1937679967, "destination": 1937679962, "path": [[4488.239276490447, -6019.150581423105], [4494.589276490046, -6017.65058142334]]}, {"length": 5.67728724564, "source": 1937679967, "destination": 1937679986, "path": [[4488.239276490447, -6019.150581423105], [4483.939276489935, -6020.200581421164], [4477.539276493303, -6025.000581423967], [4474.339276491435, -6031.050581423614], [4473.78927648856, -6037.10058142326], [4473.78927648856, -6039.800581422838]]}, {"length": 36.8127604842, "source": 134948449, "destination": 135023030, "path": [[-11650.660723510953, 110.39941857760027], [-11646.210723505135, 71.34941857600552], [-11636.060723510866, 26.399418576517064], [-11610.060723505456, -51.900581421904235]]}, {"length": 134.326725719, "source": 2062743142, "destination": 2062743232, "path": [[9997.289276491018, 1687.949418577972], [10002.689276490173, 1083.9494185788112]]}, {"length": 50.1259081365, "source": 2062743142, "destination": 135012848, "path": [[9997.289276491018, 1687.949418577972], [9699.489276492557, 1688.3994185761253]]}, {"length": 57.6582513535, "source": 2062743142, "destination": 135012851, "path": [[9997.289276491018, 1687.949418577972], [10339.839276490182, 1687.39941857865]]}, {"length": 131.535773379, "source": 2062743142, "destination": 2062743183, "path": [[9997.289276491018, 1687.949418577972], [9991.939276488893, 2279.3994185761335]]}, {"length": 58.0911279837, "source": 135038574, "destination": 135038582, "path": [[6174.789276492731, 2656.899418578718], [6175.1892764903005, 2699.69941857795], [6175.389276492638, 2723.549418575999], [6176.58927649245, 2861.599418576333], [6176.98927649002, 2918.099418579345]]}, {"length": 185.162895187, "source": 135038574, "destination": 134959983, "path": [[6174.789276492731, 2656.899418578718], [6234.839276494597, 2667.799418578198], [6289.989276488939, 2680.1994185774447], [6347.989276491717, 2698.999418576875], [6355.689276489329, 2701.9494185793747], [6374.989276494603, 2709.3994185776182], [6426.939276494181, 2729.249418578661], [6470.339276489767, 2748.749418579166], [6535.23927649502, 2786.4494185791955], [6597.439276490036, 2828.449418576184], [6661.13927648837, 2881.299418579175], [6727.589276493973, 2946.8994185783968], [6958.3892764910615, 3203.199418578606]]}, {"length": 7.0172271482, "source": 1937679985, "destination": 1937679962, "path": [[4518.139276491695, -6039.150581422347], [4517.889276492326, -6035.650581420527], [4516.339276491976, -6029.100581422143], [4510.839276491652, -6022.300581420836], [4503.189276491071, -6018.650581420815], [4494.589276490046, -6017.65058142334]]}, {"length": 5.67728724564, "source": 1937679986, "destination": 1937679967, "path": [[4473.78927648856, -6039.800581422838], [4473.78927648856, -6037.10058142326], [4474.339276491435, -6031.050581423614], [4477.539276493303, -6025.000581423967], [4483.939276489935, -6020.200581421164], [4488.239276490447, -6019.150581423105]]}, {"length": 7.06105211777, "source": 1951958644, "destination": 1930503832, "path": [[10075.939276489975, -10421.450581421965], [10076.239276493481, -10389.700581423966]]}, {"length": 32.5222067948, "source": 1951958644, "destination": 134937758, "path": [[10075.939276489975, -10421.450581421965], [9990.83927649025, -10420.60058142269], [9882.939276494086, -10414.700581421243]]}, {"length": 58.0911279837, "source": 135038582, "destination": 135038574, "path": [[6176.98927649002, 2918.099418579345], [6176.58927649245, 2861.599418576333], [6175.389276492638, 2723.549418575999], [6175.1892764903005, 2699.69941857795], [6174.789276492731, 2656.899418578718]]}, {"length": 10.2424728512, "source": 135038582, "destination": 4224950614, "path": [[6176.98927649002, 2918.099418579345], [6116.139276493015, 2918.149418576377]]}, {"length": 34.014452511, "source": 135038582, "destination": 4224950639, "path": [[6176.98927649002, 2918.099418579345], [6177.139276488219, 3071.0494185761663]]}, {"length": 2.18969762575, "source": 2289072833, "destination": 2289072832, "path": [[-7989.810723508128, 6363.74941857909], [-7976.810723505423, 6363.74941857909]]}, {"length": 262.939318102, "source": 3146557051, "destination": 2424998403, "path": [[-4202.560723506111, -1263.7505814225847], [-4203.410723505385, -1311.800581422773], [-4200.160723506486, -1871.4005814217671], [-4170.010723505868, -1890.000581422413], [-4149.260723508519, -1926.5505814232142], [-4146.5607235053885, -2056.450581420677], [-4169.36072350893, -2090.4505814236527], [-4173.110723506568, -2167.4505814210934], [-4151.260723510575, -2189.4005814218076], [-4147.910723510506, -2325.9005814217917], [-4147.910723510506, -2348.750581422365], [-4155.260723507581, -2358.4005814214493], [-4170.710723506943, -2361.4505814215645], [-4206.210723509685, -2362.9505814213303], [-4207.310723508328, -2386.3005814206417]]}, {"length": 74.9136854066, "source": 3146557051, "destination": 134957822, "path": [[-4202.560723506111, -1263.7505814225847], [-4398.260723505132, -1264.4505814236595], [-4647.660723506419, -1265.3505814235189]]}, {"length": 11.3017033374, "source": 3146557051, "destination": 135016374, "path": [[-4202.560723506111, -1263.7505814225847], [-4135.4107235065385, -1263.5005814232159]]}, {"length": 59.0873318791, "source": 135030399, "destination": 134930849, "path": [[9988.839276488194, -11367.600581422721], [9902.339276493421, -11393.100581422288], [9837.839276492843, -11401.750581423898], [9700.5892764912, -11408.050581422913], [9645.339276488585, -11405.600581422703]]}, {"length": 89.661054068, "source": 135030399, "destination": 134930861, "path": [[9988.839276488194, -11367.600581422721], [9950.339276493025, -11296.600581420791], [9911.339276492015, -11239.100581423856], [9858.339276490824, -11178.100581421546], [9749.839276494753, -11089.600581421166], [9677.639276489459, -11048.95058142219]]}, {"length": 7.07507860082, "source": 4720035457, "destination": 1959915345, "path": [[-6662.760723507688, -3773.7005814229005], [-6658.510723511313, -3742.050581422518]]}, {"length": 69.1300756028, "source": 135099962, "destination": 2573122529, "path": [[197.83927648830968, -7658.600581422093], [197.28927649254047, -7347.750581423896]]}, {"length": 63.9373043612, "source": 135099962, "destination": 2573122525, "path": [[197.83927648830968, -7658.600581422093], [196.93927649200305, -7946.100581420978]]}, {"length": 58.9235527027, "source": 135099962, "destination": 1393871502, "path": [[197.83927648830968, -7658.600581422093], [-49.8107235102907, -7659.450581421368], [-99.26072350907589, -7663.0505814208045], [-151.0107235063174, -7671.100581422507]]}, {"length": 38.1652607608, "source": 1930503812, "destination": 1930503832, "path": [[9912.889276492366, -10312.350581422435], [9912.889276492366, -10318.350581421499], [9914.839276490284, -10334.750581421304], [9920.739276488177, -10350.850581421157], [9930.639276490183, -10363.100581422203], [9940.889276492726, -10371.75058142381], [9956.289276495056, -10380.400581421867], [9970.0892764929, -10384.900581421163], [9986.289276490368, -10387.300581420788], [10076.239276493481, -10389.700581423966]]}, {"length": 367.219112905, "source": 1930503812, "destination": 1930503505, "path": [[9912.889276492366, -10312.350581422435], [9912.889276492366, -10101.600581421622], [9910.889276490308, -9875.000581423876], [9910.089276495171, -9767.50058142173], [9909.339276489958, -9731.35058142205], [9905.78927649466, -9690.450581423704], [9901.43927649001, -9653.75058142115], [9895.489276495084, -9616.750581422195], [9886.839276489922, -9577.600581422985], [9877.339276492592, -9541.200581423936], [9865.889276490236, -9500.600581421992], [9856.839276494611, -9461.800581423318], [9849.7392764898, -9425.650581423639], [9844.589276490013, -9385.350581421648], [9841.839276489849, -9357.600581420655], [9840.2892764895, -9323.8505814206], [9839.489276494362, -9222.350581421068], [9837.489276492306, -8994.550581423511], [9837.089276494737, -8818.400581422025], [9836.339276489525, -8674.150581423844], [9837.889276489876, -8665.150581421698]]}, {"length": 5.6786944231, "source": 1930503812, "destination": 1930503811, "path": [[9912.889276492366, -10312.350581422435], [9879.139276492311, -10312.300581421852]]}, {"length": 47.7254306843, "source": 3146557062, "destination": 3146557072, "path": [[-3874.0107235071264, 112.19941857731897], [-3875.360723505139, 326.7994185769396]]}, {"length": 45.4700087845, "source": 3146557062, "destination": 2086776816, "path": [[-3874.0107235071264, 112.19941857731897], [-4144.160723505764, 113.14941857776262]]}, {"length": 16.8990402463, "source": 3146557062, "destination": 2086776760, "path": [[-3874.0107235071264, 112.19941857731897], [-3773.6107235062377, 111.84941857678155]]}, {"length": 8.09237552829, "source": 2140984940, "destination": 135076240, "path": [[9757.989276494072, 5938.499418576271], [9710.489276493206, 5932.89941857833]]}, {"length": 18.9378731554, "source": 2140984940, "destination": 2140984946, "path": [[9757.989276494072, 5938.499418576271], [9754.739276495173, 5889.699418577976], [9710.789276489606, 5875.199418579058]]}, {"length": 16.0376266165, "source": 2140984940, "destination": 2140984943, "path": [[9757.989276494072, 5938.499418576271], [9763.339276489092, 6010.499418579229]]}, {"length": 47.5031137561, "source": 3146557068, "destination": 3146557081, "path": [[-4371.560723505752, 325.44941857892695], [-4370.210723507739, 111.84941857678155]]}, {"length": 38.0472028894, "source": 3146557068, "destination": 3146412237, "path": [[-4371.560723505752, 325.44941857892695], [-4145.510723510881, 325.44941857892695]]}, {"length": 80.899695099, "source": 3146557068, "destination": 3146557073, "path": [[-4371.560723505752, 325.44941857892695], [-4852.210723505834, 325.44941857892695]]}, {"length": 5.19289003355, "source": 2140984933, "destination": 2140984932, "path": [[9561.589276493976, 5826.5994185759955], [9562.239276490913, 5849.949418578859]]}, {"length": 99.9050249908, "source": 2140984933, "destination": 844180732, "path": [[9561.589276493976, 5826.5994185759955], [9539.13927649097, 5808.299418578855], [9526.089276491235, 5801.849418578086], [9516.989276491473, 5799.399418577877], [9506.18927649316, 5797.049418578837], [9492.839276489918, 5799.4494185784615], [9473.539276491749, 5804.449418576496], [9459.33927648923, 5805.549418578693], [9442.03927649312, 5804.849418577618], [9430.089276492026, 5802.849418579115], [9392.539276490197, 5788.649418576597], [9358.339276488437, 5772.099418578591], [9291.98927649111, 5728.7494185764845], [9208.139276488226, 5666.499418577331], [9102.589276494655, 5577.0994185770915]]}, {"length": 4.65957955817, "source": 2140984933, "destination": 2140984934, "path": [[9561.589276493976, 5826.5994185759955], [9586.739276493006, 5835.349418578772]]}, {"length": 16.9493648377, "source": 3146557072, "destination": 3146412233, "path": [[-3875.360723505139, 326.7994185769396], [-3774.66072350785, 327.29941857922995]]}, {"length": 45.4707025239, "source": 3146557072, "destination": 3146412237, "path": [[-3875.360723505139, 326.7994185769396], [-4145.510723510881, 325.44941857892695]]}, {"length": 47.7254306843, "source": 3146557072, "destination": 3146557062, "path": [[-3875.360723505139, 326.7994185769396], [-3874.0107235071264, 112.19941857731897]]}, {"length": 13.6555407515, "source": 3146557073, "destination": 3146595665, "path": [[-4852.210723505834, 325.44941857892695], [-4852.160723508803, 292.4494185769788], [-4852.760723508709, 264.04941857904873]]}, {"length": 80.899695099, "source": 3146557073, "destination": 3146557068, "path": [[-4852.210723505834, 325.44941857892695], [-4371.560723505752, 325.44941857892695]]}, {"length": 15.1004048776, "source": 3146557073, "destination": 2217933213, "path": [[-4852.210723505834, 325.44941857892695], [-4852.310723507003, 393.3494185766051]]}, {"length": 7.06105211777, "source": 1930503832, "destination": 1951958644, "path": [[10076.239276493481, -10389.700581423966], [10075.939276489975, -10421.450581421965]]}, {"length": 38.1652607608, "source": 1930503832, "destination": 1930503812, "path": [[10076.239276493481, -10389.700581423966], [9986.289276490368, -10387.300581420788], [9970.0892764929, -10384.900581421163], [9956.289276495056, -10380.400581421867], [9940.889276492726, -10371.75058142381], [9930.639276490183, -10363.100581422203], [9920.739276488177, -10350.850581421157], [9914.839276490284, -10334.750581421304], [9912.889276492366, -10318.350581421499], [9912.889276492366, -10312.350581422435]]}, {"length": 149.296961017, "source": 1930503832, "destination": 134955644, "path": [[10076.239276493481, -10389.700581423966], [10070.68927648902, -9968.000581423552], [10400.589276493121, -9969.450581422734]]}, {"length": 38.048031971, "source": 3146557081, "destination": 2086776816, "path": [[-4370.210723507739, 111.84941857678155], [-4144.160723505764, 113.14941857776262]]}, {"length": 81.077858296, "source": 3146557081, "destination": 2086776712, "path": [[-4370.210723507739, 111.84941857678155], [-4801.560723507237, 109.39941857657232], [-4851.910723509434, 109.0994185766192]]}, {"length": 44.4668889047, "source": 3146557099, "destination": 3146411765, "path": [[-3402.8607235114805, -641.8005814232686], [-3402.9607235055437, -441.8505814207663]]}, {"length": 18.9378731554, "source": 2140984946, "destination": 2140984940, "path": [[9710.789276489606, 5875.199418579058], [9754.739276495173, 5889.699418577976], [9757.989276494072, 5938.499418576271]]}, {"length": 17.4949285083, "source": 2140984946, "destination": 2140984941, "path": [[9710.789276489606, 5875.199418579058], [9615.389276490305, 5843.999418576828]]}, {"length": 37.7619096197, "source": 2140984946, "destination": 134961949, "path": [[9710.789276489606, 5875.199418579058], [9710.989276491944, 5841.899418577157], [9711.489276490682, 5705.399418577173]]}, {"length": 150.301045406, "source": 1933539703, "destination": 1933540841, "path": [[7049.089276492282, -7054.400581420595], [7050.189276490926, -7100.900581423985], [7048.839276492913, -7186.65058142065], [7047.4892764949, -7481.1005814225955], [7046.139276489783, -7611.450581421764], [7049.339276491651, -7730.200581423929]]}, {"length": 49.3549085543, "source": 1933539703, "destination": 1933539706, "path": [[7049.089276492282, -7054.400581420595], [7136.389276489297, -7053.200581420782], [7315.139276492744, -7055.250581423423], [7342.339276490861, -7054.700581420548]]}, {"length": 52.6277865974, "source": 1933539703, "destination": 1933539715, "path": [[7049.089276492282, -7054.400581420595], [7021.139276488952, -7054.750581421132], [6881.339276489484, -7061.450581421269], [6736.689276493735, -7064.650581423138]]}, {"length": 44.1505985262, "source": 1933539703, "destination": 1933539612, "path": [[7049.089276492282, -7054.400581420595], [7048.389276491207, -7024.300581420562], [7044.889276492939, -6855.900581420827]]}, {"length": 332.612266851, "source": 1362208431, "destination": 1959915218, "path": [[-10733.06072350988, 4214.899418577999], [-10737.61072350976, 4181.399418577314], [-10740.160723507586, 4165.999418578536], [-10743.760723507023, 4146.649418576231], [-10748.260723509873, 4126.549418579372], [-10752.510723506248, 4107.699418579358], [-10754.910723505873, 4088.7994185787593], [-10754.760723507672, 4071.749418578463], [-10752.060723511648, 4051.1994185763456], [-10747.010723505922, 4028.29941857874], [-10733.21072350808, 3980.2494185785517], [-10724.610723507056, 3954.2994185772786], [-10706.460723511667, 3905.0494185772777], [-10685.060723510276, 3857.8494185763648], [-10661.510723508627, 3815.949418576992], [-10636.760723507166, 3777.6994185776402], [-10604.51072351043, 3740.0994185787795], [-10556.61072350489, 3689.899418578335], [-10512.710723510565, 3651.2994185784464], [-10469.76072350958, 3622.1994185794415], [-10420.860723506565, 3595.4494185794774], [-10369.910723511566, 3576.699418577078], [-10317.61072351145, 3564.999418578907], [-10247.860723509915, 3560.9494185777635], [-9378.160723507279, 3559.4494185779977]]}, {"length": 177.710024872, "source": 1362208431, "destination": 134990654, "path": [[-10733.06072350988, 4214.899418577999], [-10719.11072350673, 4178.399418577783], [-10680.510723510395, 4135.3494185791815], [-10665.510723505633, 4140.249418576048], [-10644.06072350721, 4168.64941857753], [-10603.310723510618, 4258.6994185782605], [-10581.410723510488, 4324.499418576266], [-10578.560723509156, 4337.699418577757], [-10576.810723506469, 4352.549418577211], [-10582.260723509762, 4550.049418575953], [-10589.910723510344, 4779.6494185767815], [-10560.96072350954, 4819.4494185764825]]}, {"length": 60.9510612081, "source": 135019220, "destination": 2086854480, "path": [[8266.83927649441, -2316.600581423245], [7904.689276493571, -2318.350581422379]]}, {"length": 60.090003996, "source": 135019220, "destination": 134934056, "path": [[8266.83927649441, -2316.600581423245], [8266.089276489198, -2046.4005814240238]]}, {"length": 114.024567932, "source": 135019220, "destination": 135022782, "path": [[8266.83927649441, -2316.600581423245], [8944.339276489189, -2314.1005814224513]]}, {"length": 60.9467728734, "source": 135019220, "destination": 2086854375, "path": [[8266.83927649441, -2316.600581423245], [8268.58927648999, -2590.6505814212724]]}, {"length": 23.9252357474, "source": 3146557109, "destination": 3146411803, "path": [[-3613.8607235116638, -715.0005814224869], [-3756.01072350662, -715.5005814212245]]}, {"length": 39.368325983, "source": 3146557109, "destination": 3146557099, "path": [[-3613.8607235116638, -715.0005814224869], [-3538.3607235104364, -698.6005814226814], [-3504.2107235057074, -688.3005814231069], [-3494.4607235090075, -684.2505814219635], [-3462.7607235080404, -671.1505814216423], [-3402.8607235114805, -641.8005814232686]]}, {"length": 15.3525054221, "source": 3146557117, "destination": 2282033828, "path": [[-7782.0607235068455, 316.4994185773651], [-7816.2107235115745, 316.649418579118], [-7845.510723505811, 313.2994185790494], [-7872.910723506266, 312.19941857685285]]}, {"length": 10.6591151901, "source": 3146557117, "destination": 2080739429, "path": [[-7782.0607235068455, 316.4994185773651], [-7786.210723509157, 312.8994185779277], [-7799.960723509968, 290.2494185761384], [-7803.960723506975, 277.59941857752324], [-7804.66072350805, 272.39941857715166]]}, {"length": 720.354566493, "source": 3146557117, "destination": 4719408247, "path": [[-7782.0607235068455, 316.4994185773651], [-7734.16072350841, 318.8494185764057], [-7490.2607235074465, 320.4994185779242], [-7448.560723510411, 322.599418577596], [-7411.160723506782, 326.0494185788332], [-7364.210723508791, 331.5494185791579], [-7327.160723505699, 336.0994185790389], [-7292.810723505738, 338.99941857740146], [-7247.5107235092655, 338.1994185787107], [-3849.6107235062027, 349.6494185775134], [-3534.310723509293, 350.9994185790788], [-3533.0607235053435, 328.0994185779207]]}, {"length": 12.4651343027, "source": 134971378, "destination": 134971609, "path": [[-11723.960723507787, 338.0494185769578], [-11723.560723510218, 394.09941857826425]]}, {"length": 145.120600626, "source": 134971378, "destination": 2293202897, "path": [[-11723.960723507787, 338.0494185769578], [-12586.160723508045, 335.8494185761174]]}, {"length": 12.6339051456, "source": 2573122508, "destination": 2080560729, "path": [[456.18927649115903, -8155.150581423242], [526.3392764902619, -8175.400581421854]]}, {"length": 11.3403145346, "source": 2573122508, "destination": 2573122523, "path": [[456.18927649115903, -8155.150581423242], [438.2392764910037, -8204.300581422074]]}, {"length": 134.411611662, "source": 4719468835, "destination": 4719468832, "path": [[-3293.7607235083988, -1830.0005814211318], [-3298.6607235088172, -2161.1505814220777], [-3300.060723510967, -2360.800581421074], [-3318.4107235086913, -2433.0505814234016]]}, {"length": 10.384912235, "source": 4719468835, "destination": 1935295477, "path": [[-3293.7607235083988, -1830.0005814211318], [-3355.460723511783, -1830.5505814240064]]}, {"length": 101.108210032, "source": 4719468835, "destination": 2089552574, "path": [[-3293.7607235083988, -1830.0005814211318], [-3148.460723508606, -1828.7005814237034], [-3099.7107235108956, -1815.9005814233353], [-3075.3607235070035, -1796.650581422199], [-2995.0607235065263, -1678.2505814205706], [-2921.5107235103233, -1543.4005814221052]]}, {"length": 159.421929636, "source": 2573122510, "destination": 135084642, "path": [[189.18927649025363, -9374.650581420952], [183.38927649352854, -9602.900581423768], [180.839276488598, -10031.050581421398], [182.38927648894787, -10091.4505814238]]}, {"length": 268.436026252, "source": 2573122510, "destination": 2080560796, "path": [[189.18927649025363, -9374.650581420952], [168.83927649047337, -9218.300581423478], [171.2392764900983, -9090.700581420919], [176.9392764927602, -8976.350581423987], [182.9892764888541, -8881.650581422207], [193.7892764942717, -8769.050581420855], [208.38927649435846, -8668.15058142123], [228.6392764929701, -8574.7005814234], [282.4392764892991, -8380.85058142113], [323.18927649299667, -8250.75058142133], [346.8892764928455, -8180.80058142101]]}, {"length": 23.0069120214, "source": 2356771791, "destination": 2356771790, "path": [[-2613.910723511026, 4121.849418577739], [-2615.01072350967, 4225.299418578743]]}, {"length": 20.1164573977, "source": 2587024998, "destination": 2587025000, "path": [[1277.3392764913183, -4423.800581420778], [1276.0392764903372, -4514.25058142263]]}, {"length": 145.44963269, "source": 2587024998, "destination": 2587025000, "path": [[1277.3392764913183, -4423.800581420778], [904.0392764916305, -4425.050581421175], [904.5892764945052, -4515.500581423026], [1276.0392764903372, -4514.25058142263]]}, {"length": 20.9605308768, "source": 2587024998, "destination": 2587024992, "path": [[1277.3392764913183, -4423.800581420778], [1276.739276491412, -4329.5505814207045]]}, {"length": 73.7097389709, "source": 2587024998, "destination": 2587025002, "path": [[1277.3392764913183, -4423.800581420778], [1641.3892764930438, -4422.600581420966], [1641.7392764935812, -4478.550581421104]]}, {"length": 113.261113719, "source": 2251802364, "destination": 2069036856, "path": [[-4090.9607235093404, 3455.1994185783033], [-3418.110723508505, 3457.1994185768062]]}, {"length": 47.7062546402, "source": 2251802364, "destination": 2311060323, "path": [[-4090.9607235093404, 3455.1994185783033], [-4087.360723509903, 3443.499418576579], [-4086.460723506491, 3315.1494185794663], [-4086.210723507122, 3240.9994185762516]]}, {"length": 12.5408232504, "source": 2251802364, "destination": 2069036868, "path": [[-4090.9607235093404, 3455.1994185783033], [-4165.460723505987, 3454.5494185778125]]}, {"length": 47.7072586793, "source": 2251802364, "destination": 2311060175, "path": [[-4090.9607235093404, 3455.1994185783033], [-4091.860723505647, 3466.2994185765683], [-4093.010723508428, 3634.8494185780564], [-4093.210723510765, 3669.6994185767553]]}, {"length": 12.3889829513, "source": 2251802367, "destination": 135034101, "path": [[-4093.610723508334, 3729.1994185792987], [-4167.210723508674, 3729.09941857813]]}, {"length": 53.8925629133, "source": 2251802367, "destination": 2311060164, "path": [[-4093.610723508334, 3729.1994185792987], [-3773.4607235080375, 3730.9994185790174]]}, {"length": 12.9422261328, "source": 2251802367, "destination": 2310516605, "path": [[-4093.610723508334, 3729.1994185792987], [-4093.7607235065343, 3773.4994185782966], [-4093.8107235106713, 3787.3994185773086]]}, {"length": 13.2325145051, "source": 2251802367, "destination": 2311060175, "path": [[-4093.610723508334, 3729.1994185792987], [-4093.210723510765, 3669.6994185767553]]}, {"length": 114.683920082, "source": 2251802370, "destination": 2139775505, "path": [[-6341.110723511179, 6005.549418578226], [-6263.060723505021, 6005.699418576427], [-6096.410723507972, 6006.549418579254], [-5917.060723511724, 6007.149418579161], [-5718.710723506603, 6007.749418579067], [-5660.160723508056, 6003.299418576802]]}, {"length": 16.3685864888, "source": 2251802370, "destination": 135033667, "path": [[-6341.110723511179, 6005.549418578226], [-6340.160723510735, 5931.949418577887]]}, {"length": 48.1051052416, "source": 2251802370, "destination": 2068973812, "path": [[-6341.110723511179, 6005.549418578226], [-6343.860723511341, 6221.8494185763975]]}, {"length": 13.0395839204, "source": 2251802370, "destination": 2139775503, "path": [[-6341.110723511179, 6005.549418578226], [-6384.260723507396, 6005.09941857652], [-6418.560723510325, 6005.499418577642]]}, {"length": 47.781484901, "source": 2251802373, "destination": 2068973856, "path": [[-4180.36072350958, 6013.849418579298], [-4182.160723509298, 6228.699418578288]]}, {"length": 13.299095324, "source": 2251802373, "destination": 1806083049, "path": [[-4180.36072350958, 6013.849418579298], [-4259.360723509076, 6013.49941857876]]}, {"length": 13.1477137496, "source": 2251802373, "destination": 1806083048, "path": [[-4180.36072350958, 6013.849418579298], [-4151.860723510481, 6014.999418578526], [-4102.310723510527, 6014.39941857862]]}, {"length": 16.2907652373, "source": 2251802373, "destination": 135033670, "path": [[-4180.36072350958, 6013.849418579298], [-4181.260723505886, 5940.599418579495]]}, {"length": 61.5410105682, "source": 2251802375, "destination": 2311060346, "path": [[-4085.9607235077533, 3157.149418576921], [-3720.360723505678, 3158.1494185779493]]}, {"length": 18.647890237, "source": 2251802375, "destination": 2311060323, "path": [[-4085.9607235077533, 3157.149418576921], [-4086.060723508922, 3203.849418579097], [-4086.210723507122, 3240.9994185762516]]}, {"length": 14.1794259604, "source": 2251802375, "destination": 1806083189, "path": [[-4085.9607235077533, 3157.149418576921], [-4084.5607235056036, 3093.399418578002]]}, {"length": 13.1199942796, "source": 2251802375, "destination": 134959951, "path": [[-4085.9607235077533, 3157.149418576921], [-4163.610723509237, 3162.2494185761243]]}, {"length": 133.055967909, "source": 2282972945, "destination": 2282973129, "path": [[-9049.9107235118, 3149.4494185793087], [-8768.810723509545, 3150.5994185785366], [-8720.66072351174, 3149.649418578093], [-8676.710723506176, 3141.999418577512], [-8634.560723507435, 3124.799418579016], [-8607.410723506347, 3107.449418578767], [-8588.660723511055, 3088.6994185763683], [-8573.210723511693, 3069.7994185793223], [-8562.96072350915, 3047.3494185763175], [-8558.660723508638, 3023.0994185771465], [-8558.810723506838, 2865.2494185763544]]}, {"length": 41.3920144882, "source": 2282972945, "destination": 134959142, "path": [[-9049.9107235118, 3149.4494185793087], [-9145.96072350804, 3149.049418578187], [-9295.810723507713, 3148.4494185782805]]}, {"length": 13.3450990468, "source": 2282972945, "destination": 2282972967, "path": [[-9049.9107235118, 3149.4494185793087], [-9048.660723507852, 3089.4494185780277]]}, {"length": 265.549223837, "source": 1930503811, "destination": 1930503644, "path": [[9879.139276492311, -10312.300581421852], [9748.339276491435, -10312.050581422483], [9716.739276491637, -10310.550581422718], [9693.889276491063, -10307.900581423724], [9664.68927649089, -10300.700581421295], [9635.089276493147, -10289.350581423661], [9610.589276491055, -10277.1505814232], [9582.189276493125, -10260.400581422857], [9548.639276488302, -10239.200581423802], [9511.589276492316, -10212.350581422668], [9484.339276490062, -10190.550581423708], [9464.23927648965, -10173.550581423995], [9438.93927649242, -10149.350581421857], [9412.139276491871, -10119.200581421239], [9386.889276491673, -10085.150581421232], [9371.889276494017, -10062.45058142241], [9354.539276493768, -10032.00058142184], [9341.089276489356, -10006.050581420566], [9331.889276488426, -9986.00058142074], [9323.789276493244, -9964.900581422853], [9316.539276490232, -9940.400581420761], [9310.939276488738, -9918.050581422478], [9306.189276493626, -9894.400581423213], [9301.989276494282, -9864.650581423717], [9300.039276489259, -9841.950581421344], [9297.68927649377, -9777.750581420718], [9295.289276494146, -9715.050581423413], [9294.88927648947, -9680.400581423499], [9296.089276489283, -9654.150581422271], [9301.23927648907, -9632.050581423357], [9307.939276489207, -9613.850581423832], [9317.389276489506, -9598.900581423208], [9325.689276494131, -9589.35058142174], [9339.089276494406, -9580.100581423778], [9355.689276489444, -9573.550581421841], [9371.089276491773, -9570.850581422263], [9398.689276494566, -9569.350581422497], [9580.989276493312, -9567.250581422826], [9600.739276493186, -9567.850581422732]]}, {"length": 5.6786944231, "source": 1930503811, "destination": 1930503812, "path": [[9879.139276492311, -10312.300581421852], [9912.889276492366, -10312.350581422435]]}, {"length": 22.7841497344, "source": 1930503811, "destination": 134937758, "path": [[9879.139276492311, -10312.300581421852], [9879.489276492848, -10338.350581420742], [9882.939276494086, -10414.700581421243]]}, {"length": 7.6727565629, "source": 2282972952, "destination": 2282972973, "path": [[-9243.16072350706, 3123.449418577451], [-9243.16072350706, 3088.94941857929]]}, {"length": 4.26047542356, "source": 2282972956, "destination": 1959915361, "path": [[-9374.81072350721, 3114.1494185789043], [-9374.460723506672, 3133.299418578872]]}, {"length": 13.3589367374, "source": 2282972956, "destination": 2282972957, "path": [[-9374.81072350721, 3114.1494185789043], [-9295.460723507176, 3113.099418577292]]}, {"length": 337.841202456, "source": 2282972956, "destination": 2282973653, "path": [[-9374.81072350721, 3114.1494185789043], [-9889.260723511485, 3113.7494185777823], [-9907.960723509746, 3111.999418578648], [-9933.710723508682, 3098.649418578958], [-9949.160723508045, 3080.4994185764654], [-9951.260723511268, 3063.9494185784597], [-9952.410723506944, 3042.5494185770676], [-9944.310723511762, 2792.199418578889], [-9942.910723509613, 2749.599418578441], [-9943.310723507182, 2651.09941857844], [-9948.860723511643, 2548.299418577926], [-9947.110723508957, 2496.899418577669], [-9939.560723509545, 2426.249418576276], [-9937.21072350695, 2348.3994185760084], [-9936.810723509381, 2285.049418578211], [-9935.810723504801, 2262.1994185776375], [-9933.060723511744, 2242.449418577763], [-9927.210723510882, 2224.799418577561], [-9917.960723505814, 2211.799418578408], [-9900.460723507365, 2197.799418578228], [-9877.510723505622, 2187.9494185768067], [-9845.610723509424, 2183.4994185780943], [-9810.610723505419, 2182.7494185764353], [-9751.960723505705, 2183.2494185787255], [-9667.560723507051, 2185.1994185766443]]}, {"length": 8.79575625437, "source": 2282972956, "destination": 2282972985, "path": [[-9374.81072350721, 3114.1494185789043], [-9374.610723504873, 3074.599418578572]]}, {"length": 5.3602801427, "source": 2282972957, "destination": 2282972971, "path": [[-9295.460723507176, 3113.099418577292], [-9295.210723507807, 3088.9994185763217]]}, {"length": 13.3589367374, "source": 2282972957, "destination": 2282972956, "path": [[-9295.460723507176, 3113.099418577292], [-9374.81072350721, 3114.1494185789043]]}, {"length": 7.86189196666, "source": 2282972957, "destination": 134959142, "path": [[-9295.460723507176, 3113.099418577292], [-9295.810723507713, 3148.4494185782805]]}, {"length": 3.81399479934, "source": 2282972959, "destination": 2282972963, "path": [[-8651.260723510746, 3109.1994185779013], [-8651.11072350544, 3092.049418576437]]}, {"length": 3.98050126885, "source": 2282972962, "destination": 2282972963, "path": [[-8627.460723509728, 3092.3494185763902], [-8651.11072350544, 3092.049418576437]]}, {"length": 3.98050126885, "source": 2282972963, "destination": 2282972962, "path": [[-8651.11072350544, 3092.049418576437], [-8627.460723509728, 3092.3494185763902]]}, {"length": 66.9211837023, "source": 2282972963, "destination": 2282972967, "path": [[-8651.11072350544, 3092.049418576437], [-8684.060723510356, 3091.5494185776993], [-8958.510723509506, 3089.6994185773965], [-9048.660723507852, 3089.4494185780277]]}, {"length": 50.4380827068, "source": 2282972963, "destination": 2282973130, "path": [[-8651.11072350544, 3092.049418576437], [-8650.510723505533, 3010.4994185791156], [-8650.510723505533, 2955.1494185788843], [-8650.160723504996, 2865.2494185763544]]}, {"length": 3.81399479934, "source": 2282972963, "destination": 2282972959, "path": [[-8651.11072350544, 3092.049418576437], [-8651.260723510746, 3109.1994185779013]]}, {"length": 5.42711913535, "source": 2282972967, "destination": 2282972992, "path": [[-9048.660723507852, 3089.4494185780277], [-9048.160723509114, 3065.049418577104]]}, {"length": 13.3450990468, "source": 2282972967, "destination": 2282972945, "path": [[-9048.660723507852, 3089.4494185780277], [-9049.9107235118, 3149.4494185793087]]}, {"length": 66.9211837023, "source": 2282972967, "destination": 2282972963, "path": [[-9048.660723507852, 3089.4494185780277], [-8958.510723509506, 3089.6994185773965], [-8684.060723510356, 3091.5494185776993], [-8651.11072350544, 3092.049418576437]]}, {"length": 9.42637612353, "source": 2282972967, "destination": 2282972968, "path": [[-9048.660723507852, 3089.4494185780277], [-9104.660723508572, 3089.2994185762745]]}, {"length": 9.42637612353, "source": 2282972968, "destination": 2282972967, "path": [[-9104.660723508572, 3089.2994185762745], [-9048.660723507852, 3089.4494185780277]]}, {"length": 23.3148554971, "source": 2282972968, "destination": 2282972973, "path": [[-9104.660723508572, 3089.2994185762745], [-9143.960723505985, 3089.199418578659], [-9150.91072350549, 3089.199418578659], [-9243.16072350706, 3088.94941857929]]}, {"length": 5.98319216128, "source": 2282972968, "destination": 2282973023, "path": [[-9104.660723508572, 3089.2994185762745], [-9104.160723509834, 3062.3994185781103]]}, {"length": 3.55722949977, "source": 2282972971, "destination": 2282972987, "path": [[-9295.210723507807, 3088.9994185763217], [-9295.060723509607, 3072.9994185776377]]}, {"length": 5.3602801427, "source": 2282972971, "destination": 2282972957, "path": [[-9295.210723507807, 3088.9994185763217], [-9295.460723507176, 3113.099418577292]]}, {"length": 8.76187693893, "source": 2282972971, "destination": 2282972973, "path": [[-9295.210723507807, 3088.9994185763217], [-9243.16072350706, 3088.94941857929]]}, {"length": 50.7406941403, "source": 2282972973, "destination": 2282973136, "path": [[-9243.16072350706, 3088.94941857929], [-9243.16072350706, 3076.0994185783375], [-9242.060723508417, 3035.0494185782395], [-9241.76072350491, 2860.799418577642]]}, {"length": 23.3148554971, "source": 2282972973, "destination": 2282972968, "path": [[-9243.16072350706, 3088.94941857929], [-9150.91072350549, 3089.199418578659], [-9143.960723505985, 3089.199418578659], [-9104.660723508572, 3089.2994185762745]]}, {"length": 8.76187693893, "source": 2282972973, "destination": 2282972971, "path": [[-9243.16072350706, 3088.94941857929], [-9295.210723507807, 3088.9994185763217]]}, {"length": 7.6727565629, "source": 2282972973, "destination": 2282972952, "path": [[-9243.16072350706, 3088.94941857929], [-9243.16072350706, 3123.449418577451]]}, {"length": 36.9051036942, "source": 135112494, "destination": 134957807, "path": [[-4844.510723508221, -6103.70058142351], [-4625.260723507552, -6107.450581421148]]}, {"length": 13.3949824014, "source": 2282972985, "destination": 2282972987, "path": [[-9374.610723504873, 3074.599418578572], [-9295.060723509607, 3072.9994185776377]]}, {"length": 8.79575625437, "source": 2282972985, "destination": 2282972956, "path": [[-9374.610723504873, 3074.599418578572], [-9374.81072350721, 3114.1494185789043]]}, {"length": 122.316048373, "source": 2282972985, "destination": 2282973373, "path": [[-9374.610723504873, 3074.599418578572], [-9374.51072351081, 3055.149418578651], [-9373.460723509197, 2963.2994185782027], [-9373.460723509197, 2831.4994185763], [-9372.060723507047, 2645.599418578115], [-9371.56072350831, 2524.5994185780773]]}, {"length": 13.3949824014, "source": 2282972987, "destination": 2282972985, "path": [[-9295.060723509607, 3072.9994185776377], [-9374.610723504873, 3074.599418578572]]}, {"length": 3.55722949977, "source": 2282972987, "destination": 2282972971, "path": [[-9295.060723509607, 3072.9994185776377], [-9295.210723507807, 3088.9994185763217]]}, {"length": 47.0364696623, "source": 2282972987, "destination": 2282973135, "path": [[-9295.060723509607, 3072.9994185776377], [-9293.960723510963, 2968.249418579205], [-9294.060723505027, 2861.499418578717]]}, {"length": 5.42711913535, "source": 2282972992, "destination": 2282972967, "path": [[-9048.160723509114, 3065.049418577104], [-9048.660723507852, 3089.4494185780277]]}, {"length": 99.3791702871, "source": 2069036516, "destination": 2069036875, "path": [[5505.439276490165, 5141.699418576451], [6095.789276493235, 5143.699418578507]]}, {"length": 59.8683640018, "source": 2069036516, "destination": 134985694, "path": [[5505.439276490165, 5141.699418576451], [5503.489276492246, 5410.899418578197]]}, {"length": 62.2257401791, "source": 2069036516, "destination": 134954318, "path": [[5505.439276490165, 5141.699418576451], [5507.489276489252, 4861.899418578731]]}, {"length": 19.0401760356, "source": 2069036516, "destination": 4253708823, "path": [[5505.439276490165, 5141.699418576451], [5392.339276490076, 5140.849418577176]]}, {"length": 53.8626194849, "source": 135038807, "destination": 2069120324, "path": [[6211.33927648998, 6492.399418576156], [6531.289276495045, 6493.649418576552]]}, {"length": 10.6969948865, "source": 135038807, "destination": 4274706132, "path": [[6211.33927648998, 6492.399418576156], [6211.639276493486, 6444.299418578936]]}, {"length": 109.257030892, "source": 135038807, "destination": 135018884, "path": [[6211.33927648998, 6492.399418576156], [5562.339276494299, 6489.899418578915]]}, {"length": 49.8993852421, "source": 2062743183, "destination": 135072512, "path": [[9991.939276488893, 2279.3994185761335], [9695.489276488444, 2279.3994185761335]]}, {"length": 57.8863299059, "source": 2062743183, "destination": 135072514, "path": [[9991.939276488893, 2279.3994185761335], [10335.839276493174, 2279.3994185761335]]}, {"length": 203.565033208, "source": 2062743183, "destination": 2062743147, "path": [[9991.939276488893, 2279.3994185761335], [9990.339276491512, 3194.749418579335]]}, {"length": 131.535773379, "source": 2062743183, "destination": 2062743142, "path": [[9991.939276488893, 2279.3994185761335], [9997.289276491018, 1687.949418577972]]}, {"length": 5.98319216128, "source": 2282973023, "destination": 2282972968, "path": [[-9104.160723509834, 3062.3994185781103], [-9104.660723508572, 3089.2994185762745]]}, {"length": 397.331935952, "source": 2080633147, "destination": 134986536, "path": [[-11742.960723509554, -10548.400581424034], [-9381.660723505547, -10568.100581423323]]}, {"length": 13.1676505208, "source": 2080633147, "destination": 134966034, "path": [[-11742.960723509554, -10548.400581424034], [-11744.160723509367, -10607.60058142307]]}, {"length": 57.7343562337, "source": 2423711600, "destination": 2423711611, "path": [[-4802.410723506511, -2706.300581422738], [-4767.7607235101505, -2734.0005814231463], [-4744.910723509576, -2769.0005814235974], [-4745.610723510652, -2803.5505814223425], [-4761.66072350992, -2837.000581422444], [-4781.810723507362, -2858.85058142199], [-4812.660723509054, -2893.300581423119], [-4846.310723507941, -2929.20058142343]]}, {"length": 35.8569505733, "source": 4720011123, "destination": 4719995859, "path": [[2316.6892764905356, -1738.6005814223893], [2529.7392764898063, -1738.7505814205895]]}, {"length": 11.8147898521, "source": 4720011123, "destination": 4719995860, "path": [[2316.6892764905356, -1738.6005814223893], [2246.489276494401, -1738.550581421805]]}, {"length": 96.8455346177, "source": 4720011123, "destination": 4720007031, "path": [[2316.6892764905356, -1738.6005814223893], [2316.389276494135, -1538.7505814210556], [2324.139276488779, -1525.2505814231654], [2322.5892764884293, -1473.6005814235398], [2323.4892764918413, -1349.5505814233866], [2321.189276493385, -1304.400581421561]]}, {"length": 27.514452102, "source": 2423711605, "destination": 2217880484, "path": [[-5993.110723508721, -1829.1505814218567], [-6001.810723510915, -1773.4005814205034], [-6006.260723509627, -1705.900581423947]]}, {"length": 90.8410519042, "source": 2423711605, "destination": 2217880492, "path": [[-5993.110723508721, -1829.1505814218567], [-5971.46072350796, -1925.5505814221863], [-5943.710723506967, -2011.2505814218196], [-5891.860723508557, -2127.550581423776], [-5834.160723509285, -2217.2005814233844]]}, {"length": 25.4204178594, "source": 2423711605, "destination": 2423711606, "path": [[-5993.110723508721, -1829.1505814218567], [-5916.410723507681, -1817.5005814207168], [-5893.610723511245, -1822.4505814217196], [-5880.160723506833, -1835.300581422672], [-5873.360723505528, -1855.4005814230834]]}, {"length": 25.4204178594, "source": 2423711606, "destination": 2423711605, "path": [[-5873.360723505528, -1855.4005814230834], [-5880.160723506833, -1835.300581422672], [-5893.610723511245, -1822.4505814217196], [-5916.410723507681, -1817.5005814207168], [-5993.110723508721, -1829.1505814218567]]}, {"length": 61.3257907699, "source": 134997404, "destination": 2069120305, "path": [[3168.4892764900496, 4308.899418578704], [3171.1892764931804, 4033.149418578574]]}, {"length": 60.1352830952, "source": 134997404, "destination": 2069120250, "path": [[3168.4892764900496, 4308.899418578704], [3166.489276495099, 4579.29941857671]]}, {"length": 122.065776824, "source": 134997404, "destination": 2068020324, "path": [[3168.4892764900496, 4308.899418578704], [2443.3892764932352, 4302.949418576673]]}, {"length": 141.041050799, "source": 134997404, "destination": 135007358, "path": [[3168.4892764900496, 4308.899418578704], [4006.33927649352, 4312.8994185792635]]}, {"length": 57.7343562337, "source": 2423711611, "destination": 2423711600, "path": [[-4846.310723507941, -2929.20058142343], [-4812.660723509054, -2893.300581423119], [-4781.810723507362, -2858.85058142199], [-4761.66072350992, -2837.000581422444], [-4745.610723510652, -2803.5505814223425], [-4744.910723509576, -2769.0005814235974], [-4767.7607235101505, -2734.0005814231463], [-4802.410723506511, -2706.300581422738]]}, {"length": 231.724362809, "source": 2423711611, "destination": 2217880492, "path": [[-4846.310723507941, -2929.20058142343], [-4922.060723508537, -2884.00058142102], [-5036.310723511406, -2816.350581422711], [-5168.110723509755, -2738.3005814236585], [-5392.110723505539, -2607.100581421662], [-5486.710723509703, -2547.7005814238396], [-5544.810723506544, -2508.100581422923], [-5587.110723510591, -2477.200581420647], [-5643.160723508345, -2431.1505814225143], [-5698.210723508623, -2381.3505814231917], [-5738.560723507646, -2339.050581422697], [-5772.210723506532, -2300.550581423977], [-5834.160723509285, -2217.2005814233844]]}, {"length": 72.6654837991, "source": 2423711611, "destination": 2217880510, "path": [[-4846.310723507941, -2929.20058142343], [-4711.760723509428, -3008.450581422295], [-4503.16072350887, -3127.500581420861]]}, {"length": 7.86991255371, "source": 4719462289, "destination": 4719468832, "path": [[-3271.810723511237, -2436.0505814229327], [-3318.4107235086913, -2433.0505814234016]]}, {"length": 34.6229220405, "source": 4719462289, "destination": 2573122290, "path": [[-3271.810723511237, -2436.0505814229327], [-3297.4107235048677, -2503.600581423626], [-3312.960723505398, -2588.200581421063]]}, {"length": 377.411705012, "source": 4719462289, "destination": 1428266943, "path": [[-3271.810723511237, -2436.0505814229327], [-3227.010723506396, -2443.1005814236073], [-3127.010723510182, -2443.350581422976], [-2904.860723511149, -2444.150581421667], [-2685.1607235087727, -2446.850581421245], [-2591.5107235050527, -2447.350581423535], [-2572.110723505716, -2447.350581423535], [-2571.7607235051787, -2627.7505814213955], [-2572.110723505716, -2685.8505814217892], [-2601.3607235100267, -2789.4505814209933], [-2596.410723505471, -3040.450581423215], [-2596.060723504934, -3267.200581422713], [-2595.3607235109644, -3344.2005814237064], [-2589.4107235089336, -3510.7005814225545], [-2588.31072351029, -3581.3005814233634], [-2577.510723504872, -3610.600581421153]]}, {"length": 11.9867026956, "source": 2587199388, "destination": 135016394, "path": [[1757.5892764938317, -1302.5005814206736], [1757.3392764944629, -1248.600581423176]]}, {"length": 111.440561153, "source": 2587199388, "destination": 135076181, "path": [[1757.5892764938317, -1302.5005814206736], [1758.8392764906757, -1545.1005814206553], [1759.8392764952564, -1803.6005814217049]]}, {"length": 59.0168616121, "source": 2587199388, "destination": 2587199423, "path": [[1757.5892764938317, -1302.5005814206736], [1406.9392764923805, -1303.7005814240388]]}, {"length": 10.705828544, "source": 2587199389, "destination": 2587199400, "path": [[965.0892764909713, -1305.2005814238044], [966.7892764895214, -1315.4505814227946], [973.1392764891211, -1322.8505814240066], [986.5892764935325, -1328.9005814236532], [1001.3392764918194, -1331.9505814237687], [1008.6892764888944, -1332.1005814219689]]}, {"length": 56.7782144324, "source": 2587199389, "destination": 2587199421, "path": [[965.0892764909713, -1305.2005814238044], [627.7392764886258, -1306.3005814224482]]}, {"length": 15.5769344124, "source": 2587199389, "destination": 2587199398, "path": [[965.0892764909713, -1305.2005814238044], [1057.639276488942, -1304.850581423267]]}, {"length": 10.8550685815, "source": 4224950597, "destination": 4224950648, "path": [[6252.889276488815, 4751.6994185770045], [6205.989276494961, 4785.19941857769]]}, {"length": 122.568288588, "source": 4224950597, "destination": 4224963657, "path": [[6252.889276488815, 4751.6994185770045], [6353.189276488536, 4827.099418577063], [6409.789276489164, 4869.999418577464], [6440.289276490319, 4893.049418576822], [6495.589276489965, 4925.999418578186], [6556.0392764894, 4953.4494185792255], [6620.989276491684, 4975.299418578771], [6689.0892764917, 4990.4494185781805], [6767.489276491289, 4999.849418577895], [6842.089276489105, 5000.499418578385], [6868.589276493253, 4998.399418578714]]}, {"length": 26.4077541856, "source": 4224950597, "destination": 4224950829, "path": [[6252.889276488815, 4751.6994185770045], [6144.439276489777, 4665.899418576202]]}, {"length": 10.3073825521, "source": 4224950597, "destination": 135038607, "path": [[6252.889276488815, 4751.6994185770045], [6297.439276494288, 4719.899418578421]]}, {"length": 25.778094462, "source": 2638686117, "destination": 2638686155, "path": [[-10630.160723508197, -9205.800581423062], [-10632.010723504947, -9294.650581423979], [-10632.560723507822, -9321.700581423898]]}, {"length": 174.924847751, "source": 2638686117, "destination": 2638686245, "path": [[-10630.160723508197, -9205.800581423062], [-10601.410723509729, -9205.050581421403], [-10554.110723511201, -9201.150581422013], [-10516.110723507665, -9193.400581423815], [-10480.110723506186, -9191.050581421223], [-10445.210723510456, -9205.050581421403], [-10412.310723509676, -9229.150581422375], [-10369.160723506355, -9271.900581421021], [-10338.310723511768, -9308.450581421823], [-10319.810723508737, -9337.250581420874], [-10311.610723505282, -9369.100581423594], [-10304.410723506408, -9422.000581423617], [-10302.36072350732, -9459.300581422525], [-10308.510723511688, -9511.400581423857], [-10314.66072350895, -9546.400581420756], [-10319.810723508737, -9587.600581422606], [-10317.760723509651, -9610.150581423226], [-10310.560723510775, -9630.350581421255], [-10289.010723511183, -9663.800581421356], [-10259.210723511103, -9698.800581421807], [-10221.160723510537, -9738.450581423309], [-10185.210723506088, -9785.850581423005]]}, {"length": 627.335879938, "source": 2638686117, "destination": 2638686205, "path": [[-10630.160723508197, -9205.800581423062], [-10698.010723508844, -9199.600581421662], [-10750.41072351013, -9193.400581423815], [-10804.860723510501, -9184.850581423376], [-10880.910723507497, -9184.050581421132], [-11102.860723511298, -9248.600581422295], [-11135.760723504973, -9261.800581423784], [-11169.660723510333, -9269.600581422566], [-11206.660723509287, -9269.600581422566], [-11235.460723504786, -9262.600581422475], [-11264.21072351036, -9252.500581421686], [-11284.760723505371, -9237.700581422814], [-11298.110723508615, -9216.700581422543], [-11302.260723510926, -9203.500581421053], [-11294.010723510439, -9169.300581422845], [-11291.96072351135, -9134.300581422394], [-11296.060723509527, -9085.300581421763], [-11305.31072350749, -9054.200581420702], [-11314.560723505452, -9009.100581423012], [-11322.810723505938, -8975.650581422911], [-11326.910723511219, -8943.800581423744], [-11327.960723505726, -8911.150581422333], [-11323.81072351052, -8890.900581423723], [-11311.510723508889, -8866.80058142275], [-11300.210723504733, -8838.850581422974], [-11270.410723511759, -8811.60058142072], [-11241.610723509155, -8796.050581423742], [-11182.010723508994, -8778.200581421203], [-11129.61072350771, -8768.850581422072], [-11080.260723510093, -8761.850581421982], [-11038.160723508383, -8755.650581420581], [-10992.910723508941, -8748.650581424045], [-10954.910723505407, -8747.100581423694], [-10917.910723506451, -8752.50058142285], [-10891.210723507073, -8757.200581420931], [-10866.510723509748, -8766.500581423032], [-10842.910723511068, -8782.050581423562], [-10824.410723508037, -8799.950581423132], [-10808.960723508677, -8823.300581422443], [-10791.510723507257, -8851.25058142222], [-10775.060723510422, -8866.050581421092], [-10746.310723504848, -8878.500581420923], [-10715.460723510261, -8883.900581423632], [-10680.510723510395, -8886.250581422672], [-10645.560723510527, -8887.800581423022], [-10613.71072351136, -8892.500581421104], [-10577.760723506912, -8904.150581422244], [-10500.660723508303, -8936.800581423653], [-10462.660723504769, -8946.90058142089], [-10423.610723506727, -8954.700581423225], [-10394.86072350826, -8953.100581422292], [-10364.010723506566, -8950.800581423835], [-10322.910723509438, -8946.90058142089], [-10276.660723505414, -8943.800581423744], [-10231.46072351011, -8942.250581423394], [-10188.260723509757, -8945.350581420542], [-10149.210723511715, -8953.100581422292], [-10099.91072351113, -8973.350581420902], [-10057.760723505282, -8997.450581421874], [-10013.560723507453, -9027.000581422584], [-9969.410723506655, -9055.75058142105], [-9935.460723511369, -9085.300581421763], [-9902.610723507622, -9115.650581421163], [-9870.760723508454, -9142.850581422834], [-9825.510723509013, -9165.400581423455], [-9784.410723504778, -9184.850581423376], [-9746.410723508347, -9199.600581421662], [-9727.910723505318, -9219.800581423244], [-9709.410723509392, -9254.050581422036], [-9702.210723510518, -9285.150581423097], [-9700.160723511432, -9327.900581421743], [-9700.160723511432, -9355.900581422105], [-9708.36072350778, -9376.900581422376], [-9723.810723507142, -9400.200581421102], [-9755.66072350631, -9435.950581423214], [-9794.710723511456, -9481.850581423147], [-9815.26072350647, -9514.500581421004], [-9825.510723509013, -9557.250581423204], [-9836.810723506062, -9647.450581422134], [-9844.010723504936, -9690.200581420782]]}, {"length": 11.5193341856, "source": 2587199398, "destination": 2587199400, "path": [[1057.639276488942, -1304.850581423267], [1054.9392764929166, -1314.7005814211354], [1048.2392764927795, -1322.8505814240066], [1036.1892764905178, -1328.9005814236532], [1017.3892764910875, -1332.2005814231375], [1008.6892764888944, -1332.1005814219689]]}, {"length": 36.3373349815, "source": 2587199398, "destination": 2587199434, "path": [[1057.639276488942, -1304.850581423267], [1273.5392764895437, -1304.150581422192]]}, {"length": 15.5769344124, "source": 2587199398, "destination": 2587199389, "path": [[1057.639276488942, -1304.850581423267], [965.0892764909713, -1305.2005814238044]]}, {"length": 1.54835003991, "source": 2587199399, "destination": 2587199400, "path": [[1008.6892764888944, -1339.0505814214748], [1008.6892764888944, -1332.1005814219689]]}, {"length": 10.705828544, "source": 2587199400, "destination": 2587199389, "path": [[1008.6892764888944, -1332.1005814219689], [1001.3392764918194, -1331.9505814237687], [986.5892764935325, -1328.9005814236532], [973.1392764891211, -1322.8505814240066], [966.7892764895214, -1315.4505814227946], [965.0892764909713, -1305.2005814238044]]}, {"length": 11.5193341856, "source": 2587199400, "destination": 2587199398, "path": [[1008.6892764888944, -1332.1005814219689], [1017.3892764910875, -1332.2005814231375], [1036.1892764905178, -1328.9005814236532], [1048.2392764927795, -1322.8505814240066], [1054.9392764929166, -1314.7005814211354], [1057.639276488942, -1304.850581423267]]}, {"length": 1.54835003991, "source": 2587199400, "destination": 2587199399, "path": [[1008.6892764888944, -1332.1005814219689], [1008.6892764888944, -1339.0505814214748]]}, {"length": 7.17844227293, "source": 2587199406, "destination": 2587199409, "path": [[281.9892764946985, -1555.5005814213985], [297.1892764946915, -1554.5005814239232], [311.9392764929785, -1551.4505814238078], [321.9892764931842, -1546.350581421052]]}, {"length": 10.4743514614, "source": 2587199406, "destination": 2568599802, "path": [[281.9892764946985, -1555.5005814213985], [281.7392764882243, -1602.600581421143]]}, {"length": 55.1558917273, "source": 2587199406, "destination": 2586986572, "path": [[281.9892764946985, -1555.5005814213985], [282.0392764917301, -1547.4505814232487], [282.1892764899303, -1515.8505814234502], [278.38927649526113, -1307.5005814222607]]}, {"length": 16.1299659612, "source": 2587199406, "destination": 2586986545, "path": [[281.9892764946985, -1555.5005814213985], [269.68927649306806, -1554.5005814239232], [258.9892764888191, -1552.9505814235733], [249.5892764926566, -1549.9005814234579], [238.18927649443822, -1543.8505814238113], [229.48927649224515, -1536.700581421968], [196.58927649146563, -1547.0005814215426]]}, {"length": 54.792749435, "source": 2587199409, "destination": 2587199413, "path": [[321.9892764931842, -1546.350581421052], [332.7392764944648, -1538.7505814210556], [344.789276489621, -1527.1005814234684], [350.18927648877707, -1513.400581423241], [350.8392764928203, -1307.2505814228919]]}, {"length": 28.0710929198, "source": 2587199409, "destination": 2587199414, "path": [[321.9892764931842, -1546.350581421052], [338.08927648948384, -1567.1505814225384], [338.08927648948384, -1626.5505814239134], [281.6392764941611, -1627.050581422651]]}, {"length": 7.17844227293, "source": 2587199409, "destination": 2587199406, "path": [[321.9892764931842, -1546.350581421052], [311.9392764929785, -1551.4505814238078], [297.1892764946915, -1554.5005814239232], [281.9892764946985, -1555.5005814213985]]}, {"length": 35.8828305473, "source": 2587199413, "destination": 2587199420, "path": [[350.8392764928203, -1307.2505814228919], [564.0392764902913, -1306.550581421817]]}, {"length": 12.193937956, "source": 2587199413, "destination": 2586986572, "path": [[350.8392764928203, -1307.2505814228919], [278.38927649526113, -1307.5005814222607]]}, {"length": 54.792749435, "source": 2587199413, "destination": 2587199409, "path": [[350.8392764928203, -1307.2505814228919], [350.18927648877707, -1513.400581423241], [344.789276489621, -1527.1005814234684], [332.7392764944648, -1538.7505814210556], [321.9892764931842, -1546.350581421052]]}, {"length": 28.0710929198, "source": 2587199414, "destination": 2587199409, "path": [[281.6392764941611, -1627.050581422651], [338.08927648948384, -1626.5505814239134], [338.08927648948384, -1567.1505814225384], [321.9892764931842, -1546.350581421052]]}, {"length": 5.43707411614, "source": 2587199414, "destination": 2568599802, "path": [[281.6392764941611, -1627.050581422651], [281.7392764882243, -1602.600581421143]]}, {"length": 41.1536064305, "source": 2587199414, "destination": 2568599797, "path": [[281.6392764941611, -1627.050581422651], [280.68927649371744, -1812.1005814215607]]}, {"length": 4.1141121403, "source": 2587199417, "destination": 2587199419, "path": [[597.5892764951141, -1366.9505814206673], [597.7892764903459, -1348.45058142119]]}, {"length": 9.35198335656, "source": 2587199418, "destination": 2587199419, "path": [[598.2392764920519, -1306.4005814236168], [597.7892764903459, -1348.45058142119]]}, {"length": 5.75593767381, "source": 2587199418, "destination": 2587199420, "path": [[598.2392764920519, -1306.4005814236168], [564.0392764902913, -1306.550581421817]]}, {"length": 4.9639521497, "source": 2587199418, "destination": 2587199421, "path": [[598.2392764920519, -1306.4005814236168], [627.7392764886258, -1306.3005814224482]]}, {"length": 4.1141121403, "source": 2587199419, "destination": 2587199417, "path": [[597.7892764903459, -1348.45058142119], [597.5892764951141, -1366.9505814206673]]}, {"length": 9.35198335656, "source": 2587199419, "destination": 2587199418, "path": [[597.7892764903459, -1348.45058142119], [598.2392764920519, -1306.4005814236168]]}, {"length": 10.913033354, "source": 2587199419, "destination": 2587199420, "path": [[597.7892764903459, -1348.45058142119], [564.0392764902913, -1306.550581421817]]}, {"length": 10.6429351854, "source": 2587199419, "destination": 2587199421, "path": [[597.7892764903459, -1348.45058142119], [627.7392764886258, -1306.3005814224482]]}, {"length": 5.75593767381, "source": 2587199420, "destination": 2587199418, "path": [[564.0392764902913, -1306.550581421817], [598.2392764920519, -1306.4005814236168]]}, {"length": 10.913033354, "source": 2587199420, "destination": 2587199419, "path": [[564.0392764902913, -1306.550581421817], [597.7892764903459, -1348.45058142119]]}, {"length": 35.8828305473, "source": 2587199420, "destination": 2587199413, "path": [[564.0392764902913, -1306.550581421817], [350.8392764928203, -1307.2505814228919]]}, {"length": 40.2860829898, "source": 4224950602, "destination": 4224950818, "path": [[5628.639276494596, 2918.499418576914], [5627.989276490553, 2737.349418577395]]}, {"length": 17.1526022104, "source": 4224950602, "destination": 4224950723, "path": [[5628.639276494596, 2918.499418576914], [5730.539276491698, 2918.4494185763297]]}, {"length": 13.6598198694, "source": 4224950602, "destination": 4224950670, "path": [[5628.639276494596, 2918.499418576914], [5547.489276494844, 2918.5494185774987]]}, {"length": 58.9745444972, "source": 2587199422, "destination": 135016394, "path": [[1406.9392764923805, -1249.5005814230353], [1757.3392764944629, -1248.600581423176]]}, {"length": 22.4602064582, "source": 2587199422, "destination": 2587199435, "path": [[1406.9392764923805, -1249.5005814230353], [1273.489276492512, -1249.4005814218667]]}, {"length": 12.0534355504, "source": 2587199422, "destination": 2587199423, "path": [[1406.9392764923805, -1249.5005814230353], [1406.9392764923805, -1303.7005814240388]]}, {"length": 105.589216374, "source": 1393207231, "destination": 2442184705, "path": [[5521.53927649357, 454.3994185759459], [5525.539276490576, 525.2494185761236], [5593.889276489961, 621.5494185788373], [5610.039276490397, 636.7994185794146], [5633.2392764915085, 643.09941857843], [5656.839276490189, 643.6994185783362], [5681.239276491113, 628.749418577712], [5685.689276489825, 608.6994185778849], [5680.1392764924685, 553.749418578775], [5676.489276488894, 509.1994185768556], [5675.439276494388, 414.5494185792131]]}, {"length": 200.608603522, "source": 1393207231, "destination": 135008279, "path": [[5521.53927649357, 454.3994185759459], [5994.739276488303, 456.94941857732374], [6082.089276489455, 456.1994185792173], [6713.339276494424, 449.89941857664917]]}, {"length": 75.8046346451, "source": 1393207236, "destination": 1279884665, "path": [[5862.839276488785, -44.00058142195462], [5834.039276493286, 33.39941857660733], [5818.539276489787, 84.64941857866393], [5811.68927649145, 123.19941857796834], [5813.439276494137, 165.64941857666327], [5823.689276489575, 207.64941857720487], [5847.689276492929, 289.44941857744766]]}, {"length": 55.8888455371, "source": 1393207236, "destination": 1279884614, "path": [[5862.839276488785, -44.00058142195462], [5887.039276494477, -189.55058142111625], [5891.78927648959, -294.10058142076423]]}, {"length": 41.4895045314, "source": 1393207236, "destination": 1942302134, "path": [[5862.839276488785, -44.00058142195462], [5873.189276492496, 33.89941857889767], [5884.239276490178, 85.94941857609228], [5907.03927649372, 138.74941857849876]]}, {"length": 36.352456597, "source": 1393207238, "destination": 2080617354, "path": [[5502.039276493065, 409.79941857699487], [5467.139276490229, 400.5994185760642], [5453.739276489955, 394.499418579386], [5433.889276488912, 382.49941857770864], [5417.539276493244, 366.0994185779032], [5376.239276493778, 288.2494185776352]]}, {"length": 37.8788804968, "source": 1393207238, "destination": 2080617414, "path": [[5502.039276493065, 409.79941857699487], [5276.989276488564, 409.49941857704175]]}, {"length": 133.055967909, "source": 2282973129, "destination": 2282972945, "path": [[-8558.810723506838, 2865.2494185763544], [-8558.660723508638, 3023.0994185771465], [-8562.96072350915, 3047.3494185763175], [-8573.210723511693, 3069.7994185793223], [-8588.660723511055, 3088.6994185763683], [-8607.410723506347, 3107.449418578767], [-8634.560723507435, 3124.799418579016], [-8676.710723506176, 3141.999418577512], [-8720.66072351174, 3149.649418578093], [-8768.810723509545, 3150.5994185785366], [-9049.9107235118, 3149.4494185793087]]}, {"length": 15.3766096113, "source": 2282973129, "destination": 2282973130, "path": [[-8558.810723506838, 2865.2494185763544], [-8650.160723504996, 2865.2494185763544]]}, {"length": 52.3060330445, "source": 2282973129, "destination": 2282973277, "path": [[-8558.810723506838, 2865.2494185763544], [-8558.910723508006, 2750.4994185783007], [-8559.060723506207, 2630.0494185775847]]}, {"length": 12.1758161451, "source": 2587199434, "destination": 2587199435, "path": [[1273.5392764895437, -1304.150581422192], [1273.489276492512, -1249.4005814218667]]}, {"length": 36.3373349815, "source": 2587199434, "destination": 2587199398, "path": [[1273.5392764895437, -1304.150581422192], [1057.639276488942, -1304.850581423267]]}, {"length": 22.4521795087, "source": 2587199434, "destination": 2587199423, "path": [[1273.5392764895437, -1304.150581422192], [1406.9392764923805, -1303.7005814240388]]}, {"length": 30.864391118, "source": 2587199434, "destination": 2587199423, "path": [[1273.5392764895437, -1304.150581422192], [1274.5392764941244, -1313.950581423029], [1277.5392764936555, -1321.5505814230255], [1279.539276488606, -1324.7505814213412], [1282.389276489937, -1327.7505814208723], [1287.789276489093, -1330.700581423372], [1293.7892764952608, -1332.4505814225063], [1298.1392764928046, -1333.1005814229968], [1302.5392764944854, -1333.250581421197], [1372.73927649062, -1333.250581421197], [1382.8392764949626, -1331.7005814208471], [1393.5392764921062, -1328.150581421994], [1400.9392764933182, -1322.0505814217631], [1404.9392764903246, -1314.4505814217666], [1406.9392764923805, -1303.7005814240388]]}, {"length": 42.1269494764, "source": 2587199435, "destination": 1887485040, "path": [[1273.489276492512, -1249.4005814218667], [1023.189276494918, -1249.8505814235727]]}, {"length": 12.1758161451, "source": 2587199435, "destination": 2587199434, "path": [[1273.489276492512, -1249.4005814218667], [1273.5392764895437, -1304.150581422192]]}, {"length": 22.4602064582, "source": 2587199435, "destination": 2587199422, "path": [[1273.489276492512, -1249.4005814218667], [1406.9392764923805, -1249.5005814230353]]}, {"length": 8.8049734434, "source": 2282973135, "destination": 2282973136, "path": [[-9294.060723505027, 2861.499418578717], [-9241.76072350491, 2860.799418577642]]}, {"length": 52.1504964709, "source": 2282973135, "destination": 2282973290, "path": [[-9294.060723505027, 2861.499418578717], [-9294.260723507363, 2626.9994185774694]]}, {"length": 47.0364696623, "source": 2282973135, "destination": 2282972987, "path": [[-9294.060723505027, 2861.499418578717], [-9293.960723510963, 2968.249418579205], [-9295.060723509607, 3072.9994185776377]]}, {"length": 29.2350268105, "source": 2423703504, "destination": 2423701866, "path": [[-5585.160723505567, -1268.750581420619], [-5758.8607235103955, -1269.4505814216939]]}, {"length": 85.0498514149, "source": 2423703504, "destination": 2331404988, "path": [[-5585.160723505567, -1268.750581420619], [-5153.4107235085, -1265.1005814205973], [-5079.860723505191, -1264.500581420691]]}, {"length": 117.941371122, "source": 2423703504, "destination": 2331404991, "path": [[-5585.160723505567, -1268.750581420619], [-5577.060723510385, -738.4505814229669]]}, {"length": 273.431949304, "source": 135016502, "destination": 135043204, "path": [[-8546.410723511144, -1279.6505814236525], [-8675.060723511762, -1282.1005814238617], [-8808.260723505156, -1284.400581422318], [-8954.110723507823, -1285.100581423393], [-8982.460723508722, -1300.700581420955], [-9001.76072350689, -1327.7005814238407], [-9024.960723508002, -1357.9005814214895], [-9057.160723507706, -1378.2005814206855], [-9085.610723509773, -1391.350581421591], [-9114.61072350761, -1397.6005814235748], [-9161.560723505601, -1398.5005814234341], [-9200.310723507244, -1393.9005814229688], [-9238.260723506643, -1377.1005814220416], [-9260.610723508478, -1353.700581422146], [-9270.910723508052, -1325.7505814223691], [-9275.410723510902, -1282.3005814226462], [-9278.260723505127, -733.3005814231797]]}, {"length": 46.8578727228, "source": 135016502, "destination": 2282822844, "path": [[-8546.410723511144, -1279.6505814236525], [-8546.510723505207, -1448.2005814215881], [-8546.260723505839, -1490.3505814238827]]}, {"length": 122.215201401, "source": 135016502, "destination": 135043207, "path": [[-8546.410723511144, -1279.6505814236525], [-8548.910723504832, -730.1005814213113]]}, {"length": 85.5898600128, "source": 2074159070, "destination": 134955644, "path": [[10404.839276489496, -10354.300581422392], [10400.589276493121, -9969.450581422734]]}, {"length": 12.8769686564, "source": 2316883622, "destination": 134985665, "path": [[-2695.1607235048414, 5439.199418578511], [-2694.8107235114094, 5381.299418576901]]}, {"length": 13.1560095472, "source": 2316883622, "destination": 2352260149, "path": [[-2695.1607235048414, 5439.199418578511], [-2617.0107235117257, 5439.5494185790485]]}, {"length": 12.3897104099, "source": 2316883622, "destination": 2316883623, "path": [[-2695.1607235048414, 5439.199418578511], [-2768.7607235051814, 5438.849418577974]]}, {"length": 271.864505792, "source": 2080507888, "destination": 3085526232, "path": [[244.38927648873232, -9566.700581423504], [272.93927649196803, -9573.350581423058], [282.78927648983654, -9577.050581423662], [296.48927649361667, -9583.950581422585], [310.5892764949658, -9597.000581422322], [316.1892764893537, -9607.100581423112], [323.23927649002826, -9616.700581421612], [332.38927649392735, -9623.600581420533], [352.0392764926328, -9636.900581423191], [370.68927649386296, -9645.150581423679], [394.2392764884062, -9651.800581423231], [417.4392764895174, -9653.10058142066], [436.439276491285, -9652.0505814226], [459.98927649293364, -9647.000581423981], [475.43927649229545, -9638.500581420572], [489.13927648897015, -9630.25058142364], [505.68927649408124, -9615.90058142292], [517.9892764886063, -9601.500581421618], [521.139276493443, -9590.350581422768], [522.1392764909183, -9566.450581420582], [547.9892764910232, -9567.9505814239], [567.8892764890975, -9589.750581422863], [587.7892764942771, -9619.100581421237], [607.6392764882144, -9650.700581421035], [611.6392764923262, -9686.800581423682], [607.6392764882144, -9707.150581423462], [589.7892764892276, -9720.650581421352], [568.8892764936782, -9731.20058142385], [535.0892764894866, -9735.700581423145], [486.3392764917762, -9730.45058142219], [419.73927649507914, -9718.40058142348], [250.68927649130046, -9676.30058142177], [113.48927649379448, -9633.40058142137], [-52.560723510453045, -9540.8505814234], [-256.4107235087931, -9416.000581421002]]}, {"length": 303.652928336, "source": 2080507888, "destination": 2080560724, "path": [[244.38927648873232, -9566.700581423504], [251.2392764941751, -9544.800581423373], [254.28927649073785, -9501.300581423067], [258.5892764912501, -9346.900581423512], [266.3392764929995, -9215.150581422193], [270.3892764941429, -9143.100581422203], [278.4392764922927, -9066.000581423594], [290.48927649455436, -9006.100581423481], [305.2392764928413, -8951.300581422573], [325.3392764932528, -8893.500581422131], [332.03927649338993, -8854.900581422242], [377.6392764933689, -8626.600581422394], [383.2892764918938, -8591.950581422481], [387.33927649303723, -8534.100581421455], [389.98927649203097, -8496.550581423178], [398.0392764901808, -8460.050581422962], [425.93927648937324, -8372.950581421179], [444.98927648817244, -8323.050581420688], [483.8892764951197, -8264.200581422188], [502.33927649401267, -8223.900581423748]]}, {"length": 332.566831283, "source": 2080507888, "destination": 3688816196, "path": [[244.38927648873232, -9566.700581423504], [234.98927649256984, -9603.050581421969], [228.7892764911703, -10041.100581421602], [235.7892764948133, -10124.150581422242], [237.08927648868894, -10182.000581423268], [235.08927649373845, -10635.95058142397], [224.78927649416391, -10679.350581423108], [226.089276495145, -10975.600581421219], [239.7392764947881, -11059.900581422255]]}, {"length": 26.3156628201, "source": 2069379711, "destination": 2069376794, "path": [[-4391.4607235109315, 5036.249418576944], [-4332.460723510678, 5013.89941857866], [-4285.510723505581, 4997.649418577055], [-4252.160723510201, 4982.749418577015]]}, {"length": 25.2621788462, "source": 2069379711, "destination": 2069379699, "path": [[-4391.4607235109315, 5036.249418576944], [-4442.410723505929, 5055.49941857808], [-4489.360723511027, 5076.849418578888], [-4520.210723505614, 5094.099418577969]]}, {"length": 21.9377474639, "source": 2069379711, "destination": 2069393852, "path": [[-4391.4607235109315, 5036.249418576944], [-4427.660723507643, 5014.899418576135], [-4458.510723509335, 5000.69941857717], [-4504.71072350922, 4989.9994185764735]]}, {"length": 164.868430799, "source": 1428269050, "destination": 1428269050, "path": [[-6437.310723505618, -7416.700581423185], [-6357.260723511616, -7355.050581423939], [-6100.560723510284, -7563.650581420944], [-6186.110723511718, -7624.1005814239315], [-6437.310723505618, -7416.700581423185]]}, {"length": 164.868430799, "source": 1428269050, "destination": 1428269050, "path": [[-6437.310723505618, -7416.700581423185], [-6186.110723511718, -7624.1005814239315], [-6100.560723510284, -7563.650581420944], [-6357.260723511616, -7355.050581423939], [-6437.310723505618, -7416.700581423185]]}, {"length": 148.304573798, "source": 1428269050, "destination": 1428268307, "path": [[-6437.310723505618, -7416.700581423185], [-6461.310723508973, -7397.400581421465], [-6482.760723507397, -7379.150581421356], [-6504.1607235087895, -7363.300581420873], [-6516.510723507452, -7351.800581421486], [-6531.2607235057385, -7330.550581421847], [-6586.410723507186, -7215.800581423792], [-6617.760723507616, -7149.250581420574], [-6642.960723510782, -7110.050581420779], [-6675.310723508687, -7070.850581420984], [-6721.5107235085725, -7029.150581423948], [-6914.6107235056315, -6868.050581420704]]}, {"length": 12.2105567444, "source": 2586986493, "destination": 2586986523, "path": [[-556.6107235068785, -1256.3505814213727], [-629.1607235056063, -1256.400581421957]]}, {"length": 18.6397688548, "source": 2586986493, "destination": 135016388, "path": [[-556.6107235068785, -1256.3505814213727], [-445.86072350938366, -1256.3005814207884]]}, {"length": 11.8311794386, "source": 2586986493, "destination": 2586986567, "path": [[-556.6107235068785, -1256.3505814213727], [-556.5107235057098, -1309.5505814213482]]}, {"length": 0.977420095934, "source": 2586986494, "destination": 2703708309, "path": [[-346.1107235054328, -1584.7505814221563], [-346.1107235054328, -1580.3505814240282]]}, {"length": 7.80147473159, "source": 2586986495, "destination": 2586986512, "path": [[-347.4107235064139, -1255.7005814208821], [-301.06072350832846, -1255.400581420929]]}, {"length": 11.7532212058, "source": 2586986495, "destination": 2586986569, "path": [[-347.4107235064139, -1255.7005814208821], [-347.2107235111821, -1308.550581423873]]}, {"length": 16.5702447257, "source": 2586986495, "destination": 135016388, "path": [[-347.4107235064139, -1255.7005814208821], [-445.86072350938366, -1256.3005814207884]]}, {"length": 286.625860736, "source": 134948864, "destination": 134955574, "path": [[-2601.1607235076895, -9873.100581422988], [-2600.660723508952, -9933.600581423008], [-2605.360723507033, -10046.950581422465], [-2601.4607235111953, -10299.100581423914], [-2598.5607235057273, -10348.150581421578], [-2591.8107235085586, -10411.650581421129], [-2569.9107235084284, -10473.550581423297], [-2536.1107235113423, -10538.500581422028], [-2469.5107235075398, -10622.700581421896], [-2405.410723511636, -10690.350581423758], [-2364.2107235062326, -10734.750581423925], [-2332.5607235094026, -10769.900581422575], [-2287.010723506455, -10818.650581423839], [-2225.660723510714, -10885.100581422335], [-2178.6607235085853, -10972.10058142295], [-2140.1607235063125, -11071.10058142169]]}, {"length": 31.9590434555, "source": 2442184705, "destination": 1942302122, "path": [[5675.439276494388, 414.5494185792131], [5758.139276494489, 437.1994185774497], [5781.73927649317, 443.44941857943354], [5855.839276492247, 459.09941857757985]]}, {"length": 105.589216374, "source": 2442184705, "destination": 1393207231, "path": [[5675.439276494388, 414.5494185792131], [5676.489276488894, 509.1994185768556], [5680.1392764924685, 553.749418578775], [5685.689276489825, 608.6994185778849], [5681.239276491113, 628.749418577712], [5656.839276490189, 643.6994185783362], [5633.2392764915085, 643.09941857843], [5610.039276490397, 636.7994185794146], [5593.889276489961, 621.5494185788373], [5525.539276490576, 525.2494185761236], [5521.53927649357, 454.3994185759459]]}, {"length": 111.375478343, "source": 2442184705, "destination": 1942259823, "path": [[5675.439276494388, 414.5494185792131], [5674.689276489175, 345.4994185787541], [5667.989276489038, 318.09941857829926], [5647.839276491595, 287.64941857772897], [5634.439276491321, 269.3494185770362], [5604.139276492504, 245.59941857660306], [5560.689276492781, 213.9494185762203], [5536.339276488889, 183.5494185762343], [5528.639276491276, 155.84941857937906], [5526.789276494526, 133.49941857754288], [5534.489276492139, 108.04941857855965], [5550.0892764897, 82.2994185760706], [5580.739276489056, 60.39941857949316], [5631.789276492327, 31.84941857625745], [5674.689276489175, -5.700581422019013]]}, {"length": 13.8855848593, "source": 2080507908, "destination": 2080560729, "path": [[556.8892764884481, -8117.400581422629], [526.3392764902619, -8175.400581421854]]}, {"length": 13.5723469768, "source": 2080507908, "destination": 2140986963, "path": [[556.8892764884481, -8117.400581422629], [527.239276493674, -8101.950581423267], [484.2892764926887, -8092.700581421752]]}, {"length": 292.689037207, "source": 2080507908, "destination": 1429423374, "path": [[556.8892764884481, -8117.400581422629], [612.8892764891702, -8089.05058142173], [652.1892764936865, -8046.250581422499], [689.9892764948845, -7986.300581421801], [699.2392764928468, -7953.700581420975], [712.5892764889841, -7864.550581423657], [744.989276491026, -7784.300581423764], [807.8892764942225, -7643.050581421562], [895.2892764924059, -7449.80058142275], [1227.5892764890273, -6920.150581422035]]}, {"length": 52.480564157, "source": 2586986501, "destination": 2586986535, "path": [[-99.26072350907589, -1742.4005814206112], [-99.26072350907589, -1554.1005814228015], [-102.56072350500745, -1540.0505814220367], [-112.71072350638178, -1517.4505814208317], [-113.81072350502563, -1507.9505814235006]]}, {"length": 38.9301257624, "source": 2029677569, "destination": 1937680639, "path": [[4594.889276489766, -6849.450581423611], [4363.58927649394, -6852.900581421295]]}, {"length": 8.22931955172, "source": 2029677569, "destination": 1933539628, "path": [[4594.889276489766, -6849.450581423611], [4594.339276493997, -6886.450581422565]]}, {"length": 10.0649468753, "source": 2029677569, "destination": 135010295, "path": [[4594.889276489766, -6849.450581423611], [4654.689276492263, -6848.550581423751]]}, {"length": 78.052284255, "source": 135047176, "destination": 1855078878, "path": [[-3116.760723507639, -2927.3005814225426], [-2653.0107235060996, -2931.1505814213488]]}, {"length": 26.876028379, "source": 2586986508, "destination": 2586986571, "path": [[-135.6107235110926, -1402.450581423409], [-151.71072350739223, -1383.100581421104], [-171.9107235089723, -1362.7505814213237], [-200.16072350870218, -1334.250581422225], [-234.11072351109397, -1307.7505814216295]]}, {"length": 30.7335903672, "source": 2586986508, "destination": 2586986540, "path": [[-135.6107235110926, -1402.450581423409], [-103.3107235102193, -1423.8505814212488], [-72.41072351149569, -1434.000581422623], [-38.7607235055043, -1444.200581421029], [-7.710723508580486, -1452.6505814238533], [28.489276495236027, -1457.4005814225188]]}, {"length": 23.8992610108, "source": 2586986508, "destination": 2586986535, "path": [[-135.6107235110926, -1402.450581423409], [-126.1607235107931, -1421.8005814221613], [-120.81072350866862, -1439.100581421826], [-116.7607235075252, -1481.8505814240268], [-113.81072350502563, -1507.9505814235006]]}, {"length": 16.2020047035, "source": 2586986512, "destination": 2586986571, "path": [[-301.06072350832846, -1255.400581420929], [-234.11072351109397, -1307.7505814216295]]}, {"length": 97.3515525949, "source": 2586986512, "destination": 135016390, "path": [[-301.06072350832846, -1255.400581420929], [277.33927649364887, -1251.5505814221228]]}, {"length": 7.80147473159, "source": 2586986512, "destination": 2586986495, "path": [[-301.06072350832846, -1255.400581420929], [-347.4107235064139, -1255.7005814208821]]}, {"length": 19.7938132528, "source": 2271725585, "destination": 2271725601, "path": [[7003.1392764917655, 2962.699418578296], [7031.989276491402, 2969.8494185765867], [7100.889276493661, 2929.3494185793634]]}, {"length": 15.5520084201, "source": 2271725585, "destination": 1962186627, "path": [[7003.1392764917655, 2962.699418578296], [6999.889276492866, 2985.4994185782857], [6996.939276490366, 3032.4494185762774]]}, {"length": 74.3875300041, "source": 2271725585, "destination": 2271725637, "path": [[7003.1392764917655, 2962.699418578296], [6740.839276488941, 2693.4994185765504]]}, {"length": 39.7890622364, "source": 135047187, "destination": 135047193, "path": [[5601.739276492879, -2680.6005814208334], [5660.3392764884575, -2687.600581420924], [5701.839276490262, -2689.6005814229793], [5837.339276489218, -2689.100581420689]]}, {"length": 21.3106710192, "source": 135047187, "destination": 2271725708, "path": [[5601.739276492879, -2680.6005814208334], [5565.339276493831, -2668.100581423971], [5486.889276490103, -2640.2505814218102]]}, {"length": 10.4885394042, "source": 135047187, "destination": 2271725711, "path": [[5601.739276492879, -2680.6005814208334], [5581.0892764895925, -2725.1005814221685]]}, {"length": 47.7621479841, "source": 2586986517, "destination": 2586986580, "path": [[-756.9107235099182, -1410.6005814227274], [-793.2607235048295, -1439.5005814229478], [-818.7107235073654, -1453.7005814219128], [-854.9107235111819, -1467.9005814208779], [-885.7607235057685, -1480.1005814213397], [-915.2607235094479, -1481.1005814223677], [-975.6107235077138, -1481.1005814223677], [-1009.1607235054312, -1477.0505814212243]]}, {"length": 24.3273867723, "source": 2586986517, "destination": 2586986524, "path": [[-756.9107235099182, -1410.6005814227274], [-774.4107235083675, -1451.300581422288], [-782.4607235065173, -1492.0005814218484], [-784.2107235092044, -1517.4005814238]]}, {"length": 26.3208239856, "source": 2586986517, "destination": 2586986565, "path": [[-756.9107235099182, -1410.6005814227274], [-750.160723505644, -1397.3505814206533], [-739.4107235114689, -1382.1005814236287], [-725.9607235070575, -1363.800581422936], [-715.210723505777, -1349.5505814233866], [-689.6607235091778, -1322.0505814217631], [-677.6607235110532, -1309.0005814220262]]}, {"length": 31.8130035244, "source": 135047193, "destination": 2271725713, "path": [[5837.339276489218, -2689.100581420689], [5837.239276495155, -2832.1505814226102]]}, {"length": 39.7890622364, "source": 135047193, "destination": 135047187, "path": [[5837.339276489218, -2689.100581420689], [5701.839276490262, -2689.6005814229793], [5660.3392764884575, -2687.600581420924], [5601.739276492879, -2680.6005814208334]]}, {"length": 45.0374330145, "source": 135047193, "destination": 2086854492, "path": [[5837.339276489218, -2689.100581420689], [6104.939276490029, -2687.850581423845]]}, {"length": 106.192145021, "source": 135047193, "destination": 135107417, "path": [[5837.339276489218, -2689.100581420689], [5834.839276488424, -2211.6005814218906]]}, {"length": 46.4513919195, "source": 135047193, "destination": 2271725711, "path": [[5837.339276489218, -2689.100581420689], [5789.7892764913195, -2725.150581422753], [5581.0892764895925, -2725.1005814221685]]}, {"length": 20.1312232572, "source": 2638686234, "destination": 2638686205, "path": [[-9764.910723511377, -9756.300581422294], [-9779.26072350499, -9736.100581420715], [-9793.660723509845, -9723.650581420883], [-9810.110723506681, -9708.900581422597], [-9844.010723504936, -9690.200581420782]]}, {"length": 89.6225676636, "source": 2586986523, "destination": 135016386, "path": [[-629.1607235056063, -1256.400581421957], [-1161.6607235112042, -1256.6005814207415]]}, {"length": 14.264344846, "source": 2586986523, "destination": 2586986565, "path": [[-629.1607235056063, -1256.400581421957], [-677.6607235110532, -1309.0005814220262]]}, {"length": 12.2105567444, "source": 2586986523, "destination": 2586986493, "path": [[-629.1607235056063, -1256.400581421957], [-556.6107235068785, -1256.3505814213727]]}, {"length": 15.1855668378, "source": 2586986524, "destination": 2586986513, "path": [[-784.2107235092044, -1517.4005814238], [-785.160723509648, -1530.7005814229058], [-786.5107235076607, -1585.6505814220156]]}, {"length": 24.3273867723, "source": 2586986524, "destination": 2586986517, "path": [[-784.2107235092044, -1517.4005814238], [-782.4607235065173, -1492.0005814218484], [-774.4107235083675, -1451.300581422288], [-756.9107235099182, -1410.6005814227274]]}, {"length": 21.4651206609, "source": 2586986524, "destination": 2586986529, "path": [[-784.2107235092044, -1517.4005814238], [-767.6607235111987, -1541.9005814223397], [-738.0607235063508, -1562.25058142212], [-708.5107235056398, -1576.5005814216693], [-694.5107235054593, -1582.6005814219002]]}, {"length": 2.24858734406, "source": 2586986528, "destination": 2586986529, "path": [[-682.9607235090407, -1587.7005814211032], [-694.5107235054593, -1582.6005814219002]]}, {"length": 2.24858734406, "source": 2586986529, "destination": 2586986528, "path": [[-694.5107235054593, -1582.6005814219002], [-682.9607235090407, -1587.7005814211032]]}, {"length": 23.3363573848, "source": 2586986529, "destination": 2703708313, "path": [[-694.5107235054593, -1582.6005814219002], [-555.860723508772, -1581.7005814220408]]}, {"length": 21.4651206609, "source": 2586986529, "destination": 2586986524, "path": [[-694.5107235054593, -1582.6005814219002], [-708.5107235056398, -1576.5005814216693], [-738.0607235063508, -1562.25058142212], [-767.6607235111987, -1541.9005814223397], [-784.2107235092044, -1517.4005814238]]}, {"length": 18.775770955, "source": 2638686245, "destination": 2638686268, "path": [[-10185.210723506088, -9785.850581423005], [-10213.960723511662, -9807.650581421967], [-10232.460723507585, -9836.400581423988], [-10242.760723507161, -9856.600581422015]]}, {"length": 174.924847751, "source": 2638686245, "destination": 2638686117, "path": [[-10185.210723506088, -9785.850581423005], [-10221.160723510537, -9738.450581423309], [-10259.210723511103, -9698.800581421807], [-10289.010723511183, -9663.800581421356], [-10310.560723510775, -9630.350581421255], [-10317.760723509651, -9610.150581423226], [-10319.810723508737, -9587.600581422606], [-10314.66072350895, -9546.400581420756], [-10308.510723511688, -9511.400581423857], [-10302.36072350732, -9459.300581422525], [-10304.410723506408, -9422.000581423617], [-10311.610723505282, -9369.100581423594], [-10319.810723508737, -9337.250581420874], [-10338.310723511768, -9308.450581421823], [-10369.160723506355, -9271.900581421021], [-10412.310723509676, -9229.150581422375], [-10445.210723510456, -9205.050581421403], [-10480.110723506186, -9191.050581421223], [-10516.110723507665, -9193.400581423815], [-10554.110723511201, -9201.150581422013], [-10601.410723509729, -9205.050581421403], [-10630.160723508197, -9205.800581423062]]}, {"length": 66.8275904824, "source": 2638686245, "destination": 2638686205, "path": [[-10185.210723506088, -9785.850581423005], [-10117.360723505442, -9771.100581421166], [-10049.560723508932, -9759.400581422995], [-9985.860723510597, -9751.650581421245], [-9936.510723505875, -9757.100581420986], [-9893.360723509659, -9750.100581420895], [-9870.760723508454, -9739.200581421414], [-9850.210723506336, -9716.650581420794], [-9844.010723504936, -9690.200581420782]]}, {"length": 27.0963797201, "source": 2586986535, "destination": 2586986540, "path": [[-113.81072350502563, -1507.9505814235006], [-77.76072350651475, -1487.950581420705], [-52.210723509915624, -1475.750581423796], [-17.260723510048592, -1461.5005814206938], [5.589276490525208, -1457.4005814225188], [28.489276495236027, -1457.4005814225188]]}, {"length": 23.8992610108, "source": 2586986535, "destination": 2586986508, "path": [[-113.81072350502563, -1507.9505814235006], [-116.7607235075252, -1481.8505814240268], [-120.81072350866862, -1439.100581421826], [-126.1607235107931, -1421.8005814221613], [-135.6107235110926, -1402.450581423409]]}, {"length": 46.1693552691, "source": 2586986535, "destination": 2703708309, "path": [[-113.81072350502563, -1507.9505814235006], [-138.26072351008634, -1536.8005814231367], [-159.81072350967906, -1556.150581421889], [-175.9607235101157, -1568.3505814223508], [-200.16072350870218, -1576.5005814216693], [-224.36072350728864, -1579.5505814217847], [-346.1107235054328, -1580.3505814240282]]}, {"length": 52.480564157, "source": 2586986535, "destination": 2586986501, "path": [[-113.81072350502563, -1507.9505814235006], [-112.71072350638178, -1517.4505814208317], [-102.56072350500745, -1540.0505814220367], [-99.26072350907589, -1554.1005814228015], [-99.26072350907589, -1742.4005814206112]]}, {"length": 64.4828961872, "source": 2069036648, "destination": 134997408, "path": [[3153.439276488257, 6256.349418578111], [3155.4892764944498, 5966.399418579016]]}, {"length": 121.737507669, "source": 2069036648, "destination": 2069036370, "path": [[3153.439276488257, 6256.349418578111], [2430.2892764893613, 6256.349418578111]]}, {"length": 122.108741278, "source": 2069036648, "destination": 2069036850, "path": [[3153.439276488257, 6256.349418578111], [3878.7892764915455, 6258.399418577199]]}, {"length": 22.3018766943, "source": 2586986540, "destination": 2586986564, "path": [[28.489276495236027, -1457.4005814225188], [55.98927648975405, -1453.2005814231752], [93.0392764928456, -1443.1505814229695], [115.8892764934194, -1431.9505814235356], [144.98927649242432, -1413.6005814222585]]}, {"length": 30.7335903672, "source": 2586986540, "destination": 2586986508, "path": [[28.489276495236027, -1457.4005814225188], [-7.710723508580486, -1452.6505814238533], [-38.7607235055043, -1444.200581421029], [-72.41072351149569, -1434.000581422623], [-103.3107235102193, -1423.8505814212488], [-135.6107235110926, -1402.450581423409]]}, {"length": 13.7820074129, "source": 2586986540, "destination": 2586986542, "path": [[28.489276495236027, -1457.4005814225188], [72.83927649126554, -1465.5505814218373], [106.4892764901515, -1475.750581423796]]}, {"length": 27.0963797201, "source": 2586986540, "destination": 2586986535, "path": [[28.489276495236027, -1457.4005814225188], [5.589276490525208, -1457.4005814225188], [-17.260723510048592, -1461.5005814206938], [-52.210723509915624, -1475.750581423796], [-77.76072350651475, -1487.950581420705], [-113.81072350502563, -1507.9505814235006]]}, {"length": 22.1105634467, "source": 2586986542, "destination": 2586986545, "path": [[106.4892764901515, -1475.750581423796], [129.3392764907253, -1487.950581420705], [164.28927649059233, -1513.400581423241], [196.58927649146563, -1547.0005814215426]]}, {"length": 15.2859984686, "source": 2586986542, "destination": 2586986564, "path": [[106.4892764901515, -1475.750581423796], [133.1392764924999, -1434.4005814237448], [136.48927649256848, -1426.300581421458], [144.98927649242432, -1413.6005814222585]]}, {"length": 13.4555874291, "source": 2586986542, "destination": 2586986557, "path": [[106.4892764901515, -1475.750581423796], [90.18927649151465, -1500.900581422826], [81.48927648932158, -1513.5505814214412], [74.78927648918443, -1521.200581422022], [66.58927649283441, -1527.8005814209905]]}, {"length": 13.7820074129, "source": 2586986542, "destination": 2586986540, "path": [[106.4892764901515, -1475.750581423796], [72.83927649126554, -1465.5505814218373], [28.489276495236027, -1457.4005814225188]]}, {"length": 123.724071451, "source": 135047215, "destination": 2568599824, "path": [[1764.839276489738, -2754.1005814235577], [1029.689276492718, -2753.8005814236044]]}, {"length": 94.5493992376, "source": 135047215, "destination": 135064546, "path": [[1764.839276489738, -2754.1005814235577], [1763.589276492894, -3179.2505814216556]]}, {"length": 109.316738157, "source": 135047215, "destination": 2587010507, "path": [[1764.839276489738, -2754.1005814235577], [1762.2392764948813, -2262.550581423994]]}, {"length": 14.0286175032, "source": 2586986545, "destination": 2586986546, "path": [[196.58927649146563, -1547.0005814215426], [235.58927649247607, -1602.750581422896]]}, {"length": 40.8311764069, "source": 2586986545, "destination": 2586986556, "path": [[196.58927649146563, -1547.0005814215426], [197.53927649190928, -1363.4005814218142]]}, {"length": 16.1299659612, "source": 2586986545, "destination": 2587199406, "path": [[196.58927649146563, -1547.0005814215426], [229.48927649224515, -1536.700581421968], [238.18927649443822, -1543.8505814238113], [249.5892764926566, -1549.9005814234579], [258.9892764888191, -1552.9505814235733], [269.68927649306806, -1554.5005814239232], [281.9892764946985, -1555.5005814213985]]}, {"length": 22.1105634467, "source": 2586986545, "destination": 2586986542, "path": [[196.58927649146563, -1547.0005814215426], [164.28927649059233, -1513.400581423241], [129.3392764907253, -1487.950581420705], [106.4892764901515, -1475.750581423796]]}, {"length": 14.0286175032, "source": 2586986546, "destination": 2586986545, "path": [[235.58927649247607, -1602.750581422896], [196.58927649146563, -1547.0005814215426]]}, {"length": 7.76789992755, "source": 2586986546, "destination": 2568599802, "path": [[235.58927649247607, -1602.750581422896], [281.7392764882243, -1602.600581421143]]}, {"length": 56.9828496275, "source": 2586986546, "destination": 2568599818, "path": [[235.58927649247607, -1602.750581422896], [108.0892764946384, -1603.1005814234334], [106.78927649365733, -1639.1505814219443], [103.43927649358875, -1734.9005814217833], [98.8392764895707, -1741.400581423136], [89.53927649457682, -1747.9505814215202], [76.98927649357756, -1753.3005814236446]]}, {"length": 16.1221433557, "source": 2423670837, "destination": 2352260080, "path": [[-2054.010723504973, 5947.649418576617], [-2052.2607235093915, 5925.299418578334], [-2052.4607235117287, 5875.199418579058]]}, {"length": 61.0997832502, "source": 2423670837, "destination": 2352260072, "path": [[-2054.010723504973, 5947.649418576617], [-2416.960723508055, 5947.099418577295]]}, {"length": 14.9189367961, "source": 2423670837, "destination": 2352260068, "path": [[-2054.010723504973, 5947.649418576617], [-2053.5107235062355, 5974.699418576534], [-2047.2607235078044, 6014.449418579205]]}, {"length": 10.6775986876, "source": 2423670837, "destination": 2423670871, "path": [[-2054.010723504973, 5947.649418576617], [-1995.9607235051635, 5966.999418578922]]}, {"length": 47.4716082315, "source": 2423670840, "destination": 2068877128, "path": [[-1956.8107235059529, 5873.8494185774925], [-1959.6607235072838, 5660.3994185771]]}, {"length": 15.9954230031, "source": 2423670840, "destination": 2355676008, "path": [[-1956.8107235059529, 5873.8494185774925], [-1861.8107235113257, 5875.199418579058]]}, {"length": 11.0932367207, "source": 2423670840, "destination": 2423670842, "path": [[-1956.8107235059529, 5873.8494185774925], [-1982.460723510826, 5919.799418578009]]}, {"length": 16.1049223591, "source": 2423670840, "destination": 2352260080, "path": [[-1956.8107235059529, 5873.8494185774925], [-2052.4607235117287, 5875.199418579058]]}, {"length": 8.06224031672, "source": 2423670842, "destination": 2423670850, "path": [[-1982.460723510826, 5919.799418578009], [-1971.6607235054084, 5915.849418578035], [-1959.9107235066526, 5914.2494185771], [-1947.9607235055596, 5914.999418578759], [-1936.7107235055414, 5918.049418578875]]}, {"length": 4.25412440077, "source": 2423670842, "destination": 2423670843, "path": [[-1982.460723510826, 5919.799418578009], [-1992.0107235051887, 5926.099418577024], [-1998.8607235106315, 5934.149418578727]]}, {"length": 4.25412440077, "source": 2423670843, "destination": 2423670842, "path": [[-1998.8607235106315, 5934.149418578727], [-1992.0107235051887, 5926.099418577024], [-1982.460723510826, 5919.799418578009]]}, {"length": 9.75758914323, "source": 2423670843, "destination": 2423670837, "path": [[-1998.8607235106315, 5934.149418578727], [-2054.010723504973, 5947.649418576617]]}, {"length": 7.60135316196, "source": 2423670843, "destination": 2423670871, "path": [[-1998.8607235106315, 5934.149418578727], [-2002.8107235106063, 5945.149418579376], [-2001.8107235060256, 5956.49941857701], [-1995.9607235051635, 5966.999418578922]]}, {"length": 25.7767127768, "source": 2638686268, "destination": 2638686280, "path": [[-10242.760723507161, -9856.600581422015], [-10264.110723511521, -9859.200581423976], [-10287.260723508496, -9863.450581423906], [-10323.760723508713, -9873.550581421143], [-10348.310723507837, -9882.050581420997], [-10360.260723508929, -9875.150581422076], [-10385.510723509127, -9882.050581420997]]}, {"length": 30.1733998661, "source": 2638686268, "destination": 2638686296, "path": [[-10242.760723507161, -9856.600581422015], [-10248.910723511528, -9896.250581423516], [-10248.910723511528, -9946.800581420945], [-10244.810723506249, -9991.900581422185]]}, {"length": 18.775770955, "source": 2638686268, "destination": 2638686245, "path": [[-10242.760723507161, -9856.600581422015], [-10232.460723507585, -9836.400581423988], [-10213.960723511662, -9807.650581421967], [-10185.210723506088, -9785.850581423005]]}, {"length": 13.4555874291, "source": 2586986557, "destination": 2586986542, "path": [[66.58927649283441, -1527.8005814209905], [74.78927648918443, -1521.200581422022], [81.48927648932158, -1513.5505814214412], [90.18927649151465, -1500.900581422826], [106.4892764901515, -1475.750581423796]]}, {"length": 8.81825237211, "source": 2423670848, "destination": 2423670869, "path": [[-1933.0607235090724, 5977.399418576113], [-1944.9607235060284, 5981.4994185778405], [-1957.9607235087337, 5982.899418576437], [-1970.910723507302, 5981.399418576671], [-1982.7607235072264, 5977.149418576744]]}, {"length": 3.52924850283, "source": 2423670848, "destination": 2423670861, "path": [[-1933.0607235090724, 5977.399418576113], [-1924.9607235067856, 5972.349418577494], [-1918.6107235071859, 5966.049418578478]]}, {"length": 10.395321438, "source": 2423670850, "destination": 2423670840, "path": [[-1936.7107235055414, 5918.049418578875], [-1956.8107235059529, 5873.8494185774925]]}, {"length": 8.06224031672, "source": 2423670850, "destination": 2423670842, "path": [[-1936.7107235055414, 5918.049418578875], [-1947.9607235055596, 5914.999418578759], [-1959.9107235066526, 5914.2494185771], [-1971.6607235054084, 5915.849418578035], [-1982.460723510826, 5919.799418578009]]}, {"length": 3.55722589059, "source": 2423670850, "destination": 2423670868, "path": [[-1936.7107235055414, 5918.049418578875], [-1927.9607235063168, 5922.549418578172], [-1920.8607235086106, 5928.449418576065]]}, {"length": 66.1602534645, "source": 2271725635, "destination": 2271725601, "path": [[7005.639276492559, 2695.599418576222], [7168.439276490801, 2868.6994185775916], [7166.539276489913, 2890.749418579475], [7100.889276493661, 2929.3494185793634]]}, {"length": 21.2103687693, "source": 2271725635, "destination": 2271725636, "path": [[7005.639276492559, 2695.599418576222], [6879.639276490934, 2694.5994185787467]]}, {"length": 109.031994056, "source": 2271725635, "destination": 1962191310, "path": [[7005.639276492559, 2695.599418576222], [6981.539276495141, 2675.8994185769325], [6978.139276490936, 2673.0994185761856], [6836.539276491749, 2676.2994185780544], [6619.389276494303, 2436.349418577066], [6631.289276491259, 2375.4494185794783]]}, {"length": 64.1284451758, "source": 2271725636, "destination": 2271725601, "path": [[6879.639276490934, 2694.5994185787467], [7100.889276493661, 2929.3494185793634]]}, {"length": 21.2103687693, "source": 2271725636, "destination": 2271725635, "path": [[6879.639276490934, 2694.5994185787467], [7005.639276492559, 2695.599418576222]]}, {"length": 23.3649194511, "source": 2271725636, "destination": 2271725637, "path": [[6879.639276490934, 2694.5994185787467], [6740.839276488941, 2693.4994185765504]]}, {"length": 74.3875300041, "source": 2271725637, "destination": 2271725585, "path": [[6740.839276488941, 2693.4994185765504], [7003.1392764917655, 2962.699418578296]]}, {"length": 88.9454601273, "source": 2271725637, "destination": 1962191339, "path": [[6740.839276488941, 2693.4994185765504], [6438.789276494106, 2383.5994185787968], [6427.1392764894135, 2371.6494185777037]]}, {"length": 23.3649194511, "source": 2271725637, "destination": 2271725636, "path": [[6740.839276488941, 2693.4994185765504], [6879.639276490934, 2694.5994185787467]]}, {"length": 60.5235530685, "source": 2586986567, "destination": 2703708313, "path": [[-556.5107235057098, -1309.5505814213482], [-555.860723508772, -1581.7005814220408]]}, {"length": 11.8311794386, "source": 2586986567, "destination": 2586986493, "path": [[-556.5107235057098, -1309.5505814213482], [-556.6107235068785, -1256.3505814213727]]}, {"length": 20.3905750118, "source": 2586986567, "destination": 2586986565, "path": [[-556.5107235057098, -1309.5505814213482], [-677.6607235110532, -1309.0005814220262]]}, {"length": 35.2270582175, "source": 2586986567, "destination": 2586986569, "path": [[-556.5107235057098, -1309.5505814213482], [-347.2107235111821, -1308.550581423873]]}, {"length": 50.479600461, "source": 2638686280, "destination": 2638686296, "path": [[-10385.510723509127, -9882.050581420997], [-10414.310723511733, -9882.050581420997], [-10439.010723509056, -9880.700581422985], [-10390.710723505947, -9918.050581422478], [-10354.760723508605, -9940.600581423098], [-10322.910723509438, -9960.800581421125], [-10293.110723509359, -9977.900581422005], [-10244.810723506249, -9991.900581422185]]}, {"length": 8.33163217514, "source": 2638686280, "destination": 2638686252, "path": [[-10385.510723509127, -9882.050581420997], [-10391.36072350999, -9844.85058142326]]}, {"length": 25.7767127768, "source": 2638686280, "destination": 2638686268, "path": [[-10385.510723509127, -9882.050581420997], [-10360.260723508929, -9875.150581422076], [-10348.310723507837, -9882.050581420997], [-10323.760723508713, -9873.550581421143], [-10287.260723508496, -9863.450581423906], [-10264.110723511521, -9859.200581423976], [-10242.760723507161, -9856.600581422015]]}, {"length": 35.2270582175, "source": 2586986569, "destination": 2586986567, "path": [[-347.2107235111821, -1308.550581423873], [-556.5107235057098, -1309.5505814213482]]}, {"length": 19.0359153763, "source": 2586986569, "destination": 2586986571, "path": [[-347.2107235111821, -1308.550581423873], [-234.11072351109397, -1307.7505814216295]]}, {"length": 60.4459196708, "source": 2586986569, "destination": 2703708309, "path": [[-347.2107235111821, -1308.550581423873], [-346.1107235054328, -1580.3505814240282]]}, {"length": 11.7532212058, "source": 2586986569, "destination": 2586986495, "path": [[-347.2107235111821, -1308.550581423873], [-347.4107235064139, -1255.7005814208821]]}, {"length": 16.2020047035, "source": 2586986571, "destination": 2586986512, "path": [[-234.11072351109397, -1307.7505814216295], [-301.06072350832846, -1255.400581420929]]}, {"length": 19.0359153763, "source": 2586986571, "destination": 2586986569, "path": [[-234.11072351109397, -1307.7505814216295], [-347.2107235111821, -1308.550581423873]]}, {"length": 26.876028379, "source": 2586986571, "destination": 2586986508, "path": [[-234.11072351109397, -1307.7505814216295], [-200.16072350870218, -1334.250581422225], [-171.9107235089723, -1362.7505814213237], [-151.71072350739223, -1383.100581421104], [-135.6107235110926, -1402.450581423409]]}, {"length": 72.6994067104, "source": 2586986571, "destination": 2586986573, "path": [[-234.11072351109397, -1307.7505814216295], [197.83927648830968, -1307.5005814222607]]}, {"length": 55.1558917273, "source": 2586986572, "destination": 2587199406, "path": [[278.38927649526113, -1307.5005814222607], [282.1892764899303, -1515.8505814234502], [282.0392764917301, -1547.4505814232487], [281.9892764946985, -1555.5005814213985]]}, {"length": 12.193937956, "source": 2586986572, "destination": 2587199413, "path": [[278.38927649526113, -1307.5005814222607], [350.8392764928203, -1307.2505814228919]]}, {"length": 12.4437864713, "source": 2586986572, "destination": 135016390, "path": [[278.38927649526113, -1307.5005814222607], [277.33927649364887, -1251.5505814221228]]}, {"length": 13.5574976806, "source": 2586986572, "destination": 2586986573, "path": [[278.38927649526113, -1307.5005814222607], [197.83927648830968, -1307.5005814222607]]}, {"length": 3.52924850283, "source": 2423670861, "destination": 2423670848, "path": [[-1918.6107235071859, 5966.049418578478], [-1924.9607235067856, 5972.349418577494], [-1933.0607235090724, 5977.399418576113]]}, {"length": 10.4592826124, "source": 2423670861, "destination": 2423670874, "path": [[-1918.6107235071859, 5966.049418578478], [-1861.2107235114195, 5948.049418577739]]}, {"length": 8.82233397734, "source": 2423670861, "destination": 2423670868, "path": [[-1918.6107235071859, 5966.049418578478], [-1913.6607235097358, 5956.899418578132], [-1912.3107235117232, 5946.999418576126], [-1914.8107235054113, 5937.249418579427], [-1920.8607235086106, 5928.449418576065]]}, {"length": 5.76063320498, "source": 2282973262, "destination": 2282973288, "path": [[-9173.060723504988, 2653.249418578696], [-9172.81072350562, 2627.3494185780064]]}, {"length": 3.55722589059, "source": 2423670868, "destination": 2423670850, "path": [[-1920.8607235086106, 5928.449418576065], [-1927.9607235063168, 5922.549418578172], [-1936.7107235055414, 5918.049418578875]]}, {"length": 8.82233397734, "source": 2423670868, "destination": 2423670861, "path": [[-1920.8607235086106, 5928.449418576065], [-1914.8107235054113, 5937.249418579427], [-1912.3107235117232, 5946.999418576126], [-1913.6607235097358, 5956.899418578132], [-1918.6107235071859, 5966.049418578478]]}, {"length": 8.81825237211, "source": 2423670869, "destination": 2423670848, "path": [[-1982.7607235072264, 5977.149418576744], [-1970.910723507302, 5981.399418576671], [-1957.9607235087337, 5982.899418576437], [-1944.9607235060284, 5981.4994185778405], [-1933.0607235090724, 5977.399418576113]]}, {"length": 9.55033460079, "source": 2423670869, "destination": 2352260065, "path": [[-1982.7607235072264, 5977.149418576744], [-1960.660723504759, 6016.699418577076]]}, {"length": 3.18281062684, "source": 2423670869, "destination": 2423670871, "path": [[-1982.7607235072264, 5977.149418576744], [-1990.0607235072698, 5972.599418576863], [-1995.9607235051635, 5966.999418578922]]}, {"length": 7.60135316196, "source": 2423670871, "destination": 2423670843, "path": [[-1995.9607235051635, 5966.999418578922], [-2001.8107235060256, 5956.49941857701], [-2002.8107235106063, 5945.149418579376], [-1998.8607235106315, 5934.149418578727]]}, {"length": 3.18281062684, "source": 2423670871, "destination": 2423670869, "path": [[-1995.9607235051635, 5966.999418578922], [-1990.0607235072698, 5972.599418576863], [-1982.7607235072264, 5977.149418576744]]}, {"length": 50.479600461, "source": 2638686296, "destination": 2638686280, "path": [[-10244.810723506249, -9991.900581422185], [-10293.110723509359, -9977.900581422005], [-10322.910723509438, -9960.800581421125], [-10354.760723508605, -9940.600581423098], [-10390.710723505947, -9918.050581422478], [-10439.010723509056, -9880.700581422985], [-10414.310723511733, -9882.050581420997], [-10385.510723509127, -9882.050581420997]]}, {"length": 30.1733998661, "source": 2638686296, "destination": 2638686268, "path": [[-10244.810723506249, -9991.900581422185], [-10248.910723511528, -9946.800581420945], [-10248.910723511528, -9896.250581423516], [-10242.760723507161, -9856.600581422015]]}, {"length": 70.8080336947, "source": 2638686296, "destination": 2331414012, "path": [[-10244.810723506249, -9991.900581422185], [-10230.4107235085, -10047.100581420666], [-10217.060723505256, -10120.200581422267], [-10205.760723508207, -10202.600581422415], [-10204.710723506594, -10257.050581422789], [-10241.710723505548, -10282.700581420557], [-10258.56072350706, -10285.600581422472]]}, {"length": 18.447789063, "source": 4719495257, "destination": 4719495256, "path": [[-1430.8107235052603, -1810.850581421164], [-1430.260723509491, -1893.800581420635]]}, {"length": 16.2021159325, "source": 2423670874, "destination": 2355676008, "path": [[-1861.2107235114195, 5948.049418577739], [-1861.8607235083573, 5905.549418578459], [-1861.8107235113257, 5875.199418579058]]}, {"length": 95.9475548321, "source": 2423670874, "destination": 2355654865, "path": [[-1861.2107235114195, 5948.049418577739], [-1291.260723505161, 5950.099418576827]]}, {"length": 10.9468416157, "source": 2423670874, "destination": 2423670868, "path": [[-1861.2107235114195, 5948.049418577739], [-1920.8607235086106, 5928.449418576065]]}, {"length": 15.8920975442, "source": 2423670874, "destination": 2354509516, "path": [[-1861.2107235114195, 5948.049418577739], [-1861.260723508451, 5973.249418577353], [-1862.5107235052951, 6019.499418577823]]}, {"length": 8.89611359697, "source": 2282973277, "destination": 134982224, "path": [[-8559.060723506207, 2630.0494185775847], [-8559.110723510345, 2590.049418579099]]}, {"length": 52.3060330445, "source": 2282973277, "destination": 2282973129, "path": [[-8559.060723506207, 2630.0494185775847], [-8558.910723508006, 2750.4994185783007], [-8558.810723506838, 2865.2494185763544]]}, {"length": 15.181582468, "source": 2282973277, "destination": 2282973279, "path": [[-8559.060723506207, 2630.0494185775847], [-8586.210723507293, 2629.999418577], [-8649.260723508689, 2629.649418576463]]}, {"length": 52.394359489, "source": 2282973279, "destination": 2282973130, "path": [[-8649.260723508689, 2629.649418576463], [-8649.41072350689, 2667.2494185788764], [-8649.260723508689, 2730.3494185773047], [-8649.460723511027, 2749.99941857601], [-8649.960723509765, 2809.4494185779695], [-8650.160723504996, 2865.2494185763544]]}, {"length": 9.05128568965, "source": 2282973279, "destination": 2282973300, "path": [[-8649.260723508689, 2629.649418576463], [-8649.11072351049, 2588.9494185769026]]}, {"length": 15.181582468, "source": 2282973279, "destination": 2282973277, "path": [[-8649.260723508689, 2629.649418576463], [-8586.210723507293, 2629.999418577], [-8559.060723506207, 2630.0494185775847]]}, {"length": 71.9676054676, "source": 2282973279, "destination": 2282973286, "path": [[-8649.260723508689, 2629.649418576463], [-8907.66072350857, 2628.3494185790346], [-8918.310723508683, 2628.29941857845], [-8939.41072350657, 2628.199418577282], [-9004.760723506422, 2627.999418578497], [-9039.510723511057, 2627.849418576744], [-9076.810723506413, 2627.7494185791284]]}, {"length": 43.5560203309, "source": 2586986593, "destination": 2585936649, "path": [[-1172.6607235047481, -1489.2005814211018], [-1171.0607235073667, -1685.0505814218764]]}, {"length": 29.2559455012, "source": 2586986593, "destination": 2586986580, "path": [[-1172.6607235047481, -1489.2005814211018], [-1014.5107235075557, -1488.2005814236265], [-1009.1607235054312, -1477.0505814212243]]}, {"length": 25.5086753874, "source": 2586986593, "destination": 2586986591, "path": [[-1172.6607235047481, -1489.2005814211018], [-1173.5607235081602, -1374.5005814236322]]}, {"length": 16.1594449108, "source": 2282973286, "destination": 2282973288, "path": [[-9076.810723506413, 2627.7494185791284], [-9131.260723506784, 2627.549418576791], [-9172.81072350562, 2627.3494185780064]]}, {"length": 7.28347208735, "source": 2282973286, "destination": 2282973253, "path": [[-9076.810723506413, 2627.7494185791284], [-9076.560723507044, 2660.499418578155]]}, {"length": 71.9676054676, "source": 2282973286, "destination": 2282973279, "path": [[-9076.810723506413, 2627.7494185791284], [-9039.510723511057, 2627.849418576744], [-9004.760723506422, 2627.999418578497], [-8939.41072350657, 2628.199418577282], [-8918.310723508683, 2628.29941857845], [-8907.66072350857, 2628.3494185790346], [-8649.260723508689, 2629.649418576463]]}, {"length": 11.4459221702, "source": 2282973288, "destination": 2282973289, "path": [[-9172.81072350562, 2627.3494185780064], [-9240.810723511571, 2627.0494185780535]]}, {"length": 16.1594449108, "source": 2282973288, "destination": 2282973286, "path": [[-9172.81072350562, 2627.3494185780064], [-9131.260723506784, 2627.549418576791], [-9076.810723506413, 2627.7494185791284]]}, {"length": 5.76063320498, "source": 2282973288, "destination": 2282973262, "path": [[-9172.81072350562, 2627.3494185780064], [-9173.060723504988, 2653.249418578696]]}, {"length": 11.4459221702, "source": 2282973289, "destination": 2282973288, "path": [[-9240.810723511571, 2627.0494185780535], [-9172.81072350562, 2627.3494185780064]]}, {"length": 51.9866933107, "source": 2282973289, "destination": 2282973136, "path": [[-9240.810723511571, 2627.0494185780535], [-9241.360723507341, 2695.5494185791904], [-9241.710723507878, 2846.5494185780926], [-9241.76072350491, 2860.799418577642]]}, {"length": 8.99635324154, "source": 2282973289, "destination": 2282973290, "path": [[-9240.810723511571, 2627.0494185780535], [-9294.260723507363, 2626.9994185774694]]}, {"length": 9.13947699218, "source": 2282973289, "destination": 2282973320, "path": [[-9240.810723511571, 2627.0494185780535], [-9240.510723508067, 2585.949418577371]]}, {"length": 8.99635324154, "source": 2282973290, "destination": 2282973289, "path": [[-9294.260723507363, 2626.9994185774694], [-9240.810723511571, 2627.0494185780535]]}, {"length": 9.18472707416, "source": 2282973290, "destination": 134959139, "path": [[-9294.260723507363, 2626.9994185774694], [-9294.3107235115, 2585.699418578002]]}, {"length": 52.1504964709, "source": 2282973290, "destination": 2282973135, "path": [[-9294.260723507363, 2626.9994185774694], [-9294.060723505027, 2861.499418578717]]}, {"length": 59.7054591411, "source": 1942259823, "destination": 1942259848, "path": [[5674.689276489175, -5.700581422019013], [5693.439276491574, -36.15058142258931], [5708.189276489861, -77.75058142200919], [5712.239276491005, -141.70058142326525], [5698.83927649073, -223.95058142166135], [5680.0392764912995, -266.5505814221092]]}, {"length": 111.375478343, "source": 1942259823, "destination": 2442184705, "path": [[5674.689276489175, -5.700581422019013], [5631.789276492327, 31.84941857625745], [5580.739276489056, 60.39941857949316], [5550.0892764897, 82.2994185760706], [5534.489276492139, 108.04941857855965], [5526.789276494526, 133.49941857754288], [5528.639276491276, 155.84941857937906], [5536.339276488889, 183.5494185762343], [5560.689276492781, 213.9494185762203], [5604.139276492504, 245.59941857660306], [5634.439276491321, 269.3494185770362], [5647.839276491595, 287.64941857772897], [5667.989276489038, 318.09941857829926], [5674.689276489175, 345.4994185787541], [5675.439276494388, 414.5494185792131]]}, {"length": 28.2721816638, "source": 1942259823, "destination": 1942259859, "path": [[5674.689276489175, -5.700581422019013], [5680.0392764912995, 14.599418577176948], [5680.389276491837, 30.09941857712306], [5677.689276488707, 45.34941857770036], [5661.289276488901, 80.5494185769362], [5658.939276493413, 92.0494185763232], [5659.939276490888, 101.89941857774443], [5666.639276491025, 114.04941857762196], [5669.989276491095, 116.44941857724689]]}, {"length": 48.1905362603, "source": 4614343699, "destination": 4614339557, "path": [[9353.03927649045, 6208.64941857846], [9389.739276493003, 6240.199418577675], [9420.289276491189, 6275.349418576326], [9455.239276491056, 6303.149418577903], [9498.58927648961, 6343.349418578726], [9533.739276491815, 6376.249418575952]]}, {"length": 8.82126915544, "source": 4614343699, "destination": 4614343694, "path": [[9353.03927649045, 6208.64941857846], [9346.239276489143, 6212.7994185772195], [9337.989276488657, 6214.99941857806], [9329.239276489432, 6214.949418577476], [9321.039276493082, 6212.69941857605], [9314.289276488807, 6208.449418576123], [9309.839276490095, 6202.799418577598]]}, {"length": 14.7347987337, "source": 4614343699, "destination": 4614343701, "path": [[9353.03927649045, 6208.64941857846], [9357.639276494467, 6202.999418576383], [9359.439276494186, 6196.499418578583], [9358.239276494372, 6189.949418576645], [9354.239276490262, 6184.099418579336], [9347.83927649363, 6179.549418579455], [9339.839276492512, 6176.949418577493], [9331.089276493287, 6176.49941857934], [9322.6892764946, 6178.2994185790585], [9315.539276492756, 6182.149418577865], [9310.53927649117, 6187.54941857702]]}, {"length": 15.1516473726, "source": 2282973300, "destination": 134982224, "path": [[-8649.11072351049, 2588.9494185769026], [-8559.110723510345, 2590.049418579099]]}, {"length": 99.5592703696, "source": 2282973300, "destination": 2282973320, "path": [[-8649.11072351049, 2588.9494185769026], [-8769.610723511789, 2587.449418577137], [-8907.860723510908, 2587.1494185771835], [-8913.610723510601, 2587.1494185771835], [-8939.210723511336, 2587.0994185765994], [-9004.410723505884, 2586.949418578399], [-9031.760723509307, 2586.7994185766465], [-9039.210723507551, 2586.7994185766465], [-9240.510723508067, 2585.949418577371]]}, {"length": 13.7123623666, "source": 2282973300, "destination": 2282973358, "path": [[-8649.11072351049, 2588.9494185769026], [-8649.01072350932, 2568.7994185794596], [-8648.460723506447, 2527.299418577655]]}, {"length": 9.05128568965, "source": 2282973300, "destination": 2282973279, "path": [[-8649.11072351049, 2588.9494185769026], [-8649.260723508689, 2629.649418576463]]}, {"length": 28.2454848436, "source": 2311060501, "destination": 2311060503, "path": [[-3548.2607235053365, 2902.1994185782773], [-3716.0607235051657, 2901.549418577787]]}, {"length": 9.89699033607, "source": 2271725696, "destination": 1962177665, "path": [[5324.139276488893, -2594.100581422509], [5265.339276490977, -2594.500581423631]]}, {"length": 35.1084733517, "source": 2271725696, "destination": 135047185, "path": [[5324.139276488893, -2594.100581422509], [5325.039276492305, -2585.9505814231907], [5330.939276490199, -2573.400581422192], [5336.289276492324, -2567.350581422545], [5348.039276491079, -2559.050581421474], [5362.839276493503, -2553.6005814217333], [5379.589276493845, -2551.6505814238144], [5392.98927649412, -2552.9005814206585], [5407.6892764882705, -2557.4505814205395], [5419.089276493594, -2564.2005814212607], [5430.639276490012, -2577.4005814227507], [5434.739276488188, -2590.600581420688], [5433.739276490713, -2602.0005814224587], [5429.289276492, -2611.9005814209117], [5424.439276488612, -2618.0505814217267]]}, {"length": 17.7420074045, "source": 4224950635, "destination": 4224950712, "path": [[6614.4392764897475, 3293.4994185787045], [6509.039276494377, 3292.9994185764144]]}, {"length": 6.02671777521, "source": 4224950635, "destination": 4224950725, "path": [[6614.4392764897475, 3293.4994185787045], [6614.339276488579, 3320.5994185792065]]}, {"length": 31.9139894038, "source": 4224950635, "destination": 4224950789, "path": [[6614.4392764897475, 3293.4994185787045], [6614.489276493885, 3280.7994185759526], [6614.539276490916, 3266.599418576988], [6615.039276489653, 3149.999418578631]]}, {"length": 99.8090606007, "source": 1942259848, "destination": 1429422312, "path": [[5680.0392764912995, -266.5505814221092], [5641.489276491995, -291.650581420555], [5607.989276491309, -310.9005814216914], [5571.739276490462, -333.2505814235276], [5542.239276493888, -353.55058142272355], [5524.489276488965, -378.20058142301605], [5515.089276492801, -406.6005814209461], [5511.389276492196, -435.75058142053535], [5516.789276491352, -470.25058142224907], [5535.539276493751, -494.60058142258845], [5556.989276492175, -516.9505814208719], [5585.189276494873, -540.300581423736], [5614.689276491446, -557.5505814228165], [5644.189276495126, -573.8005814208691], [5653.539276494257, -581.9005814231559], [5675.989276490156, -615.3505814232574]]}, {"length": 79.6262248046, "source": 1942259848, "destination": 1429422312, "path": [[5680.0392764912995, -266.5505814221092], [5649.539276490145, -331.2005814208874], [5632.089276488728, -386.00058142179705], [5629.439276489734, -446.90058142293765], [5643.88927649162, -501.4005814238942], [5675.989276490156, -615.3505814232574]]}, {"length": 59.7054591411, "source": 1942259848, "destination": 1942259823, "path": [[5680.0392764912995, -266.5505814221092], [5698.83927649073, -223.95058142166135], [5712.239276491005, -141.70058142326525], [5708.189276489861, -77.75058142200919], [5693.439276491574, -36.15058142258931], [5674.689276489175, -5.700581422019013]]}, {"length": 11.6116551147, "source": 2271725708, "destination": 135047185, "path": [[5486.889276490103, -2640.2505814218102], [5424.439276488612, -2618.0505814217267]]}, {"length": 21.3106710192, "source": 2271725708, "destination": 135047187, "path": [[5486.889276490103, -2640.2505814218102], [5565.339276493831, -2668.100581423971], [5601.739276492879, -2680.6005814208334]]}, {"length": 20.4175772968, "source": 2271725708, "destination": 2271725710, "path": [[5486.889276490103, -2640.2505814218102], [5456.489276490118, -2687.1505814227703], [5441.439276488325, -2725.050581421584]]}, {"length": 80.5470085453, "source": 2271725710, "destination": 2271725716, "path": [[5441.439276488325, -2725.050581421584], [5440.089276490312, -2948.200581421645], [5329.189276494617, -3059.0505814238613]]}, {"length": 20.4175772968, "source": 2271725710, "destination": 2271725708, "path": [[5441.439276488325, -2725.050581421584], [5456.489276490118, -2687.1505814227703], [5486.889276490103, -2640.2505814218102]]}, {"length": 29.106961955, "source": 2271725710, "destination": 2139783261, "path": [[5441.439276488325, -2725.050581421584], [5268.489276488708, -2725.000581421]]}, {"length": 23.5027996812, "source": 2271725710, "destination": 2271725711, "path": [[5441.439276488325, -2725.050581421584], [5581.0892764895925, -2725.1005814221685]]}, {"length": 66.9488544682, "source": 2271725711, "destination": 2271725713, "path": [[5581.0892764895925, -2725.1005814221685], [5586.539276492886, -2836.3005814213693], [5837.239276495155, -2832.1505814226102]]}, {"length": 10.4885394042, "source": 2271725711, "destination": 135047187, "path": [[5581.0892764895925, -2725.1005814221685], [5601.739276492879, -2680.6005814208334]]}, {"length": 23.5027996812, "source": 2271725711, "destination": 2271725710, "path": [[5581.0892764895925, -2725.1005814221685], [5441.439276488325, -2725.050581421584]]}, {"length": 46.4513919195, "source": 2271725711, "destination": 135047193, "path": [[5581.0892764895925, -2725.1005814221685], [5789.7892764913195, -2725.150581422753], [5837.339276489218, -2689.100581420689]]}, {"length": 7.68332106099, "source": 2139785360, "destination": 2139785364, "path": [[9082.139276493706, -6859.4005814226475], [9127.789276490716, -6858.9505814209415]]}, {"length": 20.3266049435, "source": 2271725713, "destination": 2573122345, "path": [[5837.239276495155, -2832.1505814226102], [5837.189276491017, -2923.5505814213525]]}, {"length": 66.9488544682, "source": 2271725713, "destination": 2271725711, "path": [[5837.239276495155, -2832.1505814226102], [5586.539276492886, -2836.3005814213693], [5581.0892764895925, -2725.1005814221685]]}, {"length": 31.8130035244, "source": 2271725713, "destination": 135047193, "path": [[5837.239276495155, -2832.1505814226102], [5837.339276489218, -2689.100581420689]]}, {"length": 8.7061536844, "source": 2139785362, "destination": 135016304, "path": [[7934.639276491851, -6845.250581420714], [7934.389276492482, -6806.100581421504]]}, {"length": 194.349987651, "source": 2139785362, "destination": 135016306, "path": [[7934.639276491851, -6845.250581420714], [7939.539276492269, -7560.800581423166], [7941.1892764937875, -7719.150581422696]]}, {"length": 48.2553521233, "source": 2139785362, "destination": 1933539610, "path": [[7934.639276491851, -6845.250581420714], [7902.089276491608, -6845.750581423004], [7779.689276489421, -6847.550581422724], [7698.589276493805, -6848.450581422583], [7648.039276489271, -6851.150581422161]]}, {"length": 50.0620818159, "source": 2139785362, "destination": 1935184053, "path": [[7934.639276491851, -6845.250581420714], [8003.439276492941, -6843.950581423286], [8096.839276490186, -6843.3505814233795], [8159.639276492215, -6842.45058142352], [8232.089276489773, -6841.750581422446]]}, {"length": 34.731794338, "source": 1942259859, "destination": 1942259859, "path": [[5669.989276491095, 116.44941857724689], [5688.889276491693, 132.84941857705235], [5686.689276494406, 148.8994185763204], [5679.439276491394, 161.14941857736653], [5661.289276488901, 168.2494185786254], [5642.289276494239, 167.84941857750368], [5629.839276494408, 157.49941857734484], [5625.38927648859, 140.74941857700196], [5634.239276488984, 129.74941857635258], [5649.589276494282, 125.14941857943995], [5660.8392764943, 123.49941857792146], [5669.989276491095, 116.44941857724689]]}, {"length": 34.731794338, "source": 1942259859, "destination": 1942259859, "path": [[5669.989276491095, 116.44941857724689], [5660.8392764943, 123.49941857792146], [5649.589276494282, 125.14941857943995], [5634.239276488984, 129.74941857635258], [5625.38927648859, 140.74941857700196], [5629.839276494408, 157.49941857734484], [5642.289276494239, 167.84941857750368], [5661.289276488901, 168.2494185786254], [5679.439276491394, 161.14941857736653], [5686.689276494406, 148.8994185763204], [5688.889276491693, 132.84941857705235], [5669.989276491095, 116.44941857724689]]}, {"length": 28.2721816638, "source": 1942259859, "destination": 1942259823, "path": [[5669.989276491095, 116.44941857724689], [5666.639276491025, 114.04941857762196], [5659.939276490888, 101.89941857774443], [5658.939276493413, 92.0494185763232], [5661.289276488901, 80.5494185769362], [5677.689276488707, 45.34941857770036], [5680.389276491837, 30.09941857712306], [5680.0392764912995, 14.599418577176948], [5674.689276489175, -5.700581422019013]]}, {"length": 80.5470085453, "source": 2271725716, "destination": 2271725710, "path": [[5329.189276494617, -3059.0505814238613], [5440.089276490312, -2948.200581421645], [5441.439276488325, -2725.050581421584]]}, {"length": 37.4536544143, "source": 2271725719, "destination": 1429423361, "path": [[2129.3392764931696, -6386.250581421393], [2146.58927649225, -6366.650581423272], [2176.6892764887302, -6353.850581422904], [2304.5892764912423, -6422.6505814239945]]}, {"length": 43.347746937, "source": 2271725719, "destination": 2271725722, "path": [[2129.3392764931696, -6386.250581421393], [2095.739276491315, -6424.350581422545], [2089.1392764923467, -6447.850581423609], [2220.9392764906966, -6523.350581421283]]}, {"length": 23.8419109144, "source": 2271725719, "destination": 1962156892, "path": [[2129.3392764931696, -6386.250581421393], [2094.7892764908715, -6364.5505814236], [2150.1892764916875, -6304.500581421735]]}, {"length": 43.347746937, "source": 2271725722, "destination": 2271725719, "path": [[2220.9392764906966, -6523.350581421283], [2089.1392764923467, -6447.850581423609], [2095.739276491315, -6424.350581422545], [2129.3392764931696, -6386.250581421393]]}, {"length": 102.041920675, "source": 2271725726, "destination": 135092542, "path": [[-1950.710723505722, -11485.450581421475], [-1979.3107235059892, -11310.350581421602], [-2007.860723509225, -11291.300581422804], [-2009.8107235071438, -11127.950581421686], [-2129.0607235116, -11130.300581420726]]}, {"length": 8.06671902466, "source": 2271725726, "destination": 134946751, "path": [[-1950.710723505722, -11485.450581421475], [-1988.1607235063825, -11508.100581423263]]}, {"length": 13.7888608745, "source": 2282973355, "destination": 134982224, "path": [[-8558.410723509269, 2528.0494185793145], [-8559.110723510345, 2590.049418579099]]}, {"length": 15.1587837169, "source": 2282973355, "destination": 2282973358, "path": [[-8558.410723509269, 2528.0494185793145], [-8648.460723506447, 2527.299418577655]]}, {"length": 47.3150993256, "source": 2282973355, "destination": 2282973551, "path": [[-8558.410723509269, 2528.0494185793145], [-8556.060723506675, 2315.299418576444]]}, {"length": 20.8739035346, "source": 2282973358, "destination": 2282973360, "path": [[-8648.460723506447, 2527.299418577655], [-8685.160723509, 2526.9994185777023], [-8772.460723506014, 2526.5494185759962]]}, {"length": 13.7123623666, "source": 2282973358, "destination": 2282973300, "path": [[-8648.460723506447, 2527.299418577655], [-8649.01072350932, 2568.7994185794596], [-8649.11072351049, 2588.9494185769026]]}, {"length": 15.1587837169, "source": 2282973358, "destination": 2282973355, "path": [[-8648.460723506447, 2527.299418577655], [-8558.410723509269, 2528.0494185793145]]}, {"length": 47.3822817183, "source": 2282973358, "destination": 3758384268, "path": [[-8648.460723506447, 2527.299418577655], [-8648.060723508877, 2498.1994185786507], [-8647.110723508433, 2369.1994185774947], [-8646.860723509064, 2314.2494185783844]]}, {"length": 9.35101958232, "source": 2282973360, "destination": 2282973329, "path": [[-8772.460723506014, 2526.5494185759962], [-8772.660723508352, 2568.5994185771224]]}, {"length": 35.8684419307, "source": 2282973360, "destination": 2282973362, "path": [[-8772.460723506014, 2526.5494185759962], [-8892.410723511546, 2525.94941857609], [-8913.360723511232, 2526.0994185778427], [-8965.910723510717, 2526.4494185783806], [-8985.560723509423, 2526.3494185772115]]}, {"length": 3.39444514265, "source": 2282973360, "destination": 2282973382, "path": [[-8772.460723506014, 2526.5494185759962], [-8772.460723506014, 2523.7494185788023], [-8772.410723508983, 2511.249418578387]]}, {"length": 20.8739035346, "source": 2282973360, "destination": 2282973358, "path": [[-8772.460723506014, 2526.5494185759962], [-8685.160723509, 2526.9994185777023], [-8648.460723506447, 2527.299418577655]]}, {"length": 35.8684419307, "source": 2282973362, "destination": 2282973360, "path": [[-8985.560723509423, 2526.3494185772115], [-8965.910723510717, 2526.4494185783806], [-8913.360723511232, 2526.0994185778427], [-8892.410723511546, 2525.94941857609], [-8772.460723506014, 2526.5494185759962]]}, {"length": 18.1549159937, "source": 2282973362, "destination": 2282973366, "path": [[-8985.560723509423, 2526.3494185772115], [-9029.510723507883, 2526.0994185778427], [-9093.410723508554, 2525.7494185773057]]}, {"length": 4.67020575112, "source": 2282973362, "destination": 2282973399, "path": [[-8985.560723509423, 2526.3494185772115], [-8985.410723511222, 2505.349418576941]]}, {"length": 7.78354759499, "source": 135022772, "destination": 135022770, "path": [[8954.339276492363, -1765.1005814229848], [8954.339276492363, -1730.1005814225334]]}, {"length": 116.214929118, "source": 135022772, "destination": 135019219, "path": [[8954.339276492363, -1765.1005814229848], [8263.839276494877, -1768.100581422516]]}, {"length": 61.9576107455, "source": 135022772, "destination": 134934058, "path": [[8954.339276492363, -1765.1005814229848], [8955.039276493437, -2002.650581420795], [8946.63927649475, -2043.2005814221554]]}, {"length": 18.1549159937, "source": 2282973366, "destination": 2282973362, "path": [[-9093.410723508554, 2525.7494185773057], [-9029.510723507883, 2526.0994185778427], [-8985.560723509423, 2526.3494185772115]]}, {"length": 3.60254635217, "source": 2282973366, "destination": 2282973389, "path": [[-9093.410723508554, 2525.7494185773057], [-9093.210723506218, 2509.5494185762846]]}, {"length": 10.9836952596, "source": 2282973366, "destination": 2282973370, "path": [[-9093.410723508554, 2525.7494185773057], [-9103.810723509298, 2525.6494185761367], [-9158.660723507239, 2525.249418578568]]}, {"length": 43.0870919417, "source": 2357086393, "destination": 2357086394, "path": [[-2360.3607235074264, 5108.999418578009], [-2616.310723510651, 5107.5494185788275]]}, {"length": 48.0924571103, "source": 2357086393, "destination": 2357086468, "path": [[-2360.3607235074264, 5108.999418578009], [-2358.9607235052767, 4892.749418576869]]}, {"length": 52.6574245709, "source": 2357086393, "destination": 2358476301, "path": [[-2360.3607235074264, 5108.999418578009], [-2047.5607235113102, 5110.749418577143]]}, {"length": 12.9209878317, "source": 2357086394, "destination": 2069036640, "path": [[-2616.310723510651, 5107.5494185788275], [-2693.0607235087223, 5108.199418579317]]}, {"length": 43.0870919417, "source": 2357086394, "destination": 2357086393, "path": [[-2616.310723510651, 5107.5494185788275], [-2360.3607235074264, 5108.999418578009]]}, {"length": 47.9815733031, "source": 2357086394, "destination": 2356771781, "path": [[-2616.310723510651, 5107.5494185788275], [-2614.5607235079638, 4891.7994185764255]]}, {"length": 48.792563819, "source": 2357086394, "destination": 2352260173, "path": [[-2616.310723510651, 5107.5494185788275], [-2616.1107235083136, 5326.9494185776975]]}, {"length": 13.5325455159, "source": 2282973371, "destination": 2282973320, "path": [[-9240.01072350933, 2525.099418576815], [-9240.510723508067, 2585.949418577371]]}, {"length": 9.08110878756, "source": 2282973371, "destination": 3758384266, "path": [[-9240.01072350933, 2525.099418576815], [-9293.960723510963, 2524.8994185780302]]}, {"length": 23.6624345332, "source": 2282973371, "destination": 2282973499, "path": [[-9240.01072350933, 2525.099418576815], [-9239.860723511129, 2502.6494185773627], [-9239.510723510592, 2430.9994185784944], [-9239.410723509423, 2418.699418576864]]}, {"length": 13.6934445743, "source": 2282973371, "destination": 2282973370, "path": [[-9240.01072350933, 2525.099418576815], [-9203.410723507943, 2524.849418577446], [-9158.660723507239, 2525.249418578568]]}, {"length": 122.316048373, "source": 2282973373, "destination": 2282972985, "path": [[-9371.56072350831, 2524.5994185780773], [-9372.060723507047, 2645.599418578115], [-9373.460723509197, 2831.4994185763], [-9373.460723509197, 2963.2994185782027], [-9374.51072351081, 3055.149418578651], [-9374.610723504873, 3074.599418578572]]}, {"length": 13.0618183064, "source": 2282973373, "destination": 3758384266, "path": [[-9371.56072350831, 2524.5994185780773], [-9293.960723510963, 2524.8994185780302]]}, {"length": 61.9819252937, "source": 2282973373, "destination": 2282973598, "path": [[-9371.56072350831, 2524.5994185780773], [-9370.610723507867, 2429.39941857756], [-9369.910723506791, 2282.9494185785393], [-9369.410723508054, 2245.8994185790007]]}, {"length": 60.2832010411, "source": 135022782, "destination": 134934058, "path": [[8944.339276489189, -2314.1005814224513], [8941.439276490826, -2091.800581421666], [8946.63927649475, -2043.2005814221554]]}, {"length": 60.601904981, "source": 135022782, "destination": 2086854395, "path": [[8944.339276489189, -2314.1005814224513], [8945.839276492507, -2586.6005814236814]]}, {"length": 114.024567932, "source": 135022782, "destination": 135019220, "path": [[8944.339276489189, -2314.1005814224513], [8266.83927649441, -2316.600581423245]]}, {"length": 45.9012568653, "source": 135022785, "destination": 2086854432, "path": [[8947.33927648872, -2856.6005814205655], [8947.639276492226, -3063.0005814238357]]}, {"length": 54.0495354424, "source": 135022785, "destination": 2086854482, "path": [[8947.33927648872, -2856.6005814205655], [8626.189276490948, -2858.000581422715]]}, {"length": 60.045891544, "source": 135022785, "destination": 2086854395, "path": [[8947.33927648872, -2856.6005814205655], [8945.839276492507, -2586.6005814236814]]}, {"length": 3.39444514265, "source": 2282973382, "destination": 2282973360, "path": [[-8772.410723508983, 2511.249418578387], [-8772.460723506014, 2523.7494185788023], [-8772.460723506014, 2526.5494185759962]]}, {"length": 3.20257612992, "source": 2282973384, "destination": 2282973370, "path": [[-9158.41072350787, 2510.8494185772656], [-9158.660723507239, 2525.249418578568]]}, {"length": 3.60254635217, "source": 2282973389, "destination": 2282973366, "path": [[-9093.210723506218, 2509.5494185762846], [-9093.410723508554, 2525.7494185773057]]}, {"length": 58.9783649779, "source": 135022798, "destination": 2086776739, "path": [[8973.239276492961, 418.94941857734125], [8974.739276489174, 153.74941857615454]]}, {"length": 121.515498838, "source": 135022798, "destination": 135019213, "path": [[8973.239276492961, 418.94941857734125], [8251.33927649091, 425.8994185768472]]}, {"length": 112.349014622, "source": 135022800, "destination": 134979290, "path": [[8976.339276493662, -120.65058142241014], [9643.839276492372, -118.15058142161661]]}, {"length": 61.0245075542, "source": 135022800, "destination": 2086776739, "path": [[8976.339276493662, -120.65058142241014], [8974.739276489174, 153.74941857615454]]}, {"length": 60.8684947138, "source": 135022800, "destination": 2086854382, "path": [[8976.339276493662, -120.65058142241014], [8975.08927648971, -394.3505814234527]]}, {"length": 60.7903381465, "source": 135022802, "destination": 2086854568, "path": [[8973.839276492869, -667.0505814234673], [8973.839276492869, -940.4005814239724]]}, {"length": 120.593673423, "source": 135022802, "destination": 135019217, "path": [[8973.839276492869, -667.0505814234673], [8257.339276489973, -669.1005814225548]]}, {"length": 60.6460588387, "source": 135022802, "destination": 2086854382, "path": [[8973.839276492869, -667.0505814234673], [8975.08927648971, -394.3505814234527]]}, {"length": 4.67020575112, "source": 2282973399, "destination": 2282973362, "path": [[-8985.410723511222, 2505.349418576941], [-8985.560723509423, 2526.3494185772115]]}, {"length": 195.574261073, "source": 135022809, "destination": 135022845, "path": [[9127.989276493054, -6764.650581423837], [9119.589276494367, -5979.850581422142], [9115.789276492593, -5885.300581422115]]}, {"length": 48.2750172666, "source": 135022809, "destination": 2086854447, "path": [[9127.989276493054, -6764.650581423837], [9414.839276495002, -6761.650581420753]]}, {"length": 33.7579072069, "source": 2086723498, "destination": 2080617354, "path": [[5360.18927649451, 137.2994185793175], [5360.139276490372, 191.49941857676822], [5365.739276491866, 240.94941857910612], [5376.239276493778, 288.2494185776352]]}, {"length": 117.120854104, "source": 2086723498, "destination": 2086723436, "path": [[5360.18927649451, 137.2994185793175], [4664.3392764949, 135.49941857604608]]}, {"length": 120.963789063, "source": 2086723498, "destination": 1429422301, "path": [[5360.18927649451, 137.2994185793175], [5364.839276488454, -132.05058142062853], [5366.5892764911405, -406.6005814209461]]}, {"length": 158.666745746, "source": 2423695594, "destination": 2423695625, "path": [[-6827.660723509154, -3056.750581421852], [-6774.610723510932, -3044.6005814219743], [-6695.5607235072985, -3068.400581422992], [-6632.56072351004, -3108.0005814239084], [-6535.710723511556, -3152.7005814240283], [-6055.060723511474, -3085.8005814238254], [-5959.560723511004, -3033.0505814220032]]}, {"length": 169.584144305, "source": 2423695594, "destination": 3357236935, "path": [[-6827.660723509154, -3056.750581421852], [-7772.260723506008, -3223.5505814206535], [-7808.810723510362, -3230.500581423712]]}, {"length": 45.371141344, "source": 2423695594, "destination": 2423695617, "path": [[-6827.660723509154, -3056.750581421852], [-6799.110723505919, -3148.9005814222537], [-6755.010723509258, -3253.05058142078]]}, {"length": 930.303388687, "source": 2423695599, "destination": 1959915274, "path": [[-7726.060723506123, -3810.400581421902], [-7733.310723509135, -3787.0505814225908], [-7766.3607235081145, -3738.200581423712], [-8038.860723509344, -3351.1505814232123], [-8057.810723506975, -3321.400581423717], [-8068.710723506456, -3290.0505814232874], [-8128.86072350949, -3143.700581421882], [-8168.860723507976, -3085.6505814220727], [-8382.460723510121, -2832.1005814220257], [-8416.91072351125, -2811.0505814211706], [-8467.910723510386, -2778.000581422191], [-8509.71072350859, -2737.2005814214617], [-8534.660723505283, -2683.300581423964], [-8574.760723504936, -2598.750581423559], [-8648.560723507615, -2420.5505814229864], [-8665.010723511557, -2392.2505814226724], [-8691.810723505001, -2359.100581422524], [-9128.660723504821, -1912.8005814224025], [-9270.810723506884, -1774.3005814239154], [-9486.060723510547, -1608.3505814208365], [-9614.81072350523, -1506.850581421304], [-9717.460723507542, -1412.100581422493], [-9807.260723505351, -1311.4505814222355], [-9903.11072350636, -1190.7005814215665], [-9999.76072350961, -1042.7005814221957], [-10092.960723511624, -868.1005814210607], [-10117.71072350598, -801.4505814237793], [-10127.760723506184, -754.7505814216038], [-10174.710723511282, -284.30058142348], [-10184.510723505013, -221.0005814227145], [-10197.760723507088, -174.9005814239979]]}, {"length": 95.2984606498, "source": 2423695599, "destination": 1428266998, "path": [[-7726.060723506123, -3810.400581421902], [-7699.460723507911, -3895.900581422751], [-7659.610723507626, -4023.9505814234635], [-7655.160723508914, -4038.350581421213], [-7616.260723509072, -4230.450581420797]]}, {"length": 147.728248854, "source": 2423695599, "destination": 3357236935, "path": [[-7726.060723506123, -3810.400581421902], [-7702.96072350618, -3800.9005814210186], [-7684.960723508993, -3777.6005814222913], [-7683.8107235062125, -3760.1505814208736], [-7685.360723506563, -3741.300581420859], [-7714.2107235061985, -3686.050581421796], [-7740.210723511609, -3632.4505814206987], [-7793.9107235067695, -3526.950581420607], [-7893.66072351072, -3328.8505814219607], [-7902.260723511745, -3301.7505814214587], [-7900.960723510763, -3279.5505814213757], [-7872.260723509327, -3248.550581421483], [-7836.660723505418, -3235.8005814216995], [-7808.810723510362, -3230.500581423712]]}, {"length": 164.239327314, "source": 2074159346, "destination": 1930503509, "path": [[9722.989276490069, -9409.600581420818], [9717.78927649325, -9047.650581422316], [9717.98927648848, -8709.100581423712], [9718.039276492618, -8671.100581423729]]}, {"length": 77.5091401487, "source": 2423695603, "destination": 2423695617, "path": [[-6302.360723509537, -3217.6505814227594], [-6393.6107235065265, -3220.700581422875], [-6482.610723509197, -3237.400581422634], [-6577.51072350976, -3257.5005814230453], [-6699.610723508442, -3262.2505814217106], [-6755.010723509258, -3253.05058142078]]}, {"length": 95.170109101, "source": 2423695603, "destination": 2423695614, "path": [[-6302.360723509537, -3217.6505814227594], [-6200.660723507667, -3215.8005814224566], [-5924.7107235052, -3224.65058142285], [-5827.010723507442, -3214.9505814231816], [-5748.210723510283, -3183.600581422752]]}, {"length": 165.311761495, "source": 2423695603, "destination": 3146325505, "path": [[-6302.360723509537, -3217.6505814227594], [-6231.760723508728, -3260.600581423745], [-6147.06072350657, -3315.6505814240236], [-6116.610723509552, -3329.6005814236196], [-6071.91072350588, -3337.550581420601], [-5937.860723506105, -3338.7005814233817], [-5805.06072351028, -3340.4005814219317], [-5715.210723508335, -3355.6505814225093], [-5635.010723509026, -3382.10058142252], [-5593.560723511359, -3390.300581422423], [-5551.610723507849, -3393.2005814207855], [-5511.760723507564, -3389.1005814226105], [-5475.360723508516, -3384.050581423992], [-5444.460723509792, -3382.3005814213047], [-5428.4607235075555, -3385.8505814237105], [-5413.010723508194, -3393.2005814207855], [-5396.510723507219, -3406.350581421691]]}, {"length": 47.3530854957, "source": 2068973812, "destination": 2286663056, "path": [[-6343.860723511341, 6221.8494185763975], [-6348.460723508253, 6434.749418577468]]}, {"length": 48.1051052416, "source": 2068973812, "destination": 2251802370, "path": [[-6343.860723511341, 6221.8494185763975], [-6341.110723511179, 6005.549418578226]]}, {"length": 114.835305083, "source": 2068973812, "destination": 2068973834, "path": [[-6343.860723511341, 6221.8494185763975], [-5661.710723508406, 6221.699418578197]]}, {"length": 56.7703713594, "source": 2282973432, "destination": 2282973617, "path": [[-9674.410723505389, 2488.599418576598], [-9673.060723507377, 2451.949418578181], [-9669.960723506676, 2369.6494185792008], [-9668.610723508664, 2333.599418577137], [-9668.9607235092, 2309.949418577872], [-9668.610723508664, 2262.4494185770063], [-9668.210723511094, 2233.3994185785855]]}, {"length": 22.3678060533, "source": 2080560852, "destination": 1932196145, "path": [[1553.189276492617, -6023.700581422986], [1510.2892764886633, -6017.350581423387], [1492.2392764944448, -6018.500581422614], [1474.789276493027, -6022.250581423805], [1455.2392764883848, -6027.200581421255], [1424.4892764949668, -6034.700581423635]]}, {"length": 97.9865766254, "source": 2080560852, "destination": 1279884630, "path": [[1553.189276492617, -6023.700581422986], [1714.3892764934776, -6123.300581421631], [1730.9892764885149, -6130.650581422259], [1746.5392764890453, -6139.5505814232365], [1766.2392764918877, -6144.000581421949], [2038.1892764902432, -6185.100581422631], [2075.139276492166, -6190.15058142125]]}, {"length": 31.3381978642, "source": 2080560852, "destination": 3009796734, "path": [[1553.189276492617, -6023.700581422986], [1537.539276490918, -5988.50058142375], [1526.4392764891, -5967.350581421726], [1520.6892764894064, -5951.600581422412], [1519.3892764884254, -5934.800581421485], [1517.139276494106, -5910.700581420514], [1515.4392764884506, -5887.050581421249]]}, {"length": 9.49733986575, "source": 2068973820, "destination": 2316883457, "path": [[-2700.4607235099343, 6232.849418577047], [-2699.660723507691, 6190.149418578983]]}, {"length": 13.0893894575, "source": 2068973820, "destination": 2703728618, "path": [[-2700.4607235099343, 6232.849418577047], [-2622.710723507282, 6233.399418576369]]}, {"length": 12.3984365833, "source": 2068973820, "destination": 2316883445, "path": [[-2700.4607235099343, 6232.849418577047], [-2774.110723507306, 6232.649418578262]]}, {"length": 195.574261073, "source": 135022845, "destination": 135022809, "path": [[9115.789276492593, -5885.300581422115], [9119.589276494367, -5979.850581422142], [9127.989276493054, -6764.650581423837]]}, {"length": 49.2411151809, "source": 135022845, "destination": 135022807, "path": [[9115.789276492593, -5885.300581422115], [9408.289276493066, -5879.200581421884]]}, {"length": 101.290500499, "source": 135022845, "destination": 134991221, "path": [[9115.789276492593, -5885.300581422115], [9120.339276492472, -5429.850581421647]]}, {"length": 50.0019612483, "source": 135022845, "destination": 1935184031, "path": [[9115.789276492593, -5885.300581422115], [8818.689276495206, -5888.600581421599]]}, {"length": 48.8482237547, "source": 2423695614, "destination": 2423695625, "path": [[-5748.210723510283, -3183.600581422752], [-5959.560723511004, -3033.0505814220032]]}, {"length": 95.170109101, "source": 2423695614, "destination": 2423695603, "path": [[-5748.210723510283, -3183.600581422752], [-5827.010723507442, -3214.9505814231816], [-5924.7107235052, -3224.65058142285], [-6200.660723507667, -3215.8005814224566], [-6302.360723509537, -3217.6505814227594]]}, {"length": 462.393913304, "source": 2423695614, "destination": 2331404988, "path": [[-5748.210723510283, -3183.600581422752], [-5717.61072350796, -3156.7505814216192], [-5709.41072351161, -3148.250581421763], [-5692.310723510729, -3125.7505814217266], [-5076.460723508091, -2391.5005814210135], [-5060.910723507561, -2368.7505814216083], [-5045.910723509905, -2342.60058142155], [-5038.710723511031, -2326.2505814223287], [-5034.110723507012, -2312.1505814209795], [-5028.510723505519, -2282.950581420806], [-5027.010723509306, -2264.1005814207915], [-5025.560723510125, -2224.400581422259], [-5029.410723508931, -1883.2005814211072], [-5032.560723506663, -1640.400581422341], [-5053.660723511655, -1468.200581420831], [-5078.210723510779, -1400.900581423059], [-5084.6107235074105, -1353.2005814234083], [-5079.260723505286, -1312.6005814214636], [-5079.860723505191, -1264.500581420691]]}, {"length": 185.477513393, "source": 1937680639, "destination": 1937679960, "path": [[4363.58927649394, -6852.900581421295], [4364.339276492046, -6796.950581421157], [4365.939276489427, -6751.250581423563], [4366.889276489872, -6706.000581420568], [4368.789276490759, -6646.750581420946], [4371.339276488584, -6607.80058142052], [4370.739276488677, -6590.7005814231925], [4368.789276490759, -6566.600581422222], [4366.589276493471, -6534.85058142067], [4363.389276491603, -6433.7505814222595], [4364.689276492583, -6395.250581423539], [4368.489276494358, -6361.050581421779], [4370.739276488677, -6334.350581422399], [4373.289276493608, -6294.900581423235], [4373.589276490009, -6258.550581421218], [4371.339276488584, -6214.000581422852], [4369.4392764948025, -6169.250581422148], [4365.639276493028, -6087.650581420689], [4366.589276493471, -6019.450581423058]]}, {"length": 73.4841104265, "source": 1937680639, "destination": 1483977825, "path": [[4363.58927649394, -6852.900581421295], [3969.5392764897974, -6858.750581422157], [3969.9892764915035, -6890.950581421862]]}, {"length": 38.9301257624, "source": 1937680639, "destination": 2029677569, "path": [[4363.58927649394, -6852.900581421295], [4594.889276489766, -6849.450581423611]]}, {"length": 16.3842714092, "source": 2068973824, "destination": 2354509465, "path": [[-1960.960723508265, 6235.049418577887], [-1863.7107235051076, 6237.999418576834]]}, {"length": 14.7974466555, "source": 2068973824, "destination": 2352259893, "path": [[-1960.960723508265, 6235.049418577887], [-2048.860723505186, 6234.999418577303]]}, {"length": 47.9372231687, "source": 2068973824, "destination": 2352259854, "path": [[-1960.960723508265, 6235.049418577887], [-1962.8107235050152, 6450.599418577951]]}, {"length": 48.5588934975, "source": 2068973824, "destination": 2352260065, "path": [[-1960.960723508265, 6235.049418577887], [-1960.660723504759, 6016.699418577076]]}, {"length": 96.7151206526, "source": 2423695617, "destination": 3357236936, "path": [[-6755.010723509258, -3253.05058142078], [-6749.360723510734, -3347.950581421344], [-6675.460723506887, -3589.0505814215603], [-6657.810723510238, -3655.0505814219036], [-6657.110723509163, -3680.1005814233176]]}, {"length": 45.371141344, "source": 2423695617, "destination": 2423695594, "path": [[-6755.010723509258, -3253.05058142078], [-6799.110723505919, -3148.9005814222537], [-6827.660723509154, -3056.750581421852]]}, {"length": 77.5091401487, "source": 2423695617, "destination": 2423695603, "path": [[-6755.010723509258, -3253.05058142078], [-6699.610723508442, -3262.2505814217106], [-6577.51072350976, -3257.5005814230453], [-6482.610723509197, -3237.400581422634], [-6393.6107235065265, -3220.700581422875], [-6302.360723509537, -3217.6505814227594]]}, {"length": 31.0585441109, "source": 2357086466, "destination": 2358476440, "path": [[-2045.1107235075483, 4893.899418576098], [-1860.6107235115132, 4894.549418576588]]}, {"length": 52.8330819487, "source": 2357086466, "destination": 2357086468, "path": [[-2045.1107235075483, 4893.899418576098], [-2358.9607235052767, 4892.749418576869]]}, {"length": 48.2270126138, "source": 2357086466, "destination": 2358476301, "path": [[-2045.1107235075483, 4893.899418576098], [-2047.5607235113102, 5110.749418577143]]}, {"length": 25.8426731808, "source": 2357086466, "destination": 2357086471, "path": [[-2045.1107235075483, 4893.899418576098], [-2043.9107235077358, 4777.699418578863]]}, {"length": 48.2815511726, "source": 2068973828, "destination": 2069376793, "path": [[-4923.260723508349, 6225.499418576419], [-4921.9107235103365, 6008.399418576005]]}, {"length": 16.3377231333, "source": 2068973828, "destination": 2293563076, "path": [[-4923.260723508349, 6225.499418576419], [-5020.310723509169, 6225.649418578172]]}, {"length": 47.6804642547, "source": 2068973828, "destination": 2293562998, "path": [[-4923.260723508349, 6225.499418576419], [-4922.810723506644, 6439.899418577255]]}, {"length": 16.1964410192, "source": 2068973828, "destination": 2294600150, "path": [[-4923.260723508349, 6225.499418576419], [-4827.060723506804, 6226.599418578616]]}, {"length": 56.0061119553, "source": 2357086470, "destination": 134954274, "path": [[-2358.6107235047393, 4835.149418578766], [-2691.310723506035, 4833.899418578369]]}, {"length": 12.8103045197, "source": 2357086470, "destination": 2357086468, "path": [[-2358.6107235047393, 4835.149418578766], [-2358.9607235052767, 4892.749418576869]]}, {"length": 68.0422845829, "source": 2357086470, "destination": 134954277, "path": [[-2358.6107235047393, 4835.149418578766], [-1954.410723506328, 4836.599418577947]]}, {"length": 48.0103038309, "source": 2357086471, "destination": 2703728626, "path": [[-2043.9107235077358, 4777.699418578863], [-2038.8607235091172, 4561.849418578845]]}, {"length": 25.8426731808, "source": 2357086471, "destination": 2357086466, "path": [[-2043.9107235077358, 4777.699418578863], [-2045.1107235075483, 4893.899418576098]]}, {"length": 96.1451294173, "source": 2357086471, "destination": 2358476398, "path": [[-2043.9107235077358, 4777.699418578863], [-2615.0607235067014, 4776.999418577788]]}, {"length": 31.6305997395, "source": 2357086471, "destination": 2354509541, "path": [[-2043.9107235077358, 4777.699418578863], [-1856.0107235074952, 4778.399418576384]]}, {"length": 158.666745746, "source": 2423695625, "destination": 2423695594, "path": [[-5959.560723511004, -3033.0505814220032], [-6055.060723511474, -3085.8005814238254], [-6535.710723511556, -3152.7005814240283], [-6632.56072351004, -3108.0005814239084], [-6695.5607235072985, -3068.400581422992], [-6774.610723510932, -3044.6005814219743], [-6827.660723509154, -3056.750581421852]]}, {"length": 48.8482237547, "source": 2423695625, "destination": 2423695614, "path": [[-5959.560723511004, -3033.0505814220032], [-5748.210723510283, -3183.600581422752]]}, {"length": 123.444114831, "source": 2423695625, "destination": 2960627998, "path": [[-5959.560723511004, -3033.0505814220032], [-5904.510723510725, -2969.1005814207474], [-5370.1607235083775, -3225.4005814209563]]}, {"length": 47.7807303989, "source": 2068973834, "destination": 2286663049, "path": [[-5661.710723508406, 6221.699418578197], [-5662.560723507681, 6436.549418577187]]}, {"length": 114.835305083, "source": 2068973834, "destination": 2068973812, "path": [[-5661.710723508406, 6221.699418578197], [-6343.860723511341, 6221.8494185763975]]}, {"length": 13.2519117902, "source": 2068973834, "destination": 3299414701, "path": [[-5661.710723508406, 6221.699418578197], [-5583.010723505311, 6223.099418576794]]}, {"length": 48.5707707159, "source": 2068973834, "destination": 2139775505, "path": [[-5661.710723508406, 6221.699418578197], [-5660.160723508056, 6003.299418576802]]}, {"length": 11.5893944994, "source": 2068973835, "destination": 2069393822, "path": [[-4586.460723508879, 5087.89941857657], [-4591.260723508129, 5121.4994185784235], [-4592.610723506141, 5139.799418579116]]}, {"length": 194.502451946, "source": 2087861293, "destination": 134983481, "path": [[10392.189276494435, -8568.700581420784], [10392.839276491373, -7694.100581421281]]}, {"length": 55.7505959181, "source": 2087861293, "destination": 2087861294, "path": [[10392.189276494435, -8568.700581420784], [10328.889276493668, -8570.650581422256], [10099.589276492792, -8570.05058142235], [10060.93927649232, -8569.300581420692]]}, {"length": 8.31755754768, "source": 2087861293, "destination": 134982537, "path": [[10392.189276494435, -8568.700581420784], [10392.139276490298, -8606.100581420862]]}, {"length": 8.51142609005, "source": 844923267, "destination": 2568600191, "path": [[-673.4107235075726, -2719.950581422381], [-671.8107235101911, -2681.7005814230297]]}, {"length": 48.4262838038, "source": 2068973848, "destination": 2309493752, "path": [[-3433.6107235048985, 6230.799418577959], [-3435.2107235093854, 6448.549418578864]]}, {"length": 14.9745410026, "source": 2068973848, "destination": 2316883446, "path": [[-3433.6107235048985, 6230.799418577959], [-3344.6607235063652, 6231.299418576697]]}, {"length": 17.4154127353, "source": 2068973848, "destination": 2316883447, "path": [[-3433.6107235048985, 6230.799418577959], [-3537.0607235094553, 6230.599418579175]]}, {"length": 13.2997730021, "source": 2068973856, "destination": 2068973890, "path": [[-4182.160723509298, 6228.699418578288], [-4103.160723509802, 6229.199418577025]]}, {"length": 47.5249276261, "source": 2068973856, "destination": 2294600111, "path": [[-4182.160723509298, 6228.699418578288], [-4182.610723511005, 6442.399418578048]]}, {"length": 47.781484901, "source": 2068973856, "destination": 2251802373, "path": [[-4182.160723509298, 6228.699418578288], [-4180.36072350958, 6013.849418579298]]}, {"length": 13.2161578678, "source": 2068973856, "destination": 2294600143, "path": [[-4182.160723509298, 6228.699418578288], [-4260.660723510056, 6227.899418576044]]}, {"length": 55.0129326695, "source": 2068973857, "destination": 3299414701, "path": [[-5256.3107235101825, 6228.899418577072], [-5583.010723505311, 6223.099418576794]]}, {"length": 169.678264395, "source": 135104809, "destination": 1567538287, "path": [[-3472.5107235047403, -3349.4505814211097], [-3467.26072351089, -3312.7005814215236], [-3465.71072351054, -3272.350581422501], [-3467.660723508459, -3134.60058142212], [-3465.660723506403, -3055.350581423255], [-3459.3607235109403, -2956.750581422085], [-3430.1607235107667, -2638.6005814238442], [-3421.810723509111, -2588.0005814222786]]}, {"length": 49.3706235685, "source": 2068973871, "destination": 2292321459, "path": [[-6007.110723508902, 5638.799418576923], [-6006.6107235101645, 5860.799418577755]]}, {"length": 55.6009893281, "source": 2068973871, "destination": 1433125507, "path": [[-6007.110723508902, 5638.799418576923], [-6269.710723508126, 5635.4994185774385], [-6337.310723509404, 5637.499418579495]]}, {"length": 48.3937962769, "source": 2068973871, "destination": 3299414703, "path": [[-6007.110723508902, 5638.799418576923], [-6004.610723508108, 5421.199418577771]]}, {"length": 49.893243846, "source": 2042464563, "destination": 135039784, "path": [[5850.2392764907545, -6605.05058142391], [5850.339276491923, -6829.4005814237835]]}, {"length": 250.67011134, "source": 2042464563, "destination": 1937710117, "path": [[5850.2392764907545, -6605.05058142391], [5892.439276493633, -6606.050581421386], [5937.139276490199, -6604.350581422836], [6010.939276492877, -6601.950581423211], [6073.439276491399, -6601.250581422136], [6128.789276495183, -6598.550581422558], [6165.239276491264, -6596.150581422933], [6197.589276489169, -6594.45058142083], [6235.839276492072, -6593.800581423892], [6290.7392764941505, -6594.8005814213675], [6326.239276489787, -6594.8005814213675], [6351.439276492954, -6594.100581423845], [6383.839276494996, -6592.400581421743], [6419.83927648937, -6591.750581421252], [6471.089276494979, -6591.400581420714], [6514.289276488227, -6590.7005814231925], [6565.5892764908685, -6589.350581421627], [6619.989276494209, -6588.350581420599], [6705.939276493211, -6587.650581423077], [6778.78927648834, -6589.000581421089], [6831.439276488993, -6590.400581423239], [6909.689276490382, -6589.350581421627], [6970.439276493324, -6589.350581421627], [7063.089276492463, -6588.000581423614], [7161.589276492464, -6588.000581423614], [7266.839276489634, -6587.30058142254], [7339.03927649493, -6585.600581423989]]}, {"length": 51.1387485689, "source": 2042464563, "destination": 135081367, "path": [[5850.2392764907545, -6605.05058142391], [5850.83927649066, -6375.100581422544]]}, {"length": 6.15251918379, "source": 2282973498, "destination": 2282973499, "path": [[-9202.86072350507, 2418.699418576864], [-9239.410723509423, 2418.699418576864]]}, {"length": 23.6515989517, "source": 2282973499, "destination": 2282973562, "path": [[-9239.410723509423, 2418.699418576864], [-9239.010723504747, 2374.1494185784973], [-9239.110723505917, 2312.349418577497]]}, {"length": 23.6624345332, "source": 2282973499, "destination": 2282973371, "path": [[-9239.410723509423, 2418.699418576864], [-9239.510723510592, 2430.9994185784944], [-9239.860723511129, 2502.6494185773627], [-9240.01072350933, 2525.099418576815]]}, {"length": 6.15251918379, "source": 2282973499, "destination": 2282973498, "path": [[-9239.410723509423, 2418.699418576864], [-9202.86072350507, 2418.699418576864]]}, {"length": 46.9800913536, "source": 135088444, "destination": 2086723534, "path": [[4590.839276488623, 2155.2494185783644], [4590.389276494023, 2366.4994185779165]]}, {"length": 155.138683616, "source": 135088446, "destination": 135018866, "path": [[4589.839276491148, 2640.8994185764814], [5458.339276493973, 2644.0994185783493], [5511.489276493365, 2644.299418577134]]}, {"length": 60.4016195107, "source": 135088446, "destination": 2069036916, "path": [[4589.839276491148, 2640.8994185764814], [4588.289276490797, 2912.499418577852]]}, {"length": 61.0239167896, "source": 135088446, "destination": 2086723534, "path": [[4589.839276491148, 2640.8994185764814], [4590.389276494023, 2366.4994185779165]]}, {"length": 13.2997730021, "source": 2068973890, "destination": 2068973856, "path": [[-4103.160723509802, 6229.199418577025], [-4182.160723509298, 6228.699418578288]]}, {"length": 47.7698127882, "source": 2068973890, "destination": 1806083048, "path": [[-4103.160723509802, 6229.199418577025], [-4102.360723507559, 6107.399418578297], [-4102.310723510527, 6014.39941857862]]}, {"length": 95.3009869684, "source": 2068973890, "destination": 2316883447, "path": [[-4103.160723509802, 6229.199418577025], [-3888.060723511444, 6228.549418576535], [-3537.0607235094553, 6230.599418579175]]}, {"length": 47.4692349809, "source": 2068973890, "destination": 2293562991, "path": [[-4103.160723509802, 6229.199418577025], [-4103.760723509708, 6442.649418577417]]}, {"length": 49.4156934916, "source": 135047491, "destination": 1933540841, "path": [[7342.9892764949045, -7728.000581423089], [7049.339276491651, -7730.200581423929]]}, {"length": 8.15118959017, "source": 135047491, "destination": 2139783258, "path": [[7342.9892764949045, -7728.000581423089], [7343.589276494811, -7764.650581421506]]}, {"length": 149.735358452, "source": 135047491, "destination": 1933539706, "path": [[7342.9892764949045, -7728.000581423089], [7342.339276490861, -7054.700581420548]]}, {"length": 51.5045499394, "source": 135047491, "destination": 1933540837, "path": [[7342.9892764949045, -7728.000581423089], [7648.939276492683, -7721.300581422952]]}, {"length": 6.37977405291, "source": 2068973892, "destination": 2069393840, "path": [[-4644.110723511119, 5065.549418578285], [-4681.1107235100735, 5071.7494185761325]]}, {"length": 7.98699863988, "source": 135047493, "destination": 1933540850, "path": [[6095.639276495035, -7746.900581423688], [6143.089276491764, -7746.000581423828]]}, {"length": 7.87334744697, "source": 135047493, "destination": 1933540866, "path": [[6095.639276495035, -7746.900581423688], [6095.989276488467, -7782.300581421709]]}, {"length": 8.46523868721, "source": 135047493, "destination": 1933540854, "path": [[6095.639276495035, -7746.900581423688], [6045.339276489869, -7747.550581420626]]}, {"length": 77.4835988047, "source": 135047493, "destination": 1933540181, "path": [[6095.639276495035, -7746.900581423688], [6091.639276490923, -7398.500581423661]]}, {"length": 121.043234342, "source": 134990151, "destination": 134994384, "path": [[1743.2392764931137, 431.3994185771719], [2462.339276490866, 437.94941857910885]]}, {"length": 61.5027750059, "source": 134990151, "destination": 2086723466, "path": [[1743.2392764931137, 431.3994185771719], [1741.4892764904266, 707.9494185759927]]}, {"length": 56.1765930144, "source": 2068973896, "destination": 135033667, "path": [[-6006.460723504859, 5933.399418577068], [-6340.160723510735, 5931.949418577887]]}, {"length": 16.1457233869, "source": 2068973896, "destination": 2292321459, "path": [[-6006.460723504859, 5933.399418577068], [-6006.6107235101645, 5860.799418577755]]}, {"length": 48.6684619847, "source": 2068973896, "destination": 2292321422, "path": [[-6006.460723504859, 5933.399418577068], [-5717.360723508591, 5934.6494185774645]]}, {"length": 120.299301165, "source": 134990154, "destination": 134994385, "path": [[1736.2892764936078, 1526.7494185771113], [2450.989276489679, 1529.3494185790735]]}, {"length": 61.2470405245, "source": 134990154, "destination": 2086723533, "path": [[1736.2892764936078, 1526.7494185771113], [1734.5392764909207, 1802.149418576704]]}, {"length": 64.0712190719, "source": 134990156, "destination": 2086723457, "path": [[1732.7892764882336, 2071.2994185778653], [1730.9892764885149, 2359.399418576658]]}, {"length": 136.855904045, "source": 134990156, "destination": 135051134, "path": [[1732.7892764882336, 2071.2994185778653], [919.7392764903611, 2068.3494185789186]]}, {"length": 58.8470276845, "source": 134990159, "destination": 2069120424, "path": [[1729.2392764929332, 2630.4994185792907], [2078.839276492772, 2631.7494185761348]]}, {"length": 124.638850269, "source": 134990159, "destination": 134959929, "path": [[1729.2392764929332, 2630.4994185792907], [1727.3892764890775, 3150.5994185785366], [1727.2392764908773, 3190.94941857756]]}, {"length": 62.347069695, "source": 134990162, "destination": 2069120315, "path": [[1721.8392764917212, 3749.7494185778633], [1721.8892764887528, 4030.099418578459]]}, {"length": 59.1902434258, "source": 134990162, "destination": 2069120438, "path": [[1721.8392764917212, 3749.7494185778633], [2073.439276493616, 3753.2994185767166]]}, {"length": 117.571850546, "source": 134990162, "destination": 2068853438, "path": [[1721.8392764917212, 3749.7494185778633], [1023.3892764901498, 3747.1994185764856]]}, {"length": 121.444201091, "source": 134990167, "destination": 2068020324, "path": [[1721.9392764928898, 4303.099418578427], [2443.3892764932352, 4302.949418576673]]}, {"length": 117.819575812, "source": 134990167, "destination": 2068853422, "path": [[1721.9392764928898, 4303.099418578427], [1022.0392764921371, 4299.299418576652]]}, {"length": 45.0304283901, "source": 2069376818, "destination": 2703728624, "path": [[-4099.910723510902, 4886.39941857727], [-3832.410723511259, 4887.349418577714]]}, {"length": 96.6079544649, "source": 2069376818, "destination": 2069376859, "path": [[-4099.910723510902, 4886.39941857727], [-4103.760723509708, 5302.949418577896], [-4104.010723509077, 5320.799418576882]]}, {"length": 12.8103045197, "source": 2069376818, "destination": 2069376797, "path": [[-4099.910723510902, 4886.39941857727], [-4099.110723508658, 4828.799418579166]]}, {"length": 12.565951589, "source": 2069376818, "destination": 2069376903, "path": [[-4099.910723510902, 4886.39941857727], [-4174.560723505749, 4886.39941857727]]}, {"length": 60.9956272396, "source": 135096675, "destination": 2286663816, "path": [[-6071.210723504805, 4269.399418578956], [-5708.910723505767, 4273.999418579422]]}, {"length": 9.02835459912, "source": 2586992558, "destination": 2586992560, "path": [[677.9392764926229, -1847.5005814231338], [677.9392764926229, -1888.1005814215257]]}, {"length": 36.749455481, "source": 2586992558, "destination": 2586992559, "path": [[677.9392764926229, -1847.5005814231338], [896.2892764898811, -1846.4505814215215]]}, {"length": 7.99827493893, "source": 2586992558, "destination": 2586992582, "path": [[677.9392764926229, -1847.5005814231338], [679.2892764906355, -1811.5505814222388]]}, {"length": 5.42462753564, "source": 2586992558, "destination": 2586992583, "path": [[677.9392764926229, -1847.5005814231338], [645.7392764929182, -1848.500581420609]]}, {"length": 96.835164527, "source": 2357086570, "destination": 2703728626, "path": [[-2614.1107235062577, 4560.2994185784955], [-2038.8607235091172, 4561.849418578845]]}, {"length": 48.6145428802, "source": 2357086570, "destination": 2356771788, "path": [[-2614.1107235062577, 4560.2994185784955], [-2613.8107235098573, 4341.699418578315]]}, {"length": 12.7007855523, "source": 2357086570, "destination": 2069036973, "path": [[-2614.1107235062577, 4560.2994185784955], [-2689.5607235104535, 4560.099418576157]]}, {"length": 48.1922401198, "source": 2357086570, "destination": 2358476398, "path": [[-2614.1107235062577, 4560.2994185784955], [-2615.0607235067014, 4776.999418577788]]}, {"length": 1.77861474988, "source": 2357086571, "destination": 2703728626, "path": [[-2038.66072350678, 4553.849418577727], [-2038.8607235091172, 4561.849418578845]]}, {"length": 82.9414093579, "source": 135088493, "destination": 135012864, "path": [[4601.339276490535, 1945.349418576825], [4598.839276489742, 1572.3994185776746]]}, {"length": 47.3150993256, "source": 2282973551, "destination": 2282973355, "path": [[-8556.060723506675, 2315.299418576444], [-8558.410723509269, 2528.0494185793145]]}, {"length": 15.2864682812, "source": 2282973551, "destination": 3758384268, "path": [[-8556.060723506675, 2315.299418576444], [-8628.610723505404, 2314.399418576585], [-8646.860723509064, 2314.2494185783844]]}, {"length": 61.2028204185, "source": 2282973551, "destination": 134982222, "path": [[-8556.060723506675, 2315.299418576444], [-8555.110723506232, 2237.299418577976], [-8553.860723509388, 2040.0994185791888]]}, {"length": 336.963278521, "source": 2080739029, "destination": 135023033, "path": [[-10199.660723507975, 317.3494185766401], [-10251.310723511153, 321.2994185766149], [-10663.260723511314, 319.49941857689623], [-10937.01072350939, 317.74941857776184], [-11027.86072350881, 302.54941857776885], [-11127.360723506285, 293.8494185791285], [-11184.260723510419, 290.349418577307], [-11305.610723510996, 289.8994185791537], [-11364.81072350648, 288.5994185781726], [-11404.510723508565, 281.64941857866665], [-11445.910723509201, 266.84941857624267], [-11480.41072350736, 246.84941857699982], [-11511.46072351139, 221.99941857792282], [-11536.760723508622, 193.74941857819294], [-11555.76072351039, 165.89941857603208], [-11564.96072351132, 146.29941857791096], [-11571.860723506688, 125.39941857880876], [-11575.8607235108, 100.59941857676336], [-11574.160723505145, 71.84941857829585], [-11570.710723511012, 45.29941857711606], [-11559.760723507396, 16.14941857752683], [-11540.21072350986, -18.650581420587287], [-11508.61072351006, -68.70058142283142], [-11433.86072350694, -174.9005814239979], [-11518.36072350676, -191.55058142317216]]}, {"length": 111.677093298, "source": 2080739029, "destination": 1959915274, "path": [[-10199.660723507975, 317.3494185766401], [-10218.410723510373, 303.1494185776751], [-10227.810723506536, 292.99941857630074], [-10232.26072350525, 278.6494185791355], [-10194.260723508818, -77.45058142205608], [-10191.610723509824, -117.05058142297275], [-10194.56072350522, -145.50058142148714], [-10197.760723507088, -174.9005814239979]]}, {"length": 48.1391686921, "source": 2080739029, "destination": 2139774318, "path": [[-10199.660723507975, 317.3494185766401], [-10088.510723505806, 314.24941857949307], [-9913.910723511777, 308.19941857629374]]}, {"length": 115.467012096, "source": 135104883, "destination": 135090896, "path": [[-3308.8107235101916, -6104.5005814222], [-2622.6607235102506, -6102.1005814225755]]}, {"length": 53.1665543347, "source": 135104883, "destination": 1483977764, "path": [[-3308.8107235101916, -6104.5005814222], [-3312.7607235101664, -5865.4505814210725]]}, {"length": 55.764364903, "source": 135104883, "destination": 2074272062, "path": [[-3308.8107235101916, -6104.5005814222], [-3308.710723509023, -6355.250581421501]]}, {"length": 221.534063269, "source": 135104883, "destination": 134957807, "path": [[-3308.8107235101916, -6104.5005814222], [-4625.260723507552, -6107.450581421148]]}, {"length": 24.2851070181, "source": 135104885, "destination": 2074272065, "path": [[-3307.160723508673, -6955.60058142064], [-3307.610723510379, -6846.400581423495]]}, {"length": 23.6515989517, "source": 2282973562, "destination": 2282973499, "path": [[-9239.110723505917, 2312.349418577497], [-9239.010723504747, 2374.1494185784973], [-9239.410723509423, 2418.699418576864]]}, {"length": 9.03833178705, "source": 2282973562, "destination": 2282973563, "path": [[-9239.110723505917, 2312.349418577497], [-9292.810723508182, 2312.299418576913]]}, {"length": 99.8047051683, "source": 2282973562, "destination": 3758384268, "path": [[-9239.110723505917, 2312.349418577497], [-9226.460723510854, 2312.349418577497], [-9127.31072350681, 2313.0994185791565], [-9057.010723509506, 2312.049418577544], [-9021.360723508566, 2312.349418577497], [-8990.110723509304, 2311.7994185781754], [-8960.260723505087, 2312.349418577497], [-8928.710723509426, 2313.3494185785253], [-8901.960723505908, 2315.199418578828], [-8883.110723509446, 2315.449418578197], [-8853.610723505768, 2315.6994185775657], [-8833.710723507693, 2315.199418578828], [-8818.610723508868, 2313.6494185784786], [-8792.910723506964, 2311.7994185781754], [-8765.11072350894, 2310.4994185771943], [-8739.710723510541, 2311.2994185794378], [-8707.4607235067, 2313.6494185784786], [-8646.860723509064, 2314.2494185783844]]}, {"length": 50.2729995149, "source": 2282973562, "destination": 2282973727, "path": [[-9239.110723505917, 2312.349418577497], [-9239.160723510053, 2288.9494185776016], [-9237.160723507997, 2086.299418579074]]}, {"length": 47.2805139664, "source": 2282973563, "destination": 3758384266, "path": [[-9292.810723508182, 2312.299418576913], [-9293.960723510963, 2524.8994185780302]]}, {"length": 27.543057869, "source": 2282973563, "destination": 2282973644, "path": [[-9292.810723508182, 2312.299418576913], [-9292.210723508277, 2188.4494185790973]]}, {"length": 9.03833178705, "source": 2282973563, "destination": 2282973562, "path": [[-9292.810723508182, 2312.299418576913], [-9239.110723505917, 2312.349418577497]]}, {"length": 49.471417935, "source": 2311059948, "destination": 2069036566, "path": [[-4095.860723509759, 4226.099418577433], [-4096.06072350499, 4213.249418576481], [-4094.3607235064405, 4003.6494185784477]]}, {"length": 12.5411825812, "source": 2311059948, "destination": 2310516565, "path": [[-4095.860723509759, 4226.099418577433], [-4170.3607235064055, 4225.549418578112]]}, {"length": 95.8236228324, "source": 2311059948, "destination": 2310516558, "path": [[-4095.860723509759, 4226.099418577433], [-3526.6107235116806, 4226.099418577433]]}, {"length": 11.9656311276, "source": 2311059948, "destination": 2069376823, "path": [[-4095.860723509759, 4226.099418577433], [-4095.0607235075154, 4279.899418577315]]}, {"length": 8.81775911134, "source": 135022976, "destination": 2139785364, "path": [[9127.639276492517, -6819.300581422994], [9127.789276490716, -6858.9505814209415]]}, {"length": 51.0087830412, "source": 135022976, "destination": 1930367327, "path": [[9127.639276492517, -6819.300581422994], [8967.6892764885, -6818.450581423718], [8824.5892764931, -6815.0505814230655]]}, {"length": 187.931563841, "source": 135022979, "destination": 2139785364, "path": [[9130.939276488447, -7704.000581423287], [9127.789276490716, -6858.9505814209415]]}, {"length": 50.0098014066, "source": 135022979, "destination": 1930367388, "path": [[9130.939276488447, -7704.000581423287], [8833.78927649403, -7707.9005814226775]]}, {"length": 165.126969292, "source": 135022979, "destination": 1930367638, "path": [[9130.939276488447, -7704.000581423287], [9136.039276491203, -8446.500581420934]]}, {"length": 7.14353642982, "source": 135022979, "destination": 2139785359, "path": [[9130.939276488447, -7704.000581423287], [9173.389276490696, -7703.750581423918]]}, {"length": 59.1542524321, "source": 2282973573, "destination": 2282973617, "path": [[-9809.160723506238, 2302.949418577782], [-9872.110723506466, 2301.7994185785537], [-9871.110723508991, 2248.699418576194], [-9870.860723509622, 2243.6494185775755], [-9869.110723506936, 2238.89941857891], [-9865.910723505067, 2234.9494185789354], [-9861.410723509323, 2232.6994185775106], [-9854.960723508555, 2231.199418577745], [-9846.260723506362, 2230.849418577208], [-9668.210723511094, 2233.3994185785855]]}, {"length": 104.970532413, "source": 2284260418, "destination": 2284260413, "path": [[-7771.010723509164, 5308.049418577099], [-7649.760723509758, 5308.399418577636], [-7436.810723511655, 5309.549418576864], [-7166.160723507175, 5310.999418576046], [-7147.460723508913, 5311.04941857663]]}, {"length": 48.5439303598, "source": 2284260418, "destination": 1433125517, "path": [[-7771.010723509164, 5308.049418577099], [-7770.060723508721, 5219.499418576134], [-7773.610723511127, 5089.799418577457]]}, {"length": 12.7990427113, "source": 2284260418, "destination": 134985535, "path": [[-7771.010723509164, 5308.049418577099], [-7770.4607235062895, 5365.599418578171]]}, {"length": 119.518707714, "source": 135096722, "destination": 1433125591, "path": [[-8103.260723508754, 4263.34941857931], [-8218.560723506129, 4256.799418577373], [-8342.260723509298, 4254.1494185783795], [-8376.010723509353, 4256.249418578051], [-8405.610723507096, 4262.549418577066], [-8433.01072350755, 4271.999418577366], [-8451.81072350698, 4283.69941857909], [-8467.110723508142, 4298.349418576208], [-8480.210723504912, 4318.349418579004], [-8491.31072350673, 4341.099418578409], [-8507.960723505903, 4383.799418576473], [-8521.060723509778, 4422.799418577483], [-8533.910723507177, 4463.349418578844], [-8545.6107235089, 4504.849418577095], [-8553.81072350525, 4536.199418577525]]}, {"length": 46.4470085473, "source": 135097411, "destination": 135084639, "path": [[-470.8607235102136, -9882.750581422073], [-469.1607235116635, -10091.600581422]]}, {"length": 12.3540145656, "source": 135096727, "destination": 2284151931, "path": [[-7767.2607235115265, 4267.399418576901], [-7766.8107235098205, 4211.8494185778845]]}, {"length": 60.5422264116, "source": 135096727, "destination": 1433125589, "path": [[-7767.2607235115265, 4267.399418576901], [-7764.460723507227, 4336.049418576238], [-7764.060723509658, 4368.849418579402], [-7764.510723511365, 4477.249418577856], [-7764.360723506059, 4539.599418578177]]}, {"length": 5.77391647314, "source": 135096727, "destination": 2284151925, "path": [[-7767.2607235115265, 4267.399418576901], [-7732.960723508597, 4267.449418577485]]}, {"length": 11.0084173158, "source": 3009784217, "destination": 1942240496, "path": [[6035.639276490201, -678.8505814228074], [6035.43927649497, -728.3505814221769]]}, {"length": 99.8342073609, "source": 3009784217, "destination": 135043185, "path": [[6035.639276490201, -678.8505814228074], [6020.289276492008, -678.9005814233917], [5587.139276492791, -680.7005814231104], [5442.489276489937, -681.3005814230166]]}, {"length": 47.0267763079, "source": 3009784217, "destination": 1942302111, "path": [[6035.639276490201, -678.8505814228074], [6035.789276488402, -643.8005814217718], [6033.439276492913, -467.4005814209181]]}, {"length": 12.5485381163, "source": 2282973598, "destination": 2282973628, "path": [[-9369.410723508054, 2245.8994185790007], [-9390.010723507203, 2237.799418576714], [-9412.66072350544, 2229.4994185791948], [-9436.760723509962, 2221.79941857803]]}, {"length": 61.9819252937, "source": 2282973598, "destination": 2282973373, "path": [[-9369.410723508054, 2245.8994185790007], [-9369.910723506791, 2282.9494185785393], [-9370.610723507867, 2429.39941857756], [-9371.56072350831, 2524.5994185780773]]}, {"length": 5.44866527253, "source": 2282973598, "destination": 2282973629, "path": [[-9369.410723508054, 2245.8994185790007], [-9369.110723511654, 2221.399418576908]]}, {"length": 61.4725844608, "source": 135032884, "destination": 2069036656, "path": [[-4912.4607235100375, 4276.899418577785], [-4911.660723507794, 4207.399418579172], [-4911.410723508425, 4146.549418578616], [-4911.860723510131, 4085.899418576844], [-4909.810723511044, 4000.499418577164]]}, {"length": 12.3729680422, "source": 135032884, "destination": 2310516524, "path": [[-4912.4607235100375, 4276.899418577785], [-4838.960723510865, 4277.1494185771535]]}, {"length": 16.3622532284, "source": 135032884, "destination": 2310516525, "path": [[-4912.4607235100375, 4276.899418577785], [-5009.660723509058, 4276.549418577247]]}, {"length": 41.2522032267, "source": 135096743, "destination": 2292322432, "path": [[-9005.11072350696, 4263.849418578047], [-9176.860723506763, 4262.499418576482], [-9250.160723510704, 4262.399418578866]]}, {"length": 56.7703713594, "source": 2282973617, "destination": 2282973432, "path": [[-9668.210723511094, 2233.3994185785855], [-9668.610723508664, 2262.4494185770063], [-9668.9607235092, 2309.949418577872], [-9668.610723508664, 2333.599418577137], [-9669.960723506676, 2369.6494185792008], [-9673.060723507377, 2451.949418578181], [-9674.410723505389, 2488.599418576598]]}, {"length": 40.5293455859, "source": 2282973617, "destination": 2282973628, "path": [[-9668.210723511094, 2233.3994185785855], [-9650.210723506803, 2233.6494185779543], [-9611.660723507499, 2234.599418578398], [-9600.960723510354, 2234.599418578398], [-9594.710723504817, 2233.44941857917], [-9587.010723507206, 2230.9994185789606], [-9571.360723505506, 2224.9994185763453], [-9551.710723506802, 2216.49941857649], [-9539.010723507601, 2211.999418577193], [-9527.560723505247, 2209.9494185781055], [-9518.61072351079, 2209.549418576984], [-9504.410723508272, 2210.0994185763057], [-9482.310723505805, 2212.5494185765147], [-9458.910723509462, 2216.3494185782893], [-9436.760723509962, 2221.79941857803]]}, {"length": 59.1542524321, "source": 2282973617, "destination": 2282973573, "path": [[-9668.210723511094, 2233.3994185785855], [-9846.260723506362, 2230.849418577208], [-9854.960723508555, 2231.199418577745], [-9861.410723509323, 2232.6994185775106], [-9865.910723505067, 2234.9494185789354], [-9869.110723506936, 2238.89941857891], [-9870.860723509622, 2243.6494185775755], [-9871.110723508991, 2248.699418576194], [-9872.110723506466, 2301.7994185785537], [-9809.160723506238, 2302.949418577782]]}, {"length": 10.719719556, "source": 2282973617, "destination": 2282973653, "path": [[-9668.210723511094, 2233.3994185785855], [-9667.560723507051, 2185.1994185766443]]}, {"length": 21.2730357166, "source": 2069393822, "destination": 2069393840, "path": [[-4592.610723506141, 5139.799418579116], [-4658.310723506531, 5085.94941857865], [-4681.1107235100735, 5071.7494185761325]]}, {"length": 15.8692746109, "source": 2069393822, "destination": 2069379699, "path": [[-4592.610723506141, 5139.799418579116], [-4520.210723505614, 5094.099418577969]]}, {"length": 11.5893944994, "source": 2069393822, "destination": 2068973835, "path": [[-4592.610723506141, 5139.799418579116], [-4591.260723508129, 5121.4994185784235], [-4586.460723508879, 5087.89941857657]]}, {"length": 17.8751213616, "source": 2069393822, "destination": 2069379707, "path": [[-4592.610723506141, 5139.799418579116], [-4565.810723505592, 5176.299418579333], [-4543.0107235091555, 5210.849418578078]]}, {"length": 34.6805513456, "source": 135023030, "destination": 135023033, "path": [[-11610.060723505456, -51.900581421904235], [-11518.36072350676, -191.55058142317216]]}, {"length": 91.1284703021, "source": 135023030, "destination": 134971378, "path": [[-11610.060723505456, -51.900581421904235], [-11667.160723504821, 20.849418579160783], [-11690.610723505302, 54.04941857634071], [-11705.260723509526, 80.74941857927342], [-11714.510723507487, 102.94941857935669], [-11718.460723507462, 132.0494185783616], [-11720.51072350655, 167.09941857939725], [-11722.660723506806, 292.74941857693193], [-11723.960723507787, 338.0494185769578]]}, {"length": 98.9021274789, "source": 135023033, "destination": 2293202970, "path": [[-11518.36072350676, -191.55058142317216], [-12105.960723509668, -194.85058142265643]]}, {"length": 232.043190394, "source": 135023033, "destination": 135023035, "path": [[-11518.36072350676, -191.55058142317216], [-10904.710723508515, -1125.9005814210354]]}, {"length": 336.963278521, "source": 135023033, "destination": 2080739029, "path": [[-11518.36072350676, -191.55058142317216], [-11433.86072350694, -174.9005814239979], [-11508.61072351006, -68.70058142283142], [-11540.21072350986, -18.650581420587287], [-11559.760723507396, 16.14941857752683], [-11570.710723511012, 45.29941857711606], [-11574.160723505145, 71.84941857829585], [-11575.8607235108, 100.59941857676336], [-11571.860723506688, 125.39941857880876], [-11564.96072351132, 146.29941857791096], [-11555.76072351039, 165.89941857603208], [-11536.760723508622, 193.74941857819294], [-11511.46072351139, 221.99941857792282], [-11480.41072350736, 246.84941857699982], [-11445.910723509201, 266.84941857624267], [-11404.510723508565, 281.64941857866665], [-11364.81072350648, 288.5994185781726], [-11305.610723510996, 289.8994185791537], [-11184.260723510419, 290.349418577307], [-11127.360723506285, 293.8494185791285], [-11027.86072350881, 302.54941857776885], [-10937.01072350939, 317.74941857776184], [-10663.260723511314, 319.49941857689623], [-10251.310723511153, 321.2994185766149], [-10199.660723507975, 317.3494185766401]]}, {"length": 34.6805513456, "source": 135023033, "destination": 135023030, "path": [[-11518.36072350676, -191.55058142317216], [-11610.060723505456, -51.900581421904235]]}, {"length": 159.267733782, "source": 135023035, "destination": 135023040, "path": [[-10904.710723508515, -1125.9005814210354], [-10481.360723510135, -1766.4005814239658]]}, {"length": 232.043190394, "source": 135023035, "destination": 135023033, "path": [[-10904.710723508515, -1125.9005814210354], [-11518.36072350676, -191.55058142317216]]}, {"length": 127.582074826, "source": 135023035, "destination": 4615944725, "path": [[-10904.710723508515, -1125.9005814210354], [-11220.31072350893, -1203.6005814231032], [-11274.96072351164, -1212.3505814223279], [-11341.910723508874, -1218.5505814237274], [-11644.760723505953, -1217.4005814209465]]}, {"length": 40.5293455859, "source": 2282973628, "destination": 2282973617, "path": [[-9436.760723509962, 2221.79941857803], [-9458.910723509462, 2216.3494185782893], [-9482.310723505805, 2212.5494185765147], [-9504.410723508272, 2210.0994185763057], [-9518.61072351079, 2209.549418576984], [-9527.560723505247, 2209.9494185781055], [-9539.010723507601, 2211.999418577193], [-9551.710723506802, 2216.49941857649], [-9571.360723505506, 2224.9994185763453], [-9587.010723507206, 2230.9994185789606], [-9594.710723504817, 2233.44941857917], [-9600.960723510354, 2234.599418578398], [-9611.660723507499, 2234.599418578398], [-9650.210723506803, 2233.6494185779543], [-9668.210723511094, 2233.3994185785855]]}, {"length": 11.3875040882, "source": 2282973628, "destination": 2282973629, "path": [[-9436.760723509962, 2221.79941857803], [-9369.110723511654, 2221.399418576908]]}, {"length": 12.5485381163, "source": 2282973628, "destination": 2282973598, "path": [[-9436.760723509962, 2221.79941857803], [-9412.66072350544, 2229.4994185791948], [-9390.010723507203, 2237.799418576714], [-9369.410723508054, 2245.8994185790007]]}, {"length": 7.15137026353, "source": 2282973629, "destination": 2282973643, "path": [[-9369.110723511654, 2221.399418576908], [-9368.860723505179, 2203.5994185785057], [-9368.460723507611, 2189.2494185777878]]}, {"length": 11.3875040882, "source": 2282973629, "destination": 2282973628, "path": [[-9369.110723511654, 2221.399418576908], [-9436.760723509962, 2221.79941857803]]}, {"length": 5.44866527253, "source": 2282973629, "destination": 2282973598, "path": [[-9369.110723511654, 2221.399418576908], [-9369.410723508054, 2245.8994185790007]]}, {"length": 61.1695149705, "source": 2267911757, "destination": 2267911766, "path": [[-9750.410723505354, -8274.60058142293], [-9387.010723507672, -8267.500581421671]]}, {"length": 779.943270275, "source": 135023040, "destination": 135010520, "path": [[-10481.360723510135, -1766.4005814239658], [-10289.160723509383, -2037.6505814212464], [-9998.010723506923, -2455.6005814240225], [-9408.160723509696, -3333.1005814218884], [-9339.160723506267, -3429.6005814233868], [-9219.41072351018, -3616.2505814232304], [-9058.660723511024, -3856.0505814224653], [-8513.660723508565, -4653.100581421654], [-8358.160723510366, -4883.600581422343]]}, {"length": 114.962330095, "source": 135023040, "destination": 4615944723, "path": [[-10481.360723510135, -1766.4005814239658], [-10936.710723505883, -1940.1005814216887], [-10988.76072350663, -1971.3505814209498], [-11028.460723508715, -2002.350581420842], [-11055.560723505663, -2033.8505814230246]]}, {"length": 159.267733782, "source": 135023040, "destination": 135023035, "path": [[-10481.360723510135, -1766.4005814239658], [-10904.710723508515, -1125.9005814210354]]}, {"length": 19.7242855922, "source": 1962191307, "destination": 1962191310, "path": [[6518.43927649054, 2364.299418577076], [6551.939276491225, 2377.499418578566], [6570.739276490656, 2377.499418578566], [6631.289276491259, 2375.4494185794783]]}, {"length": 7.94230074403, "source": 1962191307, "destination": 1962191326, "path": [[6518.43927649054, 2364.299418577076], [6490.539276491347, 2335.4994185780242]]}, {"length": 5.96508866392, "source": 1962191307, "destination": 1962191311, "path": [[6518.43927649054, 2364.299418577076], [6487.589276488848, 2377.499418578566]]}, {"length": 6.50636782159, "source": 2357086668, "destination": 2357086669, "path": [[-524.2107235048366, 4353.9994185763935], [-562.8607235053096, 4353.69941857644]]}, {"length": 47.5360204056, "source": 2357086669, "destination": 2358476580, "path": [[-562.8607235053096, 4353.69941857644], [-563.660723507553, 4567.449418576785]]}, {"length": 6.50636782159, "source": 2357086669, "destination": 2357086668, "path": [[-562.8607235053096, 4353.69941857644], [-524.2107235048366, 4353.9994185763935]]}, {"length": 31.9698503359, "source": 2357086669, "destination": 2355655021, "path": [[-562.8607235053096, 4353.69941857644], [-561.2107235108965, 4209.949418576997]]}, {"length": 95.7505609034, "source": 2357086669, "destination": 2357086671, "path": [[-562.8607235053096, 4353.69941857644], [-1131.6607235087872, 4350.749418577493]]}, {"length": 15.2311467534, "source": 1962191310, "destination": 1962186576, "path": [[6631.289276491259, 2375.4494185794783], [6644.539276493333, 2307.699418576448]]}, {"length": 109.031994056, "source": 1962191310, "destination": 2271725635, "path": [[6631.289276491259, 2375.4494185794783], [6619.389276494303, 2436.349418577066], [6836.539276491749, 2676.2994185780544], [6978.139276490936, 2673.0994185761856], [6981.539276495141, 2675.8994185769325], [7005.639276492559, 2695.599418576222]]}, {"length": 19.7242855922, "source": 1962191310, "destination": 1962191307, "path": [[6631.289276491259, 2375.4494185794783], [6570.739276490656, 2377.499418578566], [6551.939276491225, 2377.499418578566], [6518.43927649054, 2364.299418577076]]}, {"length": 25.1605762087, "source": 2357086671, "destination": 2357086674, "path": [[-1131.6607235087872, 4350.749418577493], [-1281.110723510892, 4348.999418578359]]}, {"length": 26.7539434211, "source": 2357086671, "destination": 2355655019, "path": [[-1131.6607235087872, 4350.749418577493], [-1130.9107235106808, 4230.44941857853]]}, {"length": 95.7505609034, "source": 2357086671, "destination": 2357086669, "path": [[-1131.6607235087872, 4350.749418577493], [-562.8607235053096, 4353.69941857644]]}, {"length": 47.7366656735, "source": 2357086671, "destination": 2358476583, "path": [[-1131.6607235087872, 4350.749418577493], [-1133.060723510937, 4565.399418577698]]}, {"length": 90.1579761192, "source": 134983512, "destination": 2086854560, "path": [[10422.339276495051, -1333.6005814217344], [10419.889276491289, -928.2005814235106]]}, {"length": 13.4644416869, "source": 134983512, "destination": 134983394, "path": [[10422.339276495051, -1333.6005814217344], [10342.339276490975, -1333.6005814217344]]}, {"length": 96.285151902, "source": 2357086674, "destination": 2354509548, "path": [[-1281.110723510892, 4348.999418578359], [-1573.0607235084904, 4345.499418576537], [-1853.0607235049956, 4346.649418579318]]}, {"length": 48.0479279593, "source": 2357086674, "destination": 2358476581, "path": [[-1281.110723510892, 4348.999418578359], [-1282.4607235089047, 4565.04941857716]]}, {"length": 47.0798605304, "source": 2357086674, "destination": 2354509550, "path": [[-1281.110723510892, 4348.999418578359], [-1280.9107235085548, 4318.899418578326], [-1279.760723505774, 4137.2994185771]]}, {"length": 25.1605762087, "source": 2357086674, "destination": 2357086671, "path": [[-1281.110723510892, 4348.999418578359], [-1131.6607235087872, 4350.749418577493]]}, {"length": 10.719719556, "source": 2282973653, "destination": 2282973617, "path": [[-9667.560723507051, 2185.1994185766443], [-9668.210723511094, 2233.3994185785855]]}, {"length": 50.3568526315, "source": 2282973653, "destination": 2282973643, "path": [[-9667.560723507051, 2185.1994185766443], [-9638.060723510478, 2185.849418577135], [-9565.710723506982, 2186.099418576504], [-9469.660723510742, 2188.4494185790973], [-9368.460723507611, 2189.2494185777878]]}, {"length": 337.841202456, "source": 2282973653, "destination": 2282972956, "path": [[-9667.560723507051, 2185.1994185766443], [-9751.960723505705, 2183.2494185787255], [-9810.610723505419, 2182.7494185764353], [-9845.610723509424, 2183.4994185780943], [-9877.510723505622, 2187.9494185768067], [-9900.460723507365, 2197.799418578228], [-9917.960723505814, 2211.799418578408], [-9927.210723510882, 2224.799418577561], [-9933.060723511744, 2242.449418577763], [-9935.810723504801, 2262.1994185776375], [-9936.810723509381, 2285.049418578211], [-9937.21072350695, 2348.3994185760084], [-9939.560723509545, 2426.249418576276], [-9947.110723508957, 2496.899418577669], [-9948.860723511643, 2548.299418577926], [-9943.310723507182, 2651.09941857844], [-9942.910723509613, 2749.599418578441], [-9944.310723511762, 2792.199418578889], [-9952.410723506944, 3042.5494185770676], [-9951.260723511268, 3063.9494185784597], [-9949.160723508045, 3080.4994185764654], [-9933.710723508682, 3098.649418578958], [-9907.960723509746, 3111.999418578648], [-9889.260723511485, 3113.7494185777823], [-9374.81072350721, 3114.1494185789043]]}, {"length": 58.8972189444, "source": 1962191318, "destination": 1942314035, "path": [[7187.639276494906, 3229.099418579295], [7291.03927648822, 3221.3994185781303], [7536.989276488271, 3224.9494185769836]]}, {"length": 10.4428975284, "source": 1962191318, "destination": 1279884604, "path": [[7187.639276494906, 3229.099418579295], [7153.889276494851, 3189.699418577163]]}, {"length": 2.56325666606, "source": 1962191318, "destination": 844180725, "path": [[7187.639276494906, 3229.099418579295], [7194.489276493243, 3239.3994185788697]]}, {"length": 34.7818859273, "source": 2089552344, "destination": 1393210014, "path": [[-5117.310723505852, -8573.500581423588], [-5117.51072350819, -8729.900581421645]]}, {"length": 19.6789037238, "source": 2089552344, "destination": 1393209982, "path": [[-5117.310723505852, -8573.500581423588], [-5234.260723504747, -8573.350581421835]]}, {"length": 39.4887851923, "source": 1962191321, "destination": 1962186576, "path": [[6470.98927649381, 2227.799418577092], [6550.3392764938435, 2311.2494185788537], [6614.039276492178, 2319.3494185775876], [6644.539276493333, 2307.699418576448]]}, {"length": 69.8745109991, "source": 1962191321, "destination": 1962186550, "path": [[6470.98927649381, 2227.799418577092], [6432.989276490275, 2187.899418576222], [6351.189276493586, 2080.299418576459], [6304.889276492531, 2005.6994185786436], [6284.139276495182, 1949.3994185779684]]}, {"length": 29.7370936903, "source": 1962191321, "destination": 1962191326, "path": [[6470.98927649381, 2227.799418577092], [6444.689276491999, 2241.4494185767353], [6435.289276488731, 2254.649418578225], [6432.589276492707, 2261.749418579484], [6433.939276490719, 2272.8994185783336], [6444.689276491999, 2288.1494185789106], [6490.539276491347, 2335.4994185780242]]}, {"length": 29.7370936903, "source": 1962191326, "destination": 1962191321, "path": [[6490.539276491347, 2335.4994185780242], [6444.689276491999, 2288.1494185789106], [6433.939276490719, 2272.8994185783336], [6432.589276492707, 2261.749418579484], [6435.289276488731, 2254.649418578225], [6444.689276491999, 2241.4494185767353], [6470.98927649381, 2227.799418577092]]}, {"length": 7.94230074403, "source": 1962191326, "destination": 1962191307, "path": [[6490.539276491347, 2335.4994185780242], [6518.43927649054, 2364.299418577076]]}, {"length": 13.3612978377, "source": 1962191326, "destination": 1962191339, "path": [[6490.539276491347, 2335.4994185780242], [6427.1392764894135, 2371.6494185777037]]}, {"length": 26.7278843921, "source": 1962191330, "destination": 1962191362, "path": [[6415.18927648832, 2358.1994185768453], [6411.139276494282, 2332.7994185784464], [6403.089276489027, 2313.5494185773096], [6391.039276493871, 2295.2494185766172], [6378.939276494577, 2285.0994185787954], [6361.539276490192, 2276.9994185765086], [6334.689276492611, 2262.749418576959]]}, {"length": 3.6050472524, "source": 1962191330, "destination": 1962191339, "path": [[6415.18927648832, 2358.1994185768453], [6427.1392764894135, 2371.6494185777037]]}, {"length": 88.9454601273, "source": 1962191339, "destination": 2271725637, "path": [[6427.1392764894135, 2371.6494185777037], [6438.789276494106, 2383.5994185787968], [6740.839276488941, 2693.4994185765504]]}, {"length": 13.3612978377, "source": 1962191339, "destination": 1962191326, "path": [[6427.1392764894135, 2371.6494185777037], [6490.539276491347, 2335.4994185780242]]}, {"length": 12.7574288729, "source": 1962191339, "destination": 1962186551, "path": [[6427.1392764894135, 2371.6494185777037], [6366.58927648881, 2406.149418579417]]}, {"length": 102.571045609, "source": 135064044, "destination": 2573122294, "path": [[-2643.6607235069687, -2384.8505814214604], [-3253.11072350587, -2386.7505814223478]]}, {"length": 90.57397476, "source": 135064044, "destination": 2585900362, "path": [[-2643.6607235069687, -2384.8505814214604], [-2105.61072351112, -2376.2005814234044]]}, {"length": 99.9287244937, "source": 135064044, "destination": 2585900382, "path": [[-2643.6607235069687, -2384.8505814214604], [-2639.6607235099623, -2026.6005814235655], [-2642.6607235094934, -1935.5505814218077]]}, {"length": 121.501962161, "source": 135064044, "destination": 1855078878, "path": [[-2643.6607235069687, -2384.8505814214604], [-2653.0107235060996, -2931.1505814213488]]}, {"length": 15.9524538517, "source": 1962191347, "destination": 1942314035, "path": [[7528.089276490846, 3154.749418577296], [7534.339276489277, 3161.4494185774333], [7536.989276488271, 3224.9494185769836]]}, {"length": 70.8317045075, "source": 1962191347, "destination": 4224850405, "path": [[7528.089276490846, 3154.749418577296], [7309.889276491787, 3153.449418576315], [7107.789276489029, 3142.799418576203]]}, {"length": 3.24173572077, "source": 1962191347, "destination": 1279884639, "path": [[7528.089276490846, 3154.749418577296], [7526.889276491033, 3140.199418577794]]}, {"length": 23.6236669926, "source": 1962191349, "destination": 1429422192, "path": [[7385.039276492478, 2212.0994185783616], [7373.239276489585, 2106.2494185777323]]}, {"length": 24.2961637712, "source": 1962191349, "destination": 1962191352, "path": [[7385.039276492478, 2212.0994185783616], [7392.489276490722, 2279.09941857618], [7401.939276491021, 2320.4994185768155]]}, {"length": 35.6015782506, "source": 1962191349, "destination": 1962191352, "path": [[7385.039276492478, 2212.0994185783616], [7406.239276491533, 2215.0494185773086], [7420.9892764898195, 2220.1494185765114], [7433.089276489113, 2235.3494185765044], [7433.089276489113, 2246.549418579491], [7429.039276495076, 2258.6994185793683], [7441.1392764943685, 2274.949418577421], [7451.839276491512, 2289.149418576386], [7450.489276493499, 2303.399418579488], [7427.689276489957, 2313.5494185773096], [7401.939276491021, 2320.4994185768155]]}, {"length": 117.052132756, "source": 2291254720, "destination": 2280505657, "path": [[-9509.210723507522, 4212.549418578959], [-9669.910723509645, 4211.3994185761785], [-9939.810723508912, 4211.599418578516], [-10101.310723506174, 4211.349418579147], [-10204.560723508393, 4211.049418579194]]}, {"length": 0.0, "source": 2291254720, "destination": 2291254719, "path": [[-9509.210723507522, 4212.549418578959], [-9508.810723509952, 4212.549418578959]]}, {"length": 5.09300058575, "source": 2291254720, "destination": 2291254735, "path": [[-9509.210723507522, 4212.549418578959], [-9509.660723509227, 4189.649418577801]]}, {"length": 6.09290248318, "source": 4224950697, "destination": 4224950712, "path": [[6509.089276491409, 3320.3994185768693], [6509.039276494377, 3292.9994185764144]]}, {"length": 8.46683555056, "source": 4224950697, "destination": 4224950793, "path": [[6509.089276491409, 3320.3994185768693], [6559.389276489469, 3320.499418578038]]}, {"length": 14.0027997907, "source": 4224950697, "destination": 4224950716, "path": [[6509.089276491409, 3320.3994185768693], [6490.989276493054, 3320.3494185762847], [6474.189276488573, 3320.299418579253], [6425.8892764925695, 3320.199418578085]]}, {"length": 100.138386972, "source": 1962191352, "destination": 1942314064, "path": [[7401.939276491021, 2320.4994185768155], [7503.289276492353, 2764.199418578528]]}, {"length": 24.2961637712, "source": 1962191352, "destination": 1962191349, "path": [[7401.939276491021, 2320.4994185768155], [7392.489276490722, 2279.09941857618], [7385.039276492478, 2212.0994185783616]]}, {"length": 35.6015782506, "source": 1962191352, "destination": 1962191349, "path": [[7401.939276491021, 2320.4994185768155], [7427.689276489957, 2313.5494185773096], [7450.489276493499, 2303.399418579488], [7451.839276491512, 2289.149418576386], [7441.1392764943685, 2274.949418577421], [7429.039276495076, 2258.6994185793683], [7433.089276489113, 2246.549418579491], [7433.089276489113, 2235.3494185765044], [7420.9892764898195, 2220.1494185765114], [7406.239276491533, 2215.0494185773086], [7385.039276492478, 2212.0994185783616]]}, {"length": 35.9733575435, "source": 1962191362, "destination": 1962186585, "path": [[6334.689276492611, 2262.749418576959], [6325.33927649348, 2251.5994185781096], [6309.239276490075, 2234.349418579029], [6287.7892764916505, 2221.149418577539], [6255.589276491946, 2206.9494185785743], [6224.739276490254, 2198.799418579256], [6193.889276488562, 2193.7494185770847], [6154.68927649232, 2193.9994185764535]]}, {"length": 29.1080863752, "source": 1962191362, "destination": 1962191330, "path": [[6334.689276492611, 2262.749418576959], [6330.6892764885, 2280.049418576624], [6327.989276492473, 2293.249418578114], [6327.989276492473, 2307.449418577079], [6337.389276488637, 2318.599418579481], [6353.489276492041, 2331.7994185774182], [6368.239276490329, 2341.9494185787926], [6385.689276491747, 2351.0994185791387], [6415.18927648832, 2358.1994185768453]]}, {"length": 262.939318102, "source": 2424998403, "destination": 3146557051, "path": [[-4207.310723508328, -2386.3005814206417], [-4206.210723509685, -2362.9505814213303], [-4170.710723506943, -2361.4505814215645], [-4155.260723507581, -2358.4005814214493], [-4147.910723510506, -2348.750581422365], [-4147.910723510506, -2325.9005814217917], [-4151.260723510575, -2189.4005814218076], [-4173.110723506568, -2167.4505814210934], [-4169.36072350893, -2090.4505814236527], [-4146.5607235053885, -2056.450581420677], [-4149.260723508519, -1926.5505814232142], [-4170.010723505868, -1890.000581422413], [-4200.160723506486, -1871.4005814217671], [-4203.410723505385, -1311.800581422773], [-4202.560723506111, -1263.7505814225847]]}, {"length": 17.368773941, "source": 2424998403, "destination": 2424998421, "path": [[-4207.310723508328, -2386.3005814206417], [-4104.110723510246, -2386.100581421857]]}, {"length": 4.60412377026, "source": 2424998403, "destination": 2424998429, "path": [[-4207.310723508328, -2386.3005814206417], [-4207.910723508235, -2407.0005814209594]]}, {"length": 23.5956091243, "source": 2424998410, "destination": 135103219, "path": [[-4104.010723509077, -2407.150581422712], [-4104.060723506109, -2513.25058142271]]}, {"length": 4.68177045496, "source": 2424998410, "destination": 2424998421, "path": [[-4104.010723509077, -2407.150581422712], [-4104.110723510246, -2386.100581421857]]}, {"length": 17.4866839609, "source": 2424998410, "destination": 2424998429, "path": [[-4104.010723509077, -2407.150581422712], [-4207.910723508235, -2407.0005814209594]]}, {"length": 10.1078374682, "source": 2424998414, "destination": 2424998403, "path": [[-4267.360723510194, -2385.500581421951], [-4207.310723508328, -2386.3005814206417]]}, {"length": 90.971720829, "source": 1429422509, "destination": 1429422346, "path": [[5642.48927648947, -1245.6505814206764], [5653.939276491827, -1231.400581421127], [5683.039276490831, -1189.650581423507], [5696.0892764905675, -1147.85058142175], [5699.089276490099, -1104.55058142378], [5686.039276490363, -1053.6505814222608], [5662.93927649042, -1005.0505814227506], [5657.939276488833, -982.2505814227611], [5659.939276490888, -964.0005814226527], [5687.039276494943, -911.6005814213679], [5690.039276494474, -888.8005814213784], [5680.0392764912995, -869.8005814231635], [5663.939276495001, -862.2505814237513]]}, {"length": 13.3043976515, "source": 1429422509, "destination": 1429422573, "path": [[5642.48927648947, -1245.6505814206764], [5653.7392764894885, -1251.7505814209073], [5680.239276493638, -1268.750581420619], [5692.839276491668, -1289.7505814208898]]}, {"length": 61.6760891303, "source": 1429422509, "destination": 1429422541, "path": [[5642.48927648947, -1245.6505814206764], [5626.539276491371, -1240.7505814238107], [5604.839276493578, -1243.6505814221732], [5584.189276490292, -1251.7005814238757], [5570.839276494155, -1263.4505814226316], [5558.139276494956, -1280.9005814240493], [5538.689276491482, -1314.4005814211823], [5520.989276490695, -1328.8005814224846], [5505.939276488903, -1335.950581420775], [5487.239276490641, -1339.1005814220591], [5468.4892764882425, -1340.8005814206092], [5440.939276489587, -1333.800581420519], [5419.589276492332, -1322.2505814205476], [5403.989276494769, -1305.8005814237106], [5399.239276492552, -1291.1505814230395], [5399.439276494888, -1272.2005814218562]]}, {"length": 53.4781751377, "source": 4719569426, "destination": 135109629, "path": [[7286.339276490139, 4975.049418579402], [7065.089276494518, 4981.09941857905], [7045.4892764928445, 4972.849418578562], [6999.8392764887285, 4928.899418576549]]}, {"length": 124.272782446, "source": 2424998421, "destination": 135103216, "path": [[-4104.110723510246, -2386.100581421857], [-4114.510723510989, -1917.5005814240365], [-4118.860723508533, -1873.1505814209015], [-4127.910723511263, -1828.0005814226286]]}, {"length": 4.68177045496, "source": 2424998421, "destination": 2424998410, "path": [[-4104.110723510246, -2386.100581421857], [-4104.010723509077, -2407.150581422712]]}, {"length": 164.818409059, "source": 2139769367, "destination": 2568624487, "path": [[268.9892764919932, -4147.850581421863], [274.2392764929491, -4116.300581422649], [273.8892764924117, -4052.300581420809], [281.2892764936237, -3407.0005814221813]]}, {"length": 9.19845465511, "source": 2139769367, "destination": 134975773, "path": [[268.9892764919932, -4147.850581421863], [214.33927648928375, -4148.600581423523]]}, {"length": 74.4534719802, "source": 2139769367, "destination": 2587024973, "path": [[268.9892764919932, -4147.850581421863], [711.3892764891716, -4145.600581423992]]}, {"length": 95.599710781, "source": 2139769367, "destination": 1933539479, "path": [[268.9892764919932, -4147.850581421863], [263.58927649283714, -4180.100581422153], [263.0892764940995, -4264.600581421973], [262.7892764905937, -4407.300581423357], [261.83927649015004, -4527.650581422904], [260.3392764939372, -4577.450581422227]]}, {"length": 97.1273725648, "source": 1959915201, "destination": 134982563, "path": [[-7291.910723509432, -5042.9505814229005], [-7272.210723506589, -5035.850581421641], [-7261.910723507015, -5030.450581422485], [-7254.510723505802, -5023.350581421227], [-7250.110723511227, -5017.100581422796], [-7247.060723507559, -5008.950581423477], [-7400.010723507932, -4732.350581420519], [-7396.160723509127, -4646.100581421564]]}, {"length": 137.159578874, "source": 1959915201, "destination": 1959915204, "path": [[-7291.910723509432, -5042.9505814229005], [-7156.910723509213, -5249.75058142374], [-7091.210723508822, -5348.850581423648], [-7014.160723507246, -5447.700581420633], [-6927.560723511306, -5539.050581422344], [-6892.410723509101, -5579.05058142083]]}, {"length": 197.114769966, "source": 1959915201, "destination": 1428266998, "path": [[-7291.910723509432, -5042.9505814229005], [-7355.410723505429, -4945.700581423296], [-7386.610723507658, -4913.25058142067], [-7537.760723508313, -4769.950581422932], [-7566.36072350858, -4739.150581421825], [-7580.710723509299, -4711.3505814238015], [-7609.710723507134, -4636.800581423017], [-7624.41072350839, -4597.95058142376], [-7602.310723505923, -4381.250581420914], [-7603.810723509241, -4301.000581421022], [-7616.260723509072, -4230.450581420797]]}, {"length": 99.4975827246, "source": 2282973723, "destination": 2282973727, "path": [[-8646.06072350682, 2089.0494185792363], [-8814.160723510156, 2087.999418577624], [-8927.360723511412, 2087.599418576502], [-9032.660723505614, 2086.9994185765963], [-9237.160723507997, 2086.299418579074]]}, {"length": 50.0827855067, "source": 2282973723, "destination": 3758384268, "path": [[-8646.06072350682, 2089.0494185792363], [-8646.410723507359, 2223.549418577164], [-8646.860723509064, 2314.2494185783844]]}, {"length": 10.9084901287, "source": 2282973723, "destination": 2282973743, "path": [[-8646.06072350682, 2089.0494185792363], [-8645.910723508621, 2039.9994185780201]]}, {"length": 4.60412377026, "source": 2424998429, "destination": 2424998403, "path": [[-4207.910723508235, -2407.0005814209594], [-4207.310723508328, -2386.3005814206417]]}, {"length": 23.3742307707, "source": 2424998429, "destination": 4719463893, "path": [[-4207.910723508235, -2407.0005814209594], [-4200.210723510622, -2492.8505814223454], [-4199.710723504779, -2511.900581421145]]}, {"length": 9.96369860759, "source": 2424998429, "destination": 2424998399, "path": [[-4207.910723508235, -2407.0005814209594], [-4267.110723510825, -2406.6005814233904]]}, {"length": 23.4011507275, "source": 1424938757, "destination": 1424938754, "path": [[2622.4392764930826, -7516.500581420615], [2698.8892764947536, -7428.600581423694]]}, {"length": 232.564465777, "source": 1424938757, "destination": 1424938774, "path": [[2622.4392764930826, -7516.500581420615], [2602.4392764938398, -7611.600581423517], [2560.1892764939294, -7965.850581420853], [2556.839276493861, -8385.300581423395], [2546.3892764889806, -8443.150581420867], [2522.239276494531, -8487.600581421617], [2460.539276491147, -8536.850581421619]]}, {"length": 3.79504315511, "source": 2282973728, "destination": 2282973727, "path": [[-9259.710723505066, 2086.1994185779054], [-9237.160723507997, 2086.299418579074]]}, {"length": 47.6481302439, "source": 2294600112, "destination": 2294600143, "path": [[-4262.510723506807, 6442.14941857868], [-4260.660723510056, 6227.899418576044]]}, {"length": 72.9441506083, "source": 2294600112, "destination": 2295832861, "path": [[-4262.510723506807, 6442.14941857868], [-4695.810723511329, 6440.899418578283]]}, {"length": 13.4517700239, "source": 2294600112, "destination": 2294600111, "path": [[-4262.510723506807, 6442.14941857868], [-4213.110723505053, 6442.29941857688], [-4182.610723511005, 6442.399418578048]]}, {"length": 25.329859069, "source": 1428269604, "destination": 2267910080, "path": [[-11047.610723508682, -8080.500581421291], [-11143.760723506091, -8045.200581420886], [-11185.310723504927, -8035.050581423065]]}, {"length": 24.6195368154, "source": 1428269604, "destination": 2267910091, "path": [[-11047.610723508682, -8080.500581421291], [-11065.960723506407, -8016.250581423634], [-11085.410723509882, -7994.95058142341], [-11090.110723507962, -7976.2005814210115]]}, {"length": 134.079838864, "source": 1428269604, "destination": 2267911758, "path": [[-11047.610723508682, -8080.500581421291], [-11004.560723506529, -8086.6505814221055], [-10963.660723511737, -8087.050581423227], [-10915.110723509259, -8080.700581423627], [-10845.510723505924, -8060.4005814208795], [-10330.160723505343, -7845.800581421258]]}, {"length": 5.40165646651, "source": 2140984934, "destination": 2140984932, "path": [[9586.739276493006, 5835.349418578772], [9580.639276492775, 5842.099418579493], [9574.089276490839, 5846.049418579469], [9562.239276490913, 5849.949418578859]]}, {"length": 5.19202216523, "source": 2140984934, "destination": 2140984941, "path": [[9586.739276493006, 5835.349418578772], [9615.389276490305, 5843.999418576828]]}, {"length": 4.65957955817, "source": 2140984934, "destination": 2140984933, "path": [[9586.739276493006, 5835.349418578772], [9561.589276493976, 5826.5994185759955]]}, {"length": 99.5136185426, "source": 2282973743, "destination": 2282973744, "path": [[-8645.910723508621, 2039.9994185780201], [-9237.110723510967, 2037.4494185766423]]}, {"length": 13.6324107096, "source": 2282973743, "destination": 2282973747, "path": [[-8645.910723508621, 2039.9994185780201], [-8645.76072351042, 1978.6994185793105]]}, {"length": 15.4939744132, "source": 2282973743, "destination": 134982222, "path": [[-8645.910723508621, 2039.9994185780201], [-8553.860723509388, 2040.0994185791888]]}, {"length": 10.9084901287, "source": 2282973743, "destination": 2282973723, "path": [[-8645.910723508621, 2039.9994185780201], [-8646.06072350682, 2089.0494185792363]]}, {"length": 10.86221341, "source": 2282973744, "destination": 2282973727, "path": [[-9237.110723510967, 2037.4494185766423], [-9237.110723510967, 2077.3994185780966], [-9237.160723507997, 2086.299418579074]]}, {"length": 99.5136185426, "source": 2282973744, "destination": 2282973743, "path": [[-9237.110723510967, 2037.4494185766423], [-8645.910723508621, 2039.9994185780201]]}, {"length": 13.4547322749, "source": 2282973744, "destination": 2282973751, "path": [[-9237.110723510967, 2037.4494185766423], [-9237.110723510967, 1976.9494185766234]]}, {"length": 9.15671805069, "source": 2282973744, "destination": 134959135, "path": [[-9237.110723510967, 2037.4494185766423], [-9291.510723507201, 2037.2494185778578]]}, {"length": 3.22501126326, "source": 2282973747, "destination": 2282973753, "path": [[-8645.76072351042, 1978.6994185793105], [-8645.76072351042, 1964.1994185768397]]}, {"length": 99.5380033265, "source": 2282973747, "destination": 2282973751, "path": [[-8645.76072351042, 1978.6994185793105], [-8724.31072350821, 1978.449418576389], [-9014.46072350609, 1977.3994185783295], [-9113.610723510135, 1976.9494185766234], [-9237.110723510967, 1976.9494185766234]]}, {"length": 13.6324107096, "source": 2282973747, "destination": 2282973743, "path": [[-8645.76072351042, 1978.6994185793105], [-8645.910723508621, 2039.9994185780201]]}, {"length": 13.4547322749, "source": 2282973751, "destination": 2282973744, "path": [[-9237.110723510967, 1976.9494185766234], [-9237.110723510967, 2037.4494185766423]]}, {"length": 3.8633005646, "source": 2282973751, "destination": 2282973752, "path": [[-9237.110723510967, 1976.9494185766234], [-9260.060723505603, 1976.8994185760391]]}, {"length": 99.5380033265, "source": 2282973751, "destination": 2282973747, "path": [[-9237.110723510967, 1976.9494185766234], [-9113.610723510135, 1976.9494185766234], [-9014.46072350609, 1977.3994185783295], [-8724.31072350821, 1978.449418576389], [-8645.76072351042, 1978.6994185793105]]}, {"length": 43.4899309886, "source": 2282973751, "destination": 2282973759, "path": [[-9237.110723510967, 1976.9494185766234], [-9237.110723510967, 1931.1994185784442], [-9235.360723508278, 1781.3994185793547]]}, {"length": 3.8633005646, "source": 2282973752, "destination": 2282973751, "path": [[-9260.060723505603, 1976.8994185760391], [-9237.110723510967, 1976.9494185766234]]}, {"length": 3.22501126326, "source": 2282973753, "destination": 2282973747, "path": [[-8645.76072351042, 1964.1994185768397], [-8645.76072351042, 1978.6994185793105]]}, {"length": 43.4899309886, "source": 2282973759, "destination": 2282973751, "path": [[-9235.360723508278, 1781.3994185793547], [-9237.110723510967, 1931.1994185784442], [-9237.110723510967, 1976.9494185766234]]}, {"length": 10.4523867603, "source": 134982215, "destination": 134982219, "path": [[-8544.01072351152, 355.94941857652884], [-8543.710723508013, 402.9494185786575]]}, {"length": 123.912743014, "source": 134982215, "destination": 134959125, "path": [[-8544.01072351152, 355.94941857652884], [-9280.210723510152, 354.5994185785162]]}, {"length": 121.882010655, "source": 134982219, "destination": 134968373, "path": [[-8543.710723508013, 402.9494185786575], [-8546.810723508714, 950.9994185776804]]}, {"length": 864.352093739, "source": 134982219, "destination": 135027982, "path": [[-8543.710723508013, 402.9494185786575], [-8347.660723508454, 403.24941857861063], [-7715.860723507717, 404.2994185766702], [-7238.110723505997, 406.0494185793573], [-3849.0607235104335, 417.6494185763602], [-3408.410723508837, 420.94941857939716]]}, {"length": 10.4523867603, "source": 134982219, "destination": 134982215, "path": [[-8543.710723508013, 402.9494185786575], [-8544.01072351152, 355.94941857652884]]}, {"length": 250.563722403, "source": 134982220, "destination": 2284152338, "path": [[-8547.46072350565, 1490.349418578063], [-7570.160723510355, 1494.2494185774535], [-7303.860723510525, 1495.7994185778034], [-7193.110723505924, 1495.899418578972], [-7058.8607235109175, 1495.4994185778503]]}, {"length": 124.507693841, "source": 134982220, "destination": 134959133, "path": [[-8547.46072350565, 1490.349418578063], [-9059.6607235085, 1491.4494185767069], [-9287.11072350552, 1487.499418576732]]}, {"length": 122.263752711, "source": 134982220, "destination": 134982222, "path": [[-8547.46072350565, 1490.349418578063], [-8553.860723509388, 2040.0994185791888]]}, {"length": 119.946696024, "source": 134982220, "destination": 134968373, "path": [[-8547.46072350565, 1490.349418578063], [-8546.110723507638, 1215.1994185778392], [-8546.810723508714, 950.9994185776804]]}, {"length": 61.2028204185, "source": 134982222, "destination": 2282973551, "path": [[-8553.860723509388, 2040.0994185791888], [-8555.110723506232, 2237.299418577976], [-8556.060723506675, 2315.299418576444]]}, {"length": 122.263752711, "source": 134982222, "destination": 134982220, "path": [[-8553.860723509388, 2040.0994185791888], [-8547.46072350565, 1490.349418578063]]}, {"length": 15.4939744132, "source": 134982222, "destination": 2282973743, "path": [[-8553.860723509388, 2040.0994185791888], [-8645.910723508621, 2039.9994185780201]]}, {"length": 13.7888608745, "source": 134982224, "destination": 2282973355, "path": [[-8559.110723510345, 2590.049418579099], [-8558.410723509269, 2528.0494185793145]]}, {"length": 15.1516473726, "source": 134982224, "destination": 2282973300, "path": [[-8559.110723510345, 2590.049418579099], [-8649.11072351049, 2588.9494185769026]]}, {"length": 8.89611359697, "source": 134982224, "destination": 2282973277, "path": [[-8559.110723510345, 2590.049418579099], [-8559.060723506207, 2630.0494185775847]]}, {"length": 11.0692434025, "source": 134982235, "destination": 2289073168, "path": [[-8585.760723505588, 5362.099418576349], [-8520.010723508165, 5362.549418578055]]}, {"length": 10.7146737946, "source": 134982235, "destination": 2289073169, "path": [[-8585.760723505588, 5362.099418576349], [-8649.41072350689, 5362.149418576933]]}, {"length": 13.4440103031, "source": 134982235, "destination": 2289073162, "path": [[-8585.760723505588, 5362.099418576349], [-8585.410723505049, 5422.549418579337]]}, {"length": 13.3889254342, "source": 134982235, "destination": 2289073176, "path": [[-8585.760723505588, 5362.099418576349], [-8585.060723511617, 5301.899418576284]]}, {"length": 14.264344846, "source": 2586986565, "destination": 2586986523, "path": [[-677.6607235110532, -1309.0005814220262], [-629.1607235056063, -1256.400581421957]]}, {"length": 26.3208239856, "source": 2586986565, "destination": 2586986517, "path": [[-677.6607235110532, -1309.0005814220262], [-689.6607235091778, -1322.0505814217631], [-715.210723505777, -1349.5505814233866], [-725.9607235070575, -1363.800581422936], [-739.4107235114689, -1382.1005814236287], [-750.160723505644, -1397.3505814206533], [-756.9107235099182, -1410.6005814227274]]}, {"length": 61.8858151953, "source": 2586986565, "destination": 2586986589, "path": [[-677.6607235110532, -1309.0005814220262], [-1045.3607235092477, -1309.3005814219794]]}, {"length": 20.3905750118, "source": 2586986565, "destination": 2586986567, "path": [[-677.6607235110532, -1309.0005814220262], [-556.5107235057098, -1309.5505814213482]]}, {"length": 13.2434077068, "source": 134982240, "destination": 2290110626, "path": [[-8590.810723511311, 6486.8494185787995], [-8590.610723508973, 6427.299418579224]]}, {"length": 11.0435658697, "source": 134982240, "destination": 2291095710, "path": [[-8590.810723511311, 6486.8494185787995], [-8656.410723510533, 6486.74941857763]]}, {"length": 10.9006382794, "source": 134982240, "destination": 2290110623, "path": [[-8590.810723511311, 6486.8494185787995], [-8526.060723511364, 6487.299418576953]]}, {"length": 23.6066835589, "source": 2423712353, "destination": 2217880492, "path": [[-5705.860723509204, -2174.300581422983], [-5834.160723509285, -2217.2005814233844]]}, {"length": 6.4556093812, "source": 2585900619, "destination": 2585900629, "path": [[-2094.960723511008, -1445.9005814231318], [-2056.6107235069353, -1445.9005814231318]]}, {"length": 8.61927984349, "source": 135064196, "destination": 2289072815, "path": [[-7929.710723509232, 6491.2994185775115], [-7980.910723510704, 6491.249418576927]]}, {"length": 31.6996217165, "source": 135064200, "destination": 2286590520, "path": [[-7775.610723506077, 6490.9494185769745], [-7587.310723508267, 6491.649418578049]]}, {"length": 61.1574318704, "source": 135064200, "destination": 1433125503, "path": [[-7775.610723506077, 6490.9494185769745], [-7776.41072350832, 6215.949418578503]]}, {"length": 12.3554735576, "source": 3661057639, "destination": 135016136, "path": [[-2614.4107235097636, 4285.24941857944], [-2687.8107235077664, 4284.999418576518]]}, {"length": 111.690557431, "source": 3661057639, "destination": 135019161, "path": [[-2614.4107235097636, 4285.24941857944], [-1950.9107235080592, 4287.699418576096]]}, {"length": 12.5541116388, "source": 3661057639, "destination": 2356771788, "path": [[-2614.4107235097636, 4285.24941857944], [-2613.8107235098573, 4341.699418578315]]}, {"length": 13.3325990462, "source": 3661057639, "destination": 2356771790, "path": [[-2614.4107235097636, 4285.24941857944], [-2615.01072350967, 4225.299418578743]]}, {"length": 13.9154101133, "source": 1393871501, "destination": 2140986962, "path": [[366.0392764928133, -8130.350581421198], [391.83927648878125, -8070.900581422791]]}, {"length": 16.1409778877, "source": 1393871501, "destination": 2573122508, "path": [[366.0392764928133, -8130.350581421198], [456.18927649115903, -8155.150581423242]]}, {"length": 58.9235527027, "source": 1393871502, "destination": 135099962, "path": [[-151.0107235063174, -7671.100581422507], [-99.26072350907589, -7663.0505814208045], [-49.8107235102907, -7659.450581421368], [197.83927648830968, -7658.600581422093]]}, {"length": 71.7140441148, "source": 1393871502, "destination": 2140986966, "path": [[-151.0107235063174, -7671.100581422507], [-192.26072350875256, -7682.150581423741], [-227.86072350555742, -7698.500581422963], [-250.3107235085622, -7712.800581423096], [-271.4607235105859, -7730.800581423836], [-298.0107235117657, -7760.100581421625], [-308.86072350710947, -7780.300581423206], [-318.8107235061466, -7808.5005814223505], [-323.3607235060276, -7834.600581421824], [-323.1107235066588, -7933.30058142061]]}, {"length": 111.597357546, "source": 1393871502, "destination": 135027023, "path": [[-151.0107235063174, -7671.100581422507], [-140.86072350494305, -7169.350581420986]]}, {"length": 20.9891054731, "source": 1393871503, "destination": 1424938773, "path": [[1068.1892764949907, -8471.650581423517], [1172.8892764892862, -8522.950581422607]]}, {"length": 7.64687078993, "source": 1393871503, "destination": 2080560806, "path": [[1068.1892764949907, -8471.650581423517], [1061.8892764924226, -8505.700581423525]]}, {"length": 268.629850193, "source": 1393871503, "destination": 2573122535, "path": [[1068.1892764949907, -8471.650581423517], [1076.3392764943092, -8412.600581422681], [1084.789276490028, -8308.900581422307], [1084.789276490028, -8199.30058142404], [1065.5892764930286, -8116.300581423985], [1060.239276490904, -7769.250581421971], [1060.239276490904, -7690.100581420722], [1100.439276491727, -7615.000581420617], [1249.2892764939256, -7413.450581420733], [1256.4392764886634, -7403.750581421064], [1363.839276493195, -7342.850581423477]]}, {"length": 43.9054155184, "source": 1393871512, "destination": 1393871529, "path": [[-583.4607235115641, -7954.150581422681], [-449.81072350935847, -7958.350581422024], [-323.0607235096272, -7966.000581422605]]}, {"length": 50.8068351691, "source": 1393871512, "destination": 2140986966, "path": [[-583.4607235115641, -7954.150581422681], [-585.860723511189, -7924.900581421924], [-373.9607235075937, -7928.450581420776], [-323.1107235066588, -7933.30058142061]]}, {"length": 178.164916145, "source": 134962288, "destination": 135019608, "path": [[9078.83927649067, -11410.600581420738], [9019.339276491679, -11164.100581421366], [8998.839276493698, -11120.600581421058], [8970.339276494598, -11079.100581422806], [8933.839276494382, -11042.100581423852], [8890.83927648926, -11009.100581421904], [8841.339276493443, -10981.100581421544], [8787.339276494777, -10959.600581422535], [8447.839276492175, -10869.60058142239]]}, {"length": 95.3239863876, "source": 134962288, "destination": 134930849, "path": [[9078.83927649067, -11410.600581420738], [9441.339276492045, -11406.10058142144], [9645.339276488585, -11405.600581422703]]}, {"length": 109.911780925, "source": 134962288, "destination": 1394286587, "path": [[9078.83927649067, -11410.600581420738], [8425.589276491508, -11411.200581420644]]}, {"length": 10.8396975358, "source": 1428269734, "destination": 1428269738, "path": [[-9322.460723510063, -8191.400581420538], [-9386.860723509471, -8192.550581423318]]}, {"length": 332.747524919, "source": 1428269734, "destination": 1959922651, "path": [[-9322.460723510063, -8191.400581420538], [-9322.460723510063, -8247.15058142189], [-9325.460723509594, -8309.200581422261], [-9326.61072350527, -8443.20058142145], [-9321.26072351025, -8502.550581422242], [-9329.010723504893, -8545.250581423858], [-9335.560723506831, -8561.450581421326], [-9339.910723511479, -8581.45058142057], [-9338.6107235105, -8847.300581422245], [-9333.910723505312, -8869.100581421208], [-9327.210723505175, -9049.700581421404], [-9315.810723506956, -9138.500581421738], [-9315.710723505788, -9262.65058142306], [-9314.460723508944, -9463.200581421916], [-9311.710723508782, -9685.250581423332]]}, {"length": 398.589137234, "source": 1428269734, "destination": 1428268292, "path": [[-9322.460723510063, -8191.400581420538], [-9324.26072350978, -7632.950581420772], [-9308.210723510512, -7575.850581421406], [-9282.660723506808, -7524.600581422902], [-9241.060723510942, -7470.650581421268], [-9181.610723508982, -7422.100581422342], [-9062.7607235092, -7355.10058142097], [-8953.460723510887, -7293.950581424014], [-8851.210723506141, -7234.600581423223], [-8797.76072351035, -7195.9005814221655], [-8115.560723510384, -6846.100581423542]]}, {"length": 68.9043083367, "source": 1428269734, "destination": 1428269973, "path": [[-9322.460723510063, -8191.400581420538], [-9276.960723511253, -8192.950581420888], [-9263.610723508009, -8198.000581423059], [-9205.860723511705, -8243.200581421917], [-9015.310723505365, -8383.550581420706]]}, {"length": 47.1250587791, "source": 2289073265, "destination": 1433125530, "path": [[-8518.710723507184, 5085.599418578113], [-8518.710723507184, 5074.699418578632], [-8518.060723510245, 4972.949418576178], [-8517.310723505034, 4873.69941857807]]}, {"length": 48.1143963285, "source": 2289073265, "destination": 2289073174, "path": [[-8518.710723507184, 5085.599418578113], [-8518.710723507184, 5187.79941857872], [-8519.610723510596, 5301.949418576868]]}, {"length": 10.8243046625, "source": 2289073265, "destination": 1433125518, "path": [[-8518.710723507184, 5085.599418578113], [-8583.010723505424, 5085.7494185763135]]}, {"length": 94.1788196082, "source": 2289073265, "destination": 1433125519, "path": [[-8518.710723507184, 5085.599418578113], [-7959.260723509942, 5088.6494185782285]]}, {"length": 12.1880235927, "source": 1393871529, "destination": 2080560771, "path": [[-323.0607235096272, -7966.000581422605], [-321.91072350684635, -8020.800581423515]]}, {"length": 121.858392029, "source": 1393871529, "destination": 1393871501, "path": [[-323.0607235096272, -7966.000581422605], [-230.11072350698214, -7977.300581423207], [-127.9607235105118, -7996.250581420838], [3.839276494943533, -8030.200581423231], [179.68927649292255, -8078.850581423325], [204.08927649384623, -8084.900581422971], [366.0392764928133, -8130.350581421198]]}, {"length": 7.27232675246, "source": 1393871529, "destination": 2140986966, "path": [[-323.0607235096272, -7966.000581422605], [-323.1107235066588, -7933.30058142061]]}, {"length": 86.7218933601, "source": 1428269738, "destination": 2080739282, "path": [[-9386.860723509471, -8192.550581423318], [-9389.110723510896, -7802.600581420904]]}, {"length": 10.8396975358, "source": 1428269738, "destination": 1428269734, "path": [[-9386.860723509471, -8192.550581423318], [-9322.460723510063, -8191.400581420538]]}, {"length": 16.6681315108, "source": 1428269738, "destination": 2267911766, "path": [[-9386.860723509471, -8192.550581423318], [-9387.010723507672, -8267.500581421671]]}, {"length": 50.9292095171, "source": 135072431, "destination": 135031647, "path": [[-5962.310723511166, 2050.7994185763323], [-5659.760723510488, 2053.3994185782944]]}, {"length": 8.21726354004, "source": 135072436, "destination": 135034096, "path": [[-4107.760723506715, 2060.299418577216], [-4156.560723508563, 2059.349418576772]]}, {"length": 87.0432828065, "source": 135072436, "destination": 1808366884, "path": [[-4107.760723506715, 2060.299418577216], [-4055.5607235077673, 2055.149418577429], [-4017.5107235072005, 2050.899418577501], [-3984.1107235076834, 2044.5994185784855], [-3921.9107235055617, 2032.6494185773925], [-3855.1107235065274, 2024.199418578121], [-3791.9607235110675, 2019.2994185777025], [-3739.060723511045, 2017.1994185780306], [-3595.81072351034, 2016.6494185787087]]}, {"length": 22.1297069613, "source": 135072436, "destination": 1808366831, "path": [[-4107.760723506715, 2060.299418577216], [-4106.560723506902, 2135.0494185767843], [-4106.610723511039, 2159.7994185782454]]}, {"length": 62.6814021089, "source": 2069036397, "destination": 135021875, "path": [[-1204.8107235074212, 4020.9494185781123], [-1203.0107235077026, 3739.0994185777517]]}, {"length": 125.309520016, "source": 2069036397, "destination": 2069036870, "path": [[-1204.8107235074212, 4020.9494185781123], [-1949.210723509509, 4016.9494185775534]]}, {"length": 59.9237380522, "source": 2069036397, "destination": 135021878, "path": [[-1204.8107235074212, 4020.9494185781123], [-1206.5107235059713, 4290.399418579227]]}, {"length": 65.733583844, "source": 2069036397, "destination": 2327765655, "path": [[-1204.8107235074212, 4020.9494185781123], [-814.3107235056846, 4020.999418578697]]}, {"length": 59.4884544226, "source": 2331404988, "destination": 2960622608, "path": [[-5079.860723505191, -1264.500581420691], [-5009.960723505457, -1264.7505814236126], [-4726.410723506547, -1265.650581423472]]}, {"length": 85.0498514149, "source": 2331404988, "destination": 2423703504, "path": [[-5079.860723505191, -1264.500581420691], [-5153.4107235085, -1265.1005814205973], [-5585.160723505567, -1268.750581420619]]}, {"length": 117.644752464, "source": 2331404988, "destination": 2331404994, "path": [[-5079.860723505191, -1264.500581420691], [-5080.010723510497, -1203.100581420813], [-5081.260723507341, -735.5005814240201]]}, {"length": 462.393913304, "source": 2331404988, "destination": 2423695614, "path": [[-5079.860723505191, -1264.500581420691], [-5079.260723505286, -1312.6005814214636], [-5084.6107235074105, -1353.2005814234083], [-5078.210723510779, -1400.900581423059], [-5053.660723511655, -1468.200581420831], [-5032.560723506663, -1640.400581422341], [-5029.410723508931, -1883.2005814211072], [-5025.560723510125, -2224.400581422259], [-5027.010723509306, -2264.1005814207915], [-5028.510723505519, -2282.950581420806], [-5034.110723507012, -2312.1505814209795], [-5038.710723511031, -2326.2505814223287], [-5045.910723509905, -2342.60058142155], [-5060.910723507561, -2368.7505814216083], [-5076.460723508091, -2391.5005814210135], [-5692.310723510729, -3125.7505814217266], [-5709.41072351161, -3148.250581421763], [-5717.61072350796, -3156.7505814216192], [-5748.210723510283, -3183.600581422752]]}, {"length": 125.581456514, "source": 2331404989, "destination": 2331404994, "path": [[-5090.110723507734, -170.85058142285448], [-5081.260723507341, -735.5005814240201]]}, {"length": 125.362157179, "source": 2331404989, "destination": 3496300573, "path": [[-5090.110723507734, -170.85058142285448], [-5092.760723506728, 392.8494185778675]]}, {"length": 82.50593659, "source": 2331404989, "destination": 2331404990, "path": [[-5090.110723507734, -170.85058142285448], [-5580.310723509285, -171.10058142222329]]}, {"length": 72.7696033123, "source": 2331404990, "destination": 2331404992, "path": [[-5580.310723509285, -171.10058142222329], [-6012.660723506258, -172.25058142145144]]}, {"length": 247.832466141, "source": 2331404990, "destination": 134968171, "path": [[-5580.310723509285, -171.10058142222329], [-5602.960723507522, 321.1494185784147], [-5603.410723509228, 391.7994185762552], [-5606.060723508222, 942.9994185765622]]}, {"length": 82.50593659, "source": 2331404990, "destination": 2331404989, "path": [[-5580.310723509285, -171.10058142222329], [-5090.110723507734, -170.85058142285448]]}, {"length": 126.174232307, "source": 2331404990, "destination": 2331404991, "path": [[-5580.310723509285, -171.10058142222329], [-5576.8107235110165, -680.6505814225261], [-5577.060723510385, -738.4505814229669]]}, {"length": 117.941371122, "source": 2331404991, "destination": 2423703504, "path": [[-5577.060723510385, -738.4505814229669], [-5585.160723505567, -1268.750581420619]]}, {"length": 83.4495948337, "source": 2331404991, "destination": 2331404994, "path": [[-5577.060723510385, -738.4505814229669], [-5081.260723507341, -735.5005814240201]]}, {"length": 15.3578419062, "source": 2331404991, "destination": 2423701867, "path": [[-5577.060723510385, -738.4505814229669], [-5668.310723507375, -738.2005814235981]]}, {"length": 126.174232307, "source": 2331404991, "destination": 2331404990, "path": [[-5577.060723510385, -738.4505814229669], [-5576.8107235110165, -680.6505814225261], [-5580.310723509285, -171.10058142222329]]}, {"length": 65.5428612714, "source": 2331404992, "destination": 2442181843, "path": [[-6012.660723506258, -172.25058142145144], [-6017.210723506139, 122.4494185763092]]}, {"length": 95.9948858868, "source": 2331404992, "destination": 2442181819, "path": [[-6012.660723506258, -172.25058142145144], [-6011.560723507614, -603.900581420902]]}, {"length": 72.7696033123, "source": 2331404992, "destination": 2331404990, "path": [[-6012.660723506258, -172.25058142145144], [-5580.310723509285, -171.10058142222329]]}, {"length": 151.533459489, "source": 2089552577, "destination": 2184814290, "path": [[-9254.510723508247, -10631.30058142292], [-9251.360723510516, -10668.150581423673], [-9264.81072350782, -10685.900581421492], [-9272.210723509033, -10707.200581421715], [-9270.860723511021, -10798.550581423428], [-9270.160723509945, -10975.600581421219], [-9275.360723506765, -11309.150581421789]]}, {"length": 7.59720758119, "source": 2089552577, "destination": 134986475, "path": [[-9254.510723508247, -10631.30058142292], [-9299.66072350652, -10631.100581420582]]}, {"length": 13.8150225731, "source": 2089552577, "destination": 2080739054, "path": [[-9254.510723508247, -10631.30058142292], [-9255.660723511028, -10601.900581423963], [-9256.910723507872, -10569.200581421966]]}, {"length": 59.52139823, "source": 2331404994, "destination": 2189326772, "path": [[-5081.260723507341, -735.5005814240201], [-4816.810723511367, -736.1005814239263], [-4767.510723510782, -734.0005814207018], [-4727.910723509865, -730.8005814223861]]}, {"length": 117.644752464, "source": 2331404994, "destination": 2331404988, "path": [[-5081.260723507341, -735.5005814240201], [-5080.010723510497, -1203.100581420813], [-5079.860723505191, -1264.500581420691]]}, {"length": 125.581456514, "source": 2331404994, "destination": 2331404989, "path": [[-5081.260723507341, -735.5005814240201], [-5090.110723507734, -170.85058142285448]]}, {"length": 83.4495948337, "source": 2331404994, "destination": 2331404991, "path": [[-5081.260723507341, -735.5005814240201], [-5577.060723510385, -738.4505814229669]]}, {"length": 8.02864183763, "source": 2568624486, "destination": 135064786, "path": [[1765.4892764937813, -3252.7005814237955], [1765.3392764884757, -3216.6005814211476]]}, {"length": 139.744669725, "source": 2568624486, "destination": 2568624509, "path": [[1765.4892764937813, -3252.7005814237955], [1712.0392764908843, -3251.7005814227673], [1703.9892764927345, -3244.6005814215087], [1693.239276491454, -3238.5005814212773], [942.1892764933659, -3243.9005814239863]]}, {"length": 197.383480306, "source": 2568624486, "destination": 134975775, "path": [[1765.4892764937813, -3252.7005814237955], [1769.3392764925875, -4140.2505814218675]]}, {"length": 9.08706166187, "source": 2069393871, "destination": 2069393865, "path": [[-5216.210723510529, 5401.6994185772655], [-5264.5107235065325, 5419.949418577375]]}, {"length": 10.2142760383, "source": 2069393871, "destination": 2069376890, "path": [[-5216.210723510529, 5401.6994185772655], [-5209.5107235103915, 5447.349418577829]]}, {"length": 36.5007779117, "source": 2069393871, "destination": 2069376796, "path": [[-5216.210723510529, 5401.6994185772655], [-5182.710723509843, 5358.049418578758], [-5150.510723510138, 5314.399418576699], [-5129.060723511713, 5291.049418577387], [-5095.510723506891, 5266.649418576463]]}, {"length": 94.1788196082, "source": 1433125519, "destination": 2289073265, "path": [[-7959.260723509942, 5088.6494185782285], [-8518.710723507184, 5085.599418578113]]}, {"length": 89.0031194482, "source": 134957796, "destination": 135090056, "path": [[-4639.460723510069, -4651.300581421936], [-4110.660723505078, -4644.600581421799]]}, {"length": 110.779683413, "source": 134957796, "destination": 2080625197, "path": [[-4639.460723510069, -4651.300581421936], [-5297.66072350668, -4658.800581420764]]}, {"length": 102.036423973, "source": 134957796, "destination": 134957798, "path": [[-4639.460723510069, -4651.300581421936], [-4625.76072350629, -5110.000581421304]]}, {"length": 58.0219389715, "source": 134957798, "destination": 1483977721, "path": [[-4625.76072350629, -5110.000581421304], [-4627.06072350727, -5370.900581421978]]}, {"length": 102.036423973, "source": 134957798, "destination": 134957796, "path": [[-4625.76072350629, -5110.000581421304], [-4639.460723510069, -4651.300581421936]]}, {"length": 85.368651715, "source": 134957798, "destination": 135057583, "path": [[-4625.76072350629, -5110.000581421304], [-4118.5607235050265, -5103.000581421213]]}, {"length": 144.395450231, "source": 134957801, "destination": 2080625207, "path": [[-4628.31072351122, -5613.950581423665], [-5486.360723509165, -5614.600581420604]]}, {"length": 7.08399008437, "source": 134957801, "destination": 4720043355, "path": [[-4628.31072351122, -5613.950581423665], [-4628.160723505915, -5582.100581420946]]}, {"length": 220.695621204, "source": 134957801, "destination": 134968405, "path": [[-4628.31072351122, -5613.950581423665], [-3316.8607235083414, -5616.400581423875]]}, {"length": 109.750779537, "source": 134957801, "destination": 134957807, "path": [[-4628.31072351122, -5613.950581423665], [-4625.260723507552, -6107.450581421148]]}, {"length": 57.0480909354, "source": 2217927122, "destination": 2423701867, "path": [[-6007.260723507102, -738.9505814217046], [-5911.160723506726, -738.75058142292], [-5668.310723507375, -738.2005814235981]]}, {"length": 30.0421889328, "source": 2217927122, "destination": 2442181819, "path": [[-6007.260723507102, -738.9505814217046], [-6009.210723505021, -677.4005814236261], [-6011.560723507614, -603.900581420902]]}, {"length": 117.844931535, "source": 2217927122, "destination": 2217927127, "path": [[-6007.260723507102, -738.9505814217046], [-6005.460723507384, -1268.8505814217876]]}, {"length": 109.750779537, "source": 134957807, "destination": 134957801, "path": [[-4625.260723507552, -6107.450581421148], [-4628.31072351122, -5613.950581423665]]}, {"length": 221.534063269, "source": 134957807, "destination": 135104883, "path": [[-4625.260723507552, -6107.450581421148], [-3308.8107235101916, -6104.5005814222]]}, {"length": 51.8712466901, "source": 134957807, "destination": 135038533, "path": [[-4625.260723507552, -6107.450581421148], [-4631.260723506613, -6340.650581421414]]}, {"length": 36.9051036942, "source": 134957807, "destination": 135112494, "path": [[-4625.260723507552, -6107.450581421148], [-4844.510723508221, -6103.70058142351]]}, {"length": 74.6466623165, "source": 134957816, "destination": 135074736, "path": [[-4585.910723506004, -165.25058142136118], [-4142.410723510182, -163.7505814215956]]}, {"length": 65.5874940993, "source": 134957816, "destination": 3146411802, "path": [[-4585.910723506004, -165.25058142136118], [-4612.710723506552, -182.5005814239944], [-4629.360723505726, -195.50058142314697], [-4638.360723511425, -205.15058142223097], [-4643.810723507613, -219.50058142294893], [-4645.110723508595, -231.75058142399507], [-4647.010723509482, -442.90058142237854]]}, {"length": 62.9648831021, "source": 2069036672, "destination": 135025217, "path": [[-108.51072350703816, 3743.0994185783106], [-482.56072350483237, 3741.699418576161]]}, {"length": 59.5223203952, "source": 2069036672, "destination": 134982666, "path": [[-108.51072350703816, 3743.0994185783106], [245.08927648980716, 3744.3494185787076]]}, {"length": 60.4606046438, "source": 2069036672, "destination": 2069036329, "path": [[-108.51072350703816, 3743.0994185783106], [-104.46072350589475, 3471.2494185775713]]}, {"length": 13.1392147074, "source": 134957819, "destination": 2189326772, "path": [[-4650.2607235083815, -724.7005814221552], [-4727.910723509865, -730.8005814223861]]}, {"length": 59.6676554284, "source": 134957819, "destination": 3146411766, "path": [[-4650.2607235083815, -724.7005814221552], [-4648.9607235074, -993.0005814240417]]}, {"length": 86.1694986831, "source": 134957819, "destination": 135043151, "path": [[-4650.2607235083815, -724.7005814221552], [-4597.910723511233, -719.6005814229522], [-4537.860723509368, -716.0505814205465], [-4525.010723504864, -716.1005814211308], [-4207.160723510128, -716.7505814216213], [-4138.910723504807, -716.9005814233742]]}, {"length": 30.8347302024, "source": 3758384263, "destination": 2311060625, "path": [[-3510.9107235058445, 2810.599418577198], [-3510.0607235065695, 2671.9494185769577]]}, {"length": 53.587368416, "source": 3758384263, "destination": 2311060503, "path": [[-3510.9107235058445, 2810.599418577198], [-3541.3107235058305, 2810.599418577198], [-3714.560723508953, 2814.799418576541], [-3716.0607235051657, 2901.549418577787]]}, {"length": 16.7393539431, "source": 3758384263, "destination": 2311060525, "path": [[-3510.9107235058445, 2810.599418577198], [-3411.4607235053995, 2810.599418577198]]}, {"length": 63.3039968252, "source": 3758384263, "destination": 2311060359, "path": [[-3510.9107235058445, 2810.599418577198], [-3512.6607235085316, 3095.2494185783053]]}, {"length": 13.2539519583, "source": 134957822, "destination": 2960622608, "path": [[-4647.660723506419, -1265.3505814235189], [-4726.410723506547, -1265.650581423472]]}, {"length": 74.9136854066, "source": 134957822, "destination": 3146557051, "path": [[-4647.660723506419, -1265.3505814235189], [-4398.260723505132, -1264.4505814236595], [-4202.560723506111, -1263.7505814225847]]}, {"length": 131.434325726, "source": 135072512, "destination": 135012848, "path": [[9695.489276488444, 2279.3994185761335], [9699.489276492557, 1688.3994185761253]]}, {"length": 10.9665834562, "source": 135072512, "destination": 135076347, "path": [[9695.489276488444, 2279.3994185761335], [9630.33927649093, 2279.899418578424]]}, {"length": 49.8993852421, "source": 135072512, "destination": 2062743183, "path": [[9695.489276488444, 2279.3994185761335], [9991.939276488893, 2279.3994185761335]]}, {"length": 203.48950907, "source": 135072514, "destination": 134959818, "path": [[10335.839276493174, 2279.3994185761335], [10329.839276494113, 3194.399418578797]]}, {"length": 131.656688589, "source": 135072514, "destination": 135012851, "path": [[10335.839276493174, 2279.3994185761335], [10339.839276490182, 1687.39941857865]]}, {"length": 57.8863299059, "source": 135072514, "destination": 2062743183, "path": [[10335.839276493174, 2279.3994185761335], [9991.939276488893, 2279.3994185761335]]}, {"length": 94.9758112411, "source": 4719864580, "destination": 2568600038, "path": [[-1007.1107235063437, -3039.650581420972], [-1005.5607235059938, -2967.0005814210754], [-925.3607235066852, -2965.950581423016], [-537.3107235087105, -2960.7505814226442]]}, {"length": 24.498124577, "source": 4719864582, "destination": 4719864580, "path": [[-1008.8607235090308, -3149.8005814221133], [-1007.1107235063437, -3039.650581420972]]}, {"length": 25.5653204236, "source": 4719864582, "destination": 2568624516, "path": [[-1008.8607235090308, -3149.8005814221133], [-1160.7607235077921, -3150.950581421341]]}, {"length": 47.9721805114, "source": 4719864584, "destination": 2568624512, "path": [[-1235.6107235049762, -3093.0005814227], [-1271.960723506993, -3306.95058142183]]}, {"length": 39.5100236876, "source": 4719864584, "destination": 2568624514, "path": [[-1235.6107235049762, -3093.0005814227], [-1257.3107235098746, -2916.100581423109]]}, {"length": 12.6396108725, "source": 4719864584, "destination": 4719909591, "path": [[-1235.6107235049762, -3093.0005814227], [-1160.5107235084233, -3092.6505814221628]]}, {"length": 103.755050558, "source": 134966034, "destination": 134966040, "path": [[-11744.160723509367, -10607.60058142307], [-11747.810723505836, -10787.150581421656], [-11752.660723509223, -11074.10058142122]]}, {"length": 13.1676505208, "source": 134966034, "destination": 2080633147, "path": [[-11744.160723509367, -10607.60058142307], [-11742.960723509554, -10548.400581424034]]}, {"length": 204.61486335, "source": 134966034, "destination": 134970189, "path": [[-11744.160723509367, -10607.60058142307], [-12960.160723508807, -10597.10058142116]]}, {"length": 232.957236071, "source": 135072531, "destination": 1279884662, "path": [[7596.839276494904, 2093.8994185790707], [7589.239276491355, 3141.3994185776064]]}, {"length": 7.10431721391, "source": 135072531, "destination": 1429422197, "path": [[7596.839276494904, 2093.8994185790707], [7597.039276490136, 2061.9494185787344]]}, {"length": 50.4556591074, "source": 135072531, "destination": 2086776814, "path": [[7596.839276494904, 2093.8994185790707], [7896.589276491284, 2095.399418578836]]}, {"length": 115.989653972, "source": 135072534, "destination": 135012837, "path": [[8206.339276490837, 2096.8994185786014], [8202.189276488525, 1575.3494185766215]]}, {"length": 52.1388297027, "source": 135072534, "destination": 2086776814, "path": [[8206.339276490837, 2096.8994185786014], [7896.589276491284, 2095.399418578836]]}, {"length": 245.350784496, "source": 135072534, "destination": 134959999, "path": [[8206.339276490837, 2096.8994185786014], [8193.989276492175, 2682.799418579407], [8178.98927649452, 2844.199418579052], [8173.939276488795, 3199.6494185762003]]}, {"length": 103.755050558, "source": 134966040, "destination": 134966034, "path": [[-11752.660723509223, -11074.10058142122], [-11747.810723505836, -10787.150581421656], [-11744.160723509367, -10607.60058142307]]}, {"length": 8.34136223614, "source": 134966040, "destination": 134966043, "path": [[-11752.660723509223, -11074.10058142122], [-11753.660723506699, -11111.600581422465]]}, {"length": 199.816939218, "source": 134966040, "destination": 134967042, "path": [[-11752.660723509223, -11074.10058142122], [-10565.160723508881, -11084.600581423132]]}, {"length": 8.34136223614, "source": 134966043, "destination": 134966040, "path": [[-11753.660723506699, -11111.600581422465], [-11752.660723509223, -11074.10058142122]]}, {"length": 204.276542497, "source": 134966043, "destination": 134967053, "path": [[-11753.660723506699, -11111.600581422465], [-12967.660723511188, -11100.600581421815]]}, {"length": 9.06322670498, "source": 135039780, "destination": 1933539611, "path": [[7339.939276491236, -6812.1005814205655], [7339.289276494299, -6852.850581420711]]}, {"length": 51.9505907005, "source": 135039780, "destination": 1933539604, "path": [[7339.939276491236, -6812.1005814205655], [7648.639276489177, -6809.400581420988]]}, {"length": 50.3716345166, "source": 135039780, "destination": 1937710117, "path": [[7339.939276491236, -6812.1005814205655], [7339.03927649493, -6585.600581423989]]}, {"length": 49.8576449844, "source": 135039780, "destination": 1933539606, "path": [[7339.939276491236, -6812.1005814205655], [7043.689276493125, -6815.450581420635]]}, {"length": 40.1616151652, "source": 135039782, "destination": 135039784, "path": [[6088.98927649193, -6827.450581422312], [5850.339276491923, -6829.4005814237835]]}, {"length": 60.4743173369, "source": 135039782, "destination": 1933539608, "path": [[6088.98927649193, -6827.450581422312], [6448.289276491437, -6821.950581421987]]}, {"length": 8.72993114775, "source": 135039782, "destination": 1933539615, "path": [[6088.98927649193, -6827.450581422312], [6088.139276492655, -6866.700581422691]]}, {"length": 49.893243846, "source": 135039784, "destination": 2042464563, "path": [[5850.339276491923, -6829.4005814237835], [5850.2392764907545, -6605.05058142391]]}, {"length": 50.3644770148, "source": 135039784, "destination": 1937680637, "path": [[5850.339276491923, -6829.4005814237835], [5551.189276488344, -6836.450581420905]]}, {"length": 40.1616151652, "source": 135039784, "destination": 135039782, "path": [[5850.339276491923, -6829.4005814237835], [6088.98927649193, -6827.450581422312]]}, {"length": 6.69883675396, "source": 135039786, "destination": 1933539609, "path": [[5256.639276488784, -6840.300581423264], [5296.439276492038, -6839.700581423358]]}, {"length": 7.45590754191, "source": 135039786, "destination": 1932196197, "path": [[5256.639276488784, -6840.300581423264], [5212.339276489785, -6840.9005814231705]]}, {"length": 196.271905629, "source": 135039786, "destination": 1937679935, "path": [[5256.639276488784, -6840.300581423264], [5252.13927649304, -5957.750581423226]]}, {"length": 11.9313104596, "source": 1667926827, "destination": 2423697768, "path": [[-7508.610723505171, -3944.900581423383], [-7468.910723510191, -3900.4505814226322]]}, {"length": 159.582153506, "source": 1667926827, "destination": 134982563, "path": [[-7508.610723505171, -3944.900581423383], [-7540.510723508476, -4008.450581423517], [-7548.660723507794, -4069.000581420568], [-7539.710723506232, -4126.6505814228085], [-7396.160723509127, -4646.100581421564]]}, {"length": 74.5532773621, "source": 1667926827, "destination": 2423697765, "path": [[-7508.610723505171, -3944.900581423383], [-7620.110723507878, -3793.6505814215593], [-7666.460723505963, -3689.8505814235705], [-7668.710723507388, -3637.4005814217016]]}, {"length": 78.052284255, "source": 1855078878, "destination": 135047176, "path": [[-2653.0107235060996, -2931.1505814213488], [-3116.760723507639, -2927.3005814225426]]}, {"length": 141.577174021, "source": 1855078878, "destination": 2960628137, "path": [[-2653.0107235060996, -2931.1505814213488], [-2634.510723510175, -3536.5505814226594], [-2633.6607235109, -3567.6005814231357]]}, {"length": 121.501962161, "source": 1855078878, "destination": 135064044, "path": [[-2653.0107235060996, -2931.1505814213488], [-2643.6607235069687, -2384.8505814214604]]}, {"length": 12.087782274, "source": 2069376834, "destination": 2069376858, "path": [[-4388.360723510232, 5320.499418576929], [-4387.410723509788, 5266.149418577726]]}, {"length": 17.0550536355, "source": 2069376834, "destination": 2069376740, "path": [[-4388.360723510232, 5320.499418576929], [-4416.9607235104995, 5320.449418576345], [-4489.360723511027, 5325.549418579101]]}, {"length": 22.3640959176, "source": 2069376834, "destination": 2069376909, "path": [[-4388.360723510232, 5320.499418576929], [-4255.51072351027, 5320.799418576882]]}, {"length": 6.20938690496, "source": 2568624490, "destination": 2568624505, "path": [[475.73927648869585, -3363.5005814218744], [447.08927649139696, -3345.9005814222564]]}, {"length": 4.70596944389, "source": 134990654, "destination": 2292321987, "path": [[-10560.96072350954, 4819.4494185764825], [-10548.610723510876, 4813.249418578635], [-10536.210723508077, 4809.949418579152]]}, {"length": 11.3638250124, "source": 134990654, "destination": 2292321956, "path": [[-10560.96072350954, 4819.4494185764825], [-10569.860723506963, 4828.299418576876], [-10575.210723509088, 4840.999418576075], [-10575.460723508457, 4867.649418578423]]}, {"length": 177.710024872, "source": 134990654, "destination": 1362208431, "path": [[-10560.96072350954, 4819.4494185764825], [-10589.910723510344, 4779.6494185767815], [-10582.260723509762, 4550.049418575953], [-10576.810723506469, 4352.549418577211], [-10578.560723509156, 4337.699418577757], [-10581.410723510488, 4324.499418576266], [-10603.310723510618, 4258.6994185782605], [-10644.06072350721, 4168.64941857753], [-10665.510723505633, 4140.249418576048], [-10680.510723510395, 4135.3494185791815], [-10719.11072350673, 4178.399418577783], [-10733.06072350988, 4214.899418577999]]}, {"length": 9.85592570226, "source": 135031619, "destination": 2286663816, "path": [[-5650.3607235072195, 4274.199418578206], [-5708.910723505767, 4273.999418579422]]}, {"length": 247.433201416, "source": 135031619, "destination": 134959945, "path": [[-5650.3607235072195, 4274.199418578206], [-5651.660723508201, 3637.1994185770973], [-5648.060723508763, 3161.599418579186]]}, {"length": 108.515725438, "source": 135031619, "destination": 2069376811, "path": [[-5650.3607235072195, 4274.199418578206], [-5652.260723508107, 4762.149418578332]]}, {"length": 95.3114860034, "source": 135031619, "destination": 2310516526, "path": [[-5650.3607235072195, 4274.199418578206], [-5084.160723505704, 4276.299418577878]]}, {"length": 15.2116071087, "source": 135031620, "destination": 2139775505, "path": [[-5659.660723509319, 5934.899418576833], [-5660.160723508056, 6003.299418576802]]}, {"length": 13.240004544, "source": 135031620, "destination": 2069376742, "path": [[-5659.660723509319, 5934.899418576833], [-5581.010723510361, 5935.349418578539]]}, {"length": 9.71268811764, "source": 135031620, "destination": 2292321422, "path": [[-5659.660723509319, 5934.899418576833], [-5717.360723508591, 5934.6494185774645]]}, {"length": 16.3905961619, "source": 135031620, "destination": 2292321457, "path": [[-5659.660723509319, 5934.899418576833], [-5659.210723507613, 5861.199418578877]]}, {"length": 13.5574976806, "source": 2586986573, "destination": 2586986572, "path": [[197.83927648830968, -1307.5005814222607], [278.38927649526113, -1307.5005814222607]]}, {"length": 72.6994067104, "source": 2586986573, "destination": 2586986571, "path": [[197.83927648830968, -1307.5005814222607], [-234.11072351109397, -1307.7505814216295]]}, {"length": 12.4314676813, "source": 2586986573, "destination": 2586986556, "path": [[197.83927648830968, -1307.5005814222607], [197.53927649190928, -1363.4005814218142]]}, {"length": 358.136613258, "source": 1667926869, "destination": 1959915242, "path": [[-4168.360723511455, -2593.0505814208973], [-4196.360723511816, -2631.3005814238013], [-4378.710723507595, -2880.900581423873], [-4855.76072350824, -3535.800581421], [-5140.660723505163, -3928.850581420562], [-5203.660723509529, -3999.650581423708]]}, {"length": 18.8024890021, "source": 1667926869, "destination": 4719463893, "path": [[-4168.360723511455, -2593.0505814208973], [-4199.710723504779, -2511.900581421145]]}, {"length": 141.093134476, "source": 1667926869, "destination": 2217880510, "path": [[-4168.360723511455, -2593.0505814208973], [-4169.310723504794, -2679.2505814228207], [-4175.86072350673, -2744.7005814238423], [-4188.760723508267, -2785.950581422725], [-4209.510723505617, -2829.1505814230786], [-4264.160723508326, -2917.650581423459], [-4299.260723506393, -2971.4505814233407], [-4325.910723508741, -3014.6005814231103], [-4373.46072350664, -3069.800581421589], [-4408.310723505338, -3093.800581421391], [-4420.160723505262, -3095.6005814211094], [-4430.610723510143, -3096.300581422184], [-4456.610723508447, -3094.4505814218815], [-4471.610723506103, -3096.7505814238903], [-4503.16072350887, -3127.500581420861]]}, {"length": 7.06854335831, "source": 1667926869, "destination": 2184804575, "path": [[-4168.360723511455, -2593.0505814208973], [-4184.060723510185, -2587.9005814211096], [-4208.91072350571, -2586.9005814236343]]}, {"length": 124.999862819, "source": 134957917, "destination": 2291254718, "path": [[-10251.160723505847, 4257.499418578447], [-10069.060723509438, 4259.249418577582], [-9704.660723507175, 4261.099418577885], [-9508.610723507616, 4261.199418579054]]}, {"length": 8.73715492321, "source": 134957919, "destination": 2292322432, "path": [[-9302.060723506145, 4262.349418578282], [-9250.160723510704, 4262.399418578866]]}, {"length": 11.397788404, "source": 134957919, "destination": 2291254721, "path": [[-9302.060723506145, 4262.349418578282], [-9301.46072350624, 4211.099418576225]]}, {"length": 13.256671694, "source": 134957919, "destination": 2280505635, "path": [[-9302.060723506145, 4262.349418578282], [-9380.810723506273, 4262.049418578328]]}, {"length": 12.5652343339, "source": 134957919, "destination": 2292322398, "path": [[-9302.060723506145, 4262.349418578282], [-9302.160723507313, 4318.849418577742]]}, {"length": 131.211733753, "source": 135031649, "destination": 135032870, "path": [[-5675.160723505713, 2541.649418578373], [-5479.510723510828, 2542.9494185793546], [-5316.060723508543, 2572.3494185783125], [-5272.560723511788, 2580.1494185770935], [-4901.410723505251, 2578.949418577281]]}, {"length": 128.119411439, "source": 135031649, "destination": 3758384262, "path": [[-5675.160723505713, 2541.649418578373], [-5672.41072350555, 2777.849418578171], [-5663.760723507494, 2926.3494185762793], [-5653.810723508457, 3073.0994185788063], [-5650.960723507125, 3117.3494185772197]]}, {"length": 108.612897406, "source": 135031649, "destination": 135031647, "path": [[-5675.160723505713, 2541.649418578373], [-5659.760723510488, 2053.3994185782944]]}, {"length": 94.7068847287, "source": 2293563148, "destination": 2069376776, "path": [[-5018.460723505314, 5866.499418576865], [-5581.010723510361, 5861.549418579415]]}, {"length": 13.2154759019, "source": 2293563148, "destination": 2069379693, "path": [[-5018.460723505314, 5866.499418576865], [-4939.96072351166, 5867.049418576187]]}, {"length": 15.8902743576, "source": 2293563148, "destination": 3299414702, "path": [[-5018.460723505314, 5866.499418576865], [-5019.110723509357, 5937.949418576949]]}, {"length": 1.91289595195, "source": 1962178364, "destination": 1962177664, "path": [[5267.939276492939, -2457.9005814224784], [5267.889276488802, -2449.300581421454]]}, {"length": 30.3810679882, "source": 1962178364, "destination": 1962177665, "path": [[5267.939276492939, -2457.9005814224784], [5268.039276494108, -2470.10058142294], [5268.089276491139, -2477.200581420647], [5265.339276490977, -2594.500581423631]]}, {"length": 15.3067008825, "source": 1962178364, "destination": 1962177662, "path": [[5267.939276492939, -2457.9005814224784], [5358.889276493528, -2458.2005814224317]]}, {"length": 55.1085259906, "source": 135097197, "destination": 2074272065, "path": [[-3308.660723504886, -6598.600581423142], [-3307.610723510379, -6846.400581423495]]}, {"length": 115.524289997, "source": 135097197, "destination": 135090901, "path": [[-3308.660723504886, -6598.600581423142], [-2622.160723511513, -6596.100581422348]]}, {"length": 54.1186922665, "source": 135097197, "destination": 2074272062, "path": [[-3308.660723504886, -6598.600581423142], [-3308.710723509023, -6355.250581421501]]}, {"length": 52.9487851045, "source": 135097197, "destination": 2869816935, "path": [[-3308.660723504886, -6598.600581423142], [-3623.310723504858, -6598.900581423095]]}, {"length": 51.3724387019, "source": 135097204, "destination": 135097216, "path": [[202.83927648989675, -6584.100581420671], [203.83927649447742, -6353.100581421245]]}, {"length": 130.001725799, "source": 135097204, "destination": 135099955, "path": [[202.83927648989675, -6584.100581420671], [197.13927649434027, -7168.650581423463]]}, {"length": 57.4420859988, "source": 135097204, "destination": 1916976468, "path": [[202.83927648989675, -6584.100581420671], [130.8392764940436, -6586.1005814227265], [-138.46072350531813, -6587.050581423171]]}, {"length": 15.783283191, "source": 2139769721, "destination": 1932196008, "path": [[232.03927649007028, -5362.000581421], [247.4892764894321, -5370.050581422703], [309.68927649155376, -5401.800581420702]]}, {"length": 30.5649888334, "source": 2139769721, "destination": 1429423130, "path": [[232.03927649007028, -5362.000581421], [222.389276494539, -5384.300581422252], [198.53927648938452, -5425.250581421182], [194.38927649417792, -5434.850581423234], [191.18927649230955, -5445.950581421499], [187.68927649404077, -5455.80058142292], [184.18927648866656, -5464.700581423898], [178.78927648951048, -5472.900581423801], [164.48927649292955, -5488.7005814237]]}, {"length": 9.80550205035, "source": 2139769721, "destination": 1932195971, "path": [[232.03927649007028, -5362.000581421], [182.2892764948847, -5339.050581422811]]}, {"length": 70.4284437421, "source": 2139769721, "destination": 1933539534, "path": [[232.03927649007028, -5362.000581421], [240.48927649289453, -5342.4505814234635], [246.23927649258803, -5325.100581423214], [251.93927649524994, -5304.6505814222655], [257.68927649494344, -5267.800581421511], [259.5892764887253, -5230.500581422603], [260.8392764926748, -5205.700581420559], [261.1892764932122, -5189.100581421968], [259.88927649223115, -5175.150581422372], [259.5892764887253, -5153.500581421611], [259.5892764887253, -5115.200581421675], [259.0892764899877, -5047.650581420981]]}, {"length": 58.4892412482, "source": 135097216, "destination": 135099952, "path": [[203.83927649447742, -6353.100581421245], [205.33927649069028, -6090.100581420898]]}, {"length": 378.677445581, "source": 135097216, "destination": 2573122529, "path": [[203.83927649447742, -6353.100581421245], [693.3392764949531, -6355.250581421501], [685.3392764938349, -6949.10058142284], [679.2892764906355, -7273.800581423018], [674.8392764919231, -7305.050581422279], [661.8892764933548, -7331.750581421658], [633.3892764942561, -7340.5005814208835], [596.5392764935018, -7346.40058142233], [197.28927649254047, -7347.750581423896]]}, {"length": 51.3724387019, "source": 135097216, "destination": 135097204, "path": [[203.83927649447742, -6353.100581421245], [202.83927648989675, -6584.100581420671]]}, {"length": 306.52981276, "source": 135097216, "destination": 1429423374, "path": [[203.83927649447742, -6353.100581421245], [261.389276488444, -6331.350581422867], [901.8392764943428, -6332.800581422049], [983.5392764898643, -6351.850581420848], [1055.8392764892233, -6387.50058142179], [1197.9392764942531, -6502.150581422228], [1387.1892764925065, -6585.4005814216525], [1419.8892764909488, -6608.250581422226], [1435.5892764896794, -6649.150581420571], [1422.3892764917423, -6686.250581420694], [1289.1892764912427, -6824.0005814210745], [1227.5892764890273, -6920.150581422035]]}, {"length": 90.3561908277, "source": 134982531, "destination": 1930367808, "path": [[8566.18927649322, -8625.200581423798], [9103.139276490423, -8621.050581421485]]}, {"length": 197.336914946, "source": 134982531, "destination": 134976474, "path": [[8566.18927649322, -8625.200581423798], [7933.239276489701, -8625.90058142132], [7393.889276492871, -8642.650581421662]]}, {"length": 5.34343976132, "source": 134982533, "destination": 1930367808, "path": [[9134.889276488422, -8620.800581422116], [9103.139276490423, -8621.050581421485]]}, {"length": 87.8127601294, "source": 134982533, "destination": 1999574946, "path": [[9134.889276488422, -8620.800581422116], [9656.739276493909, -8618.050581421954]]}, {"length": 15.9903510842, "source": 134982533, "destination": 1930367771, "path": [[9134.889276488422, -8620.800581422116], [9134.289276488516, -8548.900581423879]]}, {"length": 55.2702801458, "source": 134982537, "destination": 2087861313, "path": [[10392.139276490298, -8606.100581420862], [10063.689276492481, -8608.55058142107]]}, {"length": 8.38393285513, "source": 134982537, "destination": 2087861299, "path": [[10392.139276490298, -8606.100581420862], [10392.439276493804, -8643.80058142089]]}, {"length": 8.31755754768, "source": 134982537, "destination": 2087861293, "path": [[10392.139276490298, -8606.100581420862], [10392.189276494435, -8568.700581420784]]}, {"length": 21.5605869818, "source": 1996491668, "destination": 2086715232, "path": [[1015.9392764919062, -698.1005814239438], [887.8392764941623, -698.6005814226814]]}, {"length": 122.709839272, "source": 1996491668, "destination": 1887485040, "path": [[1015.9392764919062, -698.1005814239438], [1023.189276494918, -1249.8505814235727]]}, {"length": 122.364038407, "source": 1996491668, "destination": 135049946, "path": [[1015.9392764919062, -698.1005814239438], [1009.3892764899692, -147.90058142111207]]}, {"length": 68.9043083367, "source": 1428269973, "destination": 1428269734, "path": [[-9015.310723505365, -8383.550581420706], [-9205.860723511705, -8243.200581421917], [-9263.610723508009, -8198.000581423059], [-9276.960723511253, -8192.950581420888], [-9322.460723510063, -8191.400581420538]]}, {"length": 97.1273725648, "source": 134982563, "destination": 1959915201, "path": [[-7396.160723509127, -4646.100581421564], [-7400.010723507932, -4732.350581420519], [-7247.060723507559, -5008.950581423477], [-7250.110723511227, -5017.100581422796], [-7254.510723505802, -5023.350581421227], [-7261.910723507015, -5030.450581422485], [-7272.210723506589, -5035.850581421641], [-7291.910723509432, -5042.9505814229005]]}, {"length": 16.103243393, "source": 134982563, "destination": 1959915267, "path": [[-7396.160723509127, -4646.100581421564], [-7466.060723508861, -4596.6505814227785]]}, {"length": 115.18576173, "source": 134982563, "destination": 1428267094, "path": [[-7396.160723509127, -4646.100581421564], [-7379.260723510583, -4609.9005814213], [-6851.360723509004, -4478.600581421688], [-6790.810723508401, -4441.350581423365]]}, {"length": 170.292199452, "source": 134982563, "destination": 135010520, "path": [[-7396.160723509127, -4646.100581421564], [-7501.810723510971, -4671.5005814235155], [-8131.96072351019, -4826.450581422392], [-8358.160723510366, -4883.600581422343]]}, {"length": 121.286936611, "source": 134982563, "destination": 1855078873, "path": [[-7396.160723509127, -4646.100581421564], [-7368.160723508765, -4707.600581422611], [-7118.910723505678, -5149.350581422851]]}, {"length": 159.582153506, "source": 134982563, "destination": 1667926827, "path": [[-7396.160723509127, -4646.100581421564], [-7539.710723506232, -4126.6505814228085], [-7548.660723507794, -4069.000581420568], [-7540.510723508476, -4008.450581423517], [-7508.610723505171, -3944.900581423383]]}, {"length": 49.1633811122, "source": 2217880484, "destination": 2960627735, "path": [[-6006.260723509627, -1705.900581423947], [-5919.76072350775, -1702.8505814238315], [-5862.760723509553, -1699.800581423716], [-5834.560723506855, -1669.3505814231457], [-5828.6607235089605, -1645.7505814209128], [-5843.410723507248, -1595.9005814210059]]}, {"length": 27.514452102, "source": 2217880484, "destination": 2423711605, "path": [[-6006.260723509627, -1705.900581423947], [-6001.810723510915, -1773.4005814205034], [-5993.110723508721, -1829.1505814218567]]}, {"length": 97.2035383333, "source": 2217880484, "destination": 2217927127, "path": [[-6006.260723509627, -1705.900581423947], [-6008.810723507451, -1626.1505814227917], [-6006.510723508995, -1321.6505814206414], [-6005.460723507384, -1268.8505814217876]]}, {"length": 23.6066835589, "source": 2217880492, "destination": 2423712353, "path": [[-5834.160723509285, -2217.2005814233844], [-5705.860723509204, -2174.300581422983]]}, {"length": 231.724362809, "source": 2217880492, "destination": 2423711611, "path": [[-5834.160723509285, -2217.2005814233844], [-5772.210723506532, -2300.550581423977], [-5738.560723507646, -2339.050581422697], [-5698.210723508623, -2381.3505814231917], [-5643.160723508345, -2431.1505814225143], [-5587.110723510591, -2477.200581420647], [-5544.810723506544, -2508.100581422923], [-5486.710723509703, -2547.7005814238396], [-5392.110723505539, -2607.100581421662], [-5168.110723509755, -2738.3005814236585], [-5036.310723511406, -2816.350581422711], [-4922.060723508537, -2884.00058142102], [-4846.310723507941, -2929.20058142343]]}, {"length": 90.8410519042, "source": 2217880492, "destination": 2423711605, "path": [[-5834.160723509285, -2217.2005814233844], [-5891.860723508557, -2127.550581423776], [-5943.710723506967, -2011.2505814218196], [-5971.46072350796, -1925.5505814221863], [-5993.110723508721, -1829.1505814218567]]}, {"length": 12.6542200548, "source": 3715980772, "destination": 2312746776, "path": [[-3333.5107235075156, 4282.649418577477], [-3333.410723506347, 4225.7494185768965]]}, {"length": 95.7490548557, "source": 3715980772, "destination": 3661057640, "path": [[-3333.5107235075156, 4282.649418577477], [-2764.7107235111434, 4284.699418576565]]}, {"length": 14.9226903606, "source": 3715980772, "destination": 135035730, "path": [[-3333.5107235075156, 4282.649418577477], [-3422.1607235096485, 4282.349418577524]]}, {"length": 12.9209878317, "source": 3715980772, "destination": 2312746775, "path": [[-3333.5107235075156, 4282.649418577477], [-3333.660723505716, 4340.749418577871]]}, {"length": 940.740782802, "source": 2217880510, "destination": 2495519674, "path": [[-4503.16072350887, -3127.500581420861], [-4533.010723505981, -3156.2505814228816], [-4548.410723508312, -3171.2005814235054], [-4658.060723507162, -3107.0005814228807], [-4790.260723510187, -3027.5505814216785], [-4965.610723509428, -2923.5505814213525], [-5074.310723507835, -2859.150581421943], [-5254.210723506958, -2752.950581420777], [-5311.010723509924, -2722.600581421375], [-5433.160723505636, -2650.600581421969], [-5520.460723509757, -2595.6505814228594], [-5664.910723510275, -2495.2505814219703], [-5751.460723509183, -2416.5505814224275], [-5795.210723505306, -2371.1505814212333], [-5831.310723507954, -2329.500581421229], [-5866.310723504853, -2285.4005814210154], [-5901.360723505888, -2237.8505814231175], [-5931.760723505875, -2189.5505814235603], [-5958.210723505886, -2142.7005814231848], [-5985.360723506972, -2093.0505814220624], [-6009.8107235049265, -2030.2005814230029], [-6029.4107235066, -1978.9505814209463], [-6046.110723509912, -1919.550581423124], [-6062.0607235080115, -1829.1005814212724], [-6070.510723510835, -1731.6505814228833], [-6080.760723506273, -1260.950581421838], [-6084.210723507511, -1233.5505814213832], [-6090.010723511341, -1211.3005814207156], [-6093.510723509609, -1184.8005814236728], [-6091.260723508185, -884.7505814237877], [-6087.510723510548, -859.8005814235421], [-6073.960723504968, -828.3505814219438], [-6067.11072350663, -800.100581422214], [-6066.310723511492, -624.5005814236038], [-6077.060723505667, -600.2005814238487], [-6124.860723510039, -538.8005814239705], [-6130.210723505059, -222.10058142135836], [-6138.260723510313, 56.99941857884028], [-6107.410723508621, 310.7494185776716], [-6102.910723505773, 504.0494185770683]]}, {"length": 72.6654837991, "source": 2217880510, "destination": 2423711611, "path": [[-4503.16072350887, -3127.500581420861], [-4711.760723509428, -3008.450581422295], [-4846.310723507941, -2929.20058142343]]}, {"length": 141.093134476, "source": 2217880510, "destination": 1667926869, "path": [[-4503.16072350887, -3127.500581420861], [-4471.610723506103, -3096.7505814238903], [-4456.610723508447, -3094.4505814218815], [-4430.610723510143, -3096.300581422184], [-4420.160723505262, -3095.6005814211094], [-4408.310723505338, -3093.800581421391], [-4373.46072350664, -3069.800581421589], [-4325.910723508741, -3014.6005814231103], [-4299.260723506393, -2971.4505814233407], [-4264.160723508326, -2917.650581423459], [-4209.510723505617, -2829.1505814230786], [-4188.760723508267, -2785.950581422725], [-4175.86072350673, -2744.7005814238423], [-4169.310723504794, -2679.2505814228207], [-4168.360723511455, -2593.0505814208973]]}, {"length": 22.9146681127, "source": 2217880510, "destination": 1667837790, "path": [[-4503.16072350887, -3127.500581420861], [-4394.460723510463, -3189.55058142123]]}, {"length": 271.924760944, "source": 4719995859, "destination": 134937129, "path": [[2529.7392764898063, -1738.7505814205895], [2540.689276493424, -1787.000581423115], [2546.2392764907804, -1830.6505814216223], [2549.33927649148, -1855.1005814231303], [2556.839276493861, -2656.1005814222935], [2564.139276493904, -2960.400581422107]]}, {"length": 35.8569505733, "source": 4719995859, "destination": 4720011123, "path": [[2529.7392764898063, -1738.7505814205895], [2316.6892764905356, -1738.6005814223893]]}, {"length": 5.62287104712, "source": 4719995860, "destination": 4719999032, "path": [[2246.489276494401, -1738.550581421805], [2234.489276489171, -1714.9505814231247]]}, {"length": 11.8147898521, "source": 4719995860, "destination": 4720011123, "path": [[2246.489276494401, -1738.550581421805], [2316.6892764905356, -1738.6005814223893]]}, {"length": 22.9072032081, "source": 4719995860, "destination": 4720000117, "path": [[2246.489276494401, -1738.550581421805], [2244.289276490008, -1752.4005814237853], [2245.439276492789, -1827.1005814227692], [2229.389276493521, -1834.75058142335]]}, {"length": 42.4914223447, "source": 1959922645, "destination": 1428268292, "path": [[-7981.3107235082725, -7007.900581420756], [-8016.860723508045, -6962.700581421899], [-8115.560723510384, -6846.100581423542]]}, {"length": 63.4160229384, "source": 4719995863, "destination": 4720000117, "path": [[2040.3892764946363, -2067.5005814219103], [2136.589276489076, -1878.8005814229791], [2229.389276493521, -1834.75058142335]]}, {"length": 139.838924692, "source": 135031769, "destination": 135038393, "path": [[-11382.310723504928, -3666.0005814219685], [-11382.560723511404, -3037.2005814207623]]}, {"length": 319.455290428, "source": 135031769, "destination": 135031786, "path": [[-11382.310723504928, -3666.0005814219685], [-12593.660723510424, -3658.6005814207565], [-12655.66072351021, -3664.6005814233718], [-12715.1607235092, -3679.10058142229], [-12950.160723505633, -3770.2005814210793], [-13018.660723510322, -3793.600581420975], [-13217.660723505276, -3869.1005814222026]]}, {"length": 577.820361098, "source": 135031769, "destination": 135020785, "path": [[-11382.310723504928, -3666.0005814219685], [-10714.160723509282, -3669.600581421406], [-10644.660723507115, -3668.1005814216405], [-10587.660723508918, -3659.6005814217847], [-10246.660723510104, -3559.1005814232803], [-10202.660723507506, -3539.100581424037], [-10164.160723505232, -3515.600581422973], [-10130.16072350581, -3488.1005814213495], [-10095.660723507648, -3449.1005814238915], [-10074.160723505087, -3415.1005814209157], [-10056.160723507901, -3370.100581420843], [-10049.160723511362, -3323.600581421005], [-10052.160723510895, -3276.6005814224286], [-10066.160723511075, -3230.6005814213277], [-10088.160723505269, -3190.100581420552], [-10549.160723506646, -2504.1005814223636], [-10584.660723509387, -2467.600581422147], [-10619.160723507548, -2442.100581422579], [-10656.66072350524, -2421.600581421046], [-10710.160723505169, -2401.6005814218033], [-10814.160723505494, -2379.100581421767], [-11165.060723506314, -2306.9005814235766]]}, {"length": 62.2782664853, "source": 135064538, "destination": 135064546, "path": [[1395.089276492456, -3197.6005814229325], [1488.28927649447, -3185.150581423102], [1628.339276493307, -3181.600581420696], [1763.589276492894, -3179.2505814216556]]}, {"length": 78.8188239233, "source": 135064538, "destination": 135064774, "path": [[1395.089276492456, -3197.6005814229325], [926.8392764951727, -3204.4005814206857]]}, {"length": 9.63863503846, "source": 1962186575, "destination": 1962186595, "path": [[6988.989276493385, 2224.2994185788234], [6943.9392764891745, 2197.5494185788593]]}, {"length": 39.4887851923, "source": 1962186576, "destination": 1962191321, "path": [[6644.539276493333, 2307.699418576448], [6614.039276492178, 2319.3494185775876], [6550.3392764938435, 2311.2494185788537], [6470.98927649381, 2227.799418577092]]}, {"length": 56.068721835, "source": 1962186576, "destination": 1962186595, "path": [[6644.539276493333, 2307.699418576448], [6683.4392764931745, 2295.7494185789074], [6766.239276494445, 2261.4994185765627], [6943.9392764891745, 2197.5494185788593]]}, {"length": 15.2311467534, "source": 1962186576, "destination": 1962191310, "path": [[6644.539276493333, 2307.699418576448], [6631.289276491259, 2375.4494185794783]]}, {"length": 8.31105352671, "source": 135064546, "destination": 135064786, "path": [[1763.589276492894, -3179.2505814216556], [1765.3392764884757, -3216.6005814211476]]}, {"length": 135.525109231, "source": 135064546, "destination": 135064548, "path": [[1763.589276492894, -3179.2505814216556], [2568.8392764919854, -3173.950581423668]]}, {"length": 94.5493992376, "source": 135064546, "destination": 135047215, "path": [[1763.589276492894, -3179.2505814216556], [1764.839276489738, -2754.1005814235577]]}, {"length": 46.8710948019, "source": 135064548, "destination": 134937145, "path": [[2568.8392764919854, -3173.950581423668], [2847.339276492278, -3175.100581422896]]}, {"length": 8.83256729933, "source": 135064548, "destination": 135064790, "path": [[2568.8392764919854, -3173.950581423668], [2572.839276488992, -3213.550581421032]]}, {"length": 319.455290428, "source": 135031786, "destination": 135031769, "path": [[-13217.660723505276, -3869.1005814222026], [-13018.660723510322, -3793.600581420975], [-12950.160723505633, -3770.2005814210793], [-12715.1607235092, -3679.10058142229], [-12655.66072351021, -3664.6005814233718], [-12593.660723510424, -3658.6005814207565], [-11382.310723504928, -3666.0005814219685]]}, {"length": 20.0875388053, "source": 135031786, "destination": 2267903931, "path": [[-13217.660723505276, -3869.1005814222026], [-13168.910723507564, -3951.5505814229355]]}, {"length": 323.036250667, "source": 135064558, "destination": 135084837, "path": [[3930.589276492924, -3188.550581423755], [3926.3392764894434, -2735.6005814205273], [3924.8392764932305, -2293.6005814209184], [3922.539276494774, -1736.0005814239798]]}, {"length": 93.6638034204, "source": 135064558, "destination": 1277679767, "path": [[3930.589276492924, -3188.550581423755], [4062.389276491274, -3196.2505814213673], [4213.739276494266, -3209.75058142281], [4350.189276493666, -3228.5505814222406], [4479.489276491222, -3252.9505814231643]]}, {"length": 60.7800332479, "source": 2069036953, "destination": 134985689, "path": [[4608.689276494715, 5134.599418578745], [4606.789276493828, 5407.899418578665]]}, {"length": 121.435666299, "source": 2069036953, "destination": 2069036476, "path": [[4608.689276494715, 5134.599418578745], [3887.339276488433, 5129.499418575989]]}, {"length": 61.4252054002, "source": 2069036953, "destination": 134954311, "path": [[4608.689276494715, 5134.599418578745], [4610.789276490834, 4858.399418576909]]}, {"length": 28.8441278246, "source": 2140998641, "destination": 135043161, "path": [[-1173.9107235086976, -835.8005814237401], [-1174.710723510941, -706.1005814215093]]}, {"length": 93.664455916, "source": 2140998641, "destination": 135016386, "path": [[-1173.9107235086976, -835.8005814237401], [-1164.9107235101042, -899.3505814238745], [-1161.6607235112042, -1256.6005814207415]]}, {"length": 53.9074447958, "source": 135064564, "destination": 2573122345, "path": [[5837.0392764928165, -3165.9505814225495], [5837.189276491017, -2923.5505814213525]]}, {"length": 12.1983718467, "source": 135064564, "destination": 2573122347, "path": [[5837.0392764928165, -3165.9505814225495], [5836.889276494617, -3220.8005814240437]]}, {"length": 166.412340254, "source": 135064564, "destination": 135064566, "path": [[5837.0392764928165, -3165.9505814225495], [5957.589276491149, -3152.500581421691], [6063.089276494793, -3146.0505814209228], [6180.689276490625, -3143.700581421882], [6824.13927648895, -3139.7505814219076]]}, {"length": 30.4788574615, "source": 135064566, "destination": 2086854491, "path": [[6824.13927648895, -3139.7505814219076], [6824.489276489487, -3002.7005814226013]]}, {"length": 83.8197612502, "source": 135064566, "destination": 2080592187, "path": [[6824.13927648895, -3139.7505814219076], [7322.189276493418, -3140.3005814212293]]}, {"length": 12.5106026215, "source": 135064566, "destination": 135064822, "path": [[6824.13927648895, -3139.7505814219076], [6823.339276493812, -3196.0005814219985]]}, {"length": 32.3429785712, "source": 4719897593, "destination": 4719884098, "path": [[-600.9107235058764, -3744.900581423849], [-648.8107235114171, -3798.05058142324], [-649.1107235078175, -3879.1505814224083]]}, {"length": 99.3425144638, "source": 4719897593, "destination": 4719907357, "path": [[-600.9107235058764, -3744.900581423849], [-600.16072350777, -3592.700581421582], [-600.610723509476, -3502.650581420852], [-600.4607235112758, -3449.6505814232137], [-605.7107235051262, -3438.750581423733], [-607.1607235114129, -3414.2505814216406], [-627.2107235076874, -3395.950581420948], [-627.9107235087622, -3304.4005814240054]]}, {"length": 5.18246602163, "source": 4719897593, "destination": 4719850327, "path": [[-600.9107235058764, -3744.900581423849], [-583.5607235056273, -3725.6505814227125]]}, {"length": 6.8274352399, "source": 134982657, "destination": 135099936, "path": [[264.3392764909436, 426.59941857792205], [264.5392764932808, 395.89941857798294]]}, {"length": 124.881489719, "source": 134982657, "destination": 135051131, "path": [[264.3392764909436, 426.59941857792205], [1006.2892764892695, 428.89941857637837]]}, {"length": 60.9689506599, "source": 134982659, "destination": 2086723445, "path": [[257.3892764914376, 1521.3494185779552], [259.0892764899877, 1247.1994185787594]]}, {"length": 111.933665376, "source": 134982659, "destination": 2080617415, "path": [[257.3892764914376, 1521.3494185779552], [922.3892764893549, 1523.7494185775802]]}, {"length": 8.08636032926, "source": 2029677572, "destination": 1933539699, "path": [[4642.339276493602, -7053.950581422441], [4672.839276494756, -7054.050581423609], [4690.389276490237, -7054.150581421226]]}, {"length": 44.5448527353, "source": 2029677572, "destination": 135010301, "path": [[4642.339276493602, -7053.950581422441], [4642.139276491263, -7086.650581420883], [4642.389276490632, -7254.2505814219285]]}, {"length": 45.812822496, "source": 2029677572, "destination": 135010295, "path": [[4642.339276493602, -7053.950581422441], [4643.139276488739, -6911.800581423932], [4654.689276492263, -6848.550581423751]]}, {"length": 121.336395993, "source": 134982661, "destination": 135025171, "path": [[253.88927649316884, 2065.8994185787096], [-466.96072350727036, 2063.2994185767475]]}, {"length": 59.3566659819, "source": 134982661, "destination": 2086723499, "path": [[253.88927649316884, 2065.8994185787096], [255.58927649171892, 1798.9994185789726]]}, {"length": 60.6688665025, "source": 134982662, "destination": 2086776683, "path": [[250.33927649076304, 2625.099418576582], [252.08927649345014, 2352.299418578951]]}, {"length": 111.154715944, "source": 134982662, "destination": 2080617359, "path": [[250.33927649076304, 2625.099418576582], [910.6892764947361, 2627.499418576207]]}, {"length": 1802.88553287, "source": 1567588865, "destination": 2089552344, "path": [[-2681.360723506998, -862.8005814230733], [-2691.9107235059414, -1003.6005814235693], [-2699.710723511828, -1068.2505814223475], [-2706.7107235083654, -1128.4505814224133], [-2743.2107235085823, -1254.4005814234538], [-2778.010723510249, -1357.6505814221207], [-2818.7107235098097, -1466.6505814240338], [-2849.5607235115017, -1534.1505814205902], [-2887.7107235061317, -1609.6005814212333], [-2924.310723507517, -1677.6005814236328], [-2956.260723507853, -1732.450581421574], [-3012.2107235115436, -1819.250581423404], [-3125.010723508126, -1992.5005814229735], [-3231.5107235092455, -2154.850581423062], [-3347.760723507065, -2330.500581422257], [-3460.3607235084155, -2497.8505814239325], [-4265.810723509844, -3700.7505814230512], [-4413.460723505124, -3915.4505814238405], [-4677.860723511174, -4306.5505814219305], [-4748.160723508477, -4418.250581423422], [-4805.060723505505, -4520.100581423492], [-4926.8107235107545, -4766.55058142228], [-4968.710723510128, -4861.000581421138], [-5003.510723511795, -4956.700581423946], [-5046.860723510349, -5093.150581423344], [-5067.560723510667, -5177.000581422675], [-5088.510723510353, -5276.7005814224885], [-5107.9607235067215, -5398.00058142248], [-5118.710723508002, -5513.100581421071], [-5128.360723510639, -5729.450581423379], [-5130.660723509095, -5796.700581420566], [-5130.660723509095, -6117.200581421401], [-5124.210723508327, -6829.550581421983], [-5121.060723510595, -7237.100581424016], [-5118.960723507371, -7464.150581423468], [-5123.61072350842, -7799.95058142191], [-5117.310723505852, -8573.500581423588]]}, {"length": 157.458428753, "source": 1567588865, "destination": 2089552574, "path": [[-2681.360723506998, -862.8005814230733], [-2709.410723511496, -917.1505814222769], [-2722.9607235099706, -959.2005814234028], [-2733.660723507114, -1019.6505814228374], [-2740.060723510851, -1069.3005814239598], [-2747.9107235066635, -1114.050581421111], [-2766.9607235054627, -1167.050581422302], [-2801.860723508298, -1243.9505814221263], [-2822.26072350511, -1273.8505814233747], [-2842.2607235114583, -1314.9005814234727], [-2856.810723507408, -1354.8005814207897], [-2884.7107235066005, -1463.6005814239184], [-2921.5107235103233, -1543.4005814221052]]}, {"length": 59.5223203952, "source": 134982666, "destination": 2069036672, "path": [[245.08927648980716, 3744.3494185787076], [-108.51072350703816, 3743.0994185783106]]}, {"length": 119.86137834, "source": 134982666, "destination": 134985969, "path": [[245.08927648980716, 3744.3494185787076], [434.5892764945347, 3745.0494185762295], [759.2892764947123, 3746.249418576042], [957.1392764939901, 3746.949418577117]]}, {"length": 61.7696351032, "source": 134982666, "destination": 2069407003, "path": [[245.08927648980716, 3744.3494185787076], [243.3392764942255, 4022.0994185773407]]}, {"length": 63.748983589, "source": 134982666, "destination": 2069036655, "path": [[245.08927648980716, 3744.3494185787076], [246.93927649366287, 3457.6994185790963]]}, {"length": 119.694869859, "source": 134982669, "destination": 134985972, "path": [[241.58927649153839, 4295.699418577215], [952.6392764911407, 4298.299418579177]]}, {"length": 60.8467246798, "source": 134982669, "destination": 2069407003, "path": [[241.58927649153839, 4295.699418577215], [243.3392764942255, 4022.0994185773407]]}, {"length": 122.489224878, "source": 134982669, "destination": 135025220, "path": [[241.58927649153839, 4295.699418577215], [-486.06072351020657, 4293.049418578221]]}, {"length": 61.0913746882, "source": 134982669, "destination": 2069037023, "path": [[241.58927649153839, 4295.699418577215], [239.83927648885128, 4570.399418579285]]}, {"length": 1.16271683549, "source": 4614343694, "destination": 4614343704, "path": [[9309.839276490095, 6202.799418577598], [9308.239276492714, 6197.699418578395]]}, {"length": 1.16271683549, "source": 4614343694, "destination": 4614343704, "path": [[9309.839276490095, 6202.799418577598], [9308.239276492714, 6197.699418578395]]}, {"length": 8.82126915544, "source": 4614343694, "destination": 4614343699, "path": [[9309.839276490095, 6202.799418577598], [9314.289276488807, 6208.449418576123], [9321.039276493082, 6212.69941857605], [9329.239276489432, 6214.949418577476], [9337.989276488657, 6214.99941857806], [9346.239276489143, 6212.7994185772195], [9353.03927649045, 6208.64941857846]]}, {"length": 60.857832813, "source": 134982672, "destination": 2068877120, "path": [[234.58927649500083, 5394.89941857596], [232.83927649231373, 5668.549418576418]]}, {"length": 122.499893489, "source": 134982672, "destination": 134985673, "path": [[234.58927649500083, 5394.89941857596], [-493.0607235067441, 5388.599418576945]]}, {"length": 60.3797557778, "source": 134982672, "destination": 2069036970, "path": [[234.58927649500083, 5394.89941857596], [236.3392764905825, 5123.399418579311]]}, {"length": 119.361665988, "source": 134982672, "destination": 134985675, "path": [[234.58927649500083, 5394.89941857596], [943.6392764925472, 5396.899418578016]]}, {"length": 64.2381146572, "source": 134982675, "destination": 2068877120, "path": [[231.03927649259504, 5957.39941857687], [232.83927649231373, 5668.549418576418]]}, {"length": 64.6715186679, "source": 134982675, "destination": 2069036673, "path": [[231.03927649259504, 5957.39941857687], [229.53927648927674, 6248.199418578793]]}, {"length": 119.20371243, "source": 134982675, "destination": 134985974, "path": [[231.03927649259504, 5957.39941857687], [939.1392764896977, 5959.399418578925]]}, {"length": 122.504933164, "source": 134982675, "destination": 135025223, "path": [[231.03927649259504, 5957.39941857687], [-496.6607235061815, 5953.849418578016]]}, {"length": 22.7870710797, "source": 4614343701, "destination": 4614339579, "path": [[9310.53927649117, 6187.54941857702], [9300.989276489701, 6165.449418578106], [9281.689276491534, 6150.849418578019], [9240.03927649153, 6140.0494185761545], [9211.039276493693, 6127.599418576324]]}, {"length": 14.7347987337, "source": 4614343701, "destination": 4614343699, "path": [[9310.53927649117, 6187.54941857702], [9315.539276492756, 6182.149418577865], [9322.6892764946, 6178.2994185790585], [9331.089276493287, 6176.49941857934], [9339.839276492512, 6176.949418577493], [9347.83927649363, 6179.549418579455], [9354.239276490262, 6184.099418579336], [9358.239276494372, 6189.949418576645], [9359.439276494186, 6196.499418578583], [9357.639276494467, 6202.999418576383], [9353.03927649045, 6208.64941857846]]}, {"length": 1.15493937806, "source": 4614343701, "destination": 4614343703, "path": [[9310.53927649117, 6187.54941857702], [9308.489276492082, 6192.499418578023]]}, {"length": 1.15493937806, "source": 4614343701, "destination": 4614343703, "path": [[9310.53927649117, 6187.54941857702], [9308.489276492082, 6192.499418578023]]}, {"length": 1.15493937806, "source": 4614343703, "destination": 4614343704, "path": [[9308.489276492082, 6192.499418578023], [9308.239276492714, 6197.699418578395]]}, {"length": 1.15493937806, "source": 4614343703, "destination": 4614343704, "path": [[9308.489276492082, 6192.499418578023], [9308.239276492714, 6197.699418578395]]}, {"length": 1.15493937806, "source": 4614343703, "destination": 4614343701, "path": [[9308.489276492082, 6192.499418578023], [9310.53927649117, 6187.54941857702]]}, {"length": 1.15493937806, "source": 4614343703, "destination": 4614343701, "path": [[9308.489276492082, 6192.499418578023], [9310.53927649117, 6187.54941857702]]}, {"length": 1.16271683549, "source": 4614343704, "destination": 4614343694, "path": [[9308.239276492714, 6197.699418578395], [9309.839276490095, 6202.799418577598]]}, {"length": 1.16271683549, "source": 4614343704, "destination": 4614343694, "path": [[9308.239276492714, 6197.699418578395], [9309.839276490095, 6202.799418577598]]}, {"length": 1.15493937806, "source": 4614343704, "destination": 4614343703, "path": [[9308.239276492714, 6197.699418578395], [9308.489276492082, 6192.499418578023]]}, {"length": 1.15493937806, "source": 4614343704, "destination": 4614343703, "path": [[9308.239276492714, 6197.699418578395], [9308.489276492082, 6192.499418578023]]}, {"length": 34.4151089398, "source": 4614343717, "destination": 135033696, "path": [[8810.939276493456, 6135.649418578027], [8811.839276489764, 5980.899418577934]]}, {"length": 23.2287428551, "source": 4614343717, "destination": 2069036662, "path": [[8810.939276493456, 6135.649418578027], [8810.33927649355, 6240.099418576506]]}, {"length": 56.670776842, "source": 4614343717, "destination": 4614339575, "path": [[8810.939276493456, 6135.649418578027], [8858.889276488924, 6134.699418577583], [8993.039276489868, 6136.249418577932], [9080.439276495155, 6133.899418578892], [9145.83927649204, 6122.699418579458]]}, {"length": 5.7590684533, "source": 885378093, "destination": 885378115, "path": [[9965.489276488881, -3130.4005814227767], [9965.489276488881, -3104.500581422087]]}, {"length": 10.397055292, "source": 885378093, "destination": 2086854420, "path": [[9965.489276488881, -3130.4005814227767], [10027.239276489297, -3131.8005814213734]]}, {"length": 120.504070446, "source": 135097404, "destination": 1916976483, "path": [[-716.6607235049582, -7165.1005814210575], [-1122.6607235101937, -7164.100581423582], [-1122.4607235078565, -6929.450581420582]]}, {"length": 55.598131558, "source": 135097404, "destination": 135097406, "path": [[-716.6607235049582, -7165.1005814210575], [-715.1607235087454, -6915.100581423417]]}, {"length": 96.8975033505, "source": 135097404, "destination": 135027023, "path": [[-716.6607235049582, -7165.1005814210575], [-140.86072350494305, -7169.350581420986]]}, {"length": 11.2617593963, "source": 2284260413, "destination": 2285539848, "path": [[-7147.460723508913, 5311.04941857663], [-7080.560723508711, 5311.199418578382]]}, {"length": 104.970532413, "source": 2284260413, "destination": 2284260418, "path": [[-7147.460723508913, 5311.04941857663], [-7166.160723507175, 5310.999418576046], [-7436.810723511655, 5309.549418576864], [-7649.760723509758, 5308.399418577636], [-7771.010723509164, 5308.049418577099]]}, {"length": 48.8657820351, "source": 2284260413, "destination": 1965661566, "path": [[-7147.460723508913, 5311.04941857663], [-7149.910723505571, 5306.499418576749], [-7144.560723510551, 5214.099418576979], [-7129.460723511727, 5092.29941857825]]}, {"length": 13.9981973208, "source": 2284260413, "destination": 1965661559, "path": [[-7147.460723508913, 5311.04941857663], [-7126.760723508596, 5349.149418577781], [-7126.810723505628, 5370.8994185761585]]}, {"length": 96.592311845, "source": 135097406, "destination": 1916976481, "path": [[-715.1607235087454, -6915.100581423417], [-141.16072350844888, -6917.650581421241]]}, {"length": 68.6132987243, "source": 135097406, "destination": 1916976483, "path": [[-715.1607235087454, -6915.100581423417], [-1122.4607235078565, -6929.450581420582]]}, {"length": 55.598131558, "source": 135097406, "destination": 135097404, "path": [[-715.1607235087454, -6915.100581423417], [-716.6607235049582, -7165.1005814210575]]}, {"length": 66.3119061259, "source": 3698428994, "destination": 2074099157, "path": [[9675.989276495045, -4482.1005814235095], [9646.839276491903, -4481.550581420634], [9407.289276488484, -4482.150581420541], [9384.489276492048, -4483.200581422153], [9362.989276489487, -4490.000581423459], [9346.939276490219, -4502.45058142329], [9332.189276491932, -4519.70058142237], [9321.389276493619, -4540.100581422735]]}, {"length": 39.2215486233, "source": 3698428994, "destination": 2086854503, "path": [[9675.989276495045, -4482.1005814235095], [9673.089276489576, -4305.75058142324]]}, {"length": 53.7458269542, "source": 3698428995, "destination": 134979224, "path": [[9742.489276490574, -4495.900581421352], [9745.239276490736, -4599.550581421141], [9746.489276494685, -4737.550581420891]]}, {"length": 79.5275217819, "source": 3698428995, "destination": 134956085, "path": [[9742.489276490574, -4495.900581421352], [9774.239276488572, -4496.200581421306], [9911.539276494352, -4495.350581422031], [9965.189276492481, -4494.350581421003], [10002.73927649431, -4488.250581420772], [10040.239276492002, -4478.850581421057], [10068.389276490563, -4472.750581420825], [10092.58927648915, -4471.000581421691], [10113.989276490542, -4473.750581421854], [10131.489276488992, -4482.150581420541], [10144.839276492236, -4498.1005814221935], [10154.289276492535, -4511.600581423636], [10160.539276490965, -4534.400581423625]]}, {"length": 12.7248897721, "source": 4224950800, "destination": 4224850346, "path": [[6492.189276492865, 4805.9494185785925], [6544.089276488307, 4764.349418579172]]}, {"length": 65.098437897, "source": 4224950800, "destination": 4224950675, "path": [[6492.189276492865, 4805.9494185785925], [6221.089276493785, 4597.1994185762815]]}, {"length": 9.73539596254, "source": 4224950800, "destination": 4224850341, "path": [[6492.189276492865, 4805.9494185785925], [6452.439276493749, 4837.749418577176]]}, {"length": 141.90853024, "source": 4224950800, "destination": 4224963686, "path": [[6492.189276492865, 4805.9494185785925], [6520.839276490165, 4824.399418577485], [6564.439276495194, 4850.399418579344], [6611.939276488954, 4871.949418578935], [6662.889276491058, 4889.049418576264], [6715.739276494049, 4900.849418579156], [6777.739276493832, 4908.2494185768155], [6838.589276490837, 4908.799418576137], [6861.689276490779, 4907.599418576325], [6913.689276494495, 4900.999418577357], [6977.639276492198, 4885.899418578532], [7028.389276491964, 4867.649418578423], [7082.689276494137, 4840.499418577338], [7085.3392764931305, 4839.299418577525], [7134.389276494347, 4805.849418577423], [7193.989276494505, 4751.749418577589], [7215.539276494099, 4732.149418579467]]}, {"length": 95.9948858868, "source": 2442181819, "destination": 2331404992, "path": [[-6011.560723507614, -603.900581420902], [-6012.660723506258, -172.25058142145144]]}, {"length": 30.0421889328, "source": 2442181819, "destination": 2217927122, "path": [[-6011.560723507614, -603.900581420902], [-6009.210723505021, -677.4005814236261], [-6007.260723507102, -738.9505814217046]]}, {"length": 171.359456979, "source": 2442181819, "destination": 2442181843, "path": [[-6011.560723507614, -603.900581420902], [-6052.110723508975, -577.7505814208439], [-6073.360723505061, -557.8005814221854], [-6087.960723505148, -535.2505814215647], [-6091.610723508722, -512.6505814239124], [-6091.710723509891, -486.000581421564], [-6096.460723505004, 34.29941857646668], [-6090.860723510616, 56.24941857718113], [-6079.110723504755, 74.84941857782701], [-6017.210723506139, 122.4494185763092]]}, {"length": 36.1438528097, "source": 2282822845, "destination": 2282822844, "path": [[-8761.010723510764, -1491.100581421989], [-8546.260723505839, -1490.3505814238827]]}, {"length": 94.2045110499, "source": 135098376, "destination": 135057526, "path": [[5246.339276489209, -4589.550581421519], [5246.789276490916, -5013.15058142282]]}, {"length": 108.20582127, "source": 135007358, "destination": 135088456, "path": [[4006.33927649352, 4312.8994185792635], [4649.139276494907, 4310.799418576039]]}, {"length": 56.5655865112, "source": 135007358, "destination": 2069120291, "path": [[4006.33927649352, 4312.8994185792635], [4004.7392764890333, 4058.549418576973]]}, {"length": 141.041050799, "source": 135007358, "destination": 134997404, "path": [[4006.33927649352, 4312.8994185792635], [3168.4892764900496, 4308.899418578704]]}, {"length": 16.7945645885, "source": 2311060673, "destination": 2311060652, "path": [[-3410.3607235067557, 2664.749418578083], [-3469.510723505209, 2665.99941857848], [-3510.0607235065695, 2667.4994185782452]]}, {"length": 32.4361182592, "source": 2311060673, "destination": 2311060525, "path": [[-3410.3607235067557, 2664.749418578083], [-3411.4607235053995, 2810.599418577198]]}, {"length": 110.853860334, "source": 2311060673, "destination": 2311060654, "path": [[-3410.3607235067557, 2664.749418578083], [-3303.26072350573, 2665.749418579111], [-3226.460723510627, 2665.4994185761893], [-3139.560723511181, 2665.99941857848], [-3054.9607235101917, 2665.749418579111], [-2963.8107235072653, 2666.2494185778487], [-2751.8107235096068, 2666.7494185765863]]}, {"length": 30.8079739015, "source": 135097480, "destination": 4224850385, "path": [[7379.339276489816, 4655.399418577844], [7262.139276491553, 4761.799418577794]]}, {"length": 56.2553118355, "source": 135097480, "destination": 4224850363, "path": [[7379.339276489816, 4655.399418577844], [7592.289276495023, 4460.449418576928]]}, {"length": 10.1563165831, "source": 135097480, "destination": 4224963615, "path": [[7379.339276489816, 4655.399418577844], [7425.339276494469, 4684.949418578554]]}, {"length": 48.6684619847, "source": 2292321422, "destination": 2068973896, "path": [[-5717.360723508591, 5934.6494185774645], [-6006.460723504859, 5933.399418577068]]}, {"length": 15.4782607343, "source": 2292321422, "destination": 2292321452, "path": [[-5717.360723508591, 5934.6494185774645], [-5717.160723506254, 5865.049418577683]]}, {"length": 111.608057892, "source": 2292321422, "destination": 2286663050, "path": [[-5717.360723508591, 5934.6494185774645], [-5720.860723506859, 6436.499418576603]]}, {"length": 9.71268811764, "source": 2292321422, "destination": 135031620, "path": [[-5717.360723508591, 5934.6494185774645], [-5659.660723509319, 5934.899418576833]]}, {"length": 30.3371956141, "source": 2586986584, "destination": 2586986580, "path": [[-1109.760723508657, -1375.5505814216917], [-1108.4107235106444, -1390.7505814216847], [-1100.3607235053892, -1412.0505814219086], [-1086.9607235051149, -1434.4005814237448], [-1058.760723509522, -1459.8005814221438], [-1009.1607235054312, -1477.0505814212243]]}, {"length": 18.9615872004, "source": 2586986584, "destination": 2586986589, "path": [[-1109.760723508657, -1375.5505814216917], [-1105.7107235075136, -1359.3005814236392], [-1099.0107235073765, -1348.150581421237], [-1085.6107235071022, -1335.950581420775], [-1072.210723506828, -1324.8005814219255], [-1045.3607235092477, -1309.3005814219794]]}, {"length": 10.7402984799, "source": 2586986584, "destination": 2586986591, "path": [[-1109.760723508657, -1375.5505814216917], [-1173.5607235081602, -1374.5005814236322]]}, {"length": 122.107634137, "source": 135007385, "destination": 134997408, "path": [[3880.839276490633, 5968.399418577519], [3155.4892764944498, 5966.399418579016]]}, {"length": 64.4940767706, "source": 135007385, "destination": 2069036850, "path": [[3880.839276490633, 5968.399418577519], [3878.7892764915455, 6258.399418577199]]}, {"length": 121.352067833, "source": 135007385, "destination": 135033675, "path": [[3880.839276490633, 5968.399418577519], [4601.689276491072, 5964.699418576913]]}, {"length": 51.4287238307, "source": 135007385, "destination": 2068009758, "path": [[3880.839276490633, 5968.399418577519], [3882.6892764944887, 5737.149418578724]]}, {"length": 29.4822189979, "source": 1930367693, "destination": 1930367680, "path": [[7191.289276491375, -8500.400581421985], [7198.139276489712, -8498.450581420513], [7223.7892764945855, -8492.750581421404], [7251.989276490178, -8487.050581422296], [7277.939276491452, -8483.250581420521], [7299.689276493382, -8481.150581420849], [7319.239276490918, -8482.200581422461], [7342.689276491399, -8486.85058142351], [7361.039276489123, -8492.450581421452]]}, {"length": 43.5674967571, "source": 1930367693, "destination": 1930367680, "path": [[7191.289276491375, -8500.400581421985], [7202.639276492562, -8512.300581422494], [7217.6392764902175, -8525.150581423446], [7231.039276490492, -8536.950581422787], [7247.889276492004, -8548.750581422126], [7262.139276491553, -8556.500581423876], [7275.33927648949, -8561.000581423174], [7288.139276489857, -8562.80058142289], [7298.639276491769, -8562.200581422985], [7309.2892764918815, -8560.100581423314], [7319.5392764944245, -8556.200581423924], [7327.439276494374, -8551.000581423552], [7334.739276494418, -8543.35058142297], [7341.439276494555, -8533.650581423302], [7346.939276494879, -8522.45058142387], [7353.289276494479, -8508.750581423641], [7361.039276489123, -8492.450581421452]]}, {"length": 113.299273697, "source": 1930367693, "destination": 1930367611, "path": [[7191.289276491375, -8500.400581421985], [7173.839276489957, -8505.400581423572], [7147.639276489315, -8513.000581423568], [7124.489276492341, -8519.350581423168], [7099.939276493216, -8524.200581423003], [7075.939276489862, -8527.600581423656], [7049.539276493988, -8528.850581424053], [6990.839276490135, -8530.300581423233], [6933.4892764914, -8530.950581423724], [6904.439276489427, -8530.100581420897], [6877.38927648951, -8526.750581420827], [6852.839276490386, -8522.10058142333], [6829.139276490537, -8513.850581422845], [6806.539276489331, -8503.3005814239], [6784.489276491002, -8490.20058142358], [6756.289276488304, -8469.950581421415], [6726.189276491823, -8448.400581421822], [6693.789276489781, -8427.50058142272], [6659.489276493958, -8407.650581421678], [6632.139276490534, -8392.90058142339], [6598.939276493355, -8376.85058142057], [6591.7892764915105, -8373.950581422207]]}, {"length": 0.920433163664, "source": 2292321452, "destination": 2292321458, "path": [[-5717.160723506254, 5865.049418577683], [-5717.110723509222, 5860.899418578924]]}, {"length": 48.7761697873, "source": 2292321452, "destination": 2292321459, "path": [[-5717.160723506254, 5865.049418577683], [-5750.060723507033, 5864.7994185783145], [-5870.410723510133, 5864.449418577778], [-5990.410723505591, 5863.149418576796], [-6006.6107235101645, 5860.799418577755]]}, {"length": 15.4782607343, "source": 2292321452, "destination": 2292321422, "path": [[-5717.160723506254, 5865.049418577683], [-5717.360723508591, 5934.6494185774645]]}, {"length": 21.3463327064, "source": 4253708829, "destination": 2069036676, "path": [[5374.889276488659, 5695.149418578183], [5501.689276492527, 5696.099418578626]]}, {"length": 16.4306878139, "source": 4253708829, "destination": 2069036339, "path": [[5374.889276488659, 5695.149418578183], [5277.28927649207, 5694.449418577107]]}, {"length": 90.112074392, "source": 4253708829, "destination": 2069036339, "path": [[5374.889276488659, 5695.149418578183], [5374.33927649289, 5860.99941857654], [5276.339276491626, 5859.599418577944], [5277.28927649207, 5694.449418577107]]}, {"length": 40.9976000672, "source": 4253708829, "destination": 4253708820, "path": [[5374.889276488659, 5695.149418578183], [5375.389276494502, 5510.799418576795]]}, {"length": 13.1649123942, "source": 2292321457, "destination": 2069376776, "path": [[-5659.210723507613, 5861.199418578877], [-5581.010723510361, 5861.549418579415]]}, {"length": 16.3905961619, "source": 2292321457, "destination": 135031620, "path": [[-5659.210723507613, 5861.199418578877], [-5659.660723509319, 5934.899418576833]]}, {"length": 9.7469612164, "source": 2292321457, "destination": 2292321458, "path": [[-5659.210723507613, 5861.199418578877], [-5717.110723509222, 5860.899418578924]]}, {"length": 97.2411818219, "source": 2292321457, "destination": 2286663412, "path": [[-5659.210723507613, 5861.199418578877], [-5656.460723507451, 5423.949418577933]]}, {"length": 9.7469612164, "source": 2292321458, "destination": 2292321457, "path": [[-5717.110723509222, 5860.899418578924], [-5659.210723507613, 5861.199418578877]]}, {"length": 0.920433163664, "source": 2292321458, "destination": 2292321452, "path": [[-5717.110723509222, 5860.899418578924], [-5717.160723506254, 5865.049418577683]]}, {"length": 97.3529412742, "source": 2292321458, "destination": 2286663414, "path": [[-5717.110723509222, 5860.899418578924], [-5713.710723505017, 5423.149418579243]]}, {"length": 16.1457233869, "source": 2292321459, "destination": 2068973896, "path": [[-6006.6107235101645, 5860.799418577755], [-6006.460723504859, 5933.399418577068]]}, {"length": 48.7761697873, "source": 2292321459, "destination": 2292321452, "path": [[-6006.6107235101645, 5860.799418577755], [-5990.410723505591, 5863.149418576796], [-5870.410723510133, 5864.449418577778], [-5750.060723507033, 5864.7994185783145], [-5717.160723506254, 5865.049418577683]]}, {"length": 57.1082243107, "source": 2292321459, "destination": 2292321462, "path": [[-6006.6107235101645, 5860.799418577755], [-6022.410723510064, 5858.499418579299], [-6167.41072350635, 5858.299418576962], [-6345.5607235098905, 5858.049418577593]]}, {"length": 49.3706235685, "source": 2292321459, "destination": 2068973871, "path": [[-6006.6107235101645, 5860.799418577755], [-6007.110723508902, 5638.799418576923]]}, {"length": 57.1082243107, "source": 2292321462, "destination": 2292321459, "path": [[-6345.5607235098905, 5858.049418577593], [-6167.41072350635, 5858.299418576962], [-6022.410723510064, 5858.499418579299], [-6006.6107235101645, 5860.799418577755]]}, {"length": 47.8043972272, "source": 2292321463, "destination": 2091809040, "path": [[-8587.760723507643, 5851.349418577456], [-8585.460723509186, 5636.399418577298]]}, {"length": 11.0511724224, "source": 2292321463, "destination": 2289072988, "path": [[-8587.760723507643, 5851.349418577456], [-8560.16072350485, 5851.499418579209], [-8522.110723511389, 5851.599418576825]]}, {"length": 16.2347916307, "source": 2292321463, "destination": 134982238, "path": [[-8587.760723507643, 5851.349418577456], [-8588.560723509887, 5924.34941857789]]}, {"length": 10.9846489747, "source": 2292321463, "destination": 1806083095, "path": [[-8587.760723507643, 5851.349418577456], [-8653.010723506326, 5850.949418576334]]}, {"length": 96.8403914658, "source": 2292321468, "destination": 134995770, "path": [[-10615.210723507573, 5784.199418577884], [-10605.960723509612, 5776.749418576088], [-10600.710723508655, 5769.499418576629], [-10596.110723511742, 5760.199418578082], [-10592.710723507536, 5745.499418576827], [-10589.660723510973, 5728.249418577747], [-10586.460723509106, 5708.149418577335], [-10581.910723509225, 5667.24941857899], [-10579.260723510231, 5625.049418576111], [-10579.6607235078, 5562.399418579389], [-10579.5107235096, 5536.099418577578], [-10579.5107235096, 5513.69941857871], [-10580.710723509412, 5492.749418579024], [-10581.560723508686, 5462.449418576653], [-10580.560723511211, 5444.299418577713], [-10578.460723507987, 5408.349418576819], [-10577.410723506375, 5394.199418578438], [-10577.360723509344, 5353.999418577615]]}, {"length": 58.7132475896, "source": 135064770, "destination": 1667939632, "path": [[212.18927648902763, -3214.6505814232287], [215.2392764926958, -2950.6505814218544]]}, {"length": 120.31491166, "source": 135064770, "destination": 135064774, "path": [[212.18927648902763, -3214.6505814232287], [307.53927649129764, -3209.9005814210104], [771.2392764886999, -3206.400581422741], [926.8392764951727, -3204.4005814206857]]}, {"length": 33.2117739863, "source": 135064770, "destination": 2568624518, "path": [[212.18927648902763, -3214.6505814232287], [116.88927649089464, -3213.150581423463], [14.889276492624504, -3211.5005814219444]]}, {"length": 18.6808230045, "source": 135064770, "destination": 2568624511, "path": [[212.18927648902763, -3214.6505814232287], [212.38927649136485, -3298.650581420759]]}, {"length": 111.753626088, "source": 135064774, "destination": 2568599824, "path": [[926.8392764951727, -3204.4005814206857], [1017.4392764952245, -3180.800581422005], [1020.1892764882814, -2934.0005814226797], [1041.4892764885053, -2800.300581423443], [1029.689276492718, -2781.5505814210437], [1029.689276492718, -2753.8005814236044]]}, {"length": 120.31491166, "source": 135064774, "destination": 135064770, "path": [[926.8392764951727, -3204.4005814206857], [771.2392764886999, -3206.400581422741], [307.53927649129764, -3209.9005814210104], [212.18927648902763, -3214.6505814232287]]}, {"length": 78.8188239233, "source": 135064774, "destination": 135064538, "path": [[926.8392764951727, -3204.4005814206857], [1395.089276492456, -3197.6005814229325]]}, {"length": 8.80702039762, "source": 135064774, "destination": 2568624510, "path": [[926.8392764951727, -3204.4005814206857], [927.0892764945415, -3244.000581421602]]}, {"length": 10.6969948865, "source": 2586992587, "destination": 2586992585, "path": [[429.53927648881063, -1867.8005814223297], [473.68927648960835, -1902.4005814216594]]}, {"length": 17.1494492551, "source": 2586992587, "destination": 2586992578, "path": [[429.53927648881063, -1867.8005814223297], [499.5892764938503, -1811.8005814216076]]}, {"length": 10.2327889605, "source": 2586992587, "destination": 2586992595, "path": [[429.53927648881063, -1867.8005814223297], [387.78927649474326, -1901.2505814224312]]}, {"length": 10.7230820779, "source": 2586992587, "destination": 2586992589, "path": [[429.53927648881063, -1867.8005814223297], [385.43927649214993, -1833.000581420663]]}, {"length": 12.4032845968, "source": 4720030764, "destination": 3146325505, "path": [[-5350.0107235109335, -3446.700581420714], [-5361.310723507984, -3444.400581422258], [-5376.360723509777, -3433.6005814239456], [-5396.510723507219, -3406.350581421691]]}, {"length": 8.31105352671, "source": 135064786, "destination": 135064546, "path": [[1765.3392764884757, -3216.6005814211476], [1763.589276492894, -3179.2505814216556]]}, {"length": 62.5964399143, "source": 135064786, "destination": 135064538, "path": [[1765.3392764884757, -3216.6005814211476], [1583.8392764919718, -3215.100581421382], [1482.8392764911769, -3209.600581421057], [1395.089276492456, -3197.6005814229325]]}, {"length": 8.02864183763, "source": 135064786, "destination": 2568624486, "path": [[1765.3392764884757, -3216.6005814211476], [1765.4892764937813, -3252.7005814237955]]}, {"length": 135.900162208, "source": 135064790, "destination": 135064786, "path": [[2572.839276488992, -3213.550581421032], [1765.3392764884757, -3216.6005814211476]]}, {"length": 278.777695448, "source": 135064790, "destination": 134956062, "path": [[2572.839276488992, -3213.550581421032], [2577.7392764894103, -3352.4505814206404], [2580.5392764937096, -4467.050581421717]]}, {"length": 21.5526431563, "source": 135007452, "destination": 2080617398, "path": [[3914.539276493656, 406.2494185781418], [3786.4892764929436, 406.0494185793573]]}, {"length": 59.9789858476, "source": 135007452, "destination": 1429422278, "path": [[3914.539276493656, 406.2494185781418], [3915.839276494637, 136.54941857765834]]}, {"length": 12.2112948323, "source": 135007454, "destination": 2080617409, "path": [[3914.289276494287, 448.1494185775148], [3986.839276493015, 448.3494185762993]]}, {"length": 9.3181919471, "source": 135007454, "destination": 135007452, "path": [[3914.289276494287, 448.1494185775148], [3914.539276493656, 406.2494185781418]]}, {"length": 83.5818495415, "source": 2568599419, "destination": 2568599344, "path": [[-836.0607235076145, -2097.850581421312], [-773.5107235049554, -2138.6505814220413], [-714.5107235118076, -2177.2505814219303], [-663.5107235055671, -2225.9505814226086], [-617.9607235097251, -2272.6505814212314], [-569.6607235066153, -2319.3005814228227], [-499.9107235050815, -2372.40058142163]]}, {"length": 75.0557487187, "source": 2568599419, "destination": 2568599384, "path": [[-836.0607235076145, -2097.850581421312], [-851.3107235117445, -2126.500581422164], [-875.4107235091624, -2171.150581421699], [-894.2107235085928, -2195.5005814220385], [-910.3107235048924, -2213.7505814221468], [-934.4607235064473, -2240.150581421574], [-969.3107235051457, -2274.650581423288], [-1009.5607235101056, -2309.150581421449], [-1055.1607235100846, -2343.6505814231623], [-1081.9607235106332, -2375.6505814205298]]}, {"length": 45.8517949899, "source": 2568599419, "destination": 2568599452, "path": [[-836.0607235076145, -2097.850581421312], [-819.1107235049344, -2065.600581421023], [-800.310723505504, -2031.1005814228622], [-776.2107235080862, -2002.650581420795], [-744.0107235083815, -1970.2005814217216], [-719.8607235068266, -1947.8505814234381], [-690.4607235114213, -1926.4005814214613]]}, {"length": 17.3672171575, "source": 2568599419, "destination": 2568624551, "path": [[-836.0607235076145, -2097.850581421312], [-914.2107235078356, -2046.8505814221771]]}, {"length": 60.5636717916, "source": 135007460, "destination": 2086723464, "path": [[3906.1892764920003, 1569.6994185780966], [4265.989276490245, 1572.0494185771372]]}, {"length": 133.838649328, "source": 135007460, "destination": 134968253, "path": [[3906.1892764920003, 1569.6994185780966], [3905.7892764944313, 1533.2994185790483], [3908.5392764945937, 1260.0994185767433], [3911.489276489988, 967.8994185762235]]}, {"length": 21.2169540263, "source": 135007464, "destination": 2080617380, "path": [[3902.289276489057, 2079.199418577815], [3776.2392764904007, 2078.749418576109]]}, {"length": 113.309683751, "source": 135007464, "destination": 135007460, "path": [[3902.289276489057, 2079.199418577815], [3906.1892764920003, 1569.6994185780966]]}, {"length": 14.2355672485, "source": 844180725, "destination": 3357236920, "path": [[7194.489276493243, 3239.3994185788697], [7110.039276490454, 3242.79941857597]]}, {"length": 258.956766953, "source": 844180725, "destination": 4224850353, "path": [[7194.489276493243, 3239.3994185788697], [7269.589276489796, 3491.149418579198], [7277.1892764933455, 3523.0494185789494], [7278.939276488927, 3780.4494185778026], [7367.489276489891, 3987.5494185785956], [7394.889276490347, 4041.8494185772147], [7469.739276494636, 4118.649418579424], [7698.539276489669, 4292.349418577146]]}, {"length": 2.56325666606, "source": 844180725, "destination": 1962191318, "path": [[7194.489276493243, 3239.3994185788697], [7187.639276494906, 3229.099418579295]]}, {"length": 166.358569795, "source": 135064822, "destination": 2573122347, "path": [[6823.339276493812, -3196.0005814219985], [6113.239276494653, -3196.950581422442], [6022.88927649397, -3201.6005814234913], [5940.639276488469, -3207.650581423138], [5836.889276494617, -3220.8005814240437]]}, {"length": 12.5106026215, "source": 135064822, "destination": 135064566, "path": [[6823.339276493812, -3196.0005814219985], [6824.13927648895, -3139.7505814219076]]}, {"length": 9.06322670498, "source": 1933539611, "destination": 135039780, "path": [[7339.289276494299, -6852.850581420711], [7339.939276491236, -6812.1005814205655]]}, {"length": 51.9677847459, "source": 1933539611, "destination": 1933539610, "path": [[7339.289276494299, -6852.850581420711], [7388.939276488316, -6852.650581421926], [7436.2392764939505, -6851.750581422067], [7508.189276492772, -6852.05058142202], [7625.039276490497, -6852.350581421973], [7648.039276489271, -6851.150581422161]]}, {"length": 49.5454461417, "source": 1933539611, "destination": 1933539612, "path": [[7339.289276494299, -6852.850581420711], [7314.6392764940065, -6852.950581421879], [7107.139276492091, -6854.800581422182], [7044.889276492939, -6855.900581420827]]}, {"length": 44.8924152075, "source": 1933539611, "destination": 1933539706, "path": [[7339.289276494299, -6852.850581420711], [7342.339276490861, -7054.700581420548]]}, {"length": 12.492579443, "source": 844180730, "destination": 135086232, "path": [[7735.539276488624, 4329.049418576147], [7688.339276491262, 4372.399418578254]]}, {"length": 10.3126275948, "source": 844180730, "destination": 4224963696, "path": [[7735.539276488624, 4329.049418576147], [7771.489276493071, 4366.599418577976]]}, {"length": 52.6496968477, "source": 844180730, "destination": 135109653, "path": [[7735.539276488624, 4329.049418576147], [7847.339276494836, 4227.899418577153], [7872.239276494497, 4209.799418578797], [7890.389276489885, 4197.8994185782885], [7919.4392764918575, 4181.399418577314], [7955.639276488569, 4162.8994185778365]]}, {"length": 10.2666426159, "source": 844180730, "destination": 4224850353, "path": [[7735.539276488624, 4329.049418576147], [7698.539276489669, 4292.349418577146]]}, {"length": 121.264868213, "source": 844180731, "destination": 4224963696, "path": [[8224.78927648973, 4789.699418576987], [7943.889276489813, 4546.399418579484], [7771.489276493071, 4366.599418577976]]}, {"length": 229.149329049, "source": 844180731, "destination": 844180732, "path": [[8224.78927648973, 4789.699418576987], [8645.439276492085, 5169.249418578658], [8845.439276491617, 5355.699418576165], [9102.589276494655, 5577.0994185770915]]}, {"length": 170.420388123, "source": 844180731, "destination": 135109653, "path": [[8224.78927648973, 4789.699418576987], [8252.639276491891, 4772.499418578491], [8336.789276491174, 4712.299418578425], [8359.589276494717, 4679.7994185787675], [8366.289276494854, 4662.5494185761345], [8368.939276493848, 4650.349418579225], [8354.189276488454, 4636.149418576707], [8202.689276494368, 4450.399418576722], [8166.83927649109, 4404.699418579128], [8142.089276489628, 4378.549418579069], [8103.339276495091, 4348.099418578499], [8063.5892764888695, 4323.149418578254], [8036.639276490121, 4298.549418578546], [8016.739276492046, 4274.199418578206], [7977.689276494004, 4210.449418579287], [7955.639276488569, 4162.8994185778365]]}, {"length": 229.149329049, "source": 844180732, "destination": 844180731, "path": [[9102.589276494655, 5577.0994185770915], [8845.439276491617, 5355.699418576165], [8645.439276492085, 5169.249418578658], [8224.78927648973, 4789.699418576987]]}, {"length": 99.9050249908, "source": 844180732, "destination": 2140984933, "path": [[9102.589276494655, 5577.0994185770915], [9208.139276488226, 5666.499418577331], [9291.98927649111, 5728.7494185764845], [9358.339276488437, 5772.099418578591], [9392.539276490197, 5788.649418576597], [9430.089276492026, 5802.849418579115], [9442.03927649312, 5804.849418577618], [9459.33927648923, 5805.549418578693], [9473.539276491749, 5804.449418576496], [9492.839276489918, 5799.4494185784615], [9506.18927649316, 5797.049418578837], [9516.989276491473, 5799.399418577877], [9526.089276491235, 5801.849418578086], [9539.13927649097, 5808.299418578855], [9561.589276493976, 5826.5994185759955]]}, {"length": 49.5508818541, "source": 4224950681, "destination": 3357236917, "path": [[6751.139276488516, 3149.2494185769715], [6774.189276491426, 3149.0994185787713], [6800.089276488563, 3149.399418578724], [6820.689276494818, 3151.2494185790274], [6838.789276493173, 3154.749418577296], [6851.9392764940785, 3158.7994185784396], [6867.539276491641, 3163.5994185776894], [6881.389276493621, 3170.049418578458], [6895.939276489571, 3177.0494185785483], [6907.989276491833, 3185.399418576651], [6917.589276490333, 3193.699418577722], [6926.489276494863, 3203.399418577391], [6981.489276491004, 3261.9494185794906]]}, {"length": 60.076387875, "source": 4224950681, "destination": 4224950598, "path": [[6751.139276488516, 3149.2494185769715], [6702.989276490712, 3138.1994185792905], [6661.439276491876, 3125.499418576538], [6629.88927648911, 3110.249418575961], [6601.739276490548, 3094.5494185772304], [6579.4892764898805, 3078.2994185791777], [6559.489276490638, 3061.549418578835], [6542.089276493357, 3044.299418576202], [6526.48927648869, 3026.0494185760936], [6514.439276493533, 3007.2494185766627], [6497.639276489053, 2976.7994185760926]]}, {"length": 22.9101445168, "source": 4224950681, "destination": 4224950789, "path": [[6751.139276488516, 3149.2494185769715], [6615.039276489653, 3149.999418578631]]}, {"length": 40.8418747968, "source": 844180741, "destination": 1429422148, "path": [[10329.18927649007, 6433.549418577655], [10310.13927649127, 6409.499418577269], [10267.639276491991, 6369.249418579415], [10175.339276493389, 6292.0994185766685]]}, {"length": 76.4588942242, "source": 844180741, "destination": 1942315678, "path": [[10329.18927649007, 6433.549418577655], [10305.039276488515, 6447.699418576036], [10288.439276493478, 6453.799418576267], [10271.789276494303, 6457.799418576826], [10253.88927649118, 6460.899418577526], [10235.13927648878, 6462.49941857846], [10218.089276492037, 6461.799418577385], [10201.539276494032, 6459.099418577807], [10184.43927649315, 6454.449418576758], [10167.089276492901, 6448.199418578326], [10150.48927649076, 6438.499418578658], [10049.839276490502, 6359.749418578531], [10040.239276492002, 6356.549418576662], [10030.089276490628, 6355.299418576265], [9937.48927648852, 6354.999418576313]]}, {"length": 229.835636967, "source": 3935046930, "destination": 1429422192, "path": [[6882.489276492265, 1239.1494185770568], [6923.689276490563, 1241.1494185791128], [7063.639276488231, 1273.4994185770177], [7166.289276490545, 1331.9994185785333], [7192.439276494156, 1396.4994185791113], [7195.039276489013, 1532.3494185786046], [7221.639276494329, 1619.3994185762506], [7296.489276491513, 1783.2994185766893], [7312.889276491319, 1852.299418576564], [7373.239276489585, 2106.2494185777323]]}, {"length": 261.457821594, "source": 3935046930, "destination": 1942302122, "path": [[6882.489276492265, 1239.1494185770568], [6765.78927649274, 1233.3994185773633], [6654.439276488233, 1204.4494185765586], [6479.839276494204, 1120.3494185778595], [6358.939276488229, 1051.1494185792003], [6312.089276491406, 1012.3994185775587], [6189.939276488587, 922.09941857746], [5990.53927648896, 755.1494185769059], [5926.839276490626, 684.999418577803], [5882.239276495227, 605.6494185777694], [5859.089276491148, 527.0994185764266], [5855.839276492247, 459.09941857757985]]}, {"length": 88.2351931756, "source": 3935046930, "destination": 3935046934, "path": [[6882.489276492265, 1239.1494185770568], [6868.639276490285, 1210.4994185762052], [6661.289276493676, 1167.449418577604], [6638.939276491839, 1125.099418576525], [6641.9892764884025, 967.1994185787014]]}, {"length": 15.5520084201, "source": 1962186627, "destination": 2271725585, "path": [[6996.939276490366, 3032.4494185762774], [6999.889276492866, 2985.4994185782857], [7003.1392764917655, 2962.699418578296]]}, {"length": 32.7629512806, "source": 1962186627, "destination": 4224850405, "path": [[6996.939276490366, 3032.4494185762774], [7011.6892764886525, 3045.6494185777674], [7021.039276494889, 3060.84941857776], [7027.739276495026, 3070.9994185791347], [7029.0892764930395, 3078.149418577425], [7033.139276494183, 3090.2994185773023], [7082.739276491167, 3141.0494185770685], [7107.789276489029, 3142.799418576203]]}, {"length": 176.35903682, "source": 1962186627, "destination": 1962186551, "path": [[6996.939276490366, 3032.4494185762774], [6976.789276492923, 3019.2494185783403], [6956.689276492511, 3012.1494185770816], [6943.289276492237, 3007.0494185778784], [6925.839276490819, 2993.899418576973], [6911.089276492532, 2984.7494185766263], [6897.689276492258, 2971.5494185786893], [6562.389276489001, 2618.299418578829], [6554.33927649085, 2603.049418578252], [6547.639276490713, 2589.8994185773463], [6539.589276492563, 2577.6994185768845], [6528.889276488315, 2566.5494185780344], [6514.139276490027, 2550.299418576429], [6502.039276490734, 2540.1494185786078], [6460.489276491899, 2499.549418576663], [6366.58927648881, 2406.149418579417]]}, {"length": 238.800942589, "source": 3146325505, "destination": 3357236936, "path": [[-5396.510723507219, -3406.350581421691], [-5421.4107235068805, -3419.600581423765], [-5477.160723508234, -3483.450581423853], [-5543.360723507362, -3582.1005814220543], [-5626.310723506833, -3630.3505814210266], [-5726.010723506647, -3654.950581420735], [-6657.110723509163, -3680.1005814233176]]}, {"length": 165.311761495, "source": 3146325505, "destination": 2423695603, "path": [[-5396.510723507219, -3406.350581421691], [-5413.010723508194, -3393.2005814207855], [-5428.4607235075555, -3385.8505814237105], [-5444.460723509792, -3382.3005814213047], [-5475.360723508516, -3384.050581423992], [-5511.760723507564, -3389.1005814226105], [-5551.610723507849, -3393.2005814207855], [-5593.560723511359, -3390.300581422423], [-5635.010723509026, -3382.10058142252], [-5715.210723508335, -3355.6505814225093], [-5805.06072351028, -3340.4005814219317], [-5937.860723506105, -3338.7005814233817], [-6071.91072350588, -3337.550581420601], [-6116.610723509552, -3329.6005814236196], [-6147.06072350657, -3315.6505814240236], [-6231.760723508728, -3260.600581423745], [-6302.360723509537, -3217.6505814227594]]}, {"length": 12.4032845968, "source": 3146325505, "destination": 4720030764, "path": [[-5396.510723507219, -3406.350581421691], [-5376.360723509777, -3433.6005814239456], [-5361.310723507984, -3444.400581422258], [-5350.0107235109335, -3446.700581420714]]}, {"length": 138.107014689, "source": 3146325505, "destination": 134955039, "path": [[-5396.510723507219, -3406.350581421691], [-5322.310723506973, -3379.500581420558], [-5237.560723507784, -3362.900581421968], [-4972.060723510196, -3368.9505814216145], [-4863.360723511789, -3381.050581420908], [-4805.010723508474, -3396.800581423776], [-4751.3607235103445, -3420.6505814218244], [-4699.710723507167, -3460.750581421479], [-4650.91072350532, -3506.0005814209208]]}, {"length": 11.8406978391, "source": 3935046934, "destination": 134968242, "path": [[6641.9892764884025, 967.1994185787014], [6712.339276489843, 967.3994185774859]]}, {"length": 88.2351931756, "source": 3935046934, "destination": 3935046930, "path": [[6641.9892764884025, 967.1994185787014], [6638.939276491839, 1125.099418576525], [6661.289276493676, 1167.449418577604], [6868.639276490285, 1210.4994185762052], [6882.489276492265, 1239.1494185770568]]}, {"length": 188.403380288, "source": 3935046934, "destination": 134968247, "path": [[6641.9892764884025, 967.1994185787014], [6320.439276493062, 966.2494185782577], [5916.739276493388, 965.0494185784453], [5875.389276489785, 965.4494185760143], [5522.6892764892455, 968.8994185772515]]}, {"length": 6.50706039361, "source": 2292321562, "destination": 134995770, "path": [[-10538.71072350887, 5354.299418577568], [-10577.360723509344, 5353.999418577615]]}, {"length": 54.6447269593, "source": 2292321562, "destination": 134967275, "path": [[-10538.71072350887, 5354.299418577568], [-10335.760723506837, 5355.799418577334], [-10214.11072350986, 5356.39941857724]]}, {"length": 10.9062551552, "source": 2292321562, "destination": 2292321596, "path": [[-10538.71072350887, 5354.299418577568], [-10538.910723511208, 5313.449418576255], [-10539.010723505271, 5305.249418576352]]}, {"length": 346.661105055, "source": 1942220075, "destination": 1295456178, "path": [[5040.789276492319, -2216.3505814205564], [5028.189276494288, -2316.150581421539], [4968.739276492329, -2588.800581420969], [4962.2892764915605, -2680.650581421418], [4961.4892764893175, -2985.000581421815], [4955.2392764908855, -3029.9005814207194], [4938.939276492249, -3079.750581420626], [4915.5392764888, -3133.5005814234764], [4877.589276489402, -3194.9505814239387], [4833.88927649031, -3250.050581421249], [4702.989276488268, -3411.350581423278], [4646.239276489439, -3491.2505814226333], [4581.939276491198, -3571.9505814206796], [4528.3892764942375, -3623.7505814220585], [4473.78927648856, -3668.200581422809]]}, {"length": 243.413333703, "source": 1942220075, "destination": 1429422573, "path": [[5040.789276492319, -2216.3505814205564], [5040.889276493488, -2106.250581423552], [5048.039276488225, -2045.9505814223178], [5067.139276491162, -1965.0505814219343], [5079.639276495129, -1912.150581421912], [5162.839276493969, -1754.8505814239945], [5266.189276490251, -1622.9505814209233], [5349.7392764896285, -1546.7505814221738], [5632.83927649394, -1322.2505814205476], [5692.839276491668, -1289.7505814208898]]}, {"length": 113.106788903, "source": 1942220075, "destination": 1942220078, "path": [[5040.789276492319, -2216.3505814205564], [5058.839276493643, -2268.1005814213504], [5067.189276488193, -2322.850581421676], [5067.489276491699, -2396.6005814237687], [5062.489276490112, -2552.150581422552], [5051.139276488925, -2722.550581420791]]}, {"length": 249.10823596, "source": 1942220075, "destination": 1942224447, "path": [[5040.789276492319, -2216.3505814205564], [5076.53927649443, -2218.300581422028], [5266.989276492495, -2215.2505814219126], [5497.989276491921, -2212.900581422872], [5646.539276490614, -2130.0005814239853], [5695.139276490125, -2092.1005814216187], [5743.4392764932345, -2041.3505814218524], [5752.489276488859, -2024.4505814233094], [5752.789276492365, -1997.7505814239294], [5751.139276490847, -1757.5505814235726], [5747.0892764897035, -1543.4005814221052], [5744.739276494215, -1523.800581423984]]}, {"length": 130.004810447, "source": 1942220078, "destination": 1429422915, "path": [[5051.139276488925, -2722.550581420791], [5047.739276491825, -2802.600581421899], [5050.689276494324, -2970.850581423434], [5044.689276495263, -3049.1505814218553], [5001.439276490772, -3273.800581421682], [4997.839276491333, -3304.450581421037]]}, {"length": 113.106788903, "source": 1942220078, "destination": 1942220075, "path": [[5051.139276488925, -2722.550581420791], [5062.489276490112, -2552.150581422552], [5067.489276491699, -2396.6005814237687], [5067.189276488193, -2322.850581421676], [5058.839276493643, -2268.1005814213504], [5040.789276492319, -2216.3505814205564]]}, {"length": 36.5834152514, "source": 1942220078, "destination": 2139783261, "path": [[5051.139276488925, -2722.550581420791], [5268.489276488708, -2725.000581421]]}, {"length": 50.1903441485, "source": 135035915, "destination": 1937679931, "path": [[5252.939276488178, -5926.200581424013], [5471.939276489479, -5925.450581422354], [5551.089276494281, -5922.400581422238]]}, {"length": 50.8934498397, "source": 135035915, "destination": 1932196124, "path": [[5252.939276488178, -5926.200581424013], [4950.539276492805, -5929.450581422912]]}, {"length": 203.055970686, "source": 135035915, "destination": 135057526, "path": [[5252.939276488178, -5926.200581424013], [5246.789276490916, -5013.15058142282]]}, {"length": 7.01752028455, "source": 135035915, "destination": 1937679935, "path": [[5252.939276488178, -5926.200581424013], [5252.13927649304, -5957.750581423226]]}, {"length": 133.797073697, "source": 2292321589, "destination": 2292321596, "path": [[-9744.21072351106, 5307.9994185765145], [-9871.610723507729, 5307.749418577146], [-10036.610723510365, 5307.049418576071], [-10168.61072351105, 5307.049418576071], [-10319.760723511707, 5306.849418577286], [-10459.1607235065, 5305.899418576842], [-10539.010723505271, 5305.249418576352]]}, {"length": 10.9062551552, "source": 2292321596, "destination": 2292321562, "path": [[-10539.010723505271, 5305.249418576352], [-10538.910723511208, 5313.449418576255], [-10538.71072350887, 5354.299418577568]]}, {"length": 49.3574077437, "source": 2292321596, "destination": 2293563339, "path": [[-10539.010723505271, 5305.249418576352], [-10539.11072350644, 5296.449418576543], [-10538.010723507796, 5184.599418576852], [-10536.760723510952, 5091.649418577759], [-10538.86072350707, 5083.449418577857]]}, {"length": 133.797073697, "source": 2292321596, "destination": 2292321589, "path": [[-10539.010723505271, 5305.249418576352], [-10459.1607235065, 5305.899418576842], [-10319.760723511707, 5306.849418577286], [-10168.61072351105, 5307.049418576071], [-10036.610723510365, 5307.049418576071], [-9871.610723507729, 5307.749418577146], [-9744.21072351106, 5307.9994185765145]]}, {"length": 6.49735766742, "source": 2292321596, "destination": 2292321597, "path": [[-10539.010723505271, 5305.249418576352], [-10577.610723508713, 5304.949418576399]]}, {"length": 49.293067627, "source": 2292321597, "destination": 2293563340, "path": [[-10577.610723508713, 5304.949418576399], [-10578.310723509787, 5181.249418576783], [-10578.060723510418, 5083.299418576104]]}, {"length": 10.9080770144, "source": 2292321597, "destination": 134995770, "path": [[-10577.610723508713, 5304.949418576399], [-10577.360723509344, 5353.999418577615]]}, {"length": 6.49735766742, "source": 2292321597, "destination": 2292321596, "path": [[-10577.610723508713, 5304.949418576399], [-10539.010723505271, 5305.249418576352]]}, {"length": 127.292272246, "source": 134955579, "destination": 134955577, "path": [[-1130.160723505469, -11063.100581420571], [-1886.66072350685, -11069.100581423187]]}, {"length": 364.429026085, "source": 134955579, "destination": 134955577, "path": [[-1130.160723505469, -11063.100581420571], [-1136.1607235116367, -10637.600581421935], [-1346.1607235072393, -10638.600581422963], [-1955.1607235115398, -10632.600581423902], [-1973.1607235087267, -10634.600581422405], [-2024.6607235065994, -10646.60058142053], [-2056.1607235052293, -10660.100581421972], [-2084.6607235114334, -10677.100581421684], [-2119.1607235095944, -10708.600581423867], [-2136.160723509306, -10733.100581422406], [-2151.6607235056995, -10772.100581423416], [-2154.6607235052306, -10799.600581421488], [-2148.1607235074307, -10840.100581422263], [-2136.6607235080437, -10866.100581420567], [-2119.660723508332, -10890.600581422661], [-2098.160723505771, -10912.60058142396], [-2061.660723505554, -10937.100581422499], [-1909.1607235068864, -11054.600581420715], [-1886.66072350685, -11069.100581423187]]}, {"length": 221.301537899, "source": 134955579, "destination": 2573122506, "path": [[-1130.160723505469, -11063.100581420571], [185.03927649504703, -11052.800581420996]]}, {"length": 387.506157035, "source": 1146604909, "destination": 2080585099, "path": [[4532.789276488813, -3331.7505814238757], [4433.039276491968, -3441.4005814227266], [4377.239276493583, -3495.3505814208083], [4322.939276491411, -3543.750581421534], [4263.58927649062, -3593.3505814220725], [4199.189276491211, -3642.5005814209044], [4081.039276492504, -3721.300581421616], [3900.389276495275, -3834.950581421026], [3566.039276492461, -4048.15058142205], [3439.5392764920985, -4125.400581422411], [3296.989276492468, -4224.000581423581], [3160.039276494331, -4333.200581420726], [3050.3892764883744, -4427.900581422506], [2917.1392764908433, -4562.000581422864]]}, {"length": 18.3633201601, "source": 1146604909, "destination": 1277679653, "path": [[4532.789276488813, -3331.7505814238757], [4426.139276489494, -3314.300581422458]]}, {"length": 50.0488937367, "source": 134991215, "destination": 2086854498, "path": [[7927.589276491176, -5440.150581421221], [7927.489276490007, -5215.100581423826]]}, {"length": 49.8653270918, "source": 134991215, "destination": 1935184021, "path": [[7927.589276491176, -5440.150581421221], [8223.889276493424, -5437.850581422765]]}, {"length": 50.1601487141, "source": 134991215, "destination": 2086854470, "path": [[7927.589276491176, -5440.150581421221], [7928.13927649405, -5665.700581420907]]}, {"length": 100.525012704, "source": 134991215, "destination": 134991213, "path": [[7927.589276491176, -5440.150581421221], [7330.2892764886, -5446.200581420868]]}, {"length": 101.077572187, "source": 134991218, "destination": 135019331, "path": [[8519.939276489196, -5435.550581420756], [8516.939276489666, -4981.050581420732]]}, {"length": 49.6730087084, "source": 134991218, "destination": 1935184020, "path": [[8519.939276489196, -5435.550581420756], [8815.089276488663, -5432.700581422978]]}, {"length": 49.8231060667, "source": 134991218, "destination": 1935184021, "path": [[8519.939276489196, -5435.550581420756], [8223.889276493424, -5437.850581422765]]}, {"length": 101.444495217, "source": 134991218, "destination": 135019334, "path": [[8519.939276489196, -5435.550581420756], [8522.939276488727, -5891.700581422299]]}, {"length": 48.5126560295, "source": 134991221, "destination": 2086854484, "path": [[9120.339276492472, -5429.850581421647], [9408.589276489465, -5426.800581421531]]}, {"length": 51.3726141407, "source": 134991221, "destination": 1935184020, "path": [[9120.339276492472, -5429.850581421647], [8815.089276488663, -5432.700581422978]]}, {"length": 101.432989264, "source": 134991221, "destination": 135022844, "path": [[9120.339276492472, -5429.850581421647], [9117.889276488711, -4973.750581420689]]}, {"length": 101.290500499, "source": 134991221, "destination": 135022845, "path": [[9120.339276492472, -5429.850581421647], [9115.789276492593, -5885.300581422115]]}, {"length": 16.8260834494, "source": 3299414702, "destination": 135032858, "path": [[-5019.110723509357, 5937.949418576949], [-4919.160723510175, 5938.399418578655]]}, {"length": 15.8902743576, "source": 3299414702, "destination": 2293563148, "path": [[-5019.110723509357, 5937.949418576949], [-5018.460723505314, 5866.499418576865]]}, {"length": 15.0561729035, "source": 3299414702, "destination": 2703728621, "path": [[-5019.110723509357, 5937.949418576949], [-5019.710723509263, 6005.649418579395]]}, {"length": 94.592999476, "source": 3299414702, "destination": 2069376742, "path": [[-5019.110723509357, 5937.949418576949], [-5581.010723510361, 5935.349418578539]]}, {"length": 50.4828923549, "source": 135081367, "destination": 2658901914, "path": [[5850.83927649066, -6375.100581422544], [5849.839276493185, -6148.100581423677]]}, {"length": 51.1387485689, "source": 135081367, "destination": 2042464563, "path": [[5850.83927649066, -6375.100581422544], [5850.2392764907545, -6605.05058142391]]}, {"length": 250.517588978, "source": 135081367, "destination": 135081370, "path": [[5850.83927649066, -6375.100581422544], [7339.33927649133, -6356.600581423067]]}, {"length": 52.6846316545, "source": 135081370, "destination": 2658901885, "path": [[7339.33927649133, -6356.600581423067], [7338.039276490349, -6119.700581422194]]}, {"length": 50.9273513406, "source": 135081370, "destination": 1937710117, "path": [[7339.33927649133, -6356.600581423067], [7339.03927649493, -6585.600581423989]]}, {"length": 250.517588978, "source": 135081370, "destination": 135081367, "path": [[7339.33927649133, -6356.600581423067], [5850.83927649066, -6375.100581422544]]}, {"length": 61.5512612773, "source": 1942302110, "destination": 1942302137, "path": [[6028.589276489527, 284.5494185770292], [6033.089276492376, 7.7994185794239]]}, {"length": 30.8982012786, "source": 1942302110, "destination": 135108005, "path": [[6028.589276489527, 284.5494185770292], [6028.739276494833, 330.2494185781768], [6037.139276493519, 365.0494185762909], [6082.539276491161, 411.59941857671356]]}, {"length": 38.5264445797, "source": 1942302110, "destination": 1942302134, "path": [[6028.589276489527, 284.5494185770292], [5969.739276494579, 226.74941857658837], [5940.539276494405, 193.54941857940844], [5907.03927649372, 138.74941857849876]]}, {"length": 47.0267763079, "source": 1942302111, "destination": 3009784217, "path": [[6033.439276492913, -467.4005814209181], [6035.789276488402, -643.8005814217718], [6035.639276490201, -678.8505814228074]]}, {"length": 74.8677093204, "source": 1942302111, "destination": 1942302106, "path": [[6033.439276492913, -467.4005814209181], [6033.939276491651, -130.75058142320017]]}, {"length": 45.5395123387, "source": 1942302111, "destination": 1279884614, "path": [[6033.439276492913, -467.4005814209181], [5966.039276493973, -403.25058142087755], [5934.8392764917435, -360.95058142393555], [5891.78927648959, -294.10058142076423]]}, {"length": 37.7535188974, "source": 1942302122, "destination": 1279884665, "path": [[5855.839276492247, 459.09941857757985], [5847.689276492929, 289.44941857744766]]}, {"length": 261.457821594, "source": 1942302122, "destination": 3935046930, "path": [[5855.839276492247, 459.09941857757985], [5859.089276491148, 527.0994185764266], [5882.239276495227, 605.6494185777694], [5926.839276490626, 684.999418577803], [5990.53927648896, 755.1494185769059], [6189.939276488587, 922.09941857746], [6312.089276491406, 1012.3994185775587], [6358.939276488229, 1051.1494185792003], [6479.839276494204, 1120.3494185778595], [6654.439276488233, 1204.4494185765586], [6765.78927649274, 1233.3994185773633], [6882.489276492265, 1239.1494185770568]]}, {"length": 31.9590434555, "source": 1942302122, "destination": 2442184705, "path": [[5855.839276492247, 459.09941857757985], [5781.73927649317, 443.44941857943354], [5758.139276494489, 437.1994185774497], [5675.439276494388, 414.5494185792131]]}, {"length": 41.1710479126, "source": 134985629, "destination": 134985601, "path": [[9644.139276488771, 5242.349418576709], [9633.539276492796, 5297.649418576356], [9628.239276494809, 5339.249418579328], [9621.289276488198, 5426.549418576343]]}, {"length": 63.2039251101, "source": 134985629, "destination": 4253573908, "path": [[9644.139276488771, 5242.349418576709], [9644.539276493448, 5139.799418579116], [9645.78927649029, 4958.149418577306]]}, {"length": 18.6808230045, "source": 2568624511, "destination": 135064770, "path": [[212.38927649136485, -3298.650581420759], [212.18927648902763, -3214.6505814232287]]}, {"length": 32.7935621188, "source": 2568624511, "destination": 2568624517, "path": [[212.38927649136485, -3298.650581420759], [17.53927649161824, -3300.000581422324]]}, {"length": 88.7115609756, "source": 2568624511, "destination": 4719854989, "path": [[212.38927649136485, -3298.650581420759], [213.2892764947769, -3697.550581421183]]}, {"length": 36.2401970962, "source": 1942302134, "destination": 1942302137, "path": [[5907.03927649372, 138.74941857849876], [5929.489276489619, 112.04941857911876], [5957.989276488717, 72.7494185781552], [5991.1892764930035, 39.94941857854428], [6033.089276492376, 7.7994185794239]]}, {"length": 41.4895045314, "source": 1942302134, "destination": 1393207236, "path": [[5907.03927649372, 138.74941857849876], [5884.239276490178, 85.94941857609228], [5873.189276492496, 33.89941857889767], [5862.839276488785, -44.00058142195462]]}, {"length": 38.5264445797, "source": 1942302134, "destination": 1942302110, "path": [[5907.03927649372, 138.74941857849876], [5940.539276494405, 193.54941857940844], [5969.739276494579, 226.74941857658837], [6028.589276489527, 284.5494185770292]]}, {"length": 34.9956686254, "source": 1942302134, "destination": 1279884665, "path": [[5907.03927649372, 138.74941857849876], [5881.239276490646, 194.24941857693057], [5847.689276492929, 289.44941857744766]]}, {"length": 30.8125080242, "source": 1942302137, "destination": 1942302106, "path": [[6033.089276492376, 7.7994185794239], [6033.939276491651, -130.75058142320017]]}, {"length": 36.2401970962, "source": 1942302137, "destination": 1942302134, "path": [[6033.089276492376, 7.7994185794239], [5991.1892764930035, 39.94941857854428], [5957.989276488717, 72.7494185781552], [5929.489276489619, 112.04941857911876], [5907.03927649372, 138.74941857849876]]}, {"length": 61.5512612773, "source": 1942302137, "destination": 1942302110, "path": [[6033.089276492376, 7.7994185794239], [6028.589276489527, 284.5494185770292]]}, {"length": 6.95300778927, "source": 4253708874, "destination": 4253708826, "path": [[5375.289276493333, 5410.249418577706], [5333.989276493867, 5410.099418575954]]}, {"length": 22.3612747379, "source": 4253708874, "destination": 4253708820, "path": [[5375.289276493333, 5410.249418577706], [5375.389276494502, 5510.799418576795]]}, {"length": 21.58168662, "source": 4253708874, "destination": 134985694, "path": [[5375.289276493333, 5410.249418577706], [5503.489276492246, 5410.899418578197]]}, {"length": 15.7452639356, "source": 2316883514, "destination": 2312746297, "path": [[-3341.8607235091713, 5943.149418577321], [-3342.4107235049405, 5872.349418577727]]}, {"length": 15.8567750908, "source": 2316883514, "destination": 2316883507, "path": [[-3341.8607235091713, 5943.149418577321], [-3342.7107235084463, 6014.449418579205]]}, {"length": 95.317064931, "source": 2316883514, "destination": 2316883513, "path": [[-3341.8607235091713, 5943.149418577321], [-2775.660723507656, 5945.899418577483]]}, {"length": 15.3019896787, "source": 2316883514, "destination": 135033673, "path": [[-3341.8607235091713, 5943.149418577321], [-3432.7607235056234, 5943.249418578489]]}, {"length": 13.3768032719, "source": 2289073168, "destination": 2289073161, "path": [[-8520.010723508165, 5362.549418578055], [-8520.210723510501, 5422.699418577537]]}, {"length": 11.0692434025, "source": 2289073168, "destination": 134982235, "path": [[-8520.010723508165, 5362.549418578055], [-8585.760723505588, 5362.099418576349]]}, {"length": 13.477632229, "source": 2289073168, "destination": 2289073174, "path": [[-8520.010723508165, 5362.549418578055], [-8519.910723506997, 5343.499418579257], [-8519.610723510596, 5301.949418576868]]}, {"length": 88.5242234099, "source": 2289073168, "destination": 2289073167, "path": [[-8520.010723508165, 5362.549418578055], [-7994.160723505673, 5365.949418578708]]}, {"length": 164.715784476, "source": 2292321739, "destination": 2293563339, "path": [[-9560.460723506025, 5083.649418576641], [-9643.860723507203, 5081.549418576969], [-9767.610723507403, 5080.64941857711], [-9898.110723504771, 5080.849418579447], [-10078.1607235092, 5081.549418576969], [-10294.510723511507, 5082.499418577413], [-10404.06072350919, 5084.0994185783475], [-10538.86072350707, 5083.449418577857]]}, {"length": 122.093203474, "source": 135016280, "destination": 135016282, "path": [[7541.339276492919, -1771.100581422047], [7544.339276492451, -2320.1005814215137]]}, {"length": 61.8591582623, "source": 135016280, "destination": 2086854468, "path": [[7541.339276492919, -1771.100581422047], [7538.9392764932945, -1492.950581422292]]}, {"length": 58.4776831907, "source": 135016280, "destination": 2086854461, "path": [[7541.339276492919, -1771.100581422047], [7193.889276493337, -1772.5505814212283]]}, {"length": 115.287283336, "source": 4719463893, "destination": 4719461082, "path": [[-4199.710723504779, -2511.900581421145], [-4037.4607235094118, -2513.8005814220323], [-4025.1107235107497, -2527.600581423428], [-3869.310723509045, -2583.5505814235657], [-3849.560723509171, -2570.850581420814], [-3821.960723506379, -2564.9005814223356], [-3796.810723507349, -2566.00058142098], [-3781.0607235115867, -2568.250581422404], [-3754.910723507976, -2551.2505814226924], [-3709.0107235115966, -2550.850581421571], [-3676.760723507755, -2527.000581423522], [-3638.8107235083567, -2451.3005814235103]]}, {"length": 23.3742307707, "source": 4719463893, "destination": 2424998429, "path": [[-4199.710723504779, -2511.900581421145], [-4200.210723510622, -2492.8505814223454], [-4207.910723508235, -2407.0005814209594]]}, {"length": 18.8024890021, "source": 4719463893, "destination": 1667926869, "path": [[-4199.710723504779, -2511.900581421145], [-4168.360723511455, -2593.0505814208973]]}, {"length": 16.8270013927, "source": 4719463893, "destination": 2184804575, "path": [[-4199.710723504779, -2511.900581421145], [-4198.860723505504, -2543.100581423374], [-4208.91072350571, -2586.9005814236343]]}, {"length": 362.42851857, "source": 134933976, "destination": 2089552577, "path": [[-7133.910723510439, -10885.40058142229], [-7882.460723507734, -10760.600581424029], [-8190.960723510443, -10709.450581423142], [-8365.71072350978, -10681.800581423318], [-8528.160723507483, -10659.100581420944], [-8714.660723505574, -10643.600581420998], [-8936.660723506408, -10632.600581423902], [-9254.510723508247, -10631.30058142292]]}, {"length": 215.579098891, "source": 2331413982, "destination": 1959922651, "path": [[-8036.260723507383, -9663.600581422572], [-8272.360723509564, -9646.35058142349], [-8512.41072351172, -9637.200581423145], [-8776.960723508864, -9637.050581421392], [-9142.760723506171, -9678.800581422563], [-9311.710723508782, -9685.250581423332]]}, {"length": 120.725271205, "source": 2331413994, "destination": 135045913, "path": [[-9391.860723511058, -10400.25058142291], [-9404.31072351089, -10194.800581423635], [-9404.51072350612, -10070.150581423575], [-9398.16072350652, -9967.000581422524], [-9382.110723507252, -9858.400581421734]]}, {"length": 150.792696617, "source": 2331413994, "destination": 2331414023, "path": [[-9391.860723511058, -10400.25058142291], [-9475.3607235063, -10390.100581421535], [-9585.310723508655, -10374.900581421542], [-9711.46072350848, -10348.500581422115], [-9774.060723508172, -10335.10058142184], [-9808.410723508132, -10335.250581423594], [-9861.560723507522, -10341.400581420856], [-9950.110723508487, -10359.650581420965], [-10029.31072351032, -10374.900581421542], [-10084.260723509431, -10380.950581421188], [-10127.110723509248, -10376.900581423599], [-10170.010723506095, -10362.70058142108], [-10212.96072350708, -10345.450581422], [-10251.460723509354, -10323.600581422454]]}, {"length": 70.8080336947, "source": 2331414012, "destination": 2638686296, "path": [[-10258.56072350706, -10285.600581422472], [-10241.710723505548, -10282.700581420557], [-10204.710723506594, -10257.050581422789], [-10205.760723508207, -10202.600581422415], [-10217.060723505256, -10120.200581422267], [-10230.4107235085, -10047.100581420666], [-10244.810723506249, -9991.900581422185]]}, {"length": 8.53574601043, "source": 2331414012, "destination": 2331414023, "path": [[-10258.56072350706, -10285.600581422472], [-10251.460723509354, -10323.600581422454]]}, {"length": 87.1521849973, "source": 2331414012, "destination": 2331414023, "path": [[-10258.56072350706, -10285.600581422472], [-10263.960723506216, -10259.700581421783], [-10276.060723505509, -10234.350581423967], [-10289.460723505783, -10214.05058142122], [-10306.210723506127, -10196.850581422723], [-10331.010723511725, -10189.200581422141], [-10364.510723505304, -10186.150581422027], [-10392.010723506928, -10193.30058142387], [-10414.160723506428, -10210.500581422366], [-10428.910723511819, -10230.800581421561], [-10424.910723507708, -10256.15058142293], [-10410.110723505284, -10275.450581421097], [-10384.610723505717, -10293.700581421206], [-10345.710723505874, -10303.85058142258], [-10294.810723507908, -10311.950581421313], [-10251.460723509354, -10323.600581422454]]}, {"length": 150.792696617, "source": 2331414023, "destination": 2331413994, "path": [[-10251.460723509354, -10323.600581422454], [-10212.96072350708, -10345.450581422], [-10170.010723506095, -10362.70058142108], [-10127.110723509248, -10376.900581423599], [-10084.260723509431, -10380.950581421188], [-10029.31072351032, -10374.900581421542], [-9950.110723508487, -10359.650581420965], [-9861.560723507522, -10341.400581420856], [-9808.410723508132, -10335.250581423594], [-9774.060723508172, -10335.10058142184], [-9711.46072350848, -10348.500581422115], [-9585.310723508655, -10374.900581421542], [-9475.3607235063, -10390.100581421535], [-9391.860723511058, -10400.25058142291]]}, {"length": 8.53574601043, "source": 2331414023, "destination": 2331414012, "path": [[-10251.460723509354, -10323.600581422454], [-10258.56072350706, -10285.600581422472]]}, {"length": 87.1521849973, "source": 2331414023, "destination": 2331414012, "path": [[-10251.460723509354, -10323.600581422454], [-10294.810723507908, -10311.950581421313], [-10345.710723505874, -10303.85058142258], [-10384.610723505717, -10293.700581421206], [-10410.110723505284, -10275.450581421097], [-10424.910723507708, -10256.15058142293], [-10428.910723511819, -10230.800581421561], [-10414.160723506428, -10210.500581422366], [-10392.010723506928, -10193.30058142387], [-10364.510723505304, -10186.150581422027], [-10331.010723511725, -10189.200581422141], [-10306.210723506127, -10196.850581422723], [-10289.460723505783, -10214.05058142122], [-10276.060723505509, -10234.350581423967], [-10263.960723506216, -10259.700581421783], [-10258.56072350706, -10285.600581422472]]}, {"length": 15.9660963444, "source": 4224850306, "destination": 4224850360, "path": [[7579.489276494655, 4385.1994185786225], [7643.6892764917275, 4332.349418579184]]}, {"length": 9.65799372223, "source": 4224850306, "destination": 4224950844, "path": [[7579.489276494655, 4385.1994185786225], [7555.689276493638, 4406.949418577], [7542.88927649327, 4418.649418578724]]}, {"length": 12.5365104779, "source": 4224850306, "destination": 135086398, "path": [[7579.489276494655, 4385.1994185786225], [7627.339276488954, 4428.399418578976]]}, {"length": 114.539588966, "source": 134934056, "destination": 134934058, "path": [[8266.089276489198, -2046.4005814240238], [8946.63927649475, -2043.2005814221554]]}, {"length": 61.8923684201, "source": 134934056, "destination": 135019219, "path": [[8266.089276489198, -2046.4005814240238], [8263.839276494877, -1768.100581422516]]}, {"length": 60.090003996, "source": 134934056, "destination": 135019220, "path": [[8266.089276489198, -2046.4005814240238], [8266.83927649441, -2316.600581423245]]}, {"length": 114.539588966, "source": 134934058, "destination": 134934056, "path": [[8946.63927649475, -2043.2005814221554], [8266.089276489198, -2046.4005814240238]]}, {"length": 61.9576107455, "source": 134934058, "destination": 135022772, "path": [[8946.63927649475, -2043.2005814221554], [8955.039276493437, -2002.650581420795], [8954.339276492363, -1765.1005814229848]]}, {"length": 60.2832010411, "source": 134934058, "destination": 135022782, "path": [[8946.63927649475, -2043.2005814221554], [8941.439276490826, -2091.800581421666], [8944.339276489189, -2314.1005814224513]]}, {"length": 692.795181485, "source": 135027978, "destination": 135037794, "path": [[-3408.160723509468, 378.3494185789493], [-3848.3607235093586, 374.3494185783902], [-7236.110723511047, 368.89941857864983], [-7524.210723509839, 367.1494185759627]]}, {"length": 9.47406145476, "source": 135027978, "destination": 135027982, "path": [[-3408.160723509468, 378.3494185789493], [-3408.410723508837, 420.94941857939716]]}, {"length": 16.4728705277, "source": 2293562998, "destination": 2293563000, "path": [[-4922.810723506644, 6439.899418577255], [-5020.660723509707, 6439.449418579102]]}, {"length": 16.118906942, "source": 2293562998, "destination": 2294600113, "path": [[-4922.810723506644, 6439.899418577255], [-4827.060723506804, 6439.9994185784235]]}, {"length": 47.6804642547, "source": 2293562998, "destination": 2068973828, "path": [[-4922.810723506644, 6439.899418577255], [-4923.260723508349, 6225.499418576419]]}, {"length": 14.592906922, "source": 4635856452, "destination": 4635856472, "path": [[10077.639276488526, 6493.549418578937], [9991.239276494924, 6488.249418577397]]}, {"length": 34.8150376869, "source": 2568624516, "destination": 2568624515, "path": [[-1160.7607235077921, -3150.950581421341], [-1160.7607235077921, -3307.500581421152]]}, {"length": 12.9655526989, "source": 2568624516, "destination": 4719909591, "path": [[-1160.7607235077921, -3150.950581421341], [-1160.5107235084233, -3092.6505814221628]]}, {"length": 12.6524393503, "source": 4635856462, "destination": 4635856470, "path": [[9862.789276489537, 6487.349418577537], [9914.689276492083, 6446.199418576271]]}, {"length": 13.0071914741, "source": 4635856462, "destination": 4635856470, "path": [[9862.789276489537, 6487.349418577537], [9901.339276488841, 6449.349418577554], [9914.689276492083, 6446.199418576271]]}, {"length": 27.179041382, "source": 4635856462, "destination": 4274705959, "path": [[9862.789276489537, 6487.349418577537], [9841.789276492818, 6486.499418578262], [9833.589276489363, 6479.399418577003], [9832.439276493687, 6468.799418577475], [9776.389276488828, 6447.59941857842], [9745.289276494874, 6478.44941857656]]}, {"length": 123.444114831, "source": 2960627998, "destination": 2423695625, "path": [[-5370.1607235083775, -3225.4005814209563], [-5904.510723510725, -2969.1005814207474], [-5959.560723511004, -3033.0505814220032]]}, {"length": 61.0357309954, "source": 2069036302, "destination": 135021872, "path": [[-1197.660723505578, 2894.249418577743], [-1195.9107235099964, 2619.7994185785947]]}, {"length": 125.824765691, "source": 2069036302, "destination": 2069036373, "path": [[-1197.660723505578, 2894.249418577743], [-1945.1607235083657, 2892.199418578656]]}, {"length": 58.400339527, "source": 2069036302, "destination": 2068887957, "path": [[-1197.660723505578, 2894.249418577743], [-1199.3107235070966, 3156.8494185769678]]}, {"length": 16.4803374064, "source": 4635856470, "destination": 4635856472, "path": [[9914.689276492083, 6446.199418576271], [9959.689276492156, 6459.099418577807], [9991.239276494924, 6488.249418577397]]}, {"length": 31.6446983877, "source": 4635856470, "destination": 4635856458, "path": [[9914.689276492083, 6446.199418576271], [9935.189276490064, 6441.399418577021], [10076.439276488712, 6445.849418579286], [10099.78927649513, 6452.899418576408]]}, {"length": 12.6524393503, "source": 4635856470, "destination": 4635856462, "path": [[9914.689276492083, 6446.199418576271], [9862.789276489537, 6487.349418577537]]}, {"length": 13.0071914741, "source": 4635856470, "destination": 4635856462, "path": [[9914.689276492083, 6446.199418576271], [9901.339276488841, 6449.349418577554], [9862.789276489537, 6487.349418577537]]}, {"length": 14.592906922, "source": 4635856472, "destination": 4635856452, "path": [[9991.239276494924, 6488.249418577397], [10077.639276488526, 6493.549418578937]]}, {"length": 16.4803374064, "source": 4635856472, "destination": 4635856470, "path": [[9991.239276494924, 6488.249418577397], [9959.689276492156, 6459.099418577807], [9914.689276492083, 6446.199418576271]]}, {"length": 32.8174638348, "source": 2310516317, "destination": 2312746554, "path": [[-3529.960723511749, 4772.299418576154], [-3335.010723510834, 4772.999418577228]]}, {"length": 25.8308128224, "source": 2310516317, "destination": 2309494563, "path": [[-3529.960723511749, 4772.299418576154], [-3530.310723505181, 4888.449418576357]]}, {"length": 95.7587977577, "source": 2310516317, "destination": 1806083101, "path": [[-3529.960723511749, 4772.299418576154], [-4013.9607235047947, 4770.549418577019], [-4098.810723505153, 4770.2494185770665]]}, {"length": 13.7774176988, "source": 2310516317, "destination": 2310516366, "path": [[-3529.960723511749, 4772.299418576154], [-3529.310723507706, 4710.349418576953]]}, {"length": 52.9487851045, "source": 2869816935, "destination": 135097197, "path": [[-3623.310723504858, -6598.900581423095], [-3308.660723504886, -6598.600581423142]]}, {"length": 206.975160769, "source": 2869816935, "destination": 2869816941, "path": [[-3623.310723504858, -6598.900581423095], [-3621.960723506845, -6452.750581424027], [-4359.560723507628, -6453.750581421502], [-4359.06072350889, -6680.150581424015]]}, {"length": 201.364844749, "source": 2869816935, "destination": 2869816941, "path": [[-3623.310723504858, -6598.900581423095], [-3625.960723510957, -6856.650581422486], [-4158.4107235053125, -6859.700581422601], [-4358.960723507721, -6715.85058142199], [-4359.06072350889, -6680.150581424015]]}, {"length": 12.9446820205, "source": 3661057640, "destination": 135016136, "path": [[-2764.7107235111434, 4284.699418576565], [-2687.8107235077664, 4284.999418576518]]}, {"length": 13.276712539, "source": 3661057640, "destination": 2316883636, "path": [[-2764.7107235111434, 4284.699418576565], [-2764.560723505838, 4344.399418577894]]}, {"length": 95.7490548557, "source": 3661057640, "destination": 3715980772, "path": [[-2764.7107235111434, 4284.699418576565], [-3333.5107235075156, 4282.649418577477]]}, {"length": 13.0099649127, "source": 3661057640, "destination": 2316883637, "path": [[-2764.7107235111434, 4284.699418576565], [-2764.8107235052066, 4226.1994185786025]]}, {"length": 13.0293476529, "source": 3661057641, "destination": 2316883637, "path": [[-2687.4107235101974, 4225.7494185768965], [-2764.8107235052066, 4226.1994185786025]]}, {"length": 12.1876538497, "source": 3661057641, "destination": 2356771790, "path": [[-2687.4107235101974, 4225.7494185768965], [-2615.01072350967, 4225.299418578743]]}, {"length": 47.803360281, "source": 3661057641, "destination": 2069036759, "path": [[-2687.4107235101974, 4225.7494185768965], [-2686.0607235050793, 4010.7994185767384]]}, {"length": 27.4529239213, "source": 2869816941, "destination": 2869816942, "path": [[-4359.06072350889, -6680.150581424015], [-4522.160723510638, -6682.900581420626]]}, {"length": 206.975160769, "source": 2869816941, "destination": 2869816935, "path": [[-4359.06072350889, -6680.150581424015], [-4359.560723507628, -6453.750581421502], [-3621.960723506845, -6452.750581424027], [-3623.310723504858, -6598.900581423095]]}, {"length": 201.364844749, "source": 2869816941, "destination": 2869816935, "path": [[-4359.06072350889, -6680.150581424015], [-4358.960723507721, -6715.85058142199], [-4158.4107235053125, -6859.700581422601], [-3625.960723510957, -6856.650581422486], [-3623.310723504858, -6598.900581423095]]}, {"length": 27.4529239213, "source": 2869816942, "destination": 2869816941, "path": [[-4522.160723510638, -6682.900581420626], [-4359.06072350889, -6680.150581424015]]}, {"length": 4.9639521497, "source": 2587199421, "destination": 2587199418, "path": [[627.7392764886258, -1306.3005814224482], [598.2392764920519, -1306.4005814236168]]}, {"length": 10.6429351854, "source": 2587199421, "destination": 2587199419, "path": [[627.7392764886258, -1306.3005814224482], [597.7892764903459, -1348.45058142119]]}, {"length": 56.7782144324, "source": 2587199421, "destination": 2587199389, "path": [[627.7392764886258, -1306.3005814224482], [965.0892764909713, -1305.2005814238044]]}, {"length": 72.7647561129, "source": 135032438, "destination": 134967275, "path": [[-9781.860723506952, 5357.449418578853], [-10069.510723511143, 5356.749418577778], [-10214.11072350986, 5356.39941857724]]}, {"length": 22.4521795087, "source": 2587199423, "destination": 2587199434, "path": [[1406.9392764923805, -1303.7005814240388], [1273.5392764895437, -1304.150581422192]]}, {"length": 30.864391118, "source": 2587199423, "destination": 2587199434, "path": [[1406.9392764923805, -1303.7005814240388], [1404.9392764903246, -1314.4505814217666], [1400.9392764933182, -1322.0505814217631], [1393.5392764921062, -1328.150581421994], [1382.8392764949626, -1331.7005814208471], [1372.73927649062, -1333.250581421197], [1302.5392764944854, -1333.250581421197], [1298.1392764928046, -1333.1005814229968], [1293.7892764952608, -1332.4505814225063], [1287.789276489093, -1330.700581423372], [1282.389276489937, -1327.7505814208723], [1279.539276488606, -1324.7505814213412], [1277.5392764936555, -1321.5505814230255], [1274.5392764941244, -1313.950581423029], [1273.5392764895437, -1304.150581422192]]}, {"length": 59.0168616121, "source": 2587199423, "destination": 2587199388, "path": [[1406.9392764923805, -1303.7005814240388], [1757.5892764938317, -1302.5005814206736]]}, {"length": 12.0534355504, "source": 2587199423, "destination": 2587199422, "path": [[1406.9392764923805, -1303.7005814240388], [1406.9392764923805, -1249.5005814230353]]}, {"length": 13.1731250665, "source": 134985665, "destination": 2358476147, "path": [[-2694.8107235114094, 5381.299418576901], [-2616.5607235100197, 5381.649418577439]]}, {"length": 12.2205171694, "source": 134985665, "destination": 2358476150, "path": [[-2694.8107235114094, 5381.299418576901], [-2694.460723510872, 5326.349418577792]]}, {"length": 108.453001044, "source": 134985665, "destination": 3661788598, "path": [[-2694.8107235114094, 5381.299418576901], [-3339.060723504872, 5379.699418575967]]}, {"length": 10.9641176701, "source": 2310516366, "destination": 2310516404, "path": [[-3529.310723507706, 4710.349418576953], [-3528.9607235071685, 4661.049418576368]]}, {"length": 13.7774176988, "source": 2310516366, "destination": 2310516317, "path": [[-3529.310723507706, 4710.349418576953], [-3529.960723511749, 4772.299418576154]]}, {"length": 5.11595407616, "source": 2310516366, "destination": 2310516367, "path": [[-3529.310723507706, 4710.349418576953], [-3559.710723507692, 4710.1494185781685]]}, {"length": 5.11595407616, "source": 2310516367, "destination": 2310516366, "path": [[-3559.710723507692, 4710.1494185781685], [-3529.310723507706, 4710.349418576953]]}, {"length": 400.409966711, "source": 1277679555, "destination": 3758384279, "path": [[1484.139276492158, -6176.350581423407], [1540.0392764917115, -6078.7505814232645], [1649.2392764888564, -5880.150581422327], [1700.9392764890663, -5792.800581421176], [1757.3892764914945, -5698.200581420565], [1811.0892764937603, -5622.2505814211845], [1905.9392764901872, -5487.950581422041], [2009.9392764905133, -5348.50058142311], [2126.53927648887, -5214.400581422751], [2251.3892764948196, -5076.550581421202], [2415.1392764935053, -4912.800581422516], [2554.7392764906363, -4777.350581420592], [2702.7892764905914, -4641.350581422898]]}, {"length": 19.1788370969, "source": 1277679555, "destination": 2573122567, "path": [[1484.139276492158, -6176.350581423407], [1582.039276492253, -6220.5005814206515]]}, {"length": 12.4907756948, "source": 134985669, "destination": 2358476144, "path": [[-1213.5107235096143, 5388.349418577576], [-1287.7107235098606, 5387.999418577038]]}, {"length": 12.8429780954, "source": 134985669, "destination": 2358476148, "path": [[-1213.5107235096143, 5388.349418577576], [-1213.160723509077, 5330.59941857772]]}, {"length": 12.9209878317, "source": 134985669, "destination": 2358476141, "path": [[-1213.5107235096143, 5388.349418577576], [-1213.8607235101517, 5446.4494185779695]]}, {"length": 12.6673894878, "source": 134985669, "destination": 2358476143, "path": [[-1213.5107235096143, 5388.349418577576], [-1138.2607235077558, 5388.499418579329]]}, {"length": 47.9586773087, "source": 2292321956, "destination": 2293563340, "path": [[-10575.460723508457, 4867.649418578423], [-10575.560723509625, 4874.799418576714], [-10578.060723510418, 5083.299418576104]]}, {"length": 11.3638250124, "source": 2292321956, "destination": 134990654, "path": [[-10575.460723508457, 4867.649418578423], [-10575.210723509088, 4840.999418576075], [-10569.860723506963, 4828.299418576876], [-10560.96072350954, 4819.4494185764825]]}, {"length": 6.53194408056, "source": 2292321956, "destination": 2292321958, "path": [[-10575.460723508457, 4867.649418578423], [-10536.660723509784, 4867.34941857847]]}, {"length": 142.816395483, "source": 2080738981, "destination": 2267911758, "path": [[-9586.010723509731, -7537.000581422149], [-9888.76072350564, -7661.200581424055], [-10330.160723505343, -7845.800581421258]]}, {"length": 47.2674006024, "source": 2080738981, "destination": 134968422, "path": [[-9586.010723509731, -7537.000581422149], [-9515.210723506585, -7507.950581423728], [-9463.110723508806, -7488.0005814215165], [-9418.61072350747, -7477.650581421358], [-9375.96072350999, -7474.900581421196], [-9323.660723509875, -7479.150581421123]]}, {"length": 48.134480277, "source": 2292321958, "destination": 2293563339, "path": [[-10536.660723509784, 4867.34941857847], [-10537.060723507351, 4883.1494185783695], [-10540.160723508052, 4917.6494185765305], [-10541.060723511464, 4935.599418576686], [-10541.060723511464, 4951.1994185778], [-10541.710723508402, 4983.099418577553], [-10542.310723508308, 5069.999418576998], [-10538.86072350707, 5083.449418577857]]}, {"length": 6.53194408056, "source": 2292321958, "destination": 2292321956, "path": [[-10536.660723509784, 4867.34941857847], [-10575.460723508457, 4867.649418578423]]}, {"length": 193.969914968, "source": 2292321958, "destination": 2280505606, "path": [[-10536.660723509784, 4867.34941857847], [-10445.360723508657, 4866.599418576811], [-10314.860723511287, 4867.549418577255], [-10111.11072350701, 4867.899418577792], [-9961.760723506075, 4869.04941857702], [-9888.910723510946, 4868.899418578821], [-9797.410723507483, 4869.599418576343], [-9716.810723510605, 4869.54941857931], [-9525.460723509128, 4870.249418576833], [-9384.410723505709, 4870.699418578539]]}, {"length": 12.7630022293, "source": 2292321958, "destination": 2292321987, "path": [[-10536.660723509784, 4867.34941857847], [-10536.460723507445, 4859.84941857609], [-10536.210723508077, 4809.949418579152]]}, {"length": 5.10007420109, "source": 2310516404, "destination": 2310516405, "path": [[-3528.9607235071685, 4661.049418576368], [-3559.260723505986, 4661.049418576368]]}, {"length": 10.9641176701, "source": 2310516404, "destination": 2310516366, "path": [[-3528.9607235071685, 4661.049418576368], [-3529.310723507706, 4710.349418576953]]}, {"length": 23.5961820673, "source": 2310516404, "destination": 2310516445, "path": [[-3528.9607235071685, 4661.049418576368], [-3528.010723506725, 4554.949418576371]]}, {"length": 5.10007420109, "source": 2310516405, "destination": 2310516404, "path": [[-3559.260723505986, 4661.049418576368], [-3528.9607235071685, 4661.049418576368]]}, {"length": 60.9677091346, "source": 1959915190, "destination": 2423697768, "path": [[-7148.710723505757, -3790.250581420906], [-7270.660723506239, -3805.4505814208997], [-7363.860723508253, -3832.0505814226635], [-7416.410723507738, -3861.1505814216684], [-7442.110723509642, -3878.2005814219647], [-7468.910723510191, -3900.4505814226322]]}, {"length": 86.8211898775, "source": 1959915190, "destination": 3357236936, "path": [[-7148.710723505757, -3790.250581420906], [-6969.160723507173, -3761.200581422486], [-6860.660723511102, -3731.1505814230372], [-6755.160723507459, -3692.4005814213956], [-6664.860723510912, -3680.3005814221024], [-6657.110723509163, -3680.1005814233176]]}, {"length": 89.7883769027, "source": 1959915190, "destination": 1959915345, "path": [[-7148.710723505757, -3790.250581420906], [-7142.510723511464, -3812.9005814226957], [-7134.510723510346, -3821.00058142143], [-7126.46072350509, -3822.000581422458], [-7117.660723508834, -3821.8505814207047], [-6949.360723510267, -3793.450581422775], [-6893.760723507114, -3783.4505814231534], [-6761.660723505258, -3750.4505814212052], [-6707.360723510192, -3743.350581423499], [-6658.510723511313, -3742.050581422518]]}, {"length": 60.3459372142, "source": 2568599497, "destination": 2568599794, "path": [[278.0892764917553, -2329.500581421229], [279.489276493905, -2058.1505814227794]]}, {"length": 8.57314785999, "source": 2568599497, "destination": 2568599341, "path": [[278.0892764917553, -2329.500581421229], [277.9392764935551, -2368.0505814205335]]}, {"length": 13.5807450052, "source": 2568599497, "destination": 2568599495, "path": [[278.0892764917553, -2329.500581421229], [197.43927649074067, -2327.450581422141]]}, {"length": 99.6060033547, "source": 2282973130, "destination": 2282973136, "path": [[-8650.160723504996, 2865.2494185763544], [-8674.210723505383, 2865.2494185763544], [-8750.910723506422, 2864.6994185770327], [-8826.560723505849, 2864.6994185770327], [-8910.310723507564, 2862.5494185767766], [-8995.410723507292, 2859.899418577783], [-9059.110723505626, 2859.3494185784607], [-9111.160723506373, 2860.1494185771517], [-9174.160723510739, 2859.899418577783], [-9241.76072350491, 2860.799418577642]]}, {"length": 15.3766096113, "source": 2282973130, "destination": 2282973129, "path": [[-8650.160723504996, 2865.2494185763544], [-8558.810723506838, 2865.2494185763544]]}, {"length": 50.4380827068, "source": 2282973130, "destination": 2282972963, "path": [[-8650.160723504996, 2865.2494185763544], [-8650.510723505533, 2955.1494185788843], [-8650.510723505533, 3010.4994185791156], [-8651.11072350544, 3092.049418576437]]}, {"length": 52.394359489, "source": 2282973130, "destination": 2282973279, "path": [[-8650.160723504996, 2865.2494185763544], [-8649.960723509765, 2809.4494185779695], [-8649.460723511027, 2749.99941857601], [-8649.260723508689, 2730.3494185773047], [-8649.41072350689, 2667.2494185788764], [-8649.260723508689, 2629.649418576463]]}, {"length": 41.5095881229, "source": 135016126, "destination": 2086776768, "path": [[-2662.9607235051367, 376.54941857923063], [-2661.760723505324, 189.89941857938675]]}, {"length": 125.427922569, "source": 135016126, "destination": 135027978, "path": [[-2662.9607235051367, 376.54941857923063], [-3408.160723509468, 378.3494185789493]]}, {"length": 31.0298061554, "source": 2080739007, "destination": 2214680666, "path": [[-12622.160723509523, -1268.4005814236343], [-12591.060723508463, -1249.5505814236196], [-12524.960723510503, -1223.9505814228835], [-12470.860723510668, -1214.2005814226309], [-12456.210723506445, -1214.2505814232152]]}, {"length": 124.822512646, "source": 135016129, "destination": 135019148, "path": [[-2663.2607235086425, 422.34941857799413], [-1921.660723510854, 424.59941857941885]]}, {"length": 10.1855587539, "source": 135016129, "destination": 135016126, "path": [[-2663.2607235086425, 422.34941857799413], [-2662.9607235051367, 376.54941857923063]]}, {"length": 194.04183863, "source": 2292321986, "destination": 2292321987, "path": [[-9383.910723506971, 4810.999418577211], [-10509.660723506897, 4806.949418576068], [-10531.21072350649, 4808.599418577586], [-10536.210723508077, 4809.949418579152]]}, {"length": 13.3996914831, "source": 2292321986, "destination": 134954236, "path": [[-9383.910723506971, 4810.999418577211], [-9304.31072350757, 4811.049418577795]]}, {"length": 13.2770519536, "source": 2292321986, "destination": 2280505606, "path": [[-9383.910723506971, 4810.999418577211], [-9384.410723505709, 4870.699418578539]]}, {"length": 13.2992887455, "source": 2292321986, "destination": 2287972838, "path": [[-9383.910723506971, 4810.999418577211], [-9383.71072351174, 4788.099418576053], [-9383.460723505266, 4751.199418578267]]}, {"length": 194.04183863, "source": 2292321987, "destination": 2292321986, "path": [[-10536.210723508077, 4809.949418579152], [-10531.21072350649, 4808.599418577586], [-10509.660723506897, 4806.949418576068], [-9383.910723506971, 4810.999418577211]]}, {"length": 12.7630022293, "source": 2292321987, "destination": 2292321958, "path": [[-10536.210723508077, 4809.949418579152], [-10536.460723507445, 4859.84941857609], [-10536.660723509784, 4867.34941857847]]}, {"length": 4.70596944389, "source": 2292321987, "destination": 134990654, "path": [[-10536.210723508077, 4809.949418579152], [-10548.610723510876, 4813.249418578635], [-10560.96072350954, 4819.4494185764825]]}, {"length": 137.159578874, "source": 1959915204, "destination": 1959915201, "path": [[-6892.410723509101, -5579.05058142083], [-6927.560723511306, -5539.050581422344], [-7014.160723507246, -5447.700581420633], [-7091.210723508822, -5348.850581423648], [-7156.910723509213, -5249.75058142374], [-7291.910723509432, -5042.9505814229005]]}, {"length": 67.4348705859, "source": 1959915204, "destination": 1959915324, "path": [[-6892.410723509101, -5579.05058142083], [-6848.160723507135, -5607.650581421098], [-6805.910723507224, -5630.75058142104], [-6760.260723510214, -5646.80058142386], [-6717.760723510935, -5654.850581422011], [-6680.110723507937, -5658.950581423738], [-6632.56072351004, -5660.700581422872], [-6521.960723510745, -5660.150581423551]]}, {"length": 74.05547897, "source": 1959915204, "destination": 1959915292, "path": [[-6892.410723509101, -5579.05058142083], [-6648.7607235075075, -5856.35058142131]]}, {"length": 61.4360622389, "source": 135016133, "destination": 2086776808, "path": [[-2677.2107235117915, 2614.399418579438], [-2675.4607235091044, 2338.149418577018]]}, {"length": 124.831249074, "source": 135016133, "destination": 135019157, "path": [[-2677.2107235117915, 2614.399418579438], [-1935.6107235068976, 2617.149418576048]]}, {"length": 60.4573995987, "source": 135016135, "destination": 2069036811, "path": [[-2684.3107235094976, 3733.699418578595], [-2682.6107235109475, 3461.849418577856]]}, {"length": 12.6876507835, "source": 135016135, "destination": 2316883643, "path": [[-2684.3107235094976, 3733.699418578595], [-2759.2107235108188, 3727.2994185784114]]}, {"length": 124.044250012, "source": 135016135, "destination": 135019159, "path": [[-2684.3107235094976, 3733.699418578595], [-1947.4107235097904, 3736.3994185781735]]}, {"length": 12.9446820205, "source": 135016136, "destination": 3661057640, "path": [[-2687.8107235077664, 4284.999418576518], [-2764.7107235111434, 4284.699418576565]]}, {"length": 13.1772294832, "source": 135016136, "destination": 3661057641, "path": [[-2687.8107235077664, 4284.999418576518], [-2687.4107235101974, 4225.7494185768965]]}, {"length": 12.3554735576, "source": 135016136, "destination": 3661057639, "path": [[-2687.8107235077664, 4284.999418576518], [-2614.4107235097636, 4285.24941857944]]}, {"length": 47.3803900498, "source": 135016139, "destination": 2352260072, "path": [[-2698.4107235108468, 5945.999418578651], [-2416.960723508055, 5947.099418577295]]}, {"length": 13.0044216807, "source": 135016139, "destination": 2316883513, "path": [[-2698.4107235108468, 5945.999418578651], [-2775.660723507656, 5945.899418577483]]}, {"length": 15.7895633417, "source": 135016139, "destination": 2316883515, "path": [[-2698.4107235108468, 5945.999418578651], [-2697.9607235091407, 5874.999418576721]]}, {"length": 109.377072036, "source": 135065293, "destination": 3758384275, "path": [[-8551.410723505625, -181.60058142058233], [-9201.260723507687, -182.7505814233632]]}, {"length": 118.091572488, "source": 135065293, "destination": 135037798, "path": [[-8551.410723505625, -181.60058142058233], [-8268.56072350779, -184.5005814224976], [-7977.660723511804, -182.00058142170406], [-7946.060723504899, -180.35058142373828], [-7916.7607235106625, -175.2505814209826], [-7884.160723506284, -167.5005814227859], [-7854.860723504942, -157.9005814207335]]}, {"length": 66.9509544689, "source": 135065293, "destination": 2282034558, "path": [[-8551.410723505625, -181.60058142058233], [-8550.060723507613, -482.6505814214954]]}, {"length": 106.161849504, "source": 1959915218, "destination": 2280505672, "path": [[-9378.160723507279, 3559.4494185779977], [-9379.31072351006, 3621.2994185760294], [-9379.660723510597, 3678.1494185760266], [-9380.410723508703, 3767.149418578697], [-9378.96072350952, 3882.9994185789474], [-9380.060723508166, 3994.1494185775637], [-9379.960723506996, 4036.799418578596]]}, {"length": 94.7738232769, "source": 1959915218, "destination": 1959915361, "path": [[-9378.160723507279, 3559.4494185779977], [-9377.76072350971, 3458.9494185794933], [-9376.410723511697, 3317.79941857846], [-9375.660723506484, 3265.8494185788813], [-9375.460723511253, 3189.39941857721], [-9374.460723506672, 3133.299418578872]]}, {"length": 332.612266851, "source": 1959915218, "destination": 1362208431, "path": [[-9378.160723507279, 3559.4494185779977], [-10247.860723509915, 3560.9494185777635], [-10317.61072351145, 3564.999418578907], [-10369.910723511566, 3576.699418577078], [-10420.860723506565, 3595.4494185794774], [-10469.76072350958, 3622.1994185794415], [-10512.710723510565, 3651.2994185784464], [-10556.61072350489, 3689.899418578335], [-10604.51072351043, 3740.0994185787795], [-10636.760723507166, 3777.6994185776402], [-10661.510723508627, 3815.949418576992], [-10685.060723510276, 3857.8494185763648], [-10706.460723511667, 3905.0494185772777], [-10724.610723507056, 3954.2994185772786], [-10733.21072350808, 3980.2494185785517], [-10747.010723505922, 4028.29941857874], [-10752.060723511648, 4051.1994185763456], [-10754.760723507672, 4071.749418578463], [-10754.910723505873, 4088.7994185787593], [-10752.510723506248, 4107.699418579358], [-10748.260723509873, 4126.549418579372], [-10743.760723507023, 4146.649418576231], [-10740.160723507586, 4165.999418578536], [-10737.61072350976, 4181.399418577314], [-10733.06072350988, 4214.899418577999]]}, {"length": 6.09364204772, "source": 135065299, "destination": 2282822844, "path": [[-8546.110723507638, -1517.7505814207848], [-8546.260723505839, -1490.3505814238827]]}, {"length": 8.13015422712, "source": 2286663630, "destination": 2286663632, "path": [[-5604.960723509577, 4883.049418577201], [-5653.260723505582, 4883.049418577201]]}, {"length": 26.8313128128, "source": 2286663630, "destination": 2069376752, "path": [[-5604.960723509577, 4883.049418577201], [-5604.960723509577, 4762.399418577701]]}, {"length": 97.3290084968, "source": 2286663630, "destination": 2286663419, "path": [[-5604.960723509577, 4883.049418577201], [-5604.960723509577, 5106.549418577799], [-5599.8107235097905, 5121.4994185784235], [-5589.06072350851, 5136.749418579001], [-5578.310723507229, 5155.9994185765845], [-5575.660723508236, 5177.3494185773925], [-5577.91072350966, 5316.399418578754]]}, {"length": 10.7499681457, "source": 1942240548, "destination": 3009796634, "path": [[5459.089276492079, -867.1005814235855], [5440.789276491387, -891.1005814233874], [5424.9892764914875, -907.9005814207619]]}, {"length": 38.4760456665, "source": 1942240548, "destination": 1429422346, "path": [[5459.089276492079, -867.1005814235855], [5480.539276490504, -877.2505814214071], [5514.089276488221, -891.4505814239249], [5550.289276492038, -898.6005814222153], [5585.189276494873, -895.5505814220999], [5621.039276491047, -888.7505814207941], [5663.939276495001, -862.2505814237513]]}, {"length": 18.5324152601, "source": 1942240548, "destination": 1942240578, "path": [[5459.089276492079, -867.1005814235855], [5450.689276493393, -853.100581423405], [5442.789276493442, -828.9505814218501], [5441.689276494799, -809.0505814237758], [5442.489276489937, -785.9005814232489]]}, {"length": 56.0427668156, "source": 2069376730, "destination": 2069376865, "path": [[-4433.010723509768, 5429.099418577721], [-4438.410723508923, 5448.399418579442], [-4437.060723510911, 5464.59941857691], [-4435.710723505792, 5495.099418578065], [-4426.31072350963, 5515.399418577261], [-4416.9607235104995, 5535.699418576456], [-4416.9607235104995, 5549.899418578974], [-4420.9607235075055, 5585.449418578747], [-4426.31072350963, 5608.799418578059], [-4437.060723510911, 5631.099418579311], [-4451.8107235091975, 5649.39941857645], [-4471.910723509609, 5667.649418576559]]}, {"length": 29.8691753929, "source": 2069376730, "destination": 2069376762, "path": [[-4433.010723509768, 5429.099418577721], [-4402.1607235080755, 5433.149418578864], [-4333.810723508691, 5432.1494185778365], [-4256.060723506039, 5432.4994185783735]]}, {"length": 29.1690519577, "source": 2069376730, "destination": 2069376740, "path": [[-4433.010723509768, 5429.099418577721], [-4463.86072351146, 5421.999418576462], [-4481.310723505771, 5410.799418577028], [-4494.710723506046, 5394.599418576007], [-4500.06072350817, 5374.299418576811], [-4498.760723507189, 5354.999418578644], [-4489.360723511027, 5325.549418579101]]}, {"length": 144.389513417, "source": 1959915229, "destination": 4720043355, "path": [[-5485.960723511596, -5586.850581423164], [-5393.210723511288, -5582.100581420946], [-4997.960723507333, -5582.100581420946], [-4657.860723504826, -5582.100581420946], [-4628.160723505915, -5582.100581420946]]}, {"length": 213.006368791, "source": 1959915229, "destination": 2080625197, "path": [[-5485.960723511596, -5586.850581423164], [-5488.210723505916, -5562.3005814240405], [-5491.660723507152, -5549.800581423625], [-5500.260723508177, -5537.200581422041], [-5508.310723506327, -5523.250581422445], [-5511.360723509995, -5513.100581421071], [-5511.360723509995, -5499.650581423765], [-5500.360723509346, -5390.500581423652], [-5502.060723507895, -5375.500581422443], [-5512.7107235080075, -5320.000581424011], [-5512.110723508102, -5302.950581423715], [-5493.660723509209, -5196.650581421381], [-5457.360723511329, -5041.700581422503], [-5387.06072350692, -4816.850581423892], [-5372.560723508002, -4792.800581423507], [-5349.760723511565, -4766.150581421158], [-5336.310723507154, -4748.150581423971], [-5321.560723508866, -4727.3505814224845], [-5309.610723507774, -4705.700581421724], [-5301.460723508455, -4685.0005814214055], [-5297.66072350668, -4658.800581420764]]}, {"length": 6.17226345727, "source": 1959915229, "destination": 2080625207, "path": [[-5485.960723511596, -5586.850581423164], [-5486.360723509165, -5614.600581420604]]}, {"length": 13.1881683495, "source": 2286663632, "destination": 134954265, "path": [[-5653.260723505582, 4883.049418577201], [-5652.660723505676, 4823.749418576995]]}, {"length": 9.94876221679, "source": 2286663632, "destination": 2286663635, "path": [[-5653.260723505582, 4883.049418577201], [-5712.360723507004, 4883.049418577201]]}, {"length": 8.13015422712, "source": 2286663632, "destination": 2286663630, "path": [[-5653.260723505582, 4883.049418577201], [-5604.960723509577, 4883.049418577201]]}, {"length": 46.0027560462, "source": 2286663632, "destination": 2068973807, "path": [[-5653.260723505582, 4883.049418577201], [-5655.360723508807, 5089.899418578625]]}, {"length": 12.3485418104, "source": 2069376738, "destination": 2069376936, "path": [[-4178.060723511124, 5434.199418576924], [-4104.710723510152, 5434.79941857683]]}, {"length": 96.640726031, "source": 2069376738, "destination": 2069376873, "path": [[-4178.060723511124, 5434.199418576924], [-4180.810723511286, 5868.74941857829]]}, {"length": 13.1361276068, "source": 2069376738, "destination": 2069376762, "path": [[-4178.060723511124, 5434.199418576924], [-4256.060723506039, 5432.4994185783735]]}, {"length": 12.621057829, "source": 2069376738, "destination": 134985660, "path": [[-4178.060723511124, 5434.199418576924], [-4177.710723510586, 5377.449418578095]]}, {"length": 26.3756532945, "source": 2069376739, "destination": 2069376944, "path": [[-4252.460723506601, 4888.249418577572], [-4251.860723506696, 4769.64941857716]]}, {"length": 21.01592588, "source": 2069376739, "destination": 2069376794, "path": [[-4252.460723506601, 4888.249418577572], [-4252.160723510201, 4982.749418577015]]}, {"length": 138.145283034, "source": 2069376739, "destination": 2069376751, "path": [[-4252.460723506601, 4888.249418577572], [-5000.110723507589, 4886.249418579069], [-5018.91072350702, 4888.249418577572], [-5036.510723506637, 4896.149418577523], [-5056.660723511186, 4916.449418576718]]}, {"length": 13.1196508018, "source": 2069376739, "destination": 2069376903, "path": [[-4252.460723506601, 4888.249418577572], [-4174.560723505749, 4886.39941857727]]}, {"length": 17.0550536355, "source": 2069376740, "destination": 2069376834, "path": [[-4489.360723511027, 5325.549418579101], [-4416.9607235104995, 5320.449418576345], [-4388.360723510232, 5320.499418576929]]}, {"length": 27.2452387854, "source": 2069376740, "destination": 2069379707, "path": [[-4489.360723511027, 5325.549418579101], [-4504.110723509313, 5306.24941857738], [-4518.860723507601, 5279.849418577953], [-4530.910723509862, 5254.499418576586], [-4543.0107235091555, 5210.849418578078]]}, {"length": 29.1690519577, "source": 2069376740, "destination": 2069376730, "path": [[-4489.360723511027, 5325.549418579101], [-4498.760723507189, 5354.999418578644], [-4500.06072350817, 5374.299418576811], [-4494.710723506046, 5394.599418576007], [-4481.310723505771, 5410.799418577028], [-4463.86072351146, 5421.999418576462], [-4433.010723509768, 5429.099418577721]]}, {"length": 56.9667968771, "source": 134983397, "destination": 2086854379, "path": [[10347.339276492563, -1846.100581420984], [10344.839276491768, -1589.9505814225279]]}, {"length": 54.479539553, "source": 134983397, "destination": 2086854548, "path": [[10347.339276492563, -1846.100581420984], [10023.63927648986, -1846.6005814232744]]}, {"length": 56.3438390245, "source": 134983397, "destination": 2086854478, "path": [[10347.339276492563, -1846.100581420984], [10349.589276493987, -2099.4505814222466]]}, {"length": 111.98059785, "source": 134970189, "destination": 134967053, "path": [[-12960.160723508807, -10597.10058142116], [-12967.660723511188, -11100.600581421815]]}, {"length": 12.9551215625, "source": 134970189, "destination": 135036213, "path": [[-12960.160723508807, -10597.10058142116], [-12959.560723508901, -10538.850581422565]]}, {"length": 55.5425017052, "source": 134983399, "destination": 2086854457, "path": [[10351.839276488306, -2353.100581423462], [10353.389276488655, -2602.850581421734]]}, {"length": 55.2359439625, "source": 134983399, "destination": 2086854378, "path": [[10351.839276488306, -2353.100581423462], [10023.63927648986, -2353.300581422246]]}, {"length": 56.4105826135, "source": 134983399, "destination": 2086854478, "path": [[10351.839276488306, -2353.100581423462], [10349.589276493987, -2099.4505814222466]]}, {"length": 16.2347916307, "source": 2069376744, "destination": 2069376785, "path": [[-4258.960723511507, 5867.1994185779395], [-4258.060723508095, 5940.199418578373]]}, {"length": 96.6742472698, "source": 2069376744, "destination": 2069376762, "path": [[-4258.960723511507, 5867.1994185779395], [-4256.060723506039, 5432.4994185783735]]}, {"length": 20.1790838342, "source": 2069376744, "destination": 2069376919, "path": [[-4258.960723511507, 5867.1994185779395], [-4345.860723510952, 5804.699418579417]]}, {"length": 94.8887598399, "source": 2069376744, "destination": 2294600300, "path": [[-4258.960723511507, 5867.1994185779395], [-4822.610723508092, 5863.749418576703]]}, {"length": 13.1601193019, "source": 2069376744, "destination": 2069376873, "path": [[-4258.960723511507, 5867.1994185779395], [-4180.810723511286, 5868.74941857829]]}, {"length": 149.296961017, "source": 134955644, "destination": 1930503832, "path": [[10400.589276493121, -9969.450581422734], [10070.68927648902, -9968.000581423552], [10076.239276493481, -10389.700581423966]]}, {"length": 201.464731499, "source": 134955644, "destination": 134980301, "path": [[10400.589276493121, -9969.450581422734], [10401.089276491859, -9753.550581422132], [10397.239276493054, -9063.550581423386]]}, {"length": 85.5898600128, "source": 134955644, "destination": 2074159070, "path": [[10400.589276493121, -9969.450581422734], [10404.839276489496, -10354.300581422392]]}, {"length": 57.377297574, "source": 134983402, "destination": 2086854457, "path": [[10355.039276490174, -2860.850581424046], [10353.389276488655, -2602.850581421734]]}, {"length": 59.8344823404, "source": 134983402, "destination": 134983404, "path": [[10355.039276490174, -2860.850581424046], [10356.389276488188, -3129.900581424039]]}, {"length": 59.8344823404, "source": 134983404, "destination": 134983402, "path": [[10356.389276488188, -3129.900581424039], [10355.039276490174, -2860.850581424046]]}, {"length": 13.1582507806, "source": 2069376750, "destination": 2139775505, "path": [[-5582.0607235048665, 6002.3994185769425], [-5630.410723505009, 6001.899418578205], [-5660.160723508056, 6003.299418576802]]}, {"length": 94.6704673066, "source": 2069376750, "destination": 2703728621, "path": [[-5582.0607235048665, 6002.3994185769425], [-5544.210723506638, 6002.799418578064], [-5019.710723509263, 6005.649418579395]]}, {"length": 14.9121172819, "source": 2069376750, "destination": 2069376742, "path": [[-5582.0607235048665, 6002.3994185769425], [-5581.010723510361, 5935.349418578539]]}, {"length": 49.0819656684, "source": 2069376750, "destination": 3299414701, "path": [[-5582.0607235048665, 6002.3994185769425], [-5583.010723505311, 6141.149418578351], [-5583.010723505311, 6223.099418576794]]}, {"length": 138.145283034, "source": 2069376751, "destination": 2069376739, "path": [[-5056.660723511186, 4916.449418576718], [-5036.510723506637, 4896.149418577523], [-5018.91072350702, 4888.249418577572], [-5000.110723507589, 4886.249418579069], [-4252.460723506601, 4888.249418577572]]}, {"length": 21.6723265396, "source": 2069376751, "destination": 2069376790, "path": [[-5056.660723511186, 4916.449418576718], [-5056.010723507143, 4818.999418578329]]}, {"length": 7.91265820428, "source": 2069376751, "destination": 2069376743, "path": [[-5056.660723511186, 4916.449418576718], [-5064.510723506999, 4934.949418576196], [-5070.710723508399, 4950.39941857911]]}, {"length": 28.4994522638, "source": 2069376752, "destination": 2069376795, "path": [[-5604.960723509577, 4762.399418577701], [-5605.410723511284, 4634.249418579373]]}, {"length": 7.96213456793, "source": 2069376752, "destination": 2069376811, "path": [[-5604.960723509577, 4762.399418577701], [-5652.260723508107, 4762.149418578332]]}, {"length": 26.8313128128, "source": 2069376752, "destination": 2286663630, "path": [[-5604.960723509577, 4762.399418577701], [-5604.960723509577, 4883.049418577201]]}, {"length": 61.7917623826, "source": 3146411765, "destination": 135074738, "path": [[-3402.9607235055437, -441.8505814207663], [-3404.310723510662, -227.60058142168305], [-3404.710723508231, -164.0005814209644]]}, {"length": 124.161826666, "source": 3146411765, "destination": 3146411772, "path": [[-3402.9607235055437, -441.8505814207663], [-4140.660723507494, -441.8505814207663]]}, {"length": 86.3332295294, "source": 3146411766, "destination": 3146412232, "path": [[-4648.9607235074, -993.0005814240417], [-4397.560723511162, -993.0505814210733], [-4136.010723506444, -993.0505814210733]]}, {"length": 60.5677056676, "source": 3146411766, "destination": 134957822, "path": [[-4648.9607235074, -993.0005814240417], [-4647.910723505788, -1216.1505814205498], [-4647.660723506419, -1265.3505814235189]]}, {"length": 172.973847619, "source": 3146411767, "destination": 3146411827, "path": [[-3368.360723506214, -4577.650581421011], [-3371.1607235105134, -4091.100581423035], [-3756.01072350662, -4093.4505814220756]]}, {"length": 13.7758025426, "source": 3146411767, "destination": 135090059, "path": [[-3368.360723506214, -4577.650581421011], [-3368.1607235109823, -4615.600581423962], [-3368.1607235109823, -4639.600581423764]]}, {"length": 62.9163402374, "source": 3146411767, "destination": 3146411798, "path": [[-3368.360723506214, -4577.650581421011], [-3742.2107235087765, -4575.550581421339]]}, {"length": 96.6742472698, "source": 2069376762, "destination": 2069376744, "path": [[-4256.060723506039, 5432.4994185783735], [-4258.960723511507, 5867.1994185779395]]}, {"length": 13.1361276068, "source": 2069376762, "destination": 2069376738, "path": [[-4256.060723506039, 5432.4994185783735], [-4178.060723511124, 5434.199418576924]]}, {"length": 29.8691753929, "source": 2069376762, "destination": 2069376730, "path": [[-4256.060723506039, 5432.4994185783735], [-4333.810723508691, 5432.1494185778365], [-4402.1607235080755, 5433.149418578864], [-4433.010723509768, 5429.099418577721]]}, {"length": 24.8413574353, "source": 2069376762, "destination": 2069376909, "path": [[-4256.060723506039, 5432.4994185783735], [-4255.51072351027, 5320.799418576882]]}, {"length": 14.0035393962, "source": 3146411772, "destination": 3496300576, "path": [[-4140.660723507494, -441.8505814207663], [-4223.860723506334, -442.0005814225192]]}, {"length": 61.847501349, "source": 3146411772, "destination": 135074736, "path": [[-4140.660723507494, -441.8505814207663], [-4142.410723510182, -163.7505814215956]]}, {"length": 124.161826666, "source": 3146411772, "destination": 3146411765, "path": [[-4140.660723507494, -441.8505814207663], [-3402.9607235055437, -441.8505814207663]]}, {"length": 61.1693325638, "source": 3146411772, "destination": 135043151, "path": [[-4140.660723507494, -441.8505814207663], [-4139.310723509481, -652.8505814209495], [-4138.910723504807, -716.9005814233742]]}, {"length": 199.564530274, "source": 134967039, "destination": 134967042, "path": [[-9379.160723504754, -11095.100581421491], [-10565.160723508881, -11084.600581423132]]}, {"length": 103.634624144, "source": 134967039, "destination": 134986474, "path": [[-9379.160723504754, -11095.100581421491], [-9381.660723505547, -10629.100581422079]]}, {"length": 23.2620868639, "source": 1433125504, "destination": 1433125503, "path": [[-7776.710723511826, 6111.349418578271], [-7776.41072350832, 6215.949418578503]]}, {"length": 199.816939218, "source": 134967042, "destination": 134966040, "path": [[-10565.160723508881, -11084.600581423132], [-11752.660723509223, -11074.10058142122]]}, {"length": 199.564530274, "source": 134967042, "destination": 134967039, "path": [[-10565.160723508881, -11084.600581423132], [-9379.160723504754, -11095.100581421491]]}, {"length": 146.965328486, "source": 1959915267, "destination": 1959915322, "path": [[-7466.060723508861, -4596.6505814227785], [-7472.360723511429, -4608.100581421581], [-7481.760723507591, -4614.950581423472], [-7496.510723505879, -4623.850581420897], [-7510.010723507321, -4629.850581423511], [-7519.5107235117575, -4632.350581420752], [-8146.960723507846, -4789.750581423391], [-8279.71072350664, -4818.9505814235645]]}, {"length": 16.103243393, "source": 1959915267, "destination": 134982563, "path": [[-7466.060723508861, -4596.6505814227785], [-7396.160723509127, -4646.100581421564]]}, {"length": 91.5401098951, "source": 1959915267, "destination": 1428266998, "path": [[-7466.060723508861, -4596.6505814227785], [-7557.960723509894, -4245.000581423852], [-7564.310723509493, -4236.3505814222435], [-7571.610723509537, -4229.550581420937], [-7583.760723505861, -4226.70058142316], [-7616.260723509072, -4230.450581420797]]}, {"length": 13.1649123942, "source": 2069376776, "destination": 2292321457, "path": [[-5581.010723510361, 5861.549418579415], [-5659.210723507613, 5861.199418578877]]}, {"length": 97.022711089, "source": 2069376776, "destination": 2069376779, "path": [[-5581.010723510361, 5861.549418579415], [-5575.160723509498, 5425.299418575946]]}, {"length": 94.7068847287, "source": 2069376776, "destination": 2293563148, "path": [[-5581.010723510361, 5861.549418579415], [-5018.460723505314, 5866.499418576865]]}, {"length": 16.4125763195, "source": 2069376776, "destination": 2069376742, "path": [[-5581.010723510361, 5861.549418579415], [-5581.010723510361, 5935.349418578539]]}, {"length": 949.461007372, "source": 1959915274, "destination": 1959915361, "path": [[-10197.760723507088, -174.9005814239979], [-10266.660723509347, 60.599418578277664], [-10353.160723511224, 263.0994185786051], [-10369.810723510398, 312.49941857680597], [-10379.31072350773, 418.3994185780193], [-10357.760723508136, 489.59941857873446], [-10343.01072350985, 539.3494185774728], [-10302.760723504889, 869.7494185767596], [-10286.010723511652, 925.5494185786972], [-10284.010723509597, 995.5994185766315], [-10288.010723506603, 1095.5494185793668], [-10390.010723504873, 1653.1494185763052], [-10455.060723508324, 1972.349418576158], [-10539.460723506978, 2614.0994185794852], [-10556.260723511457, 2843.499418577977], [-10558.310723510545, 2928.0494185783823], [-10558.310723510545, 3011.299418577806], [-10555.660723511552, 3033.0994185767677], [-10520.710723511684, 3139.399418579103], [-10513.41072351164, 3153.3994185792835], [-10504.010723508372, 3163.0494185783673], [-10489.860723509992, 3166.2994185772677], [-10477.210723507824, 3164.0494185793955], [-10464.460723511593, 3157.9494185791646], [-10448.01072350765, 3141.099418577653], [-10431.460723509645, 3124.499418579063], [-10413.66072350769, 3111.4494185793264], [-10396.810723506178, 3103.6494185769925], [-10376.660723508736, 3097.64941857793], [-10341.860723507069, 3091.4994185771147], [-10318.610723508926, 3088.849418578121], [-10268.01072350736, 3099.5494185788175], [-10191.610723509824, 3113.799418578367], [-10129.91072350644, 3121.8994185771007], [-10050.760723508745, 3130.049418576419], [-9374.460723506672, 3133.299418578872]]}, {"length": 111.677093298, "source": 1959915274, "destination": 2080739029, "path": [[-10197.760723507088, -174.9005814239979], [-10194.56072350522, -145.50058142148714], [-10191.610723509824, -117.05058142297275], [-10194.260723508818, -77.45058142205608], [-10232.26072350525, 278.6494185791355], [-10227.810723506536, 292.99941857630074], [-10218.410723510373, 303.1494185776751], [-10199.660723507975, 317.3494185766401]]}, {"length": 930.303388687, "source": 1959915274, "destination": 2423695599, "path": [[-10197.760723507088, -174.9005814239979], [-10184.510723505013, -221.0005814227145], [-10174.710723511282, -284.30058142348], [-10127.760723506184, -754.7505814216038], [-10117.71072350598, -801.4505814237793], [-10092.960723511624, -868.1005814210607], [-9999.76072350961, -1042.7005814221957], [-9903.11072350636, -1190.7005814215665], [-9807.260723505351, -1311.4505814222355], [-9717.460723507542, -1412.100581422493], [-9614.81072350523, -1506.850581421304], [-9486.060723510547, -1608.3505814208365], [-9270.810723506884, -1774.3005814239154], [-9128.660723504821, -1912.8005814224025], [-8691.810723505001, -2359.100581422524], [-8665.010723511557, -2392.2505814226724], [-8648.560723507615, -2420.5505814229864], [-8574.760723504936, -2598.750581423559], [-8534.660723505283, -2683.300581423964], [-8509.71072350859, -2737.2005814214617], [-8467.910723510386, -2778.000581422191], [-8416.91072351125, -2811.0505814211706], [-8382.460723510121, -2832.1005814220257], [-8168.860723507976, -3085.6505814220727], [-8128.86072350949, -3143.700581421882], [-8068.710723506456, -3290.0505814232874], [-8057.810723506975, -3321.400581423717], [-8038.860723509344, -3351.1505814232123], [-7766.3607235081145, -3738.200581423712], [-7733.310723509135, -3787.0505814225908], [-7726.060723506123, -3810.400581421902]]}, {"length": 97.022711089, "source": 2069376779, "destination": 2069376776, "path": [[-5575.160723509498, 5425.299418575946], [-5581.010723510361, 5861.549418579415]]}, {"length": 24.2224922491, "source": 2069376779, "destination": 2286663419, "path": [[-5575.160723509498, 5425.299418575946], [-5577.91072350966, 5316.399418578754]]}, {"length": 13.6894786288, "source": 2069376779, "destination": 2286663412, "path": [[-5575.160723509498, 5425.299418575946], [-5656.460723507451, 5423.949418577933]]}, {"length": 4.32763976731, "source": 2069376779, "destination": 2069393829, "path": [[-5575.160723509498, 5425.299418575946], [-5549.460723507593, 5424.999418575993]]}, {"length": 14.2099292943, "source": 3146411788, "destination": 135090056, "path": [[-4110.860723507414, -4580.700581421126], [-4110.660723505078, -4613.600581421906], [-4110.660723505078, -4644.600581421799]]}, {"length": 107.88249638, "source": 3146411788, "destination": 134975725, "path": [[-4110.860723507414, -4580.700581421126], [-4113.6607235117135, -4095.6005814223317]]}, {"length": 62.0501644345, "source": 3146411788, "destination": 3146411798, "path": [[-4110.860723507414, -4580.700581421126], [-3742.2107235087765, -4575.550581421339]]}, {"length": 100.398337695, "source": 134983437, "destination": 134983440, "path": [[10279.289276489579, -4970.500581421788], [10277.889276494534, -5421.950581421697]]}, {"length": 89.5538063074, "source": 134983437, "destination": 134979225, "path": [[10279.289276489579, -4970.500581421788], [9747.139276491624, -4971.350581421064]]}, {"length": 9.41584506745, "source": 2069376783, "destination": 2069376796, "path": [[-5056.660723511186, 5294.099418577503], [-5088.810723506754, 5279.849418577953], [-5095.510723506891, 5266.649418576463]]}, {"length": 88.6536323643, "source": 134983440, "destination": 134979226, "path": [[10277.889276494534, -5421.950581421697], [9751.089276491599, -5424.350581421322]]}, {"length": 100.398337695, "source": 134983440, "destination": 134983437, "path": [[10277.889276494534, -5421.950581421697], [10279.289276489579, -4970.500581421788]]}, {"length": 16.2347916307, "source": 2069376785, "destination": 2069376744, "path": [[-4258.060723508095, 5940.199418578373], [-4258.960723511507, 5867.1994185779395]]}, {"length": 16.3030276064, "source": 2069376785, "destination": 1806083049, "path": [[-4258.060723508095, 5940.199418578373], [-4257.960723506926, 5963.599418578269], [-4259.360723509076, 6013.49941857876]]}, {"length": 111.291459068, "source": 2069376785, "destination": 135032858, "path": [[-4258.060723508095, 5940.199418578373], [-4919.160723510175, 5938.399418578655]]}, {"length": 12.9286583505, "source": 2069376785, "destination": 135033670, "path": [[-4258.060723508095, 5940.199418578373], [-4181.260723505886, 5940.599418579495]]}, {"length": 121.333090091, "source": 135073554, "destination": 2062743212, "path": [[10224.339276490467, 4459.899418577606], [10224.339276490467, 4569.399418578258], [9648.239276494052, 4565.5494185794505]]}, {"length": 114.698611709, "source": 135073554, "destination": 2062743237, "path": [[10224.339276490467, 4459.899418577606], [10224.839276489205, 4356.8994185783085], [9679.589276494482, 4351.3494185774]]}, {"length": 11.0863287172, "source": 3146411796, "destination": 135027978, "path": [[-3407.860723505962, 328.4994185790424], [-3408.160723509468, 378.3494185789493]]}, {"length": 21.0733137858, "source": 3146411796, "destination": 4719408247, "path": [[-3407.860723505962, 328.4994185790424], [-3533.0607235053435, 328.0994185779207]]}, {"length": 12.9770172645, "source": 2310516501, "destination": 135016136, "path": [[-2688.2107235053354, 4343.349418576281], [-2687.8107235077664, 4284.999418576518]]}, {"length": 12.5296788855, "source": 2310516501, "destination": 2356771788, "path": [[-2688.2107235053354, 4343.349418576281], [-2613.8107235098573, 4341.699418578315]]}, {"length": 12.8545519819, "source": 2310516501, "destination": 2316883636, "path": [[-2688.2107235053354, 4343.349418576281], [-2764.560723505838, 4344.399418577894]]}, {"length": 20.9508539565, "source": 2069376790, "destination": 2069376912, "path": [[-5056.010723507143, 4818.999418578329], [-5180.460723508418, 4817.949418576717]]}, {"length": 13.3214405013, "source": 2069376790, "destination": 2069376885, "path": [[-5056.010723507143, 4818.999418578329], [-5055.610723509573, 4759.0994185782165]]}, {"length": 21.6723265396, "source": 2069376790, "destination": 2069376751, "path": [[-5056.010723507143, 4818.999418578329], [-5056.660723511186, 4916.449418576718]]}, {"length": 48.2815511726, "source": 2069376793, "destination": 2068973828, "path": [[-4921.9107235103365, 6008.399418576005], [-4923.260723508349, 6225.499418576419]]}, {"length": 15.5743305173, "source": 2069376793, "destination": 135032858, "path": [[-4921.9107235103365, 6008.399418576005], [-4919.160723510175, 5938.399418578655]]}, {"length": 16.4831689455, "source": 2069376793, "destination": 2703728620, "path": [[-4921.9107235103365, 6008.399418576005], [-4893.9107235099755, 6010.64941857743], [-4824.160723508441, 6010.949418577383]]}, {"length": 16.4934645992, "source": 2069376793, "destination": 2703728621, "path": [[-4921.9107235103365, 6008.399418576005], [-4951.11072351051, 6005.99941857638], [-5019.710723509263, 6005.649418579395]]}, {"length": 38.913337625, "source": 3146411802, "destination": 3496300577, "path": [[-4647.010723509482, -442.90058142237854], [-4415.810723507719, -442.4005814236409]]}, {"length": 62.6717274072, "source": 3146411802, "destination": 134957819, "path": [[-4647.010723509482, -442.90058142237854], [-4648.860723506232, -602.2505814229362], [-4649.710723505506, -675.1505814222014], [-4650.2607235083815, -724.7005814221552]]}, {"length": 28.4994522638, "source": 2069376795, "destination": 2069376752, "path": [[-5605.410723511284, 4634.249418579373], [-5604.960723509577, 4762.399418577701]]}, {"length": 166.852195174, "source": 2069376795, "destination": 2310516520, "path": [[-5605.410723511284, 4634.249418579373], [-5605.410723511284, 4360.399418576577], [-5602.710723508153, 4342.149418576469], [-5593.510723507223, 4330.699418577666], [-5583.960723505754, 4324.899418577388], [-5571.860723506461, 4318.799418577157], [-5553.110723511168, 4314.749418576013], [-5011.960723507514, 4313.349418577417]]}, {"length": 96.3758141433, "source": 2069376795, "destination": 2069376943, "path": [[-5605.410723511284, 4634.249418579373], [-5146.510723506026, 4635.249418576848], [-5112.960723508309, 4640.349418576051], [-5088.610723511521, 4650.749418576794], [-5063.160723508986, 4671.04941857599], [-5055.110723510836, 4680.149418579304]]}, {"length": 78.3768756367, "source": 2069376796, "destination": 2069393851, "path": [[-5095.510723506891, 5266.649418576463], [-5056.660723511186, 5244.349418578764], [-5025.810723509494, 5220.999418579453], [-4982.860723508509, 5171.249418577162], [-4949.360723507823, 5137.749418576476], [-4883.6607235074325, 5085.94941857865], [-4856.810723509852, 5067.699418578542], [-4835.360723511429, 5058.549418578195], [-4800.510723505624, 5057.549418577168], [-4751.760723507914, 5057.549418577168]]}, {"length": 88.0719893092, "source": 2069376796, "destination": 2069376743, "path": [[-5095.510723506891, 5266.649418576463], [-5098.210723510021, 5253.449418578526], [-5104.910723510158, 5241.299418578648], [-5118.310723510433, 5226.049418578072], [-5131.760723507739, 5217.949418579337], [-5134.410723506733, 5206.799418576935], [-5126.360723508583, 5198.649418577616], [-5106.260723508171, 5194.599418576473], [-5088.810723506754, 5192.549418577386], [-5060.660723508192, 5186.449418577155], [-5040.5607235077805, 5178.34941857842], [-5016.410723506226, 5159.0494185767], [-5001.660723507939, 5142.799418578647], [-4998.960723504808, 5129.599418577158], [-5004.36072351107, 5114.399418577164], [-5057.760723509829, 4962.399418577234], [-5070.710723508399, 4950.39941857911]]}, {"length": 36.5007779117, "source": 2069376796, "destination": 2069393871, "path": [[-5095.510723506891, 5266.649418576463], [-5129.060723511713, 5291.049418577387], [-5150.510723510138, 5314.399418576699], [-5182.710723509843, 5358.049418578758], [-5216.210723510529, 5401.6994185772655]]}, {"length": 9.41584506745, "source": 2069376796, "destination": 2069376783, "path": [[-5095.510723506891, 5266.649418576463], [-5088.810723506754, 5279.849418577953], [-5056.660723511186, 5294.099418577503]]}, {"length": 12.8103045197, "source": 2069376797, "destination": 2069376818, "path": [[-4099.110723508658, 4828.799418579166], [-4099.910723510902, 4886.39941857727]]}, {"length": 12.6424627703, "source": 2069376797, "destination": 134954268, "path": [[-4099.110723508658, 4828.799418579166], [-4174.210723505212, 4828.499418579213]]}, {"length": 44.8451105962, "source": 2069376797, "destination": 2069036749, "path": [[-4099.110723508658, 4828.799418579166], [-3832.7107235076596, 4829.749418576057]]}, {"length": 13.0210442972, "source": 2069376797, "destination": 1806083101, "path": [[-4099.110723508658, 4828.799418579166], [-4098.810723505153, 4770.2494185770665]]}, {"length": 95.8658157621, "source": 2310516514, "destination": 2069376944, "path": [[-4249.760723510576, 4338.599418577615], [-4248.110723509058, 4488.549418578458], [-4249.760723510576, 4642.099418578738], [-4251.860723506696, 4769.64941857716]]}, {"length": 99.7483366035, "source": 2310516514, "destination": 2069376898, "path": [[-4249.760723510576, 4338.599418577615], [-4814.260723506436, 4336.699418576728], [-4830.660723506242, 4336.2994185791595], [-4842.1107235085965, 4334.649418577641]]}, {"length": 13.1874849362, "source": 2310516514, "destination": 2310516523, "path": [[-4249.760723510576, 4338.599418577615], [-4249.910723508776, 4279.29941857741]]}, {"length": 13.248170666, "source": 2310516514, "destination": 2069376845, "path": [[-4249.760723510576, 4338.599418577615], [-4171.06072350748, 4338.299418577662]]}, {"length": 56.9916304875, "source": 134985691, "destination": 134985689, "path": [[4945.33927648888, 5408.89941857614], [4606.789276493828, 5407.899418578665]]}, {"length": 65.42552979, "source": 134985691, "destination": 4253708826, "path": [[4945.33927648888, 5408.89941857614], [5333.989276493867, 5410.099418575954]]}, {"length": 60.3455638351, "source": 134985691, "destination": 2069036783, "path": [[4945.33927648888, 5408.89941857614], [4945.03927649248, 5137.5494185776915]]}, {"length": 64.7632141828, "source": 135065381, "destination": 134955595, "path": [[-9026.660723506553, -11309.600581423496], [-9029.660723506084, -11229.600581422972], [-9030.660723510664, -11196.600581421024], [-8923.160723504963, -11196.100581422286], [-8795.160723508388, -11195.600581423549]]}, {"length": 9.87465410206, "source": 135065381, "destination": 2080708581, "path": [[-9026.660723506553, -11309.600581423496], [-9027.060723511226, -11354.000581423663]]}, {"length": 64.1422168075, "source": 3146411815, "destination": 135057570, "path": [[-3751.9607235054764, -5102.600581423644], [-3370.810723509976, -5102.05058142077]]}, {"length": 102.389436938, "source": 3146411815, "destination": 3146411775, "path": [[-3751.9607235054764, -5102.600581423644], [-3754.660723508607, -4642.200581422174]]}, {"length": 61.6936428032, "source": 3146411815, "destination": 135057583, "path": [[-3751.9607235054764, -5102.600581423644], [-4118.5607235050265, -5103.000581421213]]}, {"length": 30.2325707028, "source": 2310516520, "destination": 2069376898, "path": [[-5011.960723507514, 4313.349418577417], [-4939.460723505817, 4313.149418578632], [-4885.41072351012, 4312.999418576879], [-4878.160723507108, 4314.4994185766445], [-4871.510723511108, 4317.849418576714], [-4866.91072350709, 4321.899418577857], [-4862.160723504871, 4325.799418577248], [-4853.960723508521, 4330.749418578251], [-4842.1107235085965, 4334.649418577641]]}, {"length": 166.852195174, "source": 2310516520, "destination": 2069376795, "path": [[-5011.960723507514, 4313.349418577417], [-5553.110723511168, 4314.749418576013], [-5571.860723506461, 4318.799418577157], [-5583.960723505754, 4324.899418577388], [-5593.510723507223, 4330.699418577666], [-5602.710723508153, 4342.149418576469], [-5605.410723511284, 4360.399418576577], [-5605.410723511284, 4634.249418579373]]}, {"length": 8.19309829618, "source": 2310516520, "destination": 2310516525, "path": [[-5011.960723507514, 4313.349418577417], [-5009.660723509058, 4276.549418577247]]}, {"length": 38.4316171062, "source": 2080739113, "destination": 135045913, "path": [[-9384.860723507416, -9685.60058142387], [-9382.110723507252, -9858.400581421734]]}, {"length": 12.3083339187, "source": 2080739113, "destination": 1959922651, "path": [[-9384.860723507416, -9685.60058142387], [-9311.710723508782, -9685.250581423332]]}, {"length": 315.372023727, "source": 2080739113, "destination": 2267911766, "path": [[-9384.860723507416, -9685.60058142387], [-9386.560723505965, -8839.350581421711], [-9387.610723507578, -8572.40058142139], [-9387.010723507672, -8267.500581421671]]}, {"length": 208.466449666, "source": 135065386, "destination": 135037811, "path": [[-9028.16072350987, -11476.100581422344], [-7789.160723511657, -11474.100581423842]]}, {"length": 27.1545208882, "source": 135065386, "destination": 2080708581, "path": [[-9028.16072350987, -11476.100581422344], [-9027.060723511226, -11354.000581423663]]}, {"length": 12.0309826861, "source": 2310516523, "destination": 2310516568, "path": [[-4249.910723508776, 4279.29941857741], [-4250.0607235069765, 4225.199418577575]]}, {"length": 13.3322610457, "source": 2310516523, "destination": 135034104, "path": [[-4249.910723508776, 4279.29941857741], [-4170.710723506943, 4279.5994185773625]]}, {"length": 13.1874849362, "source": 2310516523, "destination": 2310516514, "path": [[-4249.910723508776, 4279.29941857741], [-4249.760723510576, 4338.599418577615]]}, {"length": 99.157956933, "source": 2310516523, "destination": 2310516524, "path": [[-4249.910723508776, 4279.29941857741], [-4838.960723510865, 4277.1494185771535]]}, {"length": 12.7983385193, "source": 2310516524, "destination": 2069376898, "path": [[-4838.960723510865, 4277.1494185771535], [-4842.1107235085965, 4334.649418577641]]}, {"length": 99.157956933, "source": 2310516524, "destination": 2310516523, "path": [[-4838.960723510865, 4277.1494185771535], [-4249.910723508776, 4279.29941857741]]}, {"length": 12.3729680422, "source": 2310516524, "destination": 135032884, "path": [[-4838.960723510865, 4277.1494185771535], [-4912.4607235100375, 4276.899418577785]]}, {"length": 12.0870366439, "source": 2310516524, "destination": 2310516573, "path": [[-4838.960723510865, 4277.1494185771535], [-4839.210723510234, 4222.79941857795]]}, {"length": 8.19309829618, "source": 2310516525, "destination": 2310516520, "path": [[-5009.660723509058, 4276.549418577247], [-5011.960723507514, 4313.349418577417]]}, {"length": 9.43736508546, "source": 2310516525, "destination": 2310516530, "path": [[-5009.660723509058, 4276.549418577247], [-5007.360723510601, 4234.149418579136]]}, {"length": 16.3622532284, "source": 2310516525, "destination": 135032884, "path": [[-5009.660723509058, 4276.549418577247], [-4912.4607235100375, 4276.899418577785]]}, {"length": 12.5408232504, "source": 2310516525, "destination": 2310516526, "path": [[-5009.660723509058, 4276.549418577247], [-5084.160723505704, 4276.299418577878]]}, {"length": 10.374492588, "source": 2310516526, "destination": 2310516538, "path": [[-5084.160723505704, 4276.299418577878], [-5083.860723509304, 4229.649418576287]]}, {"length": 95.3114860034, "source": 2310516526, "destination": 135031619, "path": [[-5084.160723505704, 4276.299418577878], [-5650.3607235072195, 4274.199418578206]]}, {"length": 12.5408232504, "source": 2310516526, "destination": 2310516525, "path": [[-5084.160723505704, 4276.299418577878], [-5009.660723509058, 4276.549418577247]]}, {"length": 41.8651262473, "source": 3146411825, "destination": 2086776712, "path": [[-4850.860723507822, -79.15058142060616], [-4851.910723509434, 109.0994185766192]]}, {"length": 112.25974362, "source": 3146411825, "destination": 3146595665, "path": [[-4850.860723507822, -79.15058142060616], [-4957.61072350831, -79.50058142114358], [-4959.510723509197, 263.6994185785113], [-4852.760723508709, 264.04941857904873]]}, {"length": 12.941170534, "source": 2310516530, "destination": 2310516538, "path": [[-5007.360723510601, 4234.149418579136], [-5052.410723507705, 4229.749418577456], [-5083.860723509304, 4229.649418576287]]}, {"length": 9.43736508546, "source": 2310516530, "destination": 2310516525, "path": [[-5007.360723510601, 4234.149418579136], [-5009.660723509058, 4276.549418577247]]}, {"length": 28.2004525058, "source": 2310516530, "destination": 2310516574, "path": [[-5007.360723510601, 4234.149418579136], [-4950.760723509973, 4223.649418577224], [-4841.510723508691, 4222.79941857795]]}, {"length": 29.8039806178, "source": 2310516531, "destination": 2327765636, "path": [[-888.7107235082681, 4231.149418576052], [-1065.7607235060595, 4230.44941857853]]}, {"length": 99.4646998702, "source": 134985694, "destination": 134985696, "path": [[5503.489276492246, 5410.899418578197], [6094.3392764940545, 5413.399418578991]]}, {"length": 63.4263898796, "source": 134985694, "destination": 2069036676, "path": [[5503.489276492246, 5410.899418578197], [5501.689276492527, 5696.099418578626]]}, {"length": 21.58168662, "source": 134985694, "destination": 4253708874, "path": [[5503.489276492246, 5410.899418578197], [5375.289276493333, 5410.249418577706]]}, {"length": 59.8683640018, "source": 134985694, "destination": 2069036516, "path": [[5503.489276492246, 5410.899418578197], [5505.439276490165, 5141.699418576451]]}, {"length": 12.7344479107, "source": 2069376823, "destination": 135034104, "path": [[-4095.0607235075154, 4279.899418577315], [-4170.710723506943, 4279.5994185773625]]}, {"length": 13.1690193706, "source": 2069376823, "destination": 2069376892, "path": [[-4095.0607235075154, 4279.899418577315], [-4096.960723508402, 4339.099418576353]]}, {"length": 95.6564815695, "source": 2069376823, "destination": 2310516522, "path": [[-4095.0607235075154, 4279.899418577315], [-3526.8107235069124, 4281.949418576403]]}, {"length": 11.9656311276, "source": 2069376823, "destination": 2311059948, "path": [[-4095.0607235075154, 4279.899418577315], [-4095.860723509759, 4226.099418577433]]}, {"length": 14.4114362385, "source": 134983481, "destination": 134983496, "path": [[10392.839276491373, -7694.100581421281], [10307.289276489939, -7697.100581420813]]}, {"length": 194.502451946, "source": 134983481, "destination": 2087861293, "path": [[10392.839276491373, -7694.100581421281], [10392.189276494435, -8568.700581420784]]}, {"length": 12.941170534, "source": 2310516538, "destination": 2310516530, "path": [[-5083.860723509304, 4229.649418576287], [-5052.410723507705, 4229.749418577456], [-5007.360723510601, 4234.149418579136]]}, {"length": 81.5045659952, "source": 2310516538, "destination": 2310516548, "path": [[-5083.860723509304, 4229.649418576287], [-5492.460723509395, 4226.449418577971], [-5568.010723507655, 4227.499418576031]]}, {"length": 23.6068744518, "source": 2310516538, "destination": 2310516581, "path": [[-5083.860723509304, 4229.649418576287], [-5083.210723505261, 4123.4994185792575]]}, {"length": 10.374492588, "source": 2310516538, "destination": 2310516526, "path": [[-5083.860723509304, 4229.649418576287], [-5084.160723505704, 4276.299418577878]]}, {"length": 48.5261232925, "source": 2068877116, "destination": 2309494000, "path": [[-3430.910723508873, 5654.149418578669], [-3432.310723511023, 5872.349418577727]]}, {"length": 15.1596755237, "source": 2068877116, "destination": 2312746308, "path": [[-3430.910723508873, 5654.149418578669], [-3340.860723511696, 5654.649418577406]]}, {"length": 121.285318486, "source": 2068877118, "destination": 2068877152, "path": [[-1215.260723505196, 5660.149418577731], [-494.8107235094312, 5664.849418579365]]}, {"length": 64.5162924278, "source": 2068877118, "destination": 135021881, "path": [[-1215.260723505196, 5660.149418577731], [-1217.1107235090517, 5950.249418578579]]}, {"length": 125.312612701, "source": 2068877118, "destination": 2068877128, "path": [[-1215.260723505196, 5660.149418577731], [-1959.6607235072838, 5660.3994185771]]}, {"length": 47.5254017294, "source": 2068877118, "destination": 2358476141, "path": [[-1215.260723505196, 5660.149418577731], [-1213.8607235101517, 5446.4494185779695]]}, {"length": 27.6545789273, "source": 1667939637, "destination": 2568624513, "path": [[-1160.310723506086, -3040.300581421462], [-1161.060723511298, -2915.950581421356]]}, {"length": 25.7833168308, "source": 1667939637, "destination": 4719864580, "path": [[-1160.310723506086, -3040.300581421462], [-1007.1107235063437, -3039.650581420972]]}, {"length": 60.857832813, "source": 2068877120, "destination": 134982672, "path": [[232.83927649231373, 5668.549418576418], [234.58927649500083, 5394.89941857596]]}, {"length": 122.495662944, "source": 2068877120, "destination": 2068877152, "path": [[232.83927649231373, 5668.549418576418], [-494.8107235094312, 5664.849418579365]]}, {"length": 64.2381146572, "source": 2068877120, "destination": 134982675, "path": [[232.83927649231373, 5668.549418576418], [231.03927649259504, 5957.39941857687]]}, {"length": 119.294671773, "source": 2068877120, "destination": 2068877126, "path": [[232.83927649231373, 5668.549418576418], [941.4892764922911, 5669.549418577446]]}, {"length": 96.2972911913, "source": 134983490, "destination": 134983493, "path": [[10305.33927649202, -6811.600581421828], [10309.339276489027, -7244.600581422845]]}, {"length": 47.8580049855, "source": 134983490, "destination": 2086862767, "path": [[10305.33927649202, -6811.600581421828], [10020.939276493835, -6811.300581421875]]}, {"length": 81.5045659952, "source": 2310516548, "destination": 2310516538, "path": [[-5568.010723507655, 4227.499418576031], [-5492.460723509395, 4226.449418577971], [-5083.860723509304, 4229.649418576287]]}, {"length": 48.9765628195, "source": 134983493, "destination": 2086862856, "path": [[10309.339276489027, -7244.600581422845], [10018.289276494841, -7244.050581423522]]}, {"length": 100.632184932, "source": 134983493, "destination": 134983496, "path": [[10309.339276489027, -7244.600581422845], [10307.289276489939, -7697.100581420813]]}, {"length": 96.2972911913, "source": 134983493, "destination": 134983490, "path": [[10309.339276489027, -7244.600581422845], [10305.33927649202, -6811.600581421828]]}, {"length": 119.294671773, "source": 2068877126, "destination": 2068877120, "path": [[941.4892764922911, 5669.549418577446], [232.83927649231373, 5668.549418576418]]}, {"length": 11.6488521831, "source": 2068877126, "destination": 2068877154, "path": [[941.4892764922911, 5669.549418577446], [1010.6892764909503, 5669.549418577446]]}, {"length": 64.460948655, "source": 2068877126, "destination": 134985974, "path": [[941.4892764922911, 5669.549418577446], [939.1392764896977, 5959.399418578925]]}, {"length": 14.4114362385, "source": 134983496, "destination": 134983481, "path": [[10307.289276489939, -7697.100581420813], [10392.839276491373, -7694.100581421281]]}, {"length": 100.632184932, "source": 134983496, "destination": 134983493, "path": [[10307.289276489939, -7697.100581420813], [10309.339276489027, -7244.600581422845]]}, {"length": 41.3718112885, "source": 134983496, "destination": 2087861329, "path": [[10307.289276489939, -7697.100581420813], [10061.439276491057, -7698.900581420531]]}, {"length": 61.6028549979, "source": 1433125516, "destination": 134985546, "path": [[-6398.910723511619, 5094.049418577384], [-6406.110723510494, 5370.999418577327]]}, {"length": 60.7459924248, "source": 1433125516, "destination": 134954259, "path": [[-6398.910723511619, 5094.049418577384], [-6399.610723505589, 4820.899418579216]]}, {"length": 114.739396804, "source": 1433125516, "destination": 1433125515, "path": [[-6398.910723511619, 5094.049418577384], [-7080.510723511679, 5092.449418576451]]}, {"length": 80.1661251142, "source": 2069376844, "destination": 2069376743, "path": [[-5306.760723506442, 5179.349418579449], [-5284.610723506944, 5181.399418578536], [-5255.11072351037, 5174.299418577277], [-5226.960723511809, 5166.149418577959], [-5189.41072350998, 5161.099418579341], [-5129.060723511713, 5147.89941857785], [-5095.510723506891, 5139.799418579116], [-5079.460723507623, 5124.549418578539], [-5074.060723508466, 5108.299418576934], [-5071.210723507136, 5087.249418576079], [-5071.4107235094725, 4987.499418579233], [-5070.710723508399, 4950.39941857911]]}, {"length": 13.0545712303, "source": 2069376845, "destination": 135034104, "path": [[-4171.06072350748, 4338.299418577662], [-4170.710723506943, 4279.5994185773625]]}, {"length": 13.248170666, "source": 2069376845, "destination": 2310516514, "path": [[-4171.06072350748, 4338.299418577662], [-4249.760723510576, 4338.599418577615]]}, {"length": 12.474891465, "source": 2069376845, "destination": 2069376892, "path": [[-4171.06072350748, 4338.299418577662], [-4096.960723508402, 4339.099418576353]]}, {"length": 47.5921083361, "source": 2069376845, "destination": 2069036606, "path": [[-4171.06072350748, 4338.299418577662], [-4172.410723505493, 4552.299418577377]]}, {"length": 121.524398845, "source": 135016270, "destination": 135091010, "path": [[7528.839276488952, 422.89941857731606], [6806.839276492838, 419.8994185777849]]}, {"length": 60.7575639944, "source": 135016270, "destination": 2086776741, "path": [[7528.839276488952, 422.89941857731606], [7530.33927649227, 149.69941857856384]]}, {"length": 63.6285567297, "source": 134958927, "destination": 2091809095, "path": [[-9311.06072350474, 5923.749418577983], [-9307.610723510606, 5637.649418577695]]}, {"length": 110.667923462, "source": 134958927, "destination": 1806083093, "path": [[-9311.06072350474, 5923.749418577983], [-8653.66072351037, 5924.299418577306]]}, {"length": 16.4241041268, "source": 134958927, "destination": 1806083085, "path": [[-9311.06072350474, 5923.749418577983], [-9311.81072350995, 5997.599418577693]]}, {"length": 59.8681381876, "source": 135016272, "destination": 2086854440, "path": [[7531.839276488483, -127.15058142376279], [7533.5892764911705, -396.3505814219559]]}, {"length": 61.5692691036, "source": 135016272, "destination": 2086776741, "path": [[7531.839276488483, -127.15058142376279], [7530.33927649227, 149.69941857856384]]}, {"length": 121.6065448, "source": 135016272, "destination": 135019215, "path": [[7531.839276488483, -127.15058142376279], [8254.339276490442, -124.15058142067892]]}, {"length": 13.6884910388, "source": 134958929, "destination": 2290110633, "path": [[-9314.110723508405, 6485.849418577772], [-9314.010723507237, 6424.29941857614]]}, {"length": 11.5322129838, "source": 134958929, "destination": 2291095711, "path": [[-9314.110723508405, 6485.849418577772], [-9245.610723510821, 6485.94941857894]]}, {"length": 117.69366284, "source": 134983506, "destination": 134979211, "path": [[10407.789276491996, 448.1994185780991], [10201.989276488632, 438.8494185789682], [9944.389276490994, 426.49941857675344], [9709.439276491594, 424.59941857941885]]}, {"length": 60.292670013, "source": 134983506, "destination": 2086776828, "path": [[10407.789276491996, 448.1994185780991], [10411.139276492066, 177.09941857901867]]}, {"length": 61.4360622389, "source": 135016275, "destination": 2086854440, "path": [[7535.339276493858, -672.6005814208236], [7533.5892764911705, -396.3505814219559]]}, {"length": 121.604543708, "source": 135016275, "destination": 135043189, "path": [[7535.339276493858, -672.6005814208236], [6812.8392764919, -675.6005814239074]]}, {"length": 61.8139025762, "source": 135016275, "destination": 2086854422, "path": [[7535.339276493858, -672.6005814208236], [7536.8892764942075, -950.550581421794]]}, {"length": 19.6995024819, "source": 1959915348, "destination": 1959915242, "path": [[-5164.210723506812, -3916.2505814225315], [-5203.660723509529, -3999.650581423708]]}, {"length": 45.9818861185, "source": 1959915348, "destination": 1959915350, "path": [[-5164.210723506812, -3916.2505814225315], [-5421.610723509219, -3985.6005814229434]]}, {"length": 336.641607115, "source": 1959915348, "destination": 2184804575, "path": [[-5164.210723506812, -3916.2505814225315], [-4883.2107235057265, -3525.9005814225475], [-4408.710723510012, -2871.6005814217738], [-4223.4107235117335, -2619.1005814233395], [-4216.710723511596, -2606.400581420587], [-4208.91072350571, -2586.9005814236343]]}, {"length": 12.0204903301, "source": 2310516565, "destination": 135034104, "path": [[-4170.3607235064055, 4225.549418578112], [-4170.710723506943, 4279.5994185773625]]}, {"length": 13.4161602524, "source": 2310516565, "destination": 2310516568, "path": [[-4170.3607235064055, 4225.549418578112], [-4250.0607235069765, 4225.199418577575]]}, {"length": 49.1710553173, "source": 2310516565, "destination": 2069036987, "path": [[-4170.3607235064055, 4225.549418578112], [-4168.960723511362, 4004.449418577138]]}, {"length": 12.5411825812, "source": 2310516565, "destination": 2311059948, "path": [[-4170.3607235064055, 4225.549418578112], [-4095.860723509759, 4226.099418577433]]}, {"length": 221.332607169, "source": 1959915350, "destination": 1959915345, "path": [[-5421.610723509219, -3985.6005814229434], [-6171.51072351163, -3732.0505814228964], [-6235.960723508071, -3725.600581422128], [-6343.260723511435, -3747.9505814239646], [-6390.160723505289, -3754.000581423611], [-6437.110723510386, -3758.100581421786], [-6489.410723510502, -3757.6005814230484], [-6541.710723510619, -3753.500581421321], [-6617.510723508247, -3745.4005814225866], [-6658.510723511313, -3742.050581422518]]}, {"length": 46.202379259, "source": 1959915350, "destination": 1959915242, "path": [[-5421.610723509219, -3985.6005814229434], [-5236.010723507434, -4047.900581422681], [-5203.660723509529, -3999.650581423708]]}, {"length": 45.9818861185, "source": 1959915350, "destination": 1959915348, "path": [[-5421.610723509219, -3985.6005814229434], [-5164.210723506812, -3916.2505814225315]]}, {"length": 58.4001852001, "source": 134983511, "destination": 2086854560, "path": [[10418.33927649094, -665.6005814207333], [10419.889276491289, -928.2005814235106]]}, {"length": 105.28639029, "source": 134983511, "destination": 1954283626, "path": [[10418.33927649094, -665.6005814207333], [9792.789276488635, -667.850581422158]]}, {"length": 61.2358558126, "source": 134983511, "destination": 2086854423, "path": [[10418.33927649094, -665.6005814207333], [10416.589276488252, -390.250581421725]]}, {"length": 12.0309826861, "source": 2310516568, "destination": 2310516523, "path": [[-4250.0607235069765, 4225.199418577575], [-4249.910723508776, 4279.29941857741]]}, {"length": 13.4161602524, "source": 2310516568, "destination": 2310516565, "path": [[-4250.0607235069765, 4225.199418577575], [-4170.3607235064055, 4225.549418578112]]}, {"length": 48.9721537511, "source": 2310516568, "destination": 2311060037, "path": [[-4250.0607235069765, 4225.199418577575], [-4250.0607235069765, 4214.799418576831], [-4249.410723510038, 4176.699418579233], [-4248.110723509058, 4117.399418579026], [-4247.810723505552, 4072.849418577107], [-4247.810723505552, 4004.9994185764604]]}, {"length": 99.1748615377, "source": 2310516568, "destination": 2310516573, "path": [[-4250.0607235069765, 4225.199418577575], [-4839.210723510234, 4222.79941857795]]}, {"length": 12.087782274, "source": 2069376858, "destination": 2069376834, "path": [[-4387.410723509788, 5266.149418577726], [-4388.360723510232, 5320.499418576929]]}, {"length": 96.6079544649, "source": 2069376859, "destination": 2069376818, "path": [[-4104.010723509077, 5320.799418576882], [-4103.760723509708, 5302.949418577896], [-4099.910723510902, 4886.39941857727]]}, {"length": 12.3397803535, "source": 2069376859, "destination": 2069376863, "path": [[-4104.010723509077, 5320.799418576882], [-4177.3107235059115, 5320.549418577513]]}, {"length": 46.0839006835, "source": 2069376859, "destination": 2309494214, "path": [[-4104.010723509077, 5320.799418576882], [-4076.060723505748, 5320.3994185793135], [-3830.260723511003, 5321.349418576205]]}, {"length": 12.5874502388, "source": 2069376859, "destination": 2068973823, "path": [[-4104.010723509077, 5320.799418576882], [-4104.2107235114145, 5377.399418577511]]}, {"length": 12.6010470792, "source": 2068877148, "destination": 2316883619, "path": [[-2696.560723506991, 5657.399418577569], [-2771.4107235112806, 5657.949418576891]]}, {"length": 13.2906214313, "source": 2068877148, "destination": 2355676091, "path": [[-2696.560723506991, 5657.399418577569], [-2617.610723511632, 5656.949418579416]]}, {"length": 48.5260304276, "source": 2068877148, "destination": 2316883622, "path": [[-2696.560723506991, 5657.399418577569], [-2695.1607235048414, 5439.199418578511]]}, {"length": 99.1748615377, "source": 2310516573, "destination": 2310516568, "path": [[-4839.210723510234, 4222.79941857795], [-4250.0607235069765, 4225.199418577575]]}, {"length": 12.0870366439, "source": 2310516573, "destination": 2310516524, "path": [[-4839.210723510234, 4222.79941857795], [-4838.960723510865, 4277.1494185771535]]}, {"length": 0.391428814065, "source": 2310516573, "destination": 2310516574, "path": [[-4839.210723510234, 4222.79941857795], [-4841.510723508691, 4222.79941857795]]}, {"length": 162.013465604, "source": 1667837790, "destination": 135103219, "path": [[-4394.460723510463, -3189.55058142123], [-4340.310723506491, -3121.0005814230612], [-4204.860723511672, -2940.9505814221857], [-4140.210723505788, -2833.6005814217915], [-4120.910723507621, -2788.800581424056], [-4111.310723509121, -2747.1005814234672], [-4105.0107235065525, -2684.3505814220234], [-4103.660723508539, -2582.2005814220006], [-4104.060723506109, -2513.25058142271]]}, {"length": 68.1096722704, "source": 1667837790, "destination": 2960628006, "path": [[-4394.460723510463, -3189.55058142123], [-4079.960723508691, -3382.3005814213047]]}, {"length": 22.9146681127, "source": 1667837790, "destination": 2217880510, "path": [[-4394.460723510463, -3189.55058142123], [-4503.16072350887, -3127.500581420861]]}, {"length": 12.3397803535, "source": 2069376863, "destination": 2069376859, "path": [[-4177.3107235059115, 5320.549418577513], [-4104.010723509077, 5320.799418576882]]}, {"length": 12.6542200548, "source": 2069376863, "destination": 134985660, "path": [[-4177.3107235059115, 5320.549418577513], [-4177.710723510586, 5377.449418578095]]}, {"length": 13.1642277736, "source": 2069376863, "destination": 2069376909, "path": [[-4177.3107235059115, 5320.549418577513], [-4255.51072351027, 5320.799418576882]]}, {"length": 75.0575520517, "source": 2069376863, "destination": 2069379717, "path": [[-4177.3107235059115, 5320.549418577513], [-4175.160723505655, 4983.049418576968]]}, {"length": 31.1584972409, "source": 135016288, "destination": 2086854513, "path": [[7547.339276491983, -2862.6005814231803], [7545.5392764922635, -3002.7005814226013]]}, {"length": 121.680710205, "source": 135016288, "destination": 135019221, "path": [[7547.339276491983, -2862.6005814231803], [8270.339276492678, -2859.600581423649]]}, {"length": 60.0236730081, "source": 135016288, "destination": 2086854413, "path": [[7547.339276491983, -2862.6005814231803], [7545.839276488664, -2592.7005814239124]]}, {"length": 121.59650195, "source": 135016288, "destination": 135047169, "path": [[7547.339276491983, -2862.6005814231803], [6824.8392764900245, -2865.6005814227115]]}, {"length": 949.461007372, "source": 1959915361, "destination": 1959915274, "path": [[-9374.460723506672, 3133.299418578872], [-10050.760723508745, 3130.049418576419], [-10129.91072350644, 3121.8994185771007], [-10191.610723509824, 3113.799418578367], [-10268.01072350736, 3099.5494185788175], [-10318.610723508926, 3088.849418578121], [-10341.860723507069, 3091.4994185771147], [-10376.660723508736, 3097.64941857793], [-10396.810723506178, 3103.6494185769925], [-10413.66072350769, 3111.4494185793264], [-10431.460723509645, 3124.499418579063], [-10448.01072350765, 3141.099418577653], [-10464.460723511593, 3157.9494185791646], [-10477.210723507824, 3164.0494185793955], [-10489.860723509992, 3166.2994185772677], [-10504.010723508372, 3163.0494185783673], [-10513.41072351164, 3153.3994185792835], [-10520.710723511684, 3139.399418579103], [-10555.660723511552, 3033.0994185767677], [-10558.310723510545, 3011.299418577806], [-10558.310723510545, 2928.0494185783823], [-10556.260723511457, 2843.499418577977], [-10539.460723506978, 2614.0994185794852], [-10455.060723508324, 1972.349418576158], [-10390.010723504873, 1653.1494185763052], [-10288.010723506603, 1095.5494185793668], [-10284.010723509597, 995.5994185766315], [-10286.010723511652, 925.5494185786972], [-10302.760723504889, 869.7494185767596], [-10343.01072350985, 539.3494185774728], [-10357.760723508136, 489.59941857873446], [-10379.31072350773, 418.3994185780193], [-10369.810723510398, 312.49941857680597], [-10353.160723511224, 263.0994185786051], [-10266.660723509347, 60.599418578277664], [-10197.760723507088, -174.9005814239979]]}, {"length": 4.26047542356, "source": 1959915361, "destination": 2282972956, "path": [[-9374.460723506672, 3133.299418578872], [-9374.81072350721, 3114.1494185789043]]}, {"length": 94.7738232769, "source": 1959915361, "destination": 1959915218, "path": [[-9374.460723506672, 3133.299418578872], [-9375.460723511253, 3189.39941857721], [-9375.660723506484, 3265.8494185788813], [-9376.410723511697, 3317.79941857846], [-9377.76072350971, 3458.9494185794933], [-9378.160723507279, 3559.4494185779977]]}, {"length": 238.925018734, "source": 2068877154, "destination": 2068020337, "path": [[1010.6892764909503, 5669.549418577446], [1715.6392764903217, 5673.599418578589], [2429.939276488824, 5678.199418579055]]}, {"length": 60.5902293091, "source": 2068877154, "destination": 2068853442, "path": [[1010.6892764909503, 5669.549418577446], [1011.3392764949936, 5397.0994185768]]}, {"length": 11.6488521831, "source": 2068877154, "destination": 2068877126, "path": [[1010.6892764909503, 5669.549418577446], [941.4892764922911, 5669.549418577446]]}, {"length": 27.3692445835, "source": 2069376868, "destination": 2069376865, "path": [[-4615.4107235096835, 5725.499418577584], [-4471.910723509609, 5667.649418576559]]}, {"length": 82.3850579752, "source": 2069376868, "destination": 2069376938, "path": [[-4615.4107235096835, 5725.499418577584], [-4694.560723507379, 5750.899418575983], [-4737.460723511333, 5760.049418576329], [-4756.2607235107635, 5761.049418577358], [-4779.010723510169, 5760.049418576329], [-4801.810723506605, 5753.949418576099], [-4827.3107235061725, 5739.749418577134], [-4850.110723509715, 5725.499418577584], [-4870.210723510127, 5720.449418578965], [-4890.36072350757, 5717.399418578851], [-4917.160723508118, 5720.449418578965], [-4944.0107235056985, 5720.449418578965], [-4964.11072350611, 5719.449418577938], [-4989.610723505677, 5714.349418578735], [-5029.8107235065, 5701.149418577244], [-5044.560723504787, 5698.09941857713], [-5057.960723505062, 5698.09941857713], [-5070.06072351146, 5707.249418577476]]}, {"length": 119.586035623, "source": 2069376868, "destination": 2069376926, "path": [[-4615.4107235096835, 5725.499418577584], [-4677.110723505962, 5707.249418577476], [-4720.010723509915, 5689.999418578395], [-4771.010723509051, 5665.649418578056], [-5134.410723506733, 5465.649418578522], [-5141.11072350687, 5490.999418576337], [-5190.760723507992, 5502.199418579323]]}, {"length": 48.7383003159, "source": 2069376868, "destination": 2069376919, "path": [[-4615.4107235096835, 5725.499418577584], [-4418.26072351148, 5778.299418576438], [-4374.010723509514, 5793.549418577015], [-4345.860723510952, 5804.699418579417]]}, {"length": 23.6068744518, "source": 2310516581, "destination": 2310516538, "path": [[-5083.210723505261, 4123.4994185792575], [-5083.860723509304, 4229.649418576287]]}, {"length": 13.1601193019, "source": 2069376873, "destination": 2069376744, "path": [[-4180.810723511286, 5868.74941857829], [-4258.960723511507, 5867.1994185779395]]}, {"length": 96.640726031, "source": 2069376873, "destination": 2069376738, "path": [[-4180.810723511286, 5868.74941857829], [-4178.060723511124, 5434.199418576924]]}, {"length": 15.9790743895, "source": 2069376873, "destination": 135033670, "path": [[-4180.810723511286, 5868.74941857829], [-4181.260723505886, 5940.599418579495]]}, {"length": 12.3991634873, "source": 2069376873, "destination": 2069376831, "path": [[-4180.810723511286, 5868.74941857829], [-4107.210723510945, 5870.899418578546]]}, {"length": 100.617451041, "source": 135016299, "destination": 135057529, "path": [[7927.339276491807, -4982.600581421082], [7329.58927649463, -4992.550581423671]]}, {"length": 51.705744447, "source": 135016299, "destination": 2086854498, "path": [[7927.339276491807, -4982.600581421082], [7927.489276490007, -5215.100581423826]]}, {"length": 54.8194375089, "source": 135016299, "destination": 2086854501, "path": [[7927.339276491807, -4982.600581421082], [7926.3892764913635, -4736.10058142171]]}, {"length": 49.1145684647, "source": 135016299, "destination": 1935184007, "path": [[7927.339276491807, -4982.600581421082], [8219.189276488236, -4982.0505814217595]]}, {"length": 202.332775233, "source": 135016301, "destination": 135016304, "path": [[7928.739276493957, -5896.3005814227645], [7934.389276492482, -6806.100581421504]]}, {"length": 50.3778070451, "source": 135016301, "destination": 1935184032, "path": [[7928.739276493957, -5896.3005814227645], [8228.089276492767, -5894.000581420755]]}, {"length": 48.9883387741, "source": 135016301, "destination": 1933539568, "path": [[7928.739276493957, -5896.3005814227645], [7637.639276488528, -5898.050581421899]]}, {"length": 51.2832381791, "source": 135016301, "destination": 2086854470, "path": [[7928.739276493957, -5896.3005814227645], [7928.13927649405, -5665.700581420907]]}, {"length": 96.4105469349, "source": 2086776686, "destination": 134968242, "path": [[7284.939276495095, 978.0494185775979], [7249.789276492891, 976.5994185784166], [6712.339276489843, 967.3994185774859]]}, {"length": 144.096535586, "source": 2086776686, "destination": 2086776725, "path": [[7284.939276495095, 978.0494185775979], [7286.589276489508, 724.7994185775042], [7808.039276490319, 729.9494185772915]]}, {"length": 153.573973102, "source": 2086776686, "destination": 134968231, "path": [[7284.939276495095, 978.0494185775979], [7573.389276494425, 989.7994185763537], [7972.439276493049, 997.8994185786405], [8196.739276492337, 1001.4994185780779]]}, {"length": 8.7061536844, "source": 135016304, "destination": 2139785362, "path": [[7934.389276492482, -6806.100581421504], [7934.639276491851, -6845.250581420714]]}, {"length": 50.0299819074, "source": 135016304, "destination": 1935184051, "path": [[7934.389276492482, -6806.100581421504], [8231.689276492205, -6804.550581421154]]}, {"length": 48.0906767359, "source": 135016304, "destination": 1933539604, "path": [[7934.389276492482, -6806.100581421504], [7648.639276489177, -6809.400581420988]]}, {"length": 202.332775233, "source": 135016304, "destination": 135016301, "path": [[7934.389276492482, -6806.100581421504], [7928.739276493957, -5896.3005814227645]]}, {"length": 7.37202819237, "source": 135016306, "destination": 1933540857, "path": [[7941.1892764937875, -7719.150581422696], [7941.439276493156, -7752.300581422844]]}, {"length": 194.349987651, "source": 135016306, "destination": 2139785362, "path": [[7941.1892764937875, -7719.150581422696], [7939.539276492269, -7560.800581423166], [7934.639276491851, -6845.250581420714]]}, {"length": 49.17994425, "source": 135016306, "destination": 1933540837, "path": [[7941.1892764937875, -7719.150581422696], [7648.939276492683, -7721.300581422952]]}, {"length": 50.0834568994, "source": 135016306, "destination": 1935184551, "path": [[7941.1892764937875, -7719.150581422696], [8238.789276489912, -7715.800581422627]]}, {"length": 14.4815378345, "source": 2069376885, "destination": 2069376860, "path": [[-5055.610723509573, 4759.0994185782165], [-5033.460723510075, 4739.049418578389], [-5014.710723507676, 4725.949418578068], [-4993.410723507452, 4714.6994185780495]]}, {"length": 13.3214405013, "source": 2069376885, "destination": 2069376790, "path": [[-5055.610723509573, 4759.0994185782165], [-5056.010723507143, 4818.999418578329]]}, {"length": 17.5576658801, "source": 2069376885, "destination": 2069376943, "path": [[-5055.610723509573, 4759.0994185782165], [-5055.110723510836, 4680.149418579304]]}, {"length": 61.3351957998, "source": 2086776694, "destination": 2086776725, "path": [[7808.139276491488, 454.1494185765771], [7808.039276490319, 729.9494185772915]]}, {"length": 74.5136105, "source": 2086776694, "destination": 135100487, "path": [[7808.139276491488, 454.1494185765771], [8250.839276492172, 455.8994185792642]]}, {"length": 108.594086521, "source": 2286663657, "destination": 2286663816, "path": [[-5711.5107235077285, 4762.299418576532], [-5708.910723505767, 4373.799418576851], [-5708.910723505767, 4273.999418579422]]}, {"length": 9.97364377451, "source": 2286663657, "destination": 2069376811, "path": [[-5711.5107235077285, 4762.299418576532], [-5652.260723508107, 4762.149418578332]]}, {"length": 97.9923039723, "source": 2286663657, "destination": 2285540227, "path": [[-5711.5107235077285, 4762.299418576532], [-5730.610723510665, 4762.349418577116], [-5960.31072350911, 4761.1994185778885], [-6019.310723509363, 4761.649418576042], [-6089.360723507298, 4760.799418576767], [-6293.610723510312, 4760.149418576276]]}, {"length": 13.6105760775, "source": 2286663657, "destination": 2286663645, "path": [[-5711.5107235077285, 4762.299418576532], [-5711.910723505298, 4823.499418577626]]}, {"length": 53.2734979678, "source": 2086776696, "destination": 2086776800, "path": [[8954.339276492363, 2924.7994185794823], [8954.039276488857, 2685.2494185760634]]}, {"length": 113.093803381, "source": 2086776696, "destination": 2086776843, "path": [[8954.339276492363, 2924.7994185794823], [9626.189276488618, 2928.8494185770733]]}, {"length": 61.924614741, "source": 2086776696, "destination": 134960003, "path": [[8954.339276492363, 2924.7994185794823], [8954.6892764929, 3203.24941857919]]}, {"length": 61.0157931961, "source": 2086776697, "destination": 135074387, "path": [[8957.639276488295, 2378.6994185783783], [8953.989276491826, 2653.0494185763587]]}, {"length": 191.093710481, "source": 2086776697, "destination": 135012821, "path": [[8957.639276488295, 2378.6994185783783], [8961.789276490606, 2064.7494185794812], [8963.539276493293, 1714.6994185779363], [8964.989276492473, 1519.449418577068]]}, {"length": 113.117111057, "source": 2086776697, "destination": 2086776839, "path": [[8957.639276488295, 2378.6994185783783], [9629.639276489854, 2382.749418575969]]}, {"length": 11.1768509323, "source": 2069376890, "destination": 2069393865, "path": [[-5209.5107235103915, 5447.349418577829], [-5236.360723507971, 5430.099418578749], [-5264.5107235065325, 5419.949418577375]]}, {"length": 12.5996165238, "source": 2069376890, "destination": 2069376926, "path": [[-5209.5107235103915, 5447.349418577829], [-5190.760723507992, 5502.199418579323]]}, {"length": 10.2142760383, "source": 2069376890, "destination": 2069393871, "path": [[-5209.5107235103915, 5447.349418577829], [-5216.210723510529, 5401.6994185772655]]}, {"length": 95.9186191912, "source": 2069376892, "destination": 2310516505, "path": [[-4096.960723508402, 4339.099418576353], [-3966.860723508603, 4339.29941857869], [-3527.16072350745, 4341.7494185789]]}, {"length": 47.2727162569, "source": 2069376892, "destination": 2069376922, "path": [[-4096.960723508402, 4339.099418576353], [-4097.510723511277, 4365.8494185763175], [-4098.760723508121, 4409.749418577747], [-4098.360723510552, 4458.849418575994], [-4099.110723508658, 4551.649418576886]]}, {"length": 12.474891465, "source": 2069376892, "destination": 2069376845, "path": [[-4096.960723508402, 4339.099418576353], [-4171.06072350748, 4338.299418577662]]}, {"length": 13.1690193706, "source": 2069376892, "destination": 2069376823, "path": [[-4096.960723508402, 4339.099418576353], [-4095.0607235075154, 4279.899418577315]]}, {"length": 12.4144186375, "source": 2310516605, "destination": 2311060161, "path": [[-4093.8107235106713, 3787.3994185773086], [-4167.560723509212, 3787.099418577355]]}, {"length": 12.9422261328, "source": 2310516605, "destination": 2251802367, "path": [[-4093.8107235106713, 3787.3994185773086], [-4093.7607235065343, 3773.4994185782966], [-4093.610723508334, 3729.1994185792987]]}, {"length": 48.0915671658, "source": 2310516605, "destination": 2069036566, "path": [[-4093.8107235106713, 3787.3994185773086], [-4094.1607235112087, 3984.249418579111], [-4094.3607235064405, 4003.6494185784477]]}, {"length": 53.8324919795, "source": 2310516605, "destination": 2311060159, "path": [[-4093.8107235106713, 3787.3994185773086], [-3774.010723510912, 3788.0994185783834]]}, {"length": 12.0189906744, "source": 2310516606, "destination": 2311060161, "path": [[-4238.960723505159, 3786.7994185774023], [-4167.560723509212, 3787.099418577355]]}, {"length": 1.42086344278, "source": 2310516606, "destination": 2311060162, "path": [[-4238.960723505159, 3786.7994185774023], [-4247.410723507983, 3786.7494185768182]]}, {"length": 48.6162880367, "source": 2310516606, "destination": 2311060037, "path": [[-4238.960723505159, 3786.7994185774023], [-4238.310723508221, 3875.2994185777825], [-4247.810723505552, 3938.5994185785476], [-4247.810723505552, 4004.9994185764604]]}, {"length": 99.0892763643, "source": 2310516607, "destination": 2311060162, "path": [[-4836.060723505398, 3786.649418579202], [-4679.810723509092, 3787.6494185766774], [-4247.410723507983, 3786.7494185768182]]}, {"length": 89.3707824545, "source": 2310516607, "destination": 2311060180, "path": [[-4836.060723505398, 3786.649418579202], [-4835.1607235090905, 3750.699418578307], [-4830.910723505611, 3666.849418578977], [-4754.810723511582, 3667.0994185783456], [-4552.260723507117, 3667.849418576452], [-4458.360723511134, 3668.1994185769895]]}, {"length": 97.0008733279, "source": 2310516607, "destination": 2310516574, "path": [[-4836.060723505398, 3786.649418579202], [-4836.660723505303, 3811.7494185776477], [-4837.11072350701, 3844.049418578521], [-4840.36072350591, 4167.149418577765], [-4841.510723508691, 4222.79941857795]]}, {"length": 30.2325707028, "source": 2069376898, "destination": 2310516520, "path": [[-4842.1107235085965, 4334.649418577641], [-4853.960723508521, 4330.749418578251], [-4862.160723504871, 4325.799418577248], [-4866.91072350709, 4321.899418577857], [-4871.510723511108, 4317.849418576714], [-4878.160723507108, 4314.4994185766445], [-4885.41072351012, 4312.999418576879], [-4939.460723505817, 4313.149418578632], [-5011.960723507514, 4313.349418577417]]}, {"length": 99.7483366035, "source": 2069376898, "destination": 2310516514, "path": [[-4842.1107235085965, 4334.649418577641], [-4830.660723506242, 4336.2994185791595], [-4814.260723506436, 4336.699418576728], [-4249.760723510576, 4338.599418577615]]}, {"length": 12.7983385193, "source": 2069376898, "destination": 2310516524, "path": [[-4842.1107235085965, 4334.649418577641], [-4838.960723510865, 4277.1494185771535]]}, {"length": 12.565951589, "source": 2069376903, "destination": 2069376818, "path": [[-4174.560723505749, 4886.39941857727], [-4099.910723510902, 4886.39941857727]]}, {"length": 13.1196508018, "source": 2069376903, "destination": 2069376739, "path": [[-4174.560723505749, 4886.39941857727], [-4252.460723506601, 4888.249418577572]]}, {"length": 12.8766186959, "source": 2069376903, "destination": 134954268, "path": [[-4174.560723505749, 4886.39941857727], [-4174.210723505212, 4828.499418579213]]}, {"length": 21.494438498, "source": 2069376903, "destination": 2069379717, "path": [[-4174.560723505749, 4886.39941857727], [-4175.160723505655, 4983.049418576968]]}, {"length": 14.2099292943, "source": 135090056, "destination": 3146411788, "path": [[-4110.660723505078, -4644.600581421799], [-4110.660723505078, -4613.600581421906], [-4110.860723507414, -4580.700581421126]]}, {"length": 59.9129832412, "source": 135090056, "destination": 3146411775, "path": [[-4110.660723505078, -4644.600581421799], [-3754.660723508607, -4642.200581422174]]}, {"length": 89.0031194482, "source": 135090056, "destination": 134957796, "path": [[-4110.660723505078, -4644.600581421799], [-4639.460723510069, -4651.300581421936]]}, {"length": 101.952256251, "source": 135090056, "destination": 135057583, "path": [[-4110.660723505078, -4644.600581421799], [-4118.5607235050265, -5103.000581421213]]}, {"length": 14.0160840586, "source": 2285539209, "destination": 1965661536, "path": [[-7143.060723507233, 6431.14941857803], [-7125.460723507615, 6492.749418576694]]}, {"length": 64.0917777598, "source": 2285539209, "destination": 2286590560, "path": [[-7143.060723507233, 6431.14941857803], [-7205.060723507017, 6431.999418577306], [-7305.460723507906, 6431.099418577446], [-7408.760723507157, 6431.249418579199], [-7466.060723508861, 6430.949418579246], [-7523.760723508132, 6430.949418579246]]}, {"length": 47.3494690782, "source": 2285539209, "destination": 1965661530, "path": [[-7143.060723507233, 6431.14941857803], [-7132.110723510721, 6218.399418578712]]}, {"length": 9.75607728862, "source": 2285539209, "destination": 2286590558, "path": [[-7143.060723507233, 6431.14941857803], [-7108.860723505472, 6430.699418576324], [-7085.110723508592, 6431.099418577446]]}, {"length": 61.7029187303, "source": 2086776714, "destination": 2086776776, "path": [[-3051.0607235072484, 1509.2994185792463], [-3052.8107235099355, 1786.7494185779265]]}, {"length": 64.1135459991, "source": 2086776714, "destination": 135012767, "path": [[-3051.0607235072484, 1509.2994185792463], [-2670.160723511117, 1510.649418577259]]}, {"length": 102.845267266, "source": 135090059, "destination": 135057570, "path": [[-3368.1607235109823, -4639.600581423764], [-3370.810723509976, -5102.05058142077]]}, {"length": 13.7758025426, "source": 135090059, "destination": 3146411767, "path": [[-3368.1607235109823, -4639.600581423764], [-3368.1607235109823, -4615.600581423962], [-3368.360723506214, -4577.650581421011]]}, {"length": 65.0459450123, "source": 135090059, "destination": 3146411775, "path": [[-3368.1607235109823, -4639.600581423764], [-3754.660723508607, -4642.200581422174]]}, {"length": 23.2620868639, "source": 1942240578, "destination": 135043185, "path": [[5442.489276489937, -785.9005814232489], [5442.489276489937, -681.3005814230166]]}, {"length": 98.926170136, "source": 1942240578, "destination": 1942240514, "path": [[5442.489276489937, -785.9005814232489], [5452.089276488437, -768.1505814218781], [5472.289276490017, -748.6505814213729], [5551.039276490144, -736.8005814214484], [5585.9892764900105, -749.800581420601], [5612.189276490653, -766.1505814233749], [5623.039276493102, -782.1505814220586], [5626.839276494877, -796.2505814234078], [5624.439276495252, -817.0505814213413], [5615.88927649126, -832.5505814212875], [5601.139276492972, -845.0505814217024], [5582.489276491742, -852.9005814210677], [5562.439276488362, -855.4005814218613], [5546.1392764897255, -854.1005814208802], [5534.1892764886325, -851.7005814212553], [5520.539276488989, -846.6505814226366], [5509.439276494277, -839.5005814207934], [5502.73927649414, -831.1005814221062], [5498.789276494164, -823.8505814226471], [5498.589276491828, -812.0005814227227], [5500.239276493347, -802.8505814223763], [5504.089276492152, -796.4505814221923], [5513.93927649002, -787.6505814223833], [5534.23927649277, -782.8505814231335], [5545.989276491526, -784.4505814205149], [5557.689276493249, -788.9505814233644], [5565.389276490861, -800.4505814227514], [5566.039276494905, -809.5505814225135], [5559.139276492431, -815.5005814209915]]}, {"length": 18.5324152601, "source": 1942240578, "destination": 1942240548, "path": [[5442.489276489937, -785.9005814232489], [5441.689276494799, -809.0505814237758], [5442.789276493442, -828.9505814218501], [5450.689276493393, -853.100581423405], [5459.089276492079, -867.1005814235855]]}, {"length": 28.4015913514, "source": 2285539214, "destination": 2286590562, "path": [[-7756.010723511508, 6428.549418576068], [-7596.560723506229, 6430.899418578661], [-7587.310723508267, 6430.899418578661]]}, {"length": 121.347760136, "source": 2086776720, "destination": 2086776683, "path": [[-468.81072351112607, 2348.249418577808], [252.08927649345014, 2352.299418578951]]}, {"length": 122.096820527, "source": 2086776720, "destination": 2086776830, "path": [[-468.81072351112607, 2348.249418577808], [-1194.1607235073093, 2344.1994185766644]]}, {"length": 60.9800365284, "source": 2086776720, "destination": 135025174, "path": [[-468.81072351112607, 2348.249418577808], [-470.51072350967615, 2622.4494185775884]]}, {"length": 60.1793300217, "source": 2086776724, "destination": 134968225, "path": [[8969.439276491186, 732.2994185763321], [8967.889276490838, 1002.8994185766749]]}, {"length": 53.8856222034, "source": 2086776724, "destination": 135074379, "path": [[8969.439276491186, 732.2994185763321], [8970.789276489199, 489.99941857630347]]}, {"length": 112.777459583, "source": 2086776724, "destination": 2086776758, "path": [[8969.439276491186, 732.2994185763321], [9639.389276493659, 740.4494185792032]]}, {"length": 74.0484198891, "source": 2086776725, "destination": 2086776811, "path": [[7808.039276490319, 729.9494185772915], [8247.93927649381, 734.3494185789723]]}, {"length": 144.096535586, "source": 2086776725, "destination": 2086776686, "path": [[7808.039276490319, 729.9494185772915], [7286.589276489508, 724.7994185775042], [7284.939276495095, 978.0494185775979]]}, {"length": 61.3351957998, "source": 2086776725, "destination": 2086776694, "path": [[7808.039276490319, 729.9494185772915], [7808.139276491488, 454.1494185765771]]}, {"length": 20.1790838342, "source": 2069376919, "destination": 2069376744, "path": [[-4345.860723510952, 5804.699418579417], [-4258.960723511507, 5867.1994185779395]]}, {"length": 37.1727435578, "source": 2069376919, "destination": 2069376865, "path": [[-4345.860723510952, 5804.699418579417], [-4412.910723509356, 5725.499418577584], [-4471.910723509609, 5667.649418576559]]}, {"length": 48.7383003159, "source": 2069376919, "destination": 2069376868, "path": [[-4345.860723510952, 5804.699418579417], [-4374.010723509514, 5793.549418577015], [-4418.26072351148, 5778.299418576438], [-4615.4107235096835, 5725.499418577584]]}, {"length": 98.0966951427, "source": 2086776728, "destination": 2086776693, "path": [[7644.089276489296, 3467.549418576965], [8226.839276488818, 3470.8994185770334]]}, {"length": 47.2727162569, "source": 2069376922, "destination": 2069376892, "path": [[-4099.110723508658, 4551.649418576886], [-4098.360723510552, 4458.849418575994], [-4098.760723508121, 4409.749418577747], [-4097.510723511277, 4365.8494185763175], [-4096.960723508402, 4339.099418576353]]}, {"length": 48.6151777895, "source": 2069376922, "destination": 1806083101, "path": [[-4099.110723508658, 4551.649418576886], [-4099.510723506228, 4664.949418579312], [-4098.810723505153, 4770.2494185770665]]}, {"length": 12.3401455384, "source": 2069376922, "destination": 2069036606, "path": [[-4099.110723508658, 4551.649418576886], [-4172.410723505493, 4552.299418577377]]}, {"length": 96.1423098174, "source": 2069376922, "destination": 2310516445, "path": [[-4099.110723508658, 4551.649418576886], [-3712.0607235081593, 4552.149418579176], [-3528.010723506725, 4554.949418576371]]}, {"length": 60.6793388107, "source": 2086776732, "destination": 135049946, "path": [[1008.5892764948312, 124.94941857710273], [1009.3892764899692, -147.90058142111207]]}, {"length": 124.938779806, "source": 2086776732, "destination": 2086776819, "path": [[1008.5892764948312, 124.94941857710273], [266.28927648886247, 123.19941857796834]]}, {"length": 60.4800548781, "source": 2086776732, "destination": 135049943, "path": [[1008.5892764948312, 124.94941857710273], [1006.4892764916067, 396.8994185790109]]}, {"length": 13.1388717321, "source": 2069376925, "destination": 2069376944, "path": [[-4173.810723507642, 4769.949418577113], [-4251.860723506696, 4769.64941857716]]}, {"length": 13.0210442972, "source": 2069376925, "destination": 134954268, "path": [[-4173.810723507642, 4769.949418577113], [-4174.210723505212, 4828.499418579213]]}, {"length": 12.624984785, "source": 2069376925, "destination": 1806083101, "path": [[-4173.810723507642, 4769.949418577113], [-4098.810723505153, 4770.2494185770665]]}, {"length": 48.4038520534, "source": 2069376925, "destination": 2069036606, "path": [[-4173.810723507642, 4769.949418577113], [-4172.410723505493, 4552.299418577377]]}, {"length": 12.5996165238, "source": 2069376926, "destination": 2069376890, "path": [[-5190.760723507992, 5502.199418579323], [-5209.5107235103915, 5447.349418577829]]}, {"length": 119.586035623, "source": 2069376926, "destination": 2069376868, "path": [[-5190.760723507992, 5502.199418579323], [-5141.11072350687, 5490.999418576337], [-5134.410723506733, 5465.649418578522], [-4771.010723509051, 5665.649418578056], [-4720.010723509915, 5689.999418578395], [-4677.110723505962, 5707.249418577476], [-4615.4107235096835, 5725.499418577584]]}, {"length": 55.4665906864, "source": 2069376926, "destination": 2069376938, "path": [[-5190.760723507992, 5502.199418579323], [-5181.360723504724, 5521.449418576907], [-5177.360723507718, 5535.699418576456], [-5177.360723507718, 5553.949418576565], [-5182.710723509843, 5575.299418577373], [-5185.410723505867, 5597.599418578625], [-5185.410723505867, 5612.849418579202], [-5181.360723504724, 5631.099418579311], [-5173.3107235065745, 5647.349418577363], [-5161.260723511418, 5662.59941857794], [-5143.810723510001, 5675.7994185794305], [-5114.310723506322, 5691.999418576898], [-5070.06072351146, 5707.249418577476]]}, {"length": 50.5217970141, "source": 2086776737, "destination": 135012837, "path": [[7902.039276494577, 1576.4994185794023], [8202.189276488525, 1575.3494185766215]]}, {"length": 115.401896164, "source": 2086776737, "destination": 2086776814, "path": [[7902.039276494577, 1576.4994185794023], [7896.589276491284, 2095.399418578836]]}, {"length": 158.761551823, "source": 2086776737, "destination": 1429422197, "path": [[7902.039276494577, 1576.4994185794023], [7598.639276494623, 1577.6994185792148], [7597.039276490136, 2061.9494185787344]]}, {"length": 61.0245075542, "source": 2086776739, "destination": 135022800, "path": [[8974.739276489174, 153.74941857615454], [8976.339276493662, -120.65058142241014]]}, {"length": 121.504966321, "source": 2086776739, "destination": 2086776745, "path": [[8974.739276489174, 153.74941857615454], [8252.83927649423, 152.7494185786793]]}, {"length": 112.408362394, "source": 2086776739, "destination": 2086776842, "path": [[8974.739276489174, 153.74941857615454], [9642.589276488423, 155.79941857879476]]}, {"length": 58.9783649779, "source": 2086776739, "destination": 135022798, "path": [[8974.739276489174, 153.74941857615454], [8973.239276492961, 418.94941857734125]]}, {"length": 61.3459839061, "source": 2086776740, "destination": 134968179, "path": [[-4853.110723509246, 668.1494185762915], [-4851.210723508359, 802.4494185789877], [-4888.160723510282, 941.1994185768435]]}, {"length": 121.524917991, "source": 2086776741, "destination": 2086776744, "path": [[7530.33927649227, 149.69941857856384], [6808.3392764890505, 145.64941857742042]]}, {"length": 121.607656503, "source": 2086776741, "destination": 2086776745, "path": [[7530.33927649227, 149.69941857856384], [8252.83927649423, 152.7494185786793]]}, {"length": 61.5692691036, "source": 2086776741, "destination": 135016272, "path": [[7530.33927649227, 149.69941857856384], [7531.839276488483, -127.15058142376279]]}, {"length": 60.7575639944, "source": 2086776741, "destination": 135016270, "path": [[7530.33927649227, 149.69941857856384], [7528.839276488952, 422.89941857731606]]}, {"length": 82.9634644692, "source": 2086776742, "destination": 2074057010, "path": [[9711.53927649482, 173.04941857787526], [9713.989276491475, -120.55058142124153], [9717.589276490911, -199.9505814218594]]}, {"length": 117.754918879, "source": 2086776742, "destination": 2086776828, "path": [[9711.53927649482, 173.04941857787526], [10411.139276492066, 177.09941857901867]]}, {"length": 124.119064602, "source": 2086776743, "destination": 2086776761, "path": [[-4888.710723506051, 1232.3494185793038], [-4151.310723507606, 1235.0494185788818]]}, {"length": 64.7547754479, "source": 2086776743, "destination": 134968179, "path": [[-4888.710723506051, 1232.3494185793038], [-4890.660723511075, 1021.8494185778582], [-4888.160723510282, 941.1994185768435]]}, {"length": 60.0927037064, "source": 2086776743, "destination": 135012759, "path": [[-4888.710723506051, 1232.3494185793038], [-4892.210723511425, 1502.5494185785249]]}, {"length": 61.3356366251, "source": 2086776744, "destination": 135074784, "path": [[6808.3392764890505, 145.64941857742042], [6809.839276492368, -130.15058142329394]]}, {"length": 121.79168863, "source": 2086776744, "destination": 2086776754, "path": [[6808.3392764890505, 145.64941857742042], [6084.739276488449, 143.59941857833292]]}, {"length": 60.9910464962, "source": 2086776744, "destination": 135091010, "path": [[6808.3392764890505, 145.64941857742042], [6806.839276492838, 419.8994185777849]]}, {"length": 121.524917991, "source": 2086776744, "destination": 2086776741, "path": [[6808.3392764890505, 145.64941857742042], [7530.33927649227, 149.69941857856384]]}, {"length": 121.504966321, "source": 2086776745, "destination": 2086776739, "path": [[8252.83927649423, 152.7494185786793], [8974.739276489174, 153.74941857615454]]}, {"length": 60.7463633426, "source": 2086776745, "destination": 135019213, "path": [[8252.83927649423, 152.7494185786793], [8251.33927649091, 425.8994185768472]]}, {"length": 61.5803932584, "source": 2086776745, "destination": 135019215, "path": [[8252.83927649423, 152.7494185786793], [8254.339276490442, -124.15058142067892]]}, {"length": 121.607656503, "source": 2086776745, "destination": 2086776741, "path": [[8252.83927649423, 152.7494185786793], [7530.33927649227, 149.69941857856384]]}, {"length": 60.857832813, "source": 2086776746, "destination": 135074761, "path": [[-451.11072351033954, -426.9005814236948], [-452.8607235059212, -153.25058142323655]]}, {"length": 121.327259342, "source": 2086776746, "destination": 2086715247, "path": [[-451.11072351033954, -426.9005814236948], [269.73927649009966, -424.30058142173266]]}, {"length": 61.5027750059, "source": 2086776746, "destination": 135043164, "path": [[-451.11072351033954, -426.9005814236948], [-449.36072350765244, -703.4505814225156]]}, {"length": 122.084677141, "source": 2086776746, "destination": 2086776831, "path": [[-451.11072351033954, -426.9005814236948], [-1176.4607235065228, -429.55058142268854]]}, {"length": 96.3758141433, "source": 2069376943, "destination": 2069376795, "path": [[-5055.110723510836, 4680.149418579304], [-5063.160723508986, 4671.04941857599], [-5088.610723511521, 4650.749418576794], [-5112.960723508309, 4640.349418576051], [-5146.510723506026, 4635.249418576848], [-5605.410723511284, 4634.249418579373]]}, {"length": 12.9547722469, "source": 2069376943, "destination": 2069376860, "path": [[-5055.110723510836, 4680.149418579304], [-5020.410723510338, 4702.24941857822], [-4993.410723507452, 4714.6994185780495]]}, {"length": 17.5576658801, "source": 2069376943, "destination": 2069376885, "path": [[-5055.110723510836, 4680.149418579304], [-5055.610723509573, 4759.0994185782165]]}, {"length": 95.8658157621, "source": 2069376944, "destination": 2310516514, "path": [[-4251.860723506696, 4769.64941857716], [-4249.760723510576, 4642.099418578738], [-4248.110723509058, 4488.549418578458], [-4249.760723510576, 4338.599418577615]]}, {"length": 26.3756532945, "source": 2069376944, "destination": 2069376739, "path": [[-4251.860723506696, 4769.64941857716], [-4252.460723506601, 4888.249418577572]]}, {"length": 128.37317145, "source": 2069376944, "destination": 2069376860, "path": [[-4251.860723506696, 4769.64941857716], [-4788.410723506331, 4773.299418577181], [-4816.610723509029, 4770.2494185770665], [-4843.410723509578, 4761.1494185773045], [-4867.360723508796, 4749.1994185762105], [-4884.960723508413, 4734.749418577877], [-4909.110723509968, 4723.549418578443], [-4937.26072350853, 4719.499418577299], [-4966.610723506903, 4717.749418578165], [-4993.410723507452, 4714.6994185780495]]}, {"length": 13.1388717321, "source": 2069376944, "destination": 2069376925, "path": [[-4251.860723506696, 4769.64941857716], [-4173.810723507642, 4769.949418577113]]}, {"length": 121.79168863, "source": 2086776754, "destination": 2086776744, "path": [[6084.739276488449, 143.59941857833292], [6808.3392764890505, 145.64941857742042]]}, {"length": 59.6017617047, "source": 2086776754, "destination": 135108005, "path": [[6084.739276488449, 143.59941857833292], [6082.539276491161, 411.59941857671356]]}, {"length": 60.9137869723, "source": 2086776754, "destination": 135074782, "path": [[6084.739276488449, 143.59941857833292], [6086.939276492842, -130.30058142149414]]}, {"length": 53.868977582, "source": 2267910068, "destination": 2267910129, "path": [[-12270.16072351006, -7812.550581423494], [-11963.410723510038, -7881.850581423322]]}, {"length": 123.534261318, "source": 2267910068, "destination": 2267910132, "path": [[-12270.16072351006, -7812.550581423494], [-12448.660723507033, -7772.200581420919], [-12491.610723508018, -7753.05058142095], [-12507.660723507286, -7738.750581420817], [-12541.910723506078, -7381.65058142215]]}, {"length": 104.146311982, "source": 2267910068, "destination": 2267910086, "path": [[-12270.16072351006, -7812.550581423494], [-12171.110723507183, -7553.150581422586], [-12167.110723510177, -7534.8505814218925], [-12167.760723507115, -7518.10058142155], [-12213.360723507094, -7358.800581421576]]}, {"length": 124.829516278, "source": 2086776757, "destination": 2086776808, "path": [[-1933.8607235113159, 2340.149418579074], [-2675.4607235091044, 2338.149418577018]]}, {"length": 61.6027818459, "source": 2086776757, "destination": 135019157, "path": [[-1933.8607235113159, 2340.149418579074], [-1935.6107235068976, 2617.149418576048]]}, {"length": 124.512189453, "source": 2086776757, "destination": 2086776830, "path": [[-1933.8607235113159, 2340.149418579074], [-1194.1607235073093, 2344.1994185766644]]}, {"length": 19.7483954689, "source": 2086776758, "destination": 2074050020, "path": [[9639.389276493659, 740.4494185792032], [9638.839276490784, 829.2494185759836]]}, {"length": 112.777459583, "source": 2086776758, "destination": 2086776724, "path": [[9639.389276493659, 740.4494185792032], [8969.439276491186, 732.2994185763321]]}, {"length": 47.9141862577, "source": 2086776760, "destination": 3146412233, "path": [[-3773.6107235062377, 111.84941857678155], [-3774.66072350785, 327.29941857922995]]}, {"length": 16.8990402463, "source": 2086776760, "destination": 3146557062, "path": [[-3773.6107235062377, 111.84941857678155], [-3874.0107235071264, 112.19941857731897]]}, {"length": 61.3241741351, "source": 2086776760, "destination": 3146411777, "path": [[-3773.6107235062377, 111.84941857678155], [-3773.410723511006, -163.9005814233485]]}, {"length": 121.128302719, "source": 135016377, "destination": 135043153, "path": [[-3397.7107235116932, -1260.8005814236378], [-3402.3607235056375, -764.5005814218564], [-3402.8107235073435, -716.1505814217151]]}, {"length": 60.3045591012, "source": 135016377, "destination": 3146412242, "path": [[-3397.7107235116932, -1260.8005814236378], [-3503.060723510032, -1261.2005814212068], [-3756.01072350662, -1262.1005814210662]]}, {"length": 49.2538343137, "source": 2086776762, "destination": 134959997, "path": [[7883.239276495146, 3197.8494185764816], [7590.689276490537, 3193.499418578938]]}, {"length": 245.184349972, "source": 2086776762, "destination": 2086776814, "path": [[7883.239276495146, 3197.8494185764816], [7896.589276491284, 2095.399418578836]]}, {"length": 48.9345879504, "source": 2086776762, "destination": 134959999, "path": [[7883.239276495146, 3197.8494185764816], [8173.939276488795, 3199.6494185762003]]}, {"length": 45.6776580509, "source": 2327765663, "destination": 2327765632, "path": [[-793.7607235106725, 4291.8994185789925], [-1065.1107235091217, 4290.949418578549]]}, {"length": 14.9118150838, "source": 2327765663, "destination": 2327765628, "path": [[-793.7607235106725, 4291.8994185789925], [-792.8607235072604, 4224.849418577037]]}, {"length": 51.7968274216, "source": 2327765663, "destination": 135025220, "path": [[-793.7607235106725, 4291.8994185789925], [-486.06072351020657, 4293.049418578221]]}, {"length": 13.3966220691, "source": 2568679357, "destination": 2568599867, "path": [[825.4892764938404, -2695.650581422626], [846.8392764910959, -2688.250581421414], [899.1392764912121, -2672.8505814226364]]}, {"length": 112.864404082, "source": 2568679357, "destination": 4615885006, "path": [[825.4892764938404, -2695.650581422626], [799.5892764895984, -2704.6005814206355], [756.3392764922128, -2713.8005814215658], [718.5392764910148, -2722.0005814214687], [702.4392764947152, -2725.150581422753], [676.6892764886734, -2730.150581420787], [634.8392764934374, -2734.250581422515], [606.4392764884019, -2734.250581422515], [538.9392764882928, -2726.050581422612], [502.9392764939189, -2719.950581422381], [484.93927648962654, -2716.8505814216815], [444.3892764882662, -2711.7505814224787], [395.78927648875606, -2711.7505814224787], [345.83927649123325, -2717.9005814232937], [329.1392764950274, -2719.800581420628], [318.8392764883474, -2720.950581423409], [259.63927649286234, -2827.50058142156]]}, {"length": 67.0176912365, "source": 2568679357, "destination": 2568679359, "path": [[825.4892764938404, -2695.650581422626], [826.8392764918531, -2394.30058142176]]}, {"length": 19.8834777878, "source": 2568679359, "destination": 2568679360, "path": [[826.8392764918531, -2394.30058142176], [708.8892764883781, -2389.2005814225568]]}, {"length": 7.43290476836, "source": 2568679359, "destination": 2568679361, "path": [[826.8392764918531, -2394.30058142176], [870.8392764944506, -2397.150581423091]]}, {"length": 30.9436682038, "source": 2568679359, "destination": 2568599698, "path": [[826.8392764918531, -2394.30058142176], [826.8892764888847, -2383.000581421157], [809.2392764922351, -2355.80058142304], [792.8892764894613, -2341.350581421153], [780.5892764949363, -2331.0005814209944], [762.8392764900127, -2322.7505814205074], [705.9392764929839, -2299.700581421149]]}, {"length": 67.0176912365, "source": 2568679359, "destination": 2568679357, "path": [[826.8392764918531, -2394.30058142176], [825.4892764938404, -2695.650581422626]]}, {"length": 36.5418620896, "source": 2568679360, "destination": 2568679346, "path": [[708.8892764883781, -2389.2005814225568], [709.5892764894529, -2398.05058142295], [690.7892764900225, -2389.8505814230475], [662.3892764920924, -2384.750581423845], [602.7892764919329, -2382.7005814212043], [570.2892764887224, -2383.700581422232], [536.4392764946047, -2386.800581422932], [508.6392764894754, -2390.4505814229537]]}, {"length": 6.09364204772, "source": 2568679360, "destination": 2568599683, "path": [[708.8892764883781, -2389.2005814225568], [706.789276492259, -2361.8505814226864]]}, {"length": 19.8834777878, "source": 2568679360, "destination": 2568679359, "path": [[708.8892764883781, -2389.2005814225568], [826.8392764918531, -2394.30058142176]]}, {"length": 28.466896646, "source": 2568679361, "destination": 2587010385, "path": [[870.8392764944506, -2397.150581423091], [886.6892764913814, -2344.900581423559], [888.0392764893941, -2322.3005814223543], [890.7892764895564, -2287.3005814219027], [889.8892764932498, -2270.6005814221444]]}, {"length": 3.60879535314, "source": 2568679361, "destination": 2568599607, "path": [[870.8392764944506, -2397.150581423091], [882.7392764914066, -2410.6505814209813]]}, {"length": 7.43290476836, "source": 2568679361, "destination": 2568679359, "path": [[870.8392764944506, -2397.150581423091], [826.8392764918531, -2394.30058142176]]}, {"length": 2.16277833371, "source": 135016386, "destination": 2568599337, "path": [[-1161.6607235112042, -1256.6005814207415], [-1174.5107235086039, -1256.950581421279]]}, {"length": 89.6225676636, "source": 135016386, "destination": 2586986523, "path": [[-1161.6607235112042, -1256.6005814207415], [-629.1607235056063, -1256.400581421957]]}, {"length": 122.949814811, "source": 135016388, "destination": 135043164, "path": [[-445.86072350938366, -1256.3005814207884], [-449.36072350765244, -703.4505814225156]]}, {"length": 18.6397688548, "source": 135016388, "destination": 2586986493, "path": [[-445.86072350938366, -1256.3005814207884], [-556.6107235068785, -1256.3505814213727]]}, {"length": 16.5702447257, "source": 135016388, "destination": 2586986495, "path": [[-445.86072350938366, -1256.3005814207884], [-347.4107235064139, -1255.7005814208821]]}, {"length": 322.543826119, "source": 2267910085, "destination": 2267910132, "path": [[-12035.710723509397, -7302.800581420854], [-12047.66072351049, -7286.15058142168], [-12106.010723506699, -7164.900581422273], [-12248.8107235057, -6901.050581422652], [-12262.310723507142, -6871.200581421988], [-12285.71072351059, -6850.800581421623], [-12335.410723508743, -6823.000581423599], [-12445.310723506964, -6775.20058142278], [-12495.610723505024, -6751.3505814211785], [-12537.210723507997, -6738.800581423731], [-12572.010723509664, -6733.60058142336], [-12604.310723510536, -6734.700581422004], [-12631.110723511085, -6744.850581423379], [-12655.910723509578, -6762.100581422459], [-12674.010723507934, -6787.500581420858], [-12686.010723506059, -6813.250581423346], [-12692.110723506288, -6843.300581422795], [-12692.060723509258, -6880.7505814234555], [-12684.760723509215, -6916.350581423813], [-12541.910723506078, -7381.65058142215]]}, {"length": 55.689600855, "source": 2267910085, "destination": 2267910118, "path": [[-12035.710723509397, -7302.800581420854], [-12018.16072350681, -7327.250581422362], [-11974.560723508886, -7368.850581421782], [-11924.960723504795, -7402.850581421206], [-11872.060723504774, -7431.350581423857], [-11823.110723504726, -7453.1505814228185], [-11792.960723511214, -7467.1005814224145]]}, {"length": 32.3843948506, "source": 2267910085, "destination": 2267910086, "path": [[-12035.710723509397, -7302.800581420854], [-12213.360723507094, -7358.800581421576]]}, {"length": 125.531065233, "source": 135016390, "destination": 1887485040, "path": [[277.33927649364887, -1251.5505814221228], [1023.189276494918, -1249.8505814235727]]}, {"length": 12.4437864713, "source": 135016390, "destination": 2586986572, "path": [[277.33927649364887, -1251.5505814221228], [278.38927649526113, -1307.5005814222607]]}, {"length": 122.474213673, "source": 135016390, "destination": 2573122316, "path": [[277.33927649364887, -1251.5505814221228], [271.48927649278676, -700.8505814205535]]}, {"length": 97.3515525949, "source": 135016390, "destination": 2586986512, "path": [[277.33927649364887, -1251.5505814221228], [-301.06072350832846, -1255.400581420929]]}, {"length": 61.7029187303, "source": 2086776776, "destination": 2086776714, "path": [[-3052.8107235099355, 1786.7494185779265], [-3051.0607235072484, 1509.2994185792463]]}, {"length": 64.1141082951, "source": 2086776776, "destination": 2086776774, "path": [[-3052.8107235099355, 1786.7494185779265], [-2671.9107235066986, 1788.1494185765234]]}, {"length": 60.1795546683, "source": 2086776776, "destination": 2086776846, "path": [[-3052.8107235099355, 1786.7494185779265], [-3054.560723505517, 2057.3494185782693]]}, {"length": 79.5334578726, "source": 135016394, "destination": 4720007304, "path": [[1757.3392764944629, -1248.600581423176], [2229.8892764922584, -1246.9505814216575]]}, {"length": 11.9867026956, "source": 135016394, "destination": 2587199388, "path": [[1757.3392764944629, -1248.600581423176], [1757.5892764938317, -1302.5005814206736]]}, {"length": 63.3720853582, "source": 135016394, "destination": 2086715245, "path": [[1757.3392764944629, -1248.600581423176], [1754.3892764919633, -963.6505814221152]]}, {"length": 58.9745444972, "source": 135016394, "destination": 2587199422, "path": [[1757.3392764944629, -1248.600581423176], [1406.9392764923805, -1249.5005814230353]]}, {"length": 20.6859056442, "source": 2267910091, "destination": 2267910080, "path": [[-11090.110723507962, -7976.2005814210115], [-11185.310723504927, -8035.050581423065]]}, {"length": 42.7300273857, "source": 2267910091, "destination": 2267910080, "path": [[-11090.110723507962, -7976.2005814210115], [-11106.860723508305, -7950.800581422613], [-11121.010723506686, -7945.85058142161], [-11139.11072350504, -7941.2505814211445], [-11161.260723511645, -7941.2505814211445], [-11184.660723507988, -7947.750581422497], [-11202.760723506344, -7959.450581420669], [-11212.910723507719, -7971.200581422977], [-11216.860723507692, -7979.200581420542], [-11204.110723511461, -7997.500581421235], [-11192.110723506232, -8012.800581422397], [-11185.310723504927, -8035.050581423065]]}, {"length": 24.6195368154, "source": 2267910091, "destination": 1428269604, "path": [[-11090.110723507962, -7976.2005814210115], [-11085.410723509882, -7994.95058142341], [-11065.960723506407, -8016.250581423634], [-11047.610723508682, -8080.500581421291]]}, {"length": 181.837932817, "source": 2267910091, "destination": 2267910118, "path": [[-11090.110723507962, -7976.2005814210115], [-11088.110723505906, -7941.7005814228505], [-11088.110723505906, -7926.950581421011], [-11088.110723505906, -7916.300581420899], [-11099.51072351123, -7900.050581422846], [-11133.01072350481, -7851.350581422167], [-11234.960723506048, -7699.150581423453], [-11273.160723504816, -7638.250581422312], [-11298.66072351149, -7610.350581423119], [-11326.860723507081, -7586.100581423949], [-11357.0107235077, -7564.200581423819], [-11385.810723510303, -7546.950581421186], [-11428.160723511382, -7529.300581420984], [-11479.110723506381, -7514.050581423959], [-11534.06072350549, -7502.4005814228185], [-11574.910723510357, -7497.200581422448], [-11617.160723510267, -7494.700581421654], [-11651.360723504922, -7492.150581423829], [-11717.16072350648, -7482.100581423623], [-11792.960723511214, -7467.1005814224145]]}, {"length": 32.0961515869, "source": 135016399, "destination": 4720007032, "path": [[2511.3392764950504, -1246.1005814223824], [2439.8392764908294, -1246.2505814205826], [2320.6392764905104, -1246.6505814217044]]}, {"length": 109.746335442, "source": 135016399, "destination": 4719995859, "path": [[2511.3392764950504, -1246.1005814223824], [2512.8392764912633, -1624.6005814224418], [2516.0392764931316, -1666.7005814205993], [2522.739276493269, -1707.9505814230345], [2529.7392764898063, -1738.7505814205895]]}, {"length": 116.307605952, "source": 135016399, "destination": 135016405, "path": [[2511.3392764950504, -1246.1005814223824], [3202.3892764883044, -1245.2505814231074]]}, {"length": 6.53952854344, "source": 2568624529, "destination": 2568624522, "path": [[-1264.5107235087494, -2583.5505814235657], [-1303.3607235115596, -2584.1505814234724]]}, {"length": 12.6417498561, "source": 2568624529, "destination": 2568624533, "path": [[-1264.5107235087494, -2583.5505814235657], [-1189.410723505091, -2582.4505814213694]]}, {"length": 22.4946897018, "source": 2568624529, "destination": 2568624530, "path": [[-1264.5107235087494, -2583.5505814235657], [-1264.610723509918, -2482.400581421018]]}, {"length": 86.7218933601, "source": 2080739282, "destination": 1428269738, "path": [[-9389.110723510896, -7802.600581420904], [-9386.860723509471, -8192.550581423318]]}, {"length": 81.2303141881, "source": 2080739282, "destination": 2080738981, "path": [[-9389.110723510896, -7802.600581420904], [-9420.960723510063, -7622.250581423628], [-9429.860723507489, -7587.500581422546], [-9440.560723511737, -7565.200581421294], [-9456.660723508037, -7548.950581423242], [-9478.110723506461, -7535.750581421752], [-9503.610723506028, -7530.700581423133], [-9531.760723511696, -7529.700581422105], [-9586.010723509731, -7537.000581422149]]}, {"length": 73.8504072071, "source": 2080739282, "destination": 134968422, "path": [[-9389.110723510896, -7802.600581420904], [-9389.560723505496, -7721.750581421105], [-9388.160723510453, -7672.200581421152], [-9384.610723508047, -7626.95058142171], [-9379.210723508892, -7595.200581423711], [-9368.31072350941, -7558.150581420619], [-9355.960723510747, -7525.550581423346], [-9323.660723509875, -7479.150581421123]]}, {"length": 96.1507068424, "source": 135022844, "destination": 134956081, "path": [[9117.889276488711, -4973.750581420689], [9116.28927649133, -4541.400581423715]]}, {"length": 48.6015637236, "source": 135022844, "destination": 2086854442, "path": [[9117.889276488711, -4973.750581420689], [9406.689276488578, -4972.800581423798]]}, {"length": 101.432989264, "source": 135022844, "destination": 134991221, "path": [[9117.889276488711, -4973.750581420689], [9120.339276492472, -5429.850581421647]]}, {"length": 51.4276723372, "source": 135022844, "destination": 1935184006, "path": [[9117.889276488711, -4973.750581420689], [8812.339276488501, -4977.800581421832]]}, {"length": 16.201448421, "source": 1933540181, "destination": 1932196370, "path": [[6091.639276490923, -7398.500581423661], [6090.889276492817, -7325.650581421428]]}, {"length": 8.21945685745, "source": 1933540181, "destination": 1933540179, "path": [[6091.639276490923, -7398.500581423661], [6042.789276492044, -7398.350581421909]]}, {"length": 77.4835988047, "source": 1933540181, "destination": 135047493, "path": [[6091.639276490923, -7398.500581423661], [6095.639276495035, -7746.900581423688]]}, {"length": 18.5816597555, "source": 1433125540, "destination": 1433125578, "path": [[-8054.510723511044, 4832.549418576804], [-8055.010723509781, 4820.149418577557], [-8056.210723509594, 4811.449418578917], [-8058.110723510481, 4801.299418577542], [-8061.3607235093805, 4791.099418579137], [-8065.360723506387, 4780.999418578347], [-8075.210723511362, 4768.249418578563], [-8088.1107235057925, 4755.099418577657]]}, {"length": 8.29266216679, "source": 1433125540, "destination": 2289073341, "path": [[-8054.510723511044, 4832.549418576804], [-8057.36072350527, 4840.249418577969], [-8060.310723507769, 4846.149418579415], [-8068.910723508793, 4855.9494185767], [-8080.26072350998, 4863.149418579127]]}, {"length": 12.9522310639, "source": 1433125540, "destination": 1433125543, "path": [[-8054.510723511044, 4832.549418576804], [-8034.160723511263, 4846.949418578106], [-8029.010723511476, 4850.799418576912], [-8022.810723510076, 4853.099418578921], [-8014.310723510221, 4852.7994185789685], [-8007.6107235100835, 4849.949418577637], [-7996.510723508265, 4838.549418579419]]}, {"length": 80.6214188374, "source": 134946738, "destination": 134946751, "path": [[-2125.6607235073943, -11168.600581420662], [-2095.1607235062397, -11348.600581420953], [-2082.6607235093775, -11385.600581423461], [-2059.1607235047604, -11430.100581421244], [-2027.160723507393, -11471.100581420756], [-1988.1607235063825, -11508.100581423263]]}, {"length": 53.2734979678, "source": 2086776800, "destination": 2086776696, "path": [[8954.039276488857, 2685.2494185760634], [8954.339276492363, 2924.7994185794823]]}, {"length": 7.16054862446, "source": 2086776800, "destination": 135074387, "path": [[8954.039276488857, 2685.2494185760634], [8953.989276491826, 2653.0494185763587]]}, {"length": 384.346651691, "source": 2086776800, "destination": 135012821, "path": [[8954.039276488857, 2685.2494185760634], [8634.789276491972, 2682.2994185771167], [8599.889276489137, 2672.149418579295], [8575.78927649172, 2659.949418578833], [8565.039276490439, 2641.6994185787244], [8562.339276494413, 2617.349418578385], [8576.439276488656, 1519.5494185782366], [8964.989276492473, 1519.449418577068]]}, {"length": 96.5931403954, "source": 2267910118, "destination": 2267910129, "path": [[-11792.960723511214, -7467.1005814224145], [-11839.410723510468, -7580.05058142075], [-11872.310723511247, -7660.100581421858], [-11963.410723510038, -7881.850581423322]]}, {"length": 181.837932817, "source": 2267910118, "destination": 2267910091, "path": [[-11792.960723511214, -7467.1005814224145], [-11717.16072350648, -7482.100581423623], [-11651.360723504922, -7492.150581423829], [-11617.160723510267, -7494.700581421654], [-11574.910723510357, -7497.200581422448], [-11534.06072350549, -7502.4005814228185], [-11479.110723506381, -7514.050581423959], [-11428.160723511382, -7529.300581420984], [-11385.810723510303, -7546.950581421186], [-11357.0107235077, -7564.200581423819], [-11326.860723507081, -7586.100581423949], [-11298.66072351149, -7610.350581423119], [-11273.160723504816, -7638.250581422312], [-11234.960723506048, -7699.150581423453], [-11133.01072350481, -7851.350581422167], [-11099.51072351123, -7900.050581422846], [-11088.110723505906, -7916.300581420899], [-11088.110723505906, -7926.950581421011], [-11088.110723505906, -7941.7005814228505], [-11090.110723507962, -7976.2005814210115]]}, {"length": 55.689600855, "source": 2267910118, "destination": 2267910085, "path": [[-11792.960723511214, -7467.1005814224145], [-11823.110723504726, -7453.1505814228185], [-11872.060723504774, -7431.350581423857], [-11924.960723504795, -7402.850581421206], [-11974.560723508886, -7368.850581421782], [-12018.16072350681, -7327.250581422362], [-12035.710723509397, -7302.800581420854]]}, {"length": 34.4596003121, "source": 3146595665, "destination": 2086776712, "path": [[-4852.760723508709, 264.04941857904873], [-4851.910723509434, 109.0994185766192]]}, {"length": 112.25974362, "source": 3146595665, "destination": 3146411825, "path": [[-4852.760723508709, 264.04941857904873], [-4959.510723509197, 263.6994185785113], [-4957.61072350831, -79.50058142114358], [-4850.860723507822, -79.15058142060616]]}, {"length": 13.6555407515, "source": 3146595665, "destination": 3146557073, "path": [[-4852.760723508709, 264.04941857904873], [-4852.160723508803, 292.4494185769788], [-4852.210723505834, 325.44941857892695]]}, {"length": 62.9149077258, "source": 2086776808, "destination": 135016132, "path": [[-2675.4607235091044, 2338.149418577018], [-2673.6107235052486, 2055.249418578597]]}, {"length": 124.829516278, "source": 2086776808, "destination": 2086776757, "path": [[-2675.4607235091044, 2338.149418577018], [-1933.8607235113159, 2340.149418579074]]}, {"length": 59.420404702, "source": 2086776811, "destination": 134968228, "path": [[8247.93927649381, 734.3494185789723], [8241.839276493578, 1001.4994185780779]]}, {"length": 74.0484198891, "source": 2086776811, "destination": 2086776725, "path": [[8247.93927649381, 734.3494185789723], [7808.039276490319, 729.9494185772915]]}, {"length": 61.9656577242, "source": 2086776811, "destination": 135100487, "path": [[8247.93927649381, 734.3494185789723], [8253.839276491704, 473.8994185764511], [8250.839276492172, 455.8994185792642]]}, {"length": 57.3324341406, "source": 1916976466, "destination": 1916976464, "path": [[-137.5607235090115, -6350.600581424004], [-136.56072351153625, -6092.80058142403]]}, {"length": 165.773412434, "source": 1916976466, "destination": 1916976465, "path": [[-137.5607235090115, -6350.600581424004], [-1122.6607235101937, -6347.60058142092]]}, {"length": 52.5842893426, "source": 1916976466, "destination": 1916976468, "path": [[-137.5607235090115, -6350.600581424004], [-138.46072350531813, -6587.050581423171]]}, {"length": 22.4946897018, "source": 2568624530, "destination": 2568624529, "path": [[-1264.610723509918, -2482.400581421018], [-1264.5107235087494, -2583.5505814235657]]}, {"length": 19.5732826345, "source": 2568624530, "destination": 2568624535, "path": [[-1264.610723509918, -2482.400581421018], [-1266.760723510174, -2394.4005814229286]]}, {"length": 25.5977333339, "source": 2568624530, "destination": 2568624533, "path": [[-1264.610723509918, -2482.400581421018], [-1189.410723505091, -2582.4505814213694]]}, {"length": 10.8475934961, "source": 2568624530, "destination": 2568624534, "path": [[-1264.610723509918, -2482.400581421018], [-1200.1607235063716, -2481.950581422865]]}, {"length": 6.42902858172, "source": 2568624530, "destination": 2568624525, "path": [[-1264.610723509918, -2482.400581421018], [-1302.810723508685, -2482.65058142394]]}, {"length": 20.1312232572, "source": 2638686205, "destination": 2638686234, "path": [[-9844.010723504936, -9690.200581420782], [-9810.110723506681, -9708.900581422597], [-9793.660723509845, -9723.650581420883], [-9779.26072350499, -9736.100581420715], [-9764.910723511377, -9756.300581422294]]}, {"length": 66.8275904824, "source": 2638686205, "destination": 2638686245, "path": [[-9844.010723504936, -9690.200581420782], [-9850.210723506336, -9716.650581420794], [-9870.760723508454, -9739.200581421414], [-9893.360723509659, -9750.100581420895], [-9936.510723505875, -9757.100581420986], [-9985.860723510597, -9751.650581421245], [-10049.560723508932, -9759.400581422995], [-10117.360723505442, -9771.100581421166], [-10185.210723506088, -9785.850581423005]]}, {"length": 627.335879938, "source": 2638686205, "destination": 2638686117, "path": [[-9844.010723504936, -9690.200581420782], [-9836.810723506062, -9647.450581422134], [-9825.510723509013, -9557.250581423204], [-9815.26072350647, -9514.500581421004], [-9794.710723511456, -9481.850581423147], [-9755.66072350631, -9435.950581423214], [-9723.810723507142, -9400.200581421102], [-9708.36072350778, -9376.900581422376], [-9700.160723511432, -9355.900581422105], [-9700.160723511432, -9327.900581421743], [-9702.210723510518, -9285.150581423097], [-9709.410723509392, -9254.050581422036], [-9727.910723505318, -9219.800581423244], [-9746.410723508347, -9199.600581421662], [-9784.410723504778, -9184.850581423376], [-9825.510723509013, -9165.400581423455], [-9870.760723508454, -9142.850581422834], [-9902.610723507622, -9115.650581421163], [-9935.460723511369, -9085.300581421763], [-9969.410723506655, -9055.75058142105], [-10013.560723507453, -9027.000581422584], [-10057.760723505282, -8997.450581421874], [-10099.91072351113, -8973.350581420902], [-10149.210723511715, -8953.100581422292], [-10188.260723509757, -8945.350581420542], [-10231.46072351011, -8942.250581423394], [-10276.660723505414, -8943.800581423744], [-10322.910723509438, -8946.90058142089], [-10364.010723506566, -8950.800581423835], [-10394.86072350826, -8953.100581422292], [-10423.610723506727, -8954.700581423225], [-10462.660723504769, -8946.90058142089], [-10500.660723508303, -8936.800581423653], [-10577.760723506912, -8904.150581422244], [-10613.71072351136, -8892.500581421104], [-10645.560723510527, -8887.800581423022], [-10680.510723510395, -8886.250581422672], [-10715.460723510261, -8883.900581423632], [-10746.310723504848, -8878.500581420923], [-10775.060723510422, -8866.050581421092], [-10791.510723507257, -8851.25058142222], [-10808.960723508677, -8823.300581422443], [-10824.410723508037, -8799.950581423132], [-10842.910723511068, -8782.050581423562], [-10866.510723509748, -8766.500581423032], [-10891.210723507073, -8757.200581420931], [-10917.910723506451, -8752.50058142285], [-10954.910723505407, -8747.100581423694], [-10992.910723508941, -8748.650581424045], [-11038.160723508383, -8755.650581420581], [-11080.260723510093, -8761.850581421982], [-11129.61072350771, -8768.850581422072], [-11182.010723508994, -8778.200581421203], [-11241.610723509155, -8796.050581423742], [-11270.410723511759, -8811.60058142072], [-11300.210723504733, -8838.850581422974], [-11311.510723508889, -8866.80058142275], [-11323.81072351052, -8890.900581423723], [-11327.960723505726, -8911.150581422333], [-11326.910723511219, -8943.800581423744], [-11322.810723505938, -8975.650581422911], [-11314.560723505452, -9009.100581423012], [-11305.31072350749, -9054.200581420702], [-11296.060723509527, -9085.300581421763], [-11291.96072351135, -9134.300581422394], [-11294.010723510439, -9169.300581422845], [-11302.260723510926, -9203.500581421053], [-11298.110723508615, -9216.700581422543], [-11284.760723505371, -9237.700581422814], [-11264.21072351036, -9252.500581421686], [-11235.460723504786, -9262.600581422475], [-11206.660723509287, -9269.600581422566], [-11169.660723510333, -9269.600581422566], [-11135.760723504973, -9261.800581423784], [-11102.860723511298, -9248.600581422295], [-10880.910723507497, -9184.050581421132], [-10804.860723510501, -9184.850581423376], [-10750.41072351013, -9193.400581423815], [-10698.010723508844, -9199.600581421662], [-10630.160723508197, -9205.800581423062]]}, {"length": 61.5805396155, "source": 2086776816, "destination": 135074736, "path": [[-4144.160723505764, 113.14941857776262], [-4142.410723510182, -163.7505814215956]]}, {"length": 38.048031971, "source": 2086776816, "destination": 3146557081, "path": [[-4144.160723505764, 113.14941857776262], [-4370.210723507739, 111.84941857678155]]}, {"length": 47.2139397955, "source": 2086776816, "destination": 3146412237, "path": [[-4144.160723505764, 113.14941857776262], [-4145.510723510881, 325.44941857892695]]}, {"length": 45.4700087845, "source": 2086776816, "destination": 3146557062, "path": [[-4144.160723505764, 113.14941857776262], [-3874.0107235071264, 112.19941857731897]]}, {"length": 61.9495704533, "source": 2086776817, "destination": 134968184, "path": [[-3777.710723511518, 958.4494185794767], [-3409.660723505681, 959.7994185774894]]}, {"length": 121.904562222, "source": 2086776817, "destination": 2086776833, "path": [[-3777.710723511518, 958.4494185794767], [-3781.210723509787, 1506.5994185761156]]}, {"length": 62.5891671334, "source": 2086776817, "destination": 134968182, "path": [[-3777.710723511518, 958.4494185794767], [-4149.560723504919, 957.0994185779114]]}, {"length": 75.7674263079, "source": 1279884627, "destination": 1279884652, "path": [[5832.5892764941045, -762.2505814239844], [5873.739276488266, -895.6005814226842], [5880.989276491277, -984.3505814224329], [5844.139276490523, -1095.750581423971]]}, {"length": 105.085409026, "source": 1279884627, "destination": 1279884614, "path": [[5832.5892764941045, -762.2505814239844], [5828.289276493592, -620.550581423629], [5837.589276488587, -518.8005814211749], [5878.539276494621, -385.1005814219377], [5891.78927648959, -294.10058142076423]]}, {"length": 25.0073873039, "source": 1279884627, "destination": 1429422318, "path": [[5832.5892764941045, -762.2505814239844], [5811.539276493249, -765.000581420594], [5790.439276488258, -759.6505814220222], [5758.339276489722, -746.0005814223791], [5730.18927649116, -740.700581420839], [5691.089276488981, -739.1505814240418]]}, {"length": 123.534261318, "source": 2267910132, "destination": 2267910068, "path": [[-12541.910723506078, -7381.65058142215], [-12507.660723507286, -7738.750581420817], [-12491.610723508018, -7753.05058142095], [-12448.660723507033, -7772.200581420919], [-12270.16072351006, -7812.550581423494]]}, {"length": 322.543826119, "source": 2267910132, "destination": 2267910085, "path": [[-12541.910723506078, -7381.65058142215], [-12684.760723509215, -6916.350581423813], [-12692.060723509258, -6880.7505814234555], [-12692.110723506288, -6843.300581422795], [-12686.010723506059, -6813.250581423346], [-12674.010723507934, -6787.500581420858], [-12655.910723509578, -6762.100581422459], [-12631.110723511085, -6744.850581423379], [-12604.310723510536, -6734.700581422004], [-12572.010723509664, -6733.60058142336], [-12537.210723507997, -6738.800581423731], [-12495.610723505024, -6751.3505814211785], [-12445.310723506964, -6775.20058142278], [-12335.410723508743, -6823.000581423599], [-12285.71072351059, -6850.800581421623], [-12262.310723507142, -6871.200581421988], [-12248.8107235057, -6901.050581422652], [-12106.010723506699, -7164.900581422273], [-12047.66072351049, -7286.15058142168], [-12035.710723509397, -7302.800581420854]]}, {"length": 55.5740192077, "source": 2267910132, "destination": 2267910086, "path": [[-12541.910723506078, -7381.65058142215], [-12469.510723505551, -7372.000581423066], [-12213.360723507094, -7358.800581421576]]}, {"length": 46.6469281237, "source": 2086776826, "destination": 3148258771, "path": [[-1916.210723507561, -432.2505814222666], [-1917.5607235055736, -222.50058142248008]]}, {"length": 124.508389216, "source": 2086776826, "destination": 2086776831, "path": [[-1916.210723507561, -432.2505814222666], [-1176.4607235065228, -429.55058142268854]]}, {"length": 60.292670013, "source": 2086776828, "destination": 134983506, "path": [[10411.139276492066, 177.09941857901867], [10407.789276491996, 448.1994185780991]]}, {"length": 65.6525017857, "source": 2086776828, "destination": 134983509, "path": [[10411.139276492066, 177.09941857901867], [10414.839276492672, -118.1005814210323]]}, {"length": 117.754918879, "source": 2086776828, "destination": 2086776742, "path": [[10411.139276492066, 177.09941857901867], [9711.53927649482, 173.04941857787526]]}, {"length": 122.096820527, "source": 2086776830, "destination": 2086776720, "path": [[-1194.1607235073093, 2344.1994185766644], [-468.81072351112607, 2348.249418577808]]}, {"length": 63.0595699864, "source": 2086776830, "destination": 135021869, "path": [[-1194.1607235073093, 2344.1994185766644], [-1192.310723510559, 2060.6494185777537]]}, {"length": 124.512189453, "source": 2086776830, "destination": 2086776757, "path": [[-1194.1607235073093, 2344.1994185766644], [-1933.8607235113159, 2340.149418579074]]}, {"length": 68.2325226278, "source": 2069036373, "destination": 2080617438, "path": [[-1945.1607235083657, 2892.199418578656], [-1912.6607235051551, 2692.6994185778594], [-1899.2607235048808, 2660.199418578202], [-1881.8107235105686, 2642.9494185791214], [-1860.5607235073762, 2626.549418579316], [-1826.8607235114587, 2617.4994185765854]]}, {"length": 125.824765691, "source": 2069036373, "destination": 2069036302, "path": [[-1945.1607235083657, 2892.199418578656], [-1197.660723505578, 2894.249418577743]]}, {"length": 58.2561747028, "source": 2069036373, "destination": 2068887951, "path": [[-1945.1607235083657, 2892.199418578656], [-1947.1607235104216, 3154.14941857739]]}, {"length": 47.7701661186, "source": 2355654657, "destination": 2069036705, "path": [[-499.11072350994345, 6456.899418576967], [-497.5607235095936, 6242.099418578562]]}, {"length": 64.2626628176, "source": 2355654657, "destination": 2355654658, "path": [[-499.11072350994345, 6456.899418576967], [-117.41072351156845, 6460.699418578742]]}, {"length": 13.0673371905, "source": 2355654657, "destination": 2355654662, "path": [[-499.11072350994345, 6456.899418576967], [-576.7107235072899, 6458.249418578533]]}, {"length": 64.2626628176, "source": 2355654658, "destination": 2355654657, "path": [[-117.41072351156845, 6460.699418578742], [-499.11072350994345, 6456.899418576967]]}, {"length": 12.3083339187, "source": 1959922651, "destination": 2080739113, "path": [[-9311.710723508782, -9685.250581423332], [-9384.860723507416, -9685.60058142387]]}, {"length": 196.878729597, "source": 1959922651, "destination": 2080739054, "path": [[-9311.710723508782, -9685.250581423332], [-9303.010723506588, -9959.200581423744], [-9274.910723505058, -10218.150581422946], [-9264.160723510884, -10336.850581420975], [-9264.110723506747, -10408.700581422181], [-9261.460723507753, -10481.450581423247], [-9258.210723508853, -10524.750581421216], [-9256.910723507872, -10569.200581421966]]}, {"length": 332.747524919, "source": 1959922651, "destination": 1428269734, "path": [[-9311.710723508782, -9685.250581423332], [-9314.460723508944, -9463.200581421916], [-9315.710723505788, -9262.65058142306], [-9315.810723506956, -9138.500581421738], [-9327.210723505175, -9049.700581421404], [-9333.910723505312, -8869.100581421208], [-9338.6107235105, -8847.300581422245], [-9339.910723511479, -8581.45058142057], [-9335.560723506831, -8561.450581421326], [-9329.010723504893, -8545.250581423858], [-9321.26072351025, -8502.550581422242], [-9326.61072350527, -8443.20058142145], [-9325.460723509594, -8309.200581422261], [-9322.460723510063, -8247.15058142189], [-9322.460723510063, -8191.400581420538]]}, {"length": 215.579098891, "source": 1959922651, "destination": 2331413982, "path": [[-9311.710723508782, -9685.250581423332], [-9142.760723506171, -9678.800581422563], [-8776.960723508864, -9637.050581421392], [-8512.41072351172, -9637.200581423145], [-8272.360723509564, -9646.35058142349], [-8036.260723507383, -9663.600581422572]]}, {"length": 9.47453709608, "source": 4992692228, "destination": 2573122335, "path": [[4922.639276493612, -1253.150581423057], [4867.4392764951335, -1244.8005814214014]]}, {"length": 95.6789974561, "source": 2355654662, "destination": 2355654664, "path": [[-576.7107235072899, 6458.249418578533], [-1145.0607235090615, 6456.949418577551]]}, {"length": 13.0673371905, "source": 2355654662, "destination": 2355654657, "path": [[-576.7107235072899, 6458.249418578533], [-499.11072350994345, 6456.899418576967]]}, {"length": 48.1705413396, "source": 2355654662, "destination": 2355654743, "path": [[-576.7107235072899, 6458.249418578533], [-575.1107235099084, 6241.649418576855]]}, {"length": 113.117111057, "source": 2086776839, "destination": 2086776697, "path": [[9629.639276489854, 2382.749418575969], [8957.639276488295, 2378.6994185783783]]}, {"length": 60.9689506599, "source": 2086776839, "destination": 135076350, "path": [[9629.639276489854, 2382.749418575969], [9627.839276490136, 2656.899418578718]]}, {"length": 48.1591900599, "source": 2355654664, "destination": 2355654746, "path": [[-1145.0607235090615, 6456.949418577551], [-1144.1607235056495, 6311.099418578437], [-1143.7107235110489, 6240.399418576459]]}, {"length": 12.6096270033, "source": 2355654664, "destination": 2354509379, "path": [[-1145.0607235090615, 6456.949418577551], [-1219.9607235103826, 6456.29941857706]]}, {"length": 95.6789974561, "source": 2355654664, "destination": 2355654662, "path": [[-1145.0607235090615, 6456.949418577551], [-576.7107235072899, 6458.249418578533]]}, {"length": 12.5508806231, "source": 2355654665, "destination": 2354509379, "path": [[-1294.5107235111664, 6455.749418577739], [-1219.9607235103826, 6456.29941857706]]}, {"length": 48.0148420338, "source": 2355654665, "destination": 2355654747, "path": [[-1294.5107235111664, 6455.749418577739], [-1293.9607235082917, 6371.349418579086], [-1293.1107235090167, 6239.849418577137]]}, {"length": 96.170857867, "source": 2355654665, "destination": 2703719278, "path": [[-1294.5107235111664, 6455.749418577739], [-1865.7607235113005, 6451.749418577179]]}, {"length": 59.7343817511, "source": 2086776842, "destination": 134979288, "path": [[9642.589276488423, 155.79941857879476], [9641.339276491579, 424.39941857708163]]}, {"length": 112.408362394, "source": 2086776842, "destination": 2086776739, "path": [[9642.589276488423, 155.79941857879476], [8974.739276489174, 153.74941857615454]]}, {"length": 113.093803381, "source": 2086776843, "destination": 2086776696, "path": [[9626.189276488618, 2928.8494185770733], [8954.339276492363, 2924.7994185794823]]}, {"length": 60.6242832612, "source": 2086776843, "destination": 134960005, "path": [[9626.189276488618, 2928.8494185770733], [9624.539276494204, 3201.449418579472]]}, {"length": 60.1795546683, "source": 2086776846, "destination": 2086776776, "path": [[-3054.560723505517, 2057.3494185782693], [-3052.8107235099355, 1786.7494185779265]]}, {"length": 58.7376497032, "source": 2086776846, "destination": 134984482, "path": [[-3054.560723505517, 2057.3494185782693], [-3403.5107235084183, 2059.299418576188]]}, {"length": 106.823582322, "source": 134959125, "destination": 2139774320, "path": [[-9280.210723510152, 354.5994185785162], [-9914.860723505115, 350.74941857615727]]}, {"length": 10.5082845746, "source": 134959125, "destination": 134959129, "path": [[-9280.210723510152, 354.5994185785162], [-9280.060723504846, 401.84941857646095]]}, {"length": 10.2749789582, "source": 134959125, "destination": 2282033853, "path": [[-9280.210723510152, 354.5994185785162], [-9279.860723509613, 308.39941857863096]]}, {"length": 115.08700219, "source": 135008279, "destination": 134968242, "path": [[6713.339276494424, 449.89941857664917], [6712.339276489843, 967.3994185774859]]}, {"length": 184.272534913, "source": 135008279, "destination": 2086776694, "path": [[6713.339276494424, 449.89941857664917], [7808.139276491488, 454.1494185765771]]}, {"length": 122.125531694, "source": 134959129, "destination": 134959131, "path": [[-9280.060723504846, 401.84941857646095], [-9280.31072351132, 950.9994185776804]]}, {"length": 123.937979329, "source": 134959129, "destination": 134982219, "path": [[-9280.060723504846, 401.84941857646095], [-8543.710723508013, 402.9494185786575]]}, {"length": 10.5082845746, "source": 134959129, "destination": 134959125, "path": [[-9280.060723504846, 401.84941857646095], [-9280.210723510152, 354.5994185785162]]}, {"length": 111.291459068, "source": 135032858, "destination": 2069376785, "path": [[-4919.160723510175, 5938.399418578655], [-4258.060723508095, 5940.199418578373]]}, {"length": 16.8260834494, "source": 135032858, "destination": 3299414702, "path": [[-4919.160723510175, 5938.399418578655], [-5019.110723509357, 5937.949418576949]]}, {"length": 15.5743305173, "source": 135032858, "destination": 2069376793, "path": [[-4919.160723510175, 5938.399418578655], [-4921.9107235103365, 6008.399418576005]]}, {"length": 122.125531694, "source": 134959131, "destination": 134959129, "path": [[-9280.31072351132, 950.9994185776804], [-9280.060723504846, 401.84941857646095]]}, {"length": 123.460089283, "source": 134959131, "destination": 134968373, "path": [[-9280.31072351132, 950.9994185776804], [-8546.810723508714, 950.9994185776804]]}, {"length": 119.322993955, "source": 134959131, "destination": 134959133, "path": [[-9280.31072351132, 950.9994185776804], [-9281.160723510595, 1216.1494185782828], [-9281.660723509332, 1308.1994185775159], [-9287.11072350552, 1487.499418576732]]}, {"length": 119.322993955, "source": 134959133, "destination": 134959131, "path": [[-9287.11072350552, 1487.499418576732], [-9281.660723509332, 1308.1994185775159], [-9281.160723510595, 1216.1494185782828], [-9280.31072351132, 950.9994185776804]]}, {"length": 124.507693841, "source": 134959133, "destination": 134982220, "path": [[-9287.11072350552, 1487.499418576732], [-9059.6607235085, 1491.4494185767069], [-8547.46072350565, 1490.349418578063]]}, {"length": 122.261238004, "source": 134959133, "destination": 134959135, "path": [[-9287.11072350552, 1487.499418576732], [-9288.960723509375, 1720.3994185770455], [-9291.510723507201, 2037.2494185778578]]}, {"length": 101.108210032, "source": 2089552574, "destination": 4719468835, "path": [[-2921.5107235103233, -1543.4005814221052], [-2995.0607235065263, -1678.2505814205706], [-3075.3607235070035, -1796.650581422199], [-3099.7107235108956, -1815.9005814233353], [-3148.460723508606, -1828.7005814237034], [-3293.7607235083988, -1830.0005814211318]]}, {"length": 61.5121709068, "source": 2089552574, "destination": 3009732847, "path": [[-2921.5107235103233, -1543.4005814221052], [-3023.810723504994, -1511.000581423616], [-3278.3607235060686, -1507.7505814211634]]}, {"length": 9.15671805069, "source": 134959135, "destination": 2282973744, "path": [[-9291.510723507201, 2037.2494185778578], [-9237.110723510967, 2037.4494185766423]]}, {"length": 33.6255082114, "source": 134959135, "destination": 2282973644, "path": [[-9291.510723507201, 2037.2494185778578], [-9292.210723508277, 2188.4494185790973]]}, {"length": 122.261238004, "source": 134959135, "destination": 134959133, "path": [[-9291.510723507201, 2037.2494185778578], [-9288.960723509375, 1720.3994185770455], [-9287.11072350552, 1487.499418576732]]}, {"length": 14.0035393962, "source": 3496300576, "destination": 3146411772, "path": [[-4223.860723506334, -442.0005814225192], [-4140.660723507494, -441.8505814207663]]}, {"length": 124.823857459, "source": 135032865, "destination": 135034096, "path": [[-4898.0107235081505, 2049.799418578857], [-4824.910723506548, 2049.799418578857], [-4381.660723510095, 2057.3994185788533], [-4156.560723508563, 2059.349418576772]]}, {"length": 121.706927713, "source": 135032865, "destination": 135012759, "path": [[-4898.0107235081505, 2049.799418578857], [-4892.210723511425, 1502.5494185785249]]}, {"length": 117.6794379, "source": 135032865, "destination": 135032870, "path": [[-4898.0107235081505, 2049.799418578857], [-4898.510723506888, 2181.1494185790534], [-4901.410723505251, 2578.949418577281]]}, {"length": 128.221820344, "source": 135032865, "destination": 135031647, "path": [[-4898.0107235081505, 2049.799418578857], [-5659.760723510488, 2053.3994185782944]]}, {"length": 9.05526777769, "source": 134959139, "destination": 2282973320, "path": [[-9294.3107235115, 2585.699418578002], [-9240.510723508067, 2585.949418577371]]}, {"length": 9.18472707416, "source": 134959139, "destination": 2282973290, "path": [[-9294.3107235115, 2585.699418578002], [-9294.260723507363, 2626.9994185774694]]}, {"length": 13.5215519761, "source": 134959139, "destination": 3758384266, "path": [[-9294.3107235115, 2585.699418578002], [-9293.960723510963, 2524.8994185780302]]}, {"length": 117.6794379, "source": 135032870, "destination": 135032865, "path": [[-4901.410723505251, 2578.949418577281], [-4898.510723506888, 2181.1494185790534], [-4898.0107235081505, 2049.799418578857]]}, {"length": 130.256187173, "source": 135032870, "destination": 134959948, "path": [[-4901.410723505251, 2578.949418577281], [-4906.010723509269, 3164.6494185793017]]}, {"length": 131.211733753, "source": 135032870, "destination": 135031649, "path": [[-4901.410723505251, 2578.949418577281], [-5272.560723511788, 2580.1494185770935], [-5316.060723508543, 2572.3494185783125], [-5479.510723510828, 2542.9494185793546], [-5675.160723505713, 2541.649418578373]]}, {"length": 11.4566258514, "source": 2568624532, "destination": 2568624537, "path": [[-1267.2607235089117, -2376.100581422236], [-1302.1107235076101, -2375.1005814212076], [-1334.3107235073148, -2369.000581420977]]}, {"length": 9.71129611647, "source": 2568624532, "destination": 2568624538, "path": [[-1267.2607235089117, -2376.100581422236], [-1209.5607235096395, -2376.1505814228203]]}, {"length": 4.07006256124, "source": 2568624532, "destination": 2568624535, "path": [[-1267.2607235089117, -2376.100581422236], [-1266.760723510174, -2394.4005814229286]]}, {"length": 10.0074734754, "source": 135008308, "destination": 4224963657, "path": [[6868.839276492622, 4953.399418578641], [6868.589276493253, 4998.399418578714]]}, {"length": 77.3385315454, "source": 135008308, "destination": 4224850341, "path": [[6868.839276492622, 4953.399418578641], [6840.339276493523, 4954.899418578407], [6772.589276494045, 4954.299418578501], [6702.339276493774, 4945.89941857626], [6641.839276490202, 4932.39941857837], [6583.839276494529, 4912.899418577865], [6529.839276488758, 4888.399418579325], [6480.339276492941, 4858.899418579199], [6452.439276493749, 4837.749418577176]]}, {"length": 22.7670303679, "source": 135008308, "destination": 135109629, "path": [[6868.839276492622, 4953.399418578641], [6927.839276492876, 4945.89941857626], [6999.8392764887285, 4928.899418576549]]}, {"length": 96.334019374, "source": 2358476144, "destination": 2358476145, "path": [[-1287.7107235098606, 5387.999418577038], [-1859.96072350747, 5385.14941857926]]}, {"length": 12.4096988092, "source": 2358476144, "destination": 2354509530, "path": [[-1287.7107235098606, 5387.999418577038], [-1287.3607235093232, 5332.199418578653]]}, {"length": 12.4907756948, "source": 2358476144, "destination": 134985669, "path": [[-1287.7107235098606, 5387.999418577038], [-1213.5107235096143, 5388.349418577576]]}, {"length": 12.920059763, "source": 2358476144, "destination": 2355676185, "path": [[-1287.7107235098606, 5387.999418577038], [-1287.8607235080608, 5416.699418578474], [-1288.060723510398, 5446.0994185774325]]}, {"length": 109.25533981, "source": 135008310, "destination": 135033689, "path": [[6863.839276491035, 5973.399418579106], [7512.839276493822, 5975.899418576347]]}, {"length": 58.17783944, "source": 135008310, "destination": 2069036377, "path": [[6863.839276491035, 5973.399418579106], [6862.339276494822, 6234.999418577303]]}, {"length": 109.340150336, "source": 135008310, "destination": 135033686, "path": [[6863.839276491035, 5973.399418579106], [6214.339276489511, 5970.399418576022]]}, {"length": 59.8900382059, "source": 135008310, "destination": 2069036439, "path": [[6863.839276491035, 5973.399418579106], [6865.039276490847, 5704.099418576192]]}, {"length": 540.774876197, "source": 1916976479, "destination": 2080560800, "path": [[-2620.610723511163, -6849.9005814217635], [-2619.6607235107194, -7003.100581421506], [-2636.660723510431, -7435.100581421494], [-2664.3607235072864, -7706.550581421112], [-2696.4607235058224, -7969.15058142389], [-964.8107235094017, -7977.500581421992]]}, {"length": 115.608828346, "source": 1916976479, "destination": 2074272065, "path": [[-2620.610723511163, -6849.9005814217635], [-3307.610723510379, -6846.400581423495]]}, {"length": 252.124307923, "source": 1916976479, "destination": 1916976477, "path": [[-2620.610723511163, -6849.9005814217635], [-1122.360723506688, -6844.00058142387]]}, {"length": 56.4431663463, "source": 1916976479, "destination": 135090901, "path": [[-2620.610723511163, -6849.9005814217635], [-2622.160723511513, -6596.100581422348]]}, {"length": 120.504070446, "source": 1916976483, "destination": 135097404, "path": [[-1122.4607235078565, -6929.450581420582], [-1122.6607235101937, -7164.100581423582], [-716.6607235049582, -7165.1005814210575]]}, {"length": 19.0034557211, "source": 1916976483, "destination": 1916976477, "path": [[-1122.4607235078565, -6929.450581420582], [-1122.360723506688, -6844.00058142387]]}, {"length": 68.6132987243, "source": 1916976483, "destination": 135097406, "path": [[-1122.4607235078565, -6929.450581420582], [-715.1607235087454, -6915.100581423417]]}, {"length": 13.0556067732, "source": 2355654743, "destination": 2069036705, "path": [[-575.1107235099084, 6241.649418576855], [-497.5607235095936, 6242.099418578562]]}, {"length": 48.3477737479, "source": 2355654743, "destination": 2355668074, "path": [[-575.1107235099084, 6241.649418576855], [-574.2107235064964, 6024.249418576488]]}, {"length": 95.7208841091, "source": 2355654743, "destination": 2355654746, "path": [[-575.1107235099084, 6241.649418576855], [-679.0607235060975, 6240.999418576365], [-1143.7107235110489, 6240.399418576459]]}, {"length": 48.1705413396, "source": 2355654743, "destination": 2355654662, "path": [[-575.1107235099084, 6241.649418576855], [-576.7107235072899, 6458.249418578533]]}, {"length": 48.1591900599, "source": 2355654746, "destination": 2355654664, "path": [[-1143.7107235110489, 6240.399418576459], [-1144.1607235056495, 6311.099418578437], [-1145.0607235090615, 6456.949418577551]]}, {"length": 12.5838696811, "source": 2355654746, "destination": 2069037025, "path": [[-1143.7107235110489, 6240.399418576459], [-1218.4607235070644, 6240.299418578843]]}, {"length": 48.3593300789, "source": 2355654746, "destination": 2355654861, "path": [[-1143.7107235110489, 6240.399418576459], [-1142.3107235088992, 6022.94941857906]]}, {"length": 95.7208841091, "source": 2355654746, "destination": 2355654743, "path": [[-1143.7107235110489, 6240.399418576459], [-679.0607235060975, 6240.999418576365], [-575.1107235099084, 6241.649418576855]]}, {"length": 96.0578041057, "source": 2355654747, "destination": 2354509465, "path": [[-1293.1107235090167, 6239.849418577137], [-1409.3107235098046, 6239.149418576062], [-1863.7107235051076, 6237.999418576834]]}, {"length": 48.3927095687, "source": 2355654747, "destination": 2355654863, "path": [[-1293.1107235090167, 6239.849418577137], [-1292.560723506142, 6154.199418578088], [-1291.760723511004, 6022.249418577985]]}, {"length": 48.0148420338, "source": 2355654747, "destination": 2355654665, "path": [[-1293.1107235090167, 6239.849418577137], [-1293.9607235082917, 6371.349418579086], [-1294.5107235111664, 6455.749418577739]]}, {"length": 12.5673859765, "source": 2355654747, "destination": 2069037025, "path": [[-1293.1107235090167, 6239.849418577137], [-1218.4607235070644, 6240.299418578843]]}, {"length": 9.73805936881, "source": 2587010621, "destination": 2587010617, "path": [[1301.8392764934106, -2378.250581422492], [1294.8392764897676, -2384.400581423307], [1279.6892764939116, -2389.4005814213415], [1267.63927649165, -2395.5005814215724], [1256.2392764934316, -2404.100581422597]]}, {"length": 5.73554595151, "source": 2587010621, "destination": 2587010619, "path": [[1301.8392764934106, -2378.250581422492], [1305.9392764915856, -2403.850581423228]]}, {"length": 10.0051748545, "source": 2587010621, "destination": 2587010533, "path": [[1301.8392764934106, -2378.250581422492], [1303.1892764914232, -2364.0505814235266], [1312.5392764905541, -2347.8005814219214], [1323.2892764918347, -2337.6505814205475]]}, {"length": 8.78761519518, "source": 2292322398, "destination": 2292322400, "path": [[-9302.160723507313, 4318.849418577742], [-9274.41072350632, 4315.949418579379], [-9250.210723507735, 4316.049418576995]]}, {"length": 48.8480392495, "source": 2292322398, "destination": 2293563352, "path": [[-9302.160723507313, 4318.849418577742], [-9302.560723504883, 4538.499418575981]]}, {"length": 13.3159717566, "source": 2292322398, "destination": 2280505626, "path": [[-9302.160723507313, 4318.849418577742], [-9329.310723508399, 4321.649418578489], [-9381.010723508609, 4321.899418577857]]}, {"length": 12.5652343339, "source": 2292322398, "destination": 134957919, "path": [[-9302.160723507313, 4318.849418577742], [-9302.060723506145, 4262.349418578282]]}, {"length": 34.9886978811, "source": 2292322399, "destination": 2292322400, "path": [[-9042.360723505282, 4316.899418576269], [-9250.210723507735, 4316.049418576995]]}, {"length": 11.930932761, "source": 2292322400, "destination": 2292322432, "path": [[-9250.210723507735, 4316.049418576995], [-9250.160723510704, 4262.399418578866]]}, {"length": 63.3155743534, "source": 2292322400, "destination": 2292322142, "path": [[-9250.210723507735, 4316.049418576995], [-9250.410723510071, 4523.999418577063], [-9251.010723509979, 4548.899418576724], [-9251.310723506378, 4600.749418578687]]}, {"length": 8.78761519518, "source": 2292322400, "destination": 2292322398, "path": [[-9250.210723507735, 4316.049418576995], [-9274.41072350632, 4315.949418579379], [-9302.160723507313, 4318.849418577742]]}, {"length": 34.9886978811, "source": 2292322400, "destination": 2292322399, "path": [[-9250.210723507735, 4316.049418576995], [-9042.360723505282, 4316.899418576269]]}, {"length": 97.889568593, "source": 2080739429, "destination": 135037798, "path": [[-7804.66072350805, 272.39941857715166], [-7807.410723508212, 55.799418579027815], [-7807.1107235118125, -71.90058142114708], [-7809.710723506669, -89.70058142310222], [-7815.410723509331, -110.10058142346679], [-7826.160723510611, -129.90058142392513], [-7838.760723508642, -145.70058142382436], [-7854.860723504942, -157.9005814207335]]}, {"length": 23.2593129202, "source": 135047185, "destination": 2271725696, "path": [[5424.439276488612, -2618.0505814217267], [5409.2892764927565, -2628.850581423592], [5400.339276491195, -2632.3505814218606], [5390.8392764938635, -2634.550581422701], [5376.18927648964, -2635.350581421392], [5368.489276492028, -2634.6005814232853], [5358.139276488317, -2632.2005814236604], [5343.039276489491, -2625.100581422402], [5331.539276490104, -2614.500581422874], [5325.989276492748, -2604.2005814232994], [5324.139276488893, -2594.100581422509]]}, {"length": 11.6116551147, "source": 135047185, "destination": 2271725708, "path": [[5424.439276488612, -2618.0505814217267], [5486.889276490103, -2640.2505814218102]]}, {"length": 10.1188459529, "source": 135057523, "destination": 4719445539, "path": [[3247.0892764919768, -5022.75058142132], [3246.2892764897333, -4984.5505814225535], [3246.2392764927017, -4977.25058142251]]}, {"length": 10.7155149199, "source": 135057523, "destination": 1429423084, "path": [[3247.0892764919768, -5022.75058142132], [3183.439276490674, -5024.100581422886]]}, {"length": 136.985403245, "source": 135057523, "destination": 135057525, "path": [[3247.0892764919768, -5022.75058142132], [3290.889276492237, -5023.000581420689], [4061.089276490293, -5023.000581420689]]}, {"length": 203.310714206, "source": 135057525, "destination": 135035912, "path": [[4061.089276490293, -5023.000581420689], [4061.739276494336, -5343.850581422061], [4062.9392764941485, -5810.800581421916], [4064.5892764885616, -5937.20058142111]]}, {"length": 147.783518238, "source": 135057525, "destination": 1932195849, "path": [[4061.089276490293, -5023.000581420689], [4659.0892764939435, -5017.4005814227485], [4939.189276491617, -5014.750581423755]]}, {"length": 136.985403245, "source": 135057525, "destination": 135057523, "path": [[4061.089276490293, -5023.000581420689], [3290.889276492237, -5023.000581420689], [3247.0892764919768, -5022.75058142132]]}, {"length": 94.2045110499, "source": 135057526, "destination": 135098376, "path": [[5246.789276490916, -5013.15058142282], [5246.339276489209, -4589.550581421519]]}, {"length": 49.8937857643, "source": 135057526, "destination": 1937679912, "path": [[5246.789276490916, -5013.15058142282], [5543.239276491363, -5009.850581423336]]}, {"length": 203.055970686, "source": 135057526, "destination": 135035915, "path": [[5246.789276490916, -5013.15058142282], [5252.939276488178, -5926.200581424013]]}, {"length": 51.7660199582, "source": 135057526, "destination": 1932195849, "path": [[5246.789276490916, -5013.15058142282], [4939.189276491617, -5014.750581423755]]}, {"length": 50.684852704, "source": 135057528, "destination": 1937679912, "path": [[5844.389276489892, -5006.500581423268], [5543.239276491363, -5009.850581423336]]}, {"length": 53.325156986, "source": 135057528, "destination": 134962146, "path": [[5844.389276489892, -5006.500581423268], [6161.239276494257, -5003.700581422521]]}, {"length": 202.843452772, "source": 135057528, "destination": 135035917, "path": [[5844.389276489892, -5006.500581423268], [5848.839276488605, -5918.600581424016]]}, {"length": 204.133555337, "source": 135057528, "destination": 2573122359, "path": [[5844.389276489892, -5006.500581423268], [5842.889276493679, -4560.150581422562], [5842.839276489542, -4547.100581422825], [5840.839276494591, -4088.6005814222417]]}, {"length": 196.632938226, "source": 135057529, "destination": 134962146, "path": [[7329.58927649463, -4992.550581423671], [6161.239276494257, -5003.700581422521]]}, {"length": 100.617451041, "source": 135057529, "destination": 135016299, "path": [[7329.58927649463, -4992.550581423671], [7927.339276491807, -4982.600581421082]]}, {"length": 55.2196247558, "source": 135057529, "destination": 2086854404, "path": [[7329.58927649463, -4992.550581423671], [7328.9892764947235, -4744.250581421028]]}, {"length": 51.305552849, "source": 135057529, "destination": 2086854414, "path": [[7329.58927649463, -4992.550581423671], [7329.939276495168, -5223.2505814231445]]}, {"length": 72.8989757115, "source": 4719865979, "destination": 4719820416, "path": [[-1359.3107235081447, -2696.450581421317], [-1365.0107235108067, -2697.7505814222977], [-1417.860723506692, -2700.700581421245], [-1459.1107235091272, -2693.950581420523], [-1511.1607235098745, -2677.900581421255], [-1551.6607235070978, -2647.850581421807], [-1619.160723507207, -2592.400581423959], [-1663.510723510342, -2546.30058142169], [-1686.110723511547, -2517.6505814208385]]}, {"length": 51.7784449057, "source": 4719865979, "destination": 2568624514, "path": [[-1359.3107235081447, -2696.450581421317], [-1352.3107235116072, -2709.7505814239753], [-1257.3107235098746, -2916.100581423109]]}, {"length": 51.0794284228, "source": 4719865979, "destination": 2568600183, "path": [[-1359.3107235081447, -2696.450581421317], [-1326.1107235109648, -2688.70058142312], [-1296.4107235049482, -2677.0505814219805], [-1258.6107235108557, -2648.750581421666], [-1114.560723507907, -2564.400581423598]]}, {"length": 11.930932761, "source": 2292322432, "destination": 2292322400, "path": [[-9250.160723510704, 4262.399418578866], [-9250.210723507735, 4316.049418576995]]}, {"length": 12.1975297105, "source": 2292322432, "destination": 2292322434, "path": [[-9250.160723510704, 4262.399418578866], [-9250.110723506567, 4225.099418576406], [-9249.860723507198, 4207.549418577372]]}, {"length": 41.2522032267, "source": 2292322432, "destination": 135096743, "path": [[-9250.160723510704, 4262.399418578866], [-9176.860723506763, 4262.499418576482], [-9005.11072350696, 4263.849418578047]]}, {"length": 8.73715492321, "source": 2292322432, "destination": 134957919, "path": [[-9250.160723510704, 4262.399418578866], [-9302.060723506145, 4262.349418578282]]}, {"length": 12.1975297105, "source": 2292322434, "destination": 2292322432, "path": [[-9249.860723507198, 4207.549418577372], [-9250.110723506567, 4225.099418576406], [-9250.160723510704, 4262.399418578866]]}, {"length": 8.73251720869, "source": 2292322434, "destination": 2291254721, "path": [[-9249.860723507198, 4207.549418577372], [-9271.51072350796, 4207.999418579078], [-9301.46072350624, 4211.099418576225]]}, {"length": 25.4785491455, "source": 2292322434, "destination": 2291254723, "path": [[-9249.860723507198, 4207.549418577372], [-9218.110723509199, 4206.8994185768815], [-9098.51072351131, 4207.2994185780035]]}, {"length": 77.2271899685, "source": 2292322434, "destination": 2292322468, "path": [[-9249.860723507198, 4207.549418577372], [-9247.660723509909, 4060.3994185772763], [-9247.660723509909, 3948.599418578169], [-9247.96072350631, 3860.2994185765738]]}, {"length": 101.167199799, "source": 1935184006, "destination": 1935184020, "path": [[8812.339276488501, -4977.800581421832], [8812.53927649084, -5153.450581421026], [8814.339276490557, -5258.60058142058], [8814.789276492264, -5398.850581421755], [8815.089276488663, -5432.700581422978]]}, {"length": 49.7171700392, "source": 1935184006, "destination": 135019331, "path": [[8812.339276488501, -4977.800581421832], [8516.939276489666, -4981.050581420732]]}, {"length": 51.4276723372, "source": 1935184006, "destination": 135022844, "path": [[8812.339276488501, -4977.800581421832], [9117.889276488711, -4973.750581420689]]}, {"length": 50.1078347818, "source": 1935184007, "destination": 135019331, "path": [[8219.189276488236, -4982.0505814217595], [8516.939276489666, -4981.050581420732]]}, {"length": 49.1145684647, "source": 1935184007, "destination": 135016299, "path": [[8219.189276488236, -4982.0505814217595], [7927.339276491807, -4982.600581421082]]}, {"length": 101.438246941, "source": 1935184007, "destination": 1935184021, "path": [[8219.189276488236, -4982.0505814217595], [8216.139276491675, -5056.400581423759], [8214.339276491955, -5114.300581421816], [8218.389276493099, -5201.750581420583], [8221.989276492535, -5272.900581420714], [8222.439276494242, -5306.950581420722], [8223.33927649055, -5323.650581424034], [8225.589276491974, -5339.95058142267], [8226.939276489986, -5363.800581420719], [8225.589276491974, -5392.400581420987], [8223.889276493424, -5437.850581422765]]}, {"length": 53.6681702167, "source": 2960627735, "destination": 2960622624, "path": [[-5843.410723507248, -1595.9005814210059], [-5781.060723506926, -1495.5505814207015], [-5608.710723507215, -1495.5505814207015]]}, {"length": 49.1633811122, "source": 2960627735, "destination": 2217880484, "path": [[-5843.410723507248, -1595.9005814210059], [-5828.6607235089605, -1645.7505814209128], [-5834.560723506855, -1669.3505814231457], [-5862.760723509553, -1699.800581423716], [-5919.76072350775, -1702.8505814238315], [-6006.260723509627, -1705.900581423947]]}, {"length": 25.199924432, "source": 2960627735, "destination": 2423701807, "path": [[-5843.410723507248, -1595.9005814210059], [-5873.86072351137, -1543.4005814221052], [-5881.860723505383, -1487.7505814219205]]}, {"length": 50.1579026736, "source": 134991213, "destination": 2086854500, "path": [[7330.2892764886, -5446.200581420868], [7335.9392764942295, -5671.700581423522]]}, {"length": 196.406381162, "source": 134991213, "destination": 134962148, "path": [[7330.2892764886, -5446.200581420868], [6163.3392764903765, -5460.950581422708]]}, {"length": 49.5819323915, "source": 134991213, "destination": 2086854414, "path": [[7330.2892764886, -5446.200581420868], [7329.939276495168, -5223.2505814231445]]}, {"length": 100.525012704, "source": 134991213, "destination": 134991215, "path": [[7330.2892764886, -5446.200581420868], [7927.589276491176, -5440.150581421221]]}, {"length": 49.6730087084, "source": 1935184020, "destination": 134991218, "path": [[8815.089276488663, -5432.700581422978], [8519.939276489196, -5435.550581420756]]}, {"length": 51.3726141407, "source": 1935184020, "destination": 134991221, "path": [[8815.089276488663, -5432.700581422978], [9120.339276492472, -5429.850581421647]]}, {"length": 101.167199799, "source": 1935184020, "destination": 1935184006, "path": [[8815.089276488663, -5432.700581422978], [8814.789276492264, -5398.850581421755], [8814.339276490557, -5258.60058142058], [8812.53927649084, -5153.450581421026], [8812.339276488501, -4977.800581421832]]}, {"length": 101.40119814, "source": 1935184020, "destination": 1935184031, "path": [[8815.089276488663, -5432.700581422978], [8815.68927648857, -5505.750581423996], [8813.889276488851, -5699.40058142393], [8817.939276489995, -5785.900581422255], [8818.3892764917, -5840.700581423163], [8818.689276495206, -5888.600581421599]]}, {"length": 101.456021276, "source": 1935184021, "destination": 1935184032, "path": [[8223.889276493424, -5437.850581422765], [8222.439276494242, -5477.500581420713], [8223.33927649055, -5543.200581421104], [8225.589276491974, -5621.450581422494], [8226.939276489986, -5673.550581423825], [8228.689276492674, -5803.250581422503], [8228.089276492767, -5894.000581420755]]}, {"length": 49.8231060667, "source": 1935184021, "destination": 134991218, "path": [[8223.889276493424, -5437.850581422765], [8519.939276489196, -5435.550581420756]]}, {"length": 101.438246941, "source": 1935184021, "destination": 1935184007, "path": [[8223.889276493424, -5437.850581422765], [8225.589276491974, -5392.400581420987], [8226.939276489986, -5363.800581420719], [8225.589276491974, -5339.95058142267], [8223.33927649055, -5323.650581424034], [8222.439276494242, -5306.950581420722], [8221.989276492535, -5272.900581420714], [8218.389276493099, -5201.750581420583], [8214.339276491955, -5114.300581421816], [8216.139276491675, -5056.400581423759], [8219.189276488236, -4982.0505814217595]]}, {"length": 49.8653270918, "source": 1935184021, "destination": 134991215, "path": [[8223.889276493424, -5437.850581422765], [7927.589276491176, -5440.150581421221]]}, {"length": 10.5962572813, "source": 2292322456, "destination": 2280505672, "path": [[-9442.910723507226, 4036.899418576212], [-9379.960723506996, 4036.799418578596]]}, {"length": 23.3363573848, "source": 2703708313, "destination": 2586986529, "path": [[-555.860723508772, -1581.7005814220408], [-694.5107235054593, -1582.6005814219002]]}, {"length": 1.11927223705, "source": 2703708313, "destination": 844922460, "path": [[-555.860723508772, -1581.7005814220408], [-555.860723508772, -1586.7505814206595]]}, {"length": 35.3029629918, "source": 2703708313, "destination": 2703708309, "path": [[-555.860723508772, -1581.7005814220408], [-346.1107235054328, -1580.3505814240282]]}, {"length": 60.5235530685, "source": 2703708313, "destination": 2586986567, "path": [[-555.860723508772, -1581.7005814220408], [-556.5107235057098, -1309.5505814213482]]}, {"length": 101.342317563, "source": 135057562, "destination": 135057566, "path": [[-2720.5607235103457, -5103.850581424041], [-3322.760723506235, -5102.150581421938]]}, {"length": 7.30509489442, "source": 2703708315, "destination": 2568600060, "path": [[-350.0607235054076, -2458.2505814230162], [-306.66072350982176, -2458.2505814230162]]}, {"length": 14.3223558592, "source": 2703708315, "destination": 2568600235, "path": [[-350.0607235054076, -2458.2505814230162], [-435.1607235051347, -2458.3005814236003]]}, {"length": 20.5400875663, "source": 2703708315, "destination": 2568600044, "path": [[-350.0607235054076, -2458.2505814230162], [-351.9607235062949, -2550.600581422202]]}, {"length": 19.2947945529, "source": 2703708315, "destination": 2568600035, "path": [[-350.0607235054076, -2458.2505814230162], [-348.26072350568893, -2371.50058142177]]}, {"length": 19.0588643321, "source": 2703708317, "destination": 2568600041, "path": [[-533.9107235116103, -2458.3005814236003], [-533.3607235087356, -2372.600581423967]]}, {"length": 20.7489851761, "source": 2703708317, "destination": 2568600047, "path": [[-533.9107235116103, -2458.3005814236003], [-534.5607235085481, -2551.6005814232303]]}, {"length": 12.1257486121, "source": 2703708317, "destination": 2568600249, "path": [[-533.9107235116103, -2458.3005814236003], [-461.8607235116201, -2458.3005814236003]]}, {"length": 6.14225642571, "source": 2703708317, "destination": 2568600063, "path": [[-533.9107235116103, -2458.3005814236003], [-570.4107235118272, -2458.3005814236003]]}, {"length": 58.4685121731, "source": 135057566, "destination": 1483977720, "path": [[-3322.760723506235, -5102.150581421938], [-3319.760723506704, -5365.050581421116]]}, {"length": 8.08569037595, "source": 135057566, "destination": 135057570, "path": [[-3322.760723506235, -5102.150581421938], [-3370.810723509976, -5102.05058142077]]}, {"length": 101.342317563, "source": 135057566, "destination": 135057562, "path": [[-3322.760723506235, -5102.150581421938], [-2720.5607235103457, -5103.850581424041]]}, {"length": 196.838061409, "source": 1935184031, "destination": 1935184050, "path": [[8818.689276495206, -5888.600581421599], [8819.289276495112, -5983.650581423916], [8820.18927649142, -6147.050581422064], [8821.539276489431, -6255.950581422809], [8819.739276489712, -6388.050581421112], [8825.13927648887, -6497.300581422394], [8827.389276490294, -6549.350581423141], [8820.639276493126, -6650.100581421015], [8822.239276490507, -6773.450581423645]]}, {"length": 101.40119814, "source": 1935184031, "destination": 1935184020, "path": [[8818.689276495206, -5888.600581421599], [8818.3892764917, -5840.700581423163], [8817.939276489995, -5785.900581422255], [8813.889276488851, -5699.40058142393], [8815.68927648857, -5505.750581423996], [8815.089276488663, -5432.700581422978]]}, {"length": 50.0019612483, "source": 1935184031, "destination": 135022845, "path": [[8818.689276495206, -5888.600581421599], [9115.789276492593, -5885.300581422115]]}, {"length": 49.7742405322, "source": 1935184031, "destination": 135019334, "path": [[8818.689276495206, -5888.600581421599], [8522.939276488727, -5891.700581422299]]}, {"length": 202.524112755, "source": 1935184032, "destination": 1935184051, "path": [[8228.089276492767, -5894.000581420755], [8227.33927649466, -6002.050581422225], [8226.939276489986, -6037.750581423751], [8225.139276490267, -6070.450581422193], [8224.689276488562, -6112.65058142152], [8227.78927648926, -6267.550581423365], [8228.239276490967, -6330.500581423593], [8230.939276494099, -6412.550581423204], [8229.58927648898, -6521.450581423949], [8228.239276490967, -6626.650581420535], [8228.239276490967, -6686.200581423663], [8231.689276492205, -6804.550581421154]]}, {"length": 101.456021276, "source": 1935184032, "destination": 1935184021, "path": [[8228.089276492767, -5894.000581420755], [8228.689276492674, -5803.250581422503], [8226.939276489986, -5673.550581423825], [8225.589276491974, -5621.450581422494], [8223.33927649055, -5543.200581421104], [8222.439276494242, -5477.500581420713], [8223.889276493424, -5437.850581422765]]}, {"length": 49.6206352773, "source": 1935184032, "destination": 135019334, "path": [[8228.089276492767, -5894.000581420755], [8522.939276488727, -5891.700581422299]]}, {"length": 50.3778070451, "source": 1935184032, "destination": 135016301, "path": [[8228.089276492767, -5894.000581420755], [7928.739276493957, -5896.3005814227645]]}, {"length": 10.8998114399, "source": 2290110625, "destination": 2290110626, "path": [[-8525.860723509028, 6427.299418579224], [-8590.610723508973, 6427.299418579224]]}, {"length": 2.45734273079, "source": 2290110625, "destination": 2289072820, "path": [[-8525.860723509028, 6427.299418579224], [-8525.860723509028, 6438.349418576905]]}, {"length": 47.6584355253, "source": 2290110625, "destination": 2289072869, "path": [[-8525.860723509028, 6427.299418579224], [-8525.860723509028, 6315.9494185782705], [-8525.010723509751, 6212.999418576004]]}, {"length": 102.845267266, "source": 135057570, "destination": 135090059, "path": [[-3370.810723509976, -5102.05058142077], [-3368.1607235109823, -4639.600581423764]]}, {"length": 8.08569037595, "source": 135057570, "destination": 135057566, "path": [[-3370.810723509976, -5102.05058142077], [-3322.760723506235, -5102.150581421938]]}, {"length": 64.1422168075, "source": 135057570, "destination": 3146411815, "path": [[-3370.810723509976, -5102.05058142077], [-3751.9607235054764, -5102.600581423644]]}, {"length": 40.1416375553, "source": 135047195, "destination": 135047169, "path": [[6823.839276492549, -2685.100581423683], [6824.8392764900245, -2865.6005814227115]]}, {"length": 19.6481944492, "source": 135047195, "destination": 2086854454, "path": [[6823.839276492549, -2685.100581423683], [6823.339276493812, -2596.750581421503]]}, {"length": 74.7250409127, "source": 135047195, "destination": 134995134, "path": [[6823.839276492549, -2685.100581423683], [6379.839276490884, -2686.6005814234486]]}, {"length": 77.2271899685, "source": 2292322468, "destination": 2292322434, "path": [[-9247.96072350631, 3860.2994185765738], [-9247.660723509909, 3948.599418578169], [-9247.660723509909, 4060.3994185772763], [-9249.860723507198, 4207.549418577372]]}, {"length": 10.7637690735, "source": 2139774321, "destination": 2139774320, "path": [[-9915.510723509158, 399.1494185768829], [-9914.860723505115, 350.74941857615727]]}, {"length": 106.956551507, "source": 2139774321, "destination": 134959129, "path": [[-9915.510723509158, 399.1494185768829], [-9280.060723504846, 401.84941857646095]]}, {"length": 13.6884910388, "source": 2290110633, "destination": 134958929, "path": [[-9314.010723507237, 6424.29941857614], [-9314.110723508405, 6485.849418577772]]}, {"length": 11.6325931013, "source": 2290110633, "destination": 2291095714, "path": [[-9314.010723507237, 6424.29941857614], [-9244.910723509747, 6424.599418576094]]}, {"length": 46.4574857102, "source": 2290110633, "destination": 2091809971, "path": [[-9314.010723507237, 6424.29941857614], [-9313.6607235067, 6215.399418579182]]}, {"length": 101.952256251, "source": 135057583, "destination": 135090056, "path": [[-4118.5607235050265, -5103.000581421213], [-4110.660723505078, -4644.600581421799]]}, {"length": 85.368651715, "source": 135057583, "destination": 134957798, "path": [[-4118.5607235050265, -5103.000581421213], [-4625.76072350629, -5110.000581421304]]}, {"length": 61.6936428032, "source": 135057583, "destination": 3146411815, "path": [[-4118.5607235050265, -5103.000581421213], [-3751.9607235054764, -5102.600581423644]]}, {"length": 218.211035473, "source": 3639136432, "destination": 135012827, "path": [[6572.739276492712, 1577.8994185779993], [6576.039276488644, 1525.6494185784675], [6498.089276490759, 1445.5494185767748], [6433.489276489013, 1390.7494185794178], [6317.639276488762, 1290.3994185791134], [6235.239276492166, 1238.149418576029], [6193.189276494593, 1229.799418577926], [6100.8392764918535, 1225.8994185785355], [5521.53927649357, 1225.2994185786292]]}, {"length": 51.4917935249, "source": 1935184050, "destination": 135022809, "path": [[8822.239276490507, -6773.450581423645], [9049.489276492295, -6765.650581421312], [9127.989276493054, -6764.650581423837]]}, {"length": 196.838061409, "source": 1935184050, "destination": 1935184031, "path": [[8822.239276490507, -6773.450581423645], [8820.639276493126, -6650.100581421015], [8827.389276490294, -6549.350581423141], [8825.13927648887, -6497.300581422394], [8819.739276489712, -6388.050581421112], [8821.539276489431, -6255.950581422809], [8820.18927649142, -6147.050581422064], [8819.289276495112, -5983.650581423916], [8818.689276495206, -5888.600581421599]]}, {"length": 50.0299819074, "source": 1935184051, "destination": 135016304, "path": [[8231.689276492205, -6804.550581421154], [7934.389276492482, -6806.100581421504]]}, {"length": 202.524112755, "source": 1935184051, "destination": 1935184032, "path": [[8231.689276492205, -6804.550581421154], [8228.239276490967, -6686.200581423663], [8228.239276490967, -6626.650581420535], [8229.58927648898, -6521.450581423949], [8230.939276494099, -6412.550581423204], [8228.239276490967, -6330.500581423593], [8227.78927648926, -6267.550581423365], [8224.689276488562, -6112.65058142152], [8225.139276490267, -6070.450581422193], [8226.939276489986, -6037.750581423751], [8227.33927649466, -6002.050581422225], [8228.089276492767, -5894.000581420755]]}, {"length": 8.27355618351, "source": 1935184051, "destination": 1935184053, "path": [[8231.689276492205, -6804.550581421154], [8232.089276489773, -6841.750581422446]]}, {"length": 50.361076845, "source": 1935184051, "destination": 135019337, "path": [[8231.689276492205, -6804.550581421154], [8530.939276489846, -6801.650581422791]]}, {"length": 50.0620818159, "source": 1935184053, "destination": 2139785362, "path": [[8232.089276489773, -6841.750581422446], [8159.639276492215, -6842.45058142352], [8096.839276490186, -6843.3505814233795], [8003.439276492941, -6843.950581423286], [7934.639276491851, -6845.250581420714]]}, {"length": 8.27355618351, "source": 1935184053, "destination": 1935184051, "path": [[8232.089276489773, -6841.750581422446], [8231.689276492205, -6804.550581421154]]}, {"length": 50.3605572101, "source": 1935184053, "destination": 1932196195, "path": [[8232.089276489773, -6841.750581422446], [8311.489276493943, -6840.950581423755], [8531.33927649452, -6839.150581424036]]}, {"length": 194.396417707, "source": 1935184053, "destination": 1935184551, "path": [[8232.089276489773, -6841.750581422446], [8229.13927649438, -7024.900581424021], [8232.28927649211, -7153.900581421623], [8234.08927649183, -7210.700581421037], [8234.989276495242, -7241.000581423406], [8234.989276495242, -7273.700581421849], [8234.989276495242, -7350.600581421673], [8236.339276493254, -7516.050581422462], [8236.789276494961, -7627.350581422832], [8238.789276489912, -7715.800581422627]]}, {"length": 6.96078085798, "source": 2290110648, "destination": 2290110624, "path": [[-8075.4607235107305, 6408.949418577948], [-8075.310723505425, 6440.249418577792]]}, {"length": 11.6356672176, "source": 2290110648, "destination": 2290110664, "path": [[-8075.4607235107305, 6408.949418577948], [-8054.4107235098745, 6394.049418577907], [-8054.110723506369, 6363.549418576753]]}, {"length": 3.44656153222, "source": 2290110648, "destination": 2290110651, "path": [[-8075.4607235107305, 6408.949418577948], [-8075.510723507761, 6393.449418578001]]}, {"length": 3.44656153222, "source": 2290110651, "destination": 2290110648, "path": [[-8075.510723507761, 6393.449418578001], [-8075.4607235107305, 6408.949418577948]]}, {"length": 14.1456979511, "source": 2285539516, "destination": 2285539537, "path": [[-6521.160723508501, 5931.499418576181], [-6520.060723509858, 5867.899418579014]]}, {"length": 95.0205510012, "source": 2285539516, "destination": 135033658, "path": [[-6521.160723508501, 5931.499418576181], [-7085.61072350733, 5931.899418577303]]}, {"length": 17.6002200378, "source": 2285539516, "destination": 135033661, "path": [[-6521.160723508501, 5931.499418576181], [-6416.6107235053005, 5931.449418579149]]}, {"length": 12.2543956042, "source": 2358476149, "destination": 134985667, "path": [[-1957.5607235111647, 5329.549418576107], [-1957.9107235117021, 5384.64941857697]]}, {"length": 16.0713097114, "source": 2358476149, "destination": 2355676189, "path": [[-1957.5607235111647, 5329.549418576107], [-1862.110723507726, 5330.949418578257]]}, {"length": 15.531158146, "source": 2358476149, "destination": 2355676190, "path": [[-1957.5607235111647, 5329.549418576107], [-2049.8107235056295, 5328.399418576879]]}, {"length": 48.5483129034, "source": 2358476149, "destination": 2069036787, "path": [[-1957.5607235111647, 5329.549418576107], [-1956.160723509015, 5111.249418579433]]}, {"length": 232.957236071, "source": 1279884662, "destination": 135072531, "path": [[7589.239276491355, 3141.3994185776064], [7596.839276494904, 2093.8994185790707]]}, {"length": 11.5899016938, "source": 1279884662, "destination": 134959997, "path": [[7589.239276491355, 3141.3994185776064], [7590.689276490537, 3193.499418578938]]}, {"length": 10.4988458653, "source": 1279884662, "destination": 1279884639, "path": [[7589.239276491355, 3141.3994185776064], [7526.889276491033, 3140.199418577794]]}, {"length": 77.2377195673, "source": 2355654855, "destination": 2355668074, "path": [[-115.41072350951254, 6026.899418579034], [-574.2107235064964, 6024.249418576488]]}, {"length": 60.1459282664, "source": 3146412232, "destination": 135016374, "path": [[-4136.010723506444, -993.0505814210733], [-4135.510723507707, -1216.1505814205498], [-4135.4107235065385, -1263.5005814232159]]}, {"length": 86.3332295294, "source": 3146412232, "destination": 3146411766, "path": [[-4136.010723506444, -993.0505814210733], [-4397.560723511162, -993.0505814210733], [-4648.9607235074, -993.0005814240417]]}, {"length": 61.4150993485, "source": 3146412232, "destination": 135043151, "path": [[-4136.010723506444, -993.0505814210733], [-4138.310723504901, -773.6505814222028], [-4138.910723504807, -716.9005814233742]]}, {"length": 16.9493648377, "source": 3146412233, "destination": 3146557072, "path": [[-3774.66072350785, 327.29941857922995], [-3875.360723505139, 326.7994185769396]]}, {"length": 47.9141862577, "source": 3146412233, "destination": 2086776760, "path": [[-3774.66072350785, 327.29941857922995], [-3773.6107235062377, 111.84941857678155]]}, {"length": 40.6649581848, "source": 3146412233, "destination": 4719408247, "path": [[-3774.66072350785, 327.29941857922995], [-3533.0607235053435, 328.0994185779207]]}, {"length": 89.8283973146, "source": 4615885003, "destination": 135047214, "path": [[924.2892764902422, -3155.600581422391], [922.6392764887237, -2874.350581421936], [922.5392764946605, -2850.2505814209653], [900.5392764933617, -2753.1005814225296]]}, {"length": 47.2139397955, "source": 3146412237, "destination": 2086776816, "path": [[-4145.510723510881, 325.44941857892695], [-4144.160723505764, 113.14941857776262]]}, {"length": 45.4707025239, "source": 3146412237, "destination": 3146557072, "path": [[-4145.510723510881, 325.44941857892695], [-3875.360723505139, 326.7994185769396]]}, {"length": 16.5792168261, "source": 3146412237, "destination": 1433125635, "path": [[-4145.510723510881, 325.44941857892695], [-4146.010723509618, 399.99941857615795]]}, {"length": 38.0472028894, "source": 3146412237, "destination": 3146557068, "path": [[-4145.510723510881, 325.44941857892695], [-4371.560723505752, 325.44941857892695]]}, {"length": 112.864404082, "source": 4615885006, "destination": 2568679357, "path": [[259.63927649286234, -2827.50058142156], [318.8392764883474, -2720.950581423409], [329.1392764950274, -2719.800581420628], [345.83927649123325, -2717.9005814232937], [395.78927648875606, -2711.7505814224787], [444.3892764882662, -2711.7505814224787], [484.93927648962654, -2716.8505814216815], [502.9392764939189, -2719.950581422381], [538.9392764882928, -2726.050581422612], [606.4392764884019, -2734.250581422515], [634.8392764934374, -2734.250581422515], [676.6892764886734, -2730.150581420787], [702.4392764947152, -2725.150581422753], [718.5392764910148, -2722.0005814214687], [756.3392764922128, -2713.8005814215658], [799.5892764895984, -2704.6005814206355], [825.4892764938404, -2695.650581422626]]}, {"length": 19.4934600916, "source": 4615885006, "destination": 2568600110, "path": [[259.63927649286234, -2827.50058142156], [214.7392764939582, -2908.3005814207754]]}, {"length": 77.1472331503, "source": 4615885006, "destination": 4615885005, "path": [[259.63927649286234, -2827.50058142156], [251.83927649408133, -3174.3505814212367]]}, {"length": 16.0461326222, "source": 2355654863, "destination": 2355654865, "path": [[-1291.760723511004, 6022.249418577985], [-1291.4607235074982, 5975.999418577516], [-1291.260723505161, 5950.099418576827]]}, {"length": 48.3927095687, "source": 2355654863, "destination": 2355654747, "path": [[-1291.760723511004, 6022.249418577985], [-1292.560723506142, 6154.199418578088], [-1293.1107235090167, 6239.849418577137]]}, {"length": 96.0832404678, "source": 2355654863, "destination": 2354509516, "path": [[-1291.760723511004, 6022.249418577985], [-1862.5107235052951, 6019.499418577823]]}, {"length": 12.7100072694, "source": 2355654863, "destination": 2355654862, "path": [[-1291.760723511004, 6022.249418577985], [-1216.2607235097767, 6022.549418577938]]}, {"length": 14.8730830312, "source": 2285539536, "destination": 2285539537, "path": [[-6431.710723511231, 5868.149418578383], [-6520.060723509858, 5867.899418579014]]}, {"length": 12.4828361064, "source": 2355654865, "destination": 135021881, "path": [[-1291.260723505161, 5950.099418576827], [-1217.1107235090517, 5950.249418578579]]}, {"length": 95.9475548321, "source": 2355654865, "destination": 2423670874, "path": [[-1291.260723505161, 5950.099418576827], [-1861.2107235114195, 5948.049418577739]]}, {"length": 16.0461326222, "source": 2355654865, "destination": 2355654863, "path": [[-1291.260723505161, 5950.099418576827], [-1291.4607235074982, 5975.999418577516], [-1291.760723511004, 6022.249418577985]]}, {"length": 15.9237031509, "source": 2355654865, "destination": 2703719279, "path": [[-1291.260723505161, 5950.099418576827], [-1290.8107235105604, 5878.499418578542]]}, {"length": 60.3045591012, "source": 3146412242, "destination": 135016377, "path": [[-3756.01072350662, -1262.1005814210662], [-3503.060723510032, -1261.2005814212068], [-3397.7107235116932, -1260.8005814236378]]}, {"length": 121.558435357, "source": 3146412242, "destination": 3146411803, "path": [[-3756.01072350662, -1262.1005814210662], [-3756.01072350662, -715.5005814212245]]}, {"length": 63.855318377, "source": 3146412242, "destination": 135016374, "path": [[-3756.01072350662, -1262.1005814210662], [-4083.7607235104656, -1263.3005814208786], [-4135.4107235065385, -1263.5005814232159]]}, {"length": 95.1245237027, "source": 2285539540, "destination": 2285539537, "path": [[-7085.110723508592, 5866.199418576912], [-6936.810723509268, 5865.399418578221], [-6650.360723504889, 5867.549418578477], [-6520.060723509858, 5867.899418579014]]}, {"length": 14.6114234971, "source": 2285539540, "destination": 135033658, "path": [[-7085.110723508592, 5866.199418576912], [-7085.61072350733, 5931.899418577303]]}, {"length": 48.637433375, "source": 2285539540, "destination": 1433125509, "path": [[-7085.110723508592, 5866.199418576912], [-7083.51072351121, 5647.4994185791165]]}, {"length": 7.72191131638, "source": 2285539540, "destination": 2285539542, "path": [[-7085.110723508592, 5866.199418576912], [-7108.110723507366, 5866.299418578081], [-7130.910723510908, 5864.899418579484]]}, {"length": 48.5564937448, "source": 2285539542, "destination": 1965661641, "path": [[-7130.910723510908, 5864.899418579484], [-7131.11072350614, 5728.7994185770685], [-7136.160723504759, 5646.649418576289]]}, {"length": 7.72191131638, "source": 2285539542, "destination": 2285539540, "path": [[-7130.910723510908, 5864.899418579484], [-7108.110723507366, 5866.299418578081], [-7085.110723508592, 5866.199418576912]]}, {"length": 236.593750844, "source": 2285539542, "destination": 2289072988, "path": [[-7130.910723510908, 5864.899418579484], [-7186.760723506324, 5861.449418578246], [-7244.160723509196, 5858.099418578177], [-7498.110723510365, 5856.599418578412], [-7622.56072351164, 5856.549418577828], [-7739.7107235057665, 5855.849418576753], [-7765.66072350704, 5860.699418576587], [-7797.460723509175, 5870.699418576209], [-7823.8607235050495, 5877.849418578052], [-7847.16072350733, 5880.899418578167], [-7855.660723507185, 5880.7994185769985], [-7882.960723506471, 5880.4494185764615], [-7899.310723509245, 5880.299418578261], [-7914.56072350627, 5876.049418578333], [-7943.460723510043, 5862.6994185786425], [-7963.460723509286, 5854.949418576894], [-7996.460723511234, 5853.99941857645], [-8310.210723507793, 5852.199418576731], [-8436.510723505819, 5851.799418579162], [-8522.110723511389, 5851.599418576825]]}, {"length": 14.877930052, "source": 2285539542, "destination": 1965661565, "path": [[-7130.910723510908, 5864.899418579484], [-7130.81072350974, 5931.799418576134]]}, {"length": 112.196723914, "source": 2284151925, "destination": 2284151913, "path": [[-7732.960723508597, 4267.449418577485], [-7733.4607235073345, 4325.9994185760315], [-7519.160723511221, 4327.349418577597], [-7359.710723505941, 4327.949418577504], [-7144.310723511182, 4328.599418577995]]}, {"length": 7.2561977131, "source": 2284151925, "destination": 2284151923, "path": [[-7732.960723508597, 4267.449418577485], [-7689.860723509411, 4267.549418578654]]}, {"length": 12.3766096139, "source": 2284151925, "destination": 2284151932, "path": [[-7732.960723508597, 4267.449418577485], [-7732.460723509859, 4211.7994185773005]]}, {"length": 5.77391647314, "source": 2284151925, "destination": 135096727, "path": [[-7732.960723508597, 4267.449418577485], [-7767.2607235115265, 4267.399418576901]]}, {"length": 6.38259883678, "source": 2285539560, "destination": 2285539537, "path": [[-6519.56072351112, 5839.199418577578], [-6520.060723509858, 5867.899418579014]]}, {"length": 60.1910853985, "source": 134975725, "destination": 3146411827, "path": [[-4113.6607235117135, -4095.6005814223317], [-3756.01072350662, -4093.4505814220756]]}, {"length": 107.88249638, "source": 134975725, "destination": 3146411788, "path": [[-4113.6607235117135, -4095.6005814223317], [-4110.860723507414, -4580.700581421126]]}, {"length": 202.501559498, "source": 134975725, "destination": 134955039, "path": [[-4113.6607235117135, -4095.6005814223317], [-4116.160723505402, -3654.10058142146], [-4121.660723505727, -3641.600581421045], [-4143.660723507026, -3622.10058142054], [-4171.660723507386, -3604.100581423353], [-4429.360723506193, -3492.2505814236615], [-4481.760723507477, -3477.2005814218687], [-4548.310723507143, -3472.3505814220343], [-4650.91072350532, -3506.0005814209208]]}, {"length": 23.0606994676, "source": 2290110714, "destination": 2290110664, "path": [[-8063.010723510899, 6262.0994185778045], [-8063.410723508468, 6283.749418578565], [-8053.110723508894, 6303.749418577809], [-8050.010723508194, 6310.749418577899], [-8049.110723504782, 6315.249418577196], [-8048.910723509551, 6320.249418578783], [-8049.810723505857, 6325.099418578617], [-8052.210723505482, 6334.899418579454], [-8053.760723505831, 6342.049418577744], [-8053.960723508169, 6350.899418578138], [-8054.110723506369, 6363.549418576753]]}, {"length": 7.06360445913, "source": 2282033877, "destination": 2282033844, "path": [[-8384.26072350984, 277.59941857752324], [-8385.410723505516, 309.3494185790746]]}, {"length": 102.545296985, "source": 134975753, "destination": 134956075, "path": [[6496.839276493915, -4084.1005814229447], [6499.7892764893095, -4545.200581421937]]}, {"length": 44.5992473916, "source": 134975753, "destination": 2573122358, "path": [[6496.839276493915, -4084.1005814229447], [6761.839276492765, -4082.100581420889]]}, {"length": 110.403376931, "source": 134975753, "destination": 2573122359, "path": [[6496.839276493915, -4084.1005814229447], [5840.839276494591, -4088.6005814222417]]}, {"length": 99.0432748967, "source": 134975758, "destination": 134975760, "path": [[7927.839276490545, -4073.600581421033], [8516.33927648976, -4069.6005814240266]]}, {"length": 53.8962419632, "source": 134975758, "destination": 2086854472, "path": [[7927.839276490545, -4073.600581421033], [7928.089276489914, -4315.950581421646]]}, {"length": 7.88535779037, "source": 134975758, "destination": 1295456198, "path": [[7927.839276490545, -4073.600581421033], [7880.989276493721, -4073.9505814215704]]}, {"length": 54.3549912572, "source": 134975760, "destination": 2086854536, "path": [[8516.33927648976, -4069.6005814240266], [8519.639276492797, -4314.0005814237265]]}, {"length": 56.7015726734, "source": 134975760, "destination": 2086854433, "path": [[8516.33927648976, -4069.6005814240266], [8512.789276494459, -3814.65058142183]]}, {"length": 100.93775153, "source": 134975760, "destination": 134975763, "path": [[8516.33927648976, -4069.6005814240266], [9116.089276488992, -4065.000581423561]]}, {"length": 99.0432748967, "source": 134975760, "destination": 134975758, "path": [[8516.33927648976, -4069.6005814240266], [7927.839276490545, -4073.600581421033]]}, {"length": 100.93775153, "source": 134975763, "destination": 134975760, "path": [[9116.089276488992, -4065.000581423561], [8516.33927648976, -4069.6005814240266]]}, {"length": 54.4633246653, "source": 134975763, "destination": 2086854465, "path": [[9116.089276488992, -4065.000581423561], [9116.18927649016, -4309.900581421999]]}, {"length": 92.6813446169, "source": 134975763, "destination": 134975766, "path": [[9116.089276488992, -4065.000581423561], [9666.789276494113, -4061.400581420571]]}, {"length": 141.086413577, "source": 134975763, "destination": 2086854567, "path": [[9116.089276488992, -4065.000581423561], [9120.639276488873, -3430.600581420862]]}, {"length": 21.7362752193, "source": 135047214, "destination": 2568599824, "path": [[900.5392764933617, -2753.1005814225296], [1029.689276492718, -2753.8005814236044]]}, {"length": 89.8283973146, "source": 135047214, "destination": 4615885003, "path": [[900.5392764933617, -2753.1005814225296], [922.5392764946605, -2850.2505814209653], [922.6392764887237, -2874.350581421936], [924.2892764902422, -3155.600581422391]]}, {"length": 10.9821872448, "source": 134975766, "destination": 2074098866, "path": [[9666.789276494113, -4061.400581420571], [9732.039276492798, -4060.700581423049]]}, {"length": 92.6813446169, "source": 134975766, "destination": 134975763, "path": [[9666.789276494113, -4061.400581420571], [9116.089276488992, -4065.000581423561]]}, {"length": 195.334243485, "source": 134975766, "destination": 134979311, "path": [[9666.789276494113, -4061.400581420571], [9659.48927649407, -3666.1005814231376], [9657.739276491384, -3183.1005814240143]]}, {"length": 15.3844715759, "source": 2423705885, "destination": 3496300573, "path": [[-5184.160723509023, 392.649418579083], [-5154.660723505344, 392.7494185766989], [-5092.760723506728, 392.8494185778675]]}, {"length": 72.2355711284, "source": 134975775, "destination": 134956059, "path": [[1769.3392764925875, -4140.2505814218675], [1773.389276493731, -4465.050581423213]]}, {"length": 82.8036801358, "source": 134975775, "destination": 2587024981, "path": [[1769.3392764925875, -4140.2505814218675], [1364.4892764901329, -4142.300581420955], [1277.3392764913183, -4143.65058142252]]}, {"length": 197.383480306, "source": 134975775, "destination": 2568624486, "path": [[1769.3392764925875, -4140.2505814218675], [1765.4892764937813, -3252.7005814237955]]}, {"length": 12.5429790806, "source": 2080592187, "destination": 2573122354, "path": [[7322.189276493418, -3140.3005814212293], [7322.189276493418, -3196.7005814230733]]}, {"length": 159.93170359, "source": 2080592187, "destination": 135019223, "path": [[7322.189276493418, -3140.3005814212293], [7868.339276491553, -3140.9005814211355], [8272.489276492934, -3140.3505814218133]]}, {"length": 70.6120528431, "source": 134975807, "destination": 3698428995, "path": [[9734.039276494856, -4178.450581420634], [9742.489276490574, -4495.900581421352]]}, {"length": 38.1261215284, "source": 134975807, "destination": 2086854555, "path": [[9734.039276494856, -4178.450581420634], [9960.589276488463, -4178.0505814230655]]}, {"length": 10.6022095187, "source": 134975807, "destination": 134979316, "path": [[9734.039276494856, -4178.450581420634], [9671.03927649049, -4178.550581421803]]}, {"length": 12.7432916468, "source": 2355655000, "destination": 134985673, "path": [[-568.7607235103087, 5388.649418577529], [-493.0607235067441, 5388.599418576945]]}, {"length": 95.8694763381, "source": 2355655000, "destination": 2358476143, "path": [[-568.7607235103087, 5388.649418577529], [-673.0607235070352, 5388.999418578067], [-899.9107235112547, 5388.749418578698], [-980.1607235075949, 5388.749418578698], [-1138.2607235077558, 5388.499418579329]]}, {"length": 13.4992042178, "source": 2355655000, "destination": 2703728622, "path": [[-568.7607235103087, 5388.649418577529], [-569.1607235078777, 5449.349418576332]]}, {"length": 12.9213365904, "source": 2355655000, "destination": 2355655001, "path": [[-568.7607235103087, 5388.649418577529], [-568.3107235086027, 5330.549418577135]]}, {"length": 12.9213365904, "source": 2355655001, "destination": 2355655000, "path": [[-568.3107235086027, 5330.549418577135], [-568.7607235103087, 5388.649418577529]]}, {"length": 95.8864783018, "source": 2355655001, "destination": 2355655002, "path": [[-568.3107235086027, 5330.549418577135], [-1137.9107235072183, 5328.849418578585]]}, {"length": 28.1468747071, "source": 2355655001, "destination": 2352260157, "path": [[-568.3107235086027, 5330.549418577135], [-401.1107235086797, 5331.349418579379]]}, {"length": 47.7702604528, "source": 2355655001, "destination": 2703728623, "path": [[-568.3107235086027, 5330.549418577135], [-566.6607235070842, 5115.74941857873]]}, {"length": 95.8864783018, "source": 2355655002, "destination": 2355655001, "path": [[-1137.9107235072183, 5328.849418578585], [-568.3107235086027, 5330.549418577135]]}, {"length": 47.9255650549, "source": 2355655002, "destination": 2358476297, "path": [[-1137.9107235072183, 5328.849418578585], [-1136.5107235050687, 5113.349418579105]]}, {"length": 12.6730801393, "source": 2355655002, "destination": 2358476148, "path": [[-1137.9107235072183, 5328.849418578585], [-1213.160723509077, 5330.59941857772]]}, {"length": 13.2658466855, "source": 2355655002, "destination": 2358476143, "path": [[-1137.9107235072183, 5328.849418578585], [-1138.2607235077558, 5388.499418579329]]}, {"length": 16.4548054631, "source": 2703728625, "destination": 2069036722, "path": [[-1854.9107235088513, 4562.549418576367], [-1952.6607235107463, 4562.099418578214]]}, {"length": 48.0153049786, "source": 2703728625, "destination": 2354509548, "path": [[-1854.9107235088513, 4562.549418576367], [-1853.910723511376, 4508.949418578823], [-1853.0607235049956, 4346.649418579318]]}, {"length": 96.3648882877, "source": 2703728625, "destination": 2358476581, "path": [[-1854.9107235088513, 4562.549418576367], [-1282.4607235089047, 4565.04941857716]]}, {"length": 48.0047267556, "source": 2703728625, "destination": 2354509541, "path": [[-1854.9107235088513, 4562.549418576367], [-1856.0107235074952, 4619.649418579285], [-1855.810723505158, 4667.249418577768], [-1856.0107235074952, 4778.399418576384]]}, {"length": 49.5420885806, "source": 1930367327, "destination": 135019337, "path": [[8824.5892764931, -6815.0505814230655], [8666.989276491677, -6812.200581421735], [8530.939276489846, -6801.650581422791]]}, {"length": 198.602320323, "source": 1930367327, "destination": 1930367388, "path": [[8824.5892764931, -6815.0505814230655], [8823.889276492026, -6919.000581422807], [8821.939276494106, -7004.100581422535], [8826.639276492187, -7100.500581422864], [8830.589276492163, -7172.750581421638], [8834.539276492138, -7401.800581423146], [8834.939276489706, -7503.600581422632], [8832.589276494218, -7587.800581422499], [8833.78927649403, -7707.9005814226775]]}, {"length": 2.53319328509, "source": 2423697761, "destination": 3357236935, "path": [[-7812.460723506831, -3219.400581421894], [-7812.460723506831, -3219.4505814224785], [-7808.810723510362, -3230.500581423712]]}, {"length": 25.1580686231, "source": 2355655012, "destination": 2703719280, "path": [[-1134.4107235089496, 4781.049418578931], [-1283.8607235110544, 4780.499418576056]]}, {"length": 95.6158642046, "source": 2355655012, "destination": 2358476450, "path": [[-1134.4107235089496, 4781.049418578931], [-566.4107235077154, 4783.099418578018]]}, {"length": 25.8308128224, "source": 2355655012, "destination": 2358476445, "path": [[-1134.4107235089496, 4781.049418578931], [-1135.160723507056, 4897.1994185791345]]}, {"length": 47.9590275124, "source": 2355655012, "destination": 2358476583, "path": [[-1134.4107235089496, 4781.049418578931], [-1133.060723510937, 4565.399418577698]]}, {"length": 67.8132429541, "source": 2423697765, "destination": 2423697768, "path": [[-7668.710723507388, -3637.4005814217016], [-7637.760723511633, -3672.75058142269], [-7554.860723509193, -3812.0505814234207], [-7468.910723510191, -3900.4505814226322]]}, {"length": 93.5657489828, "source": 2423697765, "destination": 3357236935, "path": [[-7668.710723507388, -3637.4005814217016], [-7702.760723510948, -3560.65058142363], [-7771.310723505565, -3343.950581420785], [-7808.810723510362, -3230.500581423712]]}, {"length": 11.9313104596, "source": 2423697768, "destination": 1667926827, "path": [[-7468.910723510191, -3900.4505814226322], [-7508.610723505171, -3944.900581423383]]}, {"length": 60.9677091346, "source": 2423697768, "destination": 1959915190, "path": [[-7468.910723510191, -3900.4505814226322], [-7442.110723509642, -3878.2005814219647], [-7416.410723507738, -3861.1505814216684], [-7363.860723508253, -3832.0505814226635], [-7270.660723506239, -3805.4505814208997], [-7148.710723505757, -3790.250581420906]]}, {"length": 40.8311764069, "source": 2586986556, "destination": 2586986545, "path": [[197.53927649190928, -1363.4005814218142], [196.58927649146563, -1547.0005814215426]]}, {"length": 14.3504270496, "source": 2586986556, "destination": 2586986564, "path": [[197.53927649190928, -1363.4005814218142], [183.13927649415973, -1382.1005814236287], [156.2392764924425, -1406.550581421584], [144.98927649242432, -1413.6005814222585]]}, {"length": 12.4314676813, "source": 2586986556, "destination": 2586986573, "path": [[197.53927649190928, -1363.4005814218142], [197.83927648830968, -1307.5005814222607]]}, {"length": 2.52606755147, "source": 2355655019, "destination": 2355655020, "path": [[-1130.9107235106808, 4230.44941857853], [-1130.8607235065438, 4219.099418577343]]}, {"length": 10.9674052617, "source": 2355655019, "destination": 2327765636, "path": [[-1130.9107235106808, 4230.44941857853], [-1065.7607235060595, 4230.44941857853]]}, {"length": 249.826807713, "source": 2355655019, "destination": 2356771790, "path": [[-1130.9107235106808, 4230.44941857853], [-1520.0107235102678, 4230.44941857853], [-2615.01072350967, 4225.299418578743]]}, {"length": 26.7539434211, "source": 2355655019, "destination": 2357086671, "path": [[-1130.9107235106808, 4230.44941857853], [-1131.6607235087872, 4350.749418577493]]}, {"length": 2.52606755147, "source": 2355655020, "destination": 2355655019, "path": [[-1130.8607235065438, 4219.099418577343], [-1130.9107235106808, 4230.44941857853]]}, {"length": 31.9698503359, "source": 2355655021, "destination": 2357086669, "path": [[-561.2107235108965, 4209.949418576997], [-562.8607235053096, 4353.69941857644]]}, {"length": 36.7099492927, "source": 1932195902, "destination": 1932195954, "path": [[1617.9392764925637, -5135.250581421502], [1621.2892764926323, -5300.300581421169]]}, {"length": 115.401896164, "source": 2086776814, "destination": 2086776737, "path": [[7896.589276491284, 2095.399418578836], [7902.039276494577, 1576.4994185794023]]}, {"length": 245.184349972, "source": 2086776814, "destination": 2086776762, "path": [[7896.589276491284, 2095.399418578836], [7883.239276495146, 3197.8494185764816]]}, {"length": 50.4556591074, "source": 2086776814, "destination": 135072531, "path": [[7896.589276491284, 2095.399418578836], [7596.839276494904, 2093.8994185790707]]}, {"length": 52.1388297027, "source": 2086776814, "destination": 135072534, "path": [[7896.589276491284, 2095.399418578836], [8206.339276490837, 2096.8994185786014]]}, {"length": 32.8915309789, "source": 885855103, "destination": 2086854428, "path": [[8515.339276492285, -4582.150581423861], [8515.93927649219, -4730.050581422063]]}, {"length": 91.0515429723, "source": 4719464841, "destination": 135103216, "path": [[-3586.9107235058095, -1828.200581421413], [-4127.910723511263, -1828.0005814226286]]}, {"length": 140.098966094, "source": 4719464841, "destination": 4719461082, "path": [[-3586.9107235058095, -1828.200581421413], [-3587.560723509853, -1878.6505814212262], [-3585.560723507797, -1935.3005814224389], [-3584.210723509784, -2245.250581420777], [-3584.210723509784, -2330.000581423519], [-3638.8107235083567, -2451.3005814235103]]}, {"length": 3.73519955772, "source": 4719464841, "destination": 134939756, "path": [[-3586.9107235058095, -1828.200581421413], [-3564.710723509279, -1828.200581421413]]}, {"length": 145.347603711, "source": 135074194, "destination": 135076181, "path": [[896.2892764898811, -1811.2505814222857], [1759.8392764952564, -1803.6005814217049]]}, {"length": 36.5217730036, "source": 135074194, "destination": 2586992582, "path": [[896.2892764898811, -1811.2505814222857], [679.2892764906355, -1811.5505814222388]]}, {"length": 7.82742493542, "source": 135074194, "destination": 2586992559, "path": [[896.2892764898811, -1811.2505814222857], [896.2892764898811, -1846.4505814215215]]}, {"length": 22.3018766943, "source": 2586986564, "destination": 2586986540, "path": [[144.98927649242432, -1413.6005814222585], [115.8892764934194, -1431.9505814235356], [93.0392764928456, -1443.1505814229695], [55.98927648975405, -1453.2005814231752], [28.489276495236027, -1457.4005814225188]]}, {"length": 14.3504270496, "source": 2586986564, "destination": 2586986556, "path": [[144.98927649242432, -1413.6005814222585], [156.2392764924425, -1406.550581421584], [183.13927649415973, -1382.1005814236287], [197.53927649190928, -1363.4005814218142]]}, {"length": 15.2859984686, "source": 2586986564, "destination": 2586986542, "path": [[144.98927649242432, -1413.6005814222585], [136.48927649256848, -1426.300581421458], [133.1392764924999, -1434.4005814237448], [106.4892764901515, -1475.750581423796]]}, {"length": 50.0098014066, "source": 1930367388, "destination": 135022979, "path": [[8833.78927649403, -7707.9005814226775], [9130.939276488447, -7704.000581423287]]}, {"length": 50.0631179272, "source": 1930367388, "destination": 135019340, "path": [[8833.78927649403, -7707.9005814226775], [8536.339276489001, -7712.500581423143]]}, {"length": 7.18379620013, "source": 1930367388, "destination": 1930367390, "path": [[8833.78927649403, -7707.9005814226775], [8834.139276494569, -7740.200581423551]]}, {"length": 198.602320323, "source": 1930367388, "destination": 1930367327, "path": [[8833.78927649403, -7707.9005814226775], [8832.589276494218, -7587.800581422499], [8834.939276489706, -7503.600581422632], [8834.539276492138, -7401.800581423146], [8830.589276492163, -7172.750581421638], [8826.639276492187, -7100.500581422864], [8821.939276494106, -7004.100581422535], [8823.889276492026, -6919.000581422807], [8824.5892764931, -6815.0505814230655]]}, {"length": 30.8125080242, "source": 1942302106, "destination": 1942302137, "path": [[6033.939276491651, -130.75058142320017], [6033.089276492376, 7.7994185794239]]}, {"length": 8.92090024645, "source": 1942302106, "destination": 135074782, "path": [[6033.939276491651, -130.75058142320017], [6086.939276492842, -130.30058142149414]]}, {"length": 74.8677093204, "source": 1942302106, "destination": 1942302111, "path": [[6033.939276491651, -130.75058142320017], [6033.439276492913, -467.4005814209181]]}, {"length": 50.0878759193, "source": 1930367390, "destination": 1930367395, "path": [[8834.139276494569, -7740.200581423551], [8810.689276494088, -7740.550581420535], [8569.239276489781, -7743.500581423035], [8536.53927649134, -7743.900581420604]]}, {"length": 7.18379620013, "source": 1930367390, "destination": 1930367388, "path": [[8834.139276494569, -7740.200581423551], [8833.78927649403, -7707.9005814226775]]}, {"length": 202.070801534, "source": 1930367390, "destination": 1930367639, "path": [[8834.139276494569, -7740.200581423551], [9095.98927648858, -7736.350581421192], [9096.389276493255, -7830.400581422481], [9098.78927649288, -8108.950581423358], [9099.139276493417, -8236.750581421149], [9100.7392764908, -8384.550581421734], [9101.289276493673, -8446.800581420888]]}, {"length": 196.608154304, "source": 1930367390, "destination": 1930367639, "path": [[8834.139276494569, -7740.200581423551], [8835.73927649195, -7891.750581421775], [8837.68927648987, -8161.0505814211365], [8836.939276491761, -8362.900581420974], [8839.289276494355, -8398.700581423669], [8846.389276492062, -8416.050581423917], [8856.23927648993, -8428.550581420779], [8874.389276492422, -8440.800581421825], [8896.089276490216, -8449.450581423434], [8923.73927649004, -8453.05058142287], [8956.889276490187, -8453.650581422778], [8999.489276490636, -8451.550581423106], [9065.789276490932, -8447.10058142084], [9101.289276493673, -8446.800581420888]]}, {"length": 7.28347208735, "source": 2282973253, "destination": 2282973286, "path": [[-9076.560723507044, 2660.499418578155], [-9076.810723506413, 2627.7494185791284]]}, {"length": 28.4926768839, "source": 2069393826, "destination": 2069393851, "path": [[-4807.210723505761, 4939.79941857603], [-4791.110723509462, 4958.049418576138], [-4771.010723509051, 4977.349418577859], [-4765.610723509894, 5001.699418578199], [-4757.560723511744, 5026.099418579122], [-4751.760723507914, 5057.549418577168]]}, {"length": 153.699760874, "source": 1930367395, "destination": 1394286592, "path": [[8536.53927649134, -7743.900581420604], [8544.539276492458, -8435.000581421547]]}, {"length": 100.236656003, "source": 1930367395, "destination": 1933540857, "path": [[8536.53927649134, -7743.900581420604], [8225.139276490267, -7744.100581422941], [7984.439276491174, -7747.100581422473], [7941.439276493156, -7752.300581422844]]}, {"length": 6.98340288986, "source": 1930367395, "destination": 135019340, "path": [[8536.53927649134, -7743.900581420604], [8536.339276489001, -7712.500581423143]]}, {"length": 50.0878759193, "source": 1930367395, "destination": 1930367390, "path": [[8536.53927649134, -7743.900581420604], [8569.239276489781, -7743.500581423035], [8810.689276494088, -7740.550581420535], [8834.139276494569, -7740.200581423551]]}, {"length": 34.3525400576, "source": 2069393829, "destination": 2069393833, "path": [[-5549.460723507593, 5424.999418575993], [-5548.810723510655, 5457.499418579204], [-5501.910723509695, 5457.499418579204], [-5449.610723509579, 5455.4994185771475], [-5434.810723507155, 5450.399418577945], [-5424.110723510012, 5435.199418577951], [-5413.360723508731, 5419.949418577375]]}, {"length": 4.32763976731, "source": 2069393829, "destination": 2069376779, "path": [[-5549.460723507593, 5424.999418575993], [-5575.160723509498, 5425.299418575946]]}, {"length": 10.8287422006, "source": 2069393829, "destination": 2069393854, "path": [[-5549.460723507593, 5424.999418575993], [-5550.1607235086685, 5388.499418579329], [-5534.060723505263, 5388.499418579329]]}, {"length": 25.1207202607, "source": 2069393833, "destination": 2069393865, "path": [[-5413.360723508731, 5419.949418577375], [-5350.360723511471, 5422.99941857749], [-5298.060723511355, 5422.99941857749], [-5264.5107235065325, 5419.949418577375]]}, {"length": 34.3525400576, "source": 2069393833, "destination": 2069393829, "path": [[-5413.360723508731, 5419.949418577375], [-5424.110723510012, 5435.199418577951], [-5434.810723507155, 5450.399418577945], [-5449.610723509579, 5455.4994185771475], [-5501.910723509695, 5457.499418579204], [-5548.810723510655, 5457.499418579204], [-5549.460723507593, 5424.999418575993]]}, {"length": 24.1393304312, "source": 2069393833, "destination": 2069393854, "path": [[-5413.360723508731, 5419.949418577375], [-5421.310723505712, 5406.849418577053], [-5429.460723505031, 5395.599418577035], [-5445.560723508435, 5388.499418579329], [-5463.010723509853, 5386.449418576689], [-5534.060723505263, 5388.499418579329]]}, {"length": 11.3946453727, "source": 2285539755, "destination": 3299414704, "path": [[-7145.410723509826, 5427.399418579171], [-7134.560723507377, 5427.549418577371], [-7112.860723509584, 5418.099418577071], [-7081.0607235074485, 5418.099418577071]]}, {"length": 48.896616817, "source": 2285539755, "destination": 1965661641, "path": [[-7145.410723509826, 5427.399418579171], [-7148.21072350702, 5435.399418576736], [-7144.560723510551, 5582.599418577416], [-7136.160723504759, 5646.649418576289]]}, {"length": 105.155612121, "source": 2285539755, "destination": 2285539766, "path": [[-7145.410723509826, 5427.399418579171], [-7215.360723506592, 5426.699418578096], [-7485.410723511166, 5426.24941857639], [-7673.810723510143, 5425.84941857882], [-7770.060723508721, 5426.599418576927]]}, {"length": 12.9531509976, "source": 2285539755, "destination": 1965661559, "path": [[-7145.410723509826, 5427.399418579171], [-7132.460723511258, 5390.749418577201], [-7126.810723505628, 5370.8994185761585]]}, {"length": 47.5249276261, "source": 2294600111, "destination": 2068973856, "path": [[-4182.610723511005, 6442.399418578048], [-4182.160723509298, 6228.699418578288]]}, {"length": 13.4517700239, "source": 2294600111, "destination": 2294600112, "path": [[-4182.610723511005, 6442.399418578048], [-4213.110723505053, 6442.29941857688], [-4262.510723506807, 6442.14941857868]]}, {"length": 13.2737679539, "source": 2294600111, "destination": 2293562991, "path": [[-4182.610723511005, 6442.399418578048], [-4153.760723511368, 6442.449418578633], [-4103.760723509708, 6442.649418577417]]}, {"length": 12.4609776054, "source": 2069393840, "destination": 2069393851, "path": [[-4681.1107235100735, 5071.7494185761325], [-4701.260723507517, 5063.649418577398], [-4726.710723510052, 5059.599418576255], [-4751.760723507914, 5057.549418577168]]}, {"length": 6.37977405291, "source": 2069393840, "destination": 2068973892, "path": [[-4681.1107235100735, 5071.7494185761325], [-4644.110723511119, 5065.549418578285]]}, {"length": 21.2730357166, "source": 2069393840, "destination": 2069393822, "path": [[-4681.1107235100735, 5071.7494185761325], [-4658.310723506531, 5085.94941857865], [-4592.610723506141, 5139.799418579116]]}, {"length": 47.4581265911, "source": 2294600113, "destination": 2294600150, "path": [[-4827.060723506804, 6439.9994185784235], [-4827.060723506804, 6226.599418578616]]}, {"length": 16.118906942, "source": 2294600113, "destination": 2293562998, "path": [[-4827.060723506804, 6439.9994185784235], [-4922.810723506644, 6439.899418577255]]}, {"length": 10.3287830431, "source": 2294600113, "destination": 2295832863, "path": [[-4827.060723506804, 6439.9994185784235], [-4765.710723511063, 6440.399418575993]]}, {"length": 105.155612121, "source": 2285539766, "destination": 2285539755, "path": [[-7770.060723508721, 5426.599418576927], [-7673.810723510143, 5425.84941857882], [-7485.410723511166, 5426.24941857639], [-7215.360723506592, 5426.699418578096], [-7145.410723509826, 5427.399418579171]]}, {"length": 48.1739090323, "source": 2285539766, "destination": 1433125511, "path": [[-7770.060723508721, 5426.599418576927], [-7773.8607235104955, 5643.199418578604]]}, {"length": 13.5661370516, "source": 2285539766, "destination": 134985535, "path": [[-7770.060723508721, 5426.599418576927], [-7770.4607235062895, 5365.599418578171]]}, {"length": 114.04668693, "source": 2285539768, "destination": 3299414704, "path": [[-6403.610723509701, 5421.799418577677], [-6649.2107235092135, 5419.049418577515], [-6810.060723509537, 5418.899418579314], [-6987.710723507234, 5418.099418577071], [-7081.0607235074485, 5418.099418577071]]}, {"length": 57.1397745782, "source": 2285539768, "destination": 1433125506, "path": [[-6403.610723509701, 5421.799418577677], [-6414.61072351035, 5678.599418576624]]}, {"length": 11.3048927557, "source": 2285539768, "destination": 134985546, "path": [[-6403.610723509701, 5421.799418577677], [-6406.110723510494, 5370.999418577327]]}, {"length": 12.4609776054, "source": 2069393851, "destination": 2069393840, "path": [[-4751.760723507914, 5057.549418577168], [-4726.710723510052, 5059.599418576255], [-4701.260723507517, 5063.649418577398], [-4681.1107235100735, 5071.7494185761325]]}, {"length": 28.4926768839, "source": 2069393851, "destination": 2069393826, "path": [[-4751.760723507914, 5057.549418577168], [-4757.560723511744, 5026.099418579122], [-4765.610723509894, 5001.699418578199], [-4771.010723509051, 4977.349418577859], [-4791.110723509462, 4958.049418576138], [-4807.210723505761, 4939.79941857603]]}, {"length": 78.3768756367, "source": 2069393851, "destination": 2069376796, "path": [[-4751.760723507914, 5057.549418577168], [-4800.510723505624, 5057.549418577168], [-4835.360723511429, 5058.549418578195], [-4856.810723509852, 5067.699418578542], [-4883.6607235074325, 5085.94941857865], [-4949.360723507823, 5137.749418576476], [-4982.860723508509, 5171.249418577162], [-5025.810723509494, 5220.999418579453], [-5056.660723511186, 5244.349418578764], [-5095.510723506891, 5266.649418576463]]}, {"length": 21.9377474639, "source": 2069393852, "destination": 2069379711, "path": [[-4504.71072350922, 4989.9994185764735], [-4458.510723509335, 5000.69941857717], [-4427.660723507643, 5014.899418576135], [-4391.4607235109315, 5036.249418576944]]}, {"length": 24.1393304312, "source": 2069393854, "destination": 2069393833, "path": [[-5534.060723505263, 5388.499418579329], [-5463.010723509853, 5386.449418576689], [-5445.560723508435, 5388.499418579329], [-5429.460723505031, 5395.599418577035], [-5421.310723505712, 5406.849418577053], [-5413.360723508731, 5419.949418577375]]}, {"length": 10.8287422006, "source": 2069393854, "destination": 2069393829, "path": [[-5534.060723505263, 5388.499418579329], [-5550.1607235086685, 5388.499418579329], [-5549.460723507593, 5424.999418575993]]}, {"length": 13.829725613, "source": 2069393854, "destination": 2069036333, "path": [[-5534.060723505263, 5388.499418579329], [-5534.060723505263, 5341.799418577153], [-5513.61072351142, 5342.049418576522]]}, {"length": 122.495662944, "source": 2068877152, "destination": 2068877120, "path": [[-494.8107235094312, 5664.849418579365], [232.83927649231373, 5668.549418576418]]}, {"length": 61.4360622389, "source": 2068877152, "destination": 134985673, "path": [[-494.8107235094312, 5664.849418579365], [-493.0607235067441, 5388.599418576945]]}, {"length": 121.285318486, "source": 2068877152, "destination": 2068877118, "path": [[-494.8107235094312, 5664.849418579365], [-1215.260723505196, 5660.149418577731]]}, {"length": 64.2714277455, "source": 2068877152, "destination": 135025223, "path": [[-494.8107235094312, 5664.849418579365], [-496.6607235061815, 5953.849418578016]]}, {"length": 7.492083919, "source": 1965661601, "destination": 2139775504, "path": [[-7130.81072350974, 6003.349418577386], [-7086.310723508404, 6003.299418576802]]}, {"length": 47.8254141064, "source": 1965661601, "destination": 1965661530, "path": [[-7130.81072350974, 6003.349418577386], [-7132.110723510721, 6218.399418578712]]}, {"length": 237.15195682, "source": 1965661601, "destination": 2289072986, "path": [[-7130.81072350974, 6003.349418577386], [-7269.310723508226, 6002.799418578064], [-7531.0107235111445, 6002.499418578111], [-7731.06072350771, 6002.749418577479], [-7757.010723508984, 5999.899418576149], [-7785.810723511588, 5983.349418578144], [-7806.260723505431, 5981.199418577888], [-7857.360723505735, 5980.149418576275], [-7884.210723510421, 5979.649418577537], [-7907.160723505058, 5979.1494185788], [-7926.210723510962, 5983.4994185763435], [-7949.810723509643, 5995.0994185769], [-7969.110723507811, 6003.199418579186], [-8105.660723508379, 5999.899418576149], [-8338.560723508692, 5999.899418576149], [-8421.110723510594, 5999.899418576149], [-8523.4607235094, 5999.149418578043]]}, {"length": 15.9118128168, "source": 1965661601, "destination": 1965661565, "path": [[-7130.81072350974, 6003.349418577386], [-7130.81072350974, 5931.799418576134]]}, {"length": 10.9419005902, "source": 2287972808, "destination": 1433125531, "path": [[-8647.510723506002, 4873.099418578164], [-8582.510723506686, 4873.499418579286]]}, {"length": 13.1007845992, "source": 2287972808, "destination": 2289073349, "path": [[-8647.510723506002, 4873.099418578164], [-8647.510723506002, 4866.2494185762735], [-8646.860723509064, 4814.199418579079]]}, {"length": 124.206545589, "source": 2287972808, "destination": 2280505606, "path": [[-8647.510723506002, 4873.099418578164], [-8687.960723506194, 4872.849418578795], [-8884.36072350629, 4871.6494185789825], [-9111.860723507449, 4872.099418577136], [-9143.610723505446, 4873.2994185769485], [-9153.910723505021, 4871.2994185784455], [-9162.91072351072, 4869.54941857931], [-9176.260723506857, 4868.099418576577], [-9252.810723509698, 4871.199418577276], [-9273.060723508308, 4871.899418578351], [-9297.010723507527, 4872.099418577136], [-9384.410723505709, 4870.699418578539]]}, {"length": 47.2145766595, "source": 2287972808, "destination": 2291234701, "path": [[-8647.510723506002, 4873.099418578164], [-8647.510723506002, 4942.299418576823], [-8648.160723510046, 5017.249418578729], [-8648.510723510582, 5085.399418579328]]}, {"length": 25.1207202607, "source": 2069393865, "destination": 2069393833, "path": [[-5264.5107235065325, 5419.949418577375], [-5298.060723511355, 5422.99941857749], [-5350.360723511471, 5422.99941857749], [-5413.360723508731, 5419.949418577375]]}, {"length": 11.1768509323, "source": 2069393865, "destination": 2069376890, "path": [[-5264.5107235065325, 5419.949418577375], [-5236.360723507971, 5430.099418578749], [-5209.5107235103915, 5447.349418577829]]}, {"length": 9.08706166187, "source": 2069393865, "destination": 2069393871, "path": [[-5264.5107235065325, 5419.949418577375], [-5216.210723510529, 5401.6994185772655]]}, {"length": 47.6481302439, "source": 2294600143, "destination": 2294600112, "path": [[-4260.660723510056, 6227.899418576044], [-4262.510723506807, 6442.14941857868]]}, {"length": 47.6808423005, "source": 2294600143, "destination": 1806083049, "path": [[-4260.660723510056, 6227.899418576044], [-4259.360723509076, 6013.49941857876]]}, {"length": 95.3956306029, "source": 2294600143, "destination": 2294600150, "path": [[-4260.660723510056, 6227.899418576044], [-4352.560723511089, 6227.44941857789], [-4385.210723505395, 6227.699418577259], [-4437.710723507848, 6227.999418577212], [-4510.5607235100815, 6226.449418576863], [-4540.660723506562, 6226.249418578078], [-4579.710723511709, 6227.599418576091], [-4603.61072350679, 6227.899418576044], [-4627.360723510776, 6227.549418579059], [-4641.410723507988, 6227.499418578474], [-4654.410723510693, 6228.049418577797], [-4669.71072350475, 6228.49941857595], [-4683.460723505561, 6229.099418579409], [-4697.460723505742, 6229.649418578731], [-4711.210723506554, 6229.899418578099], [-4827.060723506804, 6226.599418578616]]}, {"length": 13.2161578678, "source": 2294600143, "destination": 2068973856, "path": [[-4260.660723510056, 6227.899418576044], [-4182.160723509298, 6228.699418578288]]}, {"length": 47.4581265911, "source": 2294600150, "destination": 2294600113, "path": [[-4827.060723506804, 6226.599418578616], [-4827.060723506804, 6439.9994185784235]]}, {"length": 16.1964410192, "source": 2294600150, "destination": 2068973828, "path": [[-4827.060723506804, 6226.599418578616], [-4923.260723508349, 6225.499418576419]]}, {"length": 47.9623284555, "source": 2294600150, "destination": 2703728620, "path": [[-4827.060723506804, 6226.599418578616], [-4827.060723506804, 6211.799418576192], [-4825.410723505285, 6146.899418578045], [-4824.160723508441, 6010.949418577383]]}, {"length": 95.3956306029, "source": 2294600150, "destination": 2294600143, "path": [[-4827.060723506804, 6226.599418578616], [-4711.210723506554, 6229.899418578099], [-4697.460723505742, 6229.649418578731], [-4683.460723505561, 6229.099418579409], [-4669.71072350475, 6228.49941857595], [-4654.410723510693, 6228.049418577797], [-4641.410723507988, 6227.499418578474], [-4627.360723510776, 6227.549418579059], [-4603.61072350679, 6227.899418576044], [-4579.710723511709, 6227.599418576091], [-4540.660723506562, 6226.249418578078], [-4510.5607235100815, 6226.449418576863], [-4437.710723507848, 6227.999418577212], [-4385.210723505395, 6227.699418577259], [-4352.560723511089, 6227.44941857789], [-4260.660723510056, 6227.899418576044]]}, {"length": 10.9762064486, "source": 2287972826, "destination": 2287972832, "path": [[-8646.260723509158, 4763.6494185780975], [-8605.560723509598, 4763.5994185775135], [-8582.560723510824, 4757.199418577329]]}, {"length": 102.607258914, "source": 2287972826, "destination": 2287972844, "path": [[-8646.260723509158, 4763.6494185780975], [-8661.210723509783, 4763.699418578682], [-8807.760723506419, 4762.849418579407], [-8977.660723509473, 4762.499418578869], [-9039.960723505657, 4762.849418579407], [-9056.060723509063, 4756.1994185763015], [-9065.460723505224, 4752.349418577495], [-9101.760723510211, 4750.849418577729], [-9252.21072350979, 4750.699418575977]]}, {"length": 11.2425358954, "source": 2287972826, "destination": 2289073349, "path": [[-8646.260723509158, 4763.6494185780975], [-8646.860723509064, 4814.199418579079]]}, {"length": 10.9762064486, "source": 2287972832, "destination": 2287972826, "path": [[-8582.560723510824, 4757.199418577329], [-8605.560723509598, 4763.5994185775135], [-8646.260723509158, 4763.6494185780975]]}, {"length": 12.687295601, "source": 2287972832, "destination": 134954243, "path": [[-8582.560723510824, 4757.199418577329], [-8582.810723510192, 4814.249418576111]]}, {"length": 11.5699307846, "source": 2287972832, "destination": 2287972846, "path": [[-8582.560723510824, 4757.199418577329], [-8556.46072351135, 4749.899418577286], [-8515.560723509452, 4750.349418578991]]}, {"length": 49.4340409802, "source": 2287972832, "destination": 1433125591, "path": [[-8582.560723510824, 4757.199418577329], [-8582.460723509656, 4749.5994185773325], [-8579.810723510662, 4705.299418578335], [-8576.010723508887, 4668.549418578749], [-8571.060723511437, 4633.599418578882], [-8565.310723511742, 4594.949418578409], [-8559.410723506744, 4559.249418576883], [-8553.81072350525, 4536.199418577525]]}, {"length": 13.460090058, "source": 2287972835, "destination": 1433125577, "path": [[-7960.560723510924, 4754.499418577751], [-8040.510723510863, 4755.499418578779]]}, {"length": 78.0532964925, "source": 2287972838, "destination": 2287972856, "path": [[-9383.460723505266, 4751.199418578267], [-9577.760723509244, 4750.349418578991], [-9640.460723510103, 4749.499418576164], [-9731.360723506554, 4749.6994185785015], [-9847.110723505637, 4748.349418576936]]}, {"length": 13.3996914831, "source": 2287972838, "destination": 2287972840, "path": [[-9383.460723505266, 4751.199418578267], [-9303.860723505863, 4750.899418578314]]}, {"length": 13.2992887455, "source": 2287972838, "destination": 2292321986, "path": [[-9383.460723505266, 4751.199418578267], [-9383.71072351174, 4788.099418576053], [-9383.910723506971, 4810.999418577211]]}, {"length": 47.3471040724, "source": 2287972838, "destination": 2293563353, "path": [[-9383.460723505266, 4751.199418578267], [-9382.61072350599, 4639.749418576144], [-9382.61072350599, 4538.299418577197]]}, {"length": 47.2363077518, "source": 2287972840, "destination": 2293563352, "path": [[-9303.860723505863, 4750.899418578314], [-9302.660723506051, 4598.449418576678], [-9302.560723504883, 4538.499418575981]]}, {"length": 8.69475886834, "source": 2287972840, "destination": 2287972844, "path": [[-9303.860723505863, 4750.899418578314], [-9252.21072350979, 4750.699418575977]]}, {"length": 13.3768032719, "source": 2287972840, "destination": 134954236, "path": [[-9303.860723505863, 4750.899418578314], [-9304.31072350757, 4811.049418577795]]}, {"length": 13.3996914831, "source": 2287972840, "destination": 2287972838, "path": [[-9303.860723505863, 4750.899418578314], [-9383.460723505266, 4751.199418578267]]}, {"length": 8.69475886834, "source": 2287972844, "destination": 2287972840, "path": [[-9252.21072350979, 4750.699418575977], [-9303.860723505863, 4750.899418578314]]}, {"length": 102.607258914, "source": 2287972844, "destination": 2287972826, "path": [[-9252.21072350979, 4750.699418575977], [-9101.760723510211, 4750.849418577729], [-9065.460723505224, 4752.349418577495], [-9056.060723509063, 4756.1994185763015], [-9039.960723505657, 4762.849418579407], [-8977.660723509473, 4762.499418578869], [-8807.760723506419, 4762.849418579407], [-8661.210723509783, 4763.699418578682], [-8646.260723509158, 4763.6494185780975]]}, {"length": 33.3475237058, "source": 2287972844, "destination": 2292322142, "path": [[-9252.21072350979, 4750.699418575977], [-9251.360723510516, 4612.299418578658], [-9251.310723506378, 4600.749418578687]]}, {"length": 11.5699307846, "source": 2287972846, "destination": 2287972832, "path": [[-8515.560723509452, 4750.349418578991], [-8556.46072351135, 4749.899418577286], [-8582.560723510824, 4757.199418577329]]}, {"length": 71.9628109178, "source": 2287972846, "destination": 1433125578, "path": [[-8515.560723509452, 4750.349418578991], [-8088.1107235057925, 4755.099418577657]]}, {"length": 14.2561286029, "source": 2287972846, "destination": 2289073348, "path": [[-8515.560723509452, 4750.349418578991], [-8516.510723509895, 4814.449418578448]]}, {"length": 78.0532964925, "source": 2287972856, "destination": 2287972838, "path": [[-9847.110723505637, 4748.349418576936], [-9731.360723506554, 4749.6994185785015], [-9640.460723510103, 4749.499418576164], [-9577.760723509244, 4750.349418578991], [-9383.460723505266, 4751.199418578267]]}, {"length": 30.3371956141, "source": 2586986580, "destination": 2586986584, "path": [[-1009.1607235054312, -1477.0505814212243], [-1058.760723509522, -1459.8005814221438], [-1086.9607235051149, -1434.4005814237448], [-1100.3607235053892, -1412.0505814219086], [-1108.4107235106444, -1390.7505814216847], [-1109.760723508657, -1375.5505814216917]]}, {"length": 29.2559455012, "source": 2586986580, "destination": 2586986593, "path": [[-1009.1607235054312, -1477.0505814212243], [-1014.5107235075557, -1488.2005814236265], [-1172.6607235047481, -1489.2005814211018]]}, {"length": 47.7621479841, "source": 2586986580, "destination": 2586986517, "path": [[-1009.1607235054312, -1477.0505814212243], [-975.6107235077138, -1481.1005814223677], [-915.2607235094479, -1481.1005814223677], [-885.7607235057685, -1480.1005814213397], [-854.9107235111819, -1467.9005814208779], [-818.7107235073654, -1453.7005814219128], [-793.2607235048295, -1439.5005814229478], [-756.9107235099182, -1410.6005814227274]]}, {"length": 71.5191358328, "source": 134943234, "destination": 134930800, "path": [[-3177.6607235087795, -9043.600581421175], [-3115.1607235102574, -9090.100581421013], [-2997.160723509751, -9188.600581421013], [-2941.6607235077663, -9240.100581422439], [-2925.1607235067922, -9257.600581420887], [-2895.9607235066187, -9283.950581423283]]}, {"length": 79.2589113257, "source": 134943234, "destination": 134930762, "path": [[-3177.6607235087795, -9043.600581421175], [-3140.660723509825, -9065.100581423736], [-3096.16072350849, -9079.600581422654], [-3059.660723508273, -9085.100581422977], [-3009.660723506613, -9085.100581422977], [-2961.1607235082715, -9075.100581423356], [-2917.160723505674, -9057.100581422617], [-2880.960723508963, -9022.200581423334], [-2828.9107235082156, -8932.250581423774]]}, {"length": 111.011650873, "source": 2285539844, "destination": 2285539848, "path": [[-6421.11072350815, 5313.049418578686], [-6608.910723507222, 5312.59941857698], [-6821.0107235060495, 5311.799418578289], [-7080.560723508711, 5311.199418578382]]}, {"length": 48.6478093214, "source": 2285539848, "destination": 1433125515, "path": [[-7080.560723508711, 5311.199418578382], [-7080.510723511679, 5092.449418576451]]}, {"length": 111.011650873, "source": 2285539848, "destination": 2285539844, "path": [[-7080.560723508711, 5311.199418578382], [-6821.0107235060495, 5311.799418578289], [-6608.910723507222, 5312.59941857698], [-6421.11072350815, 5313.049418578686]]}, {"length": 11.2617593963, "source": 2285539848, "destination": 2284260413, "path": [[-7080.560723508711, 5311.199418578382], [-7147.460723508913, 5311.04941857663]]}, {"length": 13.3656816317, "source": 2285539848, "destination": 134985543, "path": [[-7080.560723508711, 5311.199418578382], [-7080.560723508711, 5371.29941857728]]}, {"length": 122.095233466, "source": 135025165, "destination": 135021864, "path": [[-456.3107235071584, 390.39941857765825], [-1181.7107235074786, 388.84941857730837]]}, {"length": 120.903804357, "source": 135025165, "destination": 135074761, "path": [[-456.3107235071584, 390.39941857765825], [-452.8607235059212, -153.25058142323655]]}, {"length": 7.33894487722, "source": 135025165, "destination": 135025168, "path": [[-456.3107235071584, 390.39941857765825], [-456.5607235065272, 423.3994185760537]]}, {"length": 121.340244268, "source": 135025168, "destination": 134982657, "path": [[-456.5607235065272, 423.3994185760537], [121.38927649374409, 426.74941857612225], [264.3392764909436, 426.59941857792205]]}, {"length": 62.0031585162, "source": 135025168, "destination": 2086776765, "path": [[-456.5607235065272, 423.3994185760537], [-458.3107235092143, 702.1994185762992]]}, {"length": 18.447789063, "source": 4719495256, "destination": 4719495257, "path": [[-1430.260723509491, -1893.800581420635], [-1430.8107235052603, -1810.850581421164]]}, {"length": 32.3876762521, "source": 4719495256, "destination": 2568624550, "path": [[-1430.260723509491, -1893.800581420635], [-1410.2107235061112, -1893.0005814219442], [-1356.5607235079824, -1899.0505814215908], [-1327.0607235114085, -1913.3005814211401], [-1292.2107235056046, -1925.4505814210177], [-1248.4607235094813, -1932.6005814228608]]}, {"length": 2.58077742139, "source": 4719495256, "destination": 2585900350, "path": [[-1430.260723509491, -1893.800581420635], [-1445.5607235106527, -1894.4505814211254]]}, {"length": 63.3708053712, "source": 135025171, "destination": 2086776720, "path": [[-466.96072350727036, 2063.2994185767475], [-468.81072351112607, 2348.249418577808]]}, {"length": 122.093904748, "source": 135025171, "destination": 135021869, "path": [[-466.96072350727036, 2063.2994185767475], [-1192.310723510559, 2060.6494185777537]]}, {"length": 22.3612747379, "source": 4253708820, "destination": 4253708874, "path": [[5375.389276494502, 5510.799418576795], [5375.289276493333, 5410.249418577706]]}, {"length": 57.151899737, "source": 4253708820, "destination": 2069036339, "path": [[5375.389276494502, 5510.799418576795], [5278.439276494851, 5510.84941857738], [5277.28927649207, 5694.449418577107]]}, {"length": 40.9976000672, "source": 4253708820, "destination": 4253708829, "path": [[5375.389276494502, 5510.799418576795], [5374.889276488659, 5695.149418578183]]}, {"length": 61.6124121254, "source": 135025174, "destination": 2068877122, "path": [[-470.51072350967615, 2622.4494185775884], [-488.5107235068631, 2746.5494185783255], [-488.5607235110001, 2793.2494185769483], [-477.2107235098133, 2898.3994185765027]]}, {"length": 12.3802501145, "source": 135025174, "destination": 135025214, "path": [[-470.51072350967615, 2622.4494185775884], [-396.9607235063677, 2622.7494185775413]]}, {"length": 17.0448101619, "source": 4253708823, "destination": 4253708832, "path": [[5392.339276490076, 5140.849418577176], [5291.089276489913, 5140.09941857907]]}, {"length": 101.746296451, "source": 4253708823, "destination": 4253708832, "path": [[5392.339276490076, 5140.849418577176], [5392.98927649412, 4965.249418578565], [5390.989276492064, 4956.649418577541], [5384.289276491927, 4948.99941857696], [5374.239276491721, 4945.09941857757], [5361.2392764890155, 4943.049418578483], [5315.2392764914675, 4942.399418577992], [5304.489276490187, 4944.849418578201], [5295.089276494025, 4949.499418579251], [5287.739276489845, 4955.599418579482], [5284.3892764897755, 4962.19941857845], [5283.689276488702, 4969.849418579031], [5283.689276488702, 5083.499418578441], [5284.839276491482, 5101.89941857675], [5286.0892764883265, 5113.049418579152], [5291.089276489913, 5140.09941857907]]}, {"length": 49.9847922274, "source": 4253708823, "destination": 4253708835, "path": [[5392.339276490076, 5140.849418577176], [5391.839276491339, 5306.89941857787], [5390.239276493958, 5314.9994185766045], [5385.439276494708, 5322.949418577138], [5378.939276489802, 5327.449418576435], [5369.489276489503, 5331.049418579425], [5357.839276491915, 5333.299418577298], [5334.039276490898, 5333.749418579004]]}, {"length": 19.0401760356, "source": 4253708823, "destination": 2069036516, "path": [[5392.339276490076, 5140.849418577176], [5505.439276490165, 5141.699418576451]]}, {"length": 6.95300778927, "source": 4253708826, "destination": 4253708874, "path": [[5333.989276493867, 5410.099418575954], [5375.289276493333, 5410.249418577706]]}, {"length": 16.9796472382, "source": 4253708826, "destination": 4253708835, "path": [[5333.989276493867, 5410.099418575954], [5334.039276490898, 5333.749418579004]]}, {"length": 65.42552979, "source": 4253708826, "destination": 134985691, "path": [[5333.989276493867, 5410.099418575954], [4945.33927648888, 5408.89941857614]]}, {"length": 99.3425144638, "source": 4719907357, "destination": 4719897593, "path": [[-627.9107235087622, -3304.4005814240054], [-627.2107235076874, -3395.950581420948], [-607.1607235114129, -3414.2505814216406], [-605.7107235051262, -3438.750581423733], [-600.4607235112758, -3449.6505814232137], [-600.610723509476, -3502.650581420852], [-600.16072350777, -3592.700581421582], [-600.9107235058764, -3744.900581423849]]}, {"length": 89.6785136478, "source": 4719907357, "destination": 2568624515, "path": [[-627.9107235087622, -3304.4005814240054], [-1160.7607235077921, -3307.500581421152]]}, {"length": 32.3388599842, "source": 4719907357, "destination": 2568624519, "path": [[-627.9107235087622, -3304.4005814240054], [-435.7607235050409, -3303.2505814212245]]}, {"length": 47.2595340545, "source": 4253708832, "destination": 4253708835, "path": [[5291.089276489913, 5140.09941857907], [5291.089276489913, 5304.299418579461], [5293.089276491969, 5312.44941857878], [5297.78927649005, 5320.049418578776], [5305.189276491263, 5326.149418579007], [5313.389276494718, 5329.599418576691], [5321.139276489362, 5332.0494185769], [5334.039276490898, 5333.749418579004]]}, {"length": 58.2560199939, "source": 4253708832, "destination": 2069036783, "path": [[5291.089276489913, 5140.09941857907], [4945.03927649248, 5137.5494185776915]]}, {"length": 17.0448101619, "source": 4253708832, "destination": 4253708823, "path": [[5291.089276489913, 5140.09941857907], [5392.339276490076, 5140.849418577176]]}, {"length": 101.746296451, "source": 4253708832, "destination": 4253708823, "path": [[5291.089276489913, 5140.09941857907], [5286.0892764883265, 5113.049418579152], [5284.839276491482, 5101.89941857675], [5283.689276488702, 5083.499418578441], [5283.689276488702, 4969.849418579031], [5284.3892764897755, 4962.19941857845], [5287.739276489845, 4955.599418579482], [5295.089276494025, 4949.499418579251], [5304.489276490187, 4944.849418578201], [5315.2392764914675, 4942.399418577992], [5361.2392764890155, 4943.049418578483], [5374.239276491721, 4945.09941857757], [5384.289276491927, 4948.99941857696], [5390.989276492064, 4956.649418577541], [5392.98927649412, 4965.249418578565], [5392.339276490076, 5140.849418577176]]}, {"length": 47.2595340545, "source": 4253708835, "destination": 4253708832, "path": [[5334.039276490898, 5333.749418579004], [5321.139276489362, 5332.0494185769], [5313.389276494718, 5329.599418576691], [5305.189276491263, 5326.149418579007], [5297.78927649005, 5320.049418578776], [5293.089276491969, 5312.44941857878], [5291.089276489913, 5304.299418579461], [5291.089276489913, 5140.09941857907]]}, {"length": 16.9796472382, "source": 4253708835, "destination": 4253708826, "path": [[5334.039276490898, 5333.749418579004], [5333.989276493867, 5410.099418575954]]}, {"length": 49.9847922274, "source": 4253708835, "destination": 4253708823, "path": [[5334.039276490898, 5333.749418579004], [5357.839276491915, 5333.299418577298], [5369.489276489503, 5331.049418579425], [5378.939276489802, 5327.449418576435], [5385.439276494708, 5322.949418577138], [5390.239276493958, 5314.9994185766045], [5391.839276491339, 5306.89941857787], [5392.339276490076, 5140.849418577176]]}, {"length": 19.7938132528, "source": 2271725601, "destination": 2271725585, "path": [[7100.889276493661, 2929.3494185793634], [7031.989276491402, 2969.8494185765867], [7003.1392764917655, 2962.699418578296]]}, {"length": 66.1602534645, "source": 2271725601, "destination": 2271725635, "path": [[7100.889276493661, 2929.3494185793634], [7166.539276489913, 2890.749418579475], [7168.439276490801, 2868.6994185775916], [7005.639276492559, 2695.599418576222]]}, {"length": 64.1284451758, "source": 2271725601, "destination": 2271725636, "path": [[7100.889276493661, 2929.3494185793634], [6879.639276490934, 2694.5994185787467]]}, {"length": 211.526667123, "source": 2214680668, "destination": 2214680848, "path": [[-12358.460723511655, -2165.8005814231274], [-12360.460723506605, -1214.6505814207842]]}, {"length": 204.749949441, "source": 2214680668, "destination": 135020785, "path": [[-12358.460723511655, -2165.8005814231274], [-11929.960723506383, -2168.9505814208587], [-11875.36072350781, -2170.3005814224243], [-11832.710723510332, -2173.450581423708], [-11797.860723511632, -2181.500581421858], [-11165.060723506314, -2306.9005814235766]]}, {"length": 17.1759685641, "source": 2214680668, "destination": 2214680667, "path": [[-12358.460723511655, -2165.8005814231274], [-12460.510723506957, -2165.0505814214685]]}, {"length": 106.153682825, "source": 2214680668, "destination": 2214680681, "path": [[-12358.460723511655, -2165.8005814231274], [-12360.86072351128, -2566.350581421517], [-12462.310723506675, -2565.9005814233637]]}, {"length": 21.180857593, "source": 1930367531, "destination": 1930367569, "path": [[6089.889276488237, -8200.650581422053], [6087.239276489243, -8220.900581420665], [6088.0892764885175, -8228.950581422367], [6093.089276490105, -8239.300581422525], [6101.489276488792, -8250.050581423806], [6119.639276491284, -8268.40058142153], [6134.539276494877, -8285.400581421243]]}, {"length": 30.8718080598, "source": 1930367531, "destination": 1930367562, "path": [[6089.889276488237, -8200.650581422053], [6077.089276494973, -8215.650581423262], [6063.689276494699, -8228.300581421878], [6049.189276488676, -8240.350581420586], [6037.739276493426, -8247.950581420582], [6022.939276491002, -8255.950581421701], [6000.889276492671, -8264.000581423403], [5975.489276494272, -8271.800581422183], [5945.739276491224, -8279.800581423302]]}, {"length": 7.87348622477, "source": 1930367531, "destination": 1933541124, "path": [[6089.889276488237, -8200.650581422053], [6096.339276489005, -8185.850581423182], [6104.789276491829, -8167.100581420783]]}, {"length": 35.5497384568, "source": 4253708844, "destination": 134985689, "path": [[4605.639276491047, 5567.749418577961], [4606.789276493828, 5407.899418578665]]}, {"length": 49.5933011657, "source": 4253708844, "destination": 4253708850, "path": [[4605.639276491047, 5567.749418577961], [4647.339276495188, 5568.249418576698], [4666.139276494619, 5567.249418579223], [4681.989276491549, 5564.299418576724], [4695.6392764911925, 5559.649418579227], [4706.389276492473, 5552.499418577383], [4723.789276489753, 5539.849418578769], [4737.189276490028, 5533.249418576247], [4748.5892764882465, 5530.199418576131], [4760.689276494645, 5529.149418578072], [4884.739276491246, 5530.199418576131]]}, {"length": 25.4862296646, "source": 4253708844, "destination": 2068009772, "path": [[4605.639276491047, 5567.749418577961], [4604.839276488803, 5682.3494185778145]]}, {"length": 203.609193289, "source": 2080625197, "destination": 134955049, "path": [[-5297.66072350668, -4658.800581420764], [-5293.160723510937, -4632.900581423627], [-5289.810723510868, -4616.150581423284], [-5267.0107235073265, -4559.100581420949], [-5079.510723511759, -4230.850581421919], [-5046.310723507475, -4168.1505814210595], [-4985.960723509208, -4072.750581421758], [-4935.410723511779, -4015.350581422439], [-4877.410723509001, -3926.300581422737], [-4834.110723507479, -3863.950581422415], [-4832.510723510097, -3858.0505814209687], [-4833.760723506941, -3853.800581421041], [-4837.2107235081785, -3849.450581423497], [-4871.060723509401, -3838.6005814210475]]}, {"length": 110.779683413, "source": 2080625197, "destination": 134957796, "path": [[-5297.66072350668, -4658.800581420764], [-4639.460723510069, -4651.300581421936]]}, {"length": 213.006368791, "source": 2080625197, "destination": 1959915229, "path": [[-5297.66072350668, -4658.800581420764], [-5301.460723508455, -4685.0005814214055], [-5309.610723507774, -4705.700581421724], [-5321.560723508866, -4727.3505814224845], [-5336.310723507154, -4748.150581423971], [-5349.760723511565, -4766.150581421158], [-5372.560723508002, -4792.800581423507], [-5387.06072350692, -4816.850581423892], [-5457.360723511329, -5041.700581422503], [-5493.660723509209, -5196.650581421381], [-5512.110723508102, -5302.950581423715], [-5512.7107235080075, -5320.000581424011], [-5502.060723507895, -5375.500581422443], [-5500.360723509346, -5390.500581423652], [-5511.360723509995, -5499.650581423765], [-5511.360723509995, -5513.100581421071], [-5508.310723506327, -5523.250581422445], [-5500.260723508177, -5537.200581422041], [-5491.660723507152, -5549.800581423625], [-5488.210723505916, -5562.3005814240405], [-5485.960723511596, -5586.850581423164]]}, {"length": 12.0900188884, "source": 2080625197, "destination": 134955062, "path": [[-5297.66072350668, -4658.800581420764], [-5369.460723507302, -4660.650581421067]]}, {"length": 18.9615872004, "source": 2586986589, "destination": 2586986584, "path": [[-1045.3607235092477, -1309.3005814219794], [-1072.210723506828, -1324.8005814219255], [-1085.6107235071022, -1335.950581420775], [-1099.0107235073765, -1348.150581421237], [-1105.7107235075136, -1359.3005814236392], [-1109.760723508657, -1375.5505814216917]]}, {"length": 61.8858151953, "source": 2586986589, "destination": 2586986565, "path": [[-1045.3607235092477, -1309.3005814219794], [-677.6607235110532, -1309.0005814220262]]}, {"length": 21.6689993737, "source": 2586986589, "destination": 2585900646, "path": [[-1045.3607235092477, -1309.3005814219794], [-1174.1107235110348, -1309.400581423148]]}, {"length": 49.5933011657, "source": 4253708850, "destination": 4253708844, "path": [[4884.739276491246, 5530.199418576131], [4760.689276494645, 5529.149418578072], [4748.5892764882465, 5530.199418576131], [4737.189276490028, 5533.249418576247], [4723.789276489753, 5539.849418578769], [4706.389276492473, 5552.499418577383], [4695.6392764911925, 5559.649418579227], [4681.989276491549, 5564.299418576724], [4666.139276494619, 5567.249418579223], [4647.339276495188, 5568.249418576698], [4605.639276491047, 5567.749418577961]]}, {"length": 144.395450231, "source": 2080625207, "destination": 134957801, "path": [[-5486.360723509165, -5614.600581420604], [-4628.31072351122, -5613.950581423665]]}, {"length": 18.4248127291, "source": 2080625207, "destination": 134955099, "path": [[-5486.360723509165, -5614.600581420604], [-5595.810723505679, -5616.800581421444]]}, {"length": 183.128480103, "source": 2080625207, "destination": 1959915324, "path": [[-5486.360723509165, -5614.600581420604], [-5486.960723509072, -5654.850581422011], [-6521.960723510745, -5660.150581423551]]}, {"length": 6.17226345727, "source": 2080625207, "destination": 1959915229, "path": [[-5486.360723509165, -5614.600581420604], [-5485.960723511596, -5586.850581423164]]}, {"length": 10.7402984799, "source": 2586986591, "destination": 2586986584, "path": [[-1173.5607235081602, -1374.5005814236322], [-1109.760723508657, -1375.5505814216917]]}, {"length": 25.5086753874, "source": 2586986591, "destination": 2586986593, "path": [[-1173.5607235081602, -1374.5005814236322], [-1172.6607235047481, -1489.2005814211018]]}, {"length": 14.4781980929, "source": 2586986591, "destination": 2585900646, "path": [[-1173.5607235081602, -1374.5005814236322], [-1174.1107235110348, -1309.400581423148]]}, {"length": 40.5056300742, "source": 1930367549, "destination": 1930367611, "path": [[6769.739276492714, -8251.300581420652], [6696.339276494711, -8302.400581420954], [6615.989276490098, -8356.850581421328], [6591.7892764915105, -8373.950581422207]]}, {"length": 108.958003785, "source": 135025214, "destination": 134982662, "path": [[-396.9607235063677, 2622.7494185775413], [250.33927649076304, 2625.099418576582]]}, {"length": 62.9648831021, "source": 135025217, "destination": 2069036672, "path": [[-482.56072350483237, 3741.699418576161], [-108.51072350703816, 3743.0994185783106]]}, {"length": 56.290387174, "source": 135025217, "destination": 2327765644, "path": [[-482.56072350483237, 3741.699418576161], [-816.9607235117837, 3740.4994185763485]]}, {"length": 60.44629243, "source": 135025217, "destination": 2069036654, "path": [[-482.56072350483237, 3741.699418576161], [-480.8607235062823, 3469.8994185760057]]}, {"length": 62.1031577604, "source": 135025217, "destination": 2069036774, "path": [[-482.56072350483237, 3741.699418576161], [-484.3607235116565, 4020.9494185781123]]}, {"length": 336.341314495, "source": 135074370, "destination": 2338863401, "path": [[8821.3392764942, 4108.399418576881], [8817.839276488827, 4851.899418579109], [8816.839276491351, 5037.399418576171], [8824.5892764931, 5061.149418576605], [8832.839276493587, 5073.899418576389], [8846.939276494937, 5093.899418579184], [8864.789276493922, 5115.74941857873], [8908.339276494815, 5160.8994185770025], [8990.939276493747, 5235.099418577249], [9149.839276489047, 5373.399418576952], [9161.989276492477, 5381.649418577439], [9195.739276492532, 5400.149418576916], [9216.33927649168, 5409.399418578431], [9232.239276492748, 5414.199418577681], [9268.939276488198, 5421.149418577187], [9327.339276488545, 5426.399418578143], [9343.18927649258, 5426.499418579311]]}, {"length": 21.8833893314, "source": 135074370, "destination": 135074390, "path": [[8821.3392764942, 4108.399418576881], [8951.339276492832, 4108.899418579171]]}, {"length": 100.495511336, "source": 135074370, "destination": 135100478, "path": [[8821.3392764942, 4108.399418576881], [8224.33927649513, 4106.399418578377]]}, {"length": 122.489224878, "source": 135025220, "destination": 134982669, "path": [[-486.06072351020657, 4293.049418578221], [241.58927649153839, 4295.699418577215]]}, {"length": 61.0913746882, "source": 135025220, "destination": 2069036405, "path": [[-486.06072351020657, 4293.049418578221], [-487.81072350578825, 4567.749418576739]]}, {"length": 60.5129793308, "source": 135025220, "destination": 2069036774, "path": [[-486.06072351020657, 4293.049418578221], [-484.3607235116565, 4020.9494185781123]]}, {"length": 51.7968274216, "source": 135025220, "destination": 2327765663, "path": [[-486.06072351020657, 4293.049418578221], [-793.7607235106725, 4291.8994185789925]]}, {"length": 64.2714277455, "source": 135025223, "destination": 2068877152, "path": [[-496.6607235061815, 5953.849418578016], [-494.8107235094312, 5664.849418579365]]}, {"length": 64.1041268088, "source": 135025223, "destination": 2069036705, "path": [[-496.6607235061815, 5953.849418578016], [-497.5607235095936, 6242.099418578562]]}, {"length": 122.504933164, "source": 135025223, "destination": 134982675, "path": [[-496.6607235061815, 5953.849418578016], [231.03927649259504, 5957.39941857687]]}, {"length": 121.284538226, "source": 135025223, "destination": 135021881, "path": [[-496.6607235061815, 5953.849418578016], [-1217.1107235090517, 5950.249418578579]]}, {"length": 32.6130294493, "source": 1930367562, "destination": 1930367569, "path": [[5945.739276491224, -8279.800581423302], [5950.8892764910115, -8281.85058142239], [5977.139276488686, -8289.250581423601], [6002.53927649419, -8294.100581423436], [6025.389276494763, -8297.050581422383], [6044.089276493025, -8297.250581421167], [6068.3892764927805, -8294.95058142271], [6093.189276491274, -8291.150581420936], [6119.439276488947, -8287.100581423345], [6134.539276494877, -8285.400581421243]]}, {"length": 30.8718080598, "source": 1930367562, "destination": 1930367531, "path": [[5945.739276491224, -8279.800581423302], [5975.489276494272, -8271.800581422183], [6000.889276492671, -8264.000581423403], [6022.939276491002, -8255.950581421701], [6037.739276493426, -8247.950581420582], [6049.189276488676, -8240.350581420586], [6063.689276494699, -8228.300581421878], [6077.089276494973, -8215.650581423262], [6089.889276488237, -8200.650581422053]]}, {"length": 180.143577048, "source": 1930367562, "destination": 1932196479, "path": [[5945.739276491224, -8279.800581423302], [5927.739276494038, -8272.750581422628], [5910.28927649262, -8260.950581423287], [5896.339276489471, -8247.650581420628], [5884.939276491252, -8232.650581422973], [5875.68927649329, -8216.200581422583], [5864.689276492641, -8196.950581421446], [5850.439276493091, -8179.250581420661], [5835.689276494804, -8164.050581420668], [5819.18927649383, -8151.350581421468], [5788.239276490969, -8129.400581420754], [5768.689276493433, -8115.250581422373], [5749.989276495171, -8103.450581423032], [5730.18927649116, -8093.3005814216585], [5688.889276491693, -8073.900581422322], [5652.639276490845, -8058.050581421839], [5630.589276492515, -8048.750581423292], [5609.639276492828, -8042.65058142306], [5587.889276490898, -8039.050581423624], [5563.639276488175, -8036.950581423952], [5540.739276490569, -8036.100581421124], [5499.989276493978, -8035.450581420633], [5470.989276489036, -8033.350581420962], [5445.339276491268, -8029.55058142274], [5423.839276488707, -8023.20058142314], [5404.28927649117, -8014.550581421531], [5379.189276489171, -7998.100581421141], [5362.739276492334, -7980.800581421477], [5346.5392764948665, -7961.550581423893], [5331.889276490642, -7939.400581420841], [5319.039276493242, -7919.550581423351], [5305.089276490094, -7902.450581422471], [5285.589276489589, -7885.550581423928], [5261.189276488665, -7869.100581423538], [5245.539276494072, -7858.550581421042], [5231.8892764944285, -7846.500581422333], [5221.839276494222, -7834.4505814236245], [5215.139276494085, -7820.550581421059], [5213.43927648843, -7810.850581421391], [5215.689276489855, -7800.250581421864], [5220.139276488567, -7790.550581422195], [5228.789276493728, -7781.250581423648], [5234.63927649459, -7776.400581423814]]}, {"length": 53.8856222034, "source": 135074379, "destination": 2086776724, "path": [[8970.789276489199, 489.99941857630347], [8969.439276491186, 732.2994185763321]]}, {"length": 112.80139192, "source": 135074379, "destination": 135076343, "path": [[8970.789276489199, 489.99941857630347], [9640.93927649401, 495.09941857905915]]}, {"length": 32.6130294493, "source": 1930367569, "destination": 1930367562, "path": [[6134.539276494877, -8285.400581421243], [6119.439276488947, -8287.100581423345], [6093.189276491274, -8291.150581420936], [6068.3892764927805, -8294.95058142271], [6044.089276493025, -8297.250581421167], [6025.389276494763, -8297.050581422383], [6002.53927649419, -8294.100581423436], [5977.139276488686, -8289.250581423601], [5950.8892764910115, -8281.85058142239], [5945.739276491224, -8279.800581423302]]}, {"length": 21.180857593, "source": 1930367569, "destination": 1930367531, "path": [[6134.539276494877, -8285.400581421243], [6119.639276491284, -8268.40058142153], [6101.489276488792, -8250.050581423806], [6093.089276490105, -8239.300581422525], [6088.0892764885175, -8228.950581422367], [6087.239276489243, -8220.900581420665], [6089.889276488237, -8200.650581422053]]}, {"length": 80.5704203431, "source": 1930367569, "destination": 1930367611, "path": [[6134.539276494877, -8285.400581421243], [6141.489276494383, -8284.600581422552], [6165.489276490633, -8283.100581422786], [6197.689276490337, -8282.900581424003], [6227.289276495185, -8283.750581423277], [6258.23927649094, -8285.650581420612], [6287.839276488683, -8288.800581421896], [6321.589276488738, -8295.150581421496], [6372.089276489134, -8306.35058142093], [6432.639276489737, -8322.80058142132], [6491.2392764924225, -8338.400581422433], [6527.789276489671, -8350.050581423573], [6563.239276488275, -8362.500581423405], [6591.7892764915105, -8373.950581422207]]}, {"length": 7.16054862446, "source": 135074387, "destination": 2086776800, "path": [[8953.989276491826, 2653.0494185763587], [8954.039276488857, 2685.2494185760634]]}, {"length": 61.0157931961, "source": 135074387, "destination": 2086776697, "path": [[8953.989276491826, 2653.0494185763587], [8957.639276488295, 2378.6994185783783]]}, {"length": 113.429130757, "source": 135074387, "destination": 135076350, "path": [[8953.989276491826, 2653.0494185763587], [9627.839276490136, 2656.899418578718]]}, {"length": 7.03675870212, "source": 2585936654, "destination": 2585936640, "path": [[-1652.010723510955, -1587.5005814223186], [-1610.210723505645, -1586.8005814212438]]}, {"length": 12.6096270033, "source": 2585936654, "destination": 2585936653, "path": [[-1652.010723510955, -1587.5005814223186], [-1651.9607235068179, -1644.200581420563]]}, {"length": 7.21384357924, "source": 2585936654, "destination": 2585936655, "path": [[-1652.010723510955, -1587.5005814223186], [-1694.8607235107715, -1588.2005814233935]]}, {"length": 85.1763955631, "source": 135074390, "destination": 135036824, "path": [[8951.339276492832, 4108.899418579171], [8953.839276493625, 3725.8994185762617]]}, {"length": 21.8833893314, "source": 135074390, "destination": 135074370, "path": [[8951.339276492832, 4108.899418579171], [8821.3392764942, 4108.399418576881]]}, {"length": 86.9024372437, "source": 135074390, "destination": 2074050051, "path": [[8951.339276492832, 4108.899418579171], [9379.43927649343, 4110.499418576552], [9467.589276489718, 4110.84941857709]]}, {"length": 52.2210356965, "source": 1930367576, "destination": 1930367695, "path": [[7257.889276495178, -8289.950581421124], [7299.189276494644, -8354.55058142287], [7347.839276491186, -8430.75058142162], [7390.589276489834, -8502.200581421705]]}, {"length": 95.7594084554, "source": 2358476445, "destination": 2358476432, "path": [[-1135.160723507056, 4897.1994185791345], [-566.3107235065468, 4899.299418578807]]}, {"length": 48.0701508181, "source": 2358476445, "destination": 2358476297, "path": [[-1135.160723507056, 4897.1994185791345], [-1136.5107235050687, 5113.349418579105]]}, {"length": 25.8308128224, "source": 2358476445, "destination": 2355655012, "path": [[-1135.160723507056, 4897.1994185791345], [-1134.4107235089496, 4781.049418578931]]}, {"length": 25.149827653, "source": 2358476445, "destination": 2358476437, "path": [[-1135.160723507056, 4897.1994185791345], [-1284.5607235050238, 4896.64941857626]]}, {"length": 12.3984365833, "source": 2352259856, "destination": 2316883392, "path": [[-2702.6107235101904, 6448.199418578326], [-2776.260723507562, 6448.249418578911]]}, {"length": 47.8930201499, "source": 2352259856, "destination": 2068973820, "path": [[-2702.6107235101904, 6448.199418578326], [-2700.4607235099343, 6232.849418577047]]}, {"length": 13.4520525831, "source": 2352259856, "destination": 2351111997, "path": [[-2702.6107235101904, 6448.199418578326], [-2622.710723507282, 6449.0494185776015]]}, {"length": 512.057579399, "source": 1393209956, "destination": 134946705, "path": [[-5036.310723511406, -10058.400581421267], [-5013.160723507326, -10223.050581423366], [-4998.160723509671, -10301.50058142354], [-4974.360723508653, -10411.350581421175], [-4936.660723508623, -10525.250581423506], [-4886.810723505164, -10632.950581420886], [-4825.310723511222, -10732.750581421868], [-4756.010723511395, -10825.150581421638], [-4680.710723505399, -10909.900581420829], [-4597.960723508266, -10985.000581420934], [-4500.910723507445, -11053.150581421534], [-4384.4107235102565, -11126.30058142372], [-4254.210723509288, -11193.750581423245], [-4104.81072351132, -11252.700581422914], [-3944.2107235103663, -11296.70058142196], [-3790.460723507749, -11326.200581422087], [-3619.41072350902, -11350.400581420672], [-3462.7607235080404, -11377.70058142351], [-3187.1607235061106, -11430.100581421244], [-3033.7107235069993, -11458.400581421558]]}, {"length": 672.706427156, "source": 1393209956, "destination": 134951970, "path": [[-5036.310723511406, -10058.400581421267], [-5019.860723507463, -10482.950581423012], [-5015.860723510457, -10860.350581420875], [-5012.2107235068825, -11345.450581423222], [-5013.410723506695, -11628.200581423442], [-4994.460723509064, -11701.950581421983], [-4939.010723511217, -11777.45058142321], [-4882.810723508157, -11819.950581422489], [-4813.81072350473, -11856.050581421585], [-4730.210723508321, -11878.700581423374], [-4629.260723511663, -11888.400581423042], [-4542.860723510956, -11876.100581421411], [-4439.360723509367, -11845.75058142201], [-4379.310723507501, -11805.050581422449], [-4331.860723510772, -11763.450581423029], [-4300.110723505668, -11714.450581422398], [-4283.410723509462, -11669.90058142403], [-4270.110723510356, -11614.800581423167], [-4269.610723511619, -11568.100581420993], [-4288.210723508711, -11514.750581422817], [-4315.810723511504, -11469.100581422254], [-4344.360723507634, -11431.300581421056], [-4403.41072350492, -11388.500581421824], [-4468.2107235090025, -11357.450581421346], [-4559.210723506623, -11330.80058142255], [-4708.660723508729, -11292.100581421493], [-4827.560723505541, -11266.75058142368]]}, {"length": 6.28727772982, "source": 2568599654, "destination": 2568599704, "path": [[612.2392764922324, -2272.150581422494], [649.5892764917244, -2271.550581422588]]}, {"length": 24.8978917369, "source": 2568599654, "destination": 2568599553, "path": [[612.2392764922324, -2272.150581422494], [464.33927649047746, -2274.650581423288]]}, {"length": 33.3358406867, "source": 2568599654, "destination": 2568679346, "path": [[612.2392764922324, -2272.150581422494], [589.9392764945333, -2278.400581420925], [574.4892764951715, -2286.5005814232118], [559.7892764939161, -2297.5505814208927], [549.6892764895733, -2306.3005814236703], [542.9892764894362, -2314.9505814217264], [531.4892764900492, -2330.250581422888], [522.0392764897497, -2349.6005814216405], [513.9392764945683, -2376.1505814228203], [508.6392764894754, -2390.4505814229537]]}, {"length": 26.0445984106, "source": 2568599654, "destination": 2568599683, "path": [[612.2392764922324, -2272.150581422494], [628.1392764933003, -2279.9005814206907], [645.589276494718, -2290.5505814208027], [662.2892764909238, -2303.700581421708], [678.4892764883921, -2319.00058142287], [693.2892764908161, -2339.400581423234], [701.9392764888721, -2351.950581420681], [706.789276492259, -2361.8505814226864]]}, {"length": 137.301580972, "source": 1393209958, "destination": 134951970, "path": [[-4028.260723508481, -11391.150581420818], [-4827.560723505541, -11266.75058142368]]}, {"length": 184.672827361, "source": 1933540796, "destination": 1933539624, "path": [[4957.489276492311, -7711.30058142333], [4960.339276493642, -7442.700581421491], [4958.739276489155, -7385.400581423341], [4957.139276491773, -7324.750581421568], [4953.989276494041, -7209.45058142064], [4952.689276493061, -7113.450581421432], [4954.289276490443, -7015.5005814207525], [4957.889276489879, -6881.000581422824]]}, {"length": 29.1221304578, "source": 135010407, "destination": 1942240501, "path": [[4870.589276492865, -1424.2505814223705], [4869.939276488822, -1293.3005814232956]]}, {"length": 94.8887598399, "source": 2294600300, "destination": 2069376744, "path": [[-4822.610723508092, 5863.749418576703], [-4258.960723511507, 5867.1994185779395]]}, {"length": 32.7371261412, "source": 2294600300, "destination": 2703728620, "path": [[-4822.610723508092, 5863.749418576703], [-4823.760723510873, 5965.899418576726], [-4824.160723508441, 6010.949418577383]]}, {"length": 19.7684659088, "source": 2294600300, "destination": 2069379693, "path": [[-4822.610723508092, 5863.749418576703], [-4939.96072351166, 5867.049418576187]]}, {"length": 122.107634137, "source": 2068009746, "destination": 2068020404, "path": [[3883.0892764920577, 5683.349418578842], [3157.739276488769, 5680.2994185787265]]}, {"length": 62.7746501544, "source": 2068009746, "destination": 2068009814, "path": [[3883.0892764920577, 5683.349418578842], [4255.989276494176, 5682.249418576646]]}, {"length": 11.9648778853, "source": 2068009746, "destination": 2068009758, "path": [[3883.0892764920577, 5683.349418578842], [3882.6892764944887, 5737.149418578724]]}, {"length": 61.7032108628, "source": 2068009746, "destination": 134985687, "path": [[3883.0892764920577, 5683.349418578842], [3885.3392764934824, 5405.89941857661]]}, {"length": 107.972229733, "source": 1393209972, "destination": 1393210017, "path": [[-6192.510723508349, -10986.700581423036], [-5894.61072350872, -11032.450581421215], [-5563.760723511279, -11083.800581420888]]}, {"length": 56.0294018051, "source": 1393209972, "destination": 1393209989, "path": [[-6192.510723508349, -10986.700581423036], [-6198.710723509748, -10951.700581422585], [-6195.460723510849, -10921.500581421384], [-6179.960723507349, -10889.600581421633], [-6160.810723507382, -10864.100581422064], [-6041.1107235083255, -10780.850581422641]]}, {"length": 106.844698257, "source": 135074421, "destination": 135086410, "path": [[8910.339276489765, 5582.399418578632], [9111.839276492618, 5761.399418577895], [9183.83927648847, 5813.899418576795], [9271.839276493665, 5866.399418579249], [9366.339276489554, 5911.899418578059]]}, {"length": 63.7377430065, "source": 2069037011, "destination": 134985696, "path": [[6092.539276494335, 5699.999418578017], [6094.3392764940545, 5413.399418578991]]}, {"length": 60.1349833457, "source": 2069037011, "destination": 135033683, "path": [[6092.539276494335, 5699.999418578017], [6090.839276488679, 5970.399418576022]]}, {"length": 99.4678259493, "source": 2069037011, "destination": 2069036676, "path": [[6092.539276494335, 5699.999418578017], [5501.689276492527, 5696.099418578626]]}, {"length": 130.0463306, "source": 2069037011, "destination": 2069036439, "path": [[6092.539276494335, 5699.999418578017], [6865.039276490847, 5704.099418576192]]}, {"length": 80.5704203431, "source": 1930367611, "destination": 1930367569, "path": [[6591.7892764915105, -8373.950581422207], [6563.239276488275, -8362.500581423405], [6527.789276489671, -8350.050581423573], [6491.2392764924225, -8338.400581422433], [6432.639276489737, -8322.80058142132], [6372.089276489134, -8306.35058142093], [6321.589276488738, -8295.150581421496], [6287.839276488683, -8288.800581421896], [6258.23927649094, -8285.650581420612], [6227.289276495185, -8283.750581423277], [6197.689276490337, -8282.900581424003], [6165.489276490633, -8283.100581422786], [6141.489276494383, -8284.600581422552], [6134.539276494877, -8285.400581421243]]}, {"length": 40.5056300742, "source": 1930367611, "destination": 1930367549, "path": [[6591.7892764915105, -8373.950581422207], [6615.989276490098, -8356.850581421328], [6696.339276494711, -8302.400581420954], [6769.739276492714, -8251.300581420652]]}, {"length": 113.299273697, "source": 1930367611, "destination": 1930367693, "path": [[6591.7892764915105, -8373.950581422207], [6598.939276493355, -8376.85058142057], [6632.139276490534, -8392.90058142339], [6659.489276493958, -8407.650581421678], [6693.789276489781, -8427.50058142272], [6726.189276491823, -8448.400581421822], [6756.289276488304, -8469.950581421415], [6784.489276491002, -8490.20058142358], [6806.539276489331, -8503.3005814239], [6829.139276490537, -8513.850581422845], [6852.839276490386, -8522.10058142333], [6877.38927648951, -8526.750581420827], [6904.439276489427, -8530.100581420897], [6933.4892764914, -8530.950581423724], [6990.839276490135, -8530.300581423233], [7049.539276493988, -8528.850581424053], [7075.939276489862, -8527.600581423656], [7099.939276493216, -8524.200581423003], [7124.489276492341, -8519.350581423168], [7147.639276489315, -8513.000581423568], [7173.839276489957, -8505.400581423572], [7191.289276491375, -8500.400581421985]]}, {"length": 19.6789037238, "source": 1393209982, "destination": 2089552344, "path": [[-5234.260723504747, -8573.350581421835], [-5117.310723505852, -8573.500581423588]]}, {"length": 1650.85814619, "source": 1393209982, "destination": 1935295439, "path": [[-5234.260723504747, -8573.350581421835], [-5237.660723508952, -7399.80058142109], [-5238.010723509489, -7297.100581421745], [-5239.610723506871, -6750.20058142195], [-5244.160723506752, -6105.100581422107], [-5245.360723506565, -5808.550581424043], [-5244.360723509089, -5717.750581421655], [-5234.5607235082525, -5518.350581422027], [-5221.110723510947, -5366.750581423219], [-5192.26072351131, -5216.650581420623], [-5166.460723508237, -5107.600581421679], [-5131.110723510801, -4984.90058142309], [-5104.560723509621, -4902.3505814211885], [-5070.6107235072295, -4818.90058142298], [-5049.760723508712, -4770.900581423376], [-4930.410723510193, -4522.850581423654], [-4879.1107235075515, -4426.500581423908], [-4819.860723507929, -4328.800581422598], [-4521.560723510731, -3880.8505814209584], [-4376.2107235068015, -3672.3505814215687], [-4016.310723507388, -3138.9505814232166], [-3746.9607235109947, -2733.9505814225618], [-3653.060723507906, -2588.4005814234], [-3612.7607235059145, -2518.750581423035], [-3576.360723506866, -2449.650581421992], [-3536.310723511349, -2360.1005814235523], [-3508.5607235103566, -2280.80058142055], [-3480.860723506396, -2201.0505814229473], [-3460.2107235102153, -2130.7505814220917], [-3442.0607235077227, -2055.350581422033], [-3428.060723507542, -1964.6505814208126], [-3419.6107235118234, -1885.3505814213634], [-3414.810723505468, -1768.400581422469], [-3420.66072350633, -1615.5005814226797], [-3403.610723509587, -1436.6005814210325]]}, {"length": 19.6371824296, "source": 135074431, "destination": 2069036820, "path": [[8813.339276493081, 5623.899418576883], [8812.989276492544, 5712.199418578479]]}, {"length": 19.9534260081, "source": 135074431, "destination": 135074421, "path": [[8813.339276493081, 5623.899418576883], [8826.839276494524, 5607.399418579462], [8845.33927649045, 5594.399418576757], [8868.339276489223, 5586.399418579191], [8910.339276489765, 5582.399418578632]]}, {"length": 542.898879312, "source": 1393209989, "destination": 1393209982, "path": [[-6041.1107235083255, -10780.850581422641], [-5961.260723509554, -10738.400581423946], [-5703.710723508948, -10602.80058142382], [-5605.060723510746, -10545.050581423964], [-5534.2607235076, -10487.150581422355], [-5481.560723509915, -10438.150581421723], [-5422.66072351083, -10362.850581422834], [-5378.260723510664, -10290.750581422259], [-5343.26072350666, -10223.00058142278], [-5316.510723510248, -10141.000581423754], [-5302.7607235094365, -10051.450581421761], [-5295.8107235099305, -9958.700581421454], [-5289.710723509699, -9810.800581423251], [-5275.960723508888, -9434.300581421696], [-5272.310723505314, -9191.90058142405], [-5234.260723504747, -8573.350581421835]]}, {"length": 175.827014124, "source": 1393209990, "destination": 134946705, "path": [[-4064.8107235057296, -11330.000581423861], [-3762.9607235061258, -11370.550581421669], [-3307.610723510379, -11424.900581420872], [-3033.7107235069993, -11458.400581421558]]}, {"length": 14.9654482977, "source": 1393209990, "destination": 1393209958, "path": [[-4064.8107235057296, -11330.000581423861], [-4039.8607235090367, -11365.800581423002], [-4028.260723508481, -11391.150581420818]]}, {"length": 62.6688914393, "source": 1393210000, "destination": 1393209972, "path": [[-6556.560723510074, -10927.150581423462], [-6192.510723508349, -10986.700581423036]]}, {"length": 95.399314378, "source": 1393210000, "destination": 1393209989, "path": [[-6556.560723510074, -10927.150581423462], [-6417.110723511143, -10925.750581421311], [-6348.760723511759, -10917.450581423793], [-6295.610723505262, -10904.350581423472], [-6239.46072350634, -10879.100581423274], [-6041.1107235083255, -10780.850581422641]]}, {"length": 178.042847658, "source": 1393210002, "destination": 134933976, "path": [[-6099.8607235092095, -11055.350581422374], [-6270.66072350857, -11027.600581421382], [-7133.910723510439, -10885.40058142229]]}, {"length": 22.0591151494, "source": 1393210002, "destination": 1393209972, "path": [[-6099.8607235092095, -11055.350581422374], [-6154.710723507151, -11024.900581421804], [-6192.510723508349, -10986.700581423036]]}, {"length": 22.7746124438, "source": 1930367638, "destination": 1930367771, "path": [[9136.039276491203, -8446.500581420934], [9134.289276488516, -8548.900581423879]]}, {"length": 165.126969292, "source": 1930367638, "destination": 135022979, "path": [[9136.039276491203, -8446.500581420934], [9130.939276488447, -7704.000581423287]]}, {"length": 5.8475910753, "source": 1930367638, "destination": 1930367639, "path": [[9136.039276491203, -8446.500581420934], [9101.289276493673, -8446.800581420888]]}, {"length": 21.683948119, "source": 1930367639, "destination": 1930503408, "path": [[9101.289276493673, -8446.800581420888], [9101.539276493042, -8475.900581423446], [9101.689276491243, -8544.300581423415]]}, {"length": 5.8475910753, "source": 1930367639, "destination": 1930367638, "path": [[9101.289276493673, -8446.800581420888], [9136.039276491203, -8446.500581420934]]}, {"length": 196.608154304, "source": 1930367639, "destination": 1930367390, "path": [[9101.289276493673, -8446.800581420888], [9065.789276490932, -8447.10058142084], [8999.489276490636, -8451.550581423106], [8956.889276490187, -8453.650581422778], [8923.73927649004, -8453.05058142287], [8896.089276490216, -8449.450581423434], [8874.389276492422, -8440.800581421825], [8856.23927648993, -8428.550581420779], [8846.389276492062, -8416.050581423917], [8839.289276494355, -8398.700581423669], [8836.939276491761, -8362.900581420974], [8837.68927648987, -8161.0505814211365], [8835.73927649195, -7891.750581421775], [8834.139276494569, -7740.200581423551]]}, {"length": 202.070801534, "source": 1930367639, "destination": 1930367390, "path": [[9101.289276493673, -8446.800581420888], [9100.7392764908, -8384.550581421734], [9099.139276493417, -8236.750581421149], [9098.78927649288, -8108.950581423358], [9096.389276493255, -7830.400581422481], [9095.98927648858, -7736.350581421192], [8834.139276494569, -7740.200581423551]]}, {"length": 12.1702632574, "source": 2358476447, "destination": 2358476449, "path": [[-416.91072350857894, 4783.649418577341], [-489.2107235079379, 4783.399418577972]]}, {"length": 295.805205364, "source": 1393210014, "destination": 1393209956, "path": [[-5117.51072350819, -8729.900581421645], [-5082.610723505354, -9224.250581421955], [-5059.1107235078425, -9469.4505814239], [-5043.8607235108175, -9788.150581421462], [-5039.710723508506, -9928.0505814221], [-5036.310723511406, -10058.400581421267]]}, {"length": 258.086697158, "source": 1393210017, "destination": 1393209990, "path": [[-5563.760723511279, -11083.800581420888], [-5495.310723510727, -11094.050581423431], [-4826.460723506898, -11201.800581421396], [-4534.160723508762, -11249.600581422215], [-4064.8107235057296, -11330.000581423861]]}, {"length": 10.6302251751, "source": 2282656418, "destination": 2282822484, "path": [[-9869.96072350621, -139.70058142120934], [-9869.710723506842, -187.50058142202874]]}, {"length": 68.9043220283, "source": 2282033828, "destination": 2282033834, "path": [[-7872.910723506266, 312.19941857685285], [-7885.760723510771, 311.6494185775309], [-8282.26072351157, 309.84941857781223]]}, {"length": 15.3525054221, "source": 2282033828, "destination": 3146557117, "path": [[-7872.910723506266, 312.19941857685285], [-7845.510723505811, 313.2994185790494], [-7816.2107235115745, 316.649418579118], [-7782.0607235068455, 316.4994185773651]]}, {"length": 55.5092718047, "source": 2282033828, "destination": 2282033975, "path": [[-7872.910723506266, 312.19941857685285], [-7872.060723506991, 208.89941857760164], [-7872.060723506991, 143.3494185789641], [-7872.210723505191, 62.59941857678086]]}, {"length": 50.0834568994, "source": 1935184551, "destination": 135016306, "path": [[8238.789276489912, -7715.800581422627], [7941.1892764937875, -7719.150581422696]]}, {"length": 50.0748183453, "source": 1935184551, "destination": 135019340, "path": [[8238.789276489912, -7715.800581422627], [8536.339276489001, -7712.500581423143]]}, {"length": 194.396417707, "source": 1935184551, "destination": 1935184053, "path": [[8238.789276489912, -7715.800581422627], [8236.789276494961, -7627.350581422832], [8236.339276493254, -7516.050581422462], [8234.989276495242, -7350.600581421673], [8234.989276495242, -7273.700581421849], [8234.989276495242, -7241.000581423406], [8234.08927649183, -7210.700581421037], [8232.28927649211, -7153.900581421623], [8229.13927649438, -7024.900581424021], [8232.089276489773, -6841.750581422446]]}, {"length": 17.362026871, "source": 2282033834, "destination": 2282033844, "path": [[-8282.26072351157, 309.84941857781223], [-8385.410723505516, 309.3494185790746]]}, {"length": 68.9043220283, "source": 2282033834, "destination": 2282033828, "path": [[-8282.26072351157, 309.84941857781223], [-7885.760723510771, 311.6494185775309], [-7872.910723506266, 312.19941857685285]]}, {"length": 54.720633509, "source": 2282033834, "destination": 2282033972, "path": [[-8282.26072351157, 309.84941857781223], [-8281.460723509326, 87.29941857765766], [-8282.010723505096, 63.799418576593325]]}, {"length": 55.0129326695, "source": 3299414701, "destination": 2068973857, "path": [[-5583.010723505311, 6223.099418576794], [-5256.3107235101825, 6228.899418577072]]}, {"length": 13.2519117902, "source": 3299414701, "destination": 2068973834, "path": [[-5583.010723505311, 6223.099418576794], [-5661.710723508406, 6221.699418578197]]}, {"length": 49.0819656684, "source": 3299414701, "destination": 2069376750, "path": [[-5583.010723505311, 6223.099418576794], [-5583.010723505311, 6141.149418578351], [-5582.0607235048665, 6002.3994185769425]]}, {"length": 47.6241078556, "source": 3299414701, "destination": 2286663047, "path": [[-5583.010723505311, 6223.099418576794], [-5583.010723505311, 6278.5494185781945], [-5583.460723507016, 6349.399418578372], [-5583.860723511691, 6417.749418577756], [-5583.860723511691, 6437.249418578262]]}, {"length": 11.6843882561, "source": 2068853422, "destination": 134985972, "path": [[1022.0392764921371, 4299.299418576652], [952.6392764911407, 4298.299418579177]]}, {"length": 122.781796767, "source": 2068853422, "destination": 2068853438, "path": [[1022.0392764921371, 4299.299418576652], [1023.3892764901498, 3747.1994185764856]]}, {"length": 117.819575812, "source": 2068853422, "destination": 134990167, "path": [[1022.0392764921371, 4299.299418576652], [1721.9392764928898, 4303.099418578427]]}, {"length": 53.9025702864, "source": 3299414703, "destination": 2286663417, "path": [[-6004.610723508108, 5421.199418577771], [-6139.01072350842, 5420.499418576696], [-6324.810723505436, 5420.299418577912]]}, {"length": 11.0533548205, "source": 3299414703, "destination": 2068973811, "path": [[-6004.610723508108, 5421.199418577771], [-6004.010723508201, 5371.499418576064]]}, {"length": 48.9718860811, "source": 3299414703, "destination": 2286663414, "path": [[-6004.610723508108, 5421.199418577771], [-5831.1607235097545, 5422.099418577631], [-5713.710723505017, 5423.149418579243]]}, {"length": 48.3937962769, "source": 3299414703, "destination": 2068973871, "path": [[-6004.610723508108, 5421.199418577771], [-6007.110723508902, 5638.799418576923]]}, {"length": 114.04668693, "source": 3299414704, "destination": 2285539768, "path": [[-7081.0607235074485, 5418.099418577071], [-6987.710723507234, 5418.099418577071], [-6810.060723509537, 5418.899418579314], [-6649.2107235092135, 5419.049418577515], [-6403.610723509701, 5421.799418577677]]}, {"length": 11.3946453727, "source": 3299414704, "destination": 2285539755, "path": [[-7081.0607235074485, 5418.099418577071], [-7112.860723509584, 5418.099418577071], [-7134.560723507377, 5427.549418577371], [-7145.410723509826, 5427.399418579171]]}, {"length": 51.0180574109, "source": 3299414704, "destination": 1433125509, "path": [[-7081.0607235074485, 5418.099418577071], [-7083.51072351121, 5647.4994185791165]]}, {"length": 10.4083183026, "source": 3299414704, "destination": 134985543, "path": [[-7081.0607235074485, 5418.099418577071], [-7080.560723508711, 5371.29941857728]]}, {"length": 17.362026871, "source": 2282033844, "destination": 2282033834, "path": [[-8385.410723505516, 309.3494185790746], [-8282.26072351157, 309.84941857781223]]}, {"length": 140.513476576, "source": 2282033844, "destination": 2282033859, "path": [[-8385.410723505516, 309.3494185790746], [-8817.11072350555, 307.399418577603], [-9164.660723506302, 306.59941857891226], [-9220.210723505317, 307.8994185763406]]}, {"length": 7.06360445913, "source": 2282033844, "destination": 2282033877, "path": [[-8385.410723505516, 309.3494185790746], [-8384.26072350984, 277.59941857752324]]}, {"length": 8.24791690776, "source": 2282033848, "destination": 2282033853, "path": [[-9328.860723506694, 308.54941857683116], [-9279.860723509613, 308.39941857863096]]}, {"length": 98.4767621907, "source": 2282033848, "destination": 2139774318, "path": [[-9328.860723506694, 308.54941857683116], [-9369.210723505716, 309.4994185772748], [-9537.010723505546, 309.7494185766436], [-9883.010723505948, 307.7994185787247], [-9913.910723511777, 308.19941857629374]]}, {"length": 107.142181069, "source": 2282033848, "destination": 2282034159, "path": [[-9328.860723506694, 308.54941857683116], [-9335.01072351106, 275.4494185772671], [-9358.510723508572, 266.09941857813624], [-9359.660723511353, 174.84941857759395], [-9359.310723510816, 12.199418577552024], [-9358.160723508036, -162.1505814206614]]}, {"length": 60.045891544, "source": 2086854395, "destination": 135022785, "path": [[8945.839276492507, -2586.6005814236814], [8947.33927648872, -2856.6005814205655]]}, {"length": 52.8979511937, "source": 2086854395, "destination": 2086854564, "path": [[8945.839276492507, -2586.6005814236814], [8631.539276493073, -2588.5005814210162]]}, {"length": 60.601904981, "source": 2086854395, "destination": 135022782, "path": [[8945.839276492507, -2586.6005814236814], [8944.339276489189, -2314.1005814224513]]}, {"length": 8.24791690776, "source": 2282033853, "destination": 2282033848, "path": [[-9279.860723509613, 308.39941857863096], [-9328.860723506694, 308.54941857683116]]}, {"length": 10.0407404032, "source": 2282033853, "destination": 2282033859, "path": [[-9279.860723509613, 308.39941857863096], [-9220.210723505317, 307.8994185763406]]}, {"length": 10.2749789582, "source": 2282033853, "destination": 134959125, "path": [[-9279.860723509613, 308.39941857863096], [-9280.210723510152, 354.5994185785162]]}, {"length": 109.262021491, "source": 2282033853, "destination": 135045975, "path": [[-9279.860723509613, 308.39941857863096], [-9276.21072350604, -182.9005814215634]]}, {"length": 11.1519840253, "source": 2068853438, "destination": 134985969, "path": [[1023.3892764901498, 3747.1994185764856], [957.1392764939901, 3746.949418577117]]}, {"length": 117.571850546, "source": 2068853438, "destination": 134990162, "path": [[1023.3892764901498, 3747.1994185764856], [1721.8392764917212, 3749.7494185778633]]}, {"length": 29.4822189979, "source": 1930367680, "destination": 1930367693, "path": [[7361.039276489123, -8492.450581421452], [7342.689276491399, -8486.85058142351], [7319.239276490918, -8482.200581422461], [7299.689276493382, -8481.150581420849], [7277.939276491452, -8483.250581420521], [7251.989276490178, -8487.050581422296], [7223.7892764945855, -8492.750581421404], [7198.139276489712, -8498.450581420513], [7191.289276491375, -8500.400581421985]]}, {"length": 43.5674967571, "source": 1930367680, "destination": 1930367693, "path": [[7361.039276489123, -8492.450581421452], [7353.289276494479, -8508.750581423641], [7346.939276494879, -8522.45058142387], [7341.439276494555, -8533.650581423302], [7334.739276494418, -8543.35058142297], [7327.439276494374, -8551.000581423552], [7319.5392764944245, -8556.200581423924], [7309.2892764918815, -8560.100581423314], [7298.639276491769, -8562.200581422985], [7288.139276489857, -8562.80058142289], [7275.33927648949, -8561.000581423174], [7262.139276491553, -8556.500581423876], [7247.889276492004, -8548.750581422126], [7231.039276490492, -8536.950581422787], [7217.6392764902175, -8525.150581423446], [7202.639276492562, -8512.300581422494], [7191.289276491375, -8500.400581421985]]}, {"length": 5.4288527768, "source": 1930367680, "destination": 1930367695, "path": [[7361.039276489123, -8492.450581421452], [7377.839276493603, -8497.600581421239], [7390.589276489834, -8502.200581421705]]}, {"length": 238.817309827, "source": 2068853442, "destination": 134985680, "path": [[1011.3392764949936, 5397.0994185768], [1717.8392764947148, 5399.39941857881], [2429.989276492961, 5402.549418576541]]}, {"length": 60.4139283692, "source": 2068853442, "destination": 2069036323, "path": [[1011.3392764949936, 5397.0994185768], [1013.9892764939873, 5125.449418578399]]}, {"length": 11.3969976323, "source": 2068853442, "destination": 134985675, "path": [[1011.3392764949936, 5397.0994185768], [943.6392764925472, 5396.899418578016]]}, {"length": 113.381347717, "source": 2282033859, "destination": 3758384275, "path": [[-9220.210723505317, 307.8994185763406], [-9223.410723507186, 295.7994185770474], [-9223.760723507723, 270.8994185773861], [-9223.760723507723, 214.89941857666395], [-9223.410723507186, 168.0494185762882], [-9222.66072350908, 41.649418577094366], [-9222.310723508543, -100.00058142267676], [-9221.960723508004, -143.20058142303083], [-9196.660723510775, -143.75058142235275], [-9196.310723510236, -161.8005814236767], [-9201.260723507687, -182.7505814233632]]}, {"length": 140.513476576, "source": 2282033859, "destination": 2282033844, "path": [[-9220.210723505317, 307.8994185763406], [-9164.660723506302, 306.59941857891226], [-8817.11072350555, 307.399418577603], [-8385.410723505516, 309.3494185790746]]}, {"length": 10.0407404032, "source": 2282033859, "destination": 2282033853, "path": [[-9220.210723505317, 307.8994185763406], [-9279.860723509613, 308.39941857863096]]}, {"length": 204.336868059, "source": 134959815, "destination": 135072512, "path": [[9687.189276490926, 3198.199418577019], [9695.489276488444, 2279.3994185761335]]}, {"length": 51.0500302832, "source": 134959815, "destination": 2062743147, "path": [[9687.189276490926, 3198.199418577019], [9776.289276494765, 3194.5994185775817], [9990.339276491512, 3194.749418579335]]}, {"length": 10.57070973, "source": 134959815, "destination": 134960005, "path": [[9687.189276490926, 3198.199418577019], [9624.539276494204, 3201.449418579472]]}, {"length": 203.803090721, "source": 134959818, "destination": 135079432, "path": [[10329.839276494113, 3194.399418578797], [10321.589276493625, 4110.799418576506]]}, {"length": 203.48950907, "source": 134959818, "destination": 135072514, "path": [[10329.839276494113, 3194.399418578797], [10335.839276493174, 2279.3994185761335]]}, {"length": 57.1474240388, "source": 134959818, "destination": 2062743147, "path": [[10329.839276494113, 3194.399418578797], [9990.339276491512, 3194.749418579335]]}, {"length": 11.1418772787, "source": 2068853452, "destination": 1806083089, "path": [[-3536.3607235083805, 5943.799418577811], [-3535.9607235108115, 5993.899418577086]]}, {"length": 49.1079618643, "source": 2068853452, "destination": 2069036387, "path": [[-3536.3607235083805, 5943.799418577811], [-3828.06072350661, 5941.499418579355]]}, {"length": 15.8345926014, "source": 2068853452, "destination": 2309493997, "path": [[-3536.3607235083805, 5943.799418577811], [-3535.610723510274, 5872.599418577096]]}, {"length": 17.4407525324, "source": 2068853452, "destination": 135033673, "path": [[-3536.3607235083805, 5943.799418577811], [-3432.7607235056234, 5943.249418578489]]}, {"length": 10.029963219, "source": 135045922, "destination": 2080708609, "path": [[-9298.660723509045, -11309.100581421206], [-9298.810723507246, -11354.200581422447]]}, {"length": 3.92004022037, "source": 135045922, "destination": 2184814290, "path": [[-9298.660723509045, -11309.100581421206], [-9275.360723506765, -11309.150581421789]]}, {"length": 301.980702503, "source": 1930367695, "destination": 1930503408, "path": [[7390.589276489834, -8502.200581421705], [7405.18927648992, -8507.500581423245], [7431.939276493438, -8518.700581422678], [7460.139276489031, -8530.100581420897], [7484.139276492386, -8537.500581422108], [7508.389276495109, -8541.95058142082], [7534.089276489908, -8544.25058142283], [7564.189276493494, -8545.750581422595], [7588.489276493248, -8545.750581422595], [7612.189276493098, -8544.700581420982], [7674.689276491619, -8540.90058142276], [7811.439276494525, -8532.850581421058], [7880.189276491478, -8526.750581420827], [7956.63927649315, -8517.000581420576], [8001.039276493316, -8511.950581421956], [8043.439276491426, -8505.600581422357], [8081.389276490825, -8498.00058142236], [8117.639276491673, -8491.90058142213], [8146.38927649014, -8488.300581422693], [8171.489276492139, -8486.400581421805], [8201.639276492755, -8486.60058142059], [8228.1392764898, -8489.150581421967], [8259.08927649266, -8494.850581421077], [8300.389276492126, -8506.05058142051], [8339.489276494305, -8517.450581422281], [8373.78927649013, -8527.600581423656], [8398.889276492127, -8532.650581422275], [8417.33927649102, -8534.350581420824], [8437.139276495032, -8533.700581423887], [8458.589276493456, -8530.950581423724], [8480.389276492417, -8526.10058142389], [8500.489276492828, -8519.550581421952], [8523.889276489172, -8510.500581422775], [8543.989276489583, -8499.300581423342], [8565.489276492144, -8484.950581422623], [8579.139276491787, -8476.500581423352], [8600.339276490842, -8467.600581422374], [8626.839276494991, -8460.650581422868], [8653.089276492665, -8455.800581423035], [8676.23927648964, -8454.550581422638], [8698.589276491475, -8455.600581420696], [8723.1392764906, -8460.650581422868], [8744.589276489023, -8469.300581420925], [8772.789276491721, -8484.300581422132], [8798.43927648949, -8497.800581423577], [8825.539276493544, -8509.00058142301], [8846.989276491968, -8515.550581421394], [8872.939276493242, -8519.350581423168], [8897.539276489397, -8520.200581422443], [8926.239276490833, -8519.350581423168], [8970.339276494598, -8517.650581421065], [8994.039276494448, -8517.650581421065], [9014.989276494134, -8519.750581420738], [9040.089276489027, -8526.10058142389], [9083.039276490013, -8540.050581423486], [9101.689276491243, -8544.300581423415]]}, {"length": 52.2210356965, "source": 1930367695, "destination": 1930367576, "path": [[7390.589276489834, -8502.200581421705], [7347.839276491186, -8430.75058142162], [7299.189276494644, -8354.55058142287], [7257.889276495178, -8289.950581421124]]}, {"length": 5.4288527768, "source": 1930367695, "destination": 1930367680, "path": [[7390.589276489834, -8502.200581421705], [7377.839276493603, -8497.600581421239], [7361.039276489123, -8492.450581421452]]}, {"length": 56.1091695201, "source": 135090896, "destination": 1916976467, "path": [[-2622.6607235102506, -6102.1005814225755], [-2623.410723508357, -6354.4005814222255]]}, {"length": 115.467012096, "source": 135090896, "destination": 135104883, "path": [[-2622.6607235102506, -6102.1005814225755], [-3308.8107235101916, -6104.5005814222]]}, {"length": 54.3350071789, "source": 135090896, "destination": 1483977763, "path": [[-2622.6607235102506, -6102.1005814225755], [-2627.110723508963, -5857.800581424044]]}, {"length": 252.339860721, "source": 135090896, "destination": 135094533, "path": [[-2622.6607235102506, -6102.1005814225755], [-1123.1607235089314, -6096.600581422252]]}, {"length": 238.995541908, "source": 2068853459, "destination": 134954304, "path": [[1016.6892764900126, 4848.499418578456], [1718.9892764903902, 4849.299418577147], [2436.4392764937293, 4849.349418577731]]}, {"length": 11.5423683639, "source": 2068853459, "destination": 134954298, "path": [[1016.6892764900126, 4848.499418578456], [948.1392764882912, 4847.199418577475]]}, {"length": 61.2145108907, "source": 2068853459, "destination": 2069036679, "path": [[1016.6892764900126, 4848.499418578456], [1019.3392764890064, 4573.249418577063]]}, {"length": 252.420263965, "source": 135090901, "destination": 135094537, "path": [[-2622.160723511513, -6596.100581422348], [-1122.1607235114561, -6590.600581422023]]}, {"length": 53.7520694105, "source": 135090901, "destination": 1916976467, "path": [[-2622.160723511513, -6596.100581422348], [-2623.410723508357, -6354.4005814222255]]}, {"length": 115.524289997, "source": 135090901, "destination": 135097197, "path": [[-2622.160723511513, -6596.100581422348], [-3308.660723504886, -6598.600581423142]]}, {"length": 56.4431663463, "source": 135090901, "destination": 1916976479, "path": [[-2622.160723511513, -6596.100581422348], [-2620.610723511163, -6849.9005814217635]]}, {"length": 124.882381334, "source": 135049943, "destination": 135099936, "path": [[1006.4892764916067, 396.8994185790109], [404.83927649148654, 394.899418576955], [264.5392764932808, 395.89941857798294]]}, {"length": 7.11635897527, "source": 135049943, "destination": 135051131, "path": [[1006.4892764916067, 396.8994185790109], [1006.2892764892695, 428.89941857637837]]}, {"length": 60.4800548781, "source": 135049943, "destination": 2086776732, "path": [[1006.4892764916067, 396.8994185790109], [1008.5892764948312, 124.94941857710273]]}, {"length": 122.364038407, "source": 135049946, "destination": 1996491668, "path": [[1009.3892764899692, -147.90058142111207], [1015.9392764919062, -698.1005814239438]]}, {"length": 60.6793388107, "source": 135049946, "destination": 2086776732, "path": [[1009.3892764899692, -147.90058142111207], [1008.5892764948312, 124.94941857710273]]}, {"length": 124.787249494, "source": 135049946, "destination": 135074767, "path": [[1009.3892764899692, -147.90058142111207], [1112.0892764893142, -147.55058142057464], [1468.8392764909963, -146.2505814231463], [1750.789276492526, -145.20058142153403]]}, {"length": 123.265753106, "source": 2086715230, "destination": 2086715245, "path": [[2486.7392764917895, -958.0505814206219], [1754.3892764919633, -963.6505814221152]]}, {"length": 64.1932023154, "source": 2086715230, "destination": 135016399, "path": [[2486.7392764917895, -958.0505814206219], [2511.3392764950504, -1246.1005814223824]]}, {"length": 11.2753562132, "source": 2281976594, "destination": 2284152338, "path": [[-7059.110723510286, 1444.7994185786683], [-7058.8607235109175, 1495.4994185778503]]}, {"length": 6.09364204772, "source": 2568599683, "destination": 2568679360, "path": [[706.789276492259, -2361.8505814226864], [708.8892764883781, -2389.2005814225568]]}, {"length": 13.8221555235, "source": 2568599683, "destination": 2568599698, "path": [[706.789276492259, -2361.8505814226864], [705.9392764929839, -2299.700581421149]]}, {"length": 26.0445984106, "source": 2568599683, "destination": 2568599654, "path": [[706.789276492259, -2361.8505814226864], [701.9392764888721, -2351.950581420681], [693.2892764908161, -2339.400581423234], [678.4892764883921, -2319.00058142287], [662.2892764909238, -2303.700581421708], [645.589276494718, -2290.5505814208027], [628.1392764933003, -2279.9005814206907], [612.2392764922324, -2272.150581422494]]}, {"length": 5.58751242825, "source": 1930367771, "destination": 1930503408, "path": [[9134.289276488516, -8548.900581423879], [9108.989276491286, -8545.95058142138], [9101.689276491243, -8544.300581423415]]}, {"length": 15.9903510842, "source": 1930367771, "destination": 134982533, "path": [[9134.289276488516, -8548.900581423879], [9134.889276488422, -8620.800581422116]]}, {"length": 22.7746124438, "source": 1930367771, "destination": 1930367638, "path": [[9134.289276488516, -8548.900581423879], [9136.039276491203, -8446.500581420934]]}, {"length": 12.367139297, "source": 1930367771, "destination": 1930367775, "path": [[9134.289276488516, -8548.900581423879], [9207.239276491919, -8555.650581421049]]}, {"length": 51.4287238307, "source": 2068009758, "destination": 135007385, "path": [[3882.6892764944887, 5737.149418578724], [3880.839276490633, 5968.399418577519]]}, {"length": 11.9648778853, "source": 2068009758, "destination": 2068009746, "path": [[3882.6892764944887, 5737.149418578724], [3883.0892764920577, 5683.349418578842]]}, {"length": 75.182310763, "source": 2068009758, "destination": 2068009814, "path": [[3882.6892764944887, 5737.149418578724], [4004.0892764920955, 5737.149418578724], [4257.08927649282, 5736.899418579355], [4255.989276494176, 5682.249418576646]]}, {"length": 12.367139297, "source": 1930367775, "destination": 1930367771, "path": [[9207.239276491919, -8555.650581421049], [9134.289276488516, -8548.900581423879]]}, {"length": 78.031535508, "source": 1930367775, "destination": 1930503404, "path": [[9207.239276491919, -8555.650581421049], [9240.139276492699, -8559.050581421701], [9278.389276488497, -8563.900581421534], [9308.789276488482, -8567.500581420973], [9335.289276492631, -8568.300581423216], [9386.639276492304, -8568.550581422585], [9445.239276494987, -8567.900581422095], [9480.389276490087, -8567.500581420973], [9503.539276494166, -8570.200581420551], [9517.23927649084, -8572.75058142193], [9529.239276488966, -8573.80058142354], [9540.089276491415, -8572.75058142193], [9551.839276490171, -8569.40058142186], [9566.589276488457, -8563.05058142226], [9579.739276489363, -8555.25058142348], [9599.539276493375, -8544.050581424046], [9615.439276494442, -8538.150581422598], [9633.839276489198, -8534.350581420824], [9654.68927649482, -8532.250581421153]]}, {"length": 171.691363664, "source": 1930367775, "destination": 1930503214, "path": [[9207.239276491919, -8555.650581421049], [9210.439276493787, -8532.35058142232], [9212.789276489275, -8524.55058142354], [9217.939276489062, -8516.500581421838], [9224.639276489199, -8509.350581423547], [9237.689276488936, -8497.400581422455], [9251.489276493885, -8484.850581421455], [9258.189276494022, -8477.100581423258], [9264.489276489485, -8467.250581421837], [9266.48927649154, -8460.100581423547], [9267.639276494321, -8453.80058142098], [9266.08927649397, -8439.800581420797], [9263.689276494348, -8423.950581423867], [9258.98927648916, -8405.75058142079], [9255.039276489186, -8394.700581423109], [9245.539276491854, -8381.850581422157], [9227.789276494037, -8363.650581422633], [9216.33927649168, -8350.500581421727], [9208.089276491193, -8336.750581420914], [9202.539276493837, -8325.150581423912], [9200.589276488812, -8313.20058142282], [9199.389276489, -8302.750581421493], [9199.789276493675, -8290.500581424], [9202.139276489163, -8277.350581423092], [9207.689276493624, -8257.050581423897], [9213.589276491519, -8237.95058142096], [9218.339276493736, -8225.100581423561], [9220.689276489225, -8214.650581422233], [9221.489276491468, -8200.950581422007], [9220.689276489225, -8186.300581421336], [9218.739276491306, -8171.650581420664], [9215.1892764889, -8159.700581423123], [9208.089276491193, -8147.500581422662], [9197.039276493513, -8132.550581422038], [9185.189276493587, -8112.5505814227945], [9175.739276493288, -8092.250581423599], [9172.139276493852, -8079.7005814225995], [9170.189276488827, -8064.80058142256], [9170.189276488827, -8042.100581423739], [9169.38927649369, -7924.750581423723], [9168.989276489014, -7894.900581423059], [9168.989276489014, -7876.400581423582], [9170.989276491071, -7864.150581422536], [9174.139276488802, -7851.600581421536], [9179.639276489126, -7840.250581423902], [9193.089276493538, -7821.150581420966]]}, {"length": 13.6996795565, "source": 134984482, "destination": 4242276922, "path": [[-3403.5107235084183, 2059.299418576188], [-3404.2607235065248, 2120.8994185784036]]}, {"length": 62.7940294997, "source": 2068009772, "destination": 135033675, "path": [[4604.839276488803, 5682.3494185778145], [4601.689276491072, 5964.699418576913]]}, {"length": 25.4862296646, "source": 2068009772, "destination": 4253708844, "path": [[4604.839276488803, 5682.3494185778145], [4605.639276491047, 5567.749418577961]]}, {"length": 58.725680122, "source": 2068009772, "destination": 2068009814, "path": [[4604.839276488803, 5682.3494185778145], [4255.989276494176, 5682.249418576646]]}, {"length": 9.13947699218, "source": 2282973320, "destination": 2282973289, "path": [[-9240.510723508067, 2585.949418577371], [-9240.810723511571, 2627.0494185780535]]}, {"length": 9.05526777769, "source": 2282973320, "destination": 134959139, "path": [[-9240.510723508067, 2585.949418577371], [-9294.3107235115, 2585.699418578002]]}, {"length": 99.5592703696, "source": 2282973320, "destination": 2282973300, "path": [[-9240.510723508067, 2585.949418577371], [-9039.210723507551, 2586.7994185766465], [-9031.760723509307, 2586.7994185766465], [-9004.410723505884, 2586.949418578399], [-8939.210723511336, 2587.0994185765994], [-8913.610723510601, 2587.1494185771835], [-8907.860723510908, 2587.1494185771835], [-8769.610723511789, 2587.449418577137], [-8649.11072351049, 2588.9494185769026]]}, {"length": 13.5325455159, "source": 2282973320, "destination": 2282973371, "path": [[-9240.510723508067, 2585.949418577371], [-9240.01072350933, 2525.099418576815]]}, {"length": 54.720633509, "source": 2282033972, "destination": 2282033834, "path": [[-8282.010723505096, 63.799418576593325], [-8281.460723509326, 87.29941857765766], [-8282.26072351157, 309.84941857781223]]}, {"length": 16.1783099333, "source": 2282033972, "destination": 2282033978, "path": [[-8282.010723505096, 63.799418576593325], [-8215.960723511273, 62.59941857678086], [-8185.9107235118245, 62.59941857678086]]}, {"length": 7.42926624088, "source": 2282033972, "destination": 2282034006, "path": [[-8282.010723505096, 63.799418576593325], [-8282.810723507338, 30.399418577076176]]}, {"length": 123.420518439, "source": 2282033975, "destination": 2282034129, "path": [[-7872.210723505191, 62.59941857678086], [-7872.31072350636, 11.849418577014603], [-7872.31072350636, -119.50058142318198], [-7909.110723510083, -137.85058142090634], [-7964.910723508467, -138.05058142324356], [-8201.360723511187, -139.50058142242483], [-8357.71072350866, -140.25058142053126]]}, {"length": 55.5092718047, "source": 2282033975, "destination": 2282033828, "path": [[-7872.210723505191, 62.59941857678086], [-7872.060723506991, 143.3494185789641], [-7872.060723506991, 208.89941857760164], [-7872.910723506266, 312.19941857685285]]}, {"length": 14.2810787025, "source": 2282033975, "destination": 2282033983, "path": [[-7872.210723505191, 62.59941857678086], [-7957.060723505549, 62.29941857682775]]}, {"length": 58.1490952359, "source": 134959929, "destination": 2069120370, "path": [[1727.2392764908773, 3190.94941857756], [2072.689276488404, 3191.649418578635]]}, {"length": 124.274977069, "source": 134959929, "destination": 134990162, "path": [[1727.2392764908773, 3190.94941857756], [1721.8392764917212, 3749.7494185778633]]}, {"length": 7.09416092964, "source": 2282033978, "destination": 2282034003, "path": [[-8185.9107235118245, 62.59941857678086], [-8186.2607235052565, 30.69941857702929]]}, {"length": 16.1783099333, "source": 2282033978, "destination": 2282033972, "path": [[-8185.9107235118245, 62.59941857678086], [-8215.960723511273, 62.59941857678086], [-8282.010723505096, 63.799418576593325]]}, {"length": 38.518172406, "source": 2282033978, "destination": 2282033983, "path": [[-8185.9107235118245, 62.59941857678086], [-7957.060723505549, 62.29941857682775]]}, {"length": 86.2536337041, "source": 135036824, "destination": 2074049995, "path": [[8953.839276493625, 3725.8994185762617], [9466.239276491706, 3727.799418577149]]}, {"length": 85.1763955631, "source": 135036824, "destination": 135074390, "path": [[8953.839276493625, 3725.8994185762617], [8951.339276492832, 4108.899418579171]]}, {"length": 122.377553372, "source": 135036824, "destination": 135036822, "path": [[8953.839276493625, 3725.8994185762617], [8226.839276488818, 3723.3994185790207]]}, {"length": 55.35305599, "source": 135036824, "destination": 2086776807, "path": [[8953.839276493625, 3725.8994185762617], [8954.239276491193, 3476.999418577265]]}, {"length": 8.7515845861, "source": 134959932, "destination": 134960048, "path": [[2450.2392764915726, 3192.0494185762036], [2449.439276489329, 3152.6994185782087]]}, {"length": 63.5521636281, "source": 134959932, "destination": 2069120370, "path": [[2450.2392764915726, 3192.0494185762036], [2072.689276488404, 3191.649418578635]]}, {"length": 56.2323969535, "source": 135033661, "destination": 1433125506, "path": [[-6416.6107235053005, 5931.449418579149], [-6414.61072351035, 5678.599418576624]]}, {"length": 12.8714148233, "source": 135033661, "destination": 135033667, "path": [[-6416.6107235053005, 5931.449418579149], [-6383.66072350749, 5931.549418576765], [-6340.160723510735, 5931.949418577887]]}, {"length": 17.6002200378, "source": 135033661, "destination": 2285539516, "path": [[-6416.6107235053005, 5931.449418579149], [-6521.160723508501, 5931.499418576181]]}, {"length": 16.4712290678, "source": 135033661, "destination": 2139775503, "path": [[-6416.6107235053005, 5931.449418579149], [-6418.560723510325, 6005.499418577642]]}, {"length": 38.518172406, "source": 2282033983, "destination": 2282033978, "path": [[-7957.060723505549, 62.29941857682775], [-8185.9107235118245, 62.59941857678086]]}, {"length": 28.6663499733, "source": 2282033983, "destination": 2282034042, "path": [[-7957.060723505549, 62.29941857682775], [-7955.160723511767, -5.900581420803519], [-7967.110723505755, -15.50058142285593], [-8029.860723510751, -16.10058142276216]]}, {"length": 14.2810787025, "source": 2282033983, "destination": 2282033975, "path": [[-7957.060723505549, 62.29941857682775], [-7872.210723505191, 62.59941857678086]]}, {"length": 17.0704361067, "source": 1930367808, "destination": 1930503408, "path": [[9103.139276490423, -8621.050581421485], [9101.689276491243, -8544.300581423415]]}, {"length": 90.3561908277, "source": 1930367808, "destination": 134982531, "path": [[9103.139276490423, -8621.050581421485], [8566.18927649322, -8625.200581423798]]}, {"length": 5.34343976132, "source": 1930367808, "destination": 134982533, "path": [[9103.139276490423, -8621.050581421485], [9134.889276488422, -8620.800581422116]]}, {"length": 119.672579504, "source": 2285540161, "destination": 1433125525, "path": [[-6417.260723509344, 4880.099418578255], [-6538.36072351055, 4879.699418577133], [-6683.060723510436, 4878.849418577857], [-6903.760723510288, 4879.049418576642], [-6989.460723509921, 4879.499418578348], [-7128.160723510746, 4880.549418576407]]}, {"length": 60.9910464962, "source": 135091010, "destination": 2086776744, "path": [[6806.839276492838, 419.8994185777849], [6808.3392764890505, 145.64941857742042]]}, {"length": 121.923635372, "source": 135091010, "destination": 135108005, "path": [[6806.839276492838, 419.8994185777849], [6082.539276491161, 411.59941857671356]]}, {"length": 9.78618084527, "source": 135091011, "destination": 135091012, "path": [[6818.839276490962, -1730.1005814225334], [6818.839276490962, -1774.1005814215782]]}, {"length": 74.7278752408, "source": 135091011, "destination": 134995139, "path": [[6818.839276490962, -1730.1005814225334], [6374.839276489297, -1732.1005814210366]]}, {"length": 53.2852545838, "source": 135091011, "destination": 2086854436, "path": [[6818.839276490962, -1730.1005814225334], [6817.48927649295, -1490.5005814220829]]}, {"length": 122.093497413, "source": 135091012, "destination": 135085736, "path": [[6818.839276490962, -1774.1005814215782], [6821.339276491755, -2232.100581423424], [6821.839276490493, -2323.100581421045]]}, {"length": 9.78618084527, "source": 135091012, "destination": 135091011, "path": [[6818.839276490962, -1774.1005814215782], [6818.839276490962, -1730.1005814225334]]}, {"length": 63.1229964171, "source": 135091012, "destination": 2086854461, "path": [[6818.839276490962, -1774.1005814215782], [7193.889276493337, -1772.5505814212283]]}, {"length": 13.0044216807, "source": 135033670, "destination": 2068973833, "path": [[-4181.260723505886, 5940.599418579495], [-4104.010723509077, 5940.79941857828]]}, {"length": 12.9286583505, "source": 135033670, "destination": 2069376785, "path": [[-4181.260723505886, 5940.599418579495], [-4258.060723508095, 5940.199418578373]]}, {"length": 16.2907652373, "source": 135033670, "destination": 2251802373, "path": [[-4181.260723505886, 5940.599418579495], [-4180.36072350958, 6013.849418579298]]}, {"length": 15.9790743895, "source": 135033670, "destination": 2069376873, "path": [[-4181.260723505886, 5940.599418579495], [-4180.810723511286, 5868.74941857829]]}, {"length": 6.38259883678, "source": 1933540833, "destination": 1933540850, "path": [[6142.639276490058, -7717.3005814223925], [6143.089276491764, -7746.000581423828]]}, {"length": 17.4407525324, "source": 135033673, "destination": 2068853452, "path": [[-3432.7607235056234, 5943.249418578489], [-3536.3607235083805, 5943.799418577811]]}, {"length": 15.3019896787, "source": 135033673, "destination": 2316883514, "path": [[-3432.7607235056234, 5943.249418578489], [-3341.8607235091713, 5943.149418577321]]}, {"length": 15.8345926014, "source": 135033673, "destination": 2316883508, "path": [[-3432.7607235056234, 5943.249418578489], [-3433.4107235096667, 6014.449418579205]]}, {"length": 121.352067833, "source": 135033675, "destination": 135007385, "path": [[4601.689276491072, 5964.699418576913], [3880.839276490633, 5968.399418577519]]}, {"length": 62.7940294997, "source": 135033675, "destination": 2068009772, "path": [[4601.689276491072, 5964.699418576913], [4604.839276488803, 5682.3494185778145]]}, {"length": 60.8896648972, "source": 135033675, "destination": 135033678, "path": [[4601.689276491072, 5964.699418576913], [4963.389276490205, 5965.649418577357]]}, {"length": 15.3513852085, "source": 134959948, "destination": 2311060344, "path": [[-4906.010723509269, 3164.6494185793017], [-4997.210723509226, 3164.2494185781798]]}, {"length": 130.256187173, "source": 134959948, "destination": 135032870, "path": [[-4906.010723509269, 3164.6494185793017], [-4901.410723505251, 2578.949418577281]]}, {"length": 16.1088392661, "source": 134959948, "destination": 2311060343, "path": [[-4906.010723509269, 3164.6494185793017], [-4810.310723506462, 3165.0494185768707]]}, {"length": 63.8856208649, "source": 4719850318, "destination": 135046512, "path": [[-608.2107235059198, -4536.200581423344], [-987.8107235081757, -4539.100581421707]]}, {"length": 137.29678903, "source": 4719850318, "destination": 135046515, "path": [[-608.2107235059198, -4536.200581423344], [207.589276492115, -4530.000581421945]]}, {"length": 49.6504969159, "source": 4719850318, "destination": 4719853215, "path": [[-608.2107235059198, -4536.200581423344], [-607.8607235053823, -4364.800581420524], [-636.6607235079869, -4328.950581420799], [-646.4107235117922, -4322.35058142183]]}, {"length": 65.0053343895, "source": 134959951, "destination": 2069036868, "path": [[-4163.610723509237, 3162.2494185761243], [-4165.460723505987, 3454.5494185778125]]}, {"length": 15.4899020271, "source": 134959951, "destination": 2311060364, "path": [[-4163.610723509237, 3162.2494185761243], [-4163.160723507531, 3092.5994185793115]]}, {"length": 13.4480320443, "source": 134959951, "destination": 2311060342, "path": [[-4163.610723509237, 3162.2494185761243], [-4243.210723508639, 3167.399418579464]]}, {"length": 13.1199942796, "source": 134959951, "destination": 2251802375, "path": [[-4163.610723509237, 3162.2494185761243], [-4085.9607235077533, 3157.149418576921]]}, {"length": 66.3204007178, "source": 134959954, "destination": 2069036856, "path": [[-3414.01072351033, 3158.999418577224], [-3418.110723508505, 3457.1994185768062]]}, {"length": 17.2620707433, "source": 134959954, "destination": 2311060345, "path": [[-3414.01072351033, 3158.999418577224], [-3516.560723511475, 3158.699418577271]]}, {"length": 7.09416092964, "source": 2282034003, "destination": 2282033978, "path": [[-8186.2607235052565, 30.69941857702929], [-8185.9107235118245, 62.59941857678086]]}, {"length": 7.42926624088, "source": 2282034006, "destination": 2282033972, "path": [[-8282.810723507338, 30.399418577076176], [-8282.010723505096, 63.799418576593325]]}, {"length": 5.18246602163, "source": 4719850327, "destination": 4719897593, "path": [[-583.5607235056273, -3725.6505814227125], [-600.9107235058764, -3744.900581423849]]}, {"length": 58.299940821, "source": 135033689, "destination": 2069036712, "path": [[7512.839276493822, 5975.899418576347], [7511.589276489872, 6238.049418577419]]}, {"length": 109.339490907, "source": 135033689, "destination": 135033694, "path": [[7512.839276493822, 5975.899418576347], [8162.339276488239, 5978.399418577141]]}, {"length": 109.25533981, "source": 135033689, "destination": 135008310, "path": [[7512.839276493822, 5975.899418576347], [6863.839276491035, 5973.399418579106]]}, {"length": 59.5454828053, "source": 135033689, "destination": 2069036837, "path": [[7512.839276493822, 5975.899418576347], [7514.289276493002, 5708.149418577335]]}, {"length": 10.3422886475, "source": 2139785359, "destination": 1930503168, "path": [[9173.389276490696, -7703.750581423918], [9173.739276491233, -7680.200581422269], [9173.739276491233, -7657.250581420527]]}, {"length": 7.14353642982, "source": 2139785359, "destination": 135022979, "path": [[9173.389276490696, -7703.750581423918], [9130.939276488447, -7704.000581423287]]}, {"length": 3.92233869036, "source": 2139785359, "destination": 2322588806, "path": [[9173.389276490696, -7703.750581423918], [9196.689276492976, -7703.500581420996]]}, {"length": 26.7658918332, "source": 2139785359, "destination": 1930503214, "path": [[9173.389276490696, -7703.750581423918], [9172.939276488989, -7735.15058142138], [9176.889276488964, -7784.7005814213335], [9178.489276493452, -7799.350581422004], [9184.789276488915, -7811.900581423004], [9193.089276493538, -7821.150581420966]]}, {"length": 61.3422435806, "source": 134959964, "destination": 2069120452, "path": [[3174.689276491449, 3161.849418578555], [3089.7892764940593, 3152.8994185769934], [2811.0892764914297, 3152.7994185793773]]}, {"length": 53.1289078085, "source": 134959964, "destination": 2069120410, "path": [[3174.689276491449, 3161.849418578555], [3174.3892764950488, 3400.7494185779306]]}, {"length": 55.8985112566, "source": 134959964, "destination": 2069120356, "path": [[3174.689276491449, 3161.849418578555], [3176.489276491168, 2910.4994185793485]]}, {"length": 139.208426966, "source": 134959964, "destination": 134959967, "path": [[3174.689276491449, 3161.849418578555], [3242.689276490296, 3168.9994185768455], [4001.0392764884273, 3170.799418576564]]}, {"length": 15.8794941727, "source": 135033658, "destination": 2139775504, "path": [[-7085.61072350733, 5931.899418577303], [-7086.310723508404, 6003.299418576802]]}, {"length": 95.0205510012, "source": 135033658, "destination": 2285539516, "path": [[-7085.61072350733, 5931.899418577303], [-6521.160723508501, 5931.499418576181]]}, {"length": 14.6114234971, "source": 135033658, "destination": 2285539540, "path": [[-7085.61072350733, 5931.899418577303], [-7085.110723508592, 5866.199418576912]]}, {"length": 7.60906155561, "source": 135033658, "destination": 1965661565, "path": [[-7085.61072350733, 5931.899418577303], [-7130.81072350974, 5931.799418576134]]}, {"length": 109.339573336, "source": 135033694, "destination": 135033696, "path": [[8162.339276488239, 5978.399418577141], [8811.839276489764, 5980.899418577934]]}, {"length": 109.339490907, "source": 135033694, "destination": 135033689, "path": [[8162.339276488239, 5978.399418577141], [7512.839276493822, 5975.899418576347]]}, {"length": 57.5216282073, "source": 135033694, "destination": 2069036941, "path": [[8162.339276488239, 5978.399418577141], [8161.089276491395, 6237.04941857639]]}, {"length": 60.1015519069, "source": 135033694, "destination": 2069036945, "path": [[8162.339276488239, 5978.399418577141], [8163.789276494526, 5708.149418577335]]}, {"length": 98.6085791778, "source": 134959967, "destination": 134959970, "path": [[4001.0392764884273, 3170.799418576564], [4586.839276491617, 3173.749418579064]]}, {"length": 139.208426966, "source": 134959967, "destination": 134959964, "path": [[4001.0392764884273, 3170.799418576564], [3242.689276490296, 3168.9994185768455], [3174.689276491449, 3161.849418578555]]}, {"length": 50.9607881501, "source": 134959967, "destination": 2069120213, "path": [[4001.0392764884273, 3170.799418576564], [4001.189276493733, 3399.94941857924]]}, {"length": 138.553741421, "source": 135033696, "destination": 2140984947, "path": [[8811.839276489764, 5980.899418577934], [8999.989276489374, 5981.999418576578], [9020.23927649509, 5981.249418578472], [9033.489276490058, 5980.449418576228], [9052.789276488227, 5977.499418577281], [9064.889276494625, 5973.649418578475], [9080.039276490481, 5966.349418578431], [9088.939276495012, 5959.849418577079], [9101.739276488275, 5949.199418576967], [9162.839276491752, 5889.649418577392], [9178.339276495251, 5877.499418577514], [9233.83927649013, 5908.049418579253], [9300.339276492763, 5937.749418578164], [9464.389276494956, 6002.3994185769425], [9526.139276488266, 6021.049418578173]]}, {"length": 59.7565570263, "source": 135033696, "destination": 2069036820, "path": [[8811.839276489764, 5980.899418577934], [8812.989276492544, 5712.199418578479]]}, {"length": 34.4151089398, "source": 135033696, "destination": 4614343717, "path": [[8811.839276489764, 5980.899418577934], [8810.939276493456, 6135.649418578027]]}, {"length": 109.339573336, "source": 135033696, "destination": 135033694, "path": [[8811.839276489764, 5980.899418577934], [8162.339276488239, 5978.399418577141]]}, {"length": 11.6990346994, "source": 134959970, "destination": 134959972, "path": [[4586.839276491617, 3173.749418579064], [4656.339276493782, 3174.2494185778014]]}, {"length": 58.1000190594, "source": 134959970, "destination": 2069036916, "path": [[4586.839276491617, 3173.749418579064], [4588.289276490797, 2912.499418577852]]}, {"length": 98.6085791778, "source": 134959970, "destination": 134959967, "path": [[4586.839276491617, 3173.749418579064], [4001.0392764884273, 3170.799418576564]]}, {"length": 51.2726924374, "source": 134959972, "destination": 2069120273, "path": [[4656.339276493782, 3174.2494185778014], [4654.8892764946, 3404.799418579074]]}, {"length": 11.6990346994, "source": 134959972, "destination": 134959970, "path": [[4656.339276493782, 3174.2494185778014], [4586.839276491617, 3173.749418579064]]}, {"length": 46.6788937217, "source": 134959972, "destination": 134959975, "path": [[4656.339276493782, 3174.2494185778014], [4933.639276494261, 3175.9994185769356]]}, {"length": 96.3021578957, "source": 134959975, "destination": 134959978, "path": [[4933.639276494261, 3175.9994185769356], [5505.73927649367, 3178.6494185794822]]}, {"length": 46.6788937217, "source": 134959975, "destination": 134959972, "path": [[4933.639276494261, 3175.9994185769356], [4656.339276493782, 3174.2494185778014]]}, {"length": 204.464934533, "source": 134959975, "destination": 135038037, "path": [[4933.639276494261, 3175.9994185769356], [4933.239276489587, 4024.599418578134], [4938.189276494142, 4060.4494185778603], [4949.889276488761, 4094.049418576162]]}, {"length": 7.25495553254, "source": 134959978, "destination": 4224950839, "path": [[5505.73927649367, 3178.6494185794822], [5548.839276492856, 3178.7494185770984]]}, {"length": 96.3021578957, "source": 134959978, "destination": 134959975, "path": [[5505.73927649367, 3178.6494185794822], [4933.639276494261, 3175.9994185769356]]}, {"length": 9.62927986297, "source": 134959978, "destination": 4224950734, "path": [[5505.73927649367, 3178.6494185794822], [5505.839276494839, 3221.949418577452]]}, {"length": 9.67503378977, "source": 134959978, "destination": 4224950623, "path": [[5505.73927649367, 3178.6494185794822], [5506.189276488271, 3135.1494185791753]]}, {"length": 85.9622382889, "source": 134968171, "destination": 2331404993, "path": [[-5606.060723508222, 942.9994185765622], [-5095.360723508691, 939.7494185776623]]}, {"length": 149.597945288, "source": 134968171, "destination": 2442181956, "path": [[-5606.060723508222, 942.9994185765622], [-5784.7107235104995, 940.8494185763061], [-5823.460723505036, 937.849418576775], [-5860.460723511096, 929.9494185768253], [-5894.61072350872, 918.399418576854], [-5929.410723510387, 902.6994185781234], [-5957.160723511379, 884.9994185773369], [-5977.66072350936, 866.6494185760598], [-5996.06072351122, 844.9494185782669], [-6008.460723506914, 819.5994185768996], [-6013.56072350967, 800.3494185793159], [-6019.060723509994, 765.999418579355], [-6021.21072351025, 707.9494185759927], [-6020.21072350567, 504.64941857697454]]}, {"length": 247.832466141, "source": 134968171, "destination": 2331404990, "path": [[-5606.060723508222, 942.9994185765622], [-5603.410723509228, 391.7994185762552], [-5602.960723507522, 321.1494185784147], [-5580.310723509285, -171.10058142222329]]}, {"length": 18.0187350044, "source": 134959983, "destination": 134959986, "path": [[6958.3892764910615, 3203.199418578606], [7064.639276492812, 3193.349418577185]]}, {"length": 14.4862883846, "source": 134959983, "destination": 3357236918, "path": [[6958.3892764910615, 3203.199418578606], [7007.289276494077, 3256.799418576151]]}, {"length": 207.225673345, "source": 2311060364, "destination": 2003096864, "path": [[-4163.160723507531, 3092.5994185793115], [-4160.760723507906, 2716.599418576493], [-4157.2107235055, 2160.799418579273]]}, {"length": 13.2326670339, "source": 2311060364, "destination": 1806083189, "path": [[-4163.160723507531, 3092.5994185793115], [-4118.310723505658, 3092.9994185768805], [-4084.5607235056036, 3093.399418578002]]}, {"length": 13.2993281872, "source": 2311060364, "destination": 2311060366, "path": [[-4163.160723507531, 3092.5994185793115], [-4204.560723508166, 3092.2994185793586], [-4242.160723507027, 3092.249418578774]]}, {"length": 15.4899020271, "source": 2311060364, "destination": 134959951, "path": [[-4163.160723507531, 3092.5994185793115], [-4163.610723509237, 3162.2494185761243]]}, {"length": 269.440869971, "source": 134959986, "destination": 135086177, "path": [[7064.639276492812, 3193.349418577185], [6600.389276492535, 2706.5994185768714], [6548.839276490526, 2652.8994185781585], [6507.339276488721, 2610.899418577617], [6412.139276491757, 2521.8994185784995], [6333.939276494504, 2460.149418578084], [6246.039276490478, 2402.4494185788117], [6142.38927649069, 2342.949418576268], [6025.6892764911645, 2284.6494185770894]]}, {"length": 15.0453941123, "source": 134959986, "destination": 1279884604, "path": [[7064.639276492812, 3193.349418577185], [7153.889276494851, 3189.699418577163]]}, {"length": 34.8765954704, "source": 134968179, "destination": 2331404993, "path": [[-4888.160723510282, 941.1994185768435], [-5095.360723508691, 939.7494185776623]]}, {"length": 61.3459839061, "source": 134968179, "destination": 2086776740, "path": [[-4888.160723510282, 941.1994185768435], [-4851.210723508359, 802.4494185789877], [-4853.110723509246, 668.1494185762915]]}, {"length": 124.368822056, "source": 134968179, "destination": 134968182, "path": [[-4888.160723510282, 941.1994185768435], [-4149.560723504919, 957.0994185779114]]}, {"length": 64.7547754479, "source": 134968179, "destination": 2086776743, "path": [[-4888.160723510282, 941.1994185768435], [-4890.660723511075, 1021.8494185778582], [-4888.710723506051, 1232.3494185793038]]}, {"length": 62.5891671334, "source": 134968182, "destination": 2086776817, "path": [[-4149.560723504919, 957.0994185779114], [-3777.710723511518, 958.4494185794767]]}, {"length": 124.368822056, "source": 134968182, "destination": 134968179, "path": [[-4149.560723504919, 957.0994185779114], [-4888.160723510282, 941.1994185768435]]}, {"length": 60.6577237642, "source": 134968182, "destination": 2086776715, "path": [[-4149.560723504919, 957.0994185779114], [-4147.810723509338, 684.3494185773125]]}, {"length": 61.8141212823, "source": 134968182, "destination": 2086776761, "path": [[-4149.560723504919, 957.0994185779114], [-4151.310723507606, 1235.0494185788818]]}, {"length": 130.823471105, "source": 2074050025, "destination": 135076344, "path": [[9637.089276495204, 1101.2994185790603], [9632.289276488847, 1689.5494185789062]]}, {"length": 61.9495704533, "source": 134968184, "destination": 2086776817, "path": [[-3409.660723505681, 959.7994185774894], [-3777.710723511518, 958.4494185794767]]}, {"length": 121.903157492, "source": 134968184, "destination": 135012764, "path": [[-3409.660723505681, 959.7994185774894], [-3409.8107235109865, 1507.949418577681]]}, {"length": 7.68332106099, "source": 2139785364, "destination": 2139785360, "path": [[9127.789276490716, -6858.9505814209415], [9082.139276493706, -6859.4005814226475]]}, {"length": 8.81775911134, "source": 2139785364, "destination": 135022976, "path": [[9127.789276490716, -6858.9505814209415], [9127.639276492517, -6819.300581422994]]}, {"length": 6.87741520566, "source": 2139785364, "destination": 1930503139, "path": [[9127.789276490716, -6858.9505814209415], [9168.639276488477, -6859.900581421385]]}, {"length": 187.931563841, "source": 2139785364, "destination": 135022979, "path": [[9127.789276490716, -6858.9505814209415], [9130.939276488447, -7704.000581423287]]}, {"length": 28.6663499733, "source": 2282034042, "destination": 2282033983, "path": [[-8029.860723510751, -16.10058142276216], [-7967.110723505755, -15.50058142285593], [-7955.160723511767, -5.900581420803519], [-7957.060723505549, 62.29941857682775]]}, {"length": 30.4801881028, "source": 885855100, "destination": 2086854536, "path": [[8521.489276489547, -4451.050581423033], [8519.639276492797, -4314.0005814237265]]}, {"length": 49.2538343137, "source": 134959997, "destination": 2086776762, "path": [[7590.689276490537, 3193.499418578938], [7883.239276495146, 3197.8494185764816]]}, {"length": 73.5305534951, "source": 134959997, "destination": 1279884604, "path": [[7590.689276490537, 3193.499418578938], [7515.089276495246, 3192.8994185790316], [7305.539276494244, 3190.849418576391], [7153.889276494851, 3189.699418577163]]}, {"length": 11.5899016938, "source": 134959997, "destination": 1279884662, "path": [[7590.689276490537, 3193.499418578938], [7589.239276491355, 3141.3994185776064]]}, {"length": 8.90472086293, "source": 134959999, "destination": 134960002, "path": [[8173.939276488795, 3199.6494185762003], [8226.839276488818, 3199.5994185791687]]}, {"length": 48.9345879504, "source": 134959999, "destination": 2086776762, "path": [[8173.939276488795, 3199.6494185762003], [7883.239276495146, 3197.8494185764816]]}, {"length": 245.350784496, "source": 134959999, "destination": 135072534, "path": [[8173.939276488795, 3199.6494185762003], [8178.98927649452, 2844.199418579052], [8193.989276492175, 2682.799418579407], [8206.339276490837, 2096.8994185786014]]}, {"length": 122.52016129, "source": 134960002, "destination": 134960003, "path": [[8226.839276488818, 3199.5994185791687], [8954.6892764929, 3203.24941857919]]}, {"length": 60.3344360782, "source": 134960002, "destination": 2086776693, "path": [[8226.839276488818, 3199.5994185791687], [8226.839276488818, 3470.8994185770334]]}, {"length": 8.90472086293, "source": 134960002, "destination": 134959999, "path": [[8226.839276488818, 3199.5994185791687], [8173.939276488795, 3199.6494185762003]]}, {"length": 61.924614741, "source": 134960003, "destination": 2086776696, "path": [[8954.6892764929, 3203.24941857919], [8954.339276492363, 2924.7994185794823]]}, {"length": 122.52016129, "source": 134960003, "destination": 134960002, "path": [[8954.6892764929, 3203.24941857919], [8226.839276488818, 3199.5994185791687]]}, {"length": 112.759243834, "source": 134960003, "destination": 134960005, "path": [[8954.6892764929, 3203.24941857919], [9502.439276488418, 3203.399418577391], [9624.539276494204, 3201.449418579472]]}, {"length": 60.8794508326, "source": 134960003, "destination": 2086776807, "path": [[8954.6892764929, 3203.24941857919], [8954.239276491193, 3476.999418577265]]}, {"length": 60.9467728734, "source": 134968196, "destination": 2086723560, "path": [[-460.0107235077644, 970.54941857877], [-461.7607235104515, 1244.5994185767972]]}, {"length": 122.089844687, "source": 134968196, "destination": 134968194, "path": [[-460.0107235077644, 970.54941857877], [-1185.360723511053, 967.9494185768078]]}, {"length": 112.759243834, "source": 134960005, "destination": 134960003, "path": [[9624.539276494204, 3201.449418579472], [9502.439276488418, 3203.399418577391], [8954.6892764929, 3203.24941857919]]}, {"length": 61.2801411905, "source": 134960005, "destination": 2086776820, "path": [[9624.539276494204, 3201.449418579472], [9623.139276492055, 3476.999418577265]]}, {"length": 10.57070973, "source": 134960005, "destination": 134959815, "path": [[9624.539276494204, 3201.449418579472], [9687.189276490926, 3198.199418577019]]}, {"length": 121.332422006, "source": 134968198, "destination": 134968196, "path": [[260.8392764926748, 973.1994185777637], [-460.0107235077644, 970.54941857877]]}, {"length": 59.679058534, "source": 134968198, "destination": 2086723508, "path": [[260.8392764926748, 973.1994185777637], [262.5392764912249, 704.8494185788456]]}, {"length": 50.9820064884, "source": 2080617351, "destination": 2080617428, "path": [[4292.439276490257, 137.39941857693339], [3989.5392764890403, 136.59941857824265]]}, {"length": 121.904562222, "source": 134968200, "destination": 135012777, "path": [[1002.7892764910007, 975.8994185773417], [999.2892764927319, 1524.0494185775333]]}, {"length": 124.883943485, "source": 134968200, "destination": 134968198, "path": [[1002.7892764910007, 975.8994185773417], [260.8392764926748, 973.1994185777637]]}, {"length": 59.679058534, "source": 134968200, "destination": 2086723447, "path": [[1002.7892764910007, 975.8994185773417], [1004.4892764895508, 707.5494185784237]]}, {"length": 33.7579072069, "source": 2080617354, "destination": 2086723498, "path": [[5376.239276493778, 288.2494185776352], [5365.739276491866, 240.94941857910612], [5360.139276490372, 191.49941857676822], [5360.18927649451, 137.2994185793175]]}, {"length": 34.8554086255, "source": 2080617354, "destination": 2080617414, "path": [[5376.239276493778, 288.2494185776352], [5373.289276491278, 332.5994185772174], [5365.489276492497, 358.09941857678496], [5345.389276492086, 378.3994185759809], [5322.589276488543, 392.649418579083], [5276.989276488564, 409.49941857704175]]}, {"length": 124.042360904, "source": 134968203, "destination": 134968200, "path": [[1739.739276494845, 978.5994185769198], [1002.7892764910007, 975.8994185773417]]}, {"length": 61.7029917636, "source": 134968203, "destination": 2086723577, "path": [[1739.739276494845, 978.5994185769198], [1737.9892764921578, 1256.0494185791526]]}, {"length": 200.513611314, "source": 1933603724, "destination": 135035920, "path": [[6145.439276494358, -5915.2005814233635], [7336.839276490537, -5901.600581420752]]}, {"length": 49.9179854483, "source": 1933603724, "destination": 135035917, "path": [[6145.439276494358, -5915.2005814233635], [5848.839276488605, -5918.600581424016]]}, {"length": 52.3378949901, "source": 1933603724, "destination": 2086854534, "path": [[6145.439276494358, -5915.2005814233635], [6140.98927648854, -5776.950581420692], [6141.83927649492, -5679.900581423425]]}, {"length": 100.941033834, "source": 1933603725, "destination": 1933540864, "path": [[6743.339276489734, -7772.750581423793], [6714.789276493604, -7773.050581423746], [6522.239276492314, -7775.400581422787], [6403.639276491902, -7777.500581422459], [6276.339276489296, -7779.650581422715], [6143.589276490502, -7781.600581420634]]}, {"length": 296.365469516, "source": 1933603725, "destination": 2139783258, "path": [[6743.339276489734, -7772.750581423793], [6746.8392764951095, -7941.950581422219], [6746.8392764951095, -8040.000581420514], [6746.439276490435, -8099.750581422427], [6749.539276491134, -8138.000581421778], [6758.739276492065, -8165.350581421649], [6774.7392764943015, -8190.850581421217], [6801.0392764890075, -8221.50058142057], [6824.7392764888555, -8240.65058142054], [6861.239276489073, -8260.300581422796], [6899.28927648964, -8274.150581421225], [6935.18927648995, -8281.250581422484], [6973.88927649456, -8282.50058142288], [7075.189276491756, -8281.650581423604], [7122.839276490822, -8280.350581422625], [7160.239276494451, -8277.900581422415], [7196.039276493593, -8271.700581421015], [7230.039276493017, -8261.200581422656], [7254.739276490341, -8247.90058142355], [7276.289276489933, -8233.300581423464], [7298.189276490064, -8215.10058142394], [7317.189276491831, -8194.80058142119], [7333.039276488762, -8168.1005814218115], [7341.939276493293, -8143.150581421565], [7345.539276492729, -8121.700581423142], [7347.139276490111, -8096.900581421096], [7345.989276494436, -7908.600581423287], [7343.589276494811, -7764.650581421506]]}, {"length": 101.023726785, "source": 1933603725, "destination": 2139783258, "path": [[6743.339276489734, -7772.750581423793], [6914.339276491432, -7770.90058142349], [7065.839276492625, -7767.950581420991], [7203.2892764895, -7765.400581423165], [7343.589276494811, -7764.650581421506]]}, {"length": 8.40701360643, "source": 1933603725, "destination": 134976422, "path": [[6743.339276489734, -7772.750581423793], [6742.539276494597, -7734.950581422595]]}, {"length": 121.206189465, "source": 134968206, "destination": 134968203, "path": [[2459.8392764900723, 981.1994185788819], [1739.739276494845, 978.5994185769198]]}, {"length": 60.8793027901, "source": 134968206, "destination": 2086723566, "path": [[2459.8392764900723, 981.1994185788819], [2459.239276490166, 707.4494185772551]]}, {"length": 122.31228475, "source": 134968206, "destination": 134968207, "path": [[2459.8392764900723, 981.1994185788819], [3186.489276494342, 986.1994185769163]]}, {"length": 124.358784859, "source": 2080617359, "destination": 135051134, "path": [[910.6892764947361, 2627.499418576207], [919.7392764903611, 2068.3494185789186]]}, {"length": 137.784054563, "source": 2080617359, "destination": 134990159, "path": [[910.6892764947361, 2627.499418576207], [1729.2392764929332, 2630.4994185792907]]}, {"length": 10.1318836374, "source": 2080617362, "destination": 1429422304, "path": [[3997.5392764901585, -412.25058142302373], [3937.3392764900927, -412.3505814206396]]}, {"length": 61.2145845067, "source": 2080617362, "destination": 2080617418, "path": [[3997.5392764901585, -412.25058142302373], [4000.289276490321, -137.0005814216313]]}, {"length": 107.903546949, "source": 2080617362, "destination": 1429422302, "path": [[3997.5392764901585, -412.25058142302373], [4638.639276492995, -411.05058142321127]]}, {"length": 61.2266919916, "source": 2080617362, "destination": 2080617391, "path": [[3997.5392764901585, -412.25058142302373], [3998.889276488171, -628.4505814235786], [4000.2392764932893, -687.5505814214478]]}, {"length": 56.1765930144, "source": 135033667, "destination": 2068973896, "path": [[-6340.160723510735, 5931.949418577887], [-6006.460723504859, 5933.399418577068]]}, {"length": 16.3685864888, "source": 135033667, "destination": 2251802370, "path": [[-6340.160723510735, 5931.949418577887], [-6341.110723511179, 6005.549418578226]]}, {"length": 65.484531481, "source": 135033667, "destination": 1433125507, "path": [[-6340.160723510735, 5931.949418577887], [-6337.310723509404, 5637.499418579495]]}, {"length": 12.8714148233, "source": 135033667, "destination": 135033661, "path": [[-6340.160723510735, 5931.949418577887], [-6383.66072350749, 5931.549418576765], [-6416.6107235053005, 5931.449418579149]]}, {"length": 240.789096829, "source": 134960025, "destination": 134959945, "path": [[-7078.510723509624, 3161.1994185780645], [-6984.160723504829, 3161.499418578018], [-6638.81072350847, 3162.4994185790456], [-6446.860723507087, 3160.5994185781583], [-6117.810723509365, 3159.3494185777618], [-6101.710723505959, 3159.2494185765927], [-6072.060723511186, 3159.0494185778084], [-5648.060723508763, 3161.599418579186]]}, {"length": 132.913537891, "source": 134960025, "destination": 135036835, "path": [[-7078.510723509624, 3161.1994185780645], [-7074.160723504974, 3758.8494185776253]]}, {"length": 11.7324984958, "source": 134960025, "destination": 1965661599, "path": [[-7078.510723509624, 3161.1994185780645], [-7148.21072350702, 3160.9994185792802]]}, {"length": 12.3966191371, "source": 2080617372, "destination": 135007452, "path": [[3988.1892764910276, 406.4994185775106], [3914.539276493656, 406.2494185781418]]}, {"length": 60.0235228548, "source": 2080617372, "destination": 2080617428, "path": [[3988.1892764910276, 406.4994185775106], [3989.5392764890403, 136.59941857824265]]}, {"length": 9.31051036209, "source": 2080617372, "destination": 2080617409, "path": [[3988.1892764910276, 406.4994185775106], [3987.0892764923838, 429.1494185792999], [3986.839276493015, 448.3494185762993]]}, {"length": 60.1793300217, "source": 134968225, "destination": 2086776724, "path": [[8967.889276490838, 1002.8994185766749], [8969.439276491186, 732.2994185763321]]}, {"length": 122.206794204, "source": 134968225, "destination": 134968228, "path": [[8967.889276490838, 1002.8994185766749], [8241.839276493578, 1001.4994185780779]]}, {"length": 114.876658715, "source": 134968225, "destination": 135012821, "path": [[8967.889276490838, 1002.8994185766749], [8964.989276492473, 1519.449418577068]]}, {"length": 52.6326864378, "source": 134968225, "destination": 2074050077, "path": [[8967.889276490838, 1002.8994185766749], [9280.58927649289, 1003.0994185790121]]}, {"length": 48.1390981798, "source": 134976418, "destination": 1933539608, "path": [[6734.339276491141, -6819.350581423578], [6448.289276491437, -6821.950581421987]]}, {"length": 8.9521645905, "source": 134976418, "destination": 1933539613, "path": [[6734.339276491141, -6819.350581423578], [6734.939276491048, -6859.600581421432]]}, {"length": 52.0637542605, "source": 134976418, "destination": 1933539606, "path": [[6734.339276491141, -6819.350581423578], [7043.689276493125, -6815.450581420635]]}, {"length": 122.206794204, "source": 134968228, "destination": 134968225, "path": [[8241.839276493578, 1001.4994185780779], [8967.889276490838, 1002.8994185766749]]}, {"length": 59.420404702, "source": 134968228, "destination": 2086776811, "path": [[8241.839276493578, 1001.4994185780779], [8247.93927649381, 734.3494185789723]]}, {"length": 7.59127365263, "source": 134968228, "destination": 134968231, "path": [[8241.839276493578, 1001.4994185780779], [8196.739276492337, 1001.4994185780779]]}, {"length": 51.6367595268, "source": 134976422, "destination": 1933540841, "path": [[6742.539276494597, -7734.950581422595], [7049.339276491651, -7730.200581423929]]}, {"length": 149.071362759, "source": 134976422, "destination": 1933539715, "path": [[6742.539276494597, -7734.950581422595], [6736.689276493735, -7064.650581423138]]}, {"length": 8.40701360643, "source": 134976422, "destination": 1933603725, "path": [[6742.539276494597, -7734.950581422595], [6743.339276489734, -7772.750581423793]]}, {"length": 49.4514282491, "source": 134976422, "destination": 1933540845, "path": [[6742.539276494597, -7734.950581422595], [6448.739276493143, -7740.050581421798]]}, {"length": 7.59127365263, "source": 134968231, "destination": 134968228, "path": [[8196.739276492337, 1001.4994185780779], [8241.839276493578, 1001.4994185780779]]}, {"length": 127.621895902, "source": 134968231, "destination": 135012837, "path": [[8196.739276492337, 1001.4994185780779], [8202.189276488525, 1575.3494185766215]]}, {"length": 153.573973102, "source": 134968231, "destination": 2086776686, "path": [[8196.739276492337, 1001.4994185780779], [7972.439276493049, 997.8994185786405], [7573.389276494425, 989.7994185763537], [7284.939276495095, 978.0494185775979]]}, {"length": 10.5532166664, "source": 2282034091, "destination": 2282034129, "path": [[-8358.11072350623, -92.80058142380199], [-8357.71072350866, -140.25058142053126]]}, {"length": 10.5954066887, "source": 2080617391, "destination": 2573122320, "path": [[4000.2392764932893, -687.5505814214478], [3937.289276493061, -687.6505814226164]]}, {"length": 125.982283199, "source": 2080617391, "destination": 1942240505, "path": [[4000.2392764932893, -687.5505814214478], [4000.2392764932893, -745.1505814231041], [4002.589276488777, -764.5505814224407], [4003.1892764886834, -850.8505814219802], [4006.289276489383, -898.9505814227527], [4012.239276491414, -950.4505814206254], [4026.4392764939316, -1009.9505814231691], [4042.8892764907687, -1062.5505814232383], [4065.5892764931423, -1114.7005814216016], [4084.58927649491, -1152.2505814234307], [4110.089276494477, -1197.3505814211194], [4123.989276493489, -1220.350581423446], [4136.489276490352, -1237.1505814208206]]}, {"length": 61.2266919916, "source": 2080617391, "destination": 2080617362, "path": [[4000.2392764932893, -687.5505814214478], [3998.889276488171, -628.4505814235786], [3997.5392764901585, -412.25058142302373]]}, {"length": 74.6466623165, "source": 135074736, "destination": 134957816, "path": [[-4142.410723510182, -163.7505814215956], [-4585.910723506004, -165.25058142136118]]}, {"length": 62.1067132273, "source": 135074736, "destination": 3146411777, "path": [[-4142.410723510182, -163.7505814215956], [-3773.410723511006, -163.9005814233485]]}, {"length": 61.847501349, "source": 135074736, "destination": 3146411772, "path": [[-4142.410723510182, -163.7505814215956], [-4140.660723507494, -441.8505814207663]]}, {"length": 61.5805396155, "source": 135074736, "destination": 2086776816, "path": [[-4142.410723510182, -163.7505814215956], [-4144.160723505764, 113.14941857776262]]}, {"length": 47.2606850541, "source": 3085530033, "destination": 3085526232, "path": [[-0.8107235061061147, -9504.100581423812], [-256.4107235087931, -9416.000581421002]]}, {"length": 96.4105469349, "source": 134968242, "destination": 2086776686, "path": [[6712.339276489843, 967.3994185774859], [7249.789276492891, 976.5994185784166], [7284.939276495095, 978.0494185775979]]}, {"length": 11.8406978391, "source": 134968242, "destination": 3935046934, "path": [[6712.339276489843, 967.3994185774859], [6641.9892764884025, 967.1994185787014]]}, {"length": 115.08700219, "source": 134968242, "destination": 135008279, "path": [[6712.339276489843, 967.3994185774859], [6713.339276494424, 449.89941857664917]]}, {"length": 64.0930891308, "source": 2080617396, "destination": 2086723444, "path": [[3781.189276494956, 971.8994185767826], [3780.0392764921753, 1260.0994185767433]]}, {"length": 21.9495974839, "source": 2080617396, "destination": 134968253, "path": [[3781.189276494956, 971.8994185767826], [3911.489276489988, 967.8994185762235]]}, {"length": 100.187125772, "source": 2080617396, "destination": 134968207, "path": [[3781.189276494956, 971.8994185767826], [3499.739276492164, 984.2494185789974], [3362.339276492321, 987.1994185779442], [3186.489276494342, 986.1994185769163]]}, {"length": 8.92897894428, "source": 2080617398, "destination": 2080617369, "path": [[3786.4892764929436, 406.0494185793573], [3786.6892764881754, 446.1994185760432]]}, {"length": 100.483403405, "source": 2080617398, "destination": 134997383, "path": [[3786.4892764929436, 406.0494185793573], [3189.489276493873, 405.39941857886674]]}, {"length": 155.583636296, "source": 134968247, "destination": 134968250, "path": [[5522.6892764892455, 968.8994185772515], [4891.889276493089, 967.9994185773921], [4598.339276491004, 968.3494185779296]]}, {"length": 57.0210372013, "source": 134968247, "destination": 135012827, "path": [[5522.6892764892455, 968.8994185772515], [5521.53927649357, 1225.2994185786292]]}, {"length": 54.5390793561, "source": 134968247, "destination": 2086723516, "path": [[5522.6892764892455, 968.8994185772515], [5524.089276491395, 783.9494185759577], [5521.789276492938, 754.049418578262], [5515.839276490908, 724.0494185793978]]}, {"length": 188.403380288, "source": 134968247, "destination": 3935046934, "path": [[5522.6892764892455, 968.8994185772515], [5875.389276489785, 965.4494185760143], [5916.739276493388, 965.0494185784453], [6320.439276493062, 966.2494185782577], [6641.9892764884025, 967.1994185787014]]}, {"length": 134.334810499, "source": 134968250, "destination": 135012864, "path": [[4598.339276491004, 968.3494185779296], [4598.839276489742, 1572.3994185776746]]}, {"length": 54.7618645903, "source": 134968250, "destination": 2086723556, "path": [[4598.339276491004, 968.3494185779296], [4272.989276493889, 968.149418579145]]}, {"length": 155.583636296, "source": 134968250, "destination": 134968247, "path": [[4598.339276491004, 968.3494185779296], [4891.889276493089, 967.9994185773921], [5522.6892764892455, 968.8994185772515]]}, {"length": 11.5322129838, "source": 2291095711, "destination": 134958929, "path": [[-9245.610723510821, 6485.94941857894], [-9314.110723508405, 6485.849418577772]]}, {"length": 13.6438344602, "source": 2291095711, "destination": 2291095714, "path": [[-9245.610723510821, 6485.94941857894], [-9245.060723507948, 6445.949418576902], [-9244.910723509747, 6424.599418576094]]}, {"length": 99.1887647787, "source": 2291095711, "destination": 2291095710, "path": [[-9245.610723510821, 6485.94941857894], [-8656.410723510533, 6486.74941857763]]}, {"length": 99.3718240935, "source": 2080617404, "destination": 1429422281, "path": [[3786.7392764923125, 136.34941857887384], [3196.3392764922105, 135.34941857784588]]}, {"length": 21.7292251904, "source": 2080617404, "destination": 1429422278, "path": [[3786.7392764923125, 136.34941857887384], [3915.839276494637, 136.54941857765834]]}, {"length": 59.978685317, "source": 2080617404, "destination": 2080617398, "path": [[3786.7392764923125, 136.34941857887384], [3786.4892764929436, 406.0494185793573]]}, {"length": 21.9495974839, "source": 134968253, "destination": 2080617396, "path": [[3911.489276489988, 967.8994185762235], [3781.189276494956, 971.8994185767826]]}, {"length": 60.8464284351, "source": 134968253, "destination": 2086723556, "path": [[3911.489276489988, 967.8994185762235], [4272.989276493889, 968.149418579145]]}, {"length": 55.5535347912, "source": 134968253, "destination": 2086723455, "path": [[3911.489276489988, 967.8994185762235], [3912.839276495106, 718.099418577367]]}, {"length": 20.9482726895, "source": 2080617406, "destination": 2080617424, "path": [[3769.5892764944006, 2637.9494185775343], [3894.03927648857, 2638.3994185792403]]}, {"length": 113.797689123, "source": 2080617409, "destination": 135107888, "path": [[3986.839276493015, 448.3494185762993], [4662.939276492751, 450.0494185784021]]}, {"length": 9.31051036209, "source": 2080617409, "destination": 2080617372, "path": [[3986.839276493015, 448.3494185762993], [3987.0892764923838, 429.1494185792999], [3988.1892764910276, 406.4994185775106]]}, {"length": 123.008797248, "source": 2080617409, "destination": 2080617430, "path": [[3986.839276493015, 448.3494185762993], [3986.589276493646, 488.8994185776596], [4663.839276489057, 489.8994185786876]]}, {"length": 22.6401446782, "source": 135074755, "destination": 3148258786, "path": [[-2659.510723511005, -161.30058142138637], [-2659.1107235063305, -224.55058142156759], [-2658.8607235069617, -263.100581420872]]}, {"length": 124.944460398, "source": 135074755, "destination": 135074757, "path": [[-2659.510723511005, -161.30058142138637], [-2583.610723505103, -155.05058142295525], [-2016.110723509712, -152.4505814209931], [-1917.960723510248, -158.60058142180833]]}, {"length": 120.547917381, "source": 135074757, "destination": 135019146, "path": [[-1917.960723510248, -158.60058142180833], [-1918.360723507817, -93.60058142249272], [-1921.4107235114852, 383.4494185781523]]}, {"length": 124.50930398, "source": 135074757, "destination": 135074759, "path": [[-1917.960723510248, -158.60058142180833], [-1817.3107235099906, -158.2505814212709], [-1178.2107235092099, -155.9005814222303]]}, {"length": 103.268980886, "source": 2080617414, "destination": 134936066, "path": [[5276.989276488564, 409.49941857704175], [4663.439276491488, 408.7494185789353]]}, {"length": 121.148473362, "source": 135074759, "destination": 135021864, "path": [[-1178.2107235092099, -155.9005814222303], [-1181.7107235074786, 388.84941857730837]]}, {"length": 122.085747579, "source": 135074759, "destination": 135074761, "path": [[-1178.2107235092099, -155.9005814222303], [-452.8607235059212, -153.25058142323655]]}, {"length": 60.8577587655, "source": 135074759, "destination": 2086776831, "path": [[-1178.2107235092099, -155.9005814222303], [-1176.4607235065228, -429.55058142268854]]}, {"length": 60.857832813, "source": 135074761, "destination": 2086776746, "path": [[-452.8607235059212, -153.25058142323655], [-451.11072351033954, -426.9005814236948]]}, {"length": 120.903804357, "source": 135074761, "destination": 135025165, "path": [[-452.8607235059212, -153.25058142323655], [-456.3107235071584, 390.39941857765825]]}, {"length": 121.328299321, "source": 135074761, "destination": 135074765, "path": [[-452.8607235059212, -153.25058142323655], [267.989276494518, -150.6505814212744]]}, {"length": 61.2145845067, "source": 2080617418, "destination": 2080617362, "path": [[4000.289276490321, -137.0005814216313], [3997.5392764901585, -412.25058142302373]]}, {"length": 60.9454187027, "source": 2080617418, "destination": 2080617428, "path": [[4000.289276490321, -137.0005814216313], [3998.489276490602, -87.25058142289299], [3994.639276491796, 8.799418576899143], [3987.889276494627, 43.29941857861286], [3989.5392764890403, 136.59941857824265]]}, {"length": 107.913729787, "source": 2080617418, "destination": 135010413, "path": [[4000.289276490321, -137.0005814216313], [4175.58927649253, -136.40058142172506], [4641.4392764901895, -134.70058142317498]]}, {"length": 48.0884579967, "source": 2080617420, "destination": 135018858, "path": [[5337.339276493935, 453.44941857905496], [5381.589276488796, 464.69941857907315], [5400.339276491195, 472.7994185778073], [5419.139276490625, 488.0494185783846], [5435.2392764940305, 510.34941857608374], [5488.1892764910845, 621.6494185764532]]}, {"length": 31.0042319519, "source": 2080617420, "destination": 1393207231, "path": [[5337.339276493935, 453.44941857905496], [5521.53927649357, 454.3994185759459]]}, {"length": 124.787199693, "source": 135074765, "destination": 135049946, "path": [[267.989276494518, -150.6505814212744], [1009.3892764899692, -147.90058142111207]]}, {"length": 60.8577587655, "source": 135074765, "destination": 2086715247, "path": [[267.989276494518, -150.6505814212744], [269.73927649009966, -424.30058142173266]]}, {"length": 121.378801845, "source": 135074767, "destination": 135074770, "path": [[1750.789276492526, -145.20058142153403], [2471.9392764893655, -142.6005814231246]]}, {"length": 62.2476794742, "source": 135074767, "destination": 1429422282, "path": [[1750.789276492526, -145.20058142153403], [1749.0392764898388, 134.69941857735535]]}, {"length": 124.36831478, "source": 2080617424, "destination": 135007464, "path": [[3894.03927648857, 2638.3994185792403], [3902.289276489057, 2079.199418577815]]}, {"length": 117.121854482, "source": 2080617424, "destination": 135088446, "path": [[3894.03927648857, 2638.3994185792403], [4589.839276491148, 2640.8994185764814]]}, {"length": 10.5532166664, "source": 2282034129, "destination": 2282034091, "path": [[-8357.71072350866, -140.25058142053126], [-8358.11072350623, -92.80058142380199]]}, {"length": 78.9063368589, "source": 2282034129, "destination": 2282034140, "path": [[-8357.71072350866, -140.25058142053126], [-8444.910723511612, -141.15058142394332], [-8650.81072350904, -141.35058142272783], [-8826.510723508818, -142.15058142141856]]}, {"length": 123.420518439, "source": 2282034129, "destination": 2282033975, "path": [[-8357.71072350866, -140.25058142053126], [-8201.360723511187, -139.50058142242483], [-7964.910723508467, -138.05058142324356], [-7909.110723510083, -137.85058142090634], [-7872.31072350636, -119.50058142318198], [-7872.31072350636, 11.849418577014603], [-7872.210723505191, 62.59941857678086]]}, {"length": 61.7070814883, "source": 135074770, "destination": 1429422306, "path": [[2471.9392764893655, -142.6005814231246], [2476.589276490415, -420.05058142180474]]}, {"length": 122.043698138, "source": 135074770, "destination": 135074774, "path": [[2471.9392764893655, -142.6005814231246], [3197.0392764932853, -139.95058142057815]]}, {"length": 60.9454187027, "source": 2080617428, "destination": 2080617418, "path": [[3989.5392764890403, 136.59941857824265], [3987.889276494627, 43.29941857861286], [3994.639276491796, 8.799418576899143], [3998.489276490602, -87.25058142289299], [4000.289276490321, -137.0005814216313]]}, {"length": 60.0235228548, "source": 2080617428, "destination": 2080617372, "path": [[3989.5392764890403, 136.59941857824265], [3988.1892764910276, 406.4994185775106]]}, {"length": 12.4042506219, "source": 2080617428, "destination": 1429422278, "path": [[3989.5392764890403, 136.59941857824265], [3915.839276494637, 136.54941857765834]]}, {"length": 50.9820064884, "source": 2080617428, "destination": 2080617351, "path": [[3989.5392764890403, 136.59941857824265], [4292.439276490257, 137.39941857693339]]}, {"length": 60.8896648972, "source": 135033678, "destination": 135033675, "path": [[4963.389276490205, 5965.649418577357], [4601.689276491072, 5964.699418576913]]}, {"length": 57.8660857372, "source": 135033678, "destination": 2069036508, "path": [[4963.389276490205, 5965.649418577357], [4962.589276495066, 6225.849418576956]]}, {"length": 90.2494985623, "source": 135033678, "destination": 135018871, "path": [[4963.389276490205, 5965.649418577357], [5499.48927649524, 5967.8994185787815]]}, {"length": 61.2241538287, "source": 135074774, "destination": 1429422281, "path": [[3197.0392764932853, -139.95058142057815], [3196.3392764922105, 135.34941857784588]]}, {"length": 99.9947294444, "source": 135074774, "destination": 1429422294, "path": [[3197.0392764932853, -139.95058142057815], [3791.1392764939933, -137.80058142387475]]}, {"length": 61.2028048256, "source": 135074774, "destination": 1429422305, "path": [[3197.0392764932853, -139.95058142057815], [3199.089276492373, -415.1505814213863]]}, {"length": 61.1902864298, "source": 135074776, "destination": 1429422304, "path": [[3930.4892764917554, -137.2505814210001], [3937.3392764900927, -412.3505814206396]]}, {"length": 11.7482357458, "source": 135074776, "destination": 2080617418, "path": [[3930.4892764917554, -137.2505814210001], [4000.289276490321, -137.0005814216313]]}, {"length": 197.336914946, "source": 134976474, "destination": 134982531, "path": [[7393.889276492871, -8642.650581421662], [7933.239276489701, -8625.90058142132], [8566.18927649322, -8625.200581423798]]}, {"length": 122.27020063, "source": 135074779, "destination": 135043185, "path": [[5439.089276492837, -131.80058142125972], [5437.339276490149, -182.9505814221477], [5437.789276491856, -264.05058142131566], [5441.939276494168, -291.0005814236172], [5443.0892764898435, -585.0505814208873], [5439.939276492112, -640.7505814216563], [5442.489276489937, -681.3005814230166]]}, {"length": 100.120628735, "source": 135074779, "destination": 1942302106, "path": [[5439.089276492837, -131.80058142125972], [5596.2392764925535, -131.2005814213535], [5998.289276490709, -130.55058142086295], [6033.939276491651, -130.75058142320017]]}, {"length": 78.9063368589, "source": 2282034140, "destination": 2282034129, "path": [[-8826.510723508818, -142.15058142141856], [-8650.81072350904, -141.35058142272783], [-8444.910723511612, -141.15058142394332], [-8357.71072350866, -140.25058142053126]]}, {"length": 121.672006818, "source": 135074782, "destination": 135074784, "path": [[6086.939276492842, -130.30058142149414], [6809.839276492368, -130.15058142329394]]}, {"length": 60.9137869723, "source": 135074782, "destination": 2086776754, "path": [[6086.939276492842, -130.30058142149414], [6084.739276488449, 143.59941857833292]]}, {"length": 60.9801104274, "source": 135074782, "destination": 2086854556, "path": [[6086.939276492842, -130.30058142149414], [6088.639276491393, -404.5005814212743]]}, {"length": 61.3356366251, "source": 135074784, "destination": 2086776744, "path": [[6809.839276492368, -130.15058142329394], [6808.3392764890505, 145.64941857742042]]}, {"length": 121.522322235, "source": 135074784, "destination": 135016272, "path": [[6809.839276492368, -130.15058142329394], [7531.839276488483, -127.15058142376279]]}, {"length": 60.5573468565, "source": 135074784, "destination": 2086854507, "path": [[6809.839276492368, -130.15058142329394], [6811.339276488581, -402.4505814221868]]}, {"length": 98.1701276001, "source": 1483977699, "destination": 1428267566, "path": [[-2305.6107235106538, -4822.7005814212025], [-2516.360723511468, -4824.500581420921], [-2513.4107235089687, -5084.70058142052], [-2492.5607235104508, -5099.650581421145]]}, {"length": 107.142181069, "source": 2282034159, "destination": 2282033848, "path": [[-9358.160723508036, -162.1505814206614], [-9359.310723510816, 12.199418577552024], [-9359.660723511353, 174.84941857759395], [-9358.510723508572, 266.09941857813624], [-9335.01072351106, 275.4494185772671], [-9328.860723506694, 308.54941857683116]]}, {"length": 40.726525822, "source": 1483977712, "destination": 135057560, "path": [[-2136.610723511012, -5097.500581420889], [-1894.6107235109366, -5096.000581421123]]}, {"length": 46.1790377479, "source": 1483977712, "destination": 1483977715, "path": [[-2136.610723511012, -5097.500581420889], [-2411.010723506024, -5099.150581422407]]}, {"length": 76.8218438571, "source": 1483977712, "destination": 1483977715, "path": [[-2136.610723511012, -5097.500581420889], [-2135.9107235099373, -5051.550581423925], [-2138.0607235101934, -5041.650581421919], [-2146.110723508343, -5028.400581423398], [-2159.2607235092487, -5017.900581421486], [-2177.5107235058044, -5012.9005814234515], [-2368.660723504945, -5014.000581422096], [-2385.460723509425, -5016.800581422842], [-2399.3107235114053, -5026.700581421295], [-2407.360723509555, -5042.750581420563], [-2411.010723506024, -5099.150581422407]]}, {"length": 88.5496216013, "source": 135033683, "destination": 135018882, "path": [[6090.839276488679, 5970.399418576022], [5564.839276495093, 5967.8994185787815]]}, {"length": 60.1349833457, "source": 135033683, "destination": 2069037011, "path": [[6090.839276488679, 5970.399418576022], [6092.539276494335, 5699.999418578017]]}, {"length": 20.7902093719, "source": 135033683, "destination": 135033686, "path": [[6090.839276488679, 5970.399418576022], [6214.339276489511, 5970.399418576022]]}, {"length": 98.5026288947, "source": 1483977718, "destination": 135057560, "path": [[-1321.260723507578, -5133.00058142363], [-1351.0107235106261, -5112.65058142385], [-1386.660723511568, -5106.45058142245], [-1863.0107235111382, -5100.850581420957], [-1894.6107235109366, -5096.000581421123]]}, {"length": 24.1654967559, "source": 1483977719, "destination": 1428267841, "path": [[-2488.8107235057078, -5359.700581422544], [-2632.4107235069505, -5359.950581421913]]}, {"length": 283.944627397, "source": 1483977719, "destination": 134968410, "path": [[-2488.8107235057078, -5359.700581422544], [-1125.7607235108935, -5357.250581422335], [-1124.6607235051442, -5602.600581422479]]}, {"length": 57.8360178638, "source": 1483977719, "destination": 1428267566, "path": [[-2488.8107235057078, -5359.700581422544], [-2492.5607235104508, -5099.650581421145]]}, {"length": 15.0331088537, "source": 2309493752, "destination": 2312746290, "path": [[-3435.2107235093854, 6448.549418578864], [-3345.9107235103147, 6448.849418578817]]}, {"length": 17.5666467184, "source": 2309493752, "destination": 2309493756, "path": [[-3435.2107235093854, 6448.549418578864], [-3539.560723510249, 6448.399418577111]]}, {"length": 220.00204381, "source": 1483977721, "destination": 1483977720, "path": [[-4627.06072350727, -5370.900581421978], [-3319.760723506704, -5365.050581421116]]}, {"length": 46.969155109, "source": 1483977721, "destination": 4720043355, "path": [[-4627.06072350727, -5370.900581421978], [-4628.160723505915, -5582.100581420946]]}, {"length": 58.0219389715, "source": 1483977721, "destination": 134957798, "path": [[-4627.06072350727, -5370.900581421978], [-4625.76072350629, -5110.000581421304]]}, {"length": 57.4214196505, "source": 134968314, "destination": 2062743232, "path": [[10343.839276494293, 1083.3994185794893], [10002.689276490173, 1083.9494185788112]]}, {"length": 134.325316703, "source": 134968314, "destination": 135012851, "path": [[10343.839276494293, 1083.3994185794893], [10339.839276490182, 1687.39941857865]]}, {"length": 128.70955014, "source": 134968314, "destination": 135079428, "path": [[10343.839276494293, 1083.3994185794893], [10347.239276491393, 504.64941857697454]]}, {"length": 122.061568152, "source": 2069036476, "destination": 2069036496, "path": [[3887.339276488433, 5129.499418575989], [3162.2392764916185, 5129.499418575989]]}, {"length": 121.435666299, "source": 2069036476, "destination": 2069036953, "path": [[3887.339276488433, 5129.499418575989], [4608.689276494715, 5134.599418578745]]}, {"length": 60.7356800022, "source": 2069036476, "destination": 134954309, "path": [[3887.339276488433, 5129.499418575989], [3889.339276490489, 4856.399418578405]]}, {"length": 61.4695009835, "source": 2069036476, "destination": 134985687, "path": [[3887.339276488433, 5129.499418575989], [3885.3392764934824, 5405.89941857661]]}, {"length": 38.1545165195, "source": 1483977724, "destination": 1483977725, "path": [[-737.860723511119, -5438.950581421409], [-801.7107235076537, -5405.050581423155], [-875.6107235114996, -5403.700581421589], [-874.4107235116871, -5460.300581422217]]}, {"length": 25.4908802466, "source": 1483977724, "destination": 1483977725, "path": [[-737.860723511119, -5438.950581421409], [-758.8607235078371, -5461.000581423292], [-874.4107235116871, -5460.300581422217]]}, {"length": 32.3619835501, "source": 1483977724, "destination": 1483977727, "path": [[-737.860723511119, -5438.950581421409], [-580.4107235078959, -5522.500581420786]]}, {"length": 17.5041989824, "source": 1483977725, "destination": 1483977728, "path": [[-874.4107235116871, -5460.300581422217], [-872.8107235072002, -5539.00058142176]]}, {"length": 38.1545165195, "source": 1483977725, "destination": 1483977724, "path": [[-874.4107235116871, -5460.300581422217], [-875.6107235114996, -5403.700581421589], [-801.7107235076537, -5405.050581423155], [-737.860723511119, -5438.950581421409]]}, {"length": 25.4908802466, "source": 1483977725, "destination": 1483977724, "path": [[-874.4107235116871, -5460.300581422217], [-758.8607235078371, -5461.000581423292], [-737.860723511119, -5438.950581421409]]}, {"length": 51.2452176454, "source": 1483977727, "destination": 1483977728, "path": [[-580.4107235078959, -5522.500581420786], [-595.5607235108573, -5539.650581422251], [-872.8107235072002, -5539.00058142176]]}, {"length": 29.7434390439, "source": 1483977727, "destination": 1483977730, "path": [[-580.4107235078959, -5522.500581420786], [-435.7107235080093, -5599.300581422995]]}, {"length": 32.3619835501, "source": 1483977727, "destination": 1483977724, "path": [[-580.4107235078959, -5522.500581420786], [-737.860723511119, -5438.950581421409]]}, {"length": 18.5831106835, "source": 1483977728, "destination": 1483977732, "path": [[-872.8107235072002, -5539.00058142176], [-871.0607235116186, -5622.550581421137]]}, {"length": 17.5041989824, "source": 1483977728, "destination": 1483977725, "path": [[-872.8107235072002, -5539.00058142176], [-874.4107235116871, -5460.300581422217]]}, {"length": 51.2452176454, "source": 1483977728, "destination": 1483977727, "path": [[-872.8107235072002, -5539.00058142176], [-595.5607235108573, -5539.650581422251], [-580.4107235078959, -5522.500581420786]]}, {"length": 29.7434390439, "source": 1483977730, "destination": 1483977727, "path": [[-435.7107235080093, -5599.300581422995], [-580.4107235078959, -5522.500581420786]]}, {"length": 75.9048153175, "source": 1483977730, "destination": 1483977732, "path": [[-435.7107235080093, -5599.300581422995], [-456.010723510758, -5621.800581423031], [-871.0607235116186, -5622.550581421137]]}, {"length": 33.1875043928, "source": 1483977730, "destination": 1483977735, "path": [[-435.7107235080093, -5599.300581422995], [-274.26072350777986, -5685.000581422628]]}, {"length": 18.5831106835, "source": 1483977732, "destination": 1483977728, "path": [[-871.0607235116186, -5622.550581421137], [-872.8107235072002, -5539.00058142176]]}, {"length": 18.7386286806, "source": 1483977732, "destination": 1483977737, "path": [[-871.0607235116186, -5622.550581421137], [-869.3107235089315, -5706.800581421589]]}, {"length": 75.9048153175, "source": 1483977732, "destination": 1483977730, "path": [[-871.0607235116186, -5622.550581421137], [-456.010723510758, -5621.800581423031], [-435.7107235080093, -5599.300581422995]]}, {"length": 20.7902093719, "source": 135033686, "destination": 135033683, "path": [[6214.339276489511, 5970.399418576022], [6090.839276488679, 5970.399418576022]]}, {"length": 109.340150336, "source": 135033686, "destination": 135008310, "path": [[6214.339276489511, 5970.399418576022], [6863.839276491035, 5973.399418579106]]}, {"length": 58.6226100897, "source": 135033686, "destination": 2069036510, "path": [[6214.339276489511, 5970.399418576022], [6212.839276493298, 6233.999418576275]]}, {"length": 102.268666607, "source": 1483977735, "destination": 1483977737, "path": [[-274.26072350777986, -5685.000581422628], [-294.56072351052853, -5704.650581421333], [-869.3107235089315, -5706.800581421589]]}, {"length": 33.1875043928, "source": 1483977735, "destination": 1483977730, "path": [[-274.26072350777986, -5685.000581422628], [-435.7107235080093, -5599.300581422995]]}, {"length": 31.1307039766, "source": 1483977735, "destination": 1483977753, "path": [[-274.26072350777986, -5685.000581422628], [-187.81072351004013, -5730.850581421975], [-187.81072351004013, -5790.950581420873]]}, {"length": 22.3640959176, "source": 2069376909, "destination": 2069376834, "path": [[-4255.51072351027, 5320.799418576882], [-4388.360723510232, 5320.499418576929]]}, {"length": 24.8413574353, "source": 2069376909, "destination": 2069376762, "path": [[-4255.51072351027, 5320.799418576882], [-4256.060723506039, 5432.4994185783735]]}, {"length": 75.1811902635, "source": 2069376909, "destination": 2069376794, "path": [[-4255.51072351027, 5320.799418576882], [-4252.160723510201, 4982.749418577015]]}, {"length": 13.1642277736, "source": 2069376909, "destination": 2069376863, "path": [[-4255.51072351027, 5320.799418576882], [-4177.3107235059115, 5320.549418577513]]}, {"length": 134.468052824, "source": 1483977737, "destination": 1483977753, "path": [[-869.3107235089315, -5706.800581421589], [-867.4107235080442, -5797.150581422273], [-187.81072351004013, -5790.950581420873]]}, {"length": 18.7386286806, "source": 1483977737, "destination": 1483977732, "path": [[-869.3107235089315, -5706.800581421589], [-871.0607235116186, -5622.550581421137]]}, {"length": 102.268666607, "source": 1483977737, "destination": 1483977735, "path": [[-869.3107235089315, -5706.800581421589], [-294.56072351052853, -5704.650581421333], [-274.26072350777986, -5685.000581422628]]}, {"length": 51.5883585409, "source": 1667888138, "destination": 135104809, "path": [[-3558.9107235054485, -3568.8505814235327], [-3527.9107235055562, -3514.750581423698], [-3492.860723511626, -3453.6505814237726], [-3478.1107235062336, -3421.4505814205154], [-3472.2607235053715, -3390.2505814218384], [-3472.5107235047403, -3349.4505814211097]]}, {"length": 2.79536086051, "source": 1667888138, "destination": 2960628140, "path": [[-3558.9107235054485, -3568.8505814235327], [-3570.510723506004, -3577.850581422126]]}, {"length": 39.1197207464, "source": 1667888138, "destination": 1667888180, "path": [[-3558.9107235054485, -3568.8505814235327], [-3530.860723508056, -3555.400581422674], [-3498.7107235053827, -3549.0505814230746], [-3465.5607235052344, -3550.4505814216714], [-3434.560723505342, -3559.4005814232332], [-3408.610723511174, -3575.100581421964], [-3390.260723506344, -3596.0005814210663], [-3381.160723506582, -3620.200581423205]]}, {"length": 54.5568425378, "source": 4958639115, "destination": 1483977825, "path": [[4033.689276489838, -7057.750581420663], [3985.089276490328, -7060.250581421456], [3935.389276492174, -7051.900581423353], [3919.939276492812, -7030.150581421423], [3935.389276492174, -6984.200581420908], [3967.4392764936783, -6921.550581420633], [3969.9892764915035, -6890.950581421862]]}, {"length": 42.0920694561, "source": 4224963598, "destination": 4224950844, "path": [[7395.1392764897155, 4568.649418576598], [7538.889276489158, 4436.449418577126], [7542.88927649327, 4418.649418578724]]}, {"length": 60.2758737396, "source": 4224963598, "destination": 4224950605, "path": [[7395.1392764897155, 4568.649418576598], [7378.239276491172, 4557.24941857838], [7395.68927649259, 4525.2994185780435], [7407.739276494851, 4497.899418577589], [7417.139276491014, 4473.5494185772495], [7422.489276493138, 4448.649418577588], [7426.539276494282, 4421.249418577134], [7428.539276489232, 4396.899418576794], [7427.189276491219, 4368.949418577017], [7423.189276494213, 4337.499418578972], [7416.33927648877, 4309.649418576811]]}, {"length": 47.2888043161, "source": 4224963598, "destination": 4224963686, "path": [[7395.1392764897155, 4568.649418576598], [7332.539276490024, 4625.949418578301], [7236.5392764908165, 4713.099418577116], [7215.539276494099, 4732.149418579467]]}, {"length": 11.7405616737, "source": 4224963607, "destination": 4224963674, "path": [[6975.789276488342, 3913.749418579471], [7045.539276489876, 3913.6994185788863]]}, {"length": 6.52296925489, "source": 4224963607, "destination": 4224843493, "path": [[6975.789276488342, 3913.749418579471], [6937.039276493806, 3913.749418579471]]}, {"length": 12.6424627703, "source": 4224963607, "destination": 4224963629, "path": [[6975.789276488342, 3913.749418579471], [6975.489276491942, 3970.599418579468]]}, {"length": 12.7319705637, "source": 1483977753, "destination": 1483977761, "path": [[-187.81072351004013, -5790.950581420873], [-187.81072351004013, -5848.200581421992]]}, {"length": 134.468052824, "source": 1483977753, "destination": 1483977737, "path": [[-187.81072351004013, -5790.950581420873], [-867.4107235080442, -5797.150581422273], [-869.3107235089315, -5706.800581421589]]}, {"length": 31.1307039766, "source": 1483977753, "destination": 1483977735, "path": [[-187.81072351004013, -5790.950581420873], [-187.81072351004013, -5730.850581421975], [-274.26072350777986, -5685.000581422628]]}, {"length": 10.1563165831, "source": 4224963615, "destination": 135097480, "path": [[7425.339276494469, 4684.949418578554], [7379.339276489816, 4655.399418577844]]}, {"length": 120.908039912, "source": 4224963615, "destination": 4224963657, "path": [[7425.339276494469, 4684.949418578554], [7400.239276492471, 4707.649418577375], [7308.3892764884695, 4790.999418577968], [7221.839276489562, 4869.599418576343], [7157.989276493026, 4913.099418576649], [7147.639276489315, 4917.899418579453], [7087.989276492124, 4947.6994185759795], [7021.839276490027, 4971.449418576412], [6941.839276493056, 4990.349418577011], [6912.039276492977, 4994.149418578786], [6868.589276493253, 4998.399418578714]]}, {"length": 54.7348603547, "source": 4224963615, "destination": 4224963626, "path": [[7425.339276494469, 4684.949418578554], [7456.189276489056, 4656.599418577656], [7630.88927649136, 4494.249418577567]]}, {"length": 107.439897473, "source": 4224963615, "destination": 2069036756, "path": [[7425.339276494469, 4684.949418578554], [7449.3392764907185, 4700.399418577917], [7479.8392764918735, 4728.399418578278], [7502.8392764906475, 4761.899418578963], [7515.339276494615, 4796.8994185794145], [7518.839276492883, 4827.899418579307], [7517.239276488397, 5145.749418577594]]}, {"length": 3.30233415615, "source": 2074159280, "destination": 1999574945, "path": [[9597.389276493119, -9498.900581423442], [9597.689276489518, -9513.750581422897]]}, {"length": 29.9230668479, "source": 2074159280, "destination": 2074159346, "path": [[9597.389276493119, -9498.900581423442], [9639.28927649249, -9483.000581422373], [9660.789276495052, -9471.80058142294], [9680.889276488359, -9460.650581420537], [9702.339276493887, -9440.350581421342], [9722.989276490069, -9409.600581420818]]}, {"length": 117.656140751, "source": 2074159280, "destination": 1930503550, "path": [[9597.389276493119, -9498.900581423442], [9596.889276494381, -9476.200581421068], [9609.139276491875, -9474.700581421303], [9622.939276489717, -9471.700581421772], [9637.539276489804, -9466.950581423105], [9652.13927648989, -9459.750581420678], [9663.989276489814, -9449.90058142281], [9672.639276494976, -9438.0005814223], [9675.039276494601, -9423.950581421537], [9675.789276492707, -9383.350581423145], [9673.83927649479, -9239.450581421948], [9673.439276490115, -9137.950581422416], [9673.439276490115, -9033.450581423353], [9672.889276494345, -9004.15058142201]]}, {"length": 157.534873109, "source": 1483977762, "destination": 1483977761, "path": [[-1123.9107235070378, -5854.450581423976], [-187.81072351004013, -5848.200581421992]]}, {"length": 56.0091694308, "source": 1483977762, "destination": 134968410, "path": [[-1123.9107235070378, -5854.450581423976], [-1124.6607235051442, -5602.600581422479]]}, {"length": 252.962491106, "source": 1483977762, "destination": 1483977763, "path": [[-1123.9107235070378, -5854.450581423976], [-2627.110723508963, -5857.800581424044]]}, {"length": 53.851909414, "source": 1483977762, "destination": 135094533, "path": [[-1123.9107235070378, -5854.450581423976], [-1123.1607235089314, -6096.600581422252]]}, {"length": 54.3350071789, "source": 1483977763, "destination": 135090896, "path": [[-2627.110723508963, -5857.800581424044], [-2622.6607235102506, -6102.1005814225755]]}, {"length": 252.962491106, "source": 1483977763, "destination": 1483977762, "path": [[-2627.110723508963, -5857.800581424044], [-1123.9107235070378, -5854.450581423976]]}, {"length": 115.395023275, "source": 1483977763, "destination": 1483977764, "path": [[-2627.110723508963, -5857.800581424044], [-3312.7607235101664, -5865.4505814210725]]}, {"length": 55.3804034548, "source": 1483977763, "destination": 134968407, "path": [[-2627.110723508963, -5857.800581424044], [-2631.660723508844, -5608.800581423879]]}, {"length": 115.395023275, "source": 1483977764, "destination": 1483977763, "path": [[-3312.7607235101664, -5865.4505814210725], [-2627.110723508963, -5857.800581424044]]}, {"length": 53.1665543347, "source": 1483977764, "destination": 135104883, "path": [[-3312.7607235101664, -5865.4505814210725], [-3308.8107235101916, -6104.5005814222]]}, {"length": 55.390573917, "source": 1483977764, "destination": 134968405, "path": [[-3312.7607235101664, -5865.4505814210725], [-3316.8607235083414, -5616.400581423875]]}, {"length": 9.18080113806, "source": 4224963626, "destination": 4224850297, "path": [[7630.88927649136, 4494.249418577567], [7664.1892764897075, 4461.549418579125]]}, {"length": 9.9356177611, "source": 4224963626, "destination": 4224850363, "path": [[7630.88927649136, 4494.249418577567], [7592.289276495023, 4460.449418576928]]}, {"length": 54.7348603547, "source": 4224963626, "destination": 4224963615, "path": [[7630.88927649136, 4494.249418577567], [7456.189276489056, 4656.599418577656], [7425.339276494469, 4684.949418578554]]}, {"length": 8.62502899237, "source": 1483977772, "destination": 1916976464, "path": [[-187.81072351004013, -6093.000581422813], [-136.56072351153625, -6092.80058142403]]}, {"length": 54.4410626967, "source": 1483977772, "destination": 1483977761, "path": [[-187.81072351004013, -6093.000581422813], [-187.81072351004013, -5848.200581421992]]}, {"length": 157.403404458, "source": 1483977772, "destination": 135094533, "path": [[-187.81072351004013, -6093.000581422813], [-1123.1607235089314, -6096.600581422252]]}, {"length": 117.224309453, "source": 135022770, "destination": 134979299, "path": [[8954.339276492363, -1730.1005814225334], [9650.83927648891, -1727.60058142174]]}, {"length": 7.78354759499, "source": 135022770, "destination": 135022772, "path": [[8954.339276492363, -1730.1005814225334], [8954.339276492363, -1765.1005814229848]]}, {"length": 52.38664111, "source": 135022770, "destination": 2086854575, "path": [[8954.339276492363, -1730.1005814225334], [8951.239276491662, -1494.5505814232263]]}, {"length": 10.7205601535, "source": 1667888175, "destination": 1667888186, "path": [[-3544.710723510036, -3699.2505814232854], [-3515.4607235057256, -3708.800581421201], [-3483.8107235088955, -3711.4505814237473]]}, {"length": 30.888882093, "source": 1667888175, "destination": 2960628140, "path": [[-3544.710723510036, -3699.2505814232854], [-3568.110723506379, -3684.40058142383], [-3585.110723506091, -3665.1005814221094], [-3594.210723505853, -3643.0005814231945], [-3594.710723511696, -3619.850581422668], [-3586.610723509409, -3597.5505814214157], [-3570.510723506004, -3577.850581422126]]}, {"length": 114.792430018, "source": 1667888175, "destination": 2960628006, "path": [[-3544.710723510036, -3699.2505814232854], [-3617.5107235081327, -3671.6505814240463], [-3826.3107235110283, -3554.3005814240305], [-4079.960723508691, -3382.3005814213047]]}, {"length": 80.1634380211, "source": 1667888180, "destination": 2960628168, "path": [[-3381.160723506582, -3620.200581423205], [-3272.3607235070062, -3749.750581423683], [-3205.3607235056347, -3811.350581422346], [-3178.9107235056235, -3829.3505814230857], [-3165.4607235083176, -3837.2505814230353], [-3126.710723506676, -3848.9505814212066], [-3053.0107235051673, -3850.9505814232625]]}, {"length": 39.1197207464, "source": 1667888180, "destination": 1667888138, "path": [[-3381.160723506582, -3620.200581423205], [-3390.260723506344, -3596.0005814210663], [-3408.610723511174, -3575.100581421964], [-3434.560723505342, -3559.4005814232332], [-3465.5607235052344, -3550.4505814216714], [-3498.7107235053827, -3549.0505814230746], [-3530.860723508056, -3555.400581422674], [-3558.9107235054485, -3568.8505814235327]]}, {"length": 29.8088009507, "source": 1667888180, "destination": 1667888186, "path": [[-3381.160723506582, -3620.200581423205], [-3382.710723506932, -3646.9505814231698], [-3395.6607235055003, -3671.900581423415], [-3418.6607235113797, -3692.350581420811], [-3449.1107235083973, -3706.000581424007], [-3483.8107235088955, -3711.4505814237473]]}, {"length": 123.460089283, "source": 134968373, "destination": 134959131, "path": [[-8546.810723508714, 950.9994185776804], [-9280.31072351132, 950.9994185776804]]}, {"length": 121.882010655, "source": 134968373, "destination": 134982219, "path": [[-8546.810723508714, 950.9994185776804], [-8543.710723508013, 402.9494185786575]]}, {"length": 119.946696024, "source": 134968373, "destination": 134982220, "path": [[-8546.810723508714, 950.9994185776804], [-8546.110723507638, 1215.1994185778392], [-8547.46072350565, 1490.349418578063]]}, {"length": 111.279532189, "source": 2282034231, "destination": 2282034186, "path": [[-7184.810723508406, -214.85058142189928], [-7337.710723511747, -210.15058142381804], [-7353.910723509216, -208.70058142108405], [-7367.760723511196, -206.10058142267462], [-7390.91072350817, -200.55058142176563], [-7472.56072350666, -181.30058142062921], [-7490.660723505016, -179.2505814215417], [-7509.160723508046, -178.70058142221978], [-7731.410723508247, -181.150581422429], [-7840.060723509623, -180.8505814224759]]}, {"length": 29.8088009507, "source": 1667888186, "destination": 1667888180, "path": [[-3483.8107235088955, -3711.4505814237473], [-3449.1107235083973, -3706.000581424007], [-3418.6607235113797, -3692.350581420811], [-3395.6607235055003, -3671.900581423415], [-3382.710723506932, -3646.9505814231698], [-3381.160723506582, -3620.200581423205]]}, {"length": 10.7205601535, "source": 1667888186, "destination": 1667888175, "path": [[-3483.8107235088955, -3711.4505814237473], [-3515.4607235057256, -3708.800581421201], [-3544.710723510036, -3699.2505814232854]]}, {"length": 48.8490134298, "source": 2358476298, "destination": 2354509530, "path": [[-1285.9607235071735, 5112.549418576862], [-1286.0107235113105, 5121.949418576577], [-1286.4607235059111, 5190.799418578252], [-1287.3607235093232, 5332.199418578653]]}, {"length": 96.971796289, "source": 2358476298, "destination": 2358476300, "path": [[-1285.9607235071735, 5112.549418576862], [-1410.2107235061112, 5111.749418578171], [-1862.0107235065575, 5111.349418577049]]}, {"length": 48.014588949, "source": 2358476298, "destination": 2358476437, "path": [[-1285.9607235071735, 5112.549418576862], [-1285.2607235060987, 5003.849418578455], [-1284.5607235050238, 4896.64941857626]]}, {"length": 12.4911364653, "source": 2358476298, "destination": 2069036831, "path": [[-1285.9607235071735, 5112.549418576862], [-1211.7607235069272, 5112.999418578567]]}, {"length": 49.391394093, "source": 1962156896, "destination": 1429423360, "path": [[2577.839276490579, -6488.750581421954], [2518.0392764951876, -6480.000581422729], [2501.0392764883704, -6487.250581422188], [2326.0392764896665, -6395.250581423539]]}, {"length": 274.60065724, "source": 1962156896, "destination": 1483977825, "path": [[2577.839276490579, -6488.750581421954], [2628.0892764916075, -6500.700581423047], [2662.4892764886, -6614.100581423088], [2683.4892764924234, -6652.350581422439], [2719.239276494534, -6682.350581421304], [2764.0392764922694, -6702.950581424006], [2766.689276491263, -6704.150581423818], [2813.3392764928544, -6715.300581422667], [2847.539276494615, -6714.700581422761], [2915.1892764929244, -6707.650581422086], [2954.8392764908726, -6710.000581421127], [2985.989276488965, -6715.300581422667], [3019.389276488482, -6728.3005814218195], [3054.3392764883492, -6750.350581423703], [3088.3892764919096, -6778.30058142348], [3116.589276494608, -6795.200581422023], [3149.6392764935877, -6809.900581423279], [3183.639276493011, -6819.500581421778], [3222.539276492853, -6824.650581421565], [3274.0392764907256, -6826.1005814207465], [3382.0392764951634, -6833.650581423712], [3630.7392764882707, -6851.100581421577], [3799.889276493218, -6865.800581422832], [3841.6892764914223, -6875.350581420747], [3874.739276490402, -6884.200581421141], [3899.039276490157, -6890.100581422586], [3969.9892764915035, -6890.950581421862]]}, {"length": 18.0921130778, "source": 1962156896, "destination": 135039812, "path": [[2577.839276490579, -6488.750581421954], [2578.8392764951595, -6570.100581424043]]}, {"length": 38.6514312488, "source": 1962156896, "destination": 1429423302, "path": [[2577.839276490579, -6488.750581421954], [2578.439276490485, -6314.950581423062]]}, {"length": 10.0074734754, "source": 4224963657, "destination": 135008308, "path": [[6868.589276493253, 4998.399418578714], [6868.839276492622, 4953.399418578641]]}, {"length": 122.568288588, "source": 4224963657, "destination": 4224950597, "path": [[6868.589276493253, 4998.399418578714], [6842.089276489105, 5000.499418578385], [6767.489276491289, 4999.849418577895], [6689.0892764917, 4990.4494185781805], [6620.989276491684, 4975.299418578771], [6556.0392764894, 4953.4494185792255], [6495.589276489965, 4925.999418578186], [6440.289276490319, 4893.049418576822], [6409.789276489164, 4869.999418577464], [6353.189276488536, 4827.099418577063], [6252.889276488815, 4751.6994185770045]]}, {"length": 18.2809261432, "source": 4224963657, "destination": 4224950686, "path": [[6868.589276493253, 4998.399418578714], [6868.139276491547, 5080.599418576526]]}, {"length": 120.908039912, "source": 4224963657, "destination": 4224963615, "path": [[6868.589276493253, 4998.399418578714], [6912.039276492977, 4994.149418578786], [6941.839276493056, 4990.349418577011], [7021.839276490027, 4971.449418576412], [7087.989276492124, 4947.6994185759795], [7147.639276489315, 4917.899418579453], [7157.989276493026, 4913.099418576649], [7221.839276489562, 4869.599418576343], [7308.3892764884695, 4790.999418577968], [7400.239276492471, 4707.649418577375], [7425.339276494469, 4684.949418578554]]}, {"length": 55.8998011131, "source": 134968405, "destination": 1483977720, "path": [[-3316.8607235083414, -5616.400581423875], [-3319.760723506704, -5365.050581421116]]}, {"length": 220.695621204, "source": 134968405, "destination": 134957801, "path": [[-3316.8607235083414, -5616.400581423875], [-4628.31072351122, -5613.950581423665]]}, {"length": 55.390573917, "source": 134968405, "destination": 1483977764, "path": [[-3316.8607235083414, -5616.400581423875], [-3312.7607235101664, -5865.4505814210725]]}, {"length": 115.320019698, "source": 134968405, "destination": 134968407, "path": [[-3316.8607235083414, -5616.400581423875], [-2631.660723508844, -5608.800581423879]]}, {"length": 55.3419015084, "source": 134968407, "destination": 1428267841, "path": [[-2631.660723508844, -5608.800581423879], [-2632.4107235069505, -5359.950581421913]]}, {"length": 12.6296241588, "source": 134968407, "destination": 4719457762, "path": [[-2631.660723508844, -5608.800581423879], [-2556.6107235093227, -5608.500581423925]]}, {"length": 55.3804034548, "source": 134968407, "destination": 1483977763, "path": [[-2631.660723508844, -5608.800581423879], [-2627.110723508963, -5857.800581424044]]}, {"length": 115.320019698, "source": 134968407, "destination": 134968405, "path": [[-2631.660723508844, -5608.800581423879], [-3316.8607235083414, -5616.400581423875]]}, {"length": 11.4204752235, "source": 4224963674, "destination": 4224963692, "path": [[7045.539276489876, 3913.6994185788863], [7078.639276492993, 3913.6994185788863], [7113.389276490523, 3913.2994185777648]]}, {"length": 18.2485470808, "source": 4224963674, "destination": 4224963629, "path": [[7045.539276489876, 3913.6994185788863], [7045.639276491045, 3919.7994185791176], [7042.289276490976, 3929.3994185776173], [7033.439276490582, 3936.599418576492], [7020.689276494351, 3942.149418577401], [7002.739276494196, 3949.7494185773976], [6989.839276492659, 3957.3994185779784], [6975.489276491942, 3970.599418579468]]}, {"length": 11.7405616737, "source": 4224963674, "destination": 4224963607, "path": [[7045.539276489876, 3913.6994185788863], [6975.789276488342, 3913.749418579471]]}, {"length": 37.485192542, "source": 134968413, "destination": 134968410, "path": [[-901.9107235062052, -5602.300581422525], [-1124.6607235051442, -5602.600581422479]]}, {"length": 274.60065724, "source": 1483977825, "destination": 1962156896, "path": [[3969.9892764915035, -6890.950581421862], [3899.039276490157, -6890.100581422586], [3874.739276490402, -6884.200581421141], [3841.6892764914223, -6875.350581420747], [3799.889276493218, -6865.800581422832], [3630.7392764882707, -6851.100581421577], [3382.0392764951634, -6833.650581423712], [3274.0392764907256, -6826.1005814207465], [3222.539276492853, -6824.650581421565], [3183.639276493011, -6819.500581421778], [3149.6392764935877, -6809.900581423279], [3116.589276494608, -6795.200581422023], [3088.3892764919096, -6778.30058142348], [3054.3392764883492, -6750.350581423703], [3019.389276488482, -6728.3005814218195], [2985.989276488965, -6715.300581422667], [2954.8392764908726, -6710.000581421127], [2915.1892764929244, -6707.650581422086], [2847.539276494615, -6714.700581422761], [2813.3392764928544, -6715.300581422667], [2766.689276491263, -6704.150581423818], [2764.0392764922694, -6702.950581424006], [2719.239276494534, -6682.350581421304], [2683.4892764924234, -6652.350581422439], [2662.4892764886, -6614.100581423088], [2628.0892764916075, -6500.700581423047], [2577.839276490579, -6488.750581421954]]}, {"length": 54.5568425378, "source": 1483977825, "destination": 4958639115, "path": [[3969.9892764915035, -6890.950581421862], [3967.4392764936783, -6921.550581420633], [3935.389276492174, -6984.200581420908], [3919.939276492812, -7030.150581421423], [3935.389276492174, -7051.900581423353], [3985.089276490328, -7060.250581421456], [4033.689276489838, -7057.750581420663]]}, {"length": 105.06830708, "source": 1483977825, "destination": 1933539628, "path": [[3969.9892764915035, -6890.950581421862], [4594.339276493997, -6886.450581422565]]}, {"length": 73.4841104265, "source": 1483977825, "destination": 1937680639, "path": [[3969.9892764915035, -6890.950581421862], [3969.5392764897974, -6858.750581422157], [4363.58927649394, -6852.900581421295]]}, {"length": 20.9508539565, "source": 2069376912, "destination": 2069376790, "path": [[-5180.460723508418, 4817.949418576717], [-5056.010723507143, 4818.999418578329]]}, {"length": 19.812640289, "source": 4224963683, "destination": 4224963689, "path": [[6606.789276489167, 4324.699418578603], [6489.089276492166, 4324.79941857622]]}, {"length": 101.241976662, "source": 4224963683, "destination": 4224963690, "path": [[6606.789276489167, 4324.699418578603], [6679.539276490232, 4346.149418577028], [6973.339276491686, 4347.99941857733], [6971.589276488999, 4191.2494185787355], [6994.039276492003, 4191.2994185793195]]}, {"length": 368.446472047, "source": 4224963683, "destination": 4224963690, "path": [[6606.789276489167, 4324.699418578603], [6607.789276493748, 4777.049418578372], [6636.589276489247, 4793.799418578715], [6664.789276491945, 4805.4494185763015], [6692.289276493568, 4815.099418578939], [6727.139276492267, 4823.749418576995], [6764.0392764900525, 4828.299418576876], [6796.889276493801, 4831.8494185792815], [6834.439276488524, 4830.849418578254], [6866.589276491197, 4828.299418576876], [6902.839276492045, 4824.249418579285], [6938.2392764936185, 4815.14941857597], [6966.53927649038, 4806.499418577914], [6997.389276492072, 4791.249418577337], [7025.539276490634, 4773.999418578256], [7061.73927649445, 4745.049418577451], [7256.189276489522, 4570.449418576317], [7273.63927649094, 4554.249418578848], [7291.739276489296, 4533.399418576778], [7304.489276492632, 4516.649418576435], [7313.889276488794, 4499.899418576092], [7324.589276493043, 4475.049418577015], [7334.639276493249, 4447.6494185765605], [7339.33927649133, 4427.849418576102], [7341.389276490418, 4412.599418579077], [7342.039276494461, 4397.399418579084], [7341.389276490418, 4380.6494185787415], [7338.689276494392, 4365.399418578164], [7330.639276489137, 4334.449418578856], [7322.439276492787, 4307.099418578986], [7309.189276490713, 4281.6494185764495], [7293.089276494413, 4258.84941857646], [7268.289276488815, 4230.399418577946], [7234.08927649416, 4198.949418576348], [7219.889276491642, 4190.699418579414], [6994.039276492003, 4191.2994185793195]]}, {"length": 177.776488456, "source": 4224963684, "destination": 4224950834, "path": [[6151.289276495219, 4106.099418578424], [6152.489276495033, 4067.4994185785354], [6154.489276489983, 4026.8494185760064], [6157.1892764931135, 4005.049418577045], [6159.039276489864, 3988.8494185760237], [6164.389276491988, 3959.949418579356], [6167.239276493319, 3949.1994185780754], [6170.589276493388, 3941.0994185793415], [6177.939276490462, 3931.4494185767044], [6218.839276492361, 3880.1994185782005], [6222.889276493504, 3871.549418576592], [6225.589276489529, 3861.899418577508], [6226.88927649051, 3851.2494185773958], [6228.239276488523, 3842.0994185770496], [6231.639276492729, 3318.799418579488]]}, {"length": 93.8959155369, "source": 4224963684, "destination": 4224950843, "path": [[6151.289276495219, 4106.099418578424], [6150.43927648884, 4131.949418578529], [6148.439276493889, 4366.449418576223], [6148.939276492627, 4528.299418577575]]}, {"length": 8.13901784843, "source": 4224963684, "destination": 4224843399, "path": [[6151.289276495219, 4106.099418578424], [6199.639276488256, 4106.099418578424]]}, {"length": 12.4311051791, "source": 4224963686, "destination": 4224850352, "path": [[7215.539276494099, 4732.149418579467], [7158.989276490502, 4696.1994185785725]]}, {"length": 10.2477511164, "source": 4224963686, "destination": 4224850385, "path": [[7215.539276494099, 4732.149418579467], [7262.139276491553, 4761.799418577794]]}, {"length": 47.2888043161, "source": 4224963686, "destination": 4224963598, "path": [[7215.539276494099, 4732.149418579467], [7236.5392764908165, 4713.099418577116], [7332.539276490024, 4625.949418578301], [7395.1392764897155, 4568.649418576598]]}, {"length": 141.90853024, "source": 4224963686, "destination": 4224950800, "path": [[7215.539276494099, 4732.149418579467], [7193.989276494505, 4751.749418577589], [7134.389276494347, 4805.849418577423], [7085.3392764931305, 4839.299418577525], [7082.689276494137, 4840.499418577338], [7028.389276491964, 4867.649418578423], [6977.639276492198, 4885.899418578532], [6913.689276494495, 4900.999418577357], [6861.689276490779, 4907.599418576325], [6838.589276490837, 4908.799418576137], [6777.739276493832, 4908.2494185768155], [6715.739276494049, 4900.849418579156], [6662.889276491058, 4889.049418576264], [6611.939276488954, 4871.949418578935], [6564.439276495194, 4850.399418579344], [6520.839276490165, 4824.399418577485], [6492.189276492865, 4805.9494185785925]]}, {"length": 17.8251228393, "source": 2568624526, "destination": 2568624523, "path": [[-1166.7107235098229, -2481.7005814234963], [-1167.7607235114351, -2561.8505814222203]]}, {"length": 23.4744066888, "source": 2568624526, "destination": 2568599340, "path": [[-1166.7107235098229, -2481.7005814234963], [-1166.2107235110852, -2439.65058142237], [-1165.4107235088418, -2376.1505814228203]]}, {"length": 5.62927887945, "source": 2568624526, "destination": 2568624534, "path": [[-1166.7107235098229, -2481.7005814234963], [-1200.1607235063716, -2481.950581422865]]}, {"length": 19.812640289, "source": 4224963689, "destination": 4224963683, "path": [[6489.089276492166, 4324.79941857622], [6606.789276489167, 4324.699418578603]]}, {"length": 104.694136061, "source": 4224963689, "destination": 4224950749, "path": [[6489.089276492166, 4324.79941857622], [6484.939276489854, 4343.999418576772], [6484.939276489854, 4540.599418579205], [6148.439276493889, 4538.999418578271]]}, {"length": 6.48208118282, "source": 4224963689, "destination": 4224963639, "path": [[6489.089276492166, 4324.79941857622], [6488.939276493966, 4295.6494185766305]]}, {"length": 101.241976662, "source": 4224963690, "destination": 4224963683, "path": [[6994.039276492003, 4191.2994185793195], [6971.589276488999, 4191.2494185787355], [6973.339276491686, 4347.99941857733], [6679.539276490232, 4346.149418577028], [6606.789276489167, 4324.699418578603]]}, {"length": 368.446472047, "source": 4224963690, "destination": 4224963683, "path": [[6994.039276492003, 4191.2994185793195], [7219.889276491642, 4190.699418579414], [7234.08927649416, 4198.949418576348], [7268.289276488815, 4230.399418577946], [7293.089276494413, 4258.84941857646], [7309.189276490713, 4281.6494185764495], [7322.439276492787, 4307.099418578986], [7330.639276489137, 4334.449418578856], [7338.689276494392, 4365.399418578164], [7341.389276490418, 4380.6494185787415], [7342.039276494461, 4397.399418579084], [7341.389276490418, 4412.599418579077], [7339.33927649133, 4427.849418576102], [7334.639276493249, 4447.6494185765605], [7324.589276493043, 4475.049418577015], [7313.889276488794, 4499.899418576092], [7304.489276492632, 4516.649418576435], [7291.739276489296, 4533.399418576778], [7273.63927649094, 4554.249418578848], [7256.189276489522, 4570.449418576317], [7061.73927649445, 4745.049418577451], [7025.539276490634, 4773.999418578256], [6997.389276492072, 4791.249418577337], [6966.53927649038, 4806.499418577914], [6938.2392764936185, 4815.14941857597], [6902.839276492045, 4824.249418579285], [6866.589276491197, 4828.299418576876], [6834.439276488524, 4830.849418578254], [6796.889276493801, 4831.8494185792815], [6764.0392764900525, 4828.299418576876], [6727.139276492267, 4823.749418576995], [6692.289276493568, 4815.099418578939], [6664.789276491945, 4805.4494185763015], [6636.589276489247, 4793.799418578715], [6607.789276493748, 4777.049418578372], [6606.789276489167, 4324.699418578603]]}, {"length": 49.5741484763, "source": 4224963690, "destination": 4224963629, "path": [[6994.039276492003, 4191.2994185793195], [6993.339276490929, 4072.0494185784164], [6991.339276488872, 4062.89941857807], [6985.989276493854, 4052.249418577958], [6978.439276494441, 4037.599418577287], [6975.2392764925735, 4026.8494185760064], [6975.489276491942, 3970.599418579468]]}, {"length": 113.132422793, "source": 4224963692, "destination": 4224950657, "path": [[7113.389276490523, 3913.2994185777648], [7099.839276492048, 3884.2994185763755], [7082.539276488831, 3843.149418578662], [7074.489276490681, 3820.299418578088], [7069.7892764926, 3796.9494185787767], [7067.089276489469, 3774.099418578203], [7067.089276489469, 3754.8494185770664], [7069.7892764926, 3732.9994185775204], [7074.489276490681, 3709.149418579472], [7078.489276494793, 3686.799418577635], [7080.539276493881, 3668.549418577527], [7080.539276493881, 3464.99941857914], [7078.489276494793, 3456.3994185781157], [7075.039276493555, 3447.2994185783537], [7068.439276494587, 3437.599418578685], [7059.739276492393, 3427.9494185760486], [7047.639276493101, 3417.299418579489]]}, {"length": 11.4204752235, "source": 4224963692, "destination": 4224963674, "path": [[7113.389276490523, 3913.2994185777648], [7078.639276492993, 3913.6994185788863], [7045.539276489876, 3913.6994185788863]]}, {"length": 104.475826416, "source": 4224963692, "destination": 4224950605, "path": [[7113.389276490523, 3913.2994185777648], [7125.289276494585, 3942.6494185761385], [7156.289276494476, 4007.5994185784225], [7184.439276493038, 4062.89941857807], [7209.139276490361, 4099.499418579455], [7241.439276491235, 4136.49941857841], [7273.63927649094, 4169.4994185768055], [7301.7892764895005, 4196.399418578522], [7327.839276491943, 4222.849418578534], [7344.039276489411, 4245.0994185792015], [7359.489276488774, 4270.4994185776], [7371.539276491035, 4293.349418578174], [7376.889276493159, 4298.399418576792], [7385.489276494183, 4300.999418578755], [7400.38927649067, 4302.9994185772575], [7409.089276492864, 4304.999418579314], [7416.33927648877, 4309.649418576811]]}, {"length": 10.3126275948, "source": 4224963696, "destination": 844180730, "path": [[7771.489276493071, 4366.599418577976], [7735.539276488624, 4329.049418576147]]}, {"length": 121.264868213, "source": 4224963696, "destination": 844180731, "path": [[7771.489276493071, 4366.599418577976], [7943.889276489813, 4546.399418579484], [8224.78927648973, 4789.699418576987]]}, {"length": 11.6747424174, "source": 4224963696, "destination": 4224850364, "path": [[7771.489276493071, 4366.599418577976], [7726.3392764947985, 4406.449418578262]]}, {"length": 40.6649581848, "source": 4719408247, "destination": 3146412233, "path": [[-3533.0607235053435, 328.0994185779207], [-3774.66072350785, 327.29941857922995]]}, {"length": 21.0733137858, "source": 4719408247, "destination": 3146411796, "path": [[-3533.0607235053435, 328.0994185779207], [-3407.860723505962, 328.4994185790424]]}, {"length": 720.354566493, "source": 4719408247, "destination": 3146557117, "path": [[-3533.0607235053435, 328.0994185779207], [-3534.310723509293, 350.9994185790788], [-3849.6107235062027, 349.6494185775134], [-7247.5107235092655, 338.1994185787107], [-7292.810723505738, 338.99941857740146], [-7327.160723505699, 336.0994185790389], [-7364.210723508791, 331.5494185791579], [-7411.160723506782, 326.0494185788332], [-7448.560723510411, 322.599418577596], [-7490.2607235074465, 320.4994185779242], [-7734.16072350841, 318.8494185764057], [-7782.0607235068455, 316.4994185773651]]}, {"length": 115.141470585, "source": 1932196031, "destination": 1932195840, "path": [[34.03927649259231, -5424.500581423075], [66.5392764886974, -5402.000581423039], [92.38927648880235, -5382.450581421949], [107.08927649005773, -5370.4005814232405], [115.03927649414436, -5360.800581421188], [123.78927649336902, -5344.550581423136], [132.13927649502466, -5324.100581422186], [140.48927648957488, -5296.700581421732], [145.63927648936215, -5278.650581423961], [148.4392764936615, -5259.400581422824], [149.9892764940114, -5242.850581421266], [149.9892764940114, -5223.000581423776], [148.4392764936615, -5196.850581423718], [147.23927649384905, -5126.450581421694], [148.03927648898707, -5111.450581424037], [150.3892764915804, -5099.400581421776], [151.58927649139287, -5085.550581423348], [151.98927648896188, -5059.700581423243], [152.38927649363632, -5029.60058142321], [151.98927648896188, -4989.900581421125], [152.38927649363632, -4951.400581422405], [155.9892764930737, -4935.80058142129]]}, {"length": 13.7450332591, "source": 1932196031, "destination": 1932196037, "path": [[34.03927649259231, -5424.500581423075], [54.23927649417237, -5434.550581423281], [102.38927649197649, -5458.350581420746]]}, {"length": 424.6413915, "source": 1932196031, "destination": 3278420174, "path": [[34.03927649259231, -5424.500581423075], [16.539276494142996, -5415.75058142385], [-2.5607235087932168, -5407.050581421658], [-21.61072350759241, -5400.400581422105], [-44.66072351050343, -5394.700581422995], [-62.16072350895274, -5390.800581423605], [-80.06072350497107, -5384.450581424006], [-97.96072350809482, -5376.050581421765], [-150.41072350641116, -5349.900581421707], [-194.9107235077463, -5327.050581421134], [-225.11072350539507, -5312.300581422846], [-249.76072350568757, -5302.050581423856], [-271.6607235058177, -5295.450581421335], [-300.66072351075945, -5286.70058142211], [-324.1107235112395, -5278.300581423423], [-351.5107235116943, -5265.650581421255], [-378.1607235069373, -5252.450581423318], [-412.3607235086979, -5235.90058142176], [-467.6107235113136, -5207.300581421492], [-508.9107235107804, -5187.150581424049], [-557.8107235066909, -5162.200581423804], [-588.4107235090141, -5147.450581421964], [-605.9107235074634, -5139.0505814232765], [-620.2107235111498, -5127.900581420874], [-635.3107235099742, -5117.7005814224685], [-652.4107235108545, -5108.950581423243], [-674.6607235115221, -5099.350581421191], [-704.5107235086334, -5087.3005814224825], [-733.9107235111442, -5074.050581423961], [-775.2607235076425, -5053.600581423012], [-810.2107235075096, -5034.650581421829], [-834.460723510233, -5022.050581423799], [-846.0107235066516, -5014.500581420833], [-857.5107235060386, -5005.800581422192], [-872.210723507294, -4992.550581423671], [-887.7107235107928, -4978.450581422322], [-904.0107235094297, -4967.300581423473], [-980.7607235075011, -4926.100581421622], [-1071.3607235075528, -4878.550581423724], [-1184.6607235099782, -4819.000581420596], [-1218.0107235053583, -4800.950581422825], [-1242.6607235056508, -4786.550581421523], [-1262.5607235108305, -4770.600581423423], [-1293.9607235082917, -4745.000581422687], [-1324.560723510615, -4722.4505814220665], [-1343.6607235064457, -4709.250581420576], [-1359.5607235075136, -4701.1005814212585], [-1379.0107235109872, -4694.200581422337], [-1400.0607235047369, -4689.70058142304], [-1435.060723508741, -4685.750581423064], [-1465.6607235110641, -4679.450581424049], [-1496.6607235109564, -4670.15058142195], [-1524.1107235084428, -4658.700581423147], [-1559.8607235105533, -4640.350581421871], [-1644.1107235110053, -4596.150581424041], [-1707.3107235106022, -4563.050581420925], [-1768.1607235076058, -4531.150581421172], [-1855.2107235052517, -4484.250581423766], [-1899.7107235065869, -4461.400581423191], [-1915.6107235076547, -4453.250581423873], [-1931.5107235087225, -4441.250581422196], [-1946.610723507547, -4428.6005814235805], [-1964.9107235082397, -4412.350581421975], [-1982.01072350912, -4399.70058142336], [-2004.2607235097876, -4388.0005814216365], [-2032.4607235053804, -4373.250581423349], [-2042.9607235072922, -4367.70058142244]]}, {"length": 15.3067008825, "source": 1962177662, "destination": 1962178364, "path": [[5358.889276493528, -2458.2005814224317], [5267.939276492939, -2457.9005814224784]]}, {"length": 1.91289595195, "source": 1962177664, "destination": 1962178364, "path": [[5267.889276488802, -2449.300581421454], [5267.939276492939, -2457.9005814224784]]}, {"length": 9.89699033607, "source": 1962177665, "destination": 2271725696, "path": [[5265.339276490977, -2594.500581423631], [5324.139276488893, -2594.100581422509]]}, {"length": 30.3810679882, "source": 1962177665, "destination": 1962178364, "path": [[5265.339276490977, -2594.500581423631], [5268.089276491139, -2477.200581420647], [5268.039276494108, -2470.10058142294], [5267.939276492939, -2457.9005814224784]]}, {"length": 29.026653904, "source": 1962177665, "destination": 2139783261, "path": [[5265.339276490977, -2594.500581423631], [5268.489276488708, -2725.000581421]]}, {"length": 20.8332988325, "source": 3278420166, "destination": 3278420168, "path": [[-2334.860723507859, -4128.450581422527], [-2233.010723507789, -4181.700581423087]]}, {"length": 60.992450309, "source": 3278420166, "destination": 3278420155, "path": [[-2334.860723507859, -4128.450581422527], [-2331.9107235053593, -3854.2005814221625]]}, {"length": 112.500448761, "source": 3278420166, "destination": 3278420155, "path": [[-2334.860723507859, -4128.450581422527], [-2419.8107235093858, -4086.300581423785], [-2440.3607235115032, -4067.100581423233], [-2440.3607235115032, -3809.85058142258], [-2429.6107235102227, -3794.350581422634], [-2343.6607235112206, -3792.8505814228683], [-2331.9107235053593, -3803.950581421134], [-2331.9107235053593, -3854.2005814221625]]}, {"length": 23.3382883552, "source": 3278420168, "destination": 3278420169, "path": [[-2233.010723507789, -4181.700581423087], [-2118.9107235102256, -4241.350581423831]]}, {"length": 72.3496443918, "source": 3278420168, "destination": 3278420156, "path": [[-2233.010723507789, -4181.700581423087], [-2227.4107235062957, -3856.400581423003]]}, {"length": 20.8332988325, "source": 3278420168, "destination": 3278420166, "path": [[-2233.010723507789, -4181.700581423087], [-2334.860723507859, -4128.450581422527]]}, {"length": 8.83766781792, "source": 3278420174, "destination": 3278420176, "path": [[-2042.9607235072922, -4367.70058142244], [-2072.510723508003, -4400.550581422635]]}, {"length": 16.6082043409, "source": 3278420174, "destination": 3278420171, "path": [[-2042.9607235072922, -4367.70058142244], [-2009.6107235048066, -4324.300581423302], [-2006.960723505813, -4299.900581422378]]}, {"length": 209.910865139, "source": 3278420174, "destination": 2140988068, "path": [[-2042.9607235072922, -4367.70058142244], [-2137.8107235108246, -4317.300581423211], [-2254.6607235085503, -4256.850581423777], [-2355.610723505208, -4203.300581423264], [-2461.3607235082213, -4147.650581423079], [-2500.710723509769, -4126.900581422177], [-2513.4107235089687, -4117.900581423583], [-2520.960723508381, -4109.150581420807], [-2528.110723510224, -4098.050581422541], [-2531.310723504987, -4085.1005814239725], [-2530.910723507418, -4067.6505814225548], [-2538.510723510967, -3740.050581424015], [-2537.860723506924, -3685.500581422474], [-2532.460723507768, -3612.4005814208713]]}, {"length": 424.6413915, "source": 3278420174, "destination": 1932196031, "path": [[-2042.9607235072922, -4367.70058142244], [-2032.4607235053804, -4373.250581423349], [-2004.2607235097876, -4388.0005814216365], [-1982.01072350912, -4399.70058142336], [-1964.9107235082397, -4412.350581421975], [-1946.610723507547, -4428.6005814235805], [-1931.5107235087225, -4441.250581422196], [-1915.6107235076547, -4453.250581423873], [-1899.7107235065869, -4461.400581423191], [-1855.2107235052517, -4484.250581423766], [-1768.1607235076058, -4531.150581421172], [-1707.3107235106022, -4563.050581420925], [-1644.1107235110053, -4596.150581424041], [-1559.8607235105533, -4640.350581421871], [-1524.1107235084428, -4658.700581423147], [-1496.6607235109564, -4670.15058142195], [-1465.6607235110641, -4679.450581424049], [-1435.060723508741, -4685.750581423064], [-1400.0607235047369, -4689.70058142304], [-1379.0107235109872, -4694.200581422337], [-1359.5607235075136, -4701.1005814212585], [-1343.6607235064457, -4709.250581420576], [-1324.560723510615, -4722.4505814220665], [-1293.9607235082917, -4745.000581422687], [-1262.5607235108305, -4770.600581423423], [-1242.6607235056508, -4786.550581421523], [-1218.0107235053583, -4800.950581422825], [-1184.6607235099782, -4819.000581420596], [-1071.3607235075528, -4878.550581423724], [-980.7607235075011, -4926.100581421622], [-904.0107235094297, -4967.300581423473], [-887.7107235107928, -4978.450581422322], [-872.210723507294, -4992.550581423671], [-857.5107235060386, -5005.800581422192], [-846.0107235066516, -5014.500581420833], [-834.460723510233, -5022.050581423799], [-810.2107235075096, -5034.650581421829], [-775.2607235076425, -5053.600581423012], [-733.9107235111442, -5074.050581423961], [-704.5107235086334, -5087.3005814224825], [-674.6607235115221, -5099.350581421191], [-652.4107235108545, -5108.950581423243], [-635.3107235099742, -5117.7005814224685], [-620.2107235111498, -5127.900581420874], [-605.9107235074634, -5139.0505814232765], [-588.4107235090141, -5147.450581421964], [-557.8107235066909, -5162.200581423804], [-508.9107235107804, -5187.150581424049], [-467.6107235113136, -5207.300581421492], [-412.3607235086979, -5235.90058142176], [-378.1607235069373, -5252.450581423318], [-351.5107235116943, -5265.650581421255], [-324.1107235112395, -5278.300581423423], [-300.66072351075945, -5286.70058142211], [-271.6607235058177, -5295.450581421335], [-249.76072350568757, -5302.050581423856], [-225.11072350539507, -5312.300581422846], [-194.9107235077463, -5327.050581421134], [-150.41072350641116, -5349.900581421707], [-97.96072350809482, -5376.050581421765], [-80.06072350497107, -5384.450581424006], [-62.16072350895274, -5390.800581423605], [-44.66072351050343, -5394.700581422995], [-21.61072350759241, -5400.400581422105], [-2.5607235087932168, -5407.050581421658], [16.539276494142996, -5415.75058142385], [34.03927649259231, -5424.500581423075]]}, {"length": 58.4185976188, "source": 1933539536, "destination": 3009796720, "path": [[2784.9392764949243, -5081.750581421574], [2845.539276492559, -5056.500581421375], [2886.9392764931945, -5039.550581422247], [2925.23927649313, -5026.65058142071], [2964.089276488835, -5014.85058142137], [3014.889276492738, -5003.300581421399], [3050.339276491343, -4996.400581422477], [3074.1392764923603, -4990.400581423415], [3084.9392764906725, -4985.450581422412], [3091.1892764891036, -4980.50058142141], [3096.539276491228, -4973.450581420735]]}, {"length": 281.063982021, "source": 1933539536, "destination": 1279884630, "path": [[2784.9392764949243, -5081.750581421574], [2738.8392764891023, -5120.200581423262], [2600.589276489984, -5242.00058142199], [2527.839276488919, -5321.0005814214865], [2225.889276495252, -5683.300581420525], [2173.3892764927987, -5758.000581423062], [2120.4392764886393, -5869.350581424015], [2094.0892764897967, -5952.100581421149], [2080.8892764918596, -6043.550581424029], [2079.3392764915097, -6115.50058142285], [2075.139276492166, -6190.15058142125]]}, {"length": 175.51540216, "source": 1933539536, "destination": 1394286622, "path": [[2784.9392764949243, -5081.750581421574], [2826.63927649196, -5037.300581420823], [2877.939276494601, -4969.500581420761], [2922.0392764912617, -4917.350581422397], [2988.289276494527, -4842.35058142346], [3125.639276490233, -4713.200581420551], [3205.63927649431, -4643.900581420723], [3438.2392764911174, -4471.10058142286]]}, {"length": 125.060632287, "source": 134968188, "destination": 134968184, "path": [[-2666.6607235057427, 962.4994185770674], [-3409.660723505681, 959.7994185774894]]}, {"length": 120.125400217, "source": 134968188, "destination": 135016129, "path": [[-2666.6607235057427, 962.4994185770674], [-2663.2607235086425, 422.34941857799413]]}, {"length": 17.3900360145, "source": 2309493997, "destination": 2309494000, "path": [[-3535.610723510274, 5872.599418577096], [-3432.310723511023, 5872.349418577727]]}, {"length": 97.0411950467, "source": 2309493997, "destination": 2309494186, "path": [[-3535.610723510274, 5872.599418577096], [-3532.710723504806, 5436.2494185760115]]}, {"length": 49.4840410178, "source": 2309493997, "destination": 2309494003, "path": [[-3535.610723510274, 5872.599418577096], [-3829.5607235099283, 5872.099418578358]]}, {"length": 15.8345926014, "source": 2309493997, "destination": 2068853452, "path": [[-3535.610723510274, 5872.599418577096], [-3536.3607235083805, 5943.799418577811]]}, {"length": 22.5617005438, "source": 135034096, "destination": 2003096864, "path": [[-4156.560723508563, 2059.349418576772], [-4157.2107235055, 2160.799418579273]]}, {"length": 123.227799902, "source": 135034096, "destination": 135012761, "path": [[-4156.560723508563, 2059.349418576772], [-4153.060723510293, 1505.249418578103]]}, {"length": 8.21726354004, "source": 135034096, "destination": 135072436, "path": [[-4156.560723508563, 2059.349418576772], [-4107.760723506715, 2060.299418577216]]}, {"length": 124.823857459, "source": 135034096, "destination": 135032865, "path": [[-4156.560723508563, 2059.349418576772], [-4381.660723510095, 2057.3994185788533], [-4824.910723506548, 2049.799418578857], [-4898.0107235081505, 2049.799418578857]]}, {"length": 56.025258657, "source": 2086723464, "destination": 135012864, "path": [[4265.989276490245, 1572.0494185771372], [4598.839276489742, 1572.3994185776746]]}, {"length": 112.677200211, "source": 2086723464, "destination": 2086723561, "path": [[4265.989276490245, 1572.0494185771372], [4271.039276488864, 2078.6994185790772]]}, {"length": 134.306561968, "source": 2086723464, "destination": 2086723556, "path": [[4265.989276490245, 1572.0494185771372], [4272.989276493889, 968.149418579145]]}, {"length": 60.5636717916, "source": 2086723464, "destination": 135007460, "path": [[4265.989276490245, 1572.0494185771372], [3906.1892764920003, 1569.6994185780966]]}, {"length": 46.7419550193, "source": 2309494003, "destination": 2069376831, "path": [[-3829.5607235099283, 5872.099418578358], [-3985.4107235086644, 5870.599418578593], [-4107.210723510945, 5870.899418578546]]}, {"length": 15.4359874514, "source": 2309494003, "destination": 2069036387, "path": [[-3829.5607235099283, 5872.099418578358], [-3828.06072350661, 5941.499418579355]]}, {"length": 49.4840410178, "source": 2309494003, "destination": 2309493997, "path": [[-3829.5607235099283, 5872.099418578358], [-3535.610723510274, 5872.599418577096]]}, {"length": 97.1141742058, "source": 2309494003, "destination": 2309494191, "path": [[-3829.5607235099283, 5872.099418578358], [-3833.5607235069347, 5774.299418579431], [-3834.610723508547, 5743.4994185783235], [-3834.1107235098093, 5552.099418576262], [-3833.360723511703, 5521.899418578613], [-3831.110723510278, 5448.1494185765205], [-3830.910723507941, 5435.499418577905]]}, {"length": 12.8986476588, "source": 135034101, "destination": 2311060161, "path": [[-4167.210723508674, 3729.09941857813], [-4167.560723509212, 3787.099418577355]]}, {"length": 13.4326088306, "source": 135034101, "destination": 2311060177, "path": [[-4167.210723508674, 3729.09941857813], [-4166.810723511106, 3668.69941857928]]}, {"length": 13.2726388863, "source": 135034101, "destination": 2311060166, "path": [[-4167.210723508674, 3729.09941857813], [-4246.060723509971, 3728.9994185769615]]}, {"length": 12.3889829513, "source": 135034101, "destination": 2251802367, "path": [[-4167.210723508674, 3729.09941857813], [-4093.610723508334, 3729.1994185792987]]}, {"length": 12.7344479107, "source": 135034104, "destination": 2069376823, "path": [[-4170.710723506943, 4279.5994185773625], [-4095.0607235075154, 4279.899418577315]]}, {"length": 13.3322610457, "source": 135034104, "destination": 2310516523, "path": [[-4170.710723506943, 4279.5994185773625], [-4249.910723508776, 4279.29941857741]]}, {"length": 13.0545712303, "source": 135034104, "destination": 2069376845, "path": [[-4170.710723506943, 4279.5994185773625], [-4171.06072350748, 4338.299418577662]]}, {"length": 12.0204903301, "source": 135034104, "destination": 2310516565, "path": [[-4170.710723506943, 4279.5994185773625], [-4170.3607235064055, 4225.549418578112]]}, {"length": 121.893434839, "source": 134968191, "destination": 135012770, "path": [[-1925.1107235049858, 965.2494185772298], [-1928.61072351036, 1513.349418576837]]}, {"length": 124.816591744, "source": 134968191, "destination": 134968188, "path": [[-1925.1107235049858, 965.2494185772298], [-2666.6607235057427, 962.4994185770674]]}, {"length": 100.60925466, "source": 135022807, "destination": 2086854484, "path": [[9408.289276493066, -5879.200581421884], [9408.589276489465, -5426.800581421531]]}, {"length": 49.2411151809, "source": 135022807, "destination": 135022845, "path": [[9408.289276493066, -5879.200581421884], [9115.789276492593, -5885.300581422115]]}, {"length": 46.7158538087, "source": 135022807, "destination": 134979326, "path": [[9408.289276493066, -5879.200581421884], [9685.839276492914, -5875.000581422541]]}, {"length": 196.251309588, "source": 135022807, "destination": 2086854447, "path": [[9408.289276493066, -5879.200581421884], [9414.839276495002, -6761.650581420753]]}, {"length": 122.883126567, "source": 134968194, "destination": 135021866, "path": [[-1185.360723511053, 967.9494185768078], [-1181.8607235056788, 415.39941857848817]]}, {"length": 124.513637132, "source": 134968194, "destination": 134968191, "path": [[-1185.360723511053, 967.9494185768078], [-1925.1107235049858, 965.2494185772298]]}, {"length": 97.9923039723, "source": 2285540227, "destination": 2286663657, "path": [[-6293.610723510312, 4760.149418576276], [-6089.360723507298, 4760.799418576767], [-6019.310723509363, 4761.649418576042], [-5960.31072350911, 4761.1994185778885], [-5730.610723510665, 4762.349418577116], [-5711.5107235077285, 4762.299418576532]]}, {"length": 22.003458761, "source": 2282034459, "destination": 2282034473, "path": [[-7806.160723511368, -365.5505814208482], [-7740.310723505672, -367.05058142061375], [-7675.510723508694, -369.00058142208536]]}, {"length": 42.3690735993, "source": 2282034459, "destination": 2282034186, "path": [[-7806.160723511368, -365.5505814208482], [-7802.910723505363, -308.0505814239132], [-7803.210723508869, -260.9005814235843], [-7804.760723509218, -245.8505814217915], [-7808.810723510362, -229.70058142135485], [-7817.910723510124, -215.05058142068378], [-7840.060723509623, -180.8505814224759]]}, {"length": 165.272411243, "source": 2282034459, "destination": 2282034724, "path": [[-7806.160723511368, -365.5505814208482], [-7809.010723505594, -414.50058142089574], [-7811.16072350585, -455.00058142167177], [-7815.010723511761, -490.0505814227074], [-7813.110723510874, -530.9005814240209], [-7811.960723508093, -579.5505814205626], [-7810.010723510175, -648.950581421559], [-7810.810723505312, -724.1505814228333], [-7812.310723508631, -853.6005814221426], [-7811.16072350585, -925.9005814215016], [-7810.010723510175, -1062.050581420948], [-7810.010723510175, -1108.4505814231704]]}, {"length": 117.501999961, "source": 2285540229, "destination": 1433125574, "path": [[-6429.460723509806, 4759.199418579385], [-6446.460723509517, 4759.4494185787535], [-6626.060723505134, 4758.999418577048], [-6723.360723505322, 4759.199418579385], [-6866.060723510259, 4757.499418577282], [-6980.11072351079, 4757.299418578497], [-7127.410723505534, 4759.849418576323]]}, {"length": 22.5617005438, "source": 2003096864, "destination": 135034096, "path": [[-4157.2107235055, 2160.799418579273], [-4156.560723508563, 2059.349418576772]]}, {"length": 207.225673345, "source": 2003096864, "destination": 2311060364, "path": [[-4157.2107235055, 2160.799418579273], [-4160.760723507906, 2716.599418576493], [-4163.160723507531, 3092.5994185793115]]}, {"length": 8.52042427624, "source": 2003096864, "destination": 1808366831, "path": [[-4157.2107235055, 2160.799418579273], [-4133.060723511051, 2160.599418576936], [-4106.610723511039, 2159.7994185782454]]}, {"length": 22.003458761, "source": 2282034473, "destination": 2282034459, "path": [[-7675.510723508694, -369.00058142208536], [-7740.310723505672, -367.05058142061375], [-7806.160723511368, -365.5505814208482]]}, {"length": 125.154965076, "source": 2282034473, "destination": 2282034588, "path": [[-7675.510723508694, -369.00058142208536], [-7674.010723505376, -559.750581423657], [-7182.460723505812, -558.0005814209699]]}, {"length": 82.3451740949, "source": 2282034473, "destination": 2282034477, "path": [[-7675.510723508694, -369.00058142208536], [-7615.460723506829, -370.80058142180405], [-7186.310723511724, -370.50058142185094]]}, {"length": 10.9006382794, "source": 2290110623, "destination": 134982240, "path": [[-8526.060723511364, 6487.299418576953], [-8590.810723511311, 6486.8494185787995]]}, {"length": 10.8842775441, "source": 2290110623, "destination": 2289072820, "path": [[-8526.060723511364, 6487.299418576953], [-8525.860723509028, 6469.099418577429], [-8525.860723509028, 6438.349418576905]]}, {"length": 91.7772301182, "source": 2290110623, "destination": 2289072815, "path": [[-8526.060723511364, 6487.299418576953], [-7980.910723510704, 6491.249418576927]]}, {"length": 82.3451740949, "source": 2282034477, "destination": 2282034473, "path": [[-7186.310723511724, -370.50058142185094], [-7615.460723506829, -370.80058142180405], [-7675.510723508694, -369.00058142208536]]}, {"length": 8.17106787638, "source": 2585900335, "destination": 2585900359, "path": [[-2163.510723505624, -1817.9005814218385], [-2114.960723510251, -1817.9005814218385]]}, {"length": 9.18570829601, "source": 135107888, "destination": 134936066, "path": [[4662.939276492751, 450.0494185784021], [4663.439276491488, 408.7494185789353]]}, {"length": 113.513403308, "source": 135107888, "destination": 2080617420, "path": [[4662.939276492751, 450.0494185784021], [5337.339276493935, 453.44941857905496]]}, {"length": 15.0331088537, "source": 2312746290, "destination": 2309493752, "path": [[-3345.9107235103147, 6448.849418578817], [-3435.2107235093854, 6448.549418578864]]}, {"length": 48.3815030451, "source": 2312746290, "destination": 2316883446, "path": [[-3345.9107235103147, 6448.849418578817], [-3344.6607235063652, 6231.299418576697]]}, {"length": 89.7611372546, "source": 2312746290, "destination": 2316883391, "path": [[-3345.9107235103147, 6448.849418578817], [-2812.7107235107474, 6448.449418577695]]}, {"length": 15.1337917895, "source": 2312746297, "destination": 2309494000, "path": [[-3342.4107235049405, 5872.349418577727], [-3432.310723511023, 5872.349418577727]]}, {"length": 48.4150226888, "source": 2312746297, "destination": 2312746308, "path": [[-3342.4107235049405, 5872.349418577727], [-3340.860723511696, 5654.649418577406]]}, {"length": 15.7452639356, "source": 2312746297, "destination": 2316883514, "path": [[-3342.4107235049405, 5872.349418577727], [-3341.8607235091713, 5943.149418577321]]}, {"length": 95.9562902952, "source": 2312746297, "destination": 2316883516, "path": [[-3342.4107235049405, 5872.349418577727], [-2772.410723508756, 5874.899418579105]]}, {"length": 2.58077742139, "source": 2585900350, "destination": 4719495256, "path": [[-1445.5607235106527, -1894.4505814211254], [-1430.260723509491, -1893.800581420635]]}, {"length": 33.4807312811, "source": 2585900350, "destination": 2568624545, "path": [[-1445.5607235106527, -1894.4505814211254], [-1404.1607235100173, -1910.2505814210247], [-1377.3607235094687, -1930.5505814237733], [-1359.2607235111132, -1951.8505814239973], [-1345.8107235067018, -1970.100581420553], [-1334.3107235073148, -2009.7005814214697]]}, {"length": 31.4234101515, "source": 2585900350, "destination": 4719494637, "path": [[-1445.5607235106527, -1894.4505814211254], [-1506.7607235081937, -1897.0505814230876], [-1632.0607235087436, -1901.1005814206783]]}, {"length": 80.790049906, "source": 4224980287, "destination": 4224950704, "path": [[5641.139276491458, 3222.7994185767275], [5749.489276489328, 3222.8994185778956], [5809.689276489394, 3221.949418577452], [6036.339276491276, 3221.949418577452], [6057.23927649393, 3223.9494185759554], [6072.689276493293, 3227.499418578361], [6086.739276490505, 3234.0994185773297], [6098.689276491597, 3240.749418576883], [6113.439276489885, 3245.799418579054]]}, {"length": 15.5378301668, "source": 4224980287, "destination": 4224950737, "path": [[5641.139276491458, 3222.7994185767275], [5548.839276492856, 3221.949418577452]]}, {"length": 9.752045583, "source": 4224980287, "destination": 4224980290, "path": [[5641.139276491458, 3222.7994185767275], [5641.03927649029, 3178.9494185794356]]}, {"length": 57.2629432429, "source": 4224980287, "destination": 4224980299, "path": [[5641.139276491458, 3222.7994185767275], [5640.739276493889, 3227.5494185789457], [5642.189276493071, 3260.999418579047], [5642.189276493071, 3480.2494185761643]]}, {"length": 14.3536793089, "source": 2585900353, "destination": 2585900320, "path": [[-1702.3607235060467, -1890.1005814235816], [-1707.9107235105084, -1880.8005814214823], [-1729.4107235059641, -1866.6005814225173], [-1766.9607235077933, -1850.350581420912]]}, {"length": 27.2325724721, "source": 2585900353, "destination": 2585900605, "path": [[-1702.3607235060467, -1890.1005814235816], [-1701.1107235092027, -1767.6505814208099]]}, {"length": 13.7106005979, "source": 2585900353, "destination": 4719494637, "path": [[-1702.3607235060467, -1890.1005814235816], [-1694.5107235102341, -1903.1505814233185], [-1632.0607235087436, -1901.1005814206783]]}, {"length": 100.330323406, "source": 4224980290, "destination": 4224950802, "path": [[5641.03927649029, 3178.9494185794356], [6016.2392764908645, 3179.8494185792947], [6068.539276490981, 3179.949418576911], [6149.189276491996, 3180.149418579248], [6229.339276494273, 3152.849418576409]]}, {"length": 15.5198381642, "source": 4224980290, "destination": 4224950839, "path": [[5641.03927649029, 3178.9494185794356], [5548.839276492856, 3178.7494185770984]]}, {"length": 9.752045583, "source": 4224980290, "destination": 4224980287, "path": [[5641.03927649029, 3178.9494185794356], [5641.139276491458, 3222.7994185767275]]}, {"length": 48.4150226888, "source": 2312746308, "destination": 2312746297, "path": [[-3340.860723511696, 5654.649418577406], [-3342.4107235049405, 5872.349418577727]]}, {"length": 95.8641991785, "source": 2312746308, "destination": 2316883619, "path": [[-3340.860723511696, 5654.649418577406], [-2771.4107235112806, 5657.949418576891]]}, {"length": 15.1596755237, "source": 2312746308, "destination": 2068877116, "path": [[-3340.860723511696, 5654.649418577406], [-3430.910723508873, 5654.149418578669]]}, {"length": 48.5262161572, "source": 2312746308, "destination": 2312746385, "path": [[-3340.860723511696, 5654.649418577406], [-3339.4107235054094, 5436.449418578349]]}, {"length": 16.1401403018, "source": 2585900359, "destination": 2585900332, "path": [[-2114.960723510251, -1817.9005814218385], [-2019.0607235051061, -1817.8505814212542]]}, {"length": 16.7029713236, "source": 2585900359, "destination": 2585900364, "path": [[-2114.960723510251, -1817.9005814218385], [-2113.7107235063013, -1893.0005814219442]]}, {"length": 8.17106787638, "source": 2585900359, "destination": 2585900335, "path": [[-2114.960723510251, -1817.9005814218385], [-2163.510723505624, -1817.9005814218385]]}, {"length": 90.57397476, "source": 2585900362, "destination": 135064044, "path": [[-2105.61072351112, -2376.2005814234044], [-2643.6607235069687, -2384.8505814214604]]}, {"length": 98.904861276, "source": 2585900362, "destination": 2585900379, "path": [[-2105.61072351112, -2376.2005814234044], [-2113.0607235093635, -1931.5005814206643]]}, {"length": 4.32763976731, "source": 2585900362, "destination": 4719494628, "path": [[-2105.61072351112, -2376.2005814234044], [-2079.910723509215, -2375.8005814222824]]}, {"length": 57.2629432429, "source": 4224980299, "destination": 4224980287, "path": [[5642.189276493071, 3480.2494185761643], [5642.189276493071, 3260.999418579047], [5640.739276493889, 3227.5494185789457], [5641.139276491458, 3222.7994185767275]]}, {"length": 8.56210235676, "source": 2585900364, "destination": 2585900379, "path": [[-2113.7107235063013, -1893.0005814219442], [-2113.0607235093635, -1931.5005814206643]]}, {"length": 24.1354107245, "source": 2585900364, "destination": 2585900332, "path": [[-2113.7107235063013, -1893.0005814219442], [-2101.5607235099765, -1868.6005814210205], [-2088.160723509702, -1855.4505814236677], [-2072.060723506297, -1840.2005814230904], [-2055.9607235099975, -1830.050581421716], [-2019.0607235051061, -1817.8505814212542]]}, {"length": 16.7029713236, "source": 2585900364, "destination": 2585900359, "path": [[-2113.7107235063013, -1893.0005814219442], [-2114.960723510251, -1817.9005814218385]]}, {"length": 60.134308904, "source": 135050582, "destination": 1433125600, "path": [[-7076.210723511167, 4268.749418578465], [-7075.560723507124, 3998.3494185769077]]}, {"length": 161.732739953, "source": 135050582, "destination": 1433125587, "path": [[-7076.210723511167, 4268.749418578465], [-6541.410723507113, 4270.0994185764785], [-6484.510723510084, 4288.849418578877], [-6442.710723504774, 4323.549418579376], [-6415.510723506657, 4369.449418579307], [-6403.4607235115, 4448.499418579388], [-6396.810723508395, 4546.999418579389]]}, {"length": 11.4463158729, "source": 135050582, "destination": 1965661549, "path": [[-7076.210723511167, 4268.749418578465], [-7144.210723510014, 4268.699418577881]]}, {"length": 13.3545507294, "source": 135050582, "destination": 2284151911, "path": [[-7076.210723511167, 4268.749418578465], [-7076.5107235075675, 4328.799418576778]]}, {"length": 6.95300778927, "source": 135050585, "destination": 1965661536, "path": [[-7084.160723508148, 6493.0494185766465], [-7125.460723507615, 6492.749418576694]]}, {"length": 13.7783989148, "source": 135050585, "destination": 2286590558, "path": [[-7084.160723508148, 6493.0494185766465], [-7085.110723508592, 6431.099418577446]]}, {"length": 61.4246184894, "source": 134968207, "destination": 2086723490, "path": [[3186.489276494342, 986.1994185769163], [3187.989276490555, 709.9994185786329]]}, {"length": 100.187125772, "source": 134968207, "destination": 2080617396, "path": [[3186.489276494342, 986.1994185769163], [3362.339276492321, 987.1994185779442], [3499.739276492164, 984.2494185789974], [3781.189276494956, 971.8994185767826]]}, {"length": 60.4682811541, "source": 134968207, "destination": 2086723461, "path": [[3186.489276494342, 986.1994185769163], [3185.2392764903925, 1258.0994185782401]]}, {"length": 122.31228475, "source": 134968207, "destination": 134968206, "path": [[3186.489276494342, 986.1994185769163], [2459.8392764900723, 981.1994185788819]]}, {"length": 89.1371415846, "source": 2585900382, "destination": 2585900379, "path": [[-2642.6607235094934, -1935.5505814218077], [-2113.0607235093635, -1931.5005814206643]]}, {"length": 99.9287244937, "source": 2585900382, "destination": 135064044, "path": [[-2642.6607235094934, -1935.5505814218077], [-2639.6607235099623, -2026.6005814235655], [-2643.6607235069687, -2384.8505814214604]]}, {"length": 68.8716409487, "source": 2585900382, "destination": 3380364837, "path": [[-2642.6607235094934, -1935.5505814218077], [-2646.3607235100994, -1823.7005814221163], [-2651.810723506287, -1785.6505814215495], [-2659.8607235115423, -1758.2505814210947], [-2678.6107235068357, -1725.8005814220212], [-2662.1107235058616, -1706.2505814209317], [-2639.310723509425, -1693.0505814229946], [-2601.7607235075957, -1677.8005814224173], [-2577.9107235095466, -1672.3005814220926]]}, {"length": 59.9129832412, "source": 3146411775, "destination": 135090056, "path": [[-3754.660723508607, -4642.200581422174], [-4110.660723505078, -4644.600581421799]]}, {"length": 65.0459450123, "source": 3146411775, "destination": 135090059, "path": [[-3754.660723508607, -4642.200581422174], [-3368.1607235109823, -4639.600581423764]]}, {"length": 102.389436938, "source": 3146411775, "destination": 3146411815, "path": [[-3754.660723508607, -4642.200581422174], [-3751.9607235054764, -5102.600581423644]]}, {"length": 121.59650195, "source": 135047169, "destination": 135016288, "path": [[6824.8392764900245, -2865.6005814227115], [7547.339276491983, -2862.6005814231803]]}, {"length": 40.1416375553, "source": 135047169, "destination": 135047195, "path": [[6824.8392764900245, -2865.6005814227115], [6823.839276492549, -2685.100581423683]]}, {"length": 12.88746305, "source": 135047169, "destination": 2086854415, "path": [[6824.8392764900245, -2865.6005814227115], [6824.689276491825, -2923.5505814213525]]}, {"length": 14.6410013077, "source": 2080585062, "destination": 3758384281, "path": [[2837.4892764944093, -4638.500581421567], [2781.43927648955, -4688.850581423765]]}, {"length": 17.0952328467, "source": 2080585062, "destination": 2080585189, "path": [[2837.4892764944093, -4638.500581421567], [2759.4392764882514, -4589.300581422151]]}, {"length": 42.7688051727, "source": 2293202934, "destination": 2293202952, "path": [[-11938.510723510375, 99.94941857627282], [-11838.01072350832, 30.44941857766048], [-11812.360723510552, 3.0494185772056426], [-11812.560723505783, -52.65058142356338]]}, {"length": 31.8435475783, "source": 2293202934, "destination": 2293202922, "path": [[-11938.510723510375, 99.94941857627282], [-11997.81072350703, 140.89941857875488], [-12032.760723506897, 140.59941857880176], [-12086.410723505025, 140.59941857880176], [-12105.8607235085, 145.0494185775142]]}, {"length": 2.77432456087, "source": 2293202934, "destination": 2293202935, "path": [[-11938.510723510375, 99.94941857627282], [-11948.860723506983, 90.24941857660451]]}, {"length": 22.7030927036, "source": 2585900397, "destination": 2585900402, "path": [[-2456.9607235065405, -1671.7005814221864], [-2424.760723506836, -1687.9505814237916], [-2407.310723505418, -1712.3005814205783], [-2407.310723505418, -1757.4005814218197]]}, {"length": 12.1457090808, "source": 2585900397, "destination": 2585900437, "path": [[-2456.9607235065405, -1671.7005814221864], [-2423.410723508823, -1664.6005814209275], [-2412.6607235075426, -1658.5505814212809], [-2401.960723510399, -1648.4005814234592], [-2397.9107235092556, -1644.3005814217315]]}, {"length": 20.4476415995, "source": 2585900397, "destination": 3380364837, "path": [[-2456.9607235065405, -1671.7005814221864], [-2498.510723505376, -1668.7005814226552], [-2570.9107235059037, -1670.7005814211584], [-2577.9107235095466, -1672.3005814220926]]}, {"length": 22.7030927036, "source": 2585900402, "destination": 2585900397, "path": [[-2407.310723505418, -1757.4005814218197], [-2407.310723505418, -1712.3005814205783], [-2424.760723506836, -1687.9505814237916], [-2456.9607235065405, -1671.7005814221864]]}, {"length": 104.050314812, "source": 4274705785, "destination": 2140984947, "path": [[9578.789276488918, 6473.149418578572], [9584.389276490412, 6457.149418576336], [9586.389276492468, 6444.449418577136], [9587.739276490482, 6204.89941857727], [9587.739276490482, 6122.149418576583], [9583.689276489338, 6100.799418579328], [9574.98927649425, 6072.899418576582], [9566.239276495025, 6056.14941857624], [9555.539276490777, 6038.899418577159], [9540.93927649069, 6026.999418576651], [9526.139276488266, 6021.049418578173]]}, {"length": 22.849159493, "source": 4274705785, "destination": 4614339557, "path": [[9578.789276488918, 6473.149418578572], [9555.08927648907, 6425.499418575953], [9533.739276491815, 6376.249418575952]]}, {"length": 132.070188593, "source": 4274705785, "destination": 4274706131, "path": [[9578.789276488918, 6473.149418578572], [9554.839276489702, 6451.0494185761045], [9542.439276494008, 6454.699418576127], [9530.739276492284, 6456.149418578861], [8942.689276494775, 6454.09941857622], [8809.139276493737, 6453.449418579283]]}, {"length": 18.6262253215, "source": 2080585085, "destination": 2086854513, "path": [[7544.43927649362, -3086.4505814207632], [7545.5392764922635, -3002.7005814226013]]}, {"length": 184.716486905, "source": 2282034558, "destination": 2282034716, "path": [[-8550.060723507613, -482.6505814214954], [-8462.56072350826, -501.3005814227256], [-8234.910723508903, -501.3005814227256], [-8233.96072350846, -636.2505814223596], [-8232.46072350514, -861.350581423892], [-8231.510723511803, -1090.8005814229682]]}, {"length": 66.9509544689, "source": 2282034558, "destination": 135065293, "path": [[-8550.060723507613, -482.6505814214954], [-8551.410723505625, -181.60058142058233]]}, {"length": 55.0307871778, "source": 2282034558, "destination": 135043207, "path": [[-8550.060723507613, -482.6505814214954], [-8548.910723504832, -730.1005814213113]]}, {"length": 28.8865915993, "source": 2080585087, "destination": 1394286598, "path": [[3663.3892764896814, -4567.450581422605], [3491.739276491046, -4567.450581422605]]}, {"length": 13.249531197, "source": 2286663047, "destination": 2286663049, "path": [[-5583.860723511691, 6437.249418578262], [-5662.560723507681, 6436.549418577187]]}, {"length": 38.2734640501, "source": 2286663047, "destination": 2293563003, "path": [[-5583.860723511691, 6437.249418578262], [-5356.510723508734, 6438.149418578121]]}, {"length": 47.6241078556, "source": 2286663047, "destination": 3299414701, "path": [[-5583.860723511691, 6437.249418578262], [-5583.860723511691, 6417.749418577756], [-5583.460723507016, 6349.399418578372], [-5583.010723505311, 6278.5494185781945], [-5583.010723505311, 6223.099418576794]]}, {"length": 10.57070973, "source": 2585900424, "destination": 3380364847, "path": [[-2373.8107235047323, -1546.1005814216833], [-2377.5107235053383, -1593.5505814219653]]}, {"length": 47.7807303989, "source": 2286663049, "destination": 2068973834, "path": [[-5662.560723507681, 6436.549418577187], [-5661.710723508406, 6221.699418578197]]}, {"length": 9.81423009963, "source": 2286663049, "destination": 2286663050, "path": [[-5662.560723507681, 6436.549418577187], [-5720.860723506859, 6436.499418576603]]}, {"length": 13.249531197, "source": 2286663049, "destination": 2286663047, "path": [[-5662.560723507681, 6436.549418577187], [-5583.860723511691, 6437.249418578262]]}, {"length": 9.81423009963, "source": 2286663050, "destination": 2286663049, "path": [[-5720.860723506859, 6436.499418576603], [-5662.560723507681, 6436.549418577187]]}, {"length": 111.608057892, "source": 2286663050, "destination": 2292321422, "path": [[-5720.860723506859, 6436.499418576603], [-5717.360723508591, 5934.6494185774645]]}, {"length": 98.549563393, "source": 2286663050, "destination": 2286663055, "path": [[-5720.860723506859, 6436.499418576603], [-6306.260723505375, 6434.799418578052]]}, {"length": 12.8124150067, "source": 2080585099, "destination": 1429423040, "path": [[2917.1392764908433, -4562.000581422864], [2871.389276492664, -4608.050581420997]]}, {"length": 89.12025694, "source": 2080585099, "destination": 1295456170, "path": [[2917.1392764908433, -4562.000581422864], [2966.239276489091, -4591.650581421191], [2960.639276494703, -4609.050581422025], [2968.939276492222, -4624.150581420849], [2983.6892764905087, -4638.350581423367], [3132.5392764927074, -4756.05058142392], [3168.7892764935555, -4798.7005814214], [3184.5892764934547, -4803.900581421772], [3203.639276492254, -4805.800581422659], [3225.089276490678, -4801.750581421516], [3245.1892764910895, -4792.600581421169], [3262.58927648837, -4771.100581422161]]}, {"length": 16.7973783585, "source": 2080585099, "destination": 2080585171, "path": [[2917.1392764908433, -4562.000581422864], [2878.4892764903702, -4539.200581422875], [2838.4892764918845, -4515.500581423026]]}, {"length": 18.9661438763, "source": 2585900428, "destination": 2585900658, "path": [[-2013.0107235090122, -1357.1005814227988], [-1957.710723509365, -1321.0505814207352], [-1918.0107235072796, -1321.0505814207352]]}, {"length": 55.6755638374, "source": 2585900428, "destination": 3380364843, "path": [[-2013.0107235090122, -1357.1005814227988], [-2343.8107235094208, -1357.8505814209052]]}, {"length": 10.8301315659, "source": 2585900428, "destination": 2585900643, "path": [[-2013.0107235090122, -1357.1005814227988], [-2013.260723508381, -1405.8005814234775]]}, {"length": 16.0763560888, "source": 2585900428, "destination": 2585900687, "path": [[-2013.0107235090122, -1357.1005814227988], [-1917.510723508542, -1355.6505814236175]]}, {"length": 12.2801638014, "source": 2286663053, "destination": 2286663056, "path": [[-6421.410723511655, 6434.949418576252], [-6388.410723509707, 6434.849418578637], [-6348.460723508253, 6434.749418577468]]}, {"length": 47.714948604, "source": 2286663053, "destination": 1433125500, "path": [[-6421.410723511655, 6434.949418576252], [-6419.460723506631, 6220.399418577216]]}, {"length": 111.735855737, "source": 2286663053, "destination": 2286590558, "path": [[-6421.410723511655, 6434.949418576252], [-6438.8107235089365, 6434.999418576836], [-6603.360723509866, 6434.349418576347], [-6785.760723509782, 6433.899418578193], [-6971.010723511028, 6433.0494185789175], [-7085.110723508592, 6431.099418577446]]}, {"length": 7.10280942828, "source": 2286663055, "destination": 2286663056, "path": [[-6306.260723505375, 6434.799418578052], [-6335.060723507979, 6434.6994185768835], [-6348.460723508253, 6434.749418577468]]}, {"length": 98.549563393, "source": 2286663055, "destination": 2286663050, "path": [[-6306.260723505375, 6434.799418578052], [-5720.860723506859, 6436.499418576603]]}, {"length": 31.0607204252, "source": 2585900432, "destination": 2585936626, "path": [[-2014.3607235070249, -1645.3505814233438], [-1829.8107235068528, -1644.7505814234376]]}, {"length": 26.1113473439, "source": 2585900432, "destination": 2585900611, "path": [[-2014.3607235070249, -1645.3505814233438], [-1960.710723508896, -1701.1505814217287], [-1951.3607235097652, -1711.300581423103], [-1945.3107235065659, -1717.9005814220716], [-1922.8607235106665, -1740.1505814227392]]}, {"length": 43.7002138083, "source": 2585900432, "destination": 3380364844, "path": [[-2014.3607235070249, -1645.3505814233438], [-2274.0107235108553, -1644.650581422269]]}, {"length": 35.660483011, "source": 2585900432, "destination": 2585900621, "path": [[-2014.3607235070249, -1645.3505814233438], [-2013.6107235089185, -1485.0005814217582]]}, {"length": 21.4920759564, "source": 2585900432, "destination": 2585900614, "path": [[-2014.3607235070249, -1645.3505814233438], [-2014.3607235070249, -1670.2005814224208], [-2021.7607235082369, -1683.9005814226482], [-2032.4607235053804, -1704.2005814218442], [-2039.2107235096546, -1727.5505814211556], [-2040.1607235100983, -1738.7505814205895]]}, {"length": 15.1676994255, "source": 2312746385, "destination": 2309494184, "path": [[-3339.4107235054094, 5436.449418578349], [-3429.5107235067235, 5436.449418578349]]}, {"length": 48.5262161572, "source": 2312746385, "destination": 2312746308, "path": [[-3339.4107235054094, 5436.449418578349], [-3340.860723511696, 5654.649418577406]]}, {"length": 12.6214148754, "source": 2312746385, "destination": 3661788598, "path": [[-3339.4107235054094, 5436.449418578349], [-3339.060723504872, 5379.699418575967]]}, {"length": 96.0642907294, "source": 2312746385, "destination": 2316883623, "path": [[-3339.4107235054094, 5436.449418578349], [-2768.7607235051814, 5438.849418577974]]}, {"length": 95.9971391644, "source": 2312746386, "destination": 2316883624, "path": [[-3338.71072351144, 5322.999418577723], [-2768.460723508781, 5325.79941857847]]}, {"length": 15.167105208, "source": 2312746386, "destination": 2309494209, "path": [[-3338.71072351144, 5322.999418577723], [-3428.8107235056486, 5323.099418578891]]}, {"length": 48.5039235303, "source": 2312746386, "destination": 2312746444, "path": [[-3338.71072351144, 5322.999418577723], [-3337.360723506322, 5104.89941857628]]}, {"length": 12.6099843734, "source": 2312746386, "destination": 3661788598, "path": [[-3338.71072351144, 5322.999418577723], [-3339.060723504872, 5379.699418575967]]}, {"length": 20.852973391, "source": 2585900437, "destination": 3380364844, "path": [[-2397.9107235092556, -1644.3005814217315], [-2274.0107235108553, -1644.650581422269]]}, {"length": 12.1457090808, "source": 2585900437, "destination": 2585900397, "path": [[-2397.9107235092556, -1644.3005814217315], [-2401.960723510399, -1648.4005814234592], [-2412.6607235075426, -1658.5505814212809], [-2423.410723508823, -1664.6005814209275], [-2456.9607235065405, -1671.7005814221864]]}, {"length": 11.9427432444, "source": 2585900437, "destination": 3380364847, "path": [[-2397.9107235092556, -1644.3005814217315], [-2389.860723511106, -1634.15058142391], [-2381.8607235099876, -1616.9005814212767], [-2377.810723508844, -1597.650581423693], [-2377.5107235053383, -1593.5505814219653]]}, {"length": 21.4812263141, "source": 2080617369, "destination": 135007454, "path": [[3786.6892764881754, 446.1994185760432], [3914.289276494287, 448.1494185775148]]}, {"length": 60.0139122676, "source": 2080617369, "destination": 2086723430, "path": [[3786.6892764881754, 446.1994185760432], [3783.8892764909815, 716.0494185782795]]}, {"length": 62.669610511, "source": 2068973807, "destination": 134985552, "path": [[-5655.360723508807, 5089.899418578625], [-5656.16072351105, 5371.6994185784015]]}, {"length": 46.0027560462, "source": 2068973807, "destination": 2286663632, "path": [[-5655.360723508807, 5089.899418578625], [-5653.260723505582, 4883.049418577201]]}, {"length": 106.854824596, "source": 2068973807, "destination": 2286663422, "path": [[-5655.360723508807, 5089.899418578625], [-5808.060723509811, 5088.499418576475], [-5950.860723508811, 5087.349418577247], [-5973.660723505247, 5088.099418578906], [-5987.960723508933, 5090.449418577947], [-5997.660723508602, 5095.649418578319], [-6002.41072351082, 5102.299418577872], [-6005.860723504952, 5111.549418579387], [-6007.510723506471, 5123.1494185763895], [-6007.360723508271, 5133.649418578301], [-6004.810723510445, 5313.749418576208]]}, {"length": 125.154965076, "source": 2282034588, "destination": 2282034473, "path": [[-7182.460723505812, -558.0005814209699], [-7674.010723505376, -559.750581423657], [-7675.510723508694, -369.00058142208536]]}, {"length": 59.6017617047, "source": 135108005, "destination": 2086776754, "path": [[6082.539276491161, 411.59941857671356], [6084.739276488449, 143.59941857833292]]}, {"length": 30.8982012786, "source": 135108005, "destination": 1942302110, "path": [[6082.539276491161, 411.59941857671356], [6037.139276493519, 365.0494185762909], [6028.739276494833, 330.2494185781768], [6028.589276489527, 284.5494185770292]]}, {"length": 97.7085180643, "source": 135108005, "destination": 1393207238, "path": [[6082.539276491161, 411.59941857671356], [5993.089276493891, 410.4494185774854], [5502.039276493065, 409.79941857699487]]}, {"length": 15.1676994255, "source": 2309494184, "destination": 2312746385, "path": [[-3429.5107235067235, 5436.449418578349], [-3339.4107235054094, 5436.449418578349]]}, {"length": 17.3729246816, "source": 2309494184, "destination": 2309494186, "path": [[-3429.5107235067235, 5436.449418578349], [-3532.710723504806, 5436.2494185760115]]}, {"length": 48.4149296109, "source": 2309494184, "destination": 2068877116, "path": [[-3429.5107235067235, 5436.449418578349], [-3430.910723508873, 5654.149418578669]]}, {"length": 17.3729246816, "source": 2309494186, "destination": 2309494184, "path": [[-3532.710723504806, 5436.2494185760115], [-3429.5107235067235, 5436.449418578349]]}, {"length": 11.699805057, "source": 2309494186, "destination": 2309494187, "path": [[-3532.710723504806, 5436.2494185760115], [-3602.210723506971, 5436.049418577227]]}, {"length": 97.0411950467, "source": 2309494186, "destination": 2309493997, "path": [[-3532.710723504806, 5436.2494185760115], [-3535.610723510274, 5872.599418577096]]}, {"length": 12.7323245, "source": 2309494186, "destination": 3661788599, "path": [[-3532.710723504806, 5436.2494185760115], [-3532.2107235060685, 5378.999418578445]]}, {"length": 11.699805057, "source": 2309494187, "destination": 2309494186, "path": [[-3602.210723506971, 5436.049418577227], [-3532.710723504806, 5436.2494185760115]]}, {"length": 14.292118621, "source": 2309494187, "destination": 2309494189, "path": [[-3602.210723506971, 5436.049418577227], [-3687.1107235114664, 5435.849418578442]]}, {"length": 12.7542493633, "source": 2309494187, "destination": 2309494197, "path": [[-3602.210723506971, 5436.049418577227], [-3602.1607235099395, 5378.6994185784915]]}, {"length": 14.292118621, "source": 2309494189, "destination": 2309494187, "path": [[-3687.1107235114664, 5435.849418578442], [-3602.210723506971, 5436.049418577227]]}, {"length": 116.702051615, "source": 2309494189, "destination": 2309494187, "path": [[-3687.1107235114664, 5435.849418578442], [-3686.710723506792, 5458.299418577894], [-3689.4607235069543, 5664.699418577612], [-3602.5607235075086, 5666.149418576793], [-3602.210723506971, 5458.649418578432], [-3602.210723506971, 5436.049418577227]]}, {"length": 24.2072321091, "source": 2309494189, "destination": 2309494191, "path": [[-3687.1107235114664, 5435.849418578442], [-3830.910723507941, 5435.499418577905]]}, {"length": 46.0922543827, "source": 2309494191, "destination": 2069376936, "path": [[-3830.910723507941, 5435.499418577905], [-4037.610723507612, 5434.79941857683], [-4104.710723510152, 5434.79941857683]]}, {"length": 12.832798487, "source": 2309494191, "destination": 2069036347, "path": [[-3830.910723507941, 5435.499418577905], [-3829.9607235074973, 5377.799418578633]]}, {"length": 24.2072321091, "source": 2309494191, "destination": 2309494189, "path": [[-3830.910723507941, 5435.499418577905], [-3687.1107235114664, 5435.849418578442]]}, {"length": 97.1141742058, "source": 2309494191, "destination": 2309494003, "path": [[-3830.910723507941, 5435.499418577905], [-3831.110723510278, 5448.1494185765205], [-3833.360723511703, 5521.899418578613], [-3834.1107235098093, 5552.099418576262], [-3834.610723508547, 5743.4994185783235], [-3833.5607235069347, 5774.299418579431], [-3829.5607235099283, 5872.099418578358]]}, {"length": 48.5826450307, "source": 2068973811, "destination": 2286663418, "path": [[-6004.010723508201, 5371.499418576064], [-5715.410723510672, 5371.649418577817]]}, {"length": 12.8433289725, "source": 2068973811, "destination": 2286663422, "path": [[-6004.010723508201, 5371.499418576064], [-6004.810723510445, 5313.749418576208]]}, {"length": 57.9844138575, "source": 2068973811, "destination": 134985550, "path": [[-6004.010723508201, 5371.499418576064], [-6348.460723508253, 5371.849418576602]]}, {"length": 11.0533548205, "source": 2068973811, "destination": 3299414703, "path": [[-6004.010723508201, 5371.499418576064], [-6004.610723508108, 5421.199418577771]]}, {"length": 14.4688575198, "source": 2309494197, "destination": 2309494198, "path": [[-3602.1607235099395, 5378.6994185784915], [-3688.1107235089416, 5378.349418577955]]}, {"length": 11.7750556125, "source": 2309494197, "destination": 3661788599, "path": [[-3602.1607235099395, 5378.6994185784915], [-3532.2107235060685, 5378.999418578445]]}, {"length": 12.6214148754, "source": 3661788598, "destination": 2312746385, "path": [[-3339.060723504872, 5379.699418575967], [-3339.4107235054094, 5436.449418578349]]}, {"length": 12.6099843734, "source": 3661788598, "destination": 2312746386, "path": [[-3339.060723504872, 5379.699418575967], [-3338.71072351144, 5322.999418577723]]}, {"length": 15.1676994255, "source": 3661788598, "destination": 134985662, "path": [[-3339.060723504872, 5379.699418575967], [-3429.160723506186, 5379.449418576598]]}, {"length": 108.453001044, "source": 3661788598, "destination": 134985665, "path": [[-3339.060723504872, 5379.699418575967], [-2694.8107235114094, 5381.299418576901]]}, {"length": 12.5098821929, "source": 3661788599, "destination": 2309494210, "path": [[-3532.2107235060685, 5378.999418578445], [-3531.710723507331, 5322.749418578354]]}, {"length": 12.7323245, "source": 3661788599, "destination": 2309494186, "path": [[-3532.2107235060685, 5378.999418578445], [-3532.710723504806, 5436.2494185760115]]}, {"length": 17.3474858075, "source": 3661788599, "destination": 134985662, "path": [[-3532.2107235060685, 5378.999418578445], [-3429.160723506186, 5379.449418576598]]}, {"length": 11.7750556125, "source": 3661788599, "destination": 2309494197, "path": [[-3532.2107235060685, 5378.999418578445], [-3602.1607235099395, 5378.6994185784915]]}, {"length": 110.157137259, "source": 2291095796, "destination": 2091809130, "path": [[-9244.16072351164, 6215.099418579229], [-8589.81072350673, 6212.249418577898]]}, {"length": 11.699805057, "source": 2291095796, "destination": 2091809971, "path": [[-9244.16072351164, 6215.099418579229], [-9313.6607235067, 6215.399418579182]]}, {"length": 46.5908238688, "source": 2291095796, "destination": 2291095714, "path": [[-9244.16072351164, 6215.099418579229], [-9243.960723509303, 6224.149418578407], [-9244.41072351101, 6283.79941857915], [-9244.41072351101, 6351.949418576197], [-9244.910723509747, 6424.599418576094]]}, {"length": 31.6446983877, "source": 4635856458, "destination": 4635856470, "path": [[10099.78927649513, 6452.899418576408], [10076.439276488712, 6445.849418579286], [9935.189276490064, 6441.399418577021], [9914.689276492083, 6446.199418576271]]}, {"length": 6.13638428629, "source": 2316883391, "destination": 2316883392, "path": [[-2812.7107235107474, 6448.449418577695], [-2776.260723507562, 6448.249418578911]]}, {"length": 24.898841929, "source": 2316883391, "destination": 2316883425, "path": [[-2812.7107235107474, 6448.449418577695], [-2811.4107235097663, 6398.0994185790505], [-2812.060723506704, 6336.4994185768355]]}, {"length": 89.7611372546, "source": 2316883391, "destination": 2312746290, "path": [[-2812.7107235107474, 6448.449418577695], [-3345.9107235103147, 6448.849418578817]]}, {"length": 12.3984365833, "source": 2316883392, "destination": 2352259856, "path": [[-2776.260723507562, 6448.249418578911], [-2702.6107235101904, 6448.199418578326]]}, {"length": 47.9485964989, "source": 2316883392, "destination": 2316883445, "path": [[-2776.260723507562, 6448.249418578911], [-2774.110723507306, 6232.649418578262]]}, {"length": 6.13638428629, "source": 2316883392, "destination": 2316883391, "path": [[-2776.260723507562, 6448.249418578911], [-2812.7107235107474, 6448.449418577695]]}, {"length": 15.167105208, "source": 2309494209, "destination": 2312746386, "path": [[-3428.8107235056486, 5323.099418578891], [-3338.71072351144, 5322.999418577723]]}, {"length": 17.3220095741, "source": 2309494209, "destination": 2309494210, "path": [[-3428.8107235056486, 5323.099418578891], [-3531.710723507331, 5322.749418578354]]}, {"length": 12.5314770341, "source": 2309494209, "destination": 134985662, "path": [[-3428.8107235056486, 5323.099418578891], [-3429.160723506186, 5379.449418576598]]}, {"length": 17.3220095741, "source": 2309494210, "destination": 2309494209, "path": [[-3531.710723507331, 5322.749418578354], [-3428.8107235056486, 5323.099418578891]]}, {"length": 96.5843337693, "source": 2309494210, "destination": 2309494563, "path": [[-3531.710723507331, 5322.749418578354], [-3530.310723505181, 4888.449418576357]]}, {"length": 50.2584268082, "source": 2309494210, "destination": 2309494214, "path": [[-3531.710723507331, 5322.749418578354], [-3830.260723511003, 5321.349418576205]]}, {"length": 12.5098821929, "source": 2309494210, "destination": 3661788599, "path": [[-3531.710723507331, 5322.749418578354], [-3532.2107235060685, 5378.999418578445]]}, {"length": 96.5179642279, "source": 2309494214, "destination": 2703728624, "path": [[-3830.260723511003, 5321.349418576205], [-3832.410723511259, 4887.349418577714]]}, {"length": 50.2584268082, "source": 2309494214, "destination": 2309494210, "path": [[-3830.260723511003, 5321.349418576205], [-3531.710723507331, 5322.749418578354]]}, {"length": 12.5537526782, "source": 2309494214, "destination": 2069036347, "path": [[-3830.260723511003, 5321.349418576205], [-3829.9607235074973, 5377.799418578633]]}, {"length": 46.0839006835, "source": 2309494214, "destination": 2069376859, "path": [[-3830.260723511003, 5321.349418576205], [-4076.060723505748, 5320.3994185793135], [-4104.010723509077, 5320.799418576882]]}, {"length": 47.9808219474, "source": 2312746444, "destination": 2312746552, "path": [[-3337.360723506322, 5104.89941857628], [-3336.460723510015, 4889.149418577432]]}, {"length": 108.462391242, "source": 2312746444, "destination": 2069036640, "path": [[-3337.360723506322, 5104.89941857628], [-2693.0607235087223, 5108.199418579317]]}, {"length": 48.5039235303, "source": 2312746444, "destination": 2312746386, "path": [[-3337.360723506322, 5104.89941857628], [-3338.71072351144, 5322.999418577723]]}, {"length": 15.1587837169, "source": 2312746444, "destination": 2069036723, "path": [[-3337.360723506322, 5104.89941857628], [-3427.4107235106044, 5104.5994185763275]]}, {"length": 86.0340753963, "source": 2587024973, "destination": 3009732864, "path": [[711.3892764891716, -4145.600581423992], [710.039276491159, -4187.350581421611], [710.439276488728, -4532.450581422154]]}, {"length": 95.2450811457, "source": 2587024973, "destination": 2587024981, "path": [[711.3892764891716, -4145.600581423992], [1277.3392764913183, -4143.65058142252]]}, {"length": 74.4534719802, "source": 2587024973, "destination": 2139769367, "path": [[711.3892764891716, -4145.600581423992], [268.9892764919932, -4147.850581421863]]}, {"length": 16.7973783585, "source": 2080585171, "destination": 2080585099, "path": [[2838.4892764918845, -4515.500581423026], [2878.4892764903702, -4539.200581422875], [2917.1392764908433, -4562.000581422864]]}, {"length": 379.394378678, "source": 2080585171, "destination": 1277679653, "path": [[2838.4892764918845, -4515.500581423026], [2932.639276494342, -4426.500581423908], [3044.239276491112, -4326.150581423604], [3146.489276488751, -4240.400581423387], [3313.189276489936, -4116.300581422649], [3416.0892764916184, -4050.35058142289], [3619.2392764888837, -3919.200581421478], [3831.139276492479, -3783.6005814213536], [3960.0392764924663, -3699.1005814215328], [4057.389276489687, -3637.1005814217483], [4141.53927648897, -3579.0005814213546], [4193.389276494486, -3543.900581423287], [4255.939276490039, -3493.850581421043], [4318.589276493867, -3434.150581423268], [4368.38927649319, -3382.350581421889], [4426.139276489494, -3314.300581422458]]}, {"length": 46.6925152395, "source": 2080585171, "destination": 3009796703, "path": [[2838.4892764918845, -4515.500581423026], [2790.2892764899434, -4485.900581421731], [2761.689276489676, -4492.450581423668], [2728.8392764930336, -4482.700581423415], [2650.6392764886755, -4579.750581420683]]}, {"length": 102.632128883, "source": 135022841, "destination": 135019326, "path": [[9116.639276491867, -3187.400581420974], [8725.439276489054, -3189.450581423614], [8506.839276492428, -3191.850581423239]]}, {"length": 54.0895405318, "source": 135022841, "destination": 2086854567, "path": [[9116.639276491867, -3187.400581420974], [9120.639276488873, -3430.600581420862]]}, {"length": 100.169658066, "source": 2080617380, "destination": 134997392, "path": [[3776.2392764904007, 2078.749418576109], [3181.1392764922175, 2076.5994185794057]]}, {"length": 124.365597196, "source": 2080617380, "destination": 2080617406, "path": [[3776.2392764904007, 2078.749418576109], [3769.5892764944006, 2637.9494185775343]]}, {"length": 19.6175000328, "source": 1932196090, "destination": 1932196079, "path": [[1552.1892764951417, -5721.800581422798], [1590.3892764939087, -5660.150581423551], [1600.1892764947456, -5641.450581421736]]}, {"length": 118.028410503, "source": 1932196090, "destination": 1932196091, "path": [[1552.1892764951417, -5721.800581422798], [1516.1892764936624, -5715.450581423198], [851.839276492683, -5722.050581422167]]}, {"length": 20.052062311, "source": 1932196090, "destination": 1932196103, "path": [[1552.1892764951417, -5721.800581422798], [1501.6392764906072, -5803.450581421288]]}, {"length": 24.898841929, "source": 2316883425, "destination": 2316883391, "path": [[-2812.060723506704, 6336.4994185768355], [-2811.4107235097663, 6398.0994185790505], [-2812.7107235107474, 6448.449418577695]]}, {"length": 240.976703768, "source": 4719457762, "destination": 134968410, "path": [[-2556.6107235093227, -5608.500581423925], [-1124.6607235051442, -5602.600581422479]]}, {"length": 444.520676017, "source": 4719457762, "destination": 1428266943, "path": [[-2556.6107235093227, -5608.500581423925], [-2566.3607235060226, -5578.450581420924], [-2571.560723509947, -5312.650581423384], [-2576.110723509828, -4726.800581423163], [-2577.0607235102716, -3959.7505814228384], [-2577.510723504872, -3610.600581421153]]}, {"length": 12.6296241588, "source": 4719457762, "destination": 134968407, "path": [[-2556.6107235093227, -5608.500581423925], [-2631.660723508844, -5608.800581423879]]}, {"length": 33.8170188555, "source": 4224849380, "destination": 4224849385, "path": [[7004.089276492209, 4141.14941857946], [7141.389276490883, 4141.649418578198], [7159.489276489239, 4140.099418577847], [7174.9392764886015, 4136.049418576704], [7201.339276491581, 4126.899418576358]]}, {"length": 9.24439101569, "source": 2080585189, "destination": 1429423034, "path": [[2759.4392764882514, -4589.300581422151], [2794.339276491087, -4557.2005814236145]]}, {"length": 104.718425737, "source": 2080585189, "destination": 1429423002, "path": [[2759.4392764882514, -4589.300581422151], [2654.8392764951245, -4532.9505814208915], [2590.7392764921156, -4511.500581422468], [2543.539276494755, -4503.500581421349], [2477.8392764943646, -4496.4005814236425], [2340.889276489122, -4486.350581423438], [2171.9392764936174, -4464.300581421554]]}, {"length": 35.917980599, "source": 2282034663, "destination": 2282822765, "path": [[-8733.010723510404, -774.0505814233245], [-8884.660723509796, -774.6005814226464], [-8946.410723510213, -774.9505814231838]]}, {"length": 145.094168239, "source": 4224849385, "destination": 4224850352, "path": [[7201.339276491581, 4126.899418576358], [7232.739276489042, 4164.399418577603], [7253.389276492328, 4186.2994185777325], [7272.989276494001, 4203.499418576229], [7292.389276493339, 4222.299418579212], [7313.189276494824, 4246.149418577261], [7326.589276495099, 4265.949418577719], [7338.689276494392, 4288.249418578971], [7348.739276494598, 4310.599418577254], [7357.3392764885175, 4333.99941857715], [7363.339276494685, 4356.849418577724], [7367.389276488722, 4378.149418577948], [7368.039276492766, 4399.999418577494], [7366.689276494753, 4423.849418579095], [7363.339276494685, 4445.6494185780575], [7357.3392764885175, 4468.499418578631], [7348.589276489292, 4494.8994185780575], [7337.1892764910735, 4518.749418576107], [7319.789276493793, 4542.099418578971], [7296.289276489177, 4569.499418579426], [7257.439276493471, 4606.349418576628], [7158.989276490502, 4696.1994185785725]]}, {"length": 31.1518211039, "source": 4224849385, "destination": 4224850393, "path": [[7201.339276491581, 4126.899418576358], [7177.089276488858, 4097.949418579105], [7151.9392764898275, 4068.7994185759635], [7134.689276490746, 4045.9994185759742], [7121.63927649101, 4025.1494185774563], [7111.589276490804, 4004.8994185788442]]}, {"length": 33.8170188555, "source": 4224849385, "destination": 4224849380, "path": [[7201.339276491581, 4126.899418576358], [7174.9392764886015, 4136.049418576704], [7159.489276489239, 4140.099418577847], [7141.389276490883, 4141.649418578198], [7004.089276492209, 4141.14941857946]]}, {"length": 100.150176646, "source": 2080617383, "destination": 134997388, "path": [[3778.989276490563, 1533.1494185772954], [3183.9892764935485, 1532.399418579189]]}, {"length": 121.336915944, "source": 2080617383, "destination": 2080617380, "path": [[3778.989276490563, 1533.1494185772954], [3776.2392764904007, 2078.749418576109]]}, {"length": 50.3644770148, "source": 1937680637, "destination": 135039784, "path": [[5551.189276488344, -6836.450581420905], [5850.339276491923, -6829.4005814237835]]}, {"length": 42.874779312, "source": 1937680637, "destination": 1933539609, "path": [[5551.189276488344, -6836.450581420905], [5296.439276492038, -6839.700581423358]]}, {"length": 203.346449335, "source": 1937680637, "destination": 1937679931, "path": [[5551.189276488344, -6836.450581420905], [5550.439276490238, -6776.500581423761], [5549.5392764939315, -6721.000581421777], [5548.1892764888125, -6555.600581421572], [5549.5392764939315, -6508.300581423044], [5547.739276494212, -6471.85058142341], [5545.489276492788, -6434.40058142275], [5546.389276489094, -6376.550581421725], [5545.039276491081, -6330.250581420671], [5544.139276494775, -6290.45058142097], [5545.489276492788, -6253.3505814208465], [5548.1892764888125, -6216.900581421214], [5551.789276488251, -6169.9505814232225], [5552.689276491663, -6132.1505814220245], [5550.889276491944, -6084.850581423496], [5553.139276493368, -6044.700581423257], [5552.239276489956, -6014.750581421424], [5551.789276488251, -5977.6005814207165], [5551.089276494281, -5922.400581422238]]}, {"length": 10.6632396907, "source": 2282034675, "destination": 2282034667, "path": [[-9218.660723504967, -824.5005814231376], [-9218.4107235056, -776.5505814205653]]}, {"length": 47.9485964989, "source": 2316883445, "destination": 2316883392, "path": [[-2774.110723507306, 6232.649418578262], [-2776.260723507562, 6448.249418578911]]}, {"length": 9.45167931345, "source": 2316883445, "destination": 2316883458, "path": [[-2774.110723507306, 6232.649418578262], [-2773.9107235049687, 6190.149418578983]]}, {"length": 12.3984365833, "source": 2316883445, "destination": 2068973820, "path": [[-2774.110723507306, 6232.649418578262], [-2700.4607235099343, 6232.849418577047]]}, {"length": 96.051459534, "source": 2316883445, "destination": 2316883446, "path": [[-2774.110723507306, 6232.649418578262], [-3146.5607235077186, 6230.199418578053], [-3344.6607235063652, 6231.299418576697]]}, {"length": 14.9745410026, "source": 2316883446, "destination": 2068973848, "path": [[-3344.6607235063652, 6231.299418576697], [-3433.6107235048985, 6230.799418577959]]}, {"length": 48.3815030451, "source": 2316883446, "destination": 2312746290, "path": [[-3344.6607235063652, 6231.299418576697], [-3345.9107235103147, 6448.849418578817]]}, {"length": 26.2984855582, "source": 2316883446, "destination": 2316883474, "path": [[-3344.6607235063652, 6231.299418576697], [-3343.360723505384, 6113.049418576821]]}, {"length": 96.051459534, "source": 2316883446, "destination": 2316883445, "path": [[-3344.6607235063652, 6231.299418576697], [-3146.5607235077186, 6230.199418578053], [-2774.110723507306, 6232.649418578262]]}, {"length": 17.4154127353, "source": 2316883447, "destination": 2068973848, "path": [[-3537.0607235094553, 6230.599418579175], [-3433.6107235048985, 6230.799418577959]]}, {"length": 95.3009869684, "source": 2316883447, "destination": 2068973890, "path": [[-3537.0607235094553, 6230.599418579175], [-3888.060723511444, 6228.549418576535], [-4103.160723509802, 6229.199418577025]]}, {"length": 48.438472638, "source": 2316883447, "destination": 2309493756, "path": [[-3537.0607235094553, 6230.599418579175], [-3539.560723510249, 6448.399418577111]]}, {"length": 48.0699633264, "source": 2316883447, "destination": 2316883510, "path": [[-3537.0607235094553, 6230.599418579175], [-3535.9607235108115, 6014.449418579205]]}, {"length": 12.7659086506, "source": 2068973823, "destination": 2069376936, "path": [[-4104.2107235114145, 5377.399418577511], [-4104.510723507815, 5396.249418577526], [-4104.710723510152, 5434.79941857683]]}, {"length": 12.5874502388, "source": 2068973823, "destination": 2069376859, "path": [[-4104.2107235114145, 5377.399418577511], [-4104.010723509077, 5320.799418576882]]}, {"length": 46.167130878, "source": 2068973823, "destination": 2069036347, "path": [[-4104.2107235114145, 5377.399418577511], [-3829.9607235074973, 5377.799418578633]]}, {"length": 12.3729680422, "source": 2068973823, "destination": 134985660, "path": [[-4104.2107235114145, 5377.399418577511], [-4177.710723510586, 5377.449418578095]]}, {"length": 10.7192991666, "source": 4274705916, "destination": 4274706104, "path": [[9937.439276491488, 6257.499418577339], [9937.389276494458, 6209.29941857895]]}, {"length": 23.3610489424, "source": 4274705916, "destination": 4274706104, "path": [[9937.439276491488, 6257.499418577339], [9974.989276493317, 6257.499418577339], [9974.939276489182, 6209.29941857895], [9937.389276494458, 6209.29941857895]]}, {"length": 21.6829284735, "source": 4274705916, "destination": 1942315678, "path": [[9937.439276491488, 6257.499418577339], [9937.48927648852, 6354.999418576313]]}, {"length": 12.4994313122, "source": 2316883457, "destination": 2316883458, "path": [[-2699.660723507691, 6190.149418578983], [-2773.9107235049687, 6190.149418578983]]}, {"length": 23.7628905043, "source": 2316883457, "destination": 2316883478, "path": [[-2699.660723507691, 6190.149418578983], [-2698.8607235054474, 6083.299418577326]]}, {"length": 9.18570829601, "source": 134936066, "destination": 135107888, "path": [[4663.439276491488, 408.7494185789353], [4662.939276492751, 450.0494185784021]]}, {"length": 113.654881761, "source": 134936066, "destination": 2080617372, "path": [[4663.439276491488, 408.7494185789353], [3988.1892764910276, 406.4994185775106]]}, {"length": 60.7683176441, "source": 134936066, "destination": 2086723436, "path": [[4663.439276491488, 408.7494185789353], [4664.3392764949, 135.49941857604608]]}, {"length": 154.550962257, "source": 134936074, "destination": 135012864, "path": [[5516.9892764936885, 1567.899418578378], [5470.0892764927285, 1567.649418579009], [5166.789276493944, 1566.8494185767656], [5042.539276495007, 1567.5994185784248], [4598.839276489742, 1572.3994185776746]]}, {"length": 123.040210775, "source": 134936074, "destination": 135018864, "path": [[5516.9892764936885, 1567.899418578378], [5518.039276488196, 1613.79941857831], [5514.489276492895, 2121.1494185777724]]}, {"length": 76.1947188384, "source": 134936074, "destination": 135012827, "path": [[5516.9892764936885, 1567.899418578378], [5521.53927649357, 1225.2994185786292]]}, {"length": 21.9278243257, "source": 2316883474, "destination": 2316883507, "path": [[-3343.360723505384, 6113.049418576821], [-3342.7107235084463, 6014.449418579205]]}, {"length": 15.1747775935, "source": 2316883474, "destination": 2316883477, "path": [[-3343.360723505384, 6113.049418576821], [-3385.9107235088004, 6112.9494185792055], [-3396.660723510081, 6112.899418578621], [-3433.5107235108353, 6112.849418578036]]}, {"length": 26.2984855582, "source": 2316883474, "destination": 2316883446, "path": [[-3343.360723505384, 6113.049418576821], [-3344.6607235063652, 6231.299418576697]]}, {"length": 5.52096676709, "source": 2585900564, "destination": 2585900608, "path": [[-1859.4607235087324, -1769.6505814228658], [-1826.6607235091215, -1769.250581421744]]}, {"length": 2.27647168916, "source": 2585900564, "destination": 2585900602, "path": [[-1859.4607235087324, -1769.6505814228658], [-1848.6607235104202, -1775.800581423681]]}, {"length": 12.9510863096, "source": 2585900564, "destination": 2585900611, "path": [[-1859.4607235087324, -1769.6505814228658], [-1866.1607235088695, -1767.1505814220723], [-1874.2107235070193, -1765.6005814217224], [-1884.310723511362, -1763.5505814226349], [-1897.7107235116364, -1760.0005814237818], [-1906.410723506724, -1754.9505814216104], [-1915.110723508917, -1747.8505814239043], [-1922.8607235106665, -1740.1505814227392]]}, {"length": 26.2310567325, "source": 2316883477, "destination": 2068973848, "path": [[-3433.5107235108353, 6112.849418578036], [-3433.6107235048985, 6230.799418577959]]}, {"length": 15.1747775935, "source": 2316883477, "destination": 2316883474, "path": [[-3433.5107235108353, 6112.849418578036], [-3396.660723510081, 6112.899418578621], [-3385.9107235088004, 6112.9494185792055], [-3343.360723505384, 6113.049418576821]]}, {"length": 15.068140295, "source": 2316883478, "destination": 2316883499, "path": [[-2698.8607235054474, 6083.299418577326], [-2697.9107235050037, 6015.549418577848]]}, {"length": 12.626055561, "source": 2316883478, "destination": 2316883479, "path": [[-2698.8607235054474, 6083.299418577326], [-2773.860723507937, 6083.099418578541]]}, {"length": 23.8070353608, "source": 2316883479, "destination": 2316883458, "path": [[-2773.860723507937, 6083.099418578541], [-2773.9107235049687, 6190.149418578983]]}, {"length": 15.0896576821, "source": 2316883479, "destination": 2316883501, "path": [[-2773.860723507937, 6083.099418578541], [-2774.4107235108117, 6015.249418577895]]}, {"length": 12.626055561, "source": 2316883479, "destination": 2316883478, "path": [[-2773.860723507937, 6083.099418578541], [-2698.8607235054474, 6083.299418577326]]}, {"length": 46.7689749166, "source": 4274705944, "destination": 2069036712, "path": [[7510.5892764923965, 6448.349418576527], [7511.589276489872, 6238.049418577419]]}, {"length": 109.341757679, "source": 4274705944, "destination": 4274705974, "path": [[7510.5892764923965, 6448.349418576527], [8160.08927649392, 6451.399418576642]]}, {"length": 109.332154487, "source": 4274705944, "destination": 4274706127, "path": [[7510.5892764923965, 6448.349418576527], [6861.13927649501, 6446.349418578024]]}, {"length": 48.0924571103, "source": 2357086468, "destination": 2357086393, "path": [[-2358.9607235052767, 4892.749418576869], [-2360.3607235074264, 5108.999418578009]]}, {"length": 52.8330819487, "source": 2357086468, "destination": 2357086466, "path": [[-2358.9607235052767, 4892.749418576869], [-2045.1107235075483, 4893.899418576098]]}, {"length": 43.0272263439, "source": 2357086468, "destination": 2356771781, "path": [[-2358.9607235052767, 4892.749418576869], [-2614.5607235079638, 4891.7994185764255]]}, {"length": 12.8103045197, "source": 2357086468, "destination": 2357086470, "path": [[-2358.9607235052767, 4892.749418576869], [-2358.6107235047393, 4835.149418578766]]}, {"length": 18.2028634009, "source": 2282034716, "destination": 2282034720, "path": [[-8231.510723511803, -1090.8005814229682], [-8339.660723507335, -1091.3505814222901]]}, {"length": 27.0987170893, "source": 2282034716, "destination": 2282034736, "path": [[-8231.510723511803, -1090.8005814229682], [-8231.410723510635, -1109.7505814205988], [-8231.410723510635, -1212.650581422281]]}, {"length": 184.716486905, "source": 2282034716, "destination": 2282034558, "path": [[-8231.510723511803, -1090.8005814229682], [-8232.46072350514, -861.350581423892], [-8233.96072350846, -636.2505814223596], [-8234.910723508903, -501.3005814227256], [-8462.56072350826, -501.3005814227256], [-8550.060723507613, -482.6505814214954]]}, {"length": 18.2028634009, "source": 2282034720, "destination": 2282034716, "path": [[-8339.660723507335, -1091.3505814222901], [-8231.510723511803, -1090.8005814229682]]}, {"length": 60.875675636, "source": 134960048, "destination": 2069120452, "path": [[2449.439276489329, 3152.6994185782087], [2811.0892764914297, 3152.7994185793773]]}, {"length": 55.7420566343, "source": 134960048, "destination": 2068020343, "path": [[2449.439276489329, 3152.6994185782087], [2449.1392764929287, 2902.0494185765247]]}, {"length": 165.272411243, "source": 2282034724, "destination": 2282034459, "path": [[-7810.010723510175, -1108.4505814231704], [-7810.010723510175, -1062.050581420948], [-7811.16072350585, -925.9005814215016], [-7812.310723508631, -853.6005814221426], [-7810.810723505312, -724.1505814228333], [-7810.010723510175, -648.950581421559], [-7811.960723508093, -579.5505814205626], [-7813.110723510874, -530.9005814240209], [-7815.010723511761, -490.0505814227074], [-7811.16072350585, -455.00058142167177], [-7809.010723505594, -414.50058142089574], [-7806.160723511368, -365.5505814208482]]}, {"length": 46.7106033307, "source": 135075366, "destination": 1932196432, "path": [[5277.789276490807, -7321.650581420869], [5263.58927648829, -7339.350581421655], [5254.839276489065, -7362.800581422135], [5254.389276494465, -7383.250581423084], [5256.189276494183, -7527.750581420633]]}, {"length": 84.2854696144, "source": 135075366, "destination": 1932196355, "path": [[5277.789276490807, -7321.650581420869], [5301.739276490025, -7308.350581421763], [5327.1892764925615, -7301.1505814228885], [5355.43927649229, -7298.750581423264], [5382.439276495177, -7297.900581423988], [5770.939276494857, -7292.950581422985]]}, {"length": 4.76382933275, "source": 135075366, "destination": 1932196380, "path": [[5277.789276490807, -7321.650581420869], [5295.589276492763, -7338.300581423596]]}, {"length": 8.07332050778, "source": 135075366, "destination": 1932196357, "path": [[5277.789276490807, -7321.650581420869], [5262.189276493245, -7309.150581424006], [5244.189276488953, -7295.750581423732]]}, {"length": 94.6733065927, "source": 4274705959, "destination": 1942315667, "path": [[9745.289276494874, 6478.44941857656], [9747.989276490898, 6299.299418579096], [9749.989276492954, 6105.39941857624], [9750.639276489892, 6068.849418578992], [9755.23927649391, 6065.899418576492], [9766.889276491496, 6058.449418578249]]}, {"length": 27.179041382, "source": 4274705959, "destination": 4635856462, "path": [[9745.289276494874, 6478.44941857656], [9776.389276488828, 6447.59941857842], [9832.439276493687, 6468.799418577475], [9833.589276489363, 6479.399418577003], [9841.789276492818, 6486.499418578262], [9862.789276489537, 6487.349418577537]]}, {"length": 32.6321024849, "source": 4274705959, "destination": 1942315679, "path": [[9745.289276494874, 6478.44941857656], [9805.189276491434, 6354.799418577528], [9825.039276492476, 6354.899418578697]]}, {"length": 8.17327359051, "source": 135075368, "destination": 1932196370, "path": [[6090.289276492911, -7288.900581421842], [6090.889276492817, -7325.650581421428]]}, {"length": 8.08624768307, "source": 135075368, "destination": 1933539975, "path": [[6090.289276492911, -7288.900581421842], [6042.23927648917, -7289.500581421748]]}, {"length": 93.8937820491, "source": 135075368, "destination": 1933539615, "path": [[6090.289276492911, -7288.900581421842], [6088.139276492655, -6866.700581422691]]}, {"length": 13.0845686999, "source": 2316883499, "destination": 2703728619, "path": [[-2697.9107235050037, 6015.549418577848], [-2620.2107235064886, 6014.049418578083]]}, {"length": 12.8783684029, "source": 2316883499, "destination": 2316883501, "path": [[-2697.9107235050037, 6015.549418577848], [-2774.4107235108117, 6015.249418577895]]}, {"length": 15.4674847379, "source": 2316883499, "destination": 135016139, "path": [[-2697.9107235050037, 6015.549418577848], [-2698.4107235108468, 5945.999418578651]]}, {"length": 62.056002874, "source": 135074738, "destination": 3146411777, "path": [[-3404.710723508231, -164.0005814209644], [-3503.060723510032, -163.95058142393282], [-3773.410723511006, -163.9005814233485]]}, {"length": 125.426743996, "source": 135074738, "destination": 135074755, "path": [[-3404.710723508231, -164.0005814209644], [-3303.2107235086983, -163.6505814239797], [-2743.1607235115507, -161.60058142133948], [-2659.510723511005, -161.30058142138637]]}, {"length": 78.7936672656, "source": 135074738, "destination": 2086776717, "path": [[-3404.710723508231, -164.0005814209644], [-3405.1107235058, -100.7005814237516], [-3406.9607235096555, 190.29941857695576]]}, {"length": 27.0987170893, "source": 2282034736, "destination": 2282034716, "path": [[-8231.410723510635, -1212.650581422281], [-8231.410723510635, -1109.7505814205988], [-8231.510723511803, -1090.8005814229682]]}, {"length": 21.9278243257, "source": 2316883507, "destination": 2316883474, "path": [[-3342.7107235084463, 6014.449418579205], [-3343.360723505384, 6113.049418576821]]}, {"length": 15.268675415, "source": 2316883507, "destination": 2316883508, "path": [[-3342.7107235084463, 6014.449418579205], [-3433.4107235096667, 6014.449418579205]]}, {"length": 15.8567750908, "source": 2316883507, "destination": 2316883514, "path": [[-3342.7107235084463, 6014.449418579205], [-3341.8607235091713, 5943.149418577321]]}, {"length": 95.6772787582, "source": 2316883507, "destination": 2316883501, "path": [[-3342.7107235084463, 6014.449418579205], [-2820.6607235077286, 6016.699418577076], [-2774.4107235108117, 6015.249418577895]]}, {"length": 15.268675415, "source": 2316883508, "destination": 2316883507, "path": [[-3433.4107235096667, 6014.449418579205], [-3342.7107235084463, 6014.449418579205]]}, {"length": 21.8833893314, "source": 2316883508, "destination": 2316883477, "path": [[-3433.4107235096667, 6014.449418579205], [-3433.5107235108353, 6112.849418578036]]}, {"length": 17.2636217104, "source": 2316883508, "destination": 2316883510, "path": [[-3433.4107235096667, 6014.449418579205], [-3470.66072350799, 6014.449418579205], [-3535.9607235108115, 6014.449418579205]]}, {"length": 109.341757679, "source": 4274705974, "destination": 4274705944, "path": [[8160.08927649392, 6451.399418576642], [7510.5892764923965, 6448.349418576527]]}, {"length": 109.264867268, "source": 4274705974, "destination": 4274706131, "path": [[8160.08927649392, 6451.399418576642], [8809.139276493737, 6453.449418579283]]}, {"length": 47.669688688, "source": 4274705974, "destination": 2069036941, "path": [[8160.08927649392, 6451.399418576642], [8161.089276491395, 6237.04941857639]]}, {"length": 11.4460424778, "source": 2068973833, "destination": 1806083091, "path": [[-4104.010723509077, 5940.79941857828], [-4100.41072350964, 5964.699418576913], [-4101.460723511253, 5992.099418577368]]}, {"length": 46.454187599, "source": 2068973833, "destination": 2069036387, "path": [[-4104.010723509077, 5940.79941857828], [-3828.06072350661, 5941.499418579355]]}, {"length": 13.0044216807, "source": 2068973833, "destination": 135033670, "path": [[-4104.010723509077, 5940.79941857828], [-4181.260723505886, 5940.599418579495]]}, {"length": 15.5772946542, "source": 2068973833, "destination": 2069376831, "path": [[-4104.010723509077, 5940.79941857828], [-4107.560723511483, 5915.6994185762815], [-4107.210723510945, 5870.899418578546]]}, {"length": 25.8318595436, "source": 2312746552, "destination": 2312746554, "path": [[-3336.460723510015, 4889.149418577432], [-3335.010723510834, 4772.999418577228]]}, {"length": 47.9808219474, "source": 2312746552, "destination": 2312746444, "path": [[-3336.460723510015, 4889.149418577432], [-3337.360723506322, 5104.89941857628]]}, {"length": 96.1128302329, "source": 2312746552, "destination": 2316883630, "path": [[-3336.460723510015, 4889.149418577432], [-2765.5107235062815, 4891.249418577104]]}, {"length": 15.0830861817, "source": 2312746552, "destination": 2309494559, "path": [[-3336.460723510015, 4889.149418577432], [-3426.0607235054863, 4888.849418577479]]}, {"length": 95.317064931, "source": 2316883513, "destination": 2316883514, "path": [[-2775.660723507656, 5945.899418577483], [-3341.8607235091713, 5943.149418577321]]}, {"length": 13.0044216807, "source": 2316883513, "destination": 135016139, "path": [[-2775.660723507656, 5945.899418577483], [-2698.4107235108468, 5945.999418578651]]}, {"length": 15.7992640194, "source": 2316883513, "destination": 2316883516, "path": [[-2775.660723507656, 5945.899418577483], [-2772.410723508756, 5874.899418579105]]}, {"length": 15.4243054673, "source": 2316883513, "destination": 2316883501, "path": [[-2775.660723507656, 5945.899418577483], [-2774.4107235108117, 6015.249418577895]]}, {"length": 25.8318595436, "source": 2312746554, "destination": 2312746552, "path": [[-3335.010723510834, 4772.999418577228], [-3336.460723510015, 4889.149418577432]]}, {"length": 95.6412167411, "source": 2312746554, "destination": 2316883632, "path": [[-3335.010723510834, 4772.999418577228], [-2766.8607235113996, 4775.0994185769005]]}, {"length": 32.8174638348, "source": 2312746554, "destination": 2310516317, "path": [[-3335.010723510834, 4772.999418577228], [-3529.960723511749, 4772.299418576154]]}, {"length": 48.4587495506, "source": 2312746554, "destination": 2312746687, "path": [[-3335.010723510834, 4772.999418577228], [-3334.760723511465, 4555.099418578124]]}, {"length": 12.5325557994, "source": 2316883515, "destination": 2316883516, "path": [[-2697.9607235091407, 5874.999418576721], [-2772.410723508756, 5874.899418579105]]}, {"length": 48.3926788394, "source": 2316883515, "destination": 2068877148, "path": [[-2697.9607235091407, 5874.999418576721], [-2696.560723506991, 5657.399418577569]]}, {"length": 13.3491505873, "source": 2316883515, "destination": 2352260084, "path": [[-2697.9607235091407, 5874.999418576721], [-2618.6607235061388, 5875.099418577889]]}, {"length": 15.7992640194, "source": 2316883516, "destination": 2316883513, "path": [[-2772.410723508756, 5874.899418579105], [-2775.660723507656, 5945.899418577483]]}, {"length": 12.5325557994, "source": 2316883516, "destination": 2316883515, "path": [[-2772.410723508756, 5874.899418579105], [-2697.9607235091407, 5874.999418576721]]}, {"length": 48.2477520005, "source": 2316883516, "destination": 2316883619, "path": [[-2772.410723508756, 5874.899418579105], [-2771.4107235112806, 5657.949418576891]]}, {"length": 95.9562902952, "source": 2316883516, "destination": 2312746297, "path": [[-2772.410723508756, 5874.899418579105], [-3342.4107235049405, 5872.349418577727]]}, {"length": 21.1333180737, "source": 2585900605, "destination": 2585900608, "path": [[-1701.1107235092027, -1767.6505814208099], [-1826.6607235091215, -1769.250581421744]]}, {"length": 27.2325724721, "source": 2585900605, "destination": 2585900353, "path": [[-1701.1107235092027, -1767.6505814208099], [-1702.3607235060467, -1890.1005814235816]]}, {"length": 8.77421182575, "source": 2585900605, "destination": 2585900356, "path": [[-1701.1107235092027, -1767.6505814208099], [-1700.6607235074966, -1728.2005814216461]]}, {"length": 3.97823640308, "source": 2585900608, "destination": 2585900602, "path": [[-1826.6607235091215, -1769.250581421744], [-1848.6607235104202, -1775.800581423681]]}, {"length": 5.52096676709, "source": 2585900608, "destination": 2585900564, "path": [[-1826.6607235091215, -1769.250581421744], [-1859.4607235087324, -1769.6505814228658]]}, {"length": 21.1333180737, "source": 2585900608, "destination": 2585900605, "path": [[-1826.6607235091215, -1769.250581421744], [-1701.1107235092027, -1767.6505814208099]]}, {"length": 12.9209878317, "source": 2069036640, "destination": 2357086394, "path": [[-2693.0607235087223, 5108.199418579317], [-2616.310723510651, 5107.5494185788275]]}, {"length": 108.462391242, "source": 2069036640, "destination": 2312746444, "path": [[-2693.0607235087223, 5108.199418579317], [-3337.360723506322, 5104.89941857628]]}, {"length": 61.0024977097, "source": 2069036640, "destination": 134954274, "path": [[-2693.0607235087223, 5108.199418579317], [-2691.310723506035, 4833.899418578369]]}, {"length": 26.1113473439, "source": 2585900611, "destination": 2585900432, "path": [[-1922.8607235106665, -1740.1505814227392], [-1945.3107235065659, -1717.9005814220716], [-1951.3607235097652, -1711.300581423103], [-1960.710723508896, -1701.1505814217287], [-2014.3607235070249, -1645.3505814233438]]}, {"length": 12.9510863096, "source": 2585900611, "destination": 2585900564, "path": [[-1922.8607235106665, -1740.1505814227392], [-1915.110723508917, -1747.8505814239043], [-1906.410723506724, -1754.9505814216104], [-1897.7107235116364, -1760.0005814237818], [-1884.310723511362, -1763.5505814226349], [-1874.2107235070193, -1765.6005814217224], [-1866.1607235088695, -1767.1505814220723], [-1859.4607235087324, -1769.6505814228658]]}, {"length": 19.7442876383, "source": 2585900611, "destination": 2585900614, "path": [[-1922.8607235106665, -1740.1505814227392], [-2040.1607235100983, -1738.7505814205895]]}, {"length": 21.4920759564, "source": 2585900614, "destination": 2585900432, "path": [[-2040.1607235100983, -1738.7505814205895], [-2039.2107235096546, -1727.5505814211556], [-2032.4607235053804, -1704.2005814218442], [-2021.7607235082369, -1683.9005814226482], [-2014.3607235070249, -1670.2005814224208], [-2014.3607235070249, -1645.3505814233438]]}, {"length": 19.7442876383, "source": 2585900614, "destination": 2585900611, "path": [[-2040.1607235100983, -1738.7505814205895], [-1922.8607235106665, -1740.1505814227392]]}, {"length": 19.4229483479, "source": 2585900614, "destination": 2585900459, "path": [[-2040.1607235100983, -1738.7505814205895], [-2040.5107235106357, -1742.7505814211486], [-2037.860723511642, -1756.450581421376], [-2028.460723508374, -1772.7005814229813], [-2019.760723506181, -1786.4005814232087], [-2013.0107235090122, -1795.550581423555], [-1993.5607235055386, -1817.0505814225635]]}, {"length": 30.4883185381, "source": 2585900617, "destination": 2585900673, "path": [[-2013.4607235107183, -1445.9005814231318], [-1832.3107235076463, -1446.3005814207008]]}, {"length": 8.91079443963, "source": 2585900617, "destination": 2585900643, "path": [[-2013.4607235107183, -1445.9005814231318], [-2013.260723508381, -1409.3505814223306], [-2013.260723508381, -1405.8005814234775]]}, {"length": 8.69527713847, "source": 2585900617, "destination": 2585900621, "path": [[-2013.4607235107183, -1445.9005814231318], [-2013.6107235089185, -1485.0005814217582]]}, {"length": 7.26240542894, "source": 2585900617, "destination": 2585900629, "path": [[-2013.4607235107183, -1445.9005814231318], [-2056.6107235069353, -1445.9005814231318]]}, {"length": 14.9468293126, "source": 2267911755, "destination": 2267911758, "path": [[-10328.66072350913, -7913.000581421415], [-10330.160723505343, -7845.800581421258]]}, {"length": 52.6302473792, "source": 2062743117, "destination": 134985629, "path": [[9696.03927649132, 5474.999418577653], [9675.389276495138, 5335.249418578769], [9664.639276493857, 5291.5494185761245], [9644.139276488771, 5242.349418576709]]}, {"length": 14.9468293126, "source": 2267911758, "destination": 2267911755, "path": [[-10330.160723505343, -7845.800581421258], [-10328.66072350913, -7913.000581421415]]}, {"length": 134.079838864, "source": 2267911758, "destination": 1428269604, "path": [[-10330.160723505343, -7845.800581421258], [-10845.510723505924, -8060.4005814208795], [-10915.110723509259, -8080.700581423627], [-10963.660723511737, -8087.050581423227], [-11004.560723506529, -8086.6505814221055], [-11047.610723508682, -8080.500581421291]]}, {"length": 142.816395483, "source": 2267911758, "destination": 2080738981, "path": [[-10330.160723505343, -7845.800581421258], [-9888.76072350564, -7661.200581424055], [-9586.010723509731, -7537.000581422149]]}, {"length": 99.8624477447, "source": 135099983, "destination": 2573122506, "path": [[196.93927649200305, -11501.750581423665], [187.43927649467196, -11128.950581422714], [185.03927649504703, -11052.800581420996]]}, {"length": 303.652928336, "source": 2080560724, "destination": 2080507888, "path": [[502.33927649401267, -8223.900581423748], [483.8892764951197, -8264.200581422188], [444.98927648817244, -8323.050581420688], [425.93927648937324, -8372.950581421179], [398.0392764901808, -8460.050581422962], [389.98927649203097, -8496.550581423178], [387.33927649303723, -8534.100581421455], [383.2892764918938, -8591.950581422481], [377.6392764933689, -8626.600581422394], [332.03927649338993, -8854.900581422242], [325.3392764932528, -8893.500581422131], [305.2392764928413, -8951.300581422573], [290.48927649455436, -9006.100581423481], [278.4392764922927, -9066.000581423594], [270.3892764941429, -9143.100581422203], [266.3392764929995, -9215.150581422193], [258.5892764912501, -9346.900581423512], [254.28927649073785, -9501.300581423067], [251.2392764941751, -9544.800581423373], [244.38927648873232, -9566.700581423504]]}, {"length": 11.5194607169, "source": 2080560724, "destination": 2080560729, "path": [[502.33927649401267, -8223.900581423748], [512.7892764917874, -8201.15058142079], [526.3392764902619, -8175.400581421854]]}, {"length": 11.6333678586, "source": 2080560724, "destination": 2573122523, "path": [[502.33927649401267, -8223.900581423748], [438.2392764910037, -8204.300581422074]]}, {"length": 7.26240542894, "source": 2585900629, "destination": 2585900617, "path": [[-2056.6107235069353, -1445.9005814231318], [-2013.4607235107183, -1445.9005814231318]]}, {"length": 6.4556093812, "source": 2585900629, "destination": 2585900619, "path": [[-2056.6107235069353, -1445.9005814231318], [-2094.960723511008, -1445.9005814231318]]}, {"length": 13.0826883883, "source": 2585900629, "destination": 2585900643, "path": [[-2056.6107235069353, -1445.9005814231318], [-2056.6107235069353, -1429.6505814215266], [-2051.910723508854, -1421.0505814240548], [-2043.210723506661, -1415.4505814225615], [-2013.260723508381, -1405.8005814234775]]}, {"length": 12.9610101566, "source": 2585900629, "destination": 2585900621, "path": [[-2056.6107235069353, -1445.9005814231318], [-2055.2607235089226, -1466.7005814210654], [-2049.2607235098603, -1473.3005814235867], [-2037.860723511642, -1477.8505814234677], [-2013.6107235089185, -1485.0005814217582]]}, {"length": 315.372023727, "source": 2267911766, "destination": 2080739113, "path": [[-9387.010723507672, -8267.500581421671], [-9387.610723507578, -8572.40058142139], [-9386.560723505965, -8839.350581421711], [-9384.860723507416, -9685.60058142387]]}, {"length": 16.6681315108, "source": 2267911766, "destination": 1428269738, "path": [[-9387.010723507672, -8267.500581421671], [-9386.860723509471, -8192.550581423318]]}, {"length": 61.1695149705, "source": 2267911766, "destination": 2267911757, "path": [[-9387.010723507672, -8267.500581421671], [-9750.410723505354, -8274.60058142293]]}, {"length": 11.5194607169, "source": 2080560729, "destination": 2080560724, "path": [[526.3392764902619, -8175.400581421854], [512.7892764917874, -8201.15058142079], [502.33927649401267, -8223.900581423748]]}, {"length": 13.8855848593, "source": 2080560729, "destination": 2080507908, "path": [[526.3392764902619, -8175.400581421854], [556.8892764884481, -8117.400581422629]]}, {"length": 113.105774728, "source": 2080560729, "destination": 1393871503, "path": [[526.3392764902619, -8175.400581421854], [590.9392764920085, -8199.30058142404], [655.5392764937551, -8227.850581423723], [731.6892764919203, -8261.300581423824], [793.5892764905361, -8293.450581422945], [851.6892764944828, -8326.000581423188], [910.7392764917677, -8360.850581421886], [963.5892764947585, -8394.700581423109], [1022.9892764925808, -8437.700581421126], [1068.1892764949907, -8471.650581423517]]}, {"length": 111.753626088, "source": 2568599824, "destination": 135064774, "path": [[1029.689276492718, -2753.8005814236044], [1029.689276492718, -2781.5505814210437], [1041.4892764885053, -2800.300581423443], [1020.1892764882814, -2934.0005814226797], [1017.4392764952245, -3180.800581422005], [926.8392764951727, -3204.4005814206857]]}, {"length": 21.7362752193, "source": 2568599824, "destination": 135047214, "path": [[1029.689276492718, -2753.8005814236044], [900.5392764933617, -2753.1005814225296]]}, {"length": 123.724071451, "source": 2568599824, "destination": 135047215, "path": [[1029.689276492718, -2753.8005814236044], [1764.839276489738, -2754.1005814235577]]}, {"length": 8.91079443963, "source": 2585900643, "destination": 2585900617, "path": [[-2013.260723508381, -1405.8005814234775], [-2013.260723508381, -1409.3505814223306], [-2013.4607235107183, -1445.9005814231318]]}, {"length": 10.8301315659, "source": 2585900643, "destination": 2585900428, "path": [[-2013.260723508381, -1405.8005814234775], [-2013.0107235090122, -1357.1005814227988]]}, {"length": 13.0826883883, "source": 2585900643, "destination": 2585900629, "path": [[-2013.260723508381, -1405.8005814234775], [-2043.210723506661, -1415.4505814225615], [-2051.910723508854, -1421.0505814240548], [-2056.6107235069353, -1429.6505814215266], [-2056.6107235069353, -1445.9005814231318]]}, {"length": 11.3756260167, "source": 2140984932, "destination": 2140984945, "path": [[9562.239276490913, 5849.949418578859], [9562.539276494419, 5901.099418576195]]}, {"length": 5.19289003355, "source": 2140984932, "destination": 2140984933, "path": [[9562.239276490913, 5849.949418578859], [9561.589276493976, 5826.5994185759955]]}, {"length": 36.3267936944, "source": 2140984932, "destination": 2074042353, "path": [[9562.239276490913, 5849.949418578859], [9552.08927648954, 5850.949418576334], [9532.73927649434, 5851.599418576825], [9511.189276494748, 5850.3994185770125], [9351.4892764901, 5820.3494185775635]]}, {"length": 23.9131141308, "source": 2080560741, "destination": 1424938810, "path": [[8173.439276490058, -10403.950581423516], [8213.239276493312, -10372.500581421917], [8263.689276489571, -10321.150581422246]]}, {"length": 38.9142993685, "source": 2080560741, "destination": 2080560765, "path": [[8173.439276490058, -10403.950581423516], [8189.7392764886945, -10382.0005814228], [8194.93927649262, -10358.700581420522], [8192.539276492993, -10335.20058142301], [8182.889276490358, -10311.00058142087], [8168.13927649207, -10290.700581421675], [8123.189276489029, -10248.550581422933]]}, {"length": 63.4055851966, "source": 2080560741, "destination": 2573122455, "path": [[8173.439276490058, -10403.950581423516], [8168.989276491346, -10407.450581421785], [8136.3392764899345, -10428.40058142147], [8096.9392764913555, -10439.25058142392], [8081.089276494424, -10441.000581423054], [8045.9392764922195, -10444.900581422446], [7811.939276493263, -10450.650581422138]]}, {"length": 11.6643159523, "source": 2585900646, "destination": 2568599337, "path": [[-1174.1107235110348, -1309.400581423148], [-1174.5107235086039, -1256.950581421279]]}, {"length": 21.6273666128, "source": 2585900646, "destination": 2585936684, "path": [[-1174.1107235110348, -1309.400581423148], [-1302.6107235063478, -1309.9005814218856]]}, {"length": 21.6689993737, "source": 2585900646, "destination": 2586986589, "path": [[-1174.1107235110348, -1309.400581423148], [-1045.3607235092477, -1309.3005814219794]]}, {"length": 14.4781980929, "source": 2585900646, "destination": 2586986591, "path": [[-1174.1107235110348, -1309.400581423148], [-1173.5607235081602, -1374.5005814236322]]}, {"length": 16.9025065247, "source": 2140984935, "destination": 2140984945, "path": [[9563.539276491894, 5977.099418576159], [9562.539276494419, 5901.099418576195]]}, {"length": 4.94758442998, "source": 2140984935, "destination": 2140984938, "path": [[9563.539276491894, 5977.099418576159], [9563.639276493064, 5999.349418576827]]}, {"length": 9.02535929201, "source": 2140984935, "destination": 135076371, "path": [[9563.539276491894, 5977.099418576159], [9614.839276494535, 5988.8994185790525]]}, {"length": 2.59644501677, "source": 2140984936, "destination": 2140984938, "path": [[9549.789276491083, 6004.4994185766145], [9563.639276493064, 5999.349418576827]]}, {"length": 5.4213036214, "source": 2140984936, "destination": 2140984947, "path": [[9549.789276491083, 6004.4994185766145], [9526.139276488266, 6021.049418578173]]}, {"length": 33.006844263, "source": 2140984936, "destination": 134944407, "path": [[9549.789276491083, 6004.4994185766145], [9559.639276488952, 6017.899418576889], [9578.739276491888, 6047.849418578721], [9594.539276491787, 6081.349418579407], [9616.839276489485, 6143.3494185791915]]}, {"length": 23.4400176642, "source": 2585900649, "destination": 2585936696, "path": [[-1918.1607235054798, -1312.4505814232634], [-1917.8107235049424, -1207.0505814207877]]}, {"length": 1.91289595195, "source": 2585900649, "destination": 2585900658, "path": [[-1918.1607235054798, -1312.4505814232634], [-1918.0107235072796, -1321.0505814207352]]}, {"length": 21.2150423881, "source": 2585900649, "destination": 2585900670, "path": [[-1918.1607235054798, -1312.4505814232634], [-1792.1107235068234, -1311.9005814239415]]}, {"length": 2.59644501677, "source": 2140984938, "destination": 2140984936, "path": [[9563.639276493064, 5999.349418576827], [9549.789276491083, 6004.4994185766145]]}, {"length": 9.18521769818, "source": 2140984938, "destination": 2140984948, "path": [[9563.639276493064, 5999.349418576827], [9615.139276490936, 6012.99941857647]]}, {"length": 4.94758442998, "source": 2140984938, "destination": 2140984935, "path": [[9563.639276493064, 5999.349418576827], [9563.539276491894, 5977.099418576159]]}, {"length": 203.487117347, "source": 2062743147, "destination": 2062743178, "path": [[9990.339276491512, 3194.749418579335], [9989.239276492866, 4109.749418578445]]}, {"length": 51.0500302832, "source": 2062743147, "destination": 134959815, "path": [[9990.339276491512, 3194.749418579335], [9776.289276494765, 3194.5994185775817], [9687.189276490926, 3198.199418577019]]}, {"length": 57.1474240388, "source": 2062743147, "destination": 134959818, "path": [[9990.339276491512, 3194.749418579335], [10329.839276494113, 3194.399418578797]]}, {"length": 203.565033208, "source": 2062743147, "destination": 2062743183, "path": [[9990.339276491512, 3194.749418579335], [9991.939276488893, 2279.3994185761335]]}, {"length": 71.4996801633, "source": 2585900652, "destination": 2585936696, "path": [[-1915.2607235071173, -885.5505814224784], [-1917.8107235049424, -1207.0505814207877]]}, {"length": 39.3076255784, "source": 2585900652, "destination": 2573122314, "path": [[-1915.2607235071173, -885.5505814224784], [-1914.4607235048738, -708.8005814210874]]}, {"length": 17.4949285083, "source": 2140984941, "destination": 2140984946, "path": [[9615.389276490305, 5843.999418576828], [9710.789276489606, 5875.199418579058]]}, {"length": 15.6908626057, "source": 2140984941, "destination": 135076364, "path": [[9615.389276490305, 5843.999418576828], [9615.339276493272, 5853.899418578834], [9614.38927649283, 5914.549418577053]]}, {"length": 5.19202216523, "source": 2140984941, "destination": 2140984934, "path": [[9615.389276490305, 5843.999418576828], [9586.739276493006, 5835.349418578772]]}, {"length": 10.6809744698, "source": 2140984943, "destination": 1942315667, "path": [[9763.339276489092, 6010.499418579229], [9766.889276491496, 6058.449418578249]]}, {"length": 16.0376266165, "source": 2140984943, "destination": 2140984940, "path": [[9763.339276489092, 6010.499418579229], [9757.989276494072, 5938.499418576271]]}, {"length": 7.61734836178, "source": 2140984944, "destination": 135076243, "path": [[9709.539276492762, 6038.1494185790525], [9709.989276494469, 6003.899418576708]]}, {"length": 16.8466929971, "source": 2140984944, "destination": 2140984948, "path": [[9709.539276492762, 6038.1494185790525], [9615.139276490936, 6012.99941857647]]}, {"length": 10.6581671907, "source": 2140984944, "destination": 1942315667, "path": [[9709.539276492762, 6038.1494185790525], [9766.889276491496, 6058.449418578249]]}, {"length": 39.924264649, "source": 2140984945, "destination": 2074042353, "path": [[9562.539276494419, 5901.099418576195], [9518.339276489485, 5887.899418578258], [9488.83927649291, 5878.899418576111], [9399.83927649024, 5844.39941857795], [9351.4892764901, 5820.3494185775635]]}, {"length": 11.3756260167, "source": 2140984945, "destination": 2140984932, "path": [[9562.539276494419, 5901.099418576195], [9562.239276490913, 5849.949418578859]]}, {"length": 16.9025065247, "source": 2140984945, "destination": 2140984935, "path": [[9562.539276494419, 5901.099418576195], [9563.539276491894, 5977.099418576159]]}, {"length": 1.91289595195, "source": 2585900658, "destination": 2585900649, "path": [[-1918.0107235072796, -1321.0505814207352], [-1918.1607235054798, -1312.4505814232634]]}, {"length": 18.9661438763, "source": 2585900658, "destination": 2585900428, "path": [[-1918.0107235072796, -1321.0505814207352], [-1957.710723509365, -1321.0505814207352], [-2013.0107235090122, -1357.1005814227988]]}, {"length": 7.6950423814, "source": 2585900658, "destination": 2585900687, "path": [[-1918.0107235072796, -1321.0505814207352], [-1917.510723508542, -1355.6505814236175]]}, {"length": 5.4213036214, "source": 2140984947, "destination": 2140984936, "path": [[9526.139276488266, 6021.049418578173], [9549.789276491083, 6004.4994185766145]]}, {"length": 138.553741421, "source": 2140984947, "destination": 135033696, "path": [[9526.139276488266, 6021.049418578173], [9464.389276494956, 6002.3994185769425], [9300.339276492763, 5937.749418578164], [9233.83927649013, 5908.049418579253], [9178.339276495251, 5877.499418577514], [9162.839276491752, 5889.649418577392], [9101.739276488275, 5949.199418576967], [9088.939276495012, 5959.849418577079], [9080.039276490481, 5966.349418578431], [9064.889276494625, 5973.649418578475], [9052.789276488227, 5977.499418577281], [9033.489276490058, 5980.449418576228], [9020.23927649509, 5981.249418578472], [8999.989276489374, 5981.999418576578], [8811.839276489764, 5980.899418577934]]}, {"length": 104.050314812, "source": 2140984947, "destination": 4274705785, "path": [[9526.139276488266, 6021.049418578173], [9540.93927649069, 6026.999418576651], [9555.539276490777, 6038.899418577159], [9566.239276495025, 6056.14941857624], [9574.98927649425, 6072.899418576582], [9583.689276489338, 6100.799418579328], [9587.739276490482, 6122.149418576583], [9587.739276490482, 6204.89941857727], [9586.389276492468, 6444.449418577136], [9584.389276490412, 6457.149418576336], [9578.789276488918, 6473.149418578572]]}, {"length": 16.8466929971, "source": 2140984948, "destination": 2140984944, "path": [[9615.139276490936, 6012.99941857647], [9709.539276492762, 6038.1494185790525]]}, {"length": 9.18521769818, "source": 2140984948, "destination": 2140984938, "path": [[9615.139276490936, 6012.99941857647], [9563.639276493064, 5999.349418576827]]}, {"length": 28.9898364667, "source": 2140984948, "destination": 134944407, "path": [[9615.139276490936, 6012.99941857647], [9616.839276489485, 6143.3494185791915]]}, {"length": 21.5965066999, "source": 2585900661, "destination": 2585900664, "path": [[-1911.4607235053427, -1355.5505814224489], [-1792.2607235050236, -1319.600581421554]]}, {"length": 24.203446984, "source": 2585900661, "destination": 2585900673, "path": [[-1911.4607235053427, -1355.5505814224489], [-1858.4607235112571, -1416.4505814235895], [-1847.0607235059333, -1431.2005814218764], [-1841.7107235109142, -1437.800581420845], [-1832.3107235076463, -1446.3005814207008]]}, {"length": 1.01806908916, "source": 2585900661, "destination": 2585900687, "path": [[-1911.4607235053427, -1355.5505814224489], [-1917.510723508542, -1355.6505814236175]]}, {"length": 34.5218242466, "source": 2585900664, "destination": 2585900673, "path": [[-1792.2607235050236, -1319.600581421554], [-1794.7607235058172, -1446.4005814218694], [-1832.3107235076463, -1446.3005814207008]]}, {"length": 21.5965066999, "source": 2585900664, "destination": 2585900661, "path": [[-1792.2607235050236, -1319.600581421554], [-1911.4607235053427, -1355.5505814224489]]}, {"length": 1.71410385389, "source": 2585900664, "destination": 2585900670, "path": [[-1792.2607235050236, -1319.600581421554], [-1792.1107235068234, -1311.9005814239415]]}, {"length": 129.842937445, "source": 2062743161, "destination": 2062743232, "path": [[10004.689276492229, 500.0994185770935], [10002.689276490173, 1083.9494185788112]]}, {"length": 57.6649830869, "source": 2062743161, "destination": 135079428, "path": [[10004.689276492229, 500.0994185770935], [10208.589276494706, 502.74941857608724], [10347.239276491393, 504.64941857697454]]}, {"length": 54.3866522211, "source": 2568599376, "destination": 2585936649, "path": [[-1169.0607235053108, -1929.6005814233297], [-1171.0607235073667, -1685.0505814218764]]}, {"length": 5.17550501645, "source": 2568599376, "destination": 2568599372, "path": [[-1169.0607235053108, -1929.6005814233297], [-1138.3107235047873, -1929.4005814209925]]}, {"length": 13.3794980349, "source": 2568599376, "destination": 2568624550, "path": [[-1169.0607235053108, -1929.6005814233297], [-1248.4607235094813, -1932.6005814228608]]}, {"length": 99.3102670451, "source": 2568599376, "destination": 2568599340, "path": [[-1169.0607235053108, -1929.6005814233297], [-1165.4107235088418, -2376.1505814228203]]}, {"length": 1425.31433128, "source": 2080560765, "destination": 2573122565, "path": [[8123.189276489029, -10248.550581422933], [7527.889276488509, -9940.800581421883], [7208.289276491087, -9776.350581422123], [6894.089276492821, -9611.300581422454], [6623.589276493647, -9460.200581422385], [6464.789276492411, -9377.85058142282], [5875.98927648969, -9026.000581421556], [5156.439276490232, -8648.450581421941], [4870.239276492328, -8495.80058142152], [4129.989276492552, -8106.000581420858], [3683.1392764895554, -7870.70058142092], [3321.0392764928542, -7673.900581423254], [2930.5392764911176, -7471.250581421174], [2853.0892764919713, -7422.100581422342], [2784.1892764897125, -7377.600581421007], [2727.9892764937586, -7336.200581423924], [2677.939276495067, -7299.250581422001], [2628.189276492776, -7257.050581422674], [2582.2392764922597, -7215.750581423208], [2515.9892764889946, -7150.400581423355], [2458.78927648846, -7085.200581421703], [2379.539276489595, -6993.150581422469], [2248.389276488183, -6837.550581423102], [2130.4392764918134, -6705.700581420615], [2038.7392764931178, -6612.350581423953], [1969.2892764950898, -6550.300581423585], [1905.389276494418, -6501.000581423], [1833.2892764902908, -6449.050581423421], [1770.4392764912313, -6410.350581422364], [1715.3892764909529, -6378.55058142378], [1642.839276492225, -6342.700581424055], [1538.389276490193, -6293.350581422885]]}, {"length": 1.71410385389, "source": 2585900670, "destination": 2585900664, "path": [[-1792.1107235068234, -1311.9005814239415], [-1792.2607235050236, -1319.600581421554]]}, {"length": 23.2190408461, "source": 2585900670, "destination": 2585936697, "path": [[-1792.1107235068234, -1311.9005814239415], [-1793.760723508342, -1207.5005814224937]]}, {"length": 33.8549654168, "source": 2585900670, "destination": 2585936677, "path": [[-1792.1107235068234, -1311.9005814239415], [-1590.960723511614, -1311.100581421698]]}, {"length": 21.2150423881, "source": 2585900670, "destination": 2585900649, "path": [[-1792.1107235068234, -1311.9005814239415], [-1918.1607235054798, -1312.4505814232634]]}, {"length": 34.5218242466, "source": 2585900673, "destination": 2585900664, "path": [[-1832.3107235076463, -1446.3005814207008], [-1794.7607235058172, -1446.4005814218694], [-1792.2607235050236, -1319.600581421554]]}, {"length": 30.4883185381, "source": 2585900673, "destination": 2585900617, "path": [[-1832.3107235076463, -1446.3005814207008], [-2013.4607235107183, -1445.9005814231318]]}, {"length": 28.4981687646, "source": 2585900673, "destination": 2585936642, "path": [[-1832.3107235076463, -1446.3005814207008], [-1796.360723510304, -1457.6005814213033], [-1774.9107235047745, -1468.7505814237056], [-1752.1607235053693, -1485.0005814217582], [-1741.4107235111942, -1495.1005814225482], [-1732.0607235049579, -1508.300581424038], [-1725.3607235048207, -1527.5505814216217], [-1724.860723506083, -1535.000581423418]]}, {"length": 24.203446984, "source": 2585900673, "destination": 2585900661, "path": [[-1832.3107235076463, -1446.3005814207008], [-1841.7107235109142, -1437.800581420845], [-1847.0607235059333, -1431.2005814218764], [-1858.4607235112571, -1416.4505814235895], [-1911.4607235053427, -1355.5505814224489]]}, {"length": 108.655184961, "source": 2080560771, "destination": 2080560800, "path": [[-321.91072350684635, -8020.800581423515], [-375.7607235073124, -8013.550581424056], [-468.56072351175726, -8007.600581422025], [-607.7607235113192, -7999.350581421539], [-775.4107235058427, -7991.250581422804], [-964.8107235094017, -7977.500581421992]]}, {"length": 12.1880235927, "source": 2080560771, "destination": 1393871529, "path": [[-321.91072350684635, -8020.800581423515], [-323.0607235096272, -7966.000581422605]]}, {"length": 8.99835666062, "source": 1933539606, "destination": 1933539612, "path": [[7043.689276493125, -6815.450581420635], [7044.889276492939, -6855.900581420827]]}, {"length": 52.0637542605, "source": 1933539606, "destination": 134976418, "path": [[7043.689276493125, -6815.450581420635], [6734.339276491141, -6819.350581423578]]}, {"length": 49.8576449844, "source": 1933539606, "destination": 135039780, "path": [[7043.689276493125, -6815.450581420635], [7339.939276491236, -6812.1005814205655]]}, {"length": 55.9466968032, "source": 2062743178, "destination": 135079432, "path": [[9989.239276492866, 4109.749418578445], [10077.139276489788, 4109.79941857903], [10321.589276493625, 4110.799418576506]]}, {"length": 203.487117347, "source": 2062743178, "destination": 2062743147, "path": [[9989.239276492866, 4109.749418578445], [9990.339276491512, 3194.749418579335]]}, {"length": 51.6369608786, "source": 2062743178, "destination": 135076228, "path": [[9989.239276492866, 4109.749418578445], [9734.839276489993, 4111.099418576458], [9682.489276492845, 4111.399418576411]]}, {"length": 7.6950423814, "source": 2585900687, "destination": 2585900658, "path": [[-1917.510723508542, -1355.6505814236175], [-1918.0107235072796, -1321.0505814207352]]}, {"length": 16.0763560888, "source": 2585900687, "destination": 2585900428, "path": [[-1917.510723508542, -1355.6505814236175], [-2013.0107235090122, -1357.1005814227988]]}, {"length": 1.01806908916, "source": 2585900687, "destination": 2585900661, "path": [[-1917.510723508542, -1355.6505814236175], [-1911.4607235053427, -1355.5505814224489]]}, {"length": 25.5566817933, "source": 2358476398, "destination": 2316883632, "path": [[-2615.0607235067014, 4776.999418577788], [-2766.8607235113996, 4775.0994185769005]]}, {"length": 48.1922401198, "source": 2358476398, "destination": 2357086570, "path": [[-2615.0607235067014, 4776.999418577788], [-2614.1107235062577, 4560.2994185784955]]}, {"length": 25.5303953471, "source": 2358476398, "destination": 2356771781, "path": [[-2615.0607235067014, 4776.999418577788], [-2614.5607235079638, 4891.7994185764255]]}, {"length": 96.1451294173, "source": 2358476398, "destination": 2357086471, "path": [[-2615.0607235067014, 4776.999418577788], [-2043.9107235077358, 4777.699418578863]]}, {"length": 16.3842714092, "source": 2354509465, "destination": 2068973824, "path": [[-1863.7107235051076, 6237.999418576834], [-1960.960723508265, 6235.049418577887]]}, {"length": 96.0578041057, "source": 2354509465, "destination": 2355654747, "path": [[-1863.7107235051076, 6237.999418576834], [-1409.3107235098046, 6239.149418576062], [-1293.1107235090167, 6239.849418577137]]}, {"length": 48.5935798075, "source": 2354509465, "destination": 2354509516, "path": [[-1863.7107235051076, 6237.999418576834], [-1863.9607235115818, 6209.499418577735], [-1862.5107235052951, 6019.499418577823]]}, {"length": 47.5380270924, "source": 2354509465, "destination": 2703719278, "path": [[-1863.7107235051076, 6237.999418576834], [-1863.8607235104132, 6248.69941857753], [-1865.410723510763, 6315.599418577733], [-1865.7607235113005, 6451.749418577179]]}, {"length": 60.0699666302, "source": 2069036655, "destination": 2069036329, "path": [[246.93927649366287, 3457.6994185790963], [173.1392764909856, 3458.599418578956], [157.03927649468596, 3464.699418579187], [-74.31072350527756, 3459.999418577553], [-104.46072350589475, 3471.2494185775713]]}, {"length": 63.748983589, "source": 2069036655, "destination": 134982666, "path": [[246.93927649366287, 3457.6994185790963], [245.08927648980716, 3744.3494185787076]]}, {"length": 54.8976397827, "source": 2069036655, "destination": 134980214, "path": [[246.93927649366287, 3457.6994185790963], [248.48927649401276, 3210.849418579187]]}, {"length": 118.273066295, "source": 2080560796, "destination": 2080560771, "path": [[346.8892764928455, -8180.80058142101], [10.189276494543265, -8087.800581421334], [-88.76072350716413, -8060.250581422679], [-193.66072351090224, -8040.100581421683], [-276.810723505605, -8026.900581423746], [-321.91072350684635, -8020.800581423515]]}, {"length": 11.6731983436, "source": 2080560796, "destination": 1393871501, "path": [[346.8892764928455, -8180.80058142101], [366.0392764928133, -8130.350581421198]]}, {"length": 64.4433989443, "source": 2080560800, "destination": 1393871512, "path": [[-964.8107235094017, -7977.500581421992], [-817.4607235105213, -7962.400581423168], [-697.5107235049904, -7956.950581423427], [-583.4607235115641, -7954.150581422681]]}, {"length": 540.774876197, "source": 2080560800, "destination": 1916976479, "path": [[-964.8107235094017, -7977.500581421992], [-2696.4607235058224, -7969.15058142389], [-2664.3607235072864, -7706.550581421112], [-2636.660723510431, -7435.100581421494], [-2619.6607235107194, -7003.100581421506], [-2620.610723511163, -6849.9005814217635]]}, {"length": 95.8641991785, "source": 2316883619, "destination": 2312746308, "path": [[-2771.4107235112806, 5657.949418576891], [-3340.860723511696, 5654.649418577406]]}, {"length": 48.7276855922, "source": 2316883619, "destination": 2316883623, "path": [[-2771.4107235112806, 5657.949418576891], [-2768.7607235051814, 5438.849418577974]]}, {"length": 12.6010470792, "source": 2316883619, "destination": 2068877148, "path": [[-2771.4107235112806, 5657.949418576891], [-2696.560723506991, 5657.399418577569]]}, {"length": 48.2477520005, "source": 2316883619, "destination": 2316883516, "path": [[-2771.4107235112806, 5657.949418576891], [-2772.410723508756, 5874.899418579105]]}, {"length": 499.175451086, "source": 135018149, "destination": 134955571, "path": [[-2532.7107235071367, -10615.350581421268], [-3552.6607235070173, -10623.100581423018], [-3550.160723506224, -11082.100581422339], [-2817.16072350946, -11076.600581422013], [-2210.160723507215, -11071.60058142398]]}, {"length": 167.288505125, "source": 135018149, "destination": 134939967, "path": [[-2532.7107235071367, -10615.350581421268], [-2573.910723505435, -10553.000581420945], [-2614.5607235079638, -10490.650581420625], [-2655.2107235104927, -10419.20058142054], [-2699.410723508322, -10330.40058142376], [-2833.0107235063906, -10001.750581423606], [-2863.6607235057454, -9908.10058142344]]}, {"length": 113.818292329, "source": 2080560806, "destination": 2080560724, "path": [[1061.8892764924226, -8505.700581423525], [1001.2892764947878, -8482.500581422413], [972.0392764904773, -8469.150581422724], [923.0392764933981, -8443.000581422666], [860.4392764937074, -8396.25058142346], [784.2892764884368, -8348.400581422055], [711.8392764908776, -8309.85058142275], [649.8892764952302, -8278.550581422905], [587.1392764902339, -8253.050581423338], [502.33927649401267, -8223.900581423748]]}, {"length": 7.64687078993, "source": 2080560806, "destination": 1393871503, "path": [[1061.8892764924226, -8505.700581423525], [1068.1892764949907, -8471.650581423517]]}, {"length": 25.1412254999, "source": 2316883623, "destination": 2316883624, "path": [[-2768.7607235051814, 5438.849418577974], [-2768.460723508781, 5325.79941857847]]}, {"length": 96.0642907294, "source": 2316883623, "destination": 2312746385, "path": [[-2768.7607235051814, 5438.849418577974], [-3339.4107235054094, 5436.449418578349]]}, {"length": 48.7276855922, "source": 2316883623, "destination": 2316883619, "path": [[-2768.7607235051814, 5438.849418577974], [-2771.4107235112806, 5657.949418576891]]}, {"length": 12.3897104099, "source": 2316883623, "destination": 2316883622, "path": [[-2768.7607235051814, 5438.849418577974], [-2695.1607235048414, 5439.199418578511]]}, {"length": 95.9971391644, "source": 2316883624, "destination": 2312746386, "path": [[-2768.460723508781, 5325.79941857847], [-3338.71072351144, 5322.999418577723]]}, {"length": 96.6410058113, "source": 2316883624, "destination": 2316883630, "path": [[-2768.460723508781, 5325.79941857847], [-2765.5107235062815, 4891.249418577104]]}, {"length": 12.4579018482, "source": 2316883624, "destination": 2358476150, "path": [[-2768.460723508781, 5325.79941857847], [-2694.460723510872, 5326.349418577792]]}, {"length": 25.1412254999, "source": 2316883624, "destination": 2316883623, "path": [[-2768.460723508781, 5325.79941857847], [-2768.7607235051814, 5438.849418577974]]}, {"length": 49.5454461417, "source": 1933539612, "destination": 1933539611, "path": [[7044.889276492939, -6855.900581420827], [7107.139276492091, -6854.800581422182], [7314.6392764940065, -6852.950581421879], [7339.289276494299, -6852.850581420711]]}, {"length": 52.1644359991, "source": 1933539612, "destination": 1933539613, "path": [[7044.889276492939, -6855.900581420827], [6953.289276488305, -6857.50058142176], [6734.939276491048, -6859.600581421432]]}, {"length": 8.99835666062, "source": 1933539612, "destination": 1933539606, "path": [[7044.889276492939, -6855.900581420827], [7043.689276493125, -6815.450581420635]]}, {"length": 44.1505985262, "source": 1933539612, "destination": 1933539703, "path": [[7044.889276492939, -6855.900581420827], [7048.389276491207, -7024.300581420562], [7049.089276492282, -7054.400581420595]]}, {"length": 12.9439857517, "source": 2080617415, "destination": 135012777, "path": [[922.3892764893549, 1523.7494185775802], [999.2892764927319, 1524.0494185775333]]}, {"length": 121.115875756, "source": 2080617415, "destination": 135051134, "path": [[922.3892764893549, 1523.7494185775802], [923.2392764886299, 1569.2994185769749], [919.7392764903611, 2068.3494185789186]]}, {"length": 121.333090091, "source": 2062743212, "destination": 135073554, "path": [[9648.239276494052, 4565.5494185794505], [10224.339276490467, 4569.399418578258], [10224.339276490467, 4459.899418577606]]}, {"length": 50.2273935068, "source": 2062743212, "destination": 134954334, "path": [[9648.239276494052, 4565.5494185794505], [9646.889276488935, 4791.39941857909]]}, {"length": 14.3110243817, "source": 2062743212, "destination": 135076231, "path": [[9648.239276494052, 4565.5494185794505], [9648.489276493421, 4501.199418577073]]}, {"length": 96.6410058113, "source": 2316883630, "destination": 2316883624, "path": [[-2765.5107235062815, 4891.249418577104], [-2768.460723508781, 5325.79941857847]]}, {"length": 96.1128302329, "source": 2316883630, "destination": 2312746552, "path": [[-2765.5107235062815, 4891.249418577104], [-3336.460723510015, 4889.149418577432]]}, {"length": 25.4106171537, "source": 2316883630, "destination": 2356771781, "path": [[-2765.5107235062815, 4891.249418577104], [-2614.5607235079638, 4891.7994185764255]]}, {"length": 12.8103045197, "source": 2316883630, "destination": 2316883631, "path": [[-2765.5107235062815, 4891.249418577104], [-2766.2107235073563, 4833.649418579]]}, {"length": 13.0210442972, "source": 2316883631, "destination": 2316883632, "path": [[-2766.2107235073563, 4833.649418579], [-2766.8607235113996, 4775.0994185769005]]}, {"length": 12.6089122326, "source": 2316883631, "destination": 134954274, "path": [[-2766.2107235073563, 4833.649418579], [-2691.310723506035, 4833.899418578369]]}, {"length": 12.8103045197, "source": 2316883631, "destination": 2316883630, "path": [[-2766.2107235073563, 4833.649418579], [-2765.5107235062815, 4891.249418577104]]}, {"length": 111.010497698, "source": 2316883631, "destination": 134954271, "path": [[-2766.2107235073563, 4833.649418579], [-3425.6607235079173, 4831.249418579375]]}, {"length": 47.870244379, "source": 2316883632, "destination": 2316883634, "path": [[-2766.8607235113996, 4775.0994185769005], [-2765.160723505744, 4559.849418576789]]}, {"length": 95.6412167411, "source": 2316883632, "destination": 2312746554, "path": [[-2766.8607235113996, 4775.0994185769005], [-3335.010723510834, 4772.999418577228]]}, {"length": 25.5566817933, "source": 2316883632, "destination": 2358476398, "path": [[-2766.8607235113996, 4775.0994185769005], [-2615.0607235067014, 4776.999418577788]]}, {"length": 13.0210442972, "source": 2316883632, "destination": 2316883631, "path": [[-2766.8607235113996, 4775.0994185769005], [-2766.2107235073563, 4833.649418579]]}, {"length": 47.870244379, "source": 2316883634, "destination": 2316883632, "path": [[-2765.160723505744, 4559.849418576789], [-2766.8607235113996, 4775.0994185769005]]}, {"length": 47.9140922068, "source": 2316883634, "destination": 2316883636, "path": [[-2765.160723505744, 4559.849418576789], [-2764.560723505838, 4344.399418577894]]}, {"length": 12.7263062456, "source": 2316883634, "destination": 2069036973, "path": [[-2765.160723505744, 4559.849418576789], [-2689.5607235104535, 4560.099418576157]]}, {"length": 95.8902704827, "source": 2316883634, "destination": 2312746687, "path": [[-2765.160723505744, 4559.849418576789], [-2798.710723510567, 4559.499418576252], [-3032.4607235101553, 4557.24941857838], [-3120.7607235117507, 4556.499418576721], [-3206.9107235059846, 4556.449418576136], [-3334.760723511465, 4555.099418578124]]}, {"length": 13.276712539, "source": 2316883636, "destination": 3661057640, "path": [[-2764.560723505838, 4344.399418577894], [-2764.7107235111434, 4284.699418576565]]}, {"length": 47.9140922068, "source": 2316883636, "destination": 2316883634, "path": [[-2764.560723505838, 4344.399418577894], [-2765.160723505744, 4559.849418576789]]}, {"length": 12.8545519819, "source": 2316883636, "destination": 2310516501, "path": [[-2764.560723505838, 4344.399418577894], [-2688.2107235053354, 4343.349418576281]]}, {"length": 95.802128746, "source": 2316883636, "destination": 2312746775, "path": [[-2764.560723505838, 4344.399418577894], [-3333.660723505716, 4340.749418577871]]}, {"length": 13.0099649127, "source": 2316883637, "destination": 3661057640, "path": [[-2764.8107235052066, 4226.1994185786025], [-2764.7107235111434, 4284.699418576565]]}, {"length": 13.0293476529, "source": 2316883637, "destination": 3661057641, "path": [[-2764.8107235052066, 4226.1994185786025], [-2687.4107235101974, 4225.7494185768965]]}, {"length": 97.654786648, "source": 2316883637, "destination": 2316883642, "path": [[-2764.8107235052066, 4226.1994185786025], [-2760.060723510094, 3787.099418577355]]}, {"length": 95.7142208918, "source": 2316883637, "destination": 2312746776, "path": [[-2764.8107235052066, 4226.1994185786025], [-3333.410723506347, 4225.7494185768965]]}, {"length": 23.0484354233, "source": 4274706104, "destination": 1942315675, "path": [[9937.389276494458, 6209.29941857895], [9937.33927649032, 6189.7994185784455], [9826.189276495257, 6189.899418576061]]}, {"length": 10.7192991666, "source": 4274706104, "destination": 4274705916, "path": [[9937.389276494458, 6209.29941857895], [9937.439276491488, 6257.499418577339]]}, {"length": 23.3610489424, "source": 4274706104, "destination": 4274705916, "path": [[9937.389276494458, 6209.29941857895], [9974.939276489182, 6209.29941857895], [9974.989276493317, 6257.499418577339], [9937.439276491488, 6257.499418577339]]}, {"length": 13.2994341674, "source": 2316883642, "destination": 2316883643, "path": [[-2760.060723510094, 3787.099418577355], [-2759.2107235108188, 3727.2994185784114]]}, {"length": 96.1057198132, "source": 2316883642, "destination": 2703728628, "path": [[-2760.060723510094, 3787.099418577355], [-3263.6107235077816, 3784.4494185783615], [-3330.9607235096905, 3785.6994185787585]]}, {"length": 97.654786648, "source": 2316883642, "destination": 2316883637, "path": [[-2760.060723510094, 3787.099418577355], [-2764.8107235052066, 4226.1994185786025]]}, {"length": 314.883197871, "source": 2316883642, "destination": 2310516590, "path": [[-2760.060723510094, 3787.099418577355], [-2645.3607235055188, 3793.1994185775866], [-889.7607235098803, 3801.849418579195]]}, {"length": 13.2994341674, "source": 2316883643, "destination": 2316883642, "path": [[-2759.2107235108188, 3727.2994185784114], [-2760.060723510094, 3787.099418577355]]}, {"length": 235.859356128, "source": 2316883643, "destination": 2311060654, "path": [[-2759.2107235108188, 3727.2994185784114], [-2752.110723506007, 2742.84941857772], [-2751.8107235096068, 2666.7494185765863]]}, {"length": 111.005707494, "source": 2316883643, "destination": 135035727, "path": [[-2759.2107235108188, 3727.2994185784114], [-3418.6607235113797, 3726.3994185785523]]}, {"length": 15.0070068219, "source": 2312746687, "destination": 2069036778, "path": [[-3334.760723511465, 4555.099418578124], [-3423.91072350523, 4555.3494185774925]]}, {"length": 95.8902704827, "source": 2312746687, "destination": 2316883634, "path": [[-3334.760723511465, 4555.099418578124], [-3206.9107235059846, 4556.449418576136], [-3120.7607235117507, 4556.499418576721], [-3032.4607235101553, 4557.24941857838], [-2798.710723510567, 4559.499418576252], [-2765.160723505744, 4559.849418576789]]}, {"length": 48.4587495506, "source": 2312746687, "destination": 2312746554, "path": [[-3334.760723511465, 4555.099418578124], [-3335.010723510834, 4772.999418577228]]}, {"length": 47.669688688, "source": 2312746687, "destination": 2312746775, "path": [[-3334.760723511465, 4555.099418578124], [-3333.660723505716, 4340.749418577871]]}, {"length": 129.842937445, "source": 2062743232, "destination": 2062743161, "path": [[10002.689276490173, 1083.9494185788112], [10004.689276492229, 500.0994185770935]]}, {"length": 57.4214196505, "source": 2062743232, "destination": 134968314, "path": [[10002.689276490173, 1083.9494185788112], [10343.839276494293, 1083.3994185794893]]}, {"length": 54.6577663239, "source": 2062743232, "destination": 2074050069, "path": [[10002.689276490173, 1083.9494185788112], [9894.139276489967, 1073.5994185786524], [9805.589276489001, 1061.3994185781905], [9758.589276493978, 1048.4994185766539], [9727.839276493454, 1032.9994185767077], [9704.489276494143, 1009.9494185773494]]}, {"length": 134.326725719, "source": 2062743232, "destination": 2062743142, "path": [[10002.689276490173, 1083.9494185788112], [9997.289276491018, 1687.949418577972]]}, {"length": 13.0033820616, "source": 2316883652, "destination": 135016133, "path": [[-2754.4607235086005, 2613.899418577148], [-2677.2107235117915, 2614.399418579438]]}, {"length": 11.7620364583, "source": 2316883652, "destination": 2311060654, "path": [[-2754.4607235086005, 2613.899418577148], [-2751.8107235096068, 2666.7494185765863]]}, {"length": 53.3647331016, "source": 2062743237, "destination": 135076228, "path": [[9679.589276494482, 4351.3494185774], [9681.989276494107, 4152.149418576556], [9682.489276492845, 4111.399418576411]]}, {"length": 114.698611709, "source": 2062743237, "destination": 135073554, "path": [[9679.589276494482, 4351.3494185774], [10224.839276489205, 4356.8994185783085], [10224.339276490467, 4459.899418577606]]}, {"length": 10.0564364271, "source": 2062743237, "destination": 4253571980, "path": [[9679.589276494482, 4351.3494185774], [9619.889276493155, 4353.049418575949]]}, {"length": 48.5935798075, "source": 2354509516, "destination": 2354509465, "path": [[-1862.5107235052951, 6019.499418577823], [-1863.9607235115818, 6209.499418577735], [-1863.7107235051076, 6237.999418576834]]}, {"length": 15.8920975442, "source": 2354509516, "destination": 2423670874, "path": [[-1862.5107235052951, 6019.499418577823], [-1861.260723508451, 5973.249418577353], [-1861.2107235114195, 5948.049418577739]]}, {"length": 16.5345801827, "source": 2354509516, "destination": 2352260065, "path": [[-1862.5107235052951, 6019.499418577823], [-1960.660723504759, 6016.699418577076]]}, {"length": 96.0832404678, "source": 2354509516, "destination": 2355654863, "path": [[-1862.5107235052951, 6019.499418577823], [-1291.760723511004, 6022.249418577985]]}, {"length": 109.332154487, "source": 4274706127, "destination": 4274705944, "path": [[6861.13927649501, 6446.349418578024], [7510.5892764923965, 6448.349418576527]]}, {"length": 47.0026273373, "source": 4274706127, "destination": 2069036377, "path": [[6861.13927649501, 6446.349418578024], [6862.339276494822, 6234.999418577303]]}, {"length": 109.340562478, "source": 4274706127, "destination": 4274706132, "path": [[6861.13927649501, 6446.349418578024], [6211.639276493486, 6444.299418578936]]}, {"length": 132.070188593, "source": 4274706131, "destination": 4274705785, "path": [[8809.139276493737, 6453.449418579283], [8942.689276494775, 6454.09941857622], [9530.739276492284, 6456.149418578861], [9542.439276494008, 6454.699418576127], [9554.839276489702, 6451.0494185761045], [9578.789276488918, 6473.149418578572]]}, {"length": 109.264867268, "source": 4274706131, "destination": 4274705974, "path": [[8809.139276493737, 6453.449418579283], [8160.08927649392, 6451.399418576642]]}, {"length": 47.4473955063, "source": 4274706131, "destination": 2069036662, "path": [[8809.139276493737, 6453.449418579283], [8810.33927649355, 6240.099418576506]]}, {"length": 109.340562478, "source": 4274706132, "destination": 4274706127, "path": [[6211.639276493486, 6444.299418578936], [6861.13927649501, 6446.349418578024]]}, {"length": 46.7691676238, "source": 4274706132, "destination": 2069036510, "path": [[6211.639276493486, 6444.299418578936], [6212.839276493298, 6233.999418576275]]}, {"length": 10.6969948865, "source": 4274706132, "destination": 135038807, "path": [[6211.639276493486, 6444.299418578936], [6211.33927648998, 6492.399418576156]]}, {"length": 12.4096988092, "source": 2354509530, "destination": 2358476144, "path": [[-1287.3607235093232, 5332.199418578653], [-1287.7107235098606, 5387.999418577038]]}, {"length": 48.8490134298, "source": 2354509530, "destination": 2358476298, "path": [[-1287.3607235093232, 5332.199418578653], [-1286.4607235059111, 5190.799418578252], [-1286.0107235113105, 5121.949418576577], [-1285.9607235071735, 5112.549418576862]]}, {"length": 12.4954648985, "source": 2354509530, "destination": 2358476148, "path": [[-1287.3607235093232, 5332.199418578653], [-1213.160723509077, 5330.59941857772]]}, {"length": 96.7530859194, "source": 2354509530, "destination": 2355676189, "path": [[-1287.3607235093232, 5332.199418578653], [-1862.110723507726, 5330.949418578257]]}, {"length": 182.461207959, "source": 2069036666, "destination": 2069036850, "path": [[4962.639276492098, 6262.399418577757], [3878.7892764915455, 6258.399418577199]]}, {"length": 8.12904559492, "source": 2069036666, "destination": 2069036508, "path": [[4962.639276492098, 6262.399418577757], [4962.589276495066, 6225.849418576956]]}, {"length": 50.0382679695, "source": 2069036666, "destination": 135064230, "path": [[4962.639276492098, 6262.399418577757], [4961.339276491117, 6487.399418578121]]}, {"length": 32.4104035287, "source": 1667872478, "destination": 2960628184, "path": [[-3058.560723509629, -3966.050581421854], [-3032.8607235077243, -3987.7505814231995], [-2999.910723509913, -4002.850581422024], [-2962.610723507453, -4010.100581421483], [-2924.11072350518, -4008.8005814240546], [-2887.8107235073003, -3999.100581420834]]}, {"length": 27.2590305162, "source": 1667872478, "destination": 2960628168, "path": [[-3058.560723509629, -3966.050581421854], [-3072.910723510347, -3944.0505814205553], [-3079.7107235116528, -3920.1005814213377], [-3078.510723504735, -3895.600581422798], [-3069.46072350911, -3872.050581421149], [-3053.0107235051673, -3850.9505814232625]]}, {"length": 93.613951752, "source": 1667872478, "destination": 1667888186, "path": [[-3058.560723509629, -3966.050581421854], [-3065.6107235103036, -3964.100581423935], [-3109.8607235051645, -3939.800581420627], [-3141.6607235073, -3913.7505814217375], [-3161.4607235113112, -3901.2505814213227], [-3212.4107235063093, -3861.6005814233745], [-3273.46072350565, -3806.300581423727], [-3321.060723507685, -3764.200581422017], [-3370.9107235111446, -3735.5505814211656], [-3483.8107235088955, -3711.4505814237473]]}, {"length": 13.0210442972, "source": 2354509538, "destination": 2703719280, "path": [[-1284.2107235115918, 4839.049418578156], [-1283.8607235110544, 4780.499418576056]]}, {"length": 12.4907756948, "source": 2354509538, "destination": 134954280, "path": [[-1284.2107235115918, 4839.049418578156], [-1210.0107235113455, 4839.299418577525]]}, {"length": 12.809952738, "source": 2354509538, "destination": 2358476437, "path": [[-1284.2107235115918, 4839.049418578156], [-1284.5607235050238, 4896.64941857626]]}, {"length": 112.820206602, "source": 2354509538, "destination": 134954277, "path": [[-1284.2107235115918, 4839.049418578156], [-1954.410723506328, 4836.599418577947]]}, {"length": 96.314510733, "source": 2354509541, "destination": 2703719280, "path": [[-1856.0107235074952, 4778.399418576384], [-1283.8607235110544, 4780.499418576056]]}, {"length": 48.0047267556, "source": 2354509541, "destination": 2703728625, "path": [[-1856.0107235074952, 4778.399418576384], [-1855.810723505158, 4667.249418577768], [-1856.0107235074952, 4619.649418579285], [-1854.9107235088513, 4562.549418576367]]}, {"length": 25.8497689037, "source": 2354509541, "destination": 2358476440, "path": [[-1856.0107235074952, 4778.399418576384], [-1856.2107235098324, 4808.949418578123], [-1860.2107235068388, 4865.249418578798], [-1860.6107235115132, 4894.549418576588]]}, {"length": 31.6305997395, "source": 2354509541, "destination": 2357086471, "path": [[-1856.0107235074952, 4778.399418576384], [-2043.9107235077358, 4777.699418578863]]}, {"length": 17.6508432421, "source": 1424938727, "destination": 1277679555, "path": [[1440.289276494866, -6248.450581423981], [1484.139276492158, -6176.350581423407]]}, {"length": 285.102454006, "source": 1424938727, "destination": 885856813, "path": [[1440.289276494866, -6248.450581423981], [986.0392764906578, -6048.400581423863], [743.4892764948131, -5929.100581422375], [482.1392764924326, -5797.850581423347], [238.58927649200723, -5672.700581420997], [104.13927649466359, -5605.050581422688], [12.789276489399981, -5558.950581423971]]}, {"length": 48.0153049786, "source": 2354509548, "destination": 2703728625, "path": [[-1853.0607235049956, 4346.649418579318], [-1853.910723511376, 4508.949418578823], [-1854.9107235088513, 4562.549418576367]]}, {"length": 96.285151902, "source": 2354509548, "destination": 2357086674, "path": [[-1853.0607235049956, 4346.649418579318], [-1573.0607235084904, 4345.499418576537], [-1281.110723510892, 4348.999418578359]]}, {"length": 128.069143875, "source": 2354509548, "destination": 2356771788, "path": [[-1853.0607235049956, 4346.649418579318], [-2235.5107235085825, 4341.7494185789], [-2613.8107235098573, 4341.699418578315]]}, {"length": 16.2946352548, "source": 1667872493, "destination": 2960628184, "path": [[-2825.7607235104842, -3944.900581423383], [-2835.96072350889, -3961.500581421973], [-2850.0607235102393, -3976.4005814220127], [-2867.5607235086886, -3989.050581420628], [-2887.8107235073003, -3999.100581420834]]}, {"length": 14.2352479284, "source": 1667872493, "destination": 2960628174, "path": [[-2825.7607235104842, -3944.900581423383], [-2818.0607235057664, -3913.4505814217846], [-2824.0607235048287, -3881.7505814208175]]}, {"length": 47.0798605304, "source": 2354509550, "destination": 2357086674, "path": [[-1279.760723505774, 4137.2994185771], [-1280.9107235085548, 4318.899418578326], [-1281.110723510892, 4348.999418578359]]}, {"length": 190.371832729, "source": 1424938738, "destination": 135035912, "path": [[4066.4392764924173, -6793.20058142352], [4064.38927649333, -6589.200581423427], [4061.089276490293, -6302.800581423185], [4064.5892764885616, -5937.20058142111]]}, {"length": 11.6198021482, "source": 2286663412, "destination": 134985552, "path": [[-5656.460723507451, 5423.949418577933], [-5656.16072351105, 5371.6994185784015]]}, {"length": 97.2411818219, "source": 2286663412, "destination": 2292321457, "path": [[-5656.460723507451, 5423.949418577933], [-5659.210723507613, 5861.199418578877]]}, {"length": 13.6894786288, "source": 2286663412, "destination": 2069376779, "path": [[-5656.460723507451, 5423.949418577933], [-5575.160723509498, 5425.299418575946]]}, {"length": 9.63987682862, "source": 2286663412, "destination": 2286663414, "path": [[-5656.460723507451, 5423.949418577933], [-5682.510723509893, 5423.499418576228], [-5713.710723505017, 5423.149418579243]]}, {"length": 97.3529412742, "source": 2286663414, "destination": 2292321458, "path": [[-5713.710723505017, 5423.149418579243], [-5717.110723509222, 5860.899418578924]]}, {"length": 9.63987682862, "source": 2286663414, "destination": 2286663412, "path": [[-5713.710723505017, 5423.149418579243], [-5682.510723509893, 5423.499418576228], [-5656.460723507451, 5423.949418577933]]}, {"length": 11.4565473947, "source": 2286663414, "destination": 2286663418, "path": [[-5713.710723505017, 5423.149418579243], [-5715.410723510672, 5371.649418577817]]}, {"length": 48.9718860811, "source": 2286663414, "destination": 3299414703, "path": [[-5713.710723505017, 5423.149418579243], [-5831.1607235097545, 5422.099418577631], [-6004.610723508108, 5421.199418577771]]}, {"length": 48.2591455263, "source": 135043369, "destination": 2086854537, "path": [[7324.839276492412, -3621.6005814218024], [7323.4892764944, -3404.6005814225564]]}, {"length": 100.517212272, "source": 135043369, "destination": 2086854494, "path": [[7324.839276492412, -3621.6005814218024], [7922.089276490851, -3617.550581420659]]}, {"length": 93.7610799703, "source": 135043369, "destination": 1295456206, "path": [[7324.839276492412, -3621.6005814218024], [7327.889276488975, -4043.200581421047]]}, {"length": 53.9025702864, "source": 2286663417, "destination": 3299414703, "path": [[-6324.810723505436, 5420.299418577912], [-6139.01072350842, 5420.499418576696], [-6004.610723508108, 5421.199418577771]]}, {"length": 9.97409559193, "source": 2286663418, "destination": 134985552, "path": [[-5715.410723510672, 5371.649418577817], [-5656.16072351105, 5371.6994185784015]]}, {"length": 48.5826450307, "source": 2286663418, "destination": 2068973811, "path": [[-5715.410723510672, 5371.649418577817], [-6004.010723508201, 5371.499418576064]]}, {"length": 12.4781421569, "source": 2286663418, "destination": 2286663420, "path": [[-5715.410723510672, 5371.649418577817], [-5714.060723505554, 5315.54941857948]]}, {"length": 11.4565473947, "source": 2286663418, "destination": 2286663414, "path": [[-5715.410723510672, 5371.649418577817], [-5713.710723505017, 5423.149418579243]]}, {"length": 24.2224922491, "source": 2286663419, "destination": 2069376779, "path": [[-5577.91072350966, 5316.399418578754], [-5575.160723509498, 5425.299418575946]]}, {"length": 22.920173894, "source": 2286663419, "destination": 2286663420, "path": [[-5577.91072350966, 5316.399418578754], [-5714.060723505554, 5315.54941857948]]}, {"length": 97.3290084968, "source": 2286663419, "destination": 2286663630, "path": [[-5577.91072350966, 5316.399418578754], [-5575.660723508236, 5177.3494185773925], [-5578.310723507229, 5155.9994185765845], [-5589.06072350851, 5136.749418579001], [-5599.8107235097905, 5121.4994185784235], [-5604.960723509577, 5106.549418577799], [-5604.960723509577, 4883.049418577201]]}, {"length": 12.4781421569, "source": 2286663420, "destination": 2286663418, "path": [[-5714.060723505554, 5315.54941857948], [-5715.410723510672, 5371.649418577817]]}, {"length": 96.1841646009, "source": 2286663420, "destination": 2286663635, "path": [[-5714.060723505554, 5315.54941857948], [-5712.360723507004, 4883.049418577201]]}, {"length": 48.9460814116, "source": 2286663420, "destination": 2286663422, "path": [[-5714.060723505554, 5315.54941857948], [-5899.960723510844, 5314.699418576652], [-6004.810723510445, 5313.749418576208]]}, {"length": 22.920173894, "source": 2286663420, "destination": 2286663419, "path": [[-5714.060723505554, 5315.54941857948], [-5577.91072350966, 5316.399418578754]]}, {"length": 55.8462831406, "source": 2286663422, "destination": 2286663425, "path": [[-6004.810723510445, 5313.749418576208], [-6041.810723509399, 5313.3994185792235], [-6144.810723505145, 5313.199418576886], [-6336.5607235112975, 5312.749418578733]]}, {"length": 12.8433289725, "source": 2286663422, "destination": 2068973811, "path": [[-6004.810723510445, 5313.749418576208], [-6004.010723508201, 5371.499418576064]]}, {"length": 48.9460814116, "source": 2286663422, "destination": 2286663420, "path": [[-6004.810723510445, 5313.749418576208], [-5899.960723510844, 5314.699418576652], [-5714.060723505554, 5315.54941857948]]}, {"length": 106.854824596, "source": 2286663422, "destination": 2068973807, "path": [[-6004.810723510445, 5313.749418576208], [-6007.360723508271, 5133.649418578301], [-6007.510723506471, 5123.1494185763895], [-6005.860723504952, 5111.549418579387], [-6002.41072351082, 5102.299418577872], [-5997.660723508602, 5095.649418578319], [-5987.960723508933, 5090.449418577947], [-5973.660723505247, 5088.099418578906], [-5950.860723508811, 5087.349418577247], [-5808.060723509811, 5088.499418576475], [-5655.360723508807, 5089.899418578625]]}, {"length": 55.8462831406, "source": 2286663425, "destination": 2286663422, "path": [[-6336.5607235112975, 5312.749418578733], [-6144.810723505145, 5313.199418576886], [-6041.810723509399, 5313.3994185792235], [-6004.810723510445, 5313.749418576208]]}, {"length": 469.952449765, "source": 1424938754, "destination": 1424938778, "path": [[2698.8892764947536, -7428.600581423694], [2801.289276490593, -7489.750581420651], [3116.139276492902, -7657.550581424033], [3639.639276492801, -7922.8005814222515], [4189.889276489112, -8208.850581421955], [4865.139276489572, -8550.650581423013], [4913.389276488544, -8606.05058142383], [4927.239276490525, -8665.300581423451]]}, {"length": 23.4011507275, "source": 1424938754, "destination": 1424938757, "path": [[2698.8892764947536, -7428.600581423694], [2622.4392764930826, -7516.500581420615]]}, {"length": 240.551810391, "source": 1424938754, "destination": 2573122535, "path": [[2698.8892764947536, -7428.600581423694], [2587.9392764949216, -7348.200581422048], [2507.1392764886014, -7292.750581420649], [2462.989276494909, -7274.250581421171], [2423.0892764904866, -7263.2505814205215], [2353.139276493721, -7268.350581423278], [2233.3392764934956, -7305.6005814216005], [2140.339276493819, -7321.100581421547], [2046.3392764895616, -7329.100581422665], [1555.6392764892735, -7323.450581420588], [1363.839276493195, -7342.850581423477]]}, {"length": 123.008797248, "source": 2080617430, "destination": 2080617409, "path": [[4663.839276489057, 489.8994185786876], [3986.589276493646, 488.8994185776596], [3986.839276493015, 448.3494185762993]]}, {"length": 122.409953751, "source": 2069036673, "destination": 2069036705, "path": [[229.53927648927674, 6248.199418578793], [-497.5607235095936, 6242.099418578562]]}, {"length": 64.6715186679, "source": 2069036673, "destination": 134982675, "path": [[229.53927648927674, 6248.199418578793], [231.03927649259504, 5957.39941857687]]}, {"length": 118.987997074, "source": 2069036673, "destination": 2069036751, "path": [[229.53927648927674, 6248.199418578793], [936.3392764925038, 6251.949418576431]]}, {"length": 216.81493022, "source": 1424938773, "destination": 1424938774, "path": [[1172.8892764892862, -8522.950581422607], [1229.5392764940516, -8529.100581423421], [1292.5392764913113, -8533.50058142155], [2460.539276491147, -8536.850581421619]]}, {"length": 19.1371528491, "source": 1424938773, "destination": 2080560806, "path": [[1172.8892764892862, -8522.950581422607], [1104.539276489902, -8516.0005814231], [1061.8892764924226, -8505.700581423525]]}, {"length": 233.890017989, "source": 1424938774, "destination": 1424938757, "path": [[2460.539276491147, -8536.850581421619], [2460.2892764917783, -7966.100581423774], [2494.6892764887707, -7705.8005814230055], [2524.0892764912815, -7602.6505814219545], [2622.4392764930826, -7516.500581420615]]}, {"length": 216.81493022, "source": 1424938774, "destination": 1424938773, "path": [[2460.539276491147, -8536.850581421619], [1292.5392764913113, -8533.50058142155], [1229.5392764940516, -8529.100581423421], [1172.8892764892862, -8522.950581422607]]}, {"length": 12.9209878317, "source": 2312746775, "destination": 3715980772, "path": [[-3333.660723505716, 4340.749418577871], [-3333.5107235075156, 4282.649418577477]]}, {"length": 14.9655102201, "source": 2312746775, "destination": 2311059946, "path": [[-3333.660723505716, 4340.749418577871], [-3422.5607235072175, 4341.299418577193]]}, {"length": 95.802128746, "source": 2312746775, "destination": 2316883636, "path": [[-3333.660723505716, 4340.749418577871], [-2764.560723505838, 4344.399418577894]]}, {"length": 47.669688688, "source": 2312746775, "destination": 2312746687, "path": [[-3333.660723505716, 4340.749418577871], [-3334.760723511465, 4555.099418578124]]}, {"length": 12.6542200548, "source": 2312746776, "destination": 3715980772, "path": [[-3333.410723506347, 4225.7494185768965], [-3333.5107235075156, 4282.649418577477]]}, {"length": 97.8637424624, "source": 2312746776, "destination": 2703728628, "path": [[-3333.410723506347, 4225.7494185768965], [-3330.9607235096905, 3785.6994185787585]]}, {"length": 95.7142208918, "source": 2312746776, "destination": 2316883637, "path": [[-3333.410723506347, 4225.7494185768965], [-2764.8107235052066, 4226.1994185786025]]}, {"length": 32.5222797009, "source": 2312746776, "destination": 2310516558, "path": [[-3333.410723506347, 4225.7494185768965], [-3526.6107235116806, 4226.099418577433]]}, {"length": 469.952449765, "source": 1424938778, "destination": 1424938754, "path": [[4927.239276490525, -8665.300581423451], [4913.389276488544, -8606.05058142383], [4865.139276489572, -8550.650581423013], [4189.889276489112, -8208.850581421955], [3639.639276492801, -7922.8005814222515], [3116.139276492902, -7657.550581424033], [2801.289276490593, -7489.750581420651], [2698.8892764947536, -7428.600581423694]]}, {"length": 5.62607587556, "source": 2312746782, "destination": 2703728628, "path": [[-3330.8107235114903, 3760.3994185779757], [-3330.9607235096905, 3785.6994185787585]]}, {"length": 15.0830861817, "source": 2309494559, "destination": 2312746552, "path": [[-3426.0607235054863, 4888.849418577479], [-3336.460723510015, 4889.149418577432]]}, {"length": 17.5491940231, "source": 2309494559, "destination": 2309494563, "path": [[-3426.0607235054863, 4888.849418577479], [-3530.310723505181, 4888.449418576357]]}, {"length": 47.9811976268, "source": 2309494559, "destination": 2069036723, "path": [[-3426.0607235054863, 4888.849418577479], [-3427.4107235106044, 5104.5994185763275]]}, {"length": 50.8549181133, "source": 2309494563, "destination": 2703728624, "path": [[-3530.310723505181, 4888.449418576357], [-3832.410723511259, 4887.349418577714]]}, {"length": 96.5843337693, "source": 2309494563, "destination": 2309494210, "path": [[-3530.310723505181, 4888.449418576357], [-3531.710723507331, 5322.749418578354]]}, {"length": 25.8308128224, "source": 2309494563, "destination": 2310516317, "path": [[-3530.310723505181, 4888.449418576357], [-3529.960723511749, 4772.299418576154]]}, {"length": 17.5491940231, "source": 2309494563, "destination": 2309494559, "path": [[-3530.310723505181, 4888.449418576357], [-3426.0607235054863, 4888.849418577479]]}, {"length": 8.88546958065, "source": 1933539633, "destination": 1933539617, "path": [[5846.539276490148, -6909.600581423092], [5845.88927649321, -6869.650581421638]]}, {"length": 100.528676505, "source": 2568599337, "destination": 2140998641, "path": [[-1174.5107235086039, -1256.950581421279], [-1206.0607235113707, -1257.800581420554], [-1211.4107235063898, -898.5005814210467], [-1173.9107235086976, -835.8005814237401]]}, {"length": 11.6643159523, "source": 2568599337, "destination": 2585900646, "path": [[-1174.5107235086039, -1256.950581421279], [-1174.1107235110348, -1309.400581423148]]}, {"length": 11.6069970995, "source": 2069036679, "destination": 2069036425, "path": [[1019.3392764890064, 4573.249418577063], [950.3892764897159, 4572.999418577694]]}, {"length": 60.9254746033, "source": 2069036679, "destination": 2068853422, "path": [[1019.3392764890064, 4573.249418577063], [1022.0392764921371, 4299.299418576652]]}, {"length": 14.0453113649, "source": 2568599340, "destination": 2568599384, "path": [[-1165.4107235088418, -2376.1505814228203], [-1081.9607235106332, -2375.6505814205298]]}, {"length": 99.3102670451, "source": 2568599340, "destination": 2568599376, "path": [[-1165.4107235088418, -2376.1505814228203], [-1169.0607235053108, -1929.6005814233297]]}, {"length": 7.43047928134, "source": 2568599340, "destination": 2568624538, "path": [[-1165.4107235088418, -2376.1505814228203], [-1209.5607235096395, -2376.1505814228203]]}, {"length": 23.4744066888, "source": 2568599340, "destination": 2568624526, "path": [[-1165.4107235088418, -2376.1505814228203], [-1166.2107235110852, -2439.65058142237], [-1166.7107235098229, -2481.7005814234963]]}, {"length": 8.57314785999, "source": 2568599341, "destination": 2568599497, "path": [[277.9392764935551, -2368.0505814205335], [278.0892764917553, -2329.500581421229]]}, {"length": 13.5481875815, "source": 2568599341, "destination": 2568599493, "path": [[277.9392764935551, -2368.0505814205335], [197.43927649074067, -2368.0505814205335]]}, {"length": 30.7559987848, "source": 2568599341, "destination": 2568599550, "path": [[277.9392764935551, -2368.0505814205335], [363.739276494357, -2327.450581422141], [395.9392764940617, -2313.2505814231763], [432.1392764907728, -2293.9505814214554]]}, {"length": 16.6870458619, "source": 2568599341, "destination": 2568600013, "path": [[277.9392764935551, -2368.0505814205335], [280.98927649011785, -2443.050581423023]]}, {"length": 20.892246698, "source": 2568599344, "destination": 2568600249, "path": [[-499.9107235050815, -2372.40058142163], [-482.3607235096006, -2391.20058142106], [-470.0607235079701, -2407.800581423203], [-463.9107235107076, -2418.650581422099], [-461.16072351054527, -2424.8505814234986], [-459.8107235054272, -2432.100581422958], [-460.4607235094704, -2441.9505814208264], [-461.8607235116201, -2458.3005814236003]]}, {"length": 83.5818495415, "source": 2568599344, "destination": 2568599419, "path": [[-499.9107235050815, -2372.40058142163], [-569.6607235066153, -2319.3005814228227], [-617.9607235097251, -2272.6505814212314], [-663.5107235055671, -2225.9505814226086], [-714.5107235118076, -2177.2505814219303], [-773.5107235049554, -2138.6505814220413], [-836.0607235076145, -2097.850581421312]]}, {"length": 5.62927887945, "source": 2568599344, "destination": 2568600041, "path": [[-499.9107235050815, -2372.40058142163], [-533.3607235087356, -2372.600581423967]]}, {"length": 18.9512144035, "source": 2568599344, "destination": 2568599455, "path": [[-499.9107235050815, -2372.40058142163], [-387.3107235108364, -2371.750581421139]]}, {"length": 53.0106367947, "source": 4719433523, "destination": 135012827, "path": [[5216.239276492729, 1201.8994185787335], [5248.139276488928, 1221.999418579145], [5521.53927649357, 1225.2994185786292]]}, {"length": 106.20589339, "source": 2080617438, "destination": 135021872, "path": [[-1826.8607235114587, 2617.4994185765854], [-1195.9107235099964, 2619.7994185785947]]}, {"length": 69.8745109991, "source": 1962186550, "destination": 1962191321, "path": [[6284.139276495182, 1949.3994185779684], [6304.889276492531, 2005.6994185786436], [6351.189276493586, 2080.299418576459], [6432.989276490275, 2187.899418576222], [6470.98927649381, 2227.799418577092]]}, {"length": 269.990222885, "source": 1962186550, "destination": 1429422189, "path": [[6284.139276495182, 1949.3994185779684], [6279.439276489995, 1919.4494185761357], [6272.739276489858, 1885.9494185790027], [6270.689276490771, 1860.0494185783134], [6270.689276490771, 1831.0994185775087], [6275.3892764888515, 1799.6494185794631], [6283.439276494108, 1774.7994185768334], [6304.889276492531, 1699.6994185767278], [6345.139276490386, 1682.399418577063], [6896.3392764942455, 1676.3494185774164], [6980.839276494066, 1760.5994185778684], [7006.289276489497, 1775.7994185778614], [7026.439276494046, 1797.0994185780853], [7039.83927649432, 1824.5494185791244], [7049.239276490482, 1869.1994185786598], [7098.139276493498, 2106.949418578807], [7093.589276493617, 2143.949418577762]]}, {"length": 81.3587715715, "source": 1962186550, "destination": 1962186585, "path": [[6284.139276495182, 1949.3994185779684], [6182.339276492144, 1968.0494185791986], [6184.189276488894, 1991.9994185784162], [6184.189276488894, 2025.499418579102], [6188.239276490038, 2055.9494185761196], [6198.289276490243, 2091.499418579446], [6211.03927649358, 2117.8494185782884], [6217.739276493717, 2129.049418577722], [6227.139276489879, 2141.1994185775993], [6227.139276489879, 2150.349418577946], [6223.089276488736, 2156.449418578177], [6205.6892764914555, 2155.449418577149], [6149.3392764901955, 2158.4994185772644], [6154.68927649232, 2193.9994185764535]]}, {"length": 61.6669147089, "source": 1962186551, "destination": 1962186585, "path": [[6366.58927648881, 2406.149418579417], [6351.839276490523, 2391.9494185769], [6331.7392764901115, 2384.8494185791933], [6308.939276493675, 2373.6494185762067], [6295.5392764934, 2365.549418577473], [6288.839276493263, 2356.399418577126], [6282.089276488989, 2339.1494185780457], [6268.689276488714, 2310.749418576563], [6260.639276490565, 2296.499418577014], [6245.889276492278, 2286.3494185791924], [6236.48927648901, 2278.2494185769056], [6201.639276490312, 2260.999418577825], [6190.939276493168, 2255.899418578622], [6182.889276495018, 2245.7494185772475], [6166.789276491613, 2215.2994185766775], [6154.68927649232, 2193.9994185764535]]}, {"length": 176.35903682, "source": 1962186551, "destination": 1962186627, "path": [[6366.58927648881, 2406.149418579417], [6460.489276491899, 2499.549418576663], [6502.039276490734, 2540.1494185786078], [6514.139276490027, 2550.299418576429], [6528.889276488315, 2566.5494185780344], [6539.589276492563, 2577.6994185768845], [6547.639276490713, 2589.8994185773463], [6554.33927649085, 2603.049418578252], [6562.389276489001, 2618.299418578829], [6897.689276492258, 2971.5494185786893], [6911.089276492532, 2984.7494185766263], [6925.839276490819, 2993.899418576973], [6943.289276492237, 3007.0494185778784], [6956.689276492511, 3012.1494185770816], [6976.789276492923, 3019.2494185783403], [6996.939276490366, 3032.4494185762774]]}, {"length": 12.7574288729, "source": 1962186551, "destination": 1962191339, "path": [[6366.58927648881, 2406.149418579417], [6427.1392764894135, 2371.6494185777037]]}, {"length": 13.6924409714, "source": 1424938809, "destination": 1424938810, "path": [[8314.239276494107, -10272.900581423271], [8263.689276489571, -10321.150581422246]]}, {"length": 287.882341075, "source": 1424938809, "destination": 134930861, "path": [[8314.239276494107, -10272.900581423271], [9035.439276495083, -10667.900581420752], [9648.88927649099, -11011.150581420992], [9677.639276489459, -11048.95058142219]]}, {"length": 13.6924409714, "source": 1424938810, "destination": 1424938809, "path": [[8263.689276489571, -10321.150581422246], [8314.239276494107, -10272.900581423271]]}, {"length": 28.6277161841, "source": 1424938810, "destination": 2080560765, "path": [[8263.689276489571, -10321.150581422246], [8123.189276489029, -10248.550581422933]]}, {"length": 23.9131141308, "source": 1424938810, "destination": 2080560741, "path": [[8263.689276489571, -10321.150581422246], [8213.239276493312, -10372.500581421917], [8173.439276490058, -10403.950581423516]]}, {"length": 5.90968298822, "source": 134985532, "destination": 2289073167, "path": [[-7959.060723507605, 5366.199418578077], [-7994.160723505673, 5365.949418578708]]}, {"length": 12.7990427113, "source": 134985535, "destination": 2284260418, "path": [[-7770.4607235062895, 5365.599418578171], [-7771.010723509164, 5308.049418577099]]}, {"length": 13.5661370516, "source": 134985535, "destination": 2285539766, "path": [[-7770.4607235062895, 5365.599418578171], [-7770.060723508721, 5426.599418576927]]}, {"length": 108.357723509, "source": 134985535, "destination": 1965661559, "path": [[-7770.4607235062895, 5365.599418578171], [-7126.810723505628, 5370.8994185761585]]}, {"length": 213.426997374, "source": 4719884098, "destination": 4719871296, "path": [[-649.1107235078175, -3879.1505814224083], [-738.5107235080568, -3881.4005814238326], [-923.8607235104723, -3906.4505814216946], [-1313.8107235093344, -3958.3505814206887], [-1363.160723506951, -3962.4505814224167], [-1425.1607235067354, -3956.1005814228165], [-1504.6107235079376, -3942.0005814214674], [-1552.7607235057417, -3918.7505814233245], [-1594.860723507452, -3890.0505814218886], [-1641.8107235054435, -3846.3505814227974], [-1655.4607235050867, -3846.3505814227974], [-1705.0107235050405, -3846.3505814227974], [-1782.0107235095861, -3796.7005814216745], [-1830.1607235073902, -3797.600581421534]]}, {"length": 32.3429785712, "source": 4719884098, "destination": 4719897593, "path": [[-649.1107235078175, -3879.1505814224083], [-648.8107235114171, -3798.05058142324], [-600.9107235058764, -3744.900581423849]]}, {"length": 101.785999139, "source": 4719884098, "destination": 4719853215, "path": [[-649.1107235078175, -3879.1505814224083], [-649.4607235083549, -3981.2505814218466], [-682.7107235096719, -4024.3005814240005], [-681.9107235074284, -4161.850581422044], [-679.5107235078035, -4268.45058142078], [-675.4607235066601, -4283.6005814237415], [-664.2607235107789, -4310.250581422537], [-646.4107235117922, -4322.35058142183]]}, {"length": 35.5362991082, "source": 2358476427, "destination": 2358476430, "path": [[-278.8607235117979, 4900.299418576282], [-489.96072350604436, 4899.549418578175]]}, {"length": 10.4083183026, "source": 134985543, "destination": 3299414704, "path": [[-7080.560723508711, 5371.29941857728], [-7081.0607235074485, 5418.099418577071]]}, {"length": 13.3656816317, "source": 134985543, "destination": 2285539848, "path": [[-7080.560723508711, 5371.29941857728], [-7080.560723508711, 5311.199418578382]]}, {"length": 113.536188245, "source": 134985543, "destination": 134985546, "path": [[-7080.560723508711, 5371.29941857728], [-6406.110723510494, 5370.999418577327]]}, {"length": 7.78702058435, "source": 134985543, "destination": 1965661559, "path": [[-7080.560723508711, 5371.29941857728], [-7126.810723505628, 5370.8994185761585]]}, {"length": 11.3048927557, "source": 134985546, "destination": 2285539768, "path": [[-6406.110723510494, 5370.999418577327], [-6403.610723509701, 5421.799418577677]]}, {"length": 61.6028549979, "source": 134985546, "destination": 1433125516, "path": [[-6406.110723510494, 5370.999418577327], [-6398.910723511619, 5094.049418577384]]}, {"length": 9.7065137262, "source": 134985546, "destination": 134985550, "path": [[-6406.110723510494, 5370.999418577327], [-6379.610723506346, 5371.29941857728], [-6348.460723508253, 5371.849418576602]]}, {"length": 113.536188245, "source": 134985546, "destination": 134985543, "path": [[-6406.110723510494, 5370.999418577327], [-7080.560723508711, 5371.29941857728]]}, {"length": 5.17550501645, "source": 2568599372, "destination": 2568599376, "path": [[-1138.3107235047873, -1929.4005814209925], [-1169.0607235053108, -1929.6005814233297]]}, {"length": 34.3098017499, "source": 2568599372, "destination": 2568624555, "path": [[-1138.3107235047873, -1929.4005814209925], [-934.4607235064473, -1928.0505814229798]]}, {"length": 46.0327394188, "source": 2568599372, "destination": 2568624551, "path": [[-1138.3107235047873, -1929.4005814209925], [-1073.910723505378, -1970.2005814217216], [-1009.5607235101056, -1996.5505814205642], [-929.0607235072912, -2037.1505814225088], [-914.2107235078356, -2046.8505814221771]]}, {"length": 458.916473003, "source": 1424938829, "destination": 2573122455, "path": [[5085.039276494285, -10478.800581420699], [5992.389276492815, -10460.65058142176], [6394.13927649457, -10453.550581424053], [6618.539276495028, -10452.650581420641], [7138.989276491258, -10458.000581422766], [7811.939276493263, -10450.650581422138]]}, {"length": 122.557354616, "source": 134985550, "destination": 134954264, "path": [[-6348.460723508253, 5371.849418576602], [-6355.910723506497, 5324.949418579195], [-6354.310723509116, 4821.099418578001]]}, {"length": 9.7065137262, "source": 134985550, "destination": 134985546, "path": [[-6348.460723508253, 5371.849418576602], [-6379.610723506346, 5371.29941857728], [-6406.110723510494, 5370.999418577327]]}, {"length": 57.9844138575, "source": 134985550, "destination": 2068973811, "path": [[-6348.460723508253, 5371.849418576602], [-6004.010723508201, 5371.499418576064]]}, {"length": 59.2131712214, "source": 134985550, "destination": 1433125507, "path": [[-6348.460723508253, 5371.849418576602], [-6339.160723506155, 5412.949418577284], [-6339.260723507323, 5529.099418577488], [-6337.310723509404, 5637.499418579495]]}, {"length": 79.5050094495, "source": 1424938831, "destination": 1424938810, "path": [[8650.339276492503, -10526.650581422104], [8263.689276489571, -10321.150581422246]]}, {"length": 145.971335565, "source": 1424938831, "destination": 2573122455, "path": [[8650.339276492503, -10526.650581422104], [8485.289276492837, -10463.350581421339], [8452.189276489718, -10451.650581423166], [8390.539276490472, -10442.050581421114], [8336.0892764901, -10445.550581422936], [8118.289276488611, -10471.550581421241], [8087.939276492762, -10471.250581421287], [8046.489276495095, -10470.90058142075], [7811.939276493263, -10450.650581422138]]}, {"length": 9.97409559193, "source": 134985552, "destination": 2286663418, "path": [[-5656.16072351105, 5371.6994185784015], [-5715.410723510672, 5371.649418577817]]}, {"length": 11.6198021482, "source": 134985552, "destination": 2286663412, "path": [[-5656.16072351105, 5371.6994185784015], [-5656.460723507451, 5423.949418577933]]}, {"length": 62.669610511, "source": 134985552, "destination": 2068973807, "path": [[-5656.16072351105, 5371.6994185784015], [-5655.360723508807, 5089.899418578625]]}, {"length": 92.3316262521, "source": 2568599384, "destination": 2568600041, "path": [[-1081.9607235106332, -2375.6505814205298], [-533.3607235087356, -2372.600581423967]]}, {"length": 75.0557487187, "source": 2568599384, "destination": 2568599419, "path": [[-1081.9607235106332, -2375.6505814205298], [-1055.1607235100846, -2343.6505814231623], [-1009.5607235101056, -2309.150581421449], [-969.3107235051457, -2274.650581423288], [-934.4607235064473, -2240.150581421574], [-910.3107235048924, -2213.7505814221468], [-894.2107235085928, -2195.5005814220385], [-875.4107235091624, -2171.150581421699], [-851.3107235117445, -2126.500581422164], [-836.0607235076145, -2097.850581421312]]}, {"length": 14.0453113649, "source": 2568599384, "destination": 2568599340, "path": [[-1081.9607235106332, -2375.6505814205298], [-1165.4107235088418, -2376.1505814228203]]}, {"length": 30.2096038138, "source": 1962186585, "destination": 135086177, "path": [[6154.68927649232, 2193.9994185764535], [6125.489276492146, 2203.8994185784586], [6101.339276490591, 2216.0994185789204], [6081.23927649018, 2229.2994185768575], [6062.43927649075, 2247.549418576966], [6025.6892764911645, 2284.6494185770894]]}, {"length": 35.9733575435, "source": 1962186585, "destination": 1962191362, "path": [[6154.68927649232, 2193.9994185764535], [6193.889276488562, 2193.7494185770847], [6224.739276490254, 2198.799418579256], [6255.589276491946, 2206.9494185785743], [6287.7892764916505, 2221.149418577539], [6309.239276490075, 2234.349418579029], [6325.33927649348, 2251.5994185781096], [6334.689276492611, 2262.749418576959]]}, {"length": 81.3587715715, "source": 1962186585, "destination": 1962186550, "path": [[6154.68927649232, 2193.9994185764535], [6149.3392764901955, 2158.4994185772644], [6205.6892764914555, 2155.449418577149], [6223.089276488736, 2156.449418578177], [6227.139276489879, 2150.349418577946], [6227.139276489879, 2141.1994185775993], [6217.739276493717, 2129.049418577722], [6211.03927649358, 2117.8494185782884], [6198.289276490243, 2091.499418579446], [6188.239276490038, 2055.9494185761196], [6184.189276488894, 2025.499418579102], [6184.189276488894, 1991.9994185784162], [6182.339276492144, 1968.0494185791986], [6284.139276495182, 1949.3994185779684]]}, {"length": 61.6669147089, "source": 1962186585, "destination": 1962186551, "path": [[6154.68927649232, 2193.9994185764535], [6166.789276491613, 2215.2994185766775], [6182.889276495018, 2245.7494185772475], [6190.939276493168, 2255.899418578622], [6201.639276490312, 2260.999418577825], [6236.48927648901, 2278.2494185769056], [6245.889276492278, 2286.3494185791924], [6260.639276490565, 2296.499418577014], [6268.689276488714, 2310.749418576563], [6282.089276488989, 2339.1494185780457], [6288.839276493263, 2356.399418577126], [6295.5392764934, 2365.549418577473], [6308.939276493675, 2373.6494185762067], [6331.7392764901115, 2384.8494185791933], [6351.839276490523, 2391.9494185769], [6366.58927648881, 2406.149418579417]]}, {"length": 73.4942510996, "source": 134979215, "destination": 2074057116, "path": [[9715.539276491825, -599.250581423405], [9720.839276489813, -929.7005814232762]]}, {"length": 19.7056845996, "source": 134979215, "destination": 134979293, "path": [[9715.539276491825, -599.250581423405], [9697.6392764887, -639.1005814236905], [9674.839276492265, -654.4505814218837], [9646.339276493165, -663.6005814222301]]}, {"length": 56.068721835, "source": 1962186595, "destination": 1962186576, "path": [[6943.9392764891745, 2197.5494185788593], [6766.239276494445, 2261.4994185765627], [6683.4392764931745, 2295.7494185789074], [6644.539276493333, 2307.699418576448]]}, {"length": 27.8677135474, "source": 1962186595, "destination": 1429422189, "path": [[6943.9392764891745, 2197.5494185788593], [7093.589276493617, 2143.949418577762]]}, {"length": 9.63863503846, "source": 1962186595, "destination": 1962186575, "path": [[6943.9392764891745, 2197.5494185788593], [6988.989276493385, 2224.2994185788234]]}, {"length": 5.98168562917, "source": 1932196246, "destination": 1932196248, "path": [[5246.889276492084, -6877.8505814215405], [5211.33927649231, -6878.100581420909]]}, {"length": 3.72553537708, "source": 1932196246, "destination": 1932196267, "path": [[5246.889276492084, -6877.8505814215405], [5246.339276489209, -6894.600581421883]]}, {"length": 8.42307900157, "source": 1932196246, "destination": 1933539621, "path": [[5246.889276492084, -6877.8505814215405], [5296.939276490775, -6877.20058142105]]}, {"length": 18.360620556, "source": 1962186600, "destination": 1429422189, "path": [[7041.2892764935, 2216.399418578874], [7093.589276493617, 2143.949418577762]]}, {"length": 61.3581579925, "source": 2069036778, "destination": 134954271, "path": [[-3423.91072350523, 4555.3494185774925], [-3425.31072350738, 4773.149418578982], [-3425.6607235079173, 4831.249418579375]]}, {"length": 17.5242681857, "source": 2069036778, "destination": 2310516445, "path": [[-3423.91072350523, 4555.3494185774925], [-3528.010723506725, 4554.949418576371]]}, {"length": 15.0070068219, "source": 2069036778, "destination": 2312746687, "path": [[-3423.91072350523, 4555.3494185774925], [-3334.760723511465, 4555.099418578124]]}, {"length": 47.3803900498, "source": 2352260072, "destination": 135016139, "path": [[-2416.960723508055, 5947.099418577295], [-2698.4107235108468, 5945.999418578651]]}, {"length": 61.0997832502, "source": 2352260072, "destination": 2423670837, "path": [[-2416.960723508055, 5947.099418577295], [-2054.010723504973, 5947.649418576617]]}, {"length": 15.9567795053, "source": 2352260072, "destination": 2352260078, "path": [[-2416.960723508055, 5947.099418577295], [-2417.6107235049926, 5875.349418577258]]}, {"length": 91.5810060418, "source": 4720007030, "destination": 4719999032, "path": [[2229.4892764946894, -1304.400581421561], [2229.4892764946894, -1597.7505814213089], [2234.489276489171, -1602.8005814234803], [2234.489276489171, -1714.9505814231247]]}, {"length": 12.8433289725, "source": 4720007031, "destination": 4720007032, "path": [[2321.189276493385, -1304.400581421561], [2320.6392764905104, -1246.6505814217044]]}, {"length": 28.2101410765, "source": 4720007031, "destination": 4720007304, "path": [[2321.189276493385, -1304.400581421561], [2229.4892764946894, -1304.400581421561], [2229.8892764922584, -1246.9505814216575]]}, {"length": 96.8455346177, "source": 4720007031, "destination": 4720011123, "path": [[2321.189276493385, -1304.400581421561], [2323.4892764918413, -1349.5505814233866], [2322.5892764884293, -1473.6005814235398], [2324.139276488779, -1525.2505814231654], [2316.389276494135, -1538.7505814210556], [2316.6892764905356, -1738.6005814223893]]}, {"length": 15.2736919389, "source": 4720007032, "destination": 4720007304, "path": [[2320.6392764905104, -1246.6505814217044], [2229.8892764922584, -1246.9505814216575]]}, {"length": 32.0961515869, "source": 4720007032, "destination": 135016399, "path": [[2320.6392764905104, -1246.6505814217044], [2439.8392764908294, -1246.2505814205826], [2511.3392764950504, -1246.1005814223824]]}, {"length": 12.8433289725, "source": 4720007032, "destination": 4720007031, "path": [[2320.6392764905104, -1246.6505814217044], [2321.189276493385, -1304.400581421561]]}, {"length": 124.040108469, "source": 135051131, "destination": 134990151, "path": [[1006.2892764892695, 428.89941857637837], [1743.2392764931137, 431.3994185771719]]}, {"length": 7.11635897527, "source": 135051131, "destination": 135049943, "path": [[1006.2892764892695, 428.89941857637837], [1006.4892764916067, 396.8994185790109]]}, {"length": 61.9697168567, "source": 135051131, "destination": 2086723447, "path": [[1006.2892764892695, 428.89941857637837], [1004.4892764895508, 707.5494185784237]]}, {"length": 121.115875756, "source": 135051134, "destination": 2080617415, "path": [[919.7392764903611, 2068.3494185789186], [923.2392764886299, 1569.2994185769749], [922.3892764893549, 1523.7494185775802]]}, {"length": 112.078665882, "source": 135051134, "destination": 134982661, "path": [[919.7392764903611, 2068.3494185789186], [253.88927649316884, 2065.8994185787096]]}, {"length": 124.358784859, "source": 135051134, "destination": 2080617359, "path": [[919.7392764903611, 2068.3494185789186], [910.6892764947361, 2627.499418576207]]}, {"length": 40.8879753222, "source": 134979221, "destination": 885378093, "path": [[9722.539276488362, -3131.4005814238044], [9965.489276488881, -3130.4005814227767]]}, {"length": 11.3538172778, "source": 134979221, "destination": 134979222, "path": [[9722.539276488362, -3131.4005814238044], [9722.139276490794, -3182.4505814235235]]}, {"length": 72.0381759636, "source": 134985601, "destination": 2074042346, "path": [[9621.289276488198, 5426.549418576343], [9618.539276495141, 5594.399418576757], [9615.739276490842, 5750.449418577829]]}, {"length": 22.7680818619, "source": 134985601, "destination": 2338863399, "path": [[9621.289276488198, 5426.549418576343], [9486.039276488611, 5426.74941857868]]}, {"length": 15.1048806189, "source": 3733365739, "destination": 2587025002, "path": [[1731.489276494358, -4477.850581423581], [1641.7392764935812, -4478.550581421104]]}, {"length": 7.06870637706, "source": 3733365739, "destination": 2587025004, "path": [[1731.489276494358, -4477.850581423581], [1773.4892764948995, -4477.500581423044]]}, {"length": 65.5637593146, "source": 3733365739, "destination": 1932195773, "path": [[1731.489276494358, -4477.850581423581], [1723.3392764950395, -4183.100581421684]]}, {"length": 9.00664278197, "source": 3733365739, "destination": 3009796695, "path": [[1731.489276494358, -4477.850581423581], [1732.289276489496, -4507.1005814207865], [1732.4892764918332, -4518.350581420805]]}, {"length": 36.135345948, "source": 2291234701, "destination": 2291234704, "path": [[-8648.510723510582, 5085.399418579328], [-8688.2607235097, 5085.199418576991], [-8812.1607235081, 5084.199418575963], [-8863.160723507235, 5083.849418578979]]}, {"length": 47.2145766595, "source": 2291234701, "destination": 2287972808, "path": [[-8648.510723510582, 5085.399418579328], [-8648.160723510046, 5017.249418578729], [-8647.510723506002, 4942.299418576823], [-8647.510723506002, 4873.099418578164]]}, {"length": 48.137734379, "source": 2291234701, "destination": 2289073178, "path": [[-8648.510723510582, 5085.399418579328], [-8648.760723509951, 5136.649418577832], [-8649.060723506353, 5285.049418578325], [-8649.16072350752, 5301.8494185792515]]}, {"length": 11.0264142946, "source": 2291234701, "destination": 1433125518, "path": [[-8648.510723510582, 5085.399418579328], [-8583.010723505424, 5085.7494185763135]]}, {"length": 36.135345948, "source": 2291234704, "destination": 2291234701, "path": [[-8863.160723507235, 5083.849418578979], [-8812.1607235081, 5084.199418575963], [-8688.2607235097, 5085.199418576991], [-8648.510723510582, 5085.399418579328]]}, {"length": 51.994897657, "source": 134979224, "destination": 134979225, "path": [[9746.489276494685, -4737.550581420891], [9747.139276491624, -4971.350581421064]]}, {"length": 12.6096270033, "source": 2354509379, "destination": 2355654664, "path": [[-1219.9607235103826, 6456.29941857706], [-1145.0607235090615, 6456.949418577551]]}, {"length": 48.0369533905, "source": 2354509379, "destination": 2069037025, "path": [[-1219.9607235103826, 6456.29941857706], [-1218.4607235070644, 6240.299418578843]]}, {"length": 12.5508806231, "source": 2354509379, "destination": 2355654665, "path": [[-1219.9607235103826, 6456.29941857706], [-1294.5107235111664, 6455.749418577739]]}, {"length": 124.040580757, "source": 134990148, "destination": 135049943, "path": [[1743.4392764883455, 399.89941857854205], [1006.4892764916067, 396.8994185790109]]}, {"length": 7.00530862668, "source": 134990148, "destination": 134990151, "path": [[1743.4392764883455, 399.89941857854205], [1743.2392764931137, 431.3994185771719]]}, {"length": 41.0672288578, "source": 2568599452, "destination": 2568624555, "path": [[-690.4607235114213, -1926.4005814214613], [-934.4607235064473, -1928.0505814229798]]}, {"length": 78.1045685669, "source": 2568599452, "destination": 2568599540, "path": [[-690.4607235114213, -1926.4005814214613], [-544.5607235117222, -1925.400581423986], [-301.4607235058975, -1923.4505814225145], [-226.41072350637614, -1922.9505814237768]]}, {"length": 45.8517949899, "source": 2568599452, "destination": 2568599419, "path": [[-690.4607235114213, -1926.4005814214613], [-719.8607235068266, -1947.8505814234381], [-744.0107235083815, -1970.2005814217216], [-776.2107235080862, -2002.650581420795], [-800.310723505504, -2031.1005814228622], [-819.1107235049344, -2065.600581421023], [-836.0607235076145, -2097.850581421312]]}, {"length": 2.19175464605, "source": 2309494685, "destination": 2311060180, "path": [[-4458.360723511134, 3658.349418579121], [-4458.360723511134, 3668.1994185769895]]}, {"length": 18.9512144035, "source": 2568599455, "destination": 2568599344, "path": [[-387.3107235108364, -2371.750581421139], [-499.9107235050815, -2372.40058142163]]}, {"length": 6.57183628637, "source": 2568599455, "destination": 2568600035, "path": [[-387.3107235108364, -2371.750581421139], [-348.26072350568893, -2371.50058142177]]}, {"length": 21.694139383, "source": 2568599455, "destination": 2568600235, "path": [[-387.3107235108364, -2371.750581421139], [-411.91072350699187, -2394.3505814223445], [-422.86072351060966, -2405.2005814212407], [-429.01072350787217, -2416.05058142369], [-432.46072350910936, -2424.8505814234986], [-434.51072350819686, -2431.6005814206674], [-434.51072350819686, -2437.800581422067], [-435.1607235051347, -2458.3005814236003]]}, {"length": 46.8919217802, "source": 2568599455, "destination": 2568599542, "path": [[-387.3107235108364, -2371.750581421139], [-325.56072351042076, -2331.5005814232845], [-288.0107235085916, -2294.9505814224835], [-226.31072350520753, -2234.050581421343], [-209.06072350612703, -2211.4005814231064]]}, {"length": 16.1434903846, "source": 1999574944, "destination": 1930503632, "path": [[9598.539276488793, -9543.150581421854], [9509.939276490797, -9515.300581423247]]}, {"length": 6.53952854344, "source": 1999574944, "destination": 1999574945, "path": [[9598.539276488793, -9543.150581421854], [9597.689276489518, -9513.750581422897]]}, {"length": 5.50543659071, "source": 1999574944, "destination": 1930503644, "path": [[9598.539276488793, -9543.150581421854], [9600.739276493186, -9567.850581422732]]}, {"length": 14.7690975706, "source": 1999574945, "destination": 1930503632, "path": [[9597.689276489518, -9513.750581422897], [9509.939276490797, -9515.300581423247]]}, {"length": 3.30233415615, "source": 1999574945, "destination": 2074159280, "path": [[9597.689276489518, -9513.750581422897], [9597.389276493119, -9498.900581423442]]}, {"length": 6.53952854344, "source": 1999574945, "destination": 1999574944, "path": [[9597.689276489518, -9513.750581422897], [9598.539276488793, -9543.150581421854]]}, {"length": 21.3376755488, "source": 1999574945, "destination": 134979350, "path": [[9597.689276489518, -9513.750581422897], [9724.489276493387, -9512.450581421916]]}, {"length": 12.5041172699, "source": 1999574946, "destination": 1930503512, "path": [[9656.739276493909, -8618.050581421954], [9654.489276492484, -8674.25058142146]]}, {"length": 10.3117536063, "source": 1999574946, "destination": 134979345, "path": [[9656.739276493909, -8618.050581421954], [9717.839276490282, -8614.5005814231]]}, {"length": 87.8127601294, "source": 1999574946, "destination": 134982533, "path": [[9656.739276493909, -8618.050581421954], [9134.889276488422, -8620.800581422116]]}, {"length": 10.7634062266, "source": 1999574946, "destination": 1930503446, "path": [[9656.739276493909, -8618.050581421954], [9659.88927649164, -8575.050581423937], [9659.289276491734, -8569.750581422397]]}, {"length": 11.103387742, "source": 1999574947, "destination": 1930503169, "path": [[9761.239276492972, -7659.400581420783], [9695.389276494381, -7662.600581422652]]}, {"length": 8.58522901053, "source": 1999574947, "destination": 134979236, "path": [[9761.239276492972, -7659.400581420783], [9760.639276493066, -7698.0005814206725]]}, {"length": 6.06770365431, "source": 1999574947, "destination": 1930503167, "path": [[9761.239276492972, -7659.400581420783], [9797.189276490315, -7657.250581420527]]}, {"length": 45.9516084575, "source": 1295456170, "destination": 4719445539, "path": [[3262.58927648837, -4771.100581422161], [3259.489276494776, -4814.600581422468], [3250.5892764902455, -4905.100581421351], [3246.0892764945015, -4939.650581423649], [3246.2392764927017, -4977.25058142251]]}, {"length": 89.12025694, "source": 1295456170, "destination": 2080585099, "path": [[3262.58927648837, -4771.100581422161], [3245.1892764910895, -4792.600581421169], [3225.089276490678, -4801.750581421516], [3203.639276492254, -4805.800581422659], [3184.5892764934547, -4803.900581421772], [3168.7892764935555, -4798.7005814214], [3132.5392764927074, -4756.05058142392], [2983.6892764905087, -4638.350581423367], [2968.939276492222, -4624.150581420849], [2960.639276494703, -4609.050581422025], [2966.239276489091, -4591.650581421191], [2917.1392764908433, -4562.000581422864]]}, {"length": 64.2716704854, "source": 1295456170, "destination": 1394286598, "path": [[3262.58927648837, -4771.100581422161], [3273.8392764883884, -4716.600581421204], [3285.339276494881, -4690.200581421777], [3308.039276490149, -4661.350581422141], [3332.63927649341, -4636.1005814219425], [3389.5892764945756, -4600.3005814228], [3424.839276490843, -4582.550581421429], [3467.0892764907535, -4570.700581421505], [3491.739276491046, -4567.450581422605]]}, {"length": 49.7866770107, "source": 135047495, "destination": 1932196432, "path": [[5270.989276489501, -7749.200581422145], [5265.98927649502, -7744.600581421679], [5261.189276488665, -7738.000581422711], [5258.589276493808, -7722.800581422717], [5256.189276494183, -7527.750581420633]]}, {"length": 51.2229358558, "source": 135047495, "destination": 1932196425, "path": [[5270.989276489501, -7749.200581422145], [5294.789276490519, -7729.600581424023], [5302.339276489931, -7717.250581421808], [5301.139276490119, -7575.900581421991], [5300.589276494349, -7527.150581420728]]}, {"length": 85.1319911756, "source": 135047495, "destination": 1932196455, "path": [[5270.989276489501, -7749.200581422145], [5279.889276494032, -7754.100581422563], [5294.2892764917815, -7756.050581424034], [5311.939276488431, -7756.050581424034], [5660.489276493763, -7752.050581423475], [5774.539276494295, -7750.850581423663]]}, {"length": 8.60253320017, "source": 135047495, "destination": 1932196479, "path": [[5270.989276489501, -7749.200581422145], [5234.63927649459, -7776.400581423814]]}, {"length": 57.9103023023, "source": 2086854515, "destination": 2086854499, "path": [[9959.23927649045, -3660.7505814210126], [9959.23927649045, -3921.1505814229495]]}, {"length": 11.6038907172, "source": 2086854515, "destination": 2086854452, "path": [[9959.23927649045, -3660.7505814210126], [10028.18927648974, -3660.4505814210597]]}, {"length": 39.397746789, "source": 2086854515, "destination": 134979223, "path": [[9959.23927649045, -3660.7505814210126], [9725.139276490325, -3661.6005814238406]]}, {"length": 63.2413219828, "source": 2069036701, "destination": 2068887953, "path": [[-103.16072350491368, 3160.849418577527], [-478.8607235113318, 3159.4994185759615]]}, {"length": 10.8326278507, "source": 2069036701, "destination": 2069036653, "path": [[-103.16072350491368, 3160.849418577527], [-104.51072351003177, 3209.549418578206]]}, {"length": 50.9410102518, "source": 135088456, "destination": 135038042, "path": [[4649.139276494907, 4310.799418576039], [4770.289276493145, 4312.74941857751], [4819.88927649013, 4315.549418578257], [4877.339276490034, 4320.299418576923], [4915.139276491232, 4324.549418576851], [4950.139276495236, 4329.899418578975]]}, {"length": 108.20582127, "source": 135088456, "destination": 135007358, "path": [[4649.139276494907, 4310.799418576039], [4006.33927649352, 4312.8994185792635]]}, {"length": 58.5893155697, "source": 135088456, "destination": 2069120455, "path": [[4649.139276494907, 4310.799418576039], [4650.78927648932, 4047.3494185775394]]}, {"length": 346.661105055, "source": 1295456178, "destination": 1942220075, "path": [[4473.78927648856, -3668.200581422809], [4528.3892764942375, -3623.7505814220585], [4581.939276491198, -3571.9505814206796], [4646.239276489439, -3491.2505814226333], [4702.989276488268, -3411.350581423278], [4833.88927649031, -3250.050581421249], [4877.589276489402, -3194.9505814239387], [4915.5392764888, -3133.5005814234764], [4938.939276492249, -3079.750581420626], [4955.2392764908855, -3029.9005814207194], [4961.4892764893175, -2985.000581421815], [4962.2892764915605, -2680.650581421418], [4968.739276492329, -2588.800581420969], [5028.189276494288, -2316.150581421539], [5040.789276492319, -2216.3505814205564]]}, {"length": 438.050533819, "source": 1295456178, "destination": 1295456181, "path": [[4473.78927648856, -3668.200581422809], [4514.539276492258, -3667.900581422856], [4544.339276492337, -3657.650581423866], [4599.189276490279, -3613.000581420778], [4767.88927649352, -3474.6005814234595], [4791.6392764904, -3447.450581422373], [4807.189276490931, -3426.6505814208867], [4812.639276494224, -3393.500581420739], [4869.639276492421, -3393.4005814231227], [5017.889276494714, -3391.100581421114], [5170.089276489875, -3381.2505814232454], [5246.889276492084, -3373.100581423927], [5334.189276489098, -3359.900581422437], [5548.889276489888, -3310.0005814219458], [5646.439276489446, -3284.150581421841], [5736.3892764925595, -3263.1505814215698], [5775.939276489339, -3267.3005814238822], [5790.389276491225, -3291.2505814231], [5791.689276492207, -4056.2005814237523], [5840.6892764892855, -4057.500581421181]]}, {"length": 253.269033223, "source": 1295456178, "destination": 1394286622, "path": [[4473.78927648856, -3668.200581422809], [4190.839276489555, -3901.5505814212756], [4055.189276492399, -3998.3505814227274], [4010.5892764898954, -4018.450581423139], [3932.1892764903055, -4042.6505814217253], [3873.7892764899584, -4062.800581422721], [3812.3392764930486, -4097.500581423219], [3755.0392764913454, -4139.950581421914], [3709.6392764937036, -4186.650581420537], [3631.9392764951886, -4291.700581422475], [3581.68927649416, -4346.100581422263], [3524.139276493088, -4401.150581422542], [3438.2392764911174, -4471.10058142286]]}, {"length": 46.1790377479, "source": 1483977715, "destination": 1483977712, "path": [[-2411.010723506024, -5099.150581422407], [-2136.610723511012, -5097.500581420889]]}, {"length": 76.8218438571, "source": 1483977715, "destination": 1483977712, "path": [[-2411.010723506024, -5099.150581422407], [-2407.360723509555, -5042.750581420563], [-2399.3107235114053, -5026.700581421295], [-2385.460723509425, -5016.800581422842], [-2368.660723504945, -5014.000581422096], [-2177.5107235058044, -5012.9005814234515], [-2159.2607235092487, -5017.900581421486], [-2146.110723508343, -5028.400581423398], [-2138.0607235101934, -5041.650581421919], [-2135.9107235099373, -5051.550581423925], [-2136.610723511012, -5097.500581420889]]}, {"length": 13.7243278587, "source": 1483977715, "destination": 1428267566, "path": [[-2411.010723506024, -5099.150581422407], [-2492.5607235104508, -5099.650581421145]]}, {"length": 438.050533819, "source": 1295456181, "destination": 1295456178, "path": [[5840.6892764892855, -4057.500581421181], [5791.689276492207, -4056.2005814237523], [5790.389276491225, -3291.2505814231], [5775.939276489339, -3267.3005814238822], [5736.3892764925595, -3263.1505814215698], [5646.439276489446, -3284.150581421841], [5548.889276489888, -3310.0005814219458], [5334.189276489098, -3359.900581422437], [5246.889276492084, -3373.100581423927], [5170.089276489875, -3381.2505814232454], [5017.889276494714, -3391.100581421114], [4869.639276492421, -3393.4005814231227], [4812.639276494224, -3393.500581420739], [4807.189276490931, -3426.6505814208867], [4791.6392764904, -3447.450581422373], [4767.88927649352, -3474.6005814234595], [4599.189276490279, -3613.000581420778], [4544.339276492337, -3657.650581423866], [4514.539276492258, -3667.900581422856], [4473.78927648856, -3668.200581422809]]}, {"length": 186.0749484, "source": 1295456181, "destination": 2573122347, "path": [[5840.6892764892855, -4057.500581421181], [5836.889276494617, -3220.8005814240437]]}, {"length": 250.302699353, "source": 1295456181, "destination": 1295456206, "path": [[5840.6892764892855, -4057.500581421181], [7327.889276488975, -4043.200581421047]]}, {"length": 6.91661796595, "source": 1295456181, "destination": 2573122359, "path": [[5840.6892764892855, -4057.500581421181], [5840.839276494591, -4088.6005814222417]]}, {"length": 20.0875388053, "source": 2267903931, "destination": 135031786, "path": [[-13168.910723507564, -3951.5505814229355], [-13217.660723505276, -3869.1005814222026]]}, {"length": 116.79741479, "source": 2267903931, "destination": 2267903931, "path": [[-13168.910723507564, -3951.5505814229355], [-13148.760723510122, -3970.850581421104], [-13125.910723509549, -3993.050581421187], [-13120.560723507424, -4016.400581424051], [-13120.560723507424, -4036.700581423247], [-13133.960723507698, -4053.9505814223276], [-13278.860723509923, -4110.900581423493], [-13313.660723511588, -4110.800581422325], [-13335.110723510013, -4104.700581422094], [-13352.560723511431, -4091.5005814206042], [-13364.610723506587, -4074.2505814215237], [-13363.260723508574, -4059.0505814215303], [-13356.560723508437, -4042.800581423478], [-13343.160723508163, -4030.600581423016], [-13332.51072350805, -4019.550581421782], [-13168.910723507564, -3951.5505814229355]]}, {"length": 116.79741479, "source": 2267903931, "destination": 2267903931, "path": [[-13168.910723507564, -3951.5505814229355], [-13332.51072350805, -4019.550581421782], [-13343.160723508163, -4030.600581423016], [-13356.560723508437, -4042.800581423478], [-13363.260723508574, -4059.0505814215303], [-13364.610723506587, -4074.2505814215237], [-13352.560723511431, -4091.5005814206042], [-13335.110723510013, -4104.700581422094], [-13313.660723511588, -4110.800581422325], [-13278.860723509923, -4110.900581423493], [-13133.960723507698, -4053.9505814223276], [-13120.560723507424, -4036.700581423247], [-13120.560723507424, -4016.400581424051], [-13125.910723509549, -3993.050581421187], [-13148.760723510122, -3970.850581421104], [-13168.910723507564, -3951.5505814229355]]}, {"length": 12.621057829, "source": 134985660, "destination": 2069376738, "path": [[-4177.710723510586, 5377.449418578095], [-4178.060723511124, 5434.199418576924]]}, {"length": 12.6542200548, "source": 134985660, "destination": 2069376863, "path": [[-4177.710723510586, 5377.449418578095], [-4177.3107235059115, 5320.549418577513]]}, {"length": 12.3729680422, "source": 134985660, "destination": 2068973823, "path": [[-4177.710723510586, 5377.449418578095], [-4104.2107235114145, 5377.399418577511]]}, {"length": 65.5637593146, "source": 1932195773, "destination": 3733365739, "path": [[1723.3392764950395, -4183.100581421684], [1731.489276494358, -4477.850581423581]]}, {"length": 12.6766354992, "source": 134985662, "destination": 2309494184, "path": [[-3429.160723506186, 5379.449418576598], [-3429.5107235067235, 5436.449418578349]]}, {"length": 15.1676994255, "source": 134985662, "destination": 3661788598, "path": [[-3429.160723506186, 5379.449418576598], [-3339.060723504872, 5379.699418575967]]}, {"length": 17.3474858075, "source": 134985662, "destination": 3661788599, "path": [[-3429.160723506186, 5379.449418576598], [-3532.2107235060685, 5378.999418578445]]}, {"length": 51.6199973237, "source": 2568599489, "destination": 2568599522, "path": [[202.68927649169655, -1920.0005814212773], [90.18927649151465, -1974.250581422865], [39.18927649237958, -2002.650581420795], [-11.760723509723903, -2037.1505814225088], [-42.06072350854129, -2058.750581422686]]}, {"length": 72.2213460992, "source": 2568599489, "destination": 2568599540, "path": [[202.68927649169655, -1920.0005814212773], [-226.41072350637614, -1922.9505814237768]]}, {"length": 13.0438658067, "source": 2568599489, "destination": 2568599742, "path": [[202.68927649169655, -1920.0005814212773], [280.1892764949798, -1919.4505814219553]]}, {"length": 16.4890028462, "source": 134985667, "destination": 2358476145, "path": [[-1957.9107235117021, 5384.64941857697], [-1859.96072350747, 5385.14941857926]]}, {"length": 15.3528528782, "source": 134985667, "destination": 2358476146, "path": [[-1957.9107235117021, 5384.64941857697], [-2049.11072351166, 5384.249418579401]]}, {"length": 12.2543956042, "source": 134985667, "destination": 2358476149, "path": [[-1957.9107235117021, 5384.64941857697], [-1957.5607235111647, 5329.549418576107]]}, {"length": 12.9436376032, "source": 134985667, "destination": 2358476142, "path": [[-1957.9107235117021, 5384.64941857697], [-1958.2607235051341, 5442.849418578533]]}, {"length": 46.8226132211, "source": 2568599493, "destination": 2568600105, "path": [[197.43927649074067, -2368.0505814205335], [-80.7607235060459, -2369.80058142322]]}, {"length": 18.8656554365, "source": 2568599493, "destination": 2587010645, "path": [[197.43927649074067, -2368.0505814205335], [194.4392764912095, -2452.8505814238597]]}, {"length": 13.5481875815, "source": 2568599493, "destination": 2568599341, "path": [[197.43927649074067, -2368.0505814205335], [277.9392764935551, -2368.0505814205335]]}, {"length": 9.02935281402, "source": 2568599493, "destination": 2568599495, "path": [[197.43927649074067, -2368.0505814205335], [197.43927649074067, -2327.450581422141]]}, {"length": 53.900422397, "source": 1295456198, "destination": 2086854563, "path": [[7880.989276493721, -4073.9505814215704], [7888.5892764901655, -4316.250581421599]]}, {"length": 93.1788726808, "source": 1295456198, "destination": 2573122356, "path": [[7880.989276493721, -4073.9505814215704], [7327.339276493205, -4078.1005814238824]]}, {"length": 99.3100742089, "source": 1295456198, "destination": 1295456206, "path": [[7880.989276493721, -4073.9505814215704], [7872.439276489729, -4040.1005814238997], [7327.889276488975, -4043.200581421047]]}, {"length": 7.88535779037, "source": 1295456198, "destination": 134975758, "path": [[7880.989276493721, -4073.9505814215704], [7927.839276490545, -4073.600581421033]]}, {"length": 13.5807450052, "source": 2568599495, "destination": 2568599497, "path": [[197.43927649074067, -2327.450581422141], [278.0892764917553, -2329.500581421229]]}, {"length": 75.2991165689, "source": 2568599495, "destination": 2568599522, "path": [[197.43927649074067, -2327.450581422141], [143.78927649261186, -2305.100581423858], [114.2892764889325, -2290.90058142134], [90.18927649151465, -2274.650581423288], [60.639276490803695, -2248.2505814238607], [36.53927649338584, -2221.900581421465], [20.439276489980784, -2203.600581420773], [4.3392764936811545, -2169.100581422612], [-17.110723504742964, -2120.4005814219327], [-33.21072350814802, -2091.9505814234185], [-42.06072350854129, -2058.750581422686]]}, {"length": 9.02935281402, "source": 2568599495, "destination": 2568599493, "path": [[197.43927649074067, -2327.450581422141], [197.43927649074067, -2368.0505814205335]]}, {"length": 61.4360622389, "source": 134985673, "destination": 2068877152, "path": [[-493.0607235067441, 5388.599418576945], [-494.8107235094312, 5664.849418579365]]}, {"length": 122.499893489, "source": 134985673, "destination": 134982672, "path": [[-493.0607235067441, 5388.599418576945], [234.58927649500083, 5394.89941857596]]}, {"length": 12.7432916468, "source": 134985673, "destination": 2355655000, "path": [[-493.0607235067441, 5388.599418576945], [-568.7607235103087, 5388.649418577529]]}, {"length": 60.6132066734, "source": 134985673, "destination": 2069036966, "path": [[-493.0607235067441, 5388.599418576945], [-491.31072351116245, 5116.049418578683]]}, {"length": 119.361665988, "source": 134985675, "destination": 134982672, "path": [[943.6392764925472, 5396.899418578016], [234.58927649500083, 5394.89941857596]]}, {"length": 11.3969976323, "source": 134985675, "destination": 2068853442, "path": [[943.6392764925472, 5396.899418578016], [1011.3392764949936, 5397.0994185768]]}, {"length": 60.6357294202, "source": 134985675, "destination": 2068877126, "path": [[943.6392764925472, 5396.899418578016], [941.4892764922911, 5669.549418577446]]}, {"length": 25.841801281, "source": 2358476450, "destination": 2358476432, "path": [[-566.4107235077154, 4783.099418578018], [-566.3107235065468, 4899.299418578807]]}, {"length": 12.9961023995, "source": 2358476450, "destination": 2358476449, "path": [[-566.4107235077154, 4783.099418578018], [-489.2107235079379, 4783.399418577972]]}, {"length": 95.6158642046, "source": 2358476450, "destination": 2355655012, "path": [[-566.4107235077154, 4783.099418578018], [-1134.4107235089496, 4781.049418578931]]}, {"length": 47.9606248547, "source": 2358476450, "destination": 2358476580, "path": [[-566.4107235077154, 4783.099418578018], [-563.660723507553, 4567.449418576785]]}, {"length": 93.7610799703, "source": 1295456206, "destination": 135043369, "path": [[7327.889276488975, -4043.200581421047], [7324.839276492412, -3621.6005814218024]]}, {"length": 7.7615159077, "source": 1295456206, "destination": 2573122356, "path": [[7327.889276488975, -4043.200581421047], [7327.339276493205, -4078.1005814238824]]}, {"length": 250.302699353, "source": 1295456206, "destination": 1295456181, "path": [[7327.889276488975, -4043.200581421047], [5840.6892764892855, -4057.500581421181]]}, {"length": 99.3100742089, "source": 1295456206, "destination": 1295456198, "path": [[7327.889276488975, -4043.200581421047], [7872.439276489729, -4040.1005814238997], [7880.989276493721, -4073.9505814215704]]}, {"length": 61.3019043282, "source": 134985680, "destination": 2068020337, "path": [[2429.989276492961, 5402.549418576541], [2429.939276488824, 5678.199418579055]]}, {"length": 238.817309827, "source": 134985680, "destination": 2068853442, "path": [[2429.989276492961, 5402.549418576541], [1717.8392764947148, 5399.39941857881], [1011.3392764949936, 5397.0994185768]]}, {"length": 60.6801557233, "source": 134985680, "destination": 2069037027, "path": [[2429.989276492961, 5402.549418576541], [2432.08927648908, 5129.699418578326]]}, {"length": 122.887673809, "source": 134985680, "destination": 134985684, "path": [[2429.989276492961, 5402.549418576541], [3159.989276490194, 5403.399418579369]]}, {"length": 115.675814607, "source": 1483977720, "destination": 1428267841, "path": [[-3319.760723506704, -5365.050581421116], [-2632.4107235069505, -5359.950581421913]]}, {"length": 55.8998011131, "source": 1483977720, "destination": 134968405, "path": [[-3319.760723506704, -5365.050581421116], [-3316.8607235083414, -5616.400581423875]]}, {"length": 58.4685121731, "source": 1483977720, "destination": 135057566, "path": [[-3319.760723506704, -5365.050581421116], [-3322.760723506235, -5102.150581421938]]}, {"length": 220.00204381, "source": 1483977720, "destination": 1483977721, "path": [[-3319.760723506704, -5365.050581421116], [-4627.06072350727, -5370.900581421978]]}, {"length": 14.905467508, "source": 2425001938, "destination": 135103219, "path": [[-4041.910723508124, -2561.0005814229453], [-4104.060723506109, -2513.25058142271]]}, {"length": 19.1955124095, "source": 2425001938, "destination": 2425001939, "path": [[-4041.910723508124, -2561.0005814229453], [-3934.460723506561, -2589.95058142375]]}, {"length": 9.94876221679, "source": 2286663635, "destination": 2286663632, "path": [[-5712.360723507004, 4883.049418577201], [-5653.260723505582, 4883.049418577201]]}, {"length": 104.739326222, "source": 2286663635, "destination": 2286663642, "path": [[-5712.360723507004, 4883.049418577201], [-5840.660723507085, 4883.049418577201], [-6080.410723505736, 4882.199418577926], [-6334.560723509241, 4881.549418577435]]}, {"length": 96.1841646009, "source": 2286663635, "destination": 2286663420, "path": [[-5712.360723507004, 4883.049418577201], [-5714.060723505554, 5315.54941857948]]}, {"length": 13.2434077068, "source": 2286663635, "destination": 2286663645, "path": [[-5712.360723507004, 4883.049418577201], [-5711.910723505298, 4823.499418577626]]}, {"length": 122.887673809, "source": 134985684, "destination": 134985680, "path": [[3159.989276490194, 5403.399418579369], [2429.989276492961, 5402.549418576541]]}, {"length": 60.9137869723, "source": 134985684, "destination": 2069036496, "path": [[3159.989276490194, 5403.399418579369], [3162.2392764916185, 5129.499418575989]]}, {"length": 61.5809786846, "source": 134985684, "destination": 2068020404, "path": [[3159.989276490194, 5403.399418579369], [3157.739276488769, 5680.2994185787265]]}, {"length": 122.106010311, "source": 134985684, "destination": 134985687, "path": [[3159.989276490194, 5403.399418579369], [3885.3392764934824, 5405.89941857661]]}, {"length": 19.8383238065, "source": 2425001941, "destination": 2425001938, "path": [[-3956.8607235054287, -2617.4005814212364], [-4025.5107235083187, -2587.500581423541], [-4041.910723508124, -2561.0005814229453]]}, {"length": 121.449024839, "source": 134985687, "destination": 134985689, "path": [[3885.3392764934824, 5405.89941857661], [4606.789276493828, 5407.899418578665]]}, {"length": 61.7032108628, "source": 134985687, "destination": 2068009746, "path": [[3885.3392764934824, 5405.89941857661], [3883.0892764920577, 5683.349418578842]]}, {"length": 122.106010311, "source": 134985687, "destination": 134985684, "path": [[3885.3392764934824, 5405.89941857661], [3159.989276490194, 5403.399418579369]]}, {"length": 61.4695009835, "source": 134985687, "destination": 2069036476, "path": [[3885.3392764934824, 5405.89941857661], [3887.339276488433, 5129.499418575989]]}, {"length": 60.7800332479, "source": 134985689, "destination": 2069036953, "path": [[4606.789276493828, 5407.899418578665], [4608.689276494715, 5134.599418578745]]}, {"length": 56.9916304875, "source": 134985689, "destination": 134985691, "path": [[4606.789276493828, 5407.899418578665], [4945.33927648888, 5408.89941857614]]}, {"length": 35.5497384568, "source": 134985689, "destination": 4253708844, "path": [[4606.789276493828, 5407.899418578665], [4605.639276491047, 5567.749418577961]]}, {"length": 121.449024839, "source": 134985689, "destination": 134985687, "path": [[4606.789276493828, 5407.899418578665], [3885.3392764934824, 5405.89941857661]]}, {"length": 104.739326222, "source": 2286663642, "destination": 2286663635, "path": [[-6334.560723509241, 4881.549418577435], [-6080.410723505736, 4882.199418577926], [-5840.660723507085, 4883.049418577201], [-5712.360723507004, 4883.049418577201]]}, {"length": 55.9755280151, "source": 135027023, "destination": 1916976481, "path": [[-140.86072350494305, -7169.350581420986], [-141.16072350844888, -6917.650581421241]]}, {"length": 56.8773377933, "source": 135027023, "destination": 135099955, "path": [[-140.86072350494305, -7169.350581420986], [197.13927649434027, -7168.650581423463]]}, {"length": 96.8975033505, "source": 135027023, "destination": 135097404, "path": [[-140.86072350494305, -7169.350581420986], [-716.6607235049582, -7165.1005814210575]]}, {"length": 111.597357546, "source": 135027023, "destination": 1393871502, "path": [[-140.86072350494305, -7169.350581420986], [-151.0107235063174, -7671.100581422507]]}, {"length": 108.140516339, "source": 2286663645, "destination": 134954264, "path": [[-5711.910723505298, 4823.499418577626], [-6013.71072350787, 4822.499418576598], [-6188.760723510712, 4821.599418576739], [-6354.310723509116, 4821.099418578001]]}, {"length": 13.6105760775, "source": 2286663645, "destination": 2286663657, "path": [[-5711.910723505298, 4823.499418577626], [-5711.5107235077285, 4762.299418576532]]}, {"length": 13.2434077068, "source": 2286663645, "destination": 2286663635, "path": [[-5711.910723505298, 4823.499418577626], [-5712.360723507004, 4883.049418577201]]}, {"length": 9.97409559193, "source": 2286663645, "destination": 134954265, "path": [[-5711.910723505298, 4823.499418577626], [-5652.660723505676, 4823.749418576995]]}, {"length": 59.9792112445, "source": 134985696, "destination": 2069036875, "path": [[6094.3392764940545, 5413.399418578991], [6095.789276493235, 5143.699418578507]]}, {"length": 99.4646998702, "source": 134985696, "destination": 134985694, "path": [[6094.3392764940545, 5413.399418578991], [5503.489276492246, 5410.899418578197]]}, {"length": 63.7377430065, "source": 134985696, "destination": 2069037011, "path": [[6094.3392764940545, 5413.399418578991], [6092.539276494335, 5699.999418578017]]}, {"length": 129.959498299, "source": 134985696, "destination": 134985699, "path": [[6094.3392764940545, 5413.399418578991], [6866.339276491828, 5416.399418578521]]}, {"length": 121.753866113, "source": 135100487, "destination": 135074379, "path": [[8250.839276492172, 455.8994185792642], [8459.339276491562, 456.89941857673944], [8614.039276494623, 480.8994185765414], [8821.439276488263, 486.1994185780816], [8970.789276489199, 489.99941857630347]]}, {"length": 6.67254952338, "source": 135100487, "destination": 135019213, "path": [[8250.839276492172, 455.8994185792642], [8251.33927649091, 425.8994185768472]]}, {"length": 61.9656577242, "source": 135100487, "destination": 2086776811, "path": [[8250.839276492172, 455.8994185792642], [8253.839276491704, 473.8994185764511], [8247.93927649381, 734.3494185789723]]}, {"length": 51.6199973237, "source": 2568599522, "destination": 2568599489, "path": [[-42.06072350854129, -2058.750581422686], [-11.760723509723903, -2037.1505814225088], [39.18927649237958, -2002.650581420795], [90.18927649151465, -1974.250581422865], [202.68927649169655, -1920.0005814212773]]}, {"length": 43.6661176911, "source": 2568599522, "destination": 2568599540, "path": [[-42.06072350854129, -2058.750581422686], [-65.41072350785271, -2031.1005814228622], [-81.51072351125777, -2014.850581421257], [-113.66072350682543, -1992.5005814229735], [-145.86072350653012, -1970.2005814217216], [-186.11072351149005, -1947.8505814234381], [-226.41072350637614, -1922.9505814237768]]}, {"length": 44.378384738, "source": 2568599522, "destination": 2568599542, "path": [[-42.06072350854129, -2058.750581422686], [-57.36072350970289, -2069.6505814221664], [-113.66072350682543, -2108.200581421471], [-156.6107235078107, -2148.8005814234157], [-186.11072351149005, -2181.3005814230737], [-209.06072350612703, -2211.4005814231064]]}, {"length": 75.2991165689, "source": 2568599522, "destination": 2568599495, "path": [[-42.06072350854129, -2058.750581422686], [-33.21072350814802, -2091.9505814234185], [-17.110723504742964, -2120.4005814219327], [4.3392764936811545, -2169.100581422612], [20.439276489980784, -2203.600581420773], [36.53927649338584, -2221.900581421465], [60.639276490803695, -2248.2505814238607], [90.18927649151465, -2274.650581423288], [114.2892764889325, -2290.90058142134], [143.78927649261186, -2305.100581423858], [197.43927649074067, -2327.450581422141]]}, {"length": 129.959498299, "source": 134985699, "destination": 134985696, "path": [[6866.339276491828, 5416.399418578521], [6094.3392764940545, 5413.399418578991]]}, {"length": 109.337759886, "source": 134985699, "destination": 134985700, "path": [[6866.339276491828, 5416.399418578521], [7515.839276493352, 5418.899418579314]]}, {"length": 60.6464303677, "source": 134985699, "destination": 2069036764, "path": [[6866.339276491828, 5416.399418578521], [6867.78927649101, 5143.699418578507]]}, {"length": 63.9819737408, "source": 134985699, "destination": 2069036439, "path": [[6866.339276491828, 5416.399418578521], [6865.039276490847, 5704.099418576192]]}, {"length": 109.337759886, "source": 134985700, "destination": 134985699, "path": [[7515.839276493352, 5418.899418579314], [6866.339276491828, 5416.399418578521]]}, {"length": 60.7463633426, "source": 134985700, "destination": 2069036756, "path": [[7515.839276493352, 5418.899418579314], [7517.239276488397, 5145.749418577594]]}, {"length": 64.3268645188, "source": 134985700, "destination": 2069036837, "path": [[7515.839276493352, 5418.899418579314], [7514.289276493002, 5708.149418577335]]}, {"length": 109.338336896, "source": 134985700, "destination": 134985702, "path": [[7515.839276493352, 5418.899418579314], [8165.339276494877, 5421.899418578846]]}, {"length": 27.1545208882, "source": 2080708581, "destination": 135065386, "path": [[-9027.060723511226, -11354.000581423663], [-9028.16072350987, -11476.100581422344]]}, {"length": 41.7774152909, "source": 2080708581, "destination": 2184814291, "path": [[-9027.060723511226, -11354.000581423663], [-9275.360723506765, -11354.200581422447]]}, {"length": 9.87465410206, "source": 2080708581, "destination": 135065381, "path": [[-9027.060723511226, -11354.000581423663], [-9026.660723506553, -11309.600581423496]]}, {"length": 63.6597112424, "source": 134985702, "destination": 2069036945, "path": [[8165.339276494877, 5421.899418578846], [8163.789276494526, 5708.149418577335]]}, {"length": 168.898204675, "source": 134985702, "destination": 2069036756, "path": [[8165.339276494877, 5421.899418578846], [8162.439276489408, 5150.849418576798], [7517.239276488397, 5145.749418577594]]}, {"length": 109.338336896, "source": 134985702, "destination": 134985700, "path": [[8165.339276494877, 5421.899418578846], [7515.839276493352, 5418.899418579314]]}, {"length": 95.4464200414, "source": 134985702, "destination": 134985708, "path": [[8165.339276494877, 5421.899418578846], [8687.339276491457, 5423.899418577349], [8732.239276490362, 5421.849418578262]]}, {"length": 17.5666467184, "source": 2309493756, "destination": 2309493752, "path": [[-3539.560723510249, 6448.399418577111], [-3435.2107235093854, 6448.549418578864]]}, {"length": 94.9816419302, "source": 2309493756, "destination": 2309493760, "path": [[-3539.560723510249, 6448.399418577111], [-3999.860723510551, 6446.099418578655], [-4103.760723509708, 6445.799418578701]]}, {"length": 48.438472638, "source": 2309493756, "destination": 2316883447, "path": [[-3539.560723510249, 6448.399418577111], [-3537.0607235094553, 6230.599418579175]]}, {"length": 95.4464200414, "source": 134985708, "destination": 134985702, "path": [[8732.239276490362, 5421.849418578262], [8687.339276491457, 5423.899418577349], [8165.339276494877, 5421.899418578846]]}, {"length": 11.8688275663, "source": 134985708, "destination": 2069036822, "path": [[8732.239276490362, 5421.849418578262], [8776.489276492328, 5463.399418577097]]}, {"length": 104.017005956, "source": 135074813, "destination": 134983509, "path": [[9796.839276489776, -119.9505814213353], [10414.839276492672, -118.1005814210323]]}, {"length": 46.7689749166, "source": 2069036712, "destination": 4274705944, "path": [[7511.589276489872, 6238.049418577419], [7510.5892764923965, 6448.349418576527]]}, {"length": 58.299940821, "source": 2069036712, "destination": 135033689, "path": [[7511.589276489872, 6238.049418577419], [7512.839276493822, 5975.899418576347]]}, {"length": 109.339202405, "source": 2069036712, "destination": 2069036941, "path": [[7511.589276489872, 6238.049418577419], [8161.089276491395, 6237.04941857639]]}, {"length": 109.298969584, "source": 2069036712, "destination": 2069036377, "path": [[7511.589276489872, 6238.049418577419], [6862.339276494822, 6234.999418577303]]}, {"length": 72.2213460992, "source": 2568599540, "destination": 2568599489, "path": [[-226.41072350637614, -1922.9505814237768], [202.68927649169655, -1920.0005814212773]]}, {"length": 43.6661176911, "source": 2568599540, "destination": 2568599522, "path": [[-226.41072350637614, -1922.9505814237768], [-186.11072351149005, -1947.8505814234381], [-145.86072350653012, -1970.2005814217216], [-113.66072350682543, -1992.5005814229735], [-81.51072351125777, -2014.850581421257], [-65.41072350785271, -2031.1005814228622], [-42.06072350854129, -2058.750581422686]]}, {"length": 78.1045685669, "source": 2568599540, "destination": 2568599452, "path": [[-226.41072350637614, -1922.9505814237768], [-301.4607235058975, -1923.4505814225145], [-544.5607235117222, -1925.400581423986], [-690.4607235114213, -1926.4005814214613]]}, {"length": 65.2276000294, "source": 2568599540, "destination": 2568599542, "path": [[-226.41072350637614, -1922.9505814237768], [-202.26072350482127, -1960.3005814232688], [-198.7607235065525, -2161.550581423199], [-209.06072350612703, -2211.4005814231064]]}, {"length": 49.282920416, "source": 135010293, "destination": 1932196124, "path": [[4657.739276488826, -5933.950581422209], [4950.539276492805, -5929.450581422912]]}, {"length": 49.7452605275, "source": 135010293, "destination": 1937679932, "path": [[4657.739276488826, -5933.950581422209], [4362.139276494759, -5935.550581423144]]}, {"length": 6.96078085798, "source": 135010293, "destination": 1937679941, "path": [[4657.739276488826, -5933.950581422209], [4657.889276494132, -5965.250581422055]]}, {"length": 44.378384738, "source": 2568599542, "destination": 2568599522, "path": [[-209.06072350612703, -2211.4005814231064], [-186.11072351149005, -2181.3005814230737], [-156.6107235078107, -2148.8005814234157], [-113.66072350682543, -2108.200581421471], [-57.36072350970289, -2069.6505814221664], [-42.06072350854129, -2058.750581422686]]}, {"length": 65.2276000294, "source": 2568599542, "destination": 2568599540, "path": [[-209.06072350612703, -2211.4005814231064], [-198.7607235065525, -2161.550581423199], [-202.26072350482127, -1960.3005814232688], [-226.41072350637614, -1922.9505814237768]]}, {"length": 46.8919217802, "source": 2568599542, "destination": 2568599455, "path": [[-209.06072350612703, -2211.4005814231064], [-226.31072350520753, -2234.050581421343], [-288.0107235085916, -2294.9505814224835], [-325.56072351042076, -2331.5005814232845], [-387.3107235108364, -2371.750581421139]]}, {"length": 10.0649468753, "source": 135010295, "destination": 2029677569, "path": [[4654.689276492263, -6848.550581423751], [4594.889276489766, -6849.450581423611]]}, {"length": 45.812822496, "source": 135010295, "destination": 2029677572, "path": [[4654.689276492263, -6848.550581423751], [4643.139276488739, -6911.800581423932], [4642.339276493602, -7053.950581422441]]}, {"length": 196.537706137, "source": 135010295, "destination": 1937679941, "path": [[4654.689276492263, -6848.550581423751], [4663.289276493288, -6800.700581422348], [4658.739276493407, -6177.800581422588], [4657.889276494132, -5965.250581422055]]}, {"length": 51.1984593555, "source": 135010295, "destination": 1932196205, "path": [[4654.689276492263, -6848.550581423751], [4958.88927649446, -6844.350581420855]]}, {"length": 44.5448527353, "source": 135010301, "destination": 2029677572, "path": [[4642.389276490632, -7254.2505814219285], [4642.139276491263, -7086.650581420883], [4642.339276493602, -7053.950581422441]]}, {"length": 6.91401136402, "source": 2568599550, "destination": 2568599553, "path": [[432.1392764907728, -2293.9505814214554], [464.33927649047746, -2274.650581423288]]}, {"length": 30.7559987848, "source": 2568599550, "destination": 2568599341, "path": [[432.1392764907728, -2293.9505814214554], [395.9392764940617, -2313.2505814231763], [363.739276494357, -2327.450581422141], [277.9392764935551, -2368.0505814205335]]}, {"length": 25.5435976756, "source": 2568599550, "destination": 2568599623, "path": [[432.1392764907728, -2293.9505814214554], [452.2392764911842, -2317.3005814207672], [460.28927648933404, -2331.5005814232845], [481.7892764918952, -2371.1005814206487], [491.13927649102607, -2390.350581421785], [495.1392764951379, -2398.000581422366]]}, {"length": 115.141470585, "source": 1932195840, "destination": 1932196031, "path": [[155.9892764930737, -4935.80058142129], [152.38927649363632, -4951.400581422405], [151.98927648896188, -4989.900581421125], [152.38927649363632, -5029.60058142321], [151.98927648896188, -5059.700581423243], [151.58927649139287, -5085.550581423348], [150.3892764915804, -5099.400581421776], [148.03927648898707, -5111.450581424037], [147.23927649384905, -5126.450581421694], [148.4392764936615, -5196.850581423718], [149.9892764940114, -5223.000581423776], [149.9892764940114, -5242.850581421266], [148.4392764936615, -5259.400581422824], [145.63927648936215, -5278.650581423961], [140.48927648957488, -5296.700581421732], [132.13927649502466, -5324.100581422186], [123.78927649336902, -5344.550581423136], [115.03927649414436, -5360.800581421188], [107.08927649005773, -5370.4005814232405], [92.38927648880235, -5382.450581421949], [66.5392764886974, -5402.000581423039], [34.03927649259231, -5424.500581423075]]}, {"length": 94.9816419302, "source": 2309493760, "destination": 2309493756, "path": [[-4103.760723509708, 6445.799418578701], [-3999.860723510551, 6446.099418578655], [-3539.560723510249, 6448.399418577111]]}, {"length": 0.697630101294, "source": 2309493760, "destination": 2293562991, "path": [[-4103.760723509708, 6445.799418578701], [-4103.760723509708, 6442.649418577417]]}, {"length": 13.8540691303, "source": 2080708615, "destination": 135045922, "path": [[-9378.06072350611, -11325.600581422179], [-9298.660723509045, -11309.100581421206]]}, {"length": 51.2606458841, "source": 2080708615, "destination": 134967039, "path": [[-9378.06072350611, -11325.600581422179], [-9378.160723507279, -11308.10058142373], [-9379.160723504754, -11095.100581421491]]}, {"length": 203.435834485, "source": 1932195849, "destination": 1932196124, "path": [[4939.189276491617, -5014.750581423755], [4943.789276488531, -5251.750581422243], [4945.789276490586, -5348.600581420726], [4947.789276492642, -5396.750581422083], [4947.789276492642, -5436.150581420662], [4948.589276494886, -5532.100581422838], [4950.139276495236, -5665.000581423385], [4949.789276494698, -5799.150581420776], [4950.139276495236, -5850.300581421663], [4950.539276492805, -5929.450581422912]]}, {"length": 147.783518238, "source": 1932195849, "destination": 135057525, "path": [[4939.189276491617, -5014.750581423755], [4659.0892764939435, -5017.4005814227485], [4061.089276490293, -5023.000581420689]]}, {"length": 51.7660199582, "source": 1932195849, "destination": 135057526, "path": [[4939.189276491617, -5014.750581423755], [5246.789276490916, -5013.15058142282]]}, {"length": 105.70045772, "source": 135022935, "destination": 1930503632, "path": [[9241.389276489543, -9831.500581423568], [9237.08927648903, -9758.650581421336], [9235.789276495154, -9681.900581423264], [9237.389276492537, -9638.900581421694], [9241.33927649251, -9604.300581422365], [9253.039276494235, -9570.350581423525], [9280.689276494059, -9542.40058142375], [9320.239276490838, -9527.250581420787], [9369.939276488993, -9520.050581421912], [9431.539276491207, -9517.100581422967], [9509.939276490797, -9515.300581423247]]}, {"length": 327.790586718, "source": 135022935, "destination": 134982531, "path": [[9241.389276489543, -9831.500581423568], [9182.539276494594, -9821.050581422242], [9147.789276489959, -9810.300581420961], [8981.68927648868, -9721.300581421843], [8724.389276494549, -9580.550581421932], [8640.639276492835, -9534.950581421952], [8617.489276488755, -9519.200581422638], [8598.539276491123, -9501.300581423067], [8583.089276491763, -9483.050581422958], [8572.939276490388, -9458.60058142145], [8568.03927648997, -9436.800581422489], [8567.88927649177, -9381.250581423472], [8565.789276488544, -9001.200581423063], [8566.18927649322, -8625.200581423798]]}, {"length": 181.364757889, "source": 135022935, "destination": 134937758, "path": [[9241.389276489543, -9831.500581423568], [9256.339276490166, -9936.100581423801], [9281.839276489734, -10006.100581421151], [9292.339276491646, -10025.10058142292], [9315.33927649042, -10068.600581423227], [9317.839276491213, -10073.100581422523], [9364.339276494604, -10136.600581422073], [9412.339276494207, -10188.100581423498], [9475.839276490206, -10242.100581422164], [9537.83927648999, -10284.600581421444], [9605.3392764901, -10321.60058142395], [9677.839276491795, -10353.600581421319], [9714.68927649255, -10370.750581422782], [9756.68927649309, -10385.000581422333], [9802.039276493702, -10397.15058142221], [9882.939276494086, -10414.700581421243]]}, {"length": 107.239393524, "source": 3146411798, "destination": 3146411827, "path": [[-3742.2107235087765, -4575.550581421339], [-3756.01072350662, -4093.4505814220756]]}, {"length": 62.0501644345, "source": 3146411798, "destination": 3146411788, "path": [[-3742.2107235087765, -4575.550581421339], [-4110.860723507414, -4580.700581421126]]}, {"length": 62.9163402374, "source": 3146411798, "destination": 3146411767, "path": [[-3742.2107235087765, -4575.550581421339], [-3368.360723506214, -4577.650581421011]]}, {"length": 42.196037855, "source": 2568599572, "destination": 2568599584, "path": [[707.0892764886594, -2006.7005814219385], [727.0892764950077, -2019.1005814211849], [752.5892764945752, -2035.3005814222058], [774.7392764940741, -2053.1005814206083], [789.4892764923611, -2065.2505814240385], [805.5392764916292, -2079.4505814230033], [816.2892764929097, -2090.1505814237], [827.0392764941903, -2101.3005814225494], [845.1392764925458, -2122.6005814227733], [869.3392764911323, -2149.800581420891]]}, {"length": 4.97120939356, "source": 2568599572, "destination": 2568599769, "path": [[707.0892764886594, -2006.7005814219385], [707.639276491534, -1984.350581423655]]}, {"length": 53.3394719569, "source": 2568599572, "destination": 2568599722, "path": [[707.0892764886594, -2006.7005814219385], [688.289276489229, -2022.9505814235438], [650.7392764945052, -2057.4505814217046], [615.8892764887014, -2094.000581422506], [578.3392764939776, -2134.600581420898], [530.0392764908679, -2199.550581423182], [527.239276493674, -2203.400581421988]]}, {"length": 27.9474819988, "source": 2568599575, "destination": 2568599704, "path": [[815.6392764888665, -2270.300581422191], [649.5892764917244, -2271.550581422588]]}, {"length": 12.4961861583, "source": 2568599575, "destination": 2587010385, "path": [[815.6392764888665, -2270.300581422191], [889.8892764932498, -2270.6005814221444]]}, {"length": 30.1785849153, "source": 2568599575, "destination": 2568679361, "path": [[815.6392764888665, -2270.300581422191], [815.6892764930035, -2276.700581422375], [822.3892764931406, -2318.300581421795], [837.1392764914276, -2351.8005814224807], [861.2892764929825, -2386.3005814206417], [870.8392764944506, -2397.150581423091]]}, {"length": 4.83145805348, "source": 2568599581, "destination": 2568599584, "path": [[886.78927649255, -2132.5505814218104], [869.3392764911323, -2149.800581420891]]}, {"length": 28.4847953301, "source": 2568599581, "destination": 2587010484, "path": [[886.78927649255, -2132.5505814218104], [992.8392764919636, -2132.450581420642], [1017.8892764898251, -2132.3505814230257], [1056.0392764915605, -2132.100581423657]]}, {"length": 27.1839034435, "source": 2568599584, "destination": 2587010385, "path": [[869.3392764911323, -2149.800581420891], [878.539276492063, -2175.100581421674], [882.639276490238, -2192.600581423676], [888.0392764893941, -2234.800581423002], [889.8892764932498, -2270.6005814221444]]}, {"length": 42.196037855, "source": 2568599584, "destination": 2568599572, "path": [[869.3392764911323, -2149.800581420891], [845.1392764925458, -2122.6005814227733], [827.0392764941903, -2101.3005814225494], [816.2892764929097, -2090.1505814237], [805.5392764916292, -2079.4505814230033], [789.4892764923611, -2065.2505814240385], [774.7392764940741, -2053.1005814206083], [752.5892764945752, -2035.3005814222058], [727.0892764950077, -2019.1005814211849], [707.0892764886594, -2006.7005814219385]]}, {"length": 28.7497032802, "source": 2568599584, "destination": 2568599575, "path": [[869.3392764911323, -2149.800581420891], [846.5392764946955, -2177.2505814219303], [829.1392764903094, -2206.650581420888], [818.3892764890288, -2242.2005814206614], [815.6392764888665, -2270.300581422191]]}, {"length": 313.249071272, "source": 1277679653, "destination": 135064790, "path": [[4426.139276489494, -3314.300581422458], [4318.639276490899, -3295.000581420737], [4219.139276493423, -3280.750581421188], [4107.389276491347, -3269.0005814224323], [3946.7392764933606, -3257.7005814218296], [3795.339276493337, -3251.4505814233985], [3523.139276488507, -3244.0505814221865], [3218.7392764910783, -3226.800581423106], [2572.839276488992, -3213.550581421032]]}, {"length": 16.3327575115, "source": 1277679653, "destination": 1277679767, "path": [[4426.139276489494, -3314.300581422458], [4479.489276491222, -3252.9505814231643]]}, {"length": 67.5406064649, "source": 135084837, "destination": 1429422683, "path": [[3922.539276494774, -1736.0005814239798], [3985.939276489603, -1735.1005814205678], [4013.089276490689, -1733.0505814214803], [4042.6892764884315, -1728.4005814239833], [4070.189276490055, -1721.4505814209247], [4097.889276494016, -1711.6005814230562], [4131.189276492364, -1697.4005814205384], [4206.589276492423, -1660.2505814233837], [4278.789276490614, -1616.400581422539]]}, {"length": 207.918836931, "source": 135084837, "destination": 135016405, "path": [[3922.539276494774, -1736.0005814239798], [3921.939276494868, -1479.1005814238645], [3916.8392764921123, -1436.100581422295], [3902.4392764943627, -1391.250581423975], [3875.589276489677, -1352.700581421118], [3840.9892764903475, -1321.3005814236567], [3789.489276492475, -1287.0005814207275], [3740.6892764906274, -1266.1005814216253], [3698.3892764936854, -1255.7005814208821], [3655.389276488563, -1249.450581422451], [3588.33927649016, -1244.4005814238324], [3202.3892764883044, -1245.2505814231074]]}, {"length": 323.036250667, "source": 135084837, "destination": 135064558, "path": [[3922.539276494774, -1736.0005814239798], [3924.8392764932305, -2293.6005814209184], [3926.3392764894434, -2735.6005814205273], [3930.589276492924, -3188.550581423755]]}, {"length": 58.9522328445, "source": 2568599607, "destination": 2568599867, "path": [[882.7392764914066, -2410.6505814209813], [894.8392764906998, -2423.850581422471], [899.1392764912121, -2672.8505814226364]]}, {"length": 28.7962314195, "source": 2568599607, "destination": 2587010543, "path": [[882.7392764914066, -2410.6505814209813], [982.6892764905892, -2408.9005814218467], [994.2892764911448, -2408.7005814230624], [1053.7392764931042, -2406.6505814239745]]}, {"length": 5.62287104712, "source": 4719999032, "destination": 4719995860, "path": [[2234.489276489171, -1714.9505814231247], [2246.489276494401, -1738.550581421805]]}, {"length": 96.0837023908, "source": 4719999032, "destination": 4720001094, "path": [[2234.489276489171, -1714.9505814231247], [2118.739276490089, -1715.2005814224935], [2118.139276490183, -1584.2005814228344], [2119.289276492964, -1370.7505814224419]]}, {"length": 91.5810060418, "source": 4719999032, "destination": 4720007030, "path": [[2234.489276489171, -1714.9505814231247], [2234.489276489171, -1602.8005814234803], [2229.4892764946894, -1597.7505814213089], [2229.4892764946894, -1304.400581421561]]}, {"length": 42.3690735993, "source": 2282034186, "destination": 2282034459, "path": [[-7840.060723509623, -180.8505814224759], [-7817.910723510124, -215.05058142068378], [-7808.810723510362, -229.70058142135485], [-7804.760723509218, -245.8505814217915], [-7803.210723508869, -260.9005814235843], [-7802.910723505363, -308.0505814239132], [-7806.160723511368, -365.5505814208482]]}, {"length": 5.6786944231, "source": 2282034186, "destination": 135037798, "path": [[-7840.060723509623, -180.8505814224759], [-7854.860723504942, -157.9005814207335]]}, {"length": 111.279532189, "source": 2282034186, "destination": 2282034231, "path": [[-7840.060723509623, -180.8505814224759], [-7731.410723508247, -181.150581422429], [-7509.160723508046, -178.70058142221978], [-7490.660723505016, -179.2505814215417], [-7472.56072350666, -181.30058142062921], [-7390.91072350817, -200.55058142176563], [-7367.760723511196, -206.10058142267462], [-7353.910723509216, -208.70058142108405], [-7337.710723511747, -210.15058142381804], [-7184.810723508406, -214.85058142189928]]}, {"length": 100.495511336, "source": 135100478, "destination": 135074370, "path": [[8224.33927649513, 4106.399418578377], [8821.3392764942, 4108.399418576881]]}, {"length": 47.5214445332, "source": 135100478, "destination": 135109653, "path": [[8224.33927649513, 4106.399418578377], [8181.739276494682, 4108.149418577512], [8141.089276492153, 4111.749418576948], [8101.339276493036, 4116.899418576736], [8049.689276489858, 4128.59941857846], [8007.3392764887785, 4142.399418576304], [7955.639276488569, 4162.8994185778365]]}, {"length": 85.1765013756, "source": 135100478, "destination": 135036822, "path": [[8224.33927649513, 4106.399418578377], [8226.839276488818, 3723.3994185790207]]}, {"length": 38.1346294535, "source": 3357236917, "destination": 4224950657, "path": [[6981.489276491004, 3261.9494185794906], [7001.889276494921, 3286.3494185768614], [7024.73927648839, 3315.8494185769882], [7053.6892764891945, 3358.449418577436], [7058.239276489076, 3374.1994185767508], [7058.239276489076, 3388.9494185785907], [7054.889276489007, 3403.649418576293], [7047.639276493101, 3417.299418579489]]}, {"length": 20.7091207045, "source": 3357236917, "destination": 4224950763, "path": [[6981.489276491004, 3261.9494185794906], [6965.839276489305, 3270.099418578809], [6886.739276488641, 3321.2494185761443]]}, {"length": 4.49115839821, "source": 3357236917, "destination": 3357236918, "path": [[6981.489276491004, 3261.9494185794906], [7007.289276494077, 3256.799418576151]]}, {"length": 49.5508818541, "source": 3357236917, "destination": 4224950681, "path": [[6981.489276491004, 3261.9494185794906], [6926.489276494863, 3203.399418577391], [6917.589276490333, 3193.699418577722], [6907.989276491833, 3185.399418576651], [6895.939276489571, 3177.0494185785483], [6881.389276493621, 3170.049418578458], [6867.539276491641, 3163.5994185776894], [6851.9392764940785, 3158.7994185784396], [6838.789276493173, 3154.749418577296], [6820.689276494818, 3151.2494185790274], [6800.089276488563, 3149.399418578724], [6774.189276491426, 3149.0994185787713], [6751.139276488516, 3149.2494185769715]]}, {"length": 25.5435976756, "source": 2568599623, "destination": 2568599550, "path": [[495.1392764951379, -2398.000581422366], [491.13927649102607, -2390.350581421785], [481.7892764918952, -2371.1005814206487], [460.28927648933404, -2331.5005814232845], [452.2392764911842, -2317.3005814207672], [432.1392764907728, -2293.9505814214554]]}, {"length": 1.69825663677, "source": 2568599627, "destination": 2568679346, "path": [[505.93927649345005, -2397.800581423581], [508.6392764894754, -2390.4505814229537]]}, {"length": 61.4150993485, "source": 135043151, "destination": 3146412232, "path": [[-4138.910723504807, -716.9005814233742], [-4138.310723504901, -773.6505814222028], [-4136.010723506444, -993.0505814210733]]}, {"length": 64.4455314749, "source": 135043151, "destination": 3146411803, "path": [[-4138.910723504807, -716.9005814233742], [-4062.310723504936, -716.6005814234211], [-3756.01072350662, -715.5005814212245]]}, {"length": 61.1693325638, "source": 135043151, "destination": 3146411772, "path": [[-4138.910723504807, -716.9005814233742], [-4139.310723509481, -652.8505814209495], [-4140.660723507494, -441.8505814207663]]}, {"length": 86.1694986831, "source": 135043151, "destination": 134957819, "path": [[-4138.910723504807, -716.9005814233742], [-4207.160723510128, -716.7505814216213], [-4525.010723504864, -716.1005814211308], [-4537.860723509368, -716.0505814205465], [-4597.910723511233, -719.6005814229522], [-4650.2607235083815, -724.7005814221552]]}, {"length": 16.5345801827, "source": 135043153, "destination": 3146557099, "path": [[-3402.8107235073435, -716.1505814217151], [-3402.8607235114805, -641.8005814232686]]}, {"length": 35.6210288218, "source": 135043153, "destination": 3146557109, "path": [[-3402.8107235073435, -716.1505814217151], [-3473.4107235081524, -720.3505814210587], [-3500.410723511038, -720.3505814210587], [-3545.0607235105736, -720.400581421643], [-3613.8607235116638, -715.0005814224869]]}, {"length": 28.8441278246, "source": 135043161, "destination": 2140998641, "path": [[-1174.710723510941, -706.1005814215093], [-1173.9107235086976, -835.8005814237401]]}, {"length": 124.507303412, "source": 135043161, "destination": 2573122314, "path": [[-1174.710723510941, -706.1005814215093], [-1914.4607235048738, -708.8005814210874]]}, {"length": 61.5027017348, "source": 135043161, "destination": 2086776831, "path": [[-1174.710723510941, -706.1005814215093], [-1176.4607235065228, -429.55058142268854]]}, {"length": 16.1155517489, "source": 2214680666, "destination": 2214680848, "path": [[-12456.210723506445, -1214.2505814232152], [-12360.460723506605, -1214.6505814207842]]}, {"length": 211.449788252, "source": 2214680666, "destination": 2214680667, "path": [[-12456.210723506445, -1214.2505814232152], [-12460.510723506957, -2165.0505814214685]]}, {"length": 31.0298061554, "source": 2214680666, "destination": 2080739007, "path": [[-12456.210723506445, -1214.2505814232152], [-12470.860723510668, -1214.2005814226309], [-12524.960723510503, -1223.9505814228835], [-12591.060723508463, -1249.5505814236196], [-12622.160723509523, -1268.4005814236343]]}, {"length": 89.1456344953, "source": 2214680667, "destination": 2214680681, "path": [[-12460.510723506957, -2165.0505814214685], [-12462.310723506675, -2565.9005814233637]]}, {"length": 211.449788252, "source": 2214680667, "destination": 2214680666, "path": [[-12460.510723506957, -2165.0505814214685], [-12456.210723506445, -1214.2505814232152]]}, {"length": 17.1759685641, "source": 2214680667, "destination": 2214680668, "path": [[-12460.510723506957, -2165.0505814214685], [-12358.460723511655, -2165.8005814231274]]}, {"length": 18.6371376841, "source": 2214680667, "destination": 2214680669, "path": [[-12460.510723506957, -2165.0505814214685], [-12489.310723509561, -2164.8505814226837], [-12523.510723511321, -2169.4005814225648], [-12565.760723511232, -2185.350581420664]]}, {"length": 122.083717429, "source": 135043164, "destination": 135043161, "path": [[-449.36072350765244, -703.4505814225156], [-1174.710723510941, -706.1005814215093]]}, {"length": 61.5027750059, "source": 135043164, "destination": 2086776746, "path": [[-449.36072350765244, -703.4505814225156], [-451.11072351033954, -426.9005814236948]]}, {"length": 122.949814811, "source": 135043164, "destination": 135016388, "path": [[-449.36072350765244, -703.4505814225156], [-445.86072350938366, -1256.3005814207884]]}, {"length": 84.6097891159, "source": 2214680669, "destination": 2214680680, "path": [[-12565.760723511232, -2185.350581420664], [-12568.760723510764, -2565.800581422195]]}, {"length": 18.6371376841, "source": 2214680669, "destination": 2214680667, "path": [[-12565.760723511232, -2185.350581420664], [-12523.510723511321, -2169.4005814225648], [-12489.310723509561, -2164.8505814226837], [-12460.510723506957, -2165.0505814214685]]}, {"length": 20.2101013042, "source": 2214680669, "destination": 2214680670, "path": [[-12565.760723511232, -2185.350581420664], [-12673.16072350866, -2226.000581423193]]}, {"length": 20.1074948411, "source": 2214680670, "destination": 2214680671, "path": [[-12673.16072350866, -2226.000581423193], [-12780.010723510315, -2266.450581423385]]}, {"length": 20.2101013042, "source": 2214680670, "destination": 2214680669, "path": [[-12673.16072350866, -2226.000581423193], [-12565.760723511232, -2185.350581420664]]}, {"length": 75.5349635412, "source": 2214680670, "destination": 2214680679, "path": [[-12673.16072350866, -2226.000581423193], [-12672.110723507047, -2565.650581423995]]}, {"length": 19.4187585071, "source": 2214680671, "destination": 2214680672, "path": [[-12780.010723510315, -2266.450581423385], [-12877.610723506905, -2303.350581421171], [-12883.210723508399, -2305.5505814220114]]}, {"length": 20.1074948411, "source": 2214680671, "destination": 2214680670, "path": [[-12780.010723510315, -2266.450581423385], [-12673.16072350866, -2226.000581423193]]}, {"length": 66.505912311, "source": 2214680671, "destination": 2214680678, "path": [[-12780.010723510315, -2266.450581423385], [-12779.46072350744, -2565.5005814222422]]}, {"length": 19.9542896488, "source": 2214680672, "destination": 2214680673, "path": [[-12883.210723508399, -2305.5505814220114], [-12988.910723507273, -2346.2005814209874]]}, {"length": 57.7773951012, "source": 2214680672, "destination": 2214680677, "path": [[-12883.210723508399, -2305.5505814220114], [-12884.460723505243, -2565.3505814240416]]}, {"length": 19.4187585071, "source": 2214680672, "destination": 2214680671, "path": [[-12883.210723508399, -2305.5505814220114], [-12877.610723506905, -2303.350581421171], [-12780.010723510315, -2266.450581423385]]}, {"length": 59.4884544226, "source": 2960622608, "destination": 2331404988, "path": [[-4726.410723506547, -1265.650581423472], [-5009.960723505457, -1264.7505814236126], [-5079.860723505191, -1264.500581420691]]}, {"length": 118.945406104, "source": 2960622608, "destination": 2189326772, "path": [[-4726.410723506547, -1265.650581423472], [-4727.760723511665, -778.7005814208214], [-4727.910723509865, -730.8005814223861]]}, {"length": 13.2539519583, "source": 2960622608, "destination": 134957822, "path": [[-4726.410723506547, -1265.650581423472], [-4647.660723506419, -1265.3505814235189]]}, {"length": 19.4212000821, "source": 2214680674, "destination": 2214680673, "path": [[-13091.76072350482, -2385.800581421904], [-12988.910723507273, -2346.2005814209874]]}, {"length": 12.5996165238, "source": 2214680674, "destination": 2214670018, "path": [[-13091.76072350482, -2385.800581421904], [-13158.510723506823, -2411.4505814232243]]}, {"length": 57.9144785471, "source": 2214680674, "destination": 2214680676, "path": [[-13091.76072350482, -2385.800581421904], [-13096.060723505332, -2565.1005814211203], [-12988.910723507273, -2565.2505814228734]]}, {"length": 48.7144590639, "source": 2214680676, "destination": 2214680673, "path": [[-12988.910723507273, -2565.2505814228734], [-12988.910723507273, -2346.2005814209874]]}, {"length": 57.9144785471, "source": 2214680676, "destination": 2214680674, "path": [[-12988.910723507273, -2565.2505814228734], [-13096.060723505332, -2565.1005814211203], [-13091.76072350482, -2385.800581421904]]}, {"length": 17.5792121838, "source": 2214680676, "destination": 2214680677, "path": [[-12988.910723507273, -2565.2505814228734], [-12884.460723505243, -2565.3505814240416]]}, {"length": 57.7773951012, "source": 2214680677, "destination": 2214680672, "path": [[-12884.460723505243, -2565.3505814240416], [-12883.210723508399, -2305.5505814220114]]}, {"length": 17.5792121838, "source": 2214680677, "destination": 2214680676, "path": [[-12884.460723505243, -2565.3505814240416], [-12988.910723507273, -2565.2505814228734]]}, {"length": 17.6717659427, "source": 2214680677, "destination": 2214680678, "path": [[-12884.460723505243, -2565.3505814240416], [-12779.46072350744, -2565.5005814222422]]}, {"length": 18.0671879935, "source": 2214680678, "destination": 2214680679, "path": [[-12779.46072350744, -2565.5005814222422], [-12672.110723507047, -2565.650581423995]]}, {"length": 17.6717659427, "source": 2214680678, "destination": 2214680677, "path": [[-12779.46072350744, -2565.5005814222422], [-12884.460723505243, -2565.3505814240416]]}, {"length": 66.505912311, "source": 2214680678, "destination": 2214680671, "path": [[-12779.46072350744, -2565.5005814222422], [-12780.010723510315, -2266.450581423385]]}, {"length": 17.3936635271, "source": 2214680679, "destination": 2214680680, "path": [[-12672.110723507047, -2565.650581423995], [-12568.760723510764, -2565.800581422195]]}, {"length": 18.0671879935, "source": 2214680679, "destination": 2214680678, "path": [[-12672.110723507047, -2565.650581423995], [-12779.46072350744, -2565.5005814222422]]}, {"length": 75.5349635412, "source": 2214680679, "destination": 2214680670, "path": [[-12672.110723507047, -2565.650581423995], [-12673.16072350866, -2226.000581423193]]}, {"length": 17.9154001858, "source": 2214680680, "destination": 2214680681, "path": [[-12568.760723510764, -2565.800581422195], [-12462.310723506675, -2565.9005814233637]]}, {"length": 84.6097891159, "source": 2214680680, "destination": 2214680669, "path": [[-12568.760723510764, -2565.800581422195], [-12565.760723511232, -2185.350581420664]]}, {"length": 17.3936635271, "source": 2214680680, "destination": 2214680679, "path": [[-12568.760723510764, -2565.800581422195], [-12672.110723507047, -2565.650581423995]]}, {"length": 17.9154001858, "source": 2214680681, "destination": 2214680680, "path": [[-12462.310723506675, -2565.9005814233637], [-12568.760723510764, -2565.800581422195]]}, {"length": 89.1456344953, "source": 2214680681, "destination": 2214680667, "path": [[-12462.310723506675, -2565.9005814233637], [-12460.510723506957, -2165.0505814214685]]}, {"length": 106.153682825, "source": 2214680681, "destination": 2214680668, "path": [[-12462.310723506675, -2565.9005814233637], [-12360.86072351128, -2566.350581421517], [-12358.460723511655, -2165.8005814231274]]}, {"length": 121.940599098, "source": 135043178, "destination": 2573122333, "path": [[2478.3392764931023, -692.8005814224036], [1753.8392764890887, -695.4005814208131]]}, {"length": 59.0059415081, "source": 135043178, "destination": 2086715230, "path": [[2478.3392764931023, -692.8005814224036], [2486.7392764917895, -958.0505814206219]]}, {"length": 61.5913690731, "source": 135043180, "destination": 1429422305, "path": [[3200.339276489217, -692.1005814213288], [3199.089276492373, -415.1505814213863]]}, {"length": 121.518539747, "source": 135043180, "destination": 135043178, "path": [[3200.339276489217, -692.1005814213288], [2478.3392764931023, -692.8005814224036]]}, {"length": 123.015624359, "source": 135043180, "destination": 135016405, "path": [[3200.339276489217, -692.1005814213288], [3202.3892764883044, -1245.2505814231074]]}, {"length": 134.254837248, "source": 135010413, "destination": 135074779, "path": [[4641.4392764901895, -134.70058142317498], [5364.839276488454, -132.05058142062853], [5439.089276492837, -131.80058142125972]]}, {"length": 60.6555438869, "source": 135010413, "destination": 2086723436, "path": [[4641.4392764901895, -134.70058142317498], [4664.989276491838, -73.55058142266557], [4664.3392764949, 135.49941857604608]]}, {"length": 61.4593832832, "source": 135010413, "destination": 1429422302, "path": [[4641.4392764901895, -134.70058142317498], [4638.639276492995, -411.05058142321127]]}, {"length": 109.911780925, "source": 1394286587, "destination": 134962288, "path": [[8425.589276491508, -11411.200581420644], [9078.83927649067, -11410.600581420738]]}, {"length": 119.728264911, "source": 135010416, "destination": 1942240487, "path": [[4638.339276489489, -685.1005814212385], [4636.0892764951695, -770.8505814214561], [4619.2392764936585, -823.0505814239564], [4569.4892764913675, -870.4005814230698], [4543.8392764936, -901.400581422962], [4526.989276492088, -953.0005814220033], [4530.189276493957, -1005.2005814209508], [4563.089276494737, -1060.4505814235665], [4589.539276494747, -1128.5005814229976], [4595.489276489672, -1193.20058142236]]}, {"length": 60.9460334749, "source": 135010416, "destination": 1429422302, "path": [[4638.339276489489, -685.1005814212385], [4638.639276492995, -411.05058142321127]]}, {"length": 107.398944482, "source": 135010416, "destination": 2080617391, "path": [[4638.339276489489, -685.1005814212385], [4276.839276492694, -687.1005814232944], [4000.2392764932893, -687.5505814214478]]}, {"length": 23.2620868639, "source": 135043185, "destination": 1942240578, "path": [[5442.489276489937, -681.3005814230166], [5442.489276489937, -785.9005814232489]]}, {"length": 122.27020063, "source": 135043185, "destination": 135074779, "path": [[5442.489276489937, -681.3005814230166], [5439.939276492112, -640.7505814216563], [5443.0892764898435, -585.0505814208873], [5441.939276494168, -291.0005814236172], [5437.789276491856, -264.05058142131566], [5437.339276490149, -182.9505814221477], [5439.089276492837, -131.80058142125972]]}, {"length": 12.4803088146, "source": 135043185, "destination": 4719616940, "path": [[5442.489276489937, -681.3005814230166], [5368.339276493827, -681.6005814229698]]}, {"length": 59.1870002018, "source": 1932195954, "destination": 1996284775, "path": [[1621.2892764926323, -5300.300581421169], [1572.2892764884477, -5303.600581420653], [1379.0892764902196, -5305.750581420909], [1380.3892764912007, -5388.4505814210115]]}, {"length": 36.7099492927, "source": 1932195954, "destination": 1932195902, "path": [[1621.2892764926323, -5300.300581421169], [1617.9392764925637, -5135.250581421502]]}, {"length": 18.6629634742, "source": 1932195954, "destination": 1932195999, "path": [[1621.2892764926323, -5300.300581421169], [1634.7392764899382, -5383.600581421178]]}, {"length": 9.20628979678, "source": 135043187, "destination": 3009784217, "path": [[6090.339276489942, -678.6005814234386], [6035.639276490201, -678.8505814228074]]}, {"length": 60.9577888492, "source": 135043187, "destination": 2086854556, "path": [[6090.339276489942, -678.6005814234386], [6088.639276491393, -404.5005814212743]]}, {"length": 61.4244717608, "source": 135043187, "destination": 2086854574, "path": [[6090.339276489942, -678.6005814234386], [6091.489276492723, -954.800581421722]]}, {"length": 61.6026355417, "source": 135043189, "destination": 2086854466, "path": [[6812.8392764919, -675.6005814239074], [6814.439276489282, -952.6005814208816]]}, {"length": 60.7463633426, "source": 135043189, "destination": 2086854507, "path": [[6812.8392764919, -675.6005814239074], [6811.339276488581, -402.4505814221868]]}, {"length": 121.60450665, "source": 135043189, "destination": 135043187, "path": [[6812.8392764919, -675.6005814239074], [6090.339276489942, -678.6005814234386]]}, {"length": 47.8252256552, "source": 2091809130, "destination": 2290110626, "path": [[-8589.81072350673, 6212.249418577898], [-8590.610723508973, 6427.299418579224]]}, {"length": 110.157137259, "source": 2091809130, "destination": 2291095796, "path": [[-8589.81072350673, 6212.249418577898], [-9244.16072351164, 6215.099418579229]]}, {"length": 10.9097293778, "source": 2091809130, "destination": 2289072869, "path": [[-8589.81072350673, 6212.249418577898], [-8525.010723509751, 6212.999418576004]]}, {"length": 47.4810051386, "source": 2091809130, "destination": 2139774710, "path": [[-8589.81072350673, 6212.249418577898], [-8588.26072350638, 5998.749418576921]]}, {"length": 16.5460229887, "source": 1806083093, "destination": 1806083082, "path": [[-8653.66072351037, 5924.299418577306], [-8653.860723505602, 5998.699418576336]]}, {"length": 16.3128799088, "source": 1806083093, "destination": 1806083095, "path": [[-8653.66072351037, 5924.299418577306], [-8653.010723506326, 5850.949418576334]]}, {"length": 10.9591844335, "source": 1806083093, "destination": 134982238, "path": [[-8653.66072351037, 5924.299418577306], [-8588.560723509887, 5924.34941857789]]}, {"length": 110.667923462, "source": 1806083093, "destination": 134958927, "path": [[-8653.66072351037, 5924.299418577306], [-9311.06072350474, 5923.749418577983]]}, {"length": 9.80550205035, "source": 1932195971, "destination": 2139769721, "path": [[182.2892764948847, -5339.050581422811], [232.03927649007028, -5362.000581421]]}, {"length": 180.325961756, "source": 1932195971, "destination": 135046515, "path": [[182.2892764948847, -5339.050581422811], [194.98927649408415, -5302.950581423715], [202.58927649052794, -5266.850581421068], [205.88927649356492, -5228.100581422978], [209.2892764906651, -4811.800581421721], [207.589276492115, -4530.000581421945]]}, {"length": 29.8754359078, "source": 1932195971, "destination": 1932196037, "path": [[182.2892764948847, -5339.050581422811], [167.18927648895487, -5371.850581422422], [145.33927649296174, -5406.450581421751], [123.03927649526258, -5435.000581421435], [102.38927649197649, -5458.350581420746]]}, {"length": 11.167328762, "source": 135043204, "destination": 2282822761, "path": [[-9278.260723505127, -733.3005814231797], [-9211.910723507799, -733.0005814232265]]}, {"length": 273.431949304, "source": 135043204, "destination": 135016502, "path": [[-9278.260723505127, -733.3005814231797], [-9275.410723510902, -1282.3005814226462], [-9270.910723508052, -1325.7505814223691], [-9260.610723508478, -1353.700581422146], [-9238.260723506643, -1377.1005814220416], [-9200.310723507244, -1393.9005814229688], [-9161.560723505601, -1398.5005814234341], [-9114.61072350761, -1397.6005814235748], [-9085.610723509773, -1391.350581421591], [-9057.160723507706, -1378.2005814206855], [-9024.960723508002, -1357.9005814214895], [-9001.76072350689, -1327.7005814238407], [-8982.460723508722, -1300.700581420955], [-8954.110723507823, -1285.100581423393], [-8808.260723505156, -1284.400581422318], [-8675.060723511762, -1282.1005814238617], [-8546.410723511144, -1279.6505814236525]]}, {"length": 122.405701297, "source": 135043204, "destination": 135045975, "path": [[-9278.260723505127, -733.3005814231797], [-9279.31072350674, -627.3005814207977], [-9279.060723507371, -491.00058142315106], [-9276.21072350604, -182.9005814215634]]}, {"length": 62.9373227949, "source": 2086854396, "destination": 135085736, "path": [[7195.789276494224, -2321.100581422542], [6821.839276490493, -2323.100581421045]]}, {"length": 58.6613401893, "source": 2086854396, "destination": 135016282, "path": [[7195.789276494224, -2321.100581422542], [7544.339276492451, -2320.1005814215137]]}, {"length": 121.992510437, "source": 2086854396, "destination": 2086854461, "path": [[7195.789276494224, -2321.100581422542], [7193.889276493337, -1772.5505814212283]]}, {"length": 111.589967652, "source": 135043207, "destination": 2282822761, "path": [[-8548.910723504832, -730.1005814213113], [-9211.910723507799, -733.0005814232265]]}, {"length": 122.215201401, "source": 135043207, "destination": 135016502, "path": [[-8548.910723504832, -730.1005814213113], [-8546.410723511144, -1279.6505814236525]]}, {"length": 55.0307871778, "source": 135043207, "destination": 2282034558, "path": [[-8548.910723504832, -730.1005814213113], [-8550.060723507613, -482.6505814214954]]}, {"length": 15.2736919389, "source": 4720007304, "destination": 4720007032, "path": [[2229.8892764922584, -1246.9505814216575], [2320.6392764905104, -1246.6505814217044]]}, {"length": 79.5334578726, "source": 4720007304, "destination": 135016394, "path": [[2229.8892764922584, -1246.9505814216575], [1757.3392764944629, -1248.600581423176]]}, {"length": 28.2101410765, "source": 4720007304, "destination": 4720007031, "path": [[2229.8892764922584, -1246.9505814216575], [2229.4892764946894, -1304.400581421561], [2321.189276493385, -1304.400581421561]]}, {"length": 83.2794765063, "source": 1806083095, "destination": 2289072992, "path": [[-8653.010723506326, 5850.949418576334], [-8770.310723505758, 5849.999418579444], [-9007.110723509015, 5849.649418578906], [-9147.710723510727, 5849.499418577153]]}, {"length": 16.3128799088, "source": 1806083095, "destination": 1806083093, "path": [[-8653.010723506326, 5850.949418576334], [-8653.66072351037, 5924.299418577306]]}, {"length": 10.9846489747, "source": 1806083095, "destination": 2292321463, "path": [[-8653.010723506326, 5850.949418576334], [-8587.760723507643, 5851.349418577456]]}, {"length": 12.5996165238, "source": 2214670018, "destination": 2214680674, "path": [[-13158.510723506823, -2411.4505814232243], [-13091.76072350482, -2385.800581421904]]}, {"length": 11.3637355295, "source": 2568599698, "destination": 2568599704, "path": [[705.9392764929839, -2299.700581421149], [649.5892764917244, -2271.550581422588]]}, {"length": 13.8221555235, "source": 2568599698, "destination": 2568599683, "path": [[705.9392764929839, -2299.700581421149], [706.789276492259, -2361.8505814226864]]}, {"length": 30.9436682038, "source": 2568599698, "destination": 2568679359, "path": [[705.9392764929839, -2299.700581421149], [762.8392764900127, -2322.7505814205074], [780.5892764949363, -2331.0005814209944], [792.8892764894613, -2341.350581421153], [809.2392764922351, -2355.80058142304], [826.8892764888847, -2383.000581421157], [826.8392764918531, -2394.30058142176]]}, {"length": 29.7719043843, "source": 1932195990, "destination": 3758384282, "path": [[1734.6892764891209, -5380.100581422908], [1743.1892764889767, -5378.800581421928], [1757.489276492663, -5374.000581422678], [1769.839276491325, -5366.800581423803], [1776.9892764931683, -5356.250581421307], [1779.189276490456, -5343.850581422061], [1778.6392764946868, -5264.500581422027]]}, {"length": 25.6112635555, "source": 1932195990, "destination": 3009796733, "path": [[1734.6892764891209, -5380.100581422908], [1732.6892764941704, -5276.45058142312], [1732.5392764888647, -5264.950581423733]]}, {"length": 120.898524617, "source": 1932195990, "destination": 3009796734, "path": [[1734.6892764891209, -5380.100581422908], [1735.0892764937953, -5402.200581421823], [1735.8892764889333, -5513.800581422146], [1733.4892764893084, -5532.750581423329], [1729.939276494008, -5540.250581422157], [1711.6392764933153, -5569.45058142233], [1701.88927648951, -5585.150581421061], [1657.189276492943, -5657.250581421636], [1606.6892764925456, -5737.550581422112], [1554.2392764942292, -5824.500581422143], [1515.4392764884506, -5887.050581421249]]}, {"length": 16.8676465707, "source": 1932195990, "destination": 1932195999, "path": [[1734.6892764891209, -5380.100581422908], [1725.2892764929584, -5381.55058142209], [1705.0392764943467, -5383.050581421856], [1634.7392764899382, -5383.600581421178]]}, {"length": 17.0471894482, "source": 1277679767, "destination": 1429422909, "path": [[4479.489276491222, -3252.9505814231643], [4578.1392764894235, -3270.3505814239975]]}, {"length": 348.403658418, "source": 1277679767, "destination": 1429422711, "path": [[4479.489276491222, -3252.9505814231643], [4537.239276494631, -3166.6005814230402], [4568.939276488492, -3105.5505814236994], [4593.289276492385, -3053.8005814229055], [4618.489276488446, -2992.70058142298], [4653.039276490745, -2894.7505814223005], [4674.539276493306, -2802.250581421362], [4686.289276492062, -2723.650581422987], [4688.989276495193, -2630.2505814221886], [4688.989276495193, -2357.750581420959], [4685.139276489281, -2279.100581422], [4676.2892764888875, -2210.0005814209567], [4660.989276494831, -2147.000581423697], [4643.289276494044, -2087.350581422953], [4617.88927648854, -2019.850581422844], [4589.689276492947, -1962.600581421725], [4561.23927649088, -1912.4005814212808], [4492.239276494558, -1817.4505814236852], [4435.889276493299, -1752.8505814219386]]}, {"length": 11.3637355295, "source": 2568599704, "destination": 2568599698, "path": [[649.5892764917244, -2271.550581422588], [705.9392764929839, -2299.700581421149]]}, {"length": 25.9694662944, "source": 2568599704, "destination": 2568599722, "path": [[649.5892764917244, -2271.550581422588], [599.989276494739, -2254.050581420586], [577.8892764922716, -2242.850581421152], [552.3892764927041, -2225.6005814220716], [541.6392764914235, -2217.000581421047], [533.5892764932737, -2210.400581422078], [527.239276493674, -2203.400581421988]]}, {"length": 6.28727772982, "source": 2568599704, "destination": 2568599654, "path": [[649.5892764917244, -2271.550581422588], [612.2392764922324, -2272.150581422494]]}, {"length": 27.9474819988, "source": 2568599704, "destination": 2568599575, "path": [[649.5892764917244, -2271.550581422588], [815.6392764888665, -2270.300581422191]]}, {"length": 59.4011385408, "source": 135016132, "destination": 2086776774, "path": [[-2673.6107235052486, 2055.249418578597], [-2671.9107235066986, 1788.1494185765234]]}, {"length": 64.123947676, "source": 135016132, "destination": 2086776846, "path": [[-2673.6107235052486, 2055.249418578597], [-3054.560723505517, 2057.3494185782693]]}, {"length": 11.0435658697, "source": 2291095710, "destination": 134982240, "path": [[-8656.410723510533, 6486.74941857763], [-8590.810723511311, 6486.8494185787995]]}, {"length": 13.2434077068, "source": 2291095710, "destination": 2291095713, "path": [[-8656.410723510533, 6486.74941857763], [-8656.460723507564, 6427.199418578056]]}, {"length": 99.1887647787, "source": 2291095710, "destination": 2291095711, "path": [[-8656.410723510533, 6486.74941857763], [-9245.610723510821, 6485.94941857894]]}, {"length": 18.6629634742, "source": 1932195999, "destination": 1932195954, "path": [[1634.7392764899382, -5383.600581421178], [1621.2892764926323, -5300.300581421169]]}, {"length": 18.6871427585, "source": 1932195999, "destination": 1932196039, "path": [[1634.7392764899382, -5383.600581421178], [1638.5892764887444, -5407.250581423995], [1643.289276493931, -5467.350581422892]]}, {"length": 16.8676465707, "source": 1932195999, "destination": 1932195990, "path": [[1634.7392764899382, -5383.600581421178], [1705.0392764943467, -5383.050581421856], [1725.2892764929584, -5381.55058142209], [1734.6892764891209, -5380.100581422908]]}, {"length": 42.8167218577, "source": 1932195999, "destination": 1996284775, "path": [[1634.7392764899382, -5383.600581421178], [1380.3892764912007, -5388.4505814210115]]}, {"length": 11.0851111724, "source": 2291095713, "destination": 2290110626, "path": [[-8656.460723507564, 6427.199418578056], [-8618.110723510597, 6427.299418579224], [-8590.610723508973, 6427.299418579224]]}, {"length": 99.0651900008, "source": 2291095713, "destination": 2291095714, "path": [[-8656.460723507564, 6427.199418578056], [-9024.560723510433, 6425.999418578243], [-9161.210723505064, 6425.649418577706], [-9203.810723505512, 6424.799418578431], [-9244.910723509747, 6424.599418576094]]}, {"length": 13.2434077068, "source": 2291095713, "destination": 2291095710, "path": [[-8656.460723507564, 6427.199418578056], [-8656.410723510533, 6486.74941857763]]}, {"length": 23.1190681338, "source": 1933539490, "destination": 3009796695, "path": [[1734.1392764933516, -4622.300581420546], [1732.4892764918332, -4518.350581420805]]}, {"length": 91.9482285655, "source": 1933539490, "destination": 1933539526, "path": [[1734.1392764933516, -4622.300581420546], [1733.4892764893084, -4757.650581421302], [1734.6892764891209, -4903.500581423969], [1735.4892764913643, -5035.750581424026]]}, {"length": 250.393528558, "source": 1933539490, "destination": 1933539479, "path": [[1734.1392764933516, -4622.300581420546], [1629.589276490151, -4622.750581422252], [1309.2392764946226, -4623.000581421621], [1050.9892764929418, -4623.700581422696], [767.2392764916935, -4624.450581420802], [482.88927649053903, -4624.900581422508], [447.5892764901346, -4624.65058142314], [427.2392764903543, -4623.950581422065], [411.2892764922549, -4622.250581423515], [398.2892764895496, -4619.3505814216], [382.989276488388, -4614.100581420644], [305.3892764910415, -4582.3005814220605], [297.1392764905545, -4579.150581420777], [288.23927649312964, -4577.7505814221795], [260.3392764939372, -4577.450581422227]]}, {"length": 39.2524432675, "source": 2086854397, "destination": 135019329, "path": [[8508.689276489178, -3437.1005814222144], [8509.98927649016, -3613.6005814206837]]}, {"length": 8.1279368115, "source": 2086854397, "destination": 2086854532, "path": [[8508.689276489178, -3437.1005814222144], [8508.389276492779, -3400.550581421413]]}, {"length": 102.997812463, "source": 2086854397, "destination": 2086854567, "path": [[8508.689276489178, -3437.1005814222144], [9120.639276488873, -3430.600581420862]]}, {"length": 15.783283191, "source": 1932196008, "destination": 2139769721, "path": [[309.68927649155376, -5401.800581420702], [247.4892764894321, -5370.050581422703], [232.03927649007028, -5362.000581421]]}, {"length": 111.374944092, "source": 1932196008, "destination": 1932196077, "path": [[309.68927649155376, -5401.800581420702], [328.43927649395255, -5381.55058142209], [533.5892764932737, -5491.250581421526], [817.4392764885852, -5639.30058142148], [850.6392764928705, -5638.950581420942]]}, {"length": 132.794648974, "source": 1932196008, "destination": 1932196095, "path": [[309.68927649155376, -5401.800581420702], [292.98927648824247, -5419.800581421441], [267.13927649524294, -5450.450581420796], [607.78927649352, -5628.650581421369], [783.189276489793, -5722.650581422073], [852.3892764884522, -5757.250581421403]]}, {"length": 25.9694662944, "source": 2568599722, "destination": 2568599704, "path": [[527.239276493674, -2203.400581421988], [533.5892764932737, -2210.400581422078], [541.6392764914235, -2217.000581421047], [552.3892764927041, -2225.6005814220716], [577.8892764922716, -2242.850581421152], [599.989276494739, -2254.050581420586], [649.5892764917244, -2271.550581422588]]}, {"length": 19.1236358882, "source": 2568599722, "destination": 2568599553, "path": [[527.239276493674, -2203.400581421988], [500.539276494294, -2240.150581421574], [464.33927649047746, -2274.650581423288]]}, {"length": 53.3394719569, "source": 2568599722, "destination": 2568599572, "path": [[527.239276493674, -2203.400581421988], [530.0392764908679, -2199.550581423182], [578.3392764939776, -2134.600581420898], [615.8892764887014, -2094.000581422506], [650.7392764945052, -2057.4505814217046], [688.289276489229, -2022.9505814235438], [707.0892764886594, -2006.7005814219385]]}, {"length": 52.6575849524, "source": 2568599722, "destination": 2568599766, "path": [[527.239276493674, -2203.400581421988], [510.7892764897315, -2184.0005814226515], [498.7392764945753, -2164.7005814209306], [483.9892764891829, -2138.8505814208256], [461.8392764896839, -2096.200581423346], [445.08927648934105, -2065.750581422776], [434.3892764921975, -2042.4005814234647], [426.03927649054185, -2021.1005814232408], [415.3892764904299, -2001.0005814228293], [406.6892764882368, -1985.5005814228832]]}, {"length": 106.192102585, "source": 135107417, "destination": 135110872, "path": [[5834.839276488424, -2211.6005814218906], [5832.339276494736, -1734.1005814230925]]}, {"length": 106.192145021, "source": 135107417, "destination": 135047193, "path": [[5834.839276488424, -2211.6005814218906], [5837.339276489218, -2689.100581420689]]}, {"length": 45.0044016688, "source": 135107417, "destination": 2086854412, "path": [[5834.839276488424, -2211.6005814218906], [6102.239276494003, -2210.350581421494]]}, {"length": 13.7554856373, "source": 135018866, "destination": 4224950641, "path": [[5511.489276493365, 2644.299418577134], [5512.339276492639, 2582.4494185791027]]}, {"length": 11.7539880119, "source": 135018866, "destination": 4224950604, "path": [[5511.489276493365, 2644.299418577134], [5510.93927649049, 2697.1494185765723]]}, {"length": 7.53227553791, "source": 135018866, "destination": 4224950804, "path": [[5511.489276493365, 2644.299418577134], [5556.239276494069, 2644.449418578887]]}, {"length": 12.0588512038, "source": 2355676189, "destination": 2358476145, "path": [[-1862.110723507726, 5330.949418578257], [-1861.66072350602, 5349.89941857944], [-1859.96072350747, 5385.14941857926]]}, {"length": 96.7530859194, "source": 2355676189, "destination": 2354509530, "path": [[-1862.110723507726, 5330.949418578257], [-1287.3607235093232, 5332.199418578653]]}, {"length": 48.8384606412, "source": 2355676189, "destination": 2358476300, "path": [[-1862.110723507726, 5330.949418578257], [-1862.5107235052951, 5312.249418576443], [-1861.8607235083573, 5182.899418578301], [-1862.0107235065575, 5111.349418577049]]}, {"length": 16.0713097114, "source": 2355676189, "destination": 2358476149, "path": [[-1862.110723507726, 5330.949418578257], [-1957.5607235111647, 5329.549418576107]]}, {"length": 41.5980119444, "source": 134956062, "destination": 1429423034, "path": [[2580.5392764937096, -4467.050581421717], [2627.9392764934073, -4477.800581422997], [2674.2892764914927, -4493.300581422944], [2720.089276493809, -4513.850581421508], [2794.339276491087, -4557.2005814236145]]}, {"length": 17.5930494447, "source": 3278420155, "destination": 3278420156, "path": [[-2331.9107235053593, -3854.2005814221625], [-2227.4107235062957, -3856.400581423003]]}, {"length": 60.992450309, "source": 3278420155, "destination": 3278420166, "path": [[-2331.9107235053593, -3854.2005814221625], [-2334.860723507859, -4128.450581422527]]}, {"length": 112.500448761, "source": 3278420155, "destination": 3278420166, "path": [[-2331.9107235053593, -3854.2005814221625], [-2331.9107235053593, -3803.950581421134], [-2343.6607235112206, -3792.8505814228683], [-2429.6107235102227, -3794.350581422634], [-2440.3607235115032, -3809.85058142258], [-2440.3607235115032, -4067.100581423233], [-2419.8107235093858, -4086.300581423785], [-2334.860723507859, -4128.450581422527]]}, {"length": 72.3496443918, "source": 3278420156, "destination": 3278420168, "path": [[-2227.4107235062957, -3856.400581423003], [-2233.010723507789, -4181.700581423087]]}, {"length": 17.5930494447, "source": 3278420156, "destination": 3278420155, "path": [[-2227.4107235062957, -3856.400581423003], [-2331.9107235053593, -3854.2005814221625]]}, {"length": 19.2517727331, "source": 3278420156, "destination": 3278420157, "path": [[-2227.4107235062957, -3856.400581423003], [-2113.0607235093635, -3858.850581423212]]}, {"length": 85.0699344568, "source": 3278420157, "destination": 3278420169, "path": [[-2113.0607235093635, -3858.850581423212], [-2118.9107235102256, -4241.350581423831]]}, {"length": 114.394201966, "source": 3278420157, "destination": 3278420171, "path": [[-2113.0607235093635, -3858.850581423212], [-2016.4107235061124, -3860.850581421715], [-2002.7607235064693, -3886.7505814224046], [-2000.8107235085504, -4242.300581420722], [-2006.960723505813, -4299.900581422378]]}, {"length": 19.2517727331, "source": 3278420157, "destination": 3278420156, "path": [[-2113.0607235093635, -3858.850581423212], [-2227.4107235062957, -3856.400581423003]]}, {"length": 13.0438658067, "source": 2568599742, "destination": 2568599489, "path": [[280.1892764949798, -1919.4505814219553], [202.68927649169655, -1920.0005814212773]]}, {"length": 30.8456891943, "source": 2568599742, "destination": 2568599794, "path": [[280.1892764949798, -1919.4505814219553], [279.489276493905, -2058.1505814227794]]}, {"length": 16.1880919073, "source": 2568599742, "destination": 2586992596, "path": [[280.1892764949798, -1919.4505814219553], [345.3392764924956, -1865.9005814214424]]}, {"length": 23.8735714931, "source": 2568599742, "destination": 2568599797, "path": [[280.1892764949798, -1919.4505814219553], [280.68927649371744, -1812.1005814215607]]}, {"length": 12.109268679, "source": 2568599742, "destination": 2586992577, "path": [[280.1892764949798, -1919.4505814219553], [302.13927649214156, -1919.850581423077], [328.63927648918434, -1924.3505814223738], [348.939276491933, -1932.3005814229077]]}, {"length": 5.68741685213, "source": 1933539701, "destination": 1933539699, "path": [[4724.189276494428, -7054.300581422978], [4690.389276490237, -7054.150581421226]]}, {"length": 1328.09310929, "source": 1428268064, "destination": 3085526232, "path": [[-6519.910723511657, -5978.55058142116], [-6455.910723509816, -6008.0005814207025], [-6023.560723505739, -6181.550581423779], [-5545.310723505281, -6505.850581422834], [-5323.560723510923, -6777.450581420652], [-5026.2607235112, -7019.700581423649], [-4555.910723510692, -7228.900581420561], [-4173.110723506568, -7474.1505814230895], [-3500.9607235068074, -7941.350581422313], [-3221.5107235060714, -8149.050581423012], [-2895.4107235108495, -8443.950581423109], [-2809.8607235094164, -8519.200581421415], [-2721.3607235054837, -8556.80058142383], [-2638.860723507719, -8590.6505814215], [-2223.210723506952, -8663.650581421933], [-1934.8607235087911, -8725.350581421764], [-1710.1607235048277, -8807.350581420793], [-1374.0607235064317, -8987.150581422298], [-1206.0107235072337, -9043.55058142059], [-910.7107235095668, -9160.95058142119], [-256.4107235087931, -9416.000581421002]]}, {"length": 127.157111926, "source": 1428268064, "destination": 1428268115, "path": [[-6519.910723511657, -5978.55058142116], [-6541.9607235099875, -6000.500581421875], [-6817.110723510212, -6140.150581423142], [-6899.710723509144, -6188.4505814226995], [-6966.810723511685, -6250.700581421853], [-7012.660723511033, -6288.150581422514], [-7097.610723505454, -6340.8505814237515]]}, {"length": 35.1934646562, "source": 1428268064, "destination": 1959915292, "path": [[-6519.910723511657, -5978.55058142116], [-6560.660723508249, -5956.65058142103], [-6648.7607235075075, -5856.35058142131]]}, {"length": 12.4401645641, "source": 1932196037, "destination": 1429423130, "path": [[102.38927649197649, -5458.350581420746], [164.48927649292955, -5488.7005814237]]}, {"length": 29.8754359078, "source": 1932196037, "destination": 1932195971, "path": [[102.38927649197649, -5458.350581420746], [123.03927649526258, -5435.000581421435], [145.33927649296174, -5406.450581421751], [167.18927648895487, -5371.850581422422], [182.2892764948847, -5339.050581422811]]}, {"length": 14.1616173983, "source": 1932196037, "destination": 1567555174, "path": [[102.38927649197649, -5458.350581420746], [55.539276495153445, -5511.250581420768]]}, {"length": 13.7450332591, "source": 1932196037, "destination": 1932196031, "path": [[102.38927649197649, -5458.350581420746], [54.23927649417237, -5434.550581423281], [34.03927649259231, -5424.500581423075]]}, {"length": 91.9482285655, "source": 1933539526, "destination": 1933539490, "path": [[1735.4892764913643, -5035.750581424026], [1734.6892764891209, -4903.500581423969], [1733.4892764893084, -4757.650581421302], [1734.1392764933516, -4622.300581420546]]}, {"length": 50.983441293, "source": 1933539526, "destination": 3009796733, "path": [[1735.4892764913643, -5035.750581424026], [1731.0892764896835, -5154.6505814208385], [1732.5392764888647, -5264.950581423733]]}, {"length": 248.471660563, "source": 1933539526, "destination": 1933539534, "path": [[1735.4892764913643, -5035.750581424026], [935.9892764919664, -5042.150581420657], [380.33927648939425, -5046.95058142346], [259.0892764899877, -5047.650581420981]]}, {"length": 44.034283294, "source": 1932196039, "destination": 1932196040, "path": [[1643.289276493931, -5467.350581422892], [1381.6392764951502, -5469.550581423732]]}, {"length": 19.6114636708, "source": 1932196039, "destination": 1932196066, "path": [[1643.289276493931, -5467.350581422892], [1646.5892764898626, -5555.500581422734]]}, {"length": 18.6871427585, "source": 1932196039, "destination": 1932195999, "path": [[1643.289276493931, -5467.350581422892], [1638.5892764887444, -5407.250581423995], [1634.7392764899382, -5383.600581421178]]}, {"length": 60.9438382538, "source": 1932196040, "destination": 1932196066, "path": [[1381.6392764951502, -5469.550581423732], [1382.689276489657, -5534.600581423632], [1384.689276491713, -5542.750581422951], [1392.239276491125, -5548.150581422106], [1405.339276494999, -5550.550581421731], [1646.5892764898626, -5555.500581422734]]}, {"length": 44.034283294, "source": 1932196040, "destination": 1932196039, "path": [[1381.6392764951502, -5469.550581423732], [1643.289276493931, -5467.350581422892]]}, {"length": 18.0369825887, "source": 1932196040, "destination": 1996284775, "path": [[1381.6392764951502, -5469.550581423732], [1380.3892764912007, -5388.4505814210115]]}, {"length": 23.3382883552, "source": 3278420169, "destination": 3278420168, "path": [[-2118.9107235102256, -4241.350581423831], [-2233.010723507789, -4181.700581423087]]}, {"length": 22.9016849625, "source": 3278420169, "destination": 3278420171, "path": [[-2118.9107235102256, -4241.350581423831], [-2006.960723505813, -4299.900581422378]]}, {"length": 85.0699344568, "source": 3278420169, "destination": 3278420157, "path": [[-2118.9107235102256, -4241.350581423831], [-2113.0607235093635, -3858.850581423212]]}, {"length": 22.9016849625, "source": 3278420171, "destination": 3278420169, "path": [[-2006.960723505813, -4299.900581422378], [-2118.9107235102256, -4241.350581423831]]}, {"length": 114.394201966, "source": 3278420171, "destination": 3278420157, "path": [[-2006.960723505813, -4299.900581422378], [-2000.8107235085504, -4242.300581420722], [-2002.7607235064693, -3886.7505814224046], [-2016.4107235061124, -3860.850581421715], [-2113.0607235093635, -3858.850581423212]]}, {"length": 16.6082043409, "source": 3278420171, "destination": 3278420174, "path": [[-2006.960723505813, -4299.900581422378], [-2009.6107235048066, -4324.300581423302], [-2042.9607235072922, -4367.70058142244]]}, {"length": 219.174614917, "source": 134951970, "destination": 1393210002, "path": [[-4827.560723505541, -11266.75058142368], [-5091.660723508085, -11223.100581421619], [-5474.010723510502, -11157.600581423565], [-6099.8607235092095, -11055.350581422374]]}, {"length": 70.4284437421, "source": 1933539534, "destination": 2139769721, "path": [[259.0892764899877, -5047.650581420981], [259.5892764887253, -5115.200581421675], [259.5892764887253, -5153.500581421611], [259.88927649223115, -5175.150581422372], [261.1892764932122, -5189.100581421968], [260.8392764926748, -5205.700581420559], [259.5892764887253, -5230.500581422603], [257.68927649494344, -5267.800581421511], [251.93927649524994, -5304.6505814222655], [246.23927649258803, -5325.100581423214], [240.48927649289453, -5342.4505814234635], [232.03927649007028, -5362.000581421]]}, {"length": 248.471660563, "source": 1933539534, "destination": 1933539526, "path": [[259.0892764899877, -5047.650581420981], [380.33927648939425, -5046.95058142346], [935.9892764919664, -5042.150581420657], [1735.4892764913643, -5035.750581424026]]}, {"length": 104.568987737, "source": 1933539534, "destination": 1933539479, "path": [[259.0892764899877, -5047.650581420981], [258.9392764917875, -5030.00058142078], [258.9392764917875, -4914.450581424035], [259.5892764887253, -4852.350581423081], [258.63927648828167, -4811.450581421184], [259.2892764923249, -4732.750581421641], [259.5892764887253, -4642.000581423389], [259.88927649223115, -4591.950581421144], [260.3392764939372, -4577.450581422227]]}, {"length": 435.146267403, "source": 3278420176, "destination": 1567555174, "path": [[-2072.510723508003, -4400.550581422635], [-2055.9607235099975, -4408.9005814207385], [-1579.5607235062903, -4675.950581422228], [-791.710723511585, -5089.050581421617], [-373.76072350525646, -5300.000581421216], [55.539276495153445, -5511.250581420768]]}, {"length": 8.83766781792, "source": 3278420176, "destination": 3278420174, "path": [[-2072.510723508003, -4400.550581422635], [-2042.9607235072922, -4367.70058142244]]}, {"length": 56.7993223725, "source": 4224850296, "destination": 4224850324, "path": [[6547.139276491976, 4344.049418577356], [6545.289276495225, 4599.449418577706]]}, {"length": 31.7422405928, "source": 2568599763, "destination": 2568599769, "path": [[896.2392764928495, -1983.5505814214116], [707.639276491534, -1984.350581423655]]}, {"length": 33.565455765, "source": 2568599763, "destination": 2568599581, "path": [[896.2392764928495, -1983.5505814214116], [896.1892764887125, -2120.4005814219327], [886.78927649255, -2132.5505814218104]]}, {"length": 6.74858606735, "source": 2568599766, "destination": 2568599785, "path": [[406.6892764882368, -1985.5005814228832], [400.7892764903431, -1974.9505814239399], [388.0392764941121, -1958.7005814223346]]}, {"length": 52.6575849524, "source": 2568599766, "destination": 2568599722, "path": [[406.6892764882368, -1985.5005814228832], [415.3892764904299, -2001.0005814228293], [426.03927649054185, -2021.1005814232408], [434.3892764921975, -2042.4005814234647], [445.08927648934105, -2065.750581422776], [461.8392764896839, -2096.200581423346], [483.9892764891829, -2138.8505814208256], [498.7392764945753, -2164.7005814209306], [510.7892764897315, -2184.0005814226515], [527.239276493674, -2203.400581421988]]}, {"length": 45.4251906113, "source": 2568599766, "destination": 2586992557, "path": [[406.6892764882368, -1985.5005814228832], [676.5892764946102, -1984.450581421271]]}, {"length": 10.3196168383, "source": 2568624505, "destination": 2568624498, "path": [[447.08927649139696, -3345.9005814222564], [399.5392764934991, -3316.6005814209143]]}, {"length": 12.6332732111, "source": 2568624505, "destination": 2568624508, "path": [[447.08927649139696, -3345.9005814222564], [460.7892764951771, -3330.9005814210477], [463.4892764912024, -3319.700581421614], [455.6892764924214, -3293.150581423987]]}, {"length": 6.20938690496, "source": 2568624505, "destination": 2568624490, "path": [[447.08927649139696, -3345.9005814222564], [475.73927648869585, -3363.5005814218744]]}, {"length": 11.9164086078, "source": 2568624505, "destination": 2568624495, "path": [[447.08927649139696, -3345.9005814222564], [428.589276488367, -3359.3005814225307], [411.1892764910863, -3363.350581423674], [384.3392764935061, -3365.4005814227617]]}, {"length": 779.943270275, "source": 135010520, "destination": 135023040, "path": [[-8358.160723510366, -4883.600581422343], [-8513.660723508565, -4653.100581421654], [-9058.660723511024, -3856.0505814224653], [-9219.41072351018, -3616.2505814232304], [-9339.160723506267, -3429.6005814233868], [-9408.160723509696, -3333.1005814218884], [-9998.010723506923, -2455.6005814240225], [-10289.160723509383, -2037.6505814212464], [-10481.360723510135, -1766.4005814239658]]}, {"length": 377.697464608, "source": 135010520, "destination": 134968426, "path": [[-8358.160723510366, -4883.600581422343], [-8163.660723511157, -5173.100581423285], [-8021.160723508558, -5362.100581422169], [-7851.160723511441, -5571.600581422586], [-7678.160723507688, -5769.100581421327], [-7496.660723511184, -5961.600581422033], [-7307.160723506457, -6149.600581423442], [-7138.960723509058, -6304.250581422366]]}, {"length": 170.292199452, "source": 135010520, "destination": 134982563, "path": [[-8358.160723510366, -4883.600581422343], [-8131.96072351019, -4826.450581422392], [-7501.810723510971, -4671.5005814235155], [-7396.160723509127, -4646.100581421564]]}, {"length": 31.7422405928, "source": 2568599769, "destination": 2568599763, "path": [[707.639276491534, -1984.350581423655], [896.2392764928495, -1983.5505814214116]]}, {"length": 4.97120939356, "source": 2568599769, "destination": 2568599572, "path": [[707.639276491534, -1984.350581423655], [707.0892764886594, -2006.7005814219385]]}, {"length": 5.22576222943, "source": 2568599769, "destination": 2586992557, "path": [[707.639276491534, -1984.350581423655], [676.5892764946102, -1984.450581421271]]}, {"length": 336.641607115, "source": 2184804575, "destination": 1959915348, "path": [[-4208.91072350571, -2586.9005814236343], [-4216.710723511596, -2606.400581420587], [-4223.4107235117335, -2619.1005814233395], [-4408.710723510012, -2871.6005814217738], [-4883.2107235057265, -3525.9005814225475], [-5164.210723506812, -3916.2505814225315]]}, {"length": 16.8270013927, "source": 2184804575, "destination": 4719463893, "path": [[-4208.91072350571, -2586.9005814236343], [-4198.860723505504, -2543.100581423374], [-4199.710723504779, -2511.900581421145]]}, {"length": 7.06854335831, "source": 2184804575, "destination": 1667926869, "path": [[-4208.91072350571, -2586.9005814236343], [-4184.060723510185, -2587.9005814211096], [-4168.360723511455, -2593.0505814208973]]}, {"length": 19.2194710736, "source": 2184804575, "destination": 2184804581, "path": [[-4208.91072350571, -2586.9005814236343], [-4239.060723506327, -2592.0005814228375], [-4258.5107235098, -2597.5505814237467], [-4277.7107235068, -2606.400581420587], [-4293.360723508499, -2615.300581421565], [-4312.560723505499, -2620.600581423105]]}, {"length": 60.9438382538, "source": 1932196066, "destination": 1932196040, "path": [[1646.5892764898626, -5555.500581422734], [1405.339276494999, -5550.550581421731], [1392.239276491125, -5548.150581422106], [1384.689276491713, -5542.750581422951], [1382.689276489657, -5534.600581423632], [1381.6392764951502, -5469.550581423732]]}, {"length": 20.8223289938, "source": 1932196066, "destination": 1932196079, "path": [[1646.5892764898626, -5555.500581422734], [1644.8892764913126, -5568.700581420671], [1640.389276488463, -5578.90058142263], [1608.9392764939703, -5624.850581423147], [1600.1892764947456, -5641.450581421736]]}, {"length": 19.6114636708, "source": 1932196066, "destination": 1932196039, "path": [[1646.5892764898626, -5555.500581422734], [1643.289276493931, -5467.350581422892]]}, {"length": 14.773368653, "source": 2080708609, "destination": 2080708615, "path": [[-9298.810723507246, -11354.200581422447], [-9378.06072350611, -11325.600581422179]]}, {"length": 19.2194710736, "source": 2184804581, "destination": 2184804575, "path": [[-4312.560723505499, -2620.600581423105], [-4293.360723508499, -2615.300581421565], [-4277.7107235068, -2606.400581420587], [-4258.5107235098, -2597.5505814237467], [-4239.060723506327, -2592.0005814228375], [-4208.91072350571, -2586.9005814236343]]}, {"length": 8.95357199492, "source": 2568599785, "destination": 2586992577, "path": [[388.0392764941121, -1958.7005814223346], [364.3892764912948, -1938.3505814225543], [348.939276491933, -1932.3005814229077]]}, {"length": 28.6863710592, "source": 2568599785, "destination": 2568599794, "path": [[388.0392764941121, -1958.7005814223346], [279.489276493905, -2058.1505814227794]]}, {"length": 6.74858606735, "source": 2568599785, "destination": 2568599766, "path": [[388.0392764941121, -1958.7005814223346], [400.7892764903431, -1974.9505814239399], [406.6892764882368, -1985.5005814228832]]}, {"length": 4.30048076531, "source": 2568599785, "destination": 2586992598, "path": [[388.0392764941121, -1958.7005814223346], [407.23927649111147, -1945.9505814225508]]}, {"length": 111.374944092, "source": 1932196077, "destination": 1932196008, "path": [[850.6392764928705, -5638.950581420942], [817.4392764885852, -5639.30058142148], [533.5892764932737, -5491.250581421526], [328.43927649395255, -5381.55058142209], [309.68927649155376, -5401.800581420702]]}, {"length": 18.4817123571, "source": 1932196077, "destination": 1932196091, "path": [[850.6392764928705, -5638.950581420942], [851.839276492683, -5722.050581422167]]}, {"length": 126.584775349, "source": 1932196077, "destination": 1932196079, "path": [[850.6392764928705, -5638.950581420942], [1571.8392764938471, -5632.050581422021], [1600.1892764947456, -5641.450581421736]]}, {"length": 20.8223289938, "source": 1932196079, "destination": 1932196066, "path": [[1600.1892764947456, -5641.450581421736], [1608.9392764939703, -5624.850581423147], [1640.389276488463, -5578.90058142263], [1644.8892764913126, -5568.700581420671], [1646.5892764898626, -5555.500581422734]]}, {"length": 19.6175000328, "source": 1932196079, "destination": 1932196090, "path": [[1600.1892764947456, -5641.450581421736], [1590.3892764939087, -5660.150581423551], [1552.1892764951417, -5721.800581422798]]}, {"length": 126.584775349, "source": 1932196079, "destination": 1932196077, "path": [[1600.1892764947456, -5641.450581421736], [1571.8392764938471, -5632.050581422021], [850.6392764928705, -5638.950581420942]]}, {"length": 50.6252482496, "source": 1933539568, "destination": 135035920, "path": [[7637.639276488528, -5898.050581421899], [7336.839276490537, -5901.600581420752]]}, {"length": 202.781819851, "source": 1933539568, "destination": 1933539604, "path": [[7637.639276488528, -5898.050581421899], [7642.189276488409, -5980.350581420879], [7644.439276489834, -6048.10058142391], [7645.789276494952, -6110.7005814236], [7643.089276491821, -6177.45058142205], [7645.789276494952, -6263.900581423342], [7647.589276494671, -6361.6005814211], [7647.139276492964, -6399.700581422252], [7645.339276493246, -6443.6005814236805], [7642.639276490116, -6479.000581421701], [7643.539276493528, -6501.80058142169], [7648.039276489271, -6544.350581421554], [7649.389276494389, -6653.300581422883], [7647.139276492964, -6699.90058142389], [7645.789276494952, -6736.700581420508], [7646.689276491259, -6772.100581422081], [7648.639276489177, -6809.400581420988]]}, {"length": 48.9883387741, "source": 1933539568, "destination": 135016301, "path": [[7637.639276488528, -5898.050581421899], [7928.739276493957, -5896.3005814227645]]}, {"length": 119.86137834, "source": 134985969, "destination": 134982666, "path": [[957.1392764939901, 3746.949418577117], [759.2892764947123, 3746.249418576042], [434.5892764945347, 3745.0494185762295], [245.08927648980716, 3744.3494185787076]]}, {"length": 122.617186941, "source": 134985969, "destination": 134985972, "path": [[957.1392764939901, 3746.949418577117], [952.6392764911407, 4298.299418579177]]}, {"length": 11.1519840253, "source": 134985969, "destination": 2068853438, "path": [[957.1392764939901, 3746.949418577117], [1023.3892764901498, 3747.1994185764856]]}, {"length": 60.3459372142, "source": 2568599794, "destination": 2568599497, "path": [[279.489276493905, -2058.1505814227794], [278.0892764917553, -2329.500581421229]]}, {"length": 30.8456891943, "source": 2568599794, "destination": 2568599742, "path": [[279.489276493905, -2058.1505814227794], [280.1892764949798, -1919.4505814219553]]}, {"length": 28.6863710592, "source": 2568599794, "destination": 2568599785, "path": [[279.489276493905, -2058.1505814227794], [388.0392764941121, -1958.7005814223346]]}, {"length": 61.091743509, "source": 134985972, "destination": 2069036425, "path": [[952.6392764911407, 4298.299418579177], [950.3892764897159, 4572.999418577694]]}, {"length": 119.694869859, "source": 134985972, "destination": 134982669, "path": [[952.6392764911407, 4298.299418579177], [241.58927649153839, 4295.699418577215]]}, {"length": 11.6843882561, "source": 134985972, "destination": 2068853422, "path": [[952.6392764911407, 4298.299418579177], [1022.0392764921371, 4299.299418576652]]}, {"length": 13.1361276068, "source": 2568599797, "destination": 2586992592, "path": [[280.68927649371744, -1812.1005814215607], [358.73927649276993, -1812.0005814239448]]}, {"length": 16.1722167198, "source": 2568599797, "destination": 2586992596, "path": [[280.68927649371744, -1812.1005814215607], [345.3392764924956, -1865.9005814214424]]}, {"length": 41.1536064305, "source": 2568599797, "destination": 2587199414, "path": [[280.68927649371744, -1812.1005814215607], [281.6392764941611, -1627.050581422651]]}, {"length": 23.8735714931, "source": 2568599797, "destination": 2568599742, "path": [[280.68927649371744, -1812.1005814215607], [280.1892764949798, -1919.4505814219553]]}, {"length": 19.708650575, "source": 2568599797, "destination": 2568599799, "path": [[280.68927649371744, -1812.1005814215607], [163.5892764895175, -1812.600581423851]]}, {"length": 119.20371243, "source": 134985974, "destination": 134982675, "path": [[939.1392764896977, 5959.399418578925], [231.03927649259504, 5957.39941857687]]}, {"length": 65.061946671, "source": 134985974, "destination": 2069036751, "path": [[939.1392764896977, 5959.399418578925], [936.3392764925038, 6251.949418576431]]}, {"length": 19.708650575, "source": 2568599799, "destination": 2568599797, "path": [[163.5892764895175, -1812.600581423851], [280.68927649371744, -1812.1005814215607]]}, {"length": 7.76789992755, "source": 2568599802, "destination": 2586986546, "path": [[281.7392764882243, -1602.600581421143], [235.58927649247607, -1602.750581422896]]}, {"length": 10.4743514614, "source": 2568599802, "destination": 2587199406, "path": [[281.7392764882243, -1602.600581421143], [281.9892764946985, -1555.5005814213985]]}, {"length": 5.43707411614, "source": 2568599802, "destination": 2587199414, "path": [[281.7392764882243, -1602.600581421143], [281.6392764941611, -1627.050581422651]]}, {"length": 118.028410503, "source": 1932196091, "destination": 1932196090, "path": [[851.839276492683, -5722.050581422167], [1516.1892764936624, -5715.450581423198], [1552.1892764951417, -5721.800581422798]]}, {"length": 18.4817123571, "source": 1932196091, "destination": 1932196077, "path": [[851.839276492683, -5722.050581422167], [850.6392764928705, -5638.950581420942]]}, {"length": 7.8285762813, "source": 1932196091, "destination": 1932196095, "path": [[851.839276492683, -5722.050581422167], [852.3892764884522, -5757.250581421403]]}, {"length": 132.794648974, "source": 1932196095, "destination": 1932196008, "path": [[852.3892764884522, -5757.250581421403], [783.189276489793, -5722.650581422073], [607.78927649352, -5628.650581421369], [267.13927649524294, -5450.450581420796], [292.98927648824247, -5419.800581421441], [309.68927649155376, -5401.800581420702]]}, {"length": 25.0858332727, "source": 1932196095, "destination": 1932196105, "path": [[852.3892764884522, -5757.250581421403], [880.9892764887195, -5771.600581422121], [982.2892764930202, -5812.400581422849]]}, {"length": 7.8285762813, "source": 1932196095, "destination": 1932196091, "path": [[852.3892764884522, -5757.250581421403], [851.839276492683, -5722.050581422167]]}, {"length": 24.1383967702, "source": 2338863365, "destination": 2338863387, "path": [[9486.689276492654, 5486.549418577624], [9477.589276492892, 5506.649418578036], [9462.589276495237, 5527.599418577722], [9453.589276489538, 5534.899418577766], [9440.5392764898, 5538.599418578371], [9411.039276493228, 5543.299418576453], [9384.539276489078, 5544.6994185786025]]}, {"length": 13.2997730021, "source": 2338863365, "destination": 2338863399, "path": [[9486.689276492654, 5486.549418577624], [9486.039276488611, 5426.74941857868]]}, {"length": 87.9767704885, "source": 1932196103, "destination": 1932196105, "path": [[1501.6392764906072, -5803.450581421288], [1463.8892764935463, -5795.400581423138], [1286.8392764886494, -5798.400581422669], [1056.9392764949725, -5800.950581424047], [1013.0892764905752, -5804.750581422269], [982.2892764930202, -5812.400581422849]]}, {"length": 20.052062311, "source": 1932196103, "destination": 1932196090, "path": [[1501.6392764906072, -5803.450581421288], [1552.1892764951417, -5721.800581422798]]}, {"length": 20.1785024588, "source": 1932196103, "destination": 1932196118, "path": [[1501.6392764906072, -5803.450581421288], [1490.3392764935575, -5821.75058142198], [1451.1392764902098, -5885.750581423821]]}, {"length": 87.9767704885, "source": 1932196105, "destination": 1932196103, "path": [[982.2892764930202, -5812.400581422849], [1013.0892764905752, -5804.750581422269], [1056.9392764949725, -5800.950581424047], [1286.8392764886494, -5798.400581422669], [1463.8892764935463, -5795.400581423138], [1501.6392764906072, -5803.450581421288]]}, {"length": 37.4697896624, "source": 1932196105, "destination": 1932196119, "path": [[982.2892764930202, -5812.400581422849], [1062.5392764893604, -5844.750581420754], [1177.739276492673, -5893.100581420896]]}, {"length": 25.0858332727, "source": 1932196105, "destination": 1932196095, "path": [[982.2892764930202, -5812.400581422849], [880.9892764887195, -5771.600581422121], [852.3892764884522, -5757.250581421403]]}, {"length": 56.9828496275, "source": 2568599818, "destination": 2586986546, "path": [[76.98927649357756, -1753.3005814236446], [89.53927649457682, -1747.9505814215202], [98.8392764895707, -1741.400581423136], [103.43927649358875, -1734.9005814217833], [106.78927649365733, -1639.1505814219443], [108.0892764946384, -1603.1005814234334], [235.58927649247607, -1602.750581422896]]}, {"length": 66.3500875442, "source": 135092492, "destination": 135057560, "path": [[-1894.3607235115678, -4797.650581423341], [-1894.6107235109366, -5096.000581421123]]}, {"length": 39.5100236876, "source": 2568624514, "destination": 4719864584, "path": [[-1257.3107235098746, -2916.100581423109], [-1235.6107235049762, -3093.0005814227]]}, {"length": 16.1989449136, "source": 2568624514, "destination": 2568624513, "path": [[-1257.3107235098746, -2916.100581423109], [-1161.060723511298, -2915.950581421356]]}, {"length": 51.7784449057, "source": 2568624514, "destination": 4719865979, "path": [[-1257.3107235098746, -2916.100581423109], [-1352.3107235116072, -2709.7505814239753], [-1359.3107235081447, -2696.450581421317]]}, {"length": 18.2485470808, "source": 4224963629, "destination": 4224963674, "path": [[6975.489276491942, 3970.599418579468], [6989.839276492659, 3957.3994185779784], [7002.739276494196, 3949.7494185773976], [7020.689276494351, 3942.149418577401], [7033.439276490582, 3936.599418576492], [7042.289276490976, 3929.3994185776173], [7045.639276491045, 3919.7994185791176], [7045.539276489876, 3913.6994185788863]]}, {"length": 49.5741484763, "source": 4224963629, "destination": 4224963690, "path": [[6975.489276491942, 3970.599418579468], [6975.2392764925735, 4026.8494185760064], [6978.439276494441, 4037.599418577287], [6985.989276493854, 4052.249418577958], [6991.339276488872, 4062.89941857807], [6993.339276490929, 4072.0494185784164], [6994.039276492003, 4191.2994185793195]]}, {"length": 12.6424627703, "source": 4224963629, "destination": 4224963607, "path": [[6975.489276491942, 3970.599418579468], [6975.789276488342, 3913.749418579471]]}, {"length": 121.570230559, "source": 2091809040, "destination": 2091809095, "path": [[-8585.460723509186, 5636.399418577298], [-8870.410723510247, 5635.699418576223], [-8968.060723510973, 5636.349418576714], [-9034.76072350884, 5636.199418578513], [-9068.610723510063, 5636.299418576129], [-9123.910723509709, 5637.099418578373], [-9181.910723505382, 5637.499418579495], [-9307.610723510606, 5637.649418577695]]}, {"length": 47.5581982027, "source": 2091809040, "destination": 2289073162, "path": [[-8585.460723509186, 5636.399418577298], [-8585.410723505049, 5422.549418579337]]}, {"length": 47.8043972272, "source": 2091809040, "destination": 2292321463, "path": [[-8585.460723509186, 5636.399418577298], [-8587.760723507643, 5851.349418577456]]}, {"length": 10.8334598178, "source": 2091809040, "destination": 2289073095, "path": [[-8585.460723509186, 5636.399418577298], [-8521.110723506808, 5636.899418576036]]}, {"length": 45.6020250542, "source": 1933539715, "destination": 1933539613, "path": [[6736.689276493735, -7064.650581423138], [6734.939276491048, -6859.600581421432]]}, {"length": 149.071362759, "source": 1933539715, "destination": 134976422, "path": [[6736.689276493735, -7064.650581423138], [6742.539276494597, -7734.950581422595]]}, {"length": 52.6277865974, "source": 1933539715, "destination": 1933539703, "path": [[6736.689276493735, -7064.650581423138], [6881.339276489484, -7061.450581421269], [7021.139276488952, -7054.750581421132], [7049.089276492282, -7054.400581420595]]}, {"length": 48.0906767359, "source": 1933539604, "destination": 135016304, "path": [[7648.639276489177, -6809.400581420988], [7934.389276492482, -6806.100581421504]]}, {"length": 202.781819851, "source": 1933539604, "destination": 1933539568, "path": [[7648.639276489177, -6809.400581420988], [7646.689276491259, -6772.100581422081], [7645.789276494952, -6736.700581420508], [7647.139276492964, -6699.90058142389], [7649.389276494389, -6653.300581422883], [7648.039276489271, -6544.350581421554], [7643.539276493528, -6501.80058142169], [7642.639276490116, -6479.000581421701], [7645.339276493246, -6443.6005814236805], [7647.139276492964, -6399.700581422252], [7647.589276494671, -6361.6005814211], [7645.789276494952, -6263.900581423342], [7643.089276491821, -6177.45058142205], [7645.789276494952, -6110.7005814236], [7644.439276489834, -6048.10058142391], [7642.189276488409, -5980.350581420879], [7637.639276488528, -5898.050581421899]]}, {"length": 9.28524825177, "source": 1933539604, "destination": 1933539610, "path": [[7648.639276489177, -6809.400581420988], [7648.039276489271, -6851.150581422161]]}, {"length": 51.9505907005, "source": 1933539604, "destination": 135039780, "path": [[7648.639276489177, -6809.400581420988], [7339.939276491236, -6812.1005814205655]]}, {"length": 46.471491212, "source": 1932196118, "destination": 1932196119, "path": [[1451.1392764902098, -5885.750581423821], [1416.6892764890804, -5880.450581422281], [1221.0392764941957, -5883.000581423658], [1177.739276492673, -5893.100581420896]]}, {"length": 59.8973885829, "source": 1932196118, "destination": 1932196119, "path": [[1451.1392764902098, -5885.750581423821], [1412.7392764891056, -5948.550581422296], [1405.9892764919368, -5955.350581423601], [1395.8892764946995, -5960.850581423927], [1380.6892764947065, -5963.00058142063], [1363.839276493195, -5962.150581421355], [1345.2892764931335, -5960.000581421099], [1325.0392764945218, -5954.500581420774], [1253.0892764885948, -5924.700581420694], [1177.739276492673, -5893.100581420896]]}, {"length": 20.1785024588, "source": 1932196118, "destination": 1932196103, "path": [[1451.1392764902098, -5885.750581423821], [1490.3392764935575, -5821.75058142198], [1501.6392764906072, -5803.450581421288]]}, {"length": 37.4697896624, "source": 1932196119, "destination": 1932196105, "path": [[1177.739276492673, -5893.100581420896], [1062.5392764893604, -5844.750581420754], [982.2892764930202, -5812.400581422849]]}, {"length": 59.8973885829, "source": 1932196119, "destination": 1932196118, "path": [[1177.739276492673, -5893.100581420896], [1253.0892764885948, -5924.700581420694], [1325.0392764945218, -5954.500581420774], [1345.2892764931335, -5960.000581421099], [1363.839276493195, -5962.150581421355], [1380.6892764947065, -5963.00058142063], [1395.8892764946995, -5960.850581423927], [1405.9892764919368, -5955.350581423601], [1412.7392764891056, -5948.550581422296], [1451.1392764902098, -5885.750581423821]]}, {"length": 46.471491212, "source": 1932196119, "destination": 1932196118, "path": [[1177.739276492673, -5893.100581420896], [1221.0392764941957, -5883.000581423658], [1416.6892764890804, -5880.450581422281], [1451.1392764902098, -5885.750581423821]]}, {"length": 48.1390981798, "source": 1933539608, "destination": 134976418, "path": [[6448.289276491437, -6821.950581421987], [6734.339276491141, -6819.350581423578]]}, {"length": 9.07415883175, "source": 1933539608, "destination": 1933539614, "path": [[6448.289276491437, -6821.950581421987], [6448.689276489005, -6862.750581422716]]}, {"length": 60.4743173369, "source": 1933539608, "destination": 135039782, "path": [[6448.289276491437, -6821.950581421987], [6088.98927649193, -6827.450581422312]]}, {"length": 6.69883675396, "source": 1933539609, "destination": 135039786, "path": [[5296.439276492038, -6839.700581423358], [5256.639276488784, -6840.300581423264]]}, {"length": 8.34028167882, "source": 1933539609, "destination": 1933539621, "path": [[5296.439276492038, -6839.700581423358], [5296.939276490775, -6877.20058142105]]}, {"length": 42.874779312, "source": 1933539609, "destination": 1937680637, "path": [[5296.439276492038, -6839.700581423358], [5551.189276488344, -6836.450581420905]]}, {"length": 45.2738565219, "source": 1933539610, "destination": 1933539704, "path": [[7648.039276489271, -6851.150581422161], [7645.339276493246, -6870.450581423882], [7643.089276491821, -6918.450581423485], [7640.3892764886905, -6965.750581422015], [7639.939276494089, -7029.05058142278], [7639.689276494721, -7054.550581422347]]}, {"length": 48.2553521233, "source": 1933539610, "destination": 2139785362, "path": [[7648.039276489271, -6851.150581422161], [7698.589276493805, -6848.450581422583], [7779.689276489421, -6847.550581422724], [7902.089276491608, -6845.750581423004], [7934.639276491851, -6845.250581420714]]}, {"length": 51.9677847459, "source": 1933539610, "destination": 1933539611, "path": [[7648.039276489271, -6851.150581422161], [7625.039276490497, -6852.350581421973], [7508.189276492772, -6852.05058142202], [7436.2392764939505, -6851.750581422067], [7388.939276488316, -6852.650581421926], [7339.289276494299, -6852.850581420711]]}, {"length": 9.28524825177, "source": 1933539610, "destination": 1933539604, "path": [[7648.039276489271, -6851.150581422161], [7648.639276489177, -6809.400581420988]]}, {"length": 28.0693722593, "source": 2338863387, "destination": 2338863401, "path": [[9384.539276489078, 5544.6994185786025], [9362.439276493717, 5521.199418577538], [9354.739276489, 5509.849418576351], [9347.639276491293, 5496.849418577199], [9345.1392764905, 5483.4494185769245], [9343.18927649258, 5467.799418578778], [9343.18927649258, 5426.499418579311]]}, {"length": 24.1383967702, "source": 2338863387, "destination": 2338863365, "path": [[9384.539276489078, 5544.6994185786025], [9411.039276493228, 5543.299418576453], [9440.5392764898, 5538.599418578371], [9453.589276489538, 5534.899418577766], [9462.589276495237, 5527.599418577722], [9477.589276492892, 5506.649418578036], [9486.689276492654, 5486.549418577624]]}, {"length": 80.0203639162, "source": 2338863387, "destination": 2338863365, "path": [[9384.539276489078, 5544.6994185786025], [9479.339276488474, 5645.449418576476], [9499.889276490592, 5654.149418578669], [9514.639276488879, 5654.149418578669], [9529.389276494272, 5650.599418576263], [9538.989276492772, 5642.39941857636], [9542.789276494546, 5631.299418578095], [9542.989276489778, 5508.349418576586], [9533.639276490647, 5497.749418577058], [9514.889276488248, 5493.149418576593], [9486.689276492654, 5486.549418577624]]}, {"length": 7.38302302055, "source": 1932196124, "destination": 1937679936, "path": [[4950.539276492805, -5929.450581422912], [4950.539276492805, -5962.650581423645]]}, {"length": 203.435834485, "source": 1932196124, "destination": 1932195849, "path": [[4950.539276492805, -5929.450581422912], [4950.139276495236, -5850.300581421663], [4949.789276494698, -5799.150581420776], [4950.139276495236, -5665.000581423385], [4948.589276494886, -5532.100581422838], [4947.789276492642, -5436.150581420662], [4947.789276492642, -5396.750581422083], [4945.789276490586, -5348.600581420726], [4943.789276488531, -5251.750581422243], [4939.189276491617, -5014.750581423755]]}, {"length": 50.8934498397, "source": 1932196124, "destination": 135035915, "path": [[4950.539276492805, -5929.450581422912], [5252.939276488178, -5926.200581424013]]}, {"length": 49.282920416, "source": 1932196124, "destination": 135010293, "path": [[4950.539276492805, -5929.450581422912], [4657.739276488826, -5933.950581422209]]}, {"length": 8.9521645905, "source": 1933539613, "destination": 134976418, "path": [[6734.939276491048, -6859.600581421432], [6734.339276491141, -6819.350581423578]]}, {"length": 45.6020250542, "source": 1933539613, "destination": 1933539715, "path": [[6734.939276491048, -6859.600581421432], [6736.689276493735, -7064.650581423138]]}, {"length": 52.1644359991, "source": 1933539613, "destination": 1933539612, "path": [[6734.939276491048, -6859.600581421432], [6953.289276488305, -6857.50058142176], [7044.889276492939, -6855.900581420827]]}, {"length": 48.1741054732, "source": 1933539613, "destination": 1933539614, "path": [[6734.939276491048, -6859.600581421432], [6702.489276491974, -6859.900581421385], [6491.439276494759, -6862.30058142101], [6448.689276489005, -6862.750581422716]]}, {"length": 9.07415883175, "source": 1933539614, "destination": 1933539608, "path": [[6448.689276489005, -6862.750581422716], [6448.289276491437, -6821.950581421987]]}, {"length": 195.106771381, "source": 1933539614, "destination": 1933540845, "path": [[6448.689276489005, -6862.750581422716], [6449.039276489543, -7343.500581423968], [6449.63927648945, -7401.250581423824], [6447.889276493868, -7459.950581420571], [6448.189276490268, -7561.800581420641], [6448.739276493143, -7740.050581421798]]}, {"length": 48.1741054732, "source": 1933539614, "destination": 1933539613, "path": [[6448.689276489005, -6862.750581422716], [6491.439276494759, -6862.30058142101], [6702.489276491974, -6859.900581421385], [6734.939276491048, -6859.600581421432]]}, {"length": 60.6787577435, "source": 1933539614, "destination": 1933539615, "path": [[6448.689276489005, -6862.750581422716], [6161.139276493088, -6865.900581424001], [6088.139276492655, -6866.700581422691]]}, {"length": 7.63271427525, "source": 1933539615, "destination": 1933539616, "path": [[6088.139276492655, -6866.700581422691], [6042.789276492044, -6867.200581421429]]}, {"length": 93.8937820491, "source": 1933539615, "destination": 135075368, "path": [[6088.139276492655, -6866.700581422691], [6090.289276492911, -7288.900581421842]]}, {"length": 60.6787577435, "source": 1933539615, "destination": 1933539614, "path": [[6088.139276492655, -6866.700581422691], [6161.139276493088, -6865.900581424001], [6448.689276489005, -6862.750581422716]]}, {"length": 8.72993114775, "source": 1933539615, "destination": 135039782, "path": [[6088.139276492655, -6866.700581422691], [6088.98927649193, -6827.450581422312]]}, {"length": 33.1384118545, "source": 1933539616, "destination": 1933539617, "path": [[6042.789276492044, -6867.200581421429], [5997.789276491972, -6867.700581423719], [5845.88927649321, -6869.650581421638]]}, {"length": 93.9286485013, "source": 1933539616, "destination": 1933539975, "path": [[6042.789276492044, -6867.200581421429], [6039.589276490176, -6923.100581420982], [6040.839276494125, -7004.200581423703], [6041.839276491601, -7197.000581420809], [6042.139276495107, -7268.950581423183], [6042.23927648917, -7289.500581421748]]}, {"length": 7.63271427525, "source": 1933539616, "destination": 1933539615, "path": [[6042.789276492044, -6867.200581421429], [6088.139276492655, -6866.700581422691]]}, {"length": 33.1384118545, "source": 1933539617, "destination": 1933539616, "path": [[5845.88927649321, -6869.650581421638], [5997.789276491972, -6867.700581423719], [6042.789276492044, -6867.200581421429]]}, {"length": 8.88546958065, "source": 1933539617, "destination": 1933539633, "path": [[5845.88927649321, -6869.650581421638], [5846.539276490148, -6909.600581423092]]}, {"length": 73.8522346143, "source": 1933539617, "destination": 1932196245, "path": [[5845.88927649321, -6869.650581421638], [5788.289276495107, -6870.400581423297], [5492.189276495196, -6874.650581423225], [5407.089276488364, -6875.700581421284]]}, {"length": 8.34028167882, "source": 1933539621, "destination": 1933539609, "path": [[5296.939276490775, -6877.20058142105], [5296.439276492038, -6839.700581423358]]}, {"length": 18.5389235037, "source": 1933539621, "destination": 1932196245, "path": [[5296.939276490775, -6877.20058142105], [5407.089276488364, -6875.700581421284]]}, {"length": 8.42307900157, "source": 1933539621, "destination": 1932196246, "path": [[5296.939276490775, -6877.20058142105], [5246.889276492084, -6877.8505814215405]]}, {"length": 128.457501335, "source": 2960628006, "destination": 135104809, "path": [[-4079.960723508691, -3382.3005814213047], [-4000.7607235068576, -3404.0505814232347], [-3970.960723506778, -3415.4005814208685], [-3947.410723505129, -3429.200581422265], [-3908.16072350475, -3449.75058142083], [-3875.3107235081075, -3464.750581422038], [-3837.410723505741, -3477.6505814235747], [-3787.1107235076806, -3492.9005814205993], [-3749.910723506389, -3505.0505814240296], [-3715.0607235076905, -3511.4005814236293], [-3677.5107235058613, -3513.200581423348], [-3646.960723507675, -3512.450581421689], [-3621.8607235056766, -3506.100581422089], [-3592.660723505503, -3494.9005814226553], [-3569.5607235055604, -3483.0005814221468], [-3552.760723508186, -3465.5005814236974], [-3529.6607235082433, -3440.6505814210677], [-3514.9107235099564, -3417.5505814211247], [-3510.0607235065695, -3406.9505814215972], [-3496.060723506389, -3381.4505814220297], [-3472.5107235047403, -3349.4505814211097]]}, {"length": 97.8883992204, "source": 2960628006, "destination": 2960628140, "path": [[-4079.960723508691, -3382.3005814213047], [-3862.360723509539, -3495.2005814226086], [-3812.1107235085105, -3518.150581420798], [-3773.960723506775, -3537.1005814219816], [-3735.8107235050397, -3552.0505814226053], [-3712.760723509234, -3559.650581422602], [-3685.6607235051797, -3568.150581422458], [-3658.1607235106617, -3572.250581420633], [-3612.7607235059145, -3573.850581421567], [-3570.510723506004, -3577.850581422126]]}, {"length": 68.1096722704, "source": 2960628006, "destination": 1667837790, "path": [[-4079.960723508691, -3382.3005814213047], [-4394.460723510463, -3189.55058142123]]}, {"length": 24.0474959529, "source": 2338863399, "destination": 2338863401, "path": [[9486.039276488611, 5426.74941857868], [9408.339276490096, 5426.899418576881], [9343.18927649258, 5426.499418579311]]}, {"length": 13.2997730021, "source": 2338863399, "destination": 2338863365, "path": [[9486.039276488611, 5426.74941857868], [9486.689276492654, 5486.549418577624]]}, {"length": 22.7680818619, "source": 2338863399, "destination": 134985601, "path": [[9486.039276488611, 5426.74941857868], [9621.289276488198, 5426.549418576343]]}, {"length": 2.44262797136, "source": 1933539624, "destination": 1932196259, "path": [[4957.889276489879, -6881.000581422824], [4972.389276488798, -6880.700581422871]]}, {"length": 184.672827361, "source": 1933539624, "destination": 1933540796, "path": [[4957.889276489879, -6881.000581422824], [4954.289276490443, -7015.5005814207525], [4952.689276493061, -7113.450581421432], [4953.989276494041, -7209.45058142064], [4957.139276491773, -7324.750581421568], [4958.739276489155, -7385.400581423341], [4960.339276493642, -7442.700581421491], [4957.489276492311, -7711.30058142333]]}, {"length": 8.15229521101, "source": 1933539624, "destination": 1932196205, "path": [[4957.889276489879, -6881.000581422824], [4958.88927649446, -6844.350581420855]]}, {"length": 45.4989610333, "source": 1933539624, "destination": 1933539631, "path": [[4957.889276489879, -6881.000581422824], [4839.539276488836, -6882.4505814220065], [4710.839276491186, -6883.000581421328], [4689.889276491499, -6890.750581423077]]}, {"length": 336.341314495, "source": 2338863401, "destination": 135074370, "path": [[9343.18927649258, 5426.499418579311], [9327.339276488545, 5426.399418578143], [9268.939276488198, 5421.149418577187], [9232.239276492748, 5414.199418577681], [9216.33927649168, 5409.399418578431], [9195.739276492532, 5400.149418576916], [9161.989276492477, 5381.649418577439], [9149.839276489047, 5373.399418576952], [8990.939276493747, 5235.099418577249], [8908.339276494815, 5160.8994185770025], [8864.789276493922, 5115.74941857873], [8846.939276494937, 5093.899418579184], [8832.839276493587, 5073.899418576389], [8824.5892764931, 5061.149418576605], [8816.839276491351, 5037.399418576171], [8817.839276488827, 4851.899418579109], [8821.3392764942, 4108.399418576881]]}, {"length": 28.0693722593, "source": 2338863401, "destination": 2338863387, "path": [[9343.18927649258, 5426.499418579311], [9343.18927649258, 5467.799418578778], [9345.1392764905, 5483.4494185769245], [9347.639276491293, 5496.849418577199], [9354.739276489, 5509.849418576351], [9362.439276493717, 5521.199418577538], [9384.539276489078, 5544.6994185786025]]}, {"length": 24.0474959529, "source": 2338863401, "destination": 2338863399, "path": [[9343.18927649258, 5426.499418579311], [9408.339276490096, 5426.899418576881], [9486.039276488611, 5426.74941857868]]}, {"length": 14.3110243817, "source": 135076231, "destination": 2062743212, "path": [[9648.489276493421, 4501.199418577073], [9648.239276494052, 4565.5494185794505]]}, {"length": 33.8000943186, "source": 135076231, "destination": 2062743237, "path": [[9648.489276493421, 4501.199418577073], [9668.889276490234, 4433.399418577011], [9679.589276494482, 4351.3494185774]]}, {"length": 8.22931955172, "source": 1933539628, "destination": 2029677569, "path": [[4594.339276493997, -6886.450581422565], [4594.889276489766, -6849.450581423611]]}, {"length": 130.359509654, "source": 1933539628, "destination": 1933540002, "path": [[4594.339276493997, -6886.450581422565], [4595.289276494441, -6948.800581422887], [4594.339276493997, -7028.000581421167], [4593.989276493459, -7137.25058142245], [4593.989276493459, -7149.750581422864], [4591.989276491404, -7159.950581421271], [4586.839276491617, -7171.350581423041], [4578.0392764882545, -7182.050581423738], [4564.339276491581, -7197.400581421931], [4553.289276493899, -7210.000581423515], [4542.939276490188, -7222.050581422223], [4537.539276491032, -7233.100581423458], [4534.6392764926695, -7244.8505814222135], [4534.839276495006, -7259.1505814223465], [4536.889276494094, -7273.1005814219425], [4541.839276491544, -7285.700581423526], [4549.239276492755, -7298.300581421558], [4557.339276495042, -7308.000581421225], [4571.289276491087, -7317.700581420894], [4586.839276491617, -7326.5505814212875], [4600.989276489998, -7332.500581423318], [4607.439276490766, -7334.150581421283], [4617.1892764945715, -7336.600581421493], [4634.939276492389, -7339.500581423408], [4649.339276490138, -7339.500581423408], [4663.739276494994, -7337.950581423058], [4678.589276494449, -7334.900581422943], [4691.839276489418, -7330.650581423015], [4703.339276488805, -7325.550581423812], [4716.839276490247, -7317.850581422646], [4728.48927649494, -7306.800581421413]]}, {"length": 105.06830708, "source": 1933539628, "destination": 1483977825, "path": [[4594.339276493997, -6886.450581422565], [3969.9892764915035, -6890.950581421862]]}, {"length": 16.4014188739, "source": 1933539628, "destination": 1933539631, "path": [[4594.339276493997, -6886.450581422565], [4608.589276493547, -6892.200581422258], [4689.889276491499, -6890.750581423077]]}, {"length": 45.4989610333, "source": 1933539631, "destination": 1933539624, "path": [[4689.889276491499, -6890.750581423077], [4710.839276491186, -6883.000581421328], [4839.539276488836, -6882.4505814220065], [4957.889276489879, -6881.000581422824]]}, {"length": 9.30948290241, "source": 1933539631, "destination": 1933539649, "path": [[4689.889276491499, -6890.750581423077], [4691.289276493649, -6932.600581421866]]}, {"length": 16.4014188739, "source": 1933539631, "destination": 1933539628, "path": [[4689.889276491499, -6890.750581423077], [4608.589276493547, -6892.200581422258], [4594.339276493997, -6886.450581422565]]}, {"length": 247.359969159, "source": 1932196145, "destination": 1429423130, "path": [[1424.4892764949668, -6034.700581423635], [1407.9392764898557, -6038.750581421226], [1382.689276489657, -6040.100581422792], [1359.8892764932202, -6038.350581423657], [1332.0392764910594, -6032.600581423963], [1305.9892764886172, -6024.200581421724], [1283.5392764927178, -6014.850581422593], [1156.3392764912805, -5954.550581421358], [1088.3892764894654, -5923.150581423897], [1056.5892764944351, -5909.60058142187], [1030.3392764896557, -5900.550581422693], [938.1392764922225, -5873.200581422821], [901.989276492543, -5861.200581421144], [868.4392764948257, -5847.150581423932], [715.5392764914836, -5774.2505814211145], [564.8892764895663, -5703.550581422689], [487.3892764933885, -5665.05058142397], [407.4892764904803, -5623.250581422212], [252.38927648985054, -5545.700581421897], [224.03927648895205, -5526.150581420808], [196.1892764938966, -5507.50058142313], [164.48927649292955, -5488.7005814237]]}, {"length": 22.3678060533, "source": 1932196145, "destination": 2080560852, "path": [[1424.4892764949668, -6034.700581423635], [1455.2392764883848, -6027.200581421255], [1474.789276493027, -6022.250581423805], [1492.2392764944448, -6018.500581422614], [1510.2892764886633, -6017.350581423387], [1553.189276492617, -6023.700581422986]]}, {"length": 36.2313012051, "source": 1932196145, "destination": 3009796734, "path": [[1424.4892764949668, -6034.700581423635], [1441.7392764940473, -6004.650581420634], [1461.089276489247, -5974.100581422448], [1477.139276488515, -5948.700581424049], [1515.4392764884506, -5887.050581421249]]}, {"length": 43.2282628776, "source": 2074057010, "destination": 2074057016, "path": [[9717.589276490911, -199.9505814218594], [9713.089276495168, -394.3005814228684]]}, {"length": 118.409261868, "source": 2074057016, "destination": 2086854423, "path": [[9713.089276495168, -394.3005814228684], [10416.589276488252, -390.250581421725]]}, {"length": 45.5807739156, "source": 2074057016, "destination": 134979215, "path": [[9713.089276495168, -394.3005814228684], [9715.539276491825, -599.250581423405]]}, {"length": 13.3966220691, "source": 2568599867, "destination": 2568679357, "path": [[899.1392764912121, -2672.8505814226364], [846.8392764910959, -2688.250581421414], [825.4892764938404, -2695.650581422626]]}, {"length": 17.8478612304, "source": 2568599867, "destination": 135047214, "path": [[899.1392764912121, -2672.8505814226364], [900.5392764933617, -2753.1005814225296]]}, {"length": 8.53680182662, "source": 135092542, "destination": 134946738, "path": [[-2129.0607235116, -11130.300581420726], [-2125.6607235073943, -11168.600581420662]]}, {"length": 11.7255827872, "source": 135092542, "destination": 135092597, "path": [[-2129.0607235116, -11130.300581420726], [-2198.660723507828, -11133.000581423858]]}, {"length": 102.041920675, "source": 135092542, "destination": 2271725726, "path": [[-2129.0607235116, -11130.300581420726], [-2009.8107235071438, -11127.950581421686], [-2007.860723509225, -11291.300581422804], [-1979.3107235059892, -11310.350581421602], [-1950.710723505722, -11485.450581421475]]}, {"length": 79.5275217819, "source": 134956085, "destination": 3698428995, "path": [[10160.539276490965, -4534.400581423625], [10154.289276492535, -4511.600581423636], [10144.839276492236, -4498.1005814221935], [10131.489276488992, -4482.150581420541], [10113.989276490542, -4473.750581421854], [10092.58927648915, -4471.000581421691], [10068.389276490563, -4472.750581420825], [10040.239276492002, -4478.850581421057], [10002.73927649431, -4488.250581420772], [9965.189276492481, -4494.350581421003], [9911.539276494352, -4495.350581422031], [9774.239276488572, -4496.200581421306], [9742.489276490574, -4495.900581421352]]}, {"length": 141.225199455, "source": 134956085, "destination": 2074099157, "path": [[10160.539276490965, -4534.400581423625], [10045.039276491252, -4535.4005814211005], [9398.239276492859, -4539.600581423997], [9321.389276493619, -4540.100581422735]]}, {"length": 27.0327118099, "source": 1933539649, "destination": 1933539699, "path": [[4691.289276493649, -6932.600581421866], [4691.289276493649, -6937.350581420532], [4690.389276490237, -7054.150581421226]]}, {"length": 16.2870361559, "source": 1933539649, "destination": 1933539654, "path": [[4691.289276493649, -6932.600581421866], [4779.939276488676, -6932.800581420651], [4779.939276488676, -6938.950581421466]]}, {"length": 9.30948290241, "source": 1933539649, "destination": 1933539631, "path": [[4691.289276493649, -6932.600581421866], [4689.889276491499, -6890.750581423077]]}, {"length": 4.51417729956, "source": 2568624523, "destination": 2568624521, "path": [[-1167.7607235114351, -2561.8505814222203], [-1168.010723510804, -2582.150581421416]]}, {"length": 17.8251228393, "source": 2568624523, "destination": 2568624526, "path": [[-1167.7607235114351, -2561.8505814222203], [-1166.7107235098229, -2481.7005814234963]]}, {"length": 8.97127275438, "source": 2568624523, "destination": 2568600183, "path": [[-1167.7607235114351, -2561.8505814222203], [-1114.560723507907, -2564.400581423598]]}, {"length": 23.0484354233, "source": 1942315675, "destination": 4274706104, "path": [[9826.189276495257, 6189.899418576061], [9937.33927649032, 6189.7994185784455], [9937.389276494458, 6209.29941857895]]}, {"length": 30.9639706241, "source": 1942315675, "destination": 1942315667, "path": [[9826.189276495257, 6189.899418576061], [9823.439276495094, 6176.849418576325], [9819.039276493413, 6162.599418576775], [9766.889276491496, 6058.449418578249]]}, {"length": 36.6948471929, "source": 1942315675, "destination": 1942315679, "path": [[9826.189276495257, 6189.899418576061], [9825.039276492476, 6354.899418578697]]}, {"length": 16.2870361559, "source": 1933539654, "destination": 1933539649, "path": [[4779.939276488676, -6938.950581421466], [4779.939276488676, -6932.800581420651], [4691.289276493649, -6932.600581421866]]}, {"length": 121.570230559, "source": 2091809095, "destination": 2091809040, "path": [[-9307.610723510606, 5637.649418577695], [-9181.910723505382, 5637.499418579495], [-9123.910723509709, 5637.099418578373], [-9068.610723510063, 5636.299418576129], [-9034.76072350884, 5636.199418578513], [-8968.060723510973, 5636.349418576714], [-8870.410723510247, 5635.699418576223], [-8585.460723509186, 5636.399418577298]]}, {"length": 163.594007558, "source": 2091809095, "destination": 2289073169, "path": [[-9307.610723510606, 5637.649418577695], [-9307.710723511775, 5489.449418575987], [-9306.760723511332, 5465.799418576722], [-9302.61072350902, 5439.699418577248], [-9293.360723511058, 5415.049418576956], [-9284.660723508863, 5401.499418578482], [-9271.41072350679, 5387.049418576595], [-9252.510723506191, 5373.499418578121], [-9230.16072351146, 5363.799418578452], [-9213.51072350518, 5360.849418575953], [-9196.310723510236, 5359.949418576093], [-8649.41072350689, 5362.149418576933]]}, {"length": 63.6285567297, "source": 2091809095, "destination": 134958927, "path": [[-9307.610723510606, 5637.649418577695], [-9311.06072350474, 5923.749418577983]]}, {"length": 6.48208118282, "source": 4224963639, "destination": 4224963689, "path": [[6488.939276493966, 4295.6494185766305], [6489.089276492166, 4324.79941857622]]}, {"length": 13.4644416869, "source": 134983394, "destination": 134983512, "path": [[10342.339276490975, -1333.6005814217344], [10422.339276495051, -1333.6005814217344]]}, {"length": 49.1284210885, "source": 134983394, "destination": 2086854408, "path": [[10342.339276490975, -1333.6005814217344], [10050.439276490408, -1332.9005814206596]]}, {"length": 57.0112366487, "source": 134983394, "destination": 2086854379, "path": [[10342.339276490975, -1333.6005814217344], [10344.839276491768, -1589.9505814225279]]}, {"length": 16.5574578865, "source": 2291095886, "destination": 2289072986, "path": [[-8522.660723507159, 5924.699418578428], [-8523.4607235094, 5999.149418578043]]}, {"length": 16.2571006296, "source": 2291095886, "destination": 2289072988, "path": [[-8522.660723507159, 5924.699418578428], [-8522.41072350779, 5901.7994185772695], [-8522.110723511389, 5851.599418576825]]}, {"length": 234.311364495, "source": 2291095886, "destination": 1965661565, "path": [[-8522.660723507159, 5924.699418578428], [-7882.860723505302, 5927.949418577327], [-7856.060723504754, 5928.149418576112], [-7568.760723508205, 5929.14941857714], [-7130.81072350974, 5931.799418576134]]}, {"length": 11.0940491442, "source": 2291095886, "destination": 134982238, "path": [[-8522.660723507159, 5924.699418578428], [-8588.560723509887, 5924.34941857789]]}, {"length": 58.9490173348, "source": 2068887949, "destination": 2069036701, "path": [[247.03927649483148, 3162.149418578508], [-103.16072350491368, 3160.849418577527]]}, {"length": 119.435942549, "source": 2068887949, "destination": 134982662, "path": [[247.03927649483148, 3162.149418578508], [250.33927649076304, 2625.099418576582]]}, {"length": 117.224309453, "source": 134979299, "destination": 135022770, "path": [[9650.83927648891, -1727.60058142174], [8954.339276492363, -1730.1005814225334]]}, {"length": 21.7055701478, "source": 134979299, "destination": 2074057142, "path": [[9650.83927648891, -1727.60058142174], [9650.489276488372, -1630.0005814215979]]}, {"length": 111.440561153, "source": 135076181, "destination": 2587199388, "path": [[1759.8392764952564, -1803.6005814217049], [1758.8392764906757, -1545.1005814206553], [1757.5892764938317, -1302.5005814206736]]}, {"length": 145.347603711, "source": 135076181, "destination": 135074194, "path": [[1759.8392764952564, -1803.6005814217049], [896.2892764898811, -1811.2505814222857]]}, {"length": 8.22877193438, "source": 135076181, "destination": 2587010388, "path": [[1759.8392764952564, -1803.6005814217049], [1760.0392764904882, -1840.6005814206594]]}, {"length": 8.99099399751, "source": 2568624479, "destination": 2568624481, "path": [[282.63927649163634, -3292.300581421159], [285.2892764906301, -3272.000581421963], [304.03927649302886, -3257.8505814235823]]}, {"length": 12.9926344602, "source": 2568624479, "destination": 2568624491, "path": [[282.63927649163634, -3292.300581421159], [359.8392764914138, -3292.2005814235436]]}, {"length": 25.5092053625, "source": 2568624479, "destination": 2568624487, "path": [[282.63927649163634, -3292.300581421159], [281.2892764936237, -3407.0005814221813]]}, {"length": 37.8150608277, "source": 2568624481, "destination": 2568624489, "path": [[304.03927649302886, -3257.8505814235823], [304.7392764941037, -3248.500581420899], [517.039276495268, -3246.950581420549]]}, {"length": 12.1056636185, "source": 2568624481, "destination": 2568624491, "path": [[304.03927649302886, -3257.8505814235823], [359.8392764914138, -3292.2005814235436]]}, {"length": 8.99099399751, "source": 2568624481, "destination": 2568624479, "path": [[304.03927649302886, -3257.8505814235823], [285.2892764906301, -3272.000581421963], [282.63927649163634, -3292.300581421159]]}, {"length": 8.34028167882, "source": 1932196195, "destination": 135019337, "path": [[8531.33927649452, -6839.150581424036], [8530.939276489846, -6801.650581422791]]}, {"length": 194.226294668, "source": 1932196195, "destination": 135019340, "path": [[8531.33927649452, -6839.150581424036], [8533.389276493608, -7247.6505814229595], [8536.339276489001, -7712.500581423143]]}, {"length": 50.3605572101, "source": 1932196195, "destination": 1935184053, "path": [[8531.33927649452, -6839.150581424036], [8311.489276493943, -6840.950581423755], [8232.089276489773, -6841.750581422446]]}, {"length": 8.27410083682, "source": 1932196197, "destination": 1932196248, "path": [[5212.339276489785, -6840.9005814231705], [5211.33927649231, -6878.100581420909]]}, {"length": 7.45590754191, "source": 1932196197, "destination": 135039786, "path": [[5212.339276489785, -6840.9005814231705], [5256.639276488784, -6840.300581423264]]}, {"length": 42.6567620633, "source": 1932196197, "destination": 1932196205, "path": [[5212.339276489785, -6840.9005814231705], [4958.88927649446, -6844.350581420855]]}, {"length": 100.41462119, "source": 2074057062, "destination": 134979219, "path": [[9725.289276488526, -1395.5505814209346], [9722.18927649493, -1514.9505814235908], [9720.78927649278, -1847.0505814214278]]}, {"length": 164.818409059, "source": 2568624487, "destination": 2139769367, "path": [[281.2892764936237, -3407.0005814221813], [273.8892764924117, -4052.300581420809], [274.2392764929491, -4116.300581422649], [268.9892764919932, -4147.850581421863]]}, {"length": 10.5762502697, "source": 2568624487, "destination": 2568624492, "path": [[281.2892764936237, -3407.0005814221813], [344.08927648854615, -3408.750581421316]]}, {"length": 25.5092053625, "source": 2568624487, "destination": 2568624479, "path": [[281.2892764936237, -3407.0005814221813], [282.63927649163634, -3292.300581421159]]}, {"length": 6.18028933667, "source": 2568624488, "destination": 2568624492, "path": [[380.7892764911003, -3409.750581422344], [344.08927648854615, -3408.750581421316]]}, {"length": 13.9577686996, "source": 2568624489, "destination": 844923969, "path": [[517.039276495268, -3246.950581420549], [512.0892764907126, -3309.600581420824]]}, {"length": 14.5874787211, "source": 2568624489, "destination": 2568624508, "path": [[517.039276495268, -3246.950581420549], [492.9892764948818, -3265.9505814223166], [471.53927648935223, -3283.200581421397], [455.6892764924214, -3293.150581423987]]}, {"length": 69.0126396218, "source": 2568624489, "destination": 2568624510, "path": [[517.039276495268, -3246.950581420549], [927.0892764945415, -3244.000581421602]]}, {"length": 37.8150608277, "source": 2568624489, "destination": 2568624481, "path": [[517.039276495268, -3246.950581420549], [304.7392764941037, -3248.500581420899], [304.03927649302886, -3257.8505814235823]]}, {"length": 23.2499279832, "source": 135018858, "destination": 2086723516, "path": [[5488.1892764910845, 621.6494185764532], [5512.789276494345, 708.5494185794516], [5515.839276490908, 724.0494185793978]]}, {"length": 40.5201181901, "source": 135018858, "destination": 1393207231, "path": [[5488.1892764910845, 621.6494185764532], [5469.83927649336, 551.8494185778877], [5468.4892764882425, 523.3994185793733], [5475.489276491885, 498.1994185762062], [5489.939276493771, 476.6994185771978], [5521.53927649357, 454.3994185759459]]}, {"length": 12.1056636185, "source": 2568624491, "destination": 2568624481, "path": [[359.8392764914138, -3292.2005814235436], [304.03927649302886, -3257.8505814235823]]}, {"length": 8.6072464869, "source": 2568624491, "destination": 2568624498, "path": [[359.8392764914138, -3292.2005814235436], [399.5392764934991, -3316.6005814209143]]}, {"length": 12.9926344602, "source": 2568624491, "destination": 2568624479, "path": [[359.8392764914138, -3292.2005814235436], [282.63927649163634, -3292.300581421159]]}, {"length": 6.18028933667, "source": 2568624492, "destination": 2568624488, "path": [[344.08927648854615, -3408.750581421316], [380.7892764911003, -3409.750581422344]]}, {"length": 11.8071612786, "source": 2568624492, "destination": 2568624495, "path": [[344.08927648854615, -3408.750581421316], [361.53927648996387, -3388.750581422073], [376.28927648825083, -3375.5505814205835], [384.3392764935061, -3365.4005814227617]]}, {"length": 10.5762502697, "source": 2568624492, "destination": 2568624487, "path": [[344.08927648854615, -3408.750581421316], [281.2892764936237, -3407.0005814221813]]}, {"length": 8.15229521101, "source": 1932196205, "destination": 1933539624, "path": [[4958.88927649446, -6844.350581420855], [4957.889276489879, -6881.000581422824]]}, {"length": 196.11761512, "source": 1932196205, "destination": 1937679936, "path": [[4958.88927649446, -6844.350581420855], [4958.089276492217, -6736.350581423522], [4959.689276489598, -6676.800581423948], [4960.889276489411, -6645.550581421134], [4960.889276489411, -6579.050581422052], [4957.339276494111, -6470.800581421799], [4952.93927649243, -6374.850581423175], [4952.539276494861, -6299.050581421994], [4952.93927649243, -6233.500581423357], [4950.939276490373, -6196.50058142085], [4949.789276494698, -6157.400581422224], [4950.139276495236, -6092.100581422955], [4950.539276492805, -6022.650581421374], [4950.539276492805, -5962.650581423645]]}, {"length": 42.6567620633, "source": 1932196205, "destination": 1932196197, "path": [[4958.88927649446, -6844.350581420855], [5212.339276489785, -6840.9005814231705]]}, {"length": 51.1984593555, "source": 1932196205, "destination": 135010295, "path": [[4958.88927649446, -6844.350581420855], [4654.689276492263, -6848.550581423751]]}, {"length": 11.9164086078, "source": 2568624495, "destination": 2568624505, "path": [[384.3392764935061, -3365.4005814227617], [411.1892764910863, -3363.350581423674], [428.589276488367, -3359.3005814225307], [447.08927649139696, -3345.9005814222564]]}, {"length": 11.2974590191, "source": 2568624495, "destination": 2568624498, "path": [[384.3392764935061, -3365.4005814227617], [388.3892764946495, -3347.100581422069], [389.68927648852514, -3331.900581422076], [399.5392764934991, -3316.6005814209143]]}, {"length": 11.8071612786, "source": 2568624495, "destination": 2568624492, "path": [[384.3392764935061, -3365.4005814227617], [376.28927648825083, -3375.5505814205835], [361.53927648996387, -3388.750581422073], [344.08927648854615, -3408.750581421316]]}, {"length": 102.589188794, "source": 135018864, "destination": 4224950641, "path": [[5514.489276492895, 2121.1494185777724], [5512.339276492639, 2582.4494185791027]]}, {"length": 123.040210775, "source": 135018864, "destination": 134936074, "path": [[5514.489276492895, 2121.1494185777724], [5518.039276488196, 1613.79941857831], [5516.9892764936885, 1567.899418578378]]}, {"length": 209.779265585, "source": 135018864, "destination": 2086723561, "path": [[5514.489276492895, 2121.1494185777724], [5425.839276490762, 2108.1494185786196], [5334.539276489636, 2099.499418577011], [5270.339276492564, 2095.5494185770362], [4643.889276493951, 2082.149418576762], [4271.039276488864, 2078.6994185790772]]}, {"length": 59.9893455125, "source": 2293202922, "destination": 2293202968, "path": [[-12105.8607235085, 145.0494185775142], [-12105.91072350553, 122.09941857932449], [-12105.91072350553, -85.5005814237586], [-12105.91072350553, -124.70058142355356]]}, {"length": 19.4888360765, "source": 2293202922, "destination": 2293202916, "path": [[-12105.8607235085, 145.0494185775142], [-12216.660723510131, 170.49941857649742]]}, {"length": 31.8435475783, "source": 2293202922, "destination": 2293202934, "path": [[-12105.8607235085, 145.0494185775142], [-12086.410723505025, 140.59941857880176], [-12032.760723506897, 140.59941857880176], [-11997.81072350703, 140.89941857875488], [-11938.510723510375, 99.94941857627282]]}, {"length": 10.3196168383, "source": 2568624498, "destination": 2568624505, "path": [[399.5392764934991, -3316.6005814209143], [447.08927649139696, -3345.9005814222564]]}, {"length": 8.6072464869, "source": 2568624498, "destination": 2568624491, "path": [[399.5392764934991, -3316.6005814209143], [359.8392764914138, -3292.2005814235436]]}, {"length": 10.8748041759, "source": 2568624498, "destination": 2568624508, "path": [[399.5392764934991, -3316.6005814209143], [417.8892764912234, -3307.5505814217368], [447.3892764949028, -3298.40058142139], [455.6892764924214, -3293.150581423987]]}, {"length": 11.2974590191, "source": 2568624498, "destination": 2568624495, "path": [[399.5392764934991, -3316.6005814209143], [389.68927648852514, -3331.900581422076], [388.3892764946495, -3347.100581422069], [384.3392764935061, -3365.4005814227617]]}, {"length": 27.0327118099, "source": 1933539699, "destination": 1933539649, "path": [[4690.389276490237, -7054.150581421226], [4691.289276493649, -6937.350581420532], [4691.289276493649, -6932.600581421866]]}, {"length": 59.0328068346, "source": 1933539699, "destination": 1933540002, "path": [[4690.389276490237, -7054.150581421226], [4690.289276489068, -7062.75058142225], [4691.889276493555, -7148.150581421931], [4694.43927649138, -7160.70058142293], [4699.539276494135, -7171.300581422457], [4705.239276489692, -7179.000581423623], [4722.139276488235, -7198.450581423544], [4733.8892764940965, -7214.10058142169], [4743.139276492058, -7230.700581423833], [4746.589276493296, -7247.80058142116], [4747.589276490771, -7263.7005814222275], [4745.039276492946, -7278.150581420561], [4739.63927649379, -7292.800581421233], [4728.48927649494, -7306.800581421413]]}, {"length": 8.08636032926, "source": 1933539699, "destination": 2029677572, "path": [[4690.389276490237, -7054.150581421226], [4672.839276494756, -7054.050581423609], [4642.339276493602, -7053.950581422441]]}, {"length": 5.68741685213, "source": 1933539699, "destination": 1933539701, "path": [[4690.389276490237, -7054.150581421226], [4724.189276494428, -7054.300581422978]]}, {"length": 45.4120937734, "source": 135018868, "destination": 4224950845, "path": [[5507.489276489252, 4093.749418576209], [5507.5392764933895, 4297.949418578639]]}, {"length": 193.879955547, "source": 135018868, "destination": 4224950734, "path": [[5507.489276489252, 4093.749418576209], [5505.839276494839, 3221.949418577452]]}, {"length": 93.8621964745, "source": 135018868, "destination": 135038037, "path": [[5507.489276489252, 4093.749418576209], [4949.889276488761, 4094.049418576162]]}, {"length": 13.7908216084, "source": 135092597, "destination": 134955571, "path": [[-2198.660723507828, -11133.000581423858], [-2210.160723507215, -11071.60058142398]]}, {"length": 11.7255827872, "source": 135092597, "destination": 135092542, "path": [[-2198.660723507828, -11133.000581423858], [-2129.0607235116, -11130.300581420726]]}, {"length": 93.929225885, "source": 135018870, "destination": 135038042, "path": [[5507.589276490421, 4338.3494185782465], [5027.839276493751, 4336.599418579112], [4978.989276494872, 4333.299418576075], [4950.139276495236, 4329.899418578975]]}, {"length": 117.505621555, "source": 135018870, "destination": 2069120219, "path": [[5507.589276490421, 4338.3494185782465], [5610.489276492103, 4340.049418576797], [5642.689276491808, 4341.699418578315], [5682.9892764937995, 4346.099418576443], [5715.039276488198, 4351.99941857789], [5749.389276495265, 4359.799418576671], [5781.589276494969, 4368.899418576433], [5818.389276491587, 4381.79941857797], [5851.389276493535, 4395.549418578781], [5874.339276488172, 4406.799418578799], [5899.789276490708, 4420.649418577227], [5926.13927648955, 4437.249418579369], [5949.589276490031, 4453.449418576838], [6016.839276490771, 4504.399418578942], [6101.639276494097, 4569.549418576457]]}, {"length": 56.0653007683, "source": 135018870, "destination": 2069120388, "path": [[5507.589276490421, 4338.3494185782465], [5509.289276488971, 4590.449418579112]]}, {"length": 8.98432334549, "source": 135018870, "destination": 4224950845, "path": [[5507.589276490421, 4338.3494185782465], [5507.5392764933895, 4297.949418578639]]}, {"length": 11.0010464296, "source": 135018871, "destination": 135018882, "path": [[5499.48927649524, 5967.8994185787815], [5564.839276495093, 5967.8994185787815]]}, {"length": 60.446814289, "source": 135018871, "destination": 2069036676, "path": [[5499.48927649524, 5967.8994185787815], [5501.689276492527, 5696.099418578626]]}, {"length": 90.2494985623, "source": 135018871, "destination": 135033678, "path": [[5499.48927649524, 5967.8994185787815], [4963.389276490205, 5965.649418577357]]}, {"length": 50.0383694608, "source": 1933539704, "destination": 1933539706, "path": [[7639.689276494721, -7054.550581422347], [7551.339276488989, -7053.900581421857], [7447.839276494506, -7054.250581422394], [7342.339276490861, -7054.700581420548]]}, {"length": 45.2738565219, "source": 1933539704, "destination": 1933539610, "path": [[7639.689276494721, -7054.550581422347], [7639.939276494089, -7029.05058142278], [7640.3892764886905, -6965.750581422015], [7643.089276491821, -6918.450581423485], [7645.339276493246, -6870.450581423882], [7648.039276489271, -6851.150581422161]]}, {"length": 148.333740635, "source": 1933539704, "destination": 1933540837, "path": [[7639.689276494721, -7054.550581422347], [7639.489276492384, -7077.050581422383], [7644.439276489834, -7129.150581423715], [7647.139276492964, -7177.8005814238095], [7648.489276490977, -7236.700581422894], [7648.939276492683, -7292.200581421326], [7648.039276489271, -7348.3505814238015], [7645.339276493246, -7397.000581423896], [7646.239276489552, -7452.850581422865], [7647.139276492964, -7533.500581423879], [7648.939276492683, -7721.300581422952]]}, {"length": 279.165898966, "source": 4224850297, "destination": 134985708, "path": [[7664.1892764897075, 4461.549418579125], [8732.239276490362, 5421.849418578262]]}, {"length": 9.18080113806, "source": 4224850297, "destination": 4224963626, "path": [[7664.1892764897075, 4461.549418579125], [7630.88927649136, 4494.249418577567]]}, {"length": 16.112195857, "source": 4224850297, "destination": 4224850364, "path": [[7664.1892764897075, 4461.549418579125], [7726.3392764947985, 4406.449418578262]]}, {"length": 50.0383694608, "source": 1933539706, "destination": 1933539704, "path": [[7342.339276490861, -7054.700581420548], [7447.839276494506, -7054.250581422394], [7551.339276488989, -7053.900581421857], [7639.689276494721, -7054.550581422347]]}, {"length": 149.735358452, "source": 1933539706, "destination": 135047491, "path": [[7342.339276490861, -7054.700581420548], [7342.9892764949045, -7728.000581423089]]}, {"length": 49.3549085543, "source": 1933539706, "destination": 1933539703, "path": [[7342.339276490861, -7054.700581420548], [7315.139276492744, -7055.250581423423], [7136.389276489297, -7053.200581420782], [7049.089276492282, -7054.400581420595]]}, {"length": 44.8924152075, "source": 1933539706, "destination": 1933539611, "path": [[7342.339276490861, -7054.700581420548], [7339.289276494299, -6852.850581420711]]}, {"length": 139.229558912, "source": 2074057083, "destination": 134979299, "path": [[9653.439276490872, -2353.650581422784], [9653.339276489703, -2331.100581422163], [9653.589276489072, -1905.6505814205593], [9650.83927648891, -1727.60058142174]]}, {"length": 10.3414277788, "source": 2074057083, "destination": 134979220, "path": [[9653.439276490872, -2353.650581422784], [9714.889276494887, -2353.450581423999]]}, {"length": 14.5874787211, "source": 2568624508, "destination": 2568624489, "path": [[455.6892764924214, -3293.150581423987], [471.53927648935223, -3283.200581421397], [492.9892764948818, -3265.9505814223166], [517.039276495268, -3246.950581420549]]}, {"length": 10.8748041759, "source": 2568624508, "destination": 2568624498, "path": [[455.6892764924214, -3293.150581423987], [447.3892764949028, -3298.40058142139], [417.8892764912234, -3307.5505814217368], [399.5392764934991, -3316.6005814209143]]}, {"length": 12.6332732111, "source": 2568624508, "destination": 2568624505, "path": [[455.6892764924214, -3293.150581423987], [463.4892764912024, -3319.700581421614], [460.7892764951771, -3330.9005814210477], [447.08927649139696, -3345.9005814222564]]}, {"length": 11.4691275068, "source": 2568624509, "destination": 844923972, "path": [[942.1892764933659, -3243.9005814239863], [938.5892764939285, -3295.400581421859]]}, {"length": 139.744669725, "source": 2568624509, "destination": 2568624486, "path": [[942.1892764933659, -3243.9005814239863], [1693.239276491454, -3238.5005814212773], [1703.9892764927345, -3244.6005814215087], [1712.0392764908843, -3251.7005814227673], [1765.4892764937813, -3252.7005814237955]]}, {"length": 2.54207236344, "source": 2568624509, "destination": 2568624510, "path": [[942.1892764933659, -3243.9005814239863], [927.0892764945415, -3244.000581421602]]}, {"length": 69.0126396218, "source": 2568624510, "destination": 2568624489, "path": [[927.0892764945415, -3244.000581421602], [517.039276495268, -3246.950581420549]]}, {"length": 2.54207236344, "source": 2568624510, "destination": 2568624509, "path": [[927.0892764945415, -3244.000581421602], [942.1892764933659, -3243.9005814239863]]}, {"length": 8.80702039762, "source": 2568624510, "destination": 135064774, "path": [[927.0892764945415, -3244.000581421602], [926.8392764951727, -3204.4005814206857]]}, {"length": 73.8522346143, "source": 1932196245, "destination": 1933539617, "path": [[5407.089276488364, -6875.700581421284], [5492.189276495196, -6874.650581423225], [5788.289276495107, -6870.400581423297], [5845.88927649321, -6869.650581421638]]}, {"length": 25.3023854161, "source": 1932196245, "destination": 1932196275, "path": [[5407.089276488364, -6875.700581421284], [5277.189276490901, -6933.000581422988]]}, {"length": 18.5389235037, "source": 1932196245, "destination": 1933539621, "path": [[5407.089276488364, -6875.700581421284], [5296.939276490775, -6877.20058142105]]}, {"length": 47.9721805114, "source": 2568624512, "destination": 4719864584, "path": [[-1271.960723506993, -3306.95058142183], [-1235.6107235049762, -3093.0005814227]]}, {"length": 156.915950138, "source": 2568624512, "destination": 4719871296, "path": [[-1271.960723506993, -3306.95058142183], [-1319.8607235054283, -3396.400581422654], [-1349.3107235049706, -3436.0005814235706], [-1451.6607235108836, -3489.300581421162], [-1482.9107235101446, -3502.0505814209455], [-1553.360723505648, -3504.8005814211083], [-1696.5607235093216, -3628.6505814224765], [-1694.1607235096967, -3730.6505814207467], [-1830.1607235073902, -3797.600581421534]]}, {"length": 18.7145646811, "source": 2568624512, "destination": 2568624515, "path": [[-1271.960723506993, -3306.95058142183], [-1160.7607235077921, -3307.500581421152]]}, {"length": 74.2430891217, "source": 2568624513, "destination": 2568624521, "path": [[-1161.060723511298, -2915.950581421356], [-1168.010723510804, -2582.150581421416]]}, {"length": 16.1989449136, "source": 2568624513, "destination": 2568624514, "path": [[-1161.060723511298, -2915.950581421356], [-1257.3107235098746, -2916.100581423109]]}, {"length": 104.970730161, "source": 2568624513, "destination": 2568600116, "path": [[-1161.060723511298, -2915.950581421356], [-537.360723505742, -2911.850581423181]]}, {"length": 27.6545789273, "source": 2568624513, "destination": 1667939637, "path": [[-1161.060723511298, -2915.950581421356], [-1160.310723506086, -3040.300581421462]]}, {"length": 49.6718293258, "source": 135076226, "destination": 2062743161, "path": [[9709.63927649393, 495.44941857604385], [10004.689276492229, 500.0994185770935]]}, {"length": 15.7564219643, "source": 135076226, "destination": 134979211, "path": [[9709.63927649393, 495.44941857604385], [9709.439276491594, 424.59941857941885]]}, {"length": 18.7145646811, "source": 2568624515, "destination": 2568624512, "path": [[-1160.7607235077921, -3307.500581421152], [-1271.960723506993, -3306.95058142183]]}, {"length": 34.8150376869, "source": 2568624515, "destination": 2568624516, "path": [[-1160.7607235077921, -3307.500581421152], [-1160.7607235077921, -3150.950581421341]]}, {"length": 89.6785136478, "source": 2568624515, "destination": 4719907357, "path": [[-1160.7607235077921, -3307.500581421152], [-627.9107235087622, -3304.4005814240054]]}, {"length": 11.0509083957, "source": 135076228, "destination": 135076353, "path": [[9682.489276492845, 4111.399418576411], [9616.839276489485, 4111.749418576948]]}, {"length": 51.6369608786, "source": 135076228, "destination": 2062743178, "path": [[9682.489276492845, 4111.399418576411], [9734.839276489993, 4111.099418576458], [9989.239276492866, 4109.749418578445]]}, {"length": 203.088466879, "source": 135076228, "destination": 134959815, "path": [[9682.489276492845, 4111.399418576411], [9682.739276492213, 4062.799418576901], [9687.189276490926, 3198.199418577019]]}, {"length": 76.2914741509, "source": 2568624517, "destination": 2568624519, "path": [[17.53927649161824, -3300.000581422324], [-435.7607235050409, -3303.2505814212245]]}, {"length": 19.6866880101, "source": 2568624517, "destination": 2568624518, "path": [[17.53927649161824, -3300.000581422324], [14.889276492624504, -3211.5005814219444]]}, {"length": 32.7935621188, "source": 2568624517, "destination": 2568624511, "path": [[17.53927649161824, -3300.000581422324], [212.38927649136485, -3298.650581420759]]}, {"length": 76.298030393, "source": 2568624518, "destination": 2568624520, "path": [[14.889276492624504, -3211.5005814219444], [-438.46072350817167, -3213.550581421032]]}, {"length": 19.6866880101, "source": 2568624518, "destination": 2568624517, "path": [[14.889276492624504, -3211.5005814219444], [17.53927649161824, -3300.000581422324]]}, {"length": 19.9536121336, "source": 2568624519, "destination": 2568624520, "path": [[-435.7607235050409, -3303.2505814212245], [-438.46072350817167, -3213.550581421032]]}, {"length": 32.3388599842, "source": 2568624519, "destination": 4719907357, "path": [[-435.7607235050409, -3303.2505814212245], [-627.9107235087622, -3304.4005814240054]]}, {"length": 76.2914741509, "source": 2568624519, "destination": 2568624517, "path": [[-435.7607235050409, -3303.2505814212245], [17.53927649161824, -3300.000581422324]]}, {"length": 56.5219125463, "source": 2568624520, "destination": 2568600119, "path": [[-438.46072350817167, -3213.550581421032], [-436.16072350971535, -2959.4005814210786]]}, {"length": 110.876346825, "source": 2568624520, "destination": 4719864582, "path": [[-438.46072350817167, -3213.550581421032], [-920.4607235062667, -3215.700581421288], [-1009.6607235112742, -3216.10058142241], [-1008.8607235090308, -3149.8005814221133]]}, {"length": 19.9536121336, "source": 2568624520, "destination": 2568624519, "path": [[-438.46072350817167, -3213.550581421032], [-435.7607235050409, -3303.2505814212245]]}, {"length": 74.2430891217, "source": 2568624521, "destination": 2568624513, "path": [[-1168.010723510804, -2582.150581421416], [-1161.060723511298, -2915.950581421356]]}, {"length": 4.51417729956, "source": 2568624521, "destination": 2568624523, "path": [[-1168.010723510804, -2582.150581421416], [-1167.7607235114351, -2561.8505814222203]]}, {"length": 3.60254635217, "source": 2568624521, "destination": 2568624533, "path": [[-1168.010723510804, -2582.150581421416], [-1189.410723505091, -2582.4505814213694]]}, {"length": 6.53952854344, "source": 2568624522, "destination": 2568624529, "path": [[-1303.3607235115596, -2584.1505814234724], [-1264.5107235087494, -2583.5505814235657]]}, {"length": 107.504641838, "source": 2068887959, "destination": 3758384264, "path": [[-2680.6107235088916, 3151.449418577812], [-2677.5607235052235, 2668.049418577567]]}, {"length": 6.42902858172, "source": 2568624525, "destination": 2568624530, "path": [[-1302.810723508685, -2482.65058142394], [-1264.610723509918, -2482.400581421018]]}, {"length": 28.576022152, "source": 2074057102, "destination": 2074057158, "path": [[9724.18927648988, -1329.9005814211284], [9765.639276494654, -1325.5505814235846], [9808.289276492133, -1323.8005814208975], [9892.739276494922, -1332.5005814230906]]}, {"length": 14.6012422867, "source": 2074057102, "destination": 2074057062, "path": [[9724.18927648988, -1329.9005814211284], [9725.289276488526, -1395.5505814209346]]}, {"length": 10.8430228515, "source": 2068887951, "destination": 134980203, "path": [[-1947.1607235104216, 3154.14941857739], [-1944.0107235055848, 3202.8494185780687]]}, {"length": 58.2561747028, "source": 2068887951, "destination": 2069036373, "path": [[-1947.1607235104216, 3154.14941857739], [-1945.1607235083657, 2892.199418578656]]}, {"length": 123.461403298, "source": 2068887951, "destination": 2068887959, "path": [[-1947.1607235104216, 3154.14941857739], [-2680.6107235088916, 3151.449418577812]]}, {"length": 12.8320961474, "source": 135076240, "destination": 2140984946, "path": [[9710.489276493206, 5932.89941857833], [9710.789276489606, 5875.199418579058]]}, {"length": 16.6840750268, "source": 135076240, "destination": 135076364, "path": [[9710.489276493206, 5932.89941857833], [9614.38927649283, 5914.549418577053]]}, {"length": 58.0666577143, "source": 2068887953, "destination": 2068877122, "path": [[-478.8607235113318, 3159.4994185759615], [-477.2107235098133, 2898.3994185765027]]}, {"length": 10.8301315659, "source": 2068887953, "destination": 134980211, "path": [[-478.8607235113318, 3159.4994185759615], [-479.1607235077322, 3208.1994185766407]]}, {"length": 121.273093842, "source": 2068887953, "destination": 2068887957, "path": [[-478.8607235113318, 3159.4994185759615], [-1199.3107235070966, 3156.8494185769678]]}, {"length": 17.8801504675, "source": 2074057106, "destination": 2074057120, "path": [[9648.189276489917, -1224.2505814228366], [9648.489276493421, -1143.8505814211908]]}, {"length": 36.3887922353, "source": 2074057106, "destination": 2074057118, "path": [[9648.189276489917, -1224.2505814228366], [9505.539276489117, -1224.70058142099], [9433.639276494432, -1212.950581422234]]}, {"length": 15.7898487408, "source": 135076243, "destination": 135076240, "path": [[9709.989276494469, 6003.899418576708], [9710.489276493206, 5932.89941857833]]}, {"length": 9.09994619706, "source": 135076243, "destination": 2140984943, "path": [[9709.989276494469, 6003.899418576708], [9763.339276489092, 6010.499418579229]]}, {"length": 56.7993223725, "source": 4224850324, "destination": 4224850296, "path": [[6545.289276495225, 4599.449418577706], [6547.139276491976, 4344.049418577356]]}, {"length": 42.4208033992, "source": 4224850324, "destination": 4224850400, "path": [[6545.289276495225, 4599.449418577706], [6494.339276493121, 4578.149418577482], [6470.839276488505, 4572.549418575989], [6444.039276495061, 4569.999418578163], [6301.889276493001, 4569.999418578163]]}, {"length": 36.6728582295, "source": 4224850324, "destination": 4224850346, "path": [[6545.289276495225, 4599.449418577706], [6544.089276488307, 4764.349418579172]]}, {"length": 12.6417498561, "source": 2568624533, "destination": 2568624529, "path": [[-1189.410723505091, -2582.4505814213694], [-1264.5107235087494, -2583.5505814235657]]}, {"length": 25.5977333339, "source": 2568624533, "destination": 2568624530, "path": [[-1189.410723505091, -2582.4505814213694], [-1264.610723509918, -2482.400581421018]]}, {"length": 3.60254635217, "source": 2568624533, "destination": 2568624521, "path": [[-1189.410723505091, -2582.4505814213694], [-1168.010723510804, -2582.150581421416]]}, {"length": 10.8475934961, "source": 2568624534, "destination": 2568624530, "path": [[-1200.1607235063716, -2481.950581422865], [-1264.610723509918, -2482.400581421018]]}, {"length": 5.62927887945, "source": 2568624534, "destination": 2568624526, "path": [[-1200.1607235063716, -2481.950581422865], [-1166.7107235098229, -2481.7005814234963]]}, {"length": 22.4662247881, "source": 2568624534, "destination": 2568624535, "path": [[-1200.1607235063716, -2481.950581422865], [-1266.760723510174, -2394.4005814229286]]}, {"length": 19.5732826345, "source": 2568624535, "destination": 2568624530, "path": [[-1266.760723510174, -2394.4005814229286], [-1264.610723509918, -2482.400581421018]]}, {"length": 4.07006256124, "source": 2568624535, "destination": 2568624532, "path": [[-1266.760723510174, -2394.4005814229286], [-1267.2607235089117, -2376.100581422236]]}, {"length": 22.4662247881, "source": 2568624535, "destination": 2568624534, "path": [[-1266.760723510174, -2394.4005814229286], [-1200.1607235063716, -2481.950581422865]]}, {"length": 19.9933208537, "source": 1932196248, "destination": 1932196257, "path": [[5211.33927649231, -6878.100581420909], [5092.5392764895605, -6879.400581421891]]}, {"length": 8.27410083682, "source": 1932196248, "destination": 1932196197, "path": [[5211.33927649231, -6878.100581420909], [5212.339276489785, -6840.9005814231705]]}, {"length": 5.98168562917, "source": 1932196248, "destination": 1932196246, "path": [[5211.33927649231, -6878.100581420909], [5246.889276492084, -6877.8505814215405]]}, {"length": 62.9060881546, "source": 2568624537, "destination": 4719820337, "path": [[-1334.3107235073148, -2369.000581420977], [-1356.4107235097822, -2364.2005814217273], [-1707.110723508265, -2369.80058142322]]}, {"length": 11.4566258514, "source": 2568624537, "destination": 2568624532, "path": [[-1334.3107235073148, -2369.000581420977], [-1302.1107235076101, -2375.1005814212076], [-1267.2607235089117, -2376.100581422236]]}, {"length": 26.4098018539, "source": 2568624537, "destination": 2568624541, "path": [[-1334.3107235073148, -2369.000581420977], [-1332.9607235093022, -2250.250581422364]]}, {"length": 7.43047928134, "source": 2568624538, "destination": 2568599340, "path": [[-1209.5607235096395, -2376.1505814228203], [-1165.4107235088418, -2376.1505814228203]]}, {"length": 9.71129611647, "source": 2568624538, "destination": 2568624532, "path": [[-1209.5607235096395, -2376.1505814228203], [-1267.2607235089117, -2376.100581422236]]}, {"length": 34.9684867736, "source": 2568624538, "destination": 2568624541, "path": [[-1209.5607235096395, -2376.1505814228203], [-1260.510723511743, -2328.4005814225848], [-1311.510723510878, -2280.700581422934], [-1332.9607235093022, -2250.250581422364]]}, {"length": 58.2560199939, "source": 2069036783, "destination": 4253708832, "path": [[4945.03927649248, 5137.5494185776915], [5291.089276489913, 5140.09941857907]]}, {"length": 61.8579926698, "source": 2069036783, "destination": 134954315, "path": [[4945.03927649248, 5137.5494185776915], [4945.839276494724, 4859.399418577937]]}, {"length": 60.3455638351, "source": 2069036783, "destination": 134985691, "path": [[4945.03927649248, 5137.5494185776915], [4945.33927648888, 5408.89941857614]]}, {"length": 67.7372132433, "source": 2074057116, "destination": 2074057106, "path": [[9720.839276489813, -929.7005814232762], [9698.039276493375, -1071.9005814223692], [9690.289276491625, -1160.4005814227492], [9684.839276488332, -1181.40058142302], [9674.189276488221, -1197.9505814210256], [9648.189276489917, -1224.2505814228366]]}, {"length": 55.0281666953, "source": 2074057116, "destination": 2086854523, "path": [[9720.839276489813, -929.7005814232762], [10047.789276491414, -929.0005814222013]]}, {"length": 89.0057622955, "source": 2074057116, "destination": 2074057102, "path": [[9720.839276489813, -929.7005814232762], [9725.339276492661, -1213.6005814227246], [9724.18927648988, -1329.9005814211284]]}, {"length": 15.1004048776, "source": 2217933213, "destination": 3146557073, "path": [[-4852.310723507003, 393.3494185766051], [-4852.210723505834, 325.44941857892695]]}, {"length": 118.889108862, "source": 2217933213, "destination": 1433125635, "path": [[-4852.310723507003, 393.3494185766051], [-4146.010723509618, 399.99941857615795]]}, {"length": 40.4712319077, "source": 2217933213, "destination": 3496300573, "path": [[-4852.310723507003, 393.3494185766051], [-5092.760723506728, 392.8494185778675]]}, {"length": 24.8197607485, "source": 2217933213, "destination": 2960622571, "path": [[-4852.310723507003, 393.3494185766051], [-4851.11072350719, 504.94941857692766]]}, {"length": 41.2556565134, "source": 2074057118, "destination": 2074057120, "path": [[9433.639276494432, -1212.950581422234], [9501.189276491572, -1207.100581421372], [9545.389276489403, -1199.7005814237127], [9578.889276490088, -1191.5505814208416], [9609.73927649178, -1180.400581421992], [9624.539276494204, -1170.5505814205708], [9636.639276493497, -1159.4005814217212], [9648.489276493421, -1143.8505814211908]]}, {"length": 79.374821561, "source": 2074057118, "destination": 877895724, "path": [[9433.639276494432, -1212.950581422234], [8962.039276489975, -1215.4505814230276]]}, {"length": 19.0836070625, "source": 2568624543, "destination": 2568624541, "path": [[-1334.4107235084834, -2164.4505814215618], [-1332.9607235093022, -2210.650581421447], [-1332.9607235093022, -2250.250581422364]]}, {"length": 45.7013293212, "source": 2074057120, "destination": 2086854544, "path": [[9648.489276493421, -1143.8505814211908], [9647.589276490009, -938.3505814213322]]}, {"length": 23.8905538257, "source": 1932196257, "destination": 1932196272, "path": [[5092.5392764895605, -6879.400581421891], [5216.439276495066, -6931.85058142376]]}, {"length": 19.9933208537, "source": 1932196257, "destination": 1932196248, "path": [[5092.5392764895605, -6879.400581421891], [5211.33927649231, -6878.100581420909]]}, {"length": 20.2208013211, "source": 1932196257, "destination": 1932196259, "path": [[5092.5392764895605, -6879.400581421891], [4972.389276488798, -6880.700581422871]]}, {"length": 2.44262797136, "source": 1932196259, "destination": 1933539624, "path": [[4972.389276488798, -6880.700581422871], [4957.889276489879, -6881.000581422824]]}, {"length": 20.2208013211, "source": 1932196259, "destination": 1932196257, "path": [[4972.389276488798, -6880.700581422871], [5092.5392764895605, -6879.400581421891]]}, {"length": 58.0916063032, "source": 1932196259, "destination": 1932196312, "path": [[4972.389276488798, -6880.700581422871], [5018.089276489945, -6929.55058142175], [5038.939276488463, -6968.15058142164], [5054.339276490793, -7003.200581422675], [5057.539276492662, -7080.400581422453], [5094.039276492878, -7116.550581422132]]}, {"length": 9.73539596254, "source": 4224850341, "destination": 4224950800, "path": [[6452.439276493749, 4837.749418577176], [6492.189276492865, 4805.9494185785925]]}, {"length": 77.3385315454, "source": 4224850341, "destination": 135008308, "path": [[6452.439276493749, 4837.749418577176], [6480.339276492941, 4858.899418579199], [6529.839276488758, 4888.399418579325], [6583.839276494529, 4912.899418577865], [6641.839276490202, 4932.39941857837], [6702.339276493774, 4945.89941857626], [6772.589276494045, 4954.299418578501], [6840.339276493523, 4954.899418578407], [6868.839276492622, 4953.399418578641]]}, {"length": 36.9823076424, "source": 4224850341, "destination": 135038607, "path": [[6452.439276493749, 4837.749418577176], [6395.83927649312, 4794.899418577359], [6297.439276494288, 4719.899418578421]]}, {"length": 13.3794980349, "source": 2568624550, "destination": 2568599376, "path": [[-1248.4607235094813, -1932.6005814228608], [-1169.0607235053108, -1929.6005814233297]]}, {"length": 32.3876762521, "source": 2568624550, "destination": 4719495256, "path": [[-1248.4607235094813, -1932.6005814228608], [-1292.2107235056046, -1925.4505814210177], [-1327.0607235114085, -1913.3005814211401], [-1356.5607235079824, -1899.0505814215908], [-1410.2107235061112, -1893.0005814219442], [-1430.260723509491, -1893.800581420635]]}, {"length": 24.1809175456, "source": 2568624550, "destination": 2568624545, "path": [[-1248.4607235094813, -1932.6005814228608], [-1282.0107235071987, -1941.700581422623], [-1302.1107235076101, -1953.9005814230848], [-1318.2107235110152, -1969.1005814230778], [-1326.260723509165, -1980.3005814225116], [-1334.3107235073148, -2009.7005814214697]]}, {"length": 22.0436343452, "source": 2189326759, "destination": 134957816, "path": [[-4709.760723507372, -187.10058142090702], [-4692.9607235099975, -177.45058142182302], [-4678.210723511711, -171.3505814215921], [-4652.710723505038, -166.70058142054245], [-4585.910723506004, -165.25058142136118]]}, {"length": 34.7174669171, "source": 2189326759, "destination": 3146411825, "path": [[-4709.760723507372, -187.10058142090702], [-4723.0107235094465, -159.9505814233737], [-4735.26072350694, -146.6505814207153], [-4758.960723506789, -127.5005814207475], [-4823.410723510335, -94.55058142293638], [-4850.860723507822, -79.15058142060616]]}, {"length": 61.6679003855, "source": 2960628137, "destination": 1855078885, "path": [[-2633.6607235109, -3567.6005814231357], [-2615.9107235059764, -3634.050581421633], [-2615.9107235059764, -3727.900581420585], [-2623.3107235071884, -3768.0005814237916], [-2640.760723508606, -3802.000581423215], [-2672.960723508311, -3832.0505814226635]]}, {"length": 141.577174021, "source": 2960628137, "destination": 1855078878, "path": [[-2633.6607235109, -3567.6005814231357], [-2634.510723510175, -3536.5505814226594], [-2653.0107235060996, -2931.1505814213488]]}, {"length": 12.7248897721, "source": 4224850346, "destination": 4224950800, "path": [[6544.089276488307, 4764.349418579172], [6492.189276492865, 4805.9494185785925]]}, {"length": 59.4168401747, "source": 4224850346, "destination": 4224850400, "path": [[6544.089276488307, 4764.349418579172], [6301.889276493001, 4569.999418578163]]}, {"length": 122.339172975, "source": 4224850346, "destination": 4224850352, "path": [[6544.089276488307, 4764.349418579172], [6595.589276493285, 4799.44941857724], [6630.439276491984, 4819.249418577698], [6672.689276491894, 4834.449418577691], [6714.939276491805, 4845.099418577803], [6758.539276489728, 4851.699418576772], [6796.089276491557, 4855.2494185791775], [6837.639276490392, 4854.7494185768865], [6886.58927649044, 4850.699418579296], [6932.189276490419, 4842.59941857701], [6972.439276488274, 4830.399418576548], [7005.289276492022, 4816.199418577582], [7036.139276493714, 4798.39941857918], [7066.289276494331, 4776.099418577928], [7099.139276490973, 4749.1994185762105], [7158.989276490502, 4696.1994185785725]]}, {"length": 36.6728582295, "source": 4224850346, "destination": 4224850324, "path": [[6544.089276488307, 4764.349418579172], [6545.289276495225, 4599.449418577706]]}, {"length": 17.9927064831, "source": 2568624555, "destination": 2568624556, "path": [[-934.4607235064473, -1928.0505814229798], [-935.860723508597, -1847.1505814225964]]}, {"length": 41.0672288578, "source": 2568624555, "destination": 2568599452, "path": [[-934.4607235064473, -1928.0505814229798], [-690.4607235114213, -1926.4005814214613]]}, {"length": 34.3098017499, "source": 2568624555, "destination": 2568599372, "path": [[-934.4607235064473, -1928.0505814229798], [-1138.3107235047873, -1929.4005814209925]]}, {"length": 26.9069038622, "source": 2568624555, "destination": 2568624551, "path": [[-934.4607235064473, -1928.0505814229798], [-935.8107235115654, -1953.5505814225473], [-933.1107235084346, -1986.1005814227894], [-930.4107235053038, -2010.5005814237131], [-914.2107235078356, -2046.8505814221771]]}, {"length": 2.79536086051, "source": 2960628140, "destination": 1667888138, "path": [[-3570.510723506004, -3577.850581422126], [-3558.9107235054485, -3568.8505814235327]]}, {"length": 30.888882093, "source": 2960628140, "destination": 1667888175, "path": [[-3570.510723506004, -3577.850581422126], [-3586.610723509409, -3597.5505814214157], [-3594.710723511696, -3619.850581422668], [-3594.210723505853, -3643.0005814231945], [-3585.110723506091, -3665.1005814221094], [-3568.110723506379, -3684.40058142383], [-3544.710723510036, -3699.2505814232854]]}, {"length": 50.9050814017, "source": 134971372, "destination": 134948449, "path": [[-11657.510723509291, 339.09941857857007], [-11650.510723505648, 269.94941857694243], [-11650.660723510953, 110.39941857760027]]}, {"length": 11.1870843277, "source": 134971372, "destination": 134971378, "path": [[-11657.510723509291, 339.09941857857007], [-11723.960723507787, 338.0494185769578]]}, {"length": 26.4098018539, "source": 2568624541, "destination": 2568624537, "path": [[-1332.9607235093022, -2250.250581422364], [-1334.3107235073148, -2369.000581420977]]}, {"length": 34.9684867736, "source": 2568624541, "destination": 2568624538, "path": [[-1332.9607235093022, -2250.250581422364], [-1311.510723510878, -2280.700581422934], [-1260.510723511743, -2328.4005814225848], [-1209.5607235096395, -2376.1505814228203]]}, {"length": 19.0836070625, "source": 2568624541, "destination": 2568624543, "path": [[-1332.9607235093022, -2250.250581422364], [-1332.9607235093022, -2210.650581421447], [-1334.4107235084834, -2164.4505814215618]]}, {"length": 145.094168239, "source": 4224850352, "destination": 4224849385, "path": [[7158.989276490502, 4696.1994185785725], [7257.439276493471, 4606.349418576628], [7296.289276489177, 4569.499418579426], [7319.789276493793, 4542.099418578971], [7337.1892764910735, 4518.749418576107], [7348.589276489292, 4494.8994185780575], [7357.3392764885175, 4468.499418578631], [7363.339276494685, 4445.6494185780575], [7366.689276494753, 4423.849418579095], [7368.039276492766, 4399.999418577494], [7367.389276488722, 4378.149418577948], [7363.339276494685, 4356.849418577724], [7357.3392764885175, 4333.99941857715], [7348.739276494598, 4310.599418577254], [7338.689276494392, 4288.249418578971], [7326.589276495099, 4265.949418577719], [7313.189276494824, 4246.149418577261], [7292.389276493339, 4222.299418579212], [7272.989276494001, 4203.499418576229], [7253.389276492328, 4186.2994185777325], [7232.739276489042, 4164.399418577603], [7201.339276491581, 4126.899418576358]]}, {"length": 122.339172975, "source": 4224850352, "destination": 4224850346, "path": [[7158.989276490502, 4696.1994185785725], [7099.139276490973, 4749.1994185762105], [7066.289276494331, 4776.099418577928], [7036.139276493714, 4798.39941857918], [7005.289276492022, 4816.199418577582], [6972.439276488274, 4830.399418576548], [6932.189276490419, 4842.59941857701], [6886.58927649044, 4850.699418579296], [6837.639276490392, 4854.7494185768865], [6796.089276491557, 4855.2494185791775], [6758.539276489728, 4851.699418576772], [6714.939276491805, 4845.099418577803], [6672.689276491894, 4834.449418577691], [6630.439276491984, 4819.249418577698], [6595.589276493285, 4799.44941857724], [6544.089276488307, 4764.349418579172]]}, {"length": 12.4311051791, "source": 4224850352, "destination": 4224963686, "path": [[7158.989276490502, 4696.1994185785725], [7215.539276494099, 4732.149418579467]]}, {"length": 12.8208534807, "source": 4224850353, "destination": 4224850360, "path": [[7698.539276489669, 4292.349418577146], [7643.6892764917275, 4332.349418579184]]}, {"length": 10.2666426159, "source": 4224850353, "destination": 844180730, "path": [[7698.539276489669, 4292.349418577146], [7735.539276488624, 4329.049418576147]]}, {"length": 258.956766953, "source": 4224850353, "destination": 844180725, "path": [[7698.539276489669, 4292.349418577146], [7469.739276494636, 4118.649418579424], [7394.889276490347, 4041.8494185772147], [7367.489276489891, 3987.5494185785956], [7278.939276488927, 3780.4494185778026], [7277.1892764933455, 3523.0494185789494], [7269.589276489796, 3491.149418579198], [7194.489276493243, 3239.3994185788697]]}, {"length": 10.0696556917, "source": 1932196275, "destination": 1932196267, "path": [[5277.189276490901, -6933.000581422988], [5273.339276492095, -6924.7505814225005], [5267.389276490065, -6915.7505814239075], [5246.339276489209, -6894.600581421883]]}, {"length": 25.3023854161, "source": 1932196275, "destination": 1932196245, "path": [[5277.189276490901, -6933.000581422988], [5407.089276488364, -6875.700581421284]]}, {"length": 20.3540114711, "source": 1932196275, "destination": 1932196287, "path": [[5277.189276490901, -6933.000581422988], [5278.089276494313, -6935.000581421491], [5277.739276493776, -6943.700581423684], [5274.9392764894765, -6954.850581422534], [5266.989276492495, -6964.1505814210805], [5257.039276493459, -6970.150581423695], [5247.889276489559, -6970.8005814206335], [5237.189276492416, -6970.450581423648], [5226.839276488704, -6968.350581423976], [5195.289276493042, -6959.400581422415]]}, {"length": 59.52139823, "source": 2189326772, "destination": 2331404994, "path": [[-4727.910723509865, -730.8005814223861], [-4767.510723510782, -734.0005814207018], [-4816.810723511367, -736.1005814239263], [-5081.260723507341, -735.5005814240201]]}, {"length": 13.1392147074, "source": 2189326772, "destination": 134957819, "path": [[-4727.910723509865, -730.8005814223861], [-4650.2607235083815, -724.7005814221552]]}, {"length": 121.78638711, "source": 2189326772, "destination": 2189326759, "path": [[-4727.910723509865, -730.8005814223861], [-4728.560723506803, -646.9005814224715], [-4731.410723508134, -278.4505814226179], [-4731.760723508671, -231.75058142399507], [-4728.210723506265, -214.90058142248358], [-4721.160723505591, -198.75058142204693], [-4709.760723507372, -187.10058142090702]]}, {"length": 90.2357145029, "source": 2074057142, "destination": 2074057106, "path": [[9650.489276488372, -1630.0005814215979], [9649.339276492698, -1331.100581420941], [9648.189276489917, -1224.2505814228366]]}, {"length": 69.3446705183, "source": 2074057142, "destination": 2074057102, "path": [[9650.489276488372, -1630.0005814215979], [9675.139276488664, -1485.0505814223425], [9682.239276493476, -1388.7505814231815], [9686.239276490483, -1370.500581423073], [9692.889276493588, -1357.0005814216302], [9703.6892764919, -1344.1005814236462], [9724.18927648988, -1329.9005814211284]]}, {"length": 267.34334503, "source": 4224850360, "destination": 3357236920, "path": [[7643.6892764917275, 4332.349418579184], [7466.33927649043, 4173.399418576196], [7381.339276491872, 4094.3994185766996], [7334.839276488481, 4038.8994185782676], [7301.839276493638, 3987.8994185791325], [7271.8392764912205, 3925.899418579348], [7251.3392764932405, 3861.899418577508], [7240.339276492591, 3796.3994185794545], [7238.839276489272, 3593.899418579127], [7235.489276489205, 3531.6494185764213], [7227.839276488623, 3481.2494185771925], [7221.2892764937915, 3453.4994185762002], [7204.989276495155, 3405.8494185771337], [7188.539276491212, 3366.299418576801], [7174.689276489233, 3337.399418576581], [7145.989276494902, 3290.7494185785426], [7112.8892764917855, 3245.8994185766696], [7110.039276490454, 3242.79941857597]]}, {"length": 12.8208534807, "source": 4224850360, "destination": 4224850353, "path": [[7643.6892764917275, 4332.349418579184], [7698.539276489669, 4292.349418577146]]}, {"length": 15.9660963444, "source": 4224850360, "destination": 4224850306, "path": [[7643.6892764917275, 4332.349418579184], [7579.489276494655, 4385.1994185786225]]}, {"length": 56.2553118355, "source": 4224850363, "destination": 135097480, "path": [[7592.289276495023, 4460.449418576928], [7379.339276489816, 4655.399418577844]]}, {"length": 9.9356177611, "source": 4224850363, "destination": 4224963626, "path": [[7592.289276495023, 4460.449418576928], [7630.88927649136, 4494.249418577567]]}, {"length": 12.4723625632, "source": 4224850363, "destination": 4224950844, "path": [[7592.289276495023, 4460.449418576928], [7542.88927649327, 4418.649418578724]]}, {"length": 9.25316132485, "source": 4224850363, "destination": 135086398, "path": [[7592.289276495023, 4460.449418576928], [7627.339276488954, 4428.399418578976]]}, {"length": 9.91245936916, "source": 4224850364, "destination": 135086232, "path": [[7726.3392764947985, 4406.449418578262], [7688.339276491262, 4372.399418578254]]}, {"length": 11.6747424174, "source": 4224850364, "destination": 4224963696, "path": [[7726.3392764947985, 4406.449418578262], [7771.489276493071, 4366.599418577976]]}, {"length": 16.112195857, "source": 4224850364, "destination": 4224850297, "path": [[7726.3392764947985, 4406.449418578262], [7664.1892764897075, 4461.549418579125]]}, {"length": 7.08653416421, "source": 1932196287, "destination": 1932196272, "path": [[5195.289276493042, -6959.400581422415], [5216.439276495066, -6931.85058142376]]}, {"length": 39.0753624141, "source": 1932196287, "destination": 1932196312, "path": [[5195.289276493042, -6959.400581422415], [5164.8392764889195, -7001.050581422419], [5133.339276490289, -7041.750581421979], [5117.039276491652, -7064.200581421432], [5107.3392764919845, -7080.050581421915], [5094.039276492878, -7116.550581422132]]}, {"length": 20.3540114711, "source": 1932196287, "destination": 1932196275, "path": [[5195.289276493042, -6959.400581422415], [5226.839276488704, -6968.350581423976], [5237.189276492416, -6970.450581423648], [5247.889276489559, -6970.8005814206335], [5257.039276493459, -6970.150581423695], [5266.989276492495, -6964.1505814210805], [5274.9392764894765, -6954.850581422534], [5277.739276493776, -6943.700581423684], [5278.089276494313, -6935.000581421491], [5277.189276490901, -6933.000581422988]]}, {"length": 38.6559729667, "source": 2074057152, "destination": 2074057136, "path": [[9646.889276488935, -783.5505814206556], [9636.539276492329, -745.0005814213512], [9624.539276494204, -716.8505814227899], [9608.489276494936, -697.6005814216535], [9586.989276492375, -685.4005814211916], [9561.43927648867, -675.9505814208921], [9510.489276493672, -664.300581423305]]}, {"length": 26.6756739175, "source": 2074057152, "destination": 134979293, "path": [[9646.889276488935, -783.5505814206556], [9646.339276493165, -663.6005814222301]]}, {"length": 10.6771766398, "source": 2568624544, "destination": 2568624545, "path": [[-1335.6607235053275, -2057.7005814210734], [-1334.3107235073148, -2009.7005814214697]]}, {"length": 20.2221384252, "source": 2074057158, "destination": 2086854572, "path": [[9892.739276494922, -1332.5005814230906], [10012.889276488579, -1332.8005814230437]]}, {"length": 33.66614993, "source": 2074057158, "destination": 2074057062, "path": [[9892.739276494922, -1332.5005814230906], [9817.689276488294, -1339.0505814214748], [9785.43927649156, -1346.8505814238085], [9761.339276494142, -1356.3005814205553], [9742.589276491743, -1372.5005814215763], [9725.289276488526, -1395.5505814209346]]}, {"length": 10.6771766398, "source": 2568624545, "destination": 2568624544, "path": [[-1334.3107235073148, -2009.7005814214697], [-1335.6607235053275, -2057.7005814210734]]}, {"length": 33.4807312811, "source": 2568624545, "destination": 2585900350, "path": [[-1334.3107235073148, -2009.7005814214697], [-1345.8107235067018, -1970.100581420553], [-1359.2607235111132, -1951.8505814239973], [-1377.3607235094687, -1930.5505814237733], [-1404.1607235100173, -1910.2505814210247], [-1445.5607235106527, -1894.4505814211254]]}, {"length": 24.1809175456, "source": 2568624545, "destination": 2568624550, "path": [[-1334.3107235073148, -2009.7005814214697], [-1326.260723509165, -1980.3005814225116], [-1318.2107235110152, -1969.1005814230778], [-1302.1107235076101, -1953.9005814230848], [-1282.0107235071987, -1941.700581422623], [-1248.4607235094813, -1932.6005814228608]]}, {"length": 26.9709967055, "source": 2960628168, "destination": 4847713530, "path": [[-3053.0107235051673, -3850.9505814232625], [-3028.960723504781, -3832.7505814237384], [-2999.460723508207, -3819.8505814222017], [-2966.6107235115646, -3813.1005814214805], [-2932.610723505036, -3813.0005814238643], [-2910.4107235085053, -3820.200581422739]]}, {"length": 27.2590305162, "source": 2960628168, "destination": 1667872478, "path": [[-3053.0107235051673, -3850.9505814232625], [-3069.46072350911, -3872.050581421149], [-3078.510723504735, -3895.600581422798], [-3079.7107235116528, -3920.1005814213377], [-3072.910723510347, -3944.0505814205553], [-3058.560723509629, -3966.050581421854]]}, {"length": 16.6870458619, "source": 2568600013, "destination": 2568599341, "path": [[280.98927649011785, -2443.050581423023], [277.9392764935551, -2368.0505814205335]]}, {"length": 104.369300936, "source": 2568600013, "destination": 2568600110, "path": [[280.98927649011785, -2443.050581423023], [283.03927648920535, -2493.350581421083], [263.43927649463694, -2718.450581422616], [214.7392764939582, -2908.3005814207754]]}, {"length": 17.1028044096, "source": 2568600013, "destination": 2587010637, "path": [[280.98927649011785, -2443.050581423023], [245.389276493313, -2449.8005814237445], [227.93927649189527, -2458.950581420538], [215.88927648963363, -2470.10058142294], [206.48927649347115, -2487.3505814220207]]}, {"length": 9.94332523913, "source": 2960628174, "destination": 2960628177, "path": [[-2824.0607235048287, -3881.7505814208175], [-2789.6607235078363, -3918.1005814228342]]}, {"length": 17.5521510043, "source": 2960628174, "destination": 4847713531, "path": [[-2824.0607235048287, -3881.7505814208175], [-2840.76072350814, -3855.6505814213438], [-2866.7107235094136, -3834.3005814205353], [-2892.060723510781, -3825.9505814224326]]}, {"length": 14.2352479284, "source": 2960628174, "destination": 1667872493, "path": [[-2824.0607235048287, -3881.7505814208175], [-2818.0607235057664, -3913.4505814217846], [-2825.7607235104842, -3944.900581423383]]}, {"length": 122.389704519, "source": 134994384, "destination": 134997385, "path": [[2462.339276490866, 437.94941857910885], [3189.489276493873, 436.8994185774966]]}, {"length": 7.55437926111, "source": 134994384, "destination": 134994382, "path": [[2462.339276490866, 437.94941857910885], [2463.789276490047, 403.99941857671706]]}, {"length": 30.8079739015, "source": 4224850385, "destination": 135097480, "path": [[7262.139276491553, 4761.799418577794], [7379.339276489816, 4655.399418577844]]}, {"length": 58.5081857132, "source": 4224850385, "destination": 135109629, "path": [[7262.139276491553, 4761.799418577794], [7178.339276492807, 4837.899418578928], [7121.839276493347, 4876.399418577648], [7115.339276488441, 4879.399418577179], [7058.339276490244, 4907.899418576279], [6999.8392764887285, 4928.899418576549]]}, {"length": 10.2477511164, "source": 4224850385, "destination": 4224963686, "path": [[7262.139276491553, 4761.799418577794], [7215.539276494099, 4732.149418579467]]}, {"length": 59.5339784208, "source": 134994387, "destination": 2086723504, "path": [[2449.739276492835, 2073.899418576275], [2450.339276492741, 1806.1994185778474]]}, {"length": 120.680000428, "source": 134994387, "destination": 134990156, "path": [[2449.739276492835, 2073.899418576275], [1732.7892764882336, 2071.2994185778653]]}, {"length": 61.9579352789, "source": 134994389, "destination": 2086723449, "path": [[2448.839276489423, 2633.0994185777], [2449.439276489329, 2354.499418576239]]}, {"length": 122.81974103, "source": 134994389, "destination": 134997395, "path": [[2448.839276489423, 2633.0994185777], [3178.4892764932238, 2635.7494185766936]]}, {"length": 125.128351368, "source": 134994390, "destination": 134959932, "path": [[2448.139276488348, 3754.6994185788662], [2450.0892764933724, 3233.849418577961], [2450.2392764915726, 3192.0494185762036]]}, {"length": 63.0742894573, "source": 134994390, "destination": 2069120438, "path": [[2448.139276488348, 3754.6994185788662], [2073.439276493616, 3753.2994185767166]]}, {"length": 58.0916063032, "source": 1932196312, "destination": 1932196259, "path": [[5094.039276492878, -7116.550581422132], [5057.539276492662, -7080.400581422453], [5054.339276490793, -7003.200581422675], [5038.939276488463, -6968.15058142164], [5018.089276489945, -6929.55058142175], [4972.389276488798, -6880.700581422871]]}, {"length": 48.8150247132, "source": 1932196312, "destination": 1932196357, "path": [[5094.039276492878, -7116.550581422132], [5093.589276491173, -7123.800581421591], [5095.089276494491, -7139.200581423921], [5099.539276493204, -7155.500581422558], [5107.539276494322, -7171.850581421779], [5117.839276493896, -7188.450581423922], [5132.539276495152, -7206.600581422862], [5147.289276493439, -7222.450581423345], [5167.139276494481, -7238.85058142315], [5244.189276488953, -7295.750581423732]]}, {"length": 39.0753624141, "source": 1932196312, "destination": 1932196287, "path": [[5094.039276492878, -7116.550581422132], [5107.3392764919845, -7080.050581421915], [5117.039276491652, -7064.200581421432], [5133.339276490289, -7041.750581421979], [5164.8392764889195, -7001.050581422419], [5195.289276493042, -6959.400581422415]]}, {"length": 122.023242485, "source": 134994393, "destination": 134997408, "path": [[2430.6392764898987, 5964.39941857696], [2513.6892764905383, 5964.649418576329], [3155.4892764944498, 5966.399418579016]]}, {"length": 63.648444604, "source": 134994393, "destination": 2068020337, "path": [[2430.6392764898987, 5964.39941857696], [2430.4892764916985, 5893.099418578629], [2429.939276488824, 5678.199418579055]]}, {"length": 64.9266083022, "source": 134994393, "destination": 2069036370, "path": [[2430.6392764898987, 5964.39941857696], [2430.53927648873, 6029.149418576907], [2430.2892764893613, 6256.349418578111]]}, {"length": 9.69271699841, "source": 1932196267, "destination": 1932196272, "path": [[5246.339276489209, -6894.600581421883], [5216.439276495066, -6931.85058142376]]}, {"length": 10.0696556917, "source": 1932196267, "destination": 1932196275, "path": [[5246.339276489209, -6894.600581421883], [5267.389276490065, -6915.7505814239075], [5273.339276492095, -6924.7505814225005], [5277.189276490901, -6933.000581422988]]}, {"length": 3.72553537708, "source": 1932196267, "destination": 1932196246, "path": [[5246.339276489209, -6894.600581421883], [5246.889276492084, -6877.8505814215405]]}, {"length": 59.4168401747, "source": 4224850400, "destination": 4224850346, "path": [[6301.889276493001, 4569.999418578163], [6544.089276488307, 4764.349418579172]]}, {"length": 15.4925769309, "source": 4224850400, "destination": 4224950675, "path": [[6301.889276493001, 4569.999418578163], [6283.08927649357, 4569.999418578163], [6266.339276493227, 4572.549418575989], [6250.389276495127, 4578.599418579188], [6226.239276493572, 4593.29941857689], [6221.089276493785, 4597.1994185762815]]}, {"length": 42.4208033992, "source": 4224850400, "destination": 4224850324, "path": [[6301.889276493001, 4569.999418578163], [6444.039276495061, 4569.999418578163], [6470.839276488505, 4572.549418575989], [6494.339276493121, 4578.149418577482], [6545.289276495225, 4599.449418577706]]}, {"length": 96.8785273662, "source": 2568600033, "destination": 1667939632, "path": [[-360.31072350795057, -2958.3505814230193], [116.88927649089464, -2951.950581422835], [215.2392764926958, -2950.6505814218544]]}, {"length": 10.4528178843, "source": 2568600033, "destination": 2568600108, "path": [[-360.31072350795057, -2958.3505814230193], [-359.66072351101275, -2911.3505814208906]]}, {"length": 45.0217211237, "source": 2568600035, "destination": 2568600105, "path": [[-348.26072350568893, -2371.50058142177], [-80.7607235060459, -2369.80058142322]]}, {"length": 19.2947945529, "source": 2568600035, "destination": 2703708315, "path": [[-348.26072350568893, -2371.50058142177], [-350.0607235054076, -2458.2505814230162]]}, {"length": 6.57183628637, "source": 2568600035, "destination": 2568599455, "path": [[-348.26072350568893, -2371.50058142177], [-387.3107235108364, -2371.750581421139]]}, {"length": 32.7629512806, "source": 4224850405, "destination": 1962186627, "path": [[7107.789276489029, 3142.799418576203], [7082.739276491167, 3141.0494185770685], [7033.139276494183, 3090.2994185773023], [7029.0892764930395, 3078.149418577425], [7027.739276495026, 3070.9994185791347], [7021.039276494889, 3060.84941857776], [7011.6892764886525, 3045.6494185777674], [6996.939276490366, 3032.4494185762774]]}, {"length": 13.0002627056, "source": 4224850405, "destination": 1279884604, "path": [[7107.789276489029, 3142.799418576203], [7153.889276494851, 3189.699418577163]]}, {"length": 70.8317045075, "source": 4224850405, "destination": 1962191347, "path": [[7107.789276489029, 3142.799418576203], [7309.889276491787, 3153.449418576315], [7528.089276490846, 3154.749418577296]]}, {"length": 10.8745626355, "source": 2568600038, "destination": 2568600116, "path": [[-537.3107235087105, -2960.7505814226442], [-537.360723505742, -2911.850581423181]]}, {"length": 17.0257639019, "source": 2568600038, "destination": 2568600119, "path": [[-537.3107235087105, -2960.7505814226442], [-436.16072350971535, -2959.4005814210786]]}, {"length": 5.62927887945, "source": 2568600041, "destination": 2568599344, "path": [[-533.3607235087356, -2372.600581423967], [-499.9107235050815, -2372.40058142163]]}, {"length": 92.3316262521, "source": 2568600041, "destination": 2568599384, "path": [[-533.3607235087356, -2372.600581423967], [-1081.9607235106332, -2375.6505814205298]]}, {"length": 19.0588643321, "source": 2568600041, "destination": 2703708317, "path": [[-533.3607235087356, -2372.600581423967], [-533.9107235116103, -2458.3005814236003]]}, {"length": 17.6078995756, "source": 2311059946, "destination": 2310516505, "path": [[-3422.5607235072175, 4341.299418577193], [-3527.16072350745, 4341.7494185789]]}, {"length": 47.6030907955, "source": 2311059946, "destination": 2069036778, "path": [[-3422.5607235072175, 4341.299418577193], [-3423.91072350523, 4555.3494185774925]]}, {"length": 14.9655102201, "source": 2311059946, "destination": 2312746775, "path": [[-3422.5607235072175, 4341.299418577193], [-3333.660723505716, 4340.749418577871]]}, {"length": 50.5217970141, "source": 135012837, "destination": 2086776737, "path": [[8202.189276488525, 1575.3494185766215], [7902.039276494577, 1576.4994185794023]]}, {"length": 115.989653972, "source": 135012837, "destination": 135072534, "path": [[8202.189276488525, 1575.3494185766215], [8206.339276490837, 2096.8994185786014]]}, {"length": 127.621895902, "source": 135012837, "destination": 134968231, "path": [[8202.189276488525, 1575.3494185766215], [8196.739276492337, 1001.4994185780779]]}, {"length": 88.800658959, "source": 1932196332, "destination": 1932196357, "path": [[5758.489276495027, -7254.750581420666], [5543.83927649127, -7257.800581420781], [5351.0892764947475, -7259.900581424006], [5332.5392764946855, -7260.750581423281], [5311.739276493199, -7263.3005814211065], [5288.989276493794, -7270.7505814229025], [5270.689276493102, -7279.000581423389], [5254.939276490233, -7288.600581421889], [5244.189276488953, -7295.750581423732]]}, {"length": 25.5856490207, "source": 2568600047, "destination": 2568600199, "path": [[-534.5607235085481, -2551.6005814232303], [-565.7607235107776, -2561.950581423389], [-584.2107235096705, -2571.30058142252], [-597.2107235052704, -2580.6005814210666], [-604.710723507651, -2587.300581421204], [-609.5107235069008, -2593.0005814238657], [-643.0107235075866, -2628.2005814231015]]}, {"length": 28.4331222844, "source": 2568600047, "destination": 2568600187, "path": [[-534.5607235085481, -2551.6005814232303], [-535.5607235060234, -2679.4505814216054]]}, {"length": 30.7321111955, "source": 2568600047, "destination": 2568600044, "path": [[-534.5607235085481, -2551.6005814232303], [-351.9607235062949, -2550.600581422202]]}, {"length": 40.1323227446, "source": 2568600047, "destination": 2568600189, "path": [[-534.5607235085481, -2551.6005814232303], [-645.8107235047805, -2553.450581423533], [-772.9607235091862, -2555.600581423789]]}, {"length": 20.7489851761, "source": 2568600047, "destination": 2703708317, "path": [[-534.5607235085481, -2551.6005814232303], [-533.9107235116103, -2458.3005814236003]]}, {"length": 8.33163217514, "source": 2638686252, "destination": 2638686280, "path": [[-10391.36072350999, -9844.85058142326], [-10385.510723509127, -9882.050581420997]]}, {"length": 11.5634318092, "source": 135076343, "destination": 135076226, "path": [[9640.93927649401, 495.09941857905915], [9709.63927649393, 495.44941857604385]]}, {"length": 54.5640105415, "source": 135076343, "destination": 2086776758, "path": [[9640.93927649401, 495.09941857905915], [9639.389276493659, 740.4494185792032]]}, {"length": 11.3140573249, "source": 135076344, "destination": 135012848, "path": [[9632.289276488847, 1689.5494185789062], [9699.489276492557, 1688.3994185761253]]}, {"length": 131.288460363, "source": 135076344, "destination": 135076347, "path": [[9632.289276488847, 1689.5494185789062], [9630.33927649093, 2279.899418578424]]}, {"length": 10.9665834562, "source": 135076347, "destination": 135072512, "path": [[9630.33927649093, 2279.899418578424], [9695.489276488444, 2279.3994185761335]]}, {"length": 22.8733325097, "source": 135076347, "destination": 2086776839, "path": [[9630.33927649093, 2279.899418578424], [9629.639276489854, 2382.749418575969]]}, {"length": 7.30509489442, "source": 2568600060, "destination": 2703708315, "path": [[-306.66072350982176, -2458.2505814230162], [-350.0607235054076, -2458.2505814230162]]}, {"length": 113.429130757, "source": 135076350, "destination": 135074387, "path": [[9627.839276490136, 2656.899418578718], [8953.989276491826, 2653.0494185763587]]}, {"length": 60.479682327, "source": 135076350, "destination": 2086776843, "path": [[9627.839276490136, 2656.899418578718], [9626.189276488618, 2928.8494185770733]]}, {"length": 6.14225642571, "source": 2568600063, "destination": 2703708317, "path": [[-570.4107235118272, -2458.3005814236003], [-533.9107235116103, -2458.3005814236003]]}, {"length": 53.6792107355, "source": 135076353, "destination": 4253571980, "path": [[9616.839276489485, 4111.749418576948], [9617.039276491823, 4153.149418577585], [9618.139276490467, 4341.699418578315], [9619.889276493155, 4353.049418575949]]}, {"length": 25.1238284755, "source": 135076353, "destination": 2074050051, "path": [[9616.839276489485, 4111.749418576948], [9569.889276491494, 4111.449418576995], [9467.589276489718, 4110.84941857709]]}, {"length": 11.0509083957, "source": 135076353, "destination": 135076228, "path": [[9616.839276489485, 4111.749418576948], [9682.489276492845, 4111.399418576411]]}, {"length": 84.2854696144, "source": 1932196355, "destination": 135075366, "path": [[5770.939276494857, -7292.950581422985], [5382.439276495177, -7297.900581423988], [5355.43927649229, -7298.750581423264], [5327.1892764925615, -7301.1505814228885], [5301.739276490025, -7308.350581421763], [5277.789276490807, -7321.650581420869]]}, {"length": 8.08346076323, "source": 1932196355, "destination": 2139783262, "path": [[5770.939276494857, -7292.950581422985], [5770.839276493689, -7329.300581421449]]}, {"length": 45.6593043757, "source": 1932196355, "destination": 1933539975, "path": [[5770.939276494857, -7292.950581422985], [6042.23927648917, -7289.500581421748]]}, {"length": 48.8150247132, "source": 1932196357, "destination": 1932196312, "path": [[5244.189276488953, -7295.750581423732], [5167.139276494481, -7238.85058142315], [5147.289276493439, -7222.450581423345], [5132.539276495152, -7206.600581422862], [5117.839276493896, -7188.450581423922], [5107.539276494322, -7171.850581421779], [5099.539276493204, -7155.500581422558], [5095.089276494491, -7139.200581423921], [5093.589276491173, -7123.800581421591], [5094.039276492878, -7116.550581422132]]}, {"length": 88.800658959, "source": 1932196357, "destination": 1932196332, "path": [[5244.189276488953, -7295.750581423732], [5254.939276490233, -7288.600581421889], [5270.689276493102, -7279.000581423389], [5288.989276493794, -7270.7505814229025], [5311.739276493199, -7263.3005814211065], [5332.5392764946855, -7260.750581423281], [5351.0892764947475, -7259.900581424006], [5543.83927649127, -7257.800581420781], [5758.489276495027, -7254.750581420666]]}, {"length": 8.07332050778, "source": 1932196357, "destination": 135075366, "path": [[5244.189276488953, -7295.750581423732], [5262.189276493245, -7309.150581424006], [5277.789276490807, -7321.650581420869]]}, {"length": 109.68086673, "source": 1932196357, "destination": 1932196479, "path": [[5244.189276488953, -7295.750581423732], [5237.239276489447, -7301.800581423378], [5225.43927649366, -7314.300581423794], [5215.889276492191, -7327.700581420515], [5211.939276492217, -7338.350581420627], [5211.089276492941, -7349.200581423076], [5212.239276488617, -7399.400581423521], [5210.8392764935725, -7448.500581421768], [5211.089276492941, -7542.950581420627], [5209.439276491423, -7664.350581421786], [5210.289276490698, -7729.650581421055], [5210.289276490698, -7738.600581422616], [5211.389276489343, -7746.450581421982], [5215.889276492191, -7756.250581422819], [5220.93927649081, -7764.55058142389], [5228.239276490854, -7772.000581422134], [5234.63927649459, -7776.400581423814]]}, {"length": 62.1067132273, "source": 3146411777, "destination": 135074736, "path": [[-3773.410723511006, -163.9005814233485], [-4142.410723510182, -163.7505814215956]]}, {"length": 61.3241741351, "source": 3146411777, "destination": 2086776760, "path": [[-3773.410723511006, -163.9005814233485], [-3773.6107235062377, 111.84941857678155]]}, {"length": 62.056002874, "source": 3146411777, "destination": 135074738, "path": [[-3773.410723511006, -163.9005814233485], [-3503.060723510032, -163.95058142393282], [-3404.710723508231, -164.0005814209644]]}, {"length": 17.9927064831, "source": 2568624556, "destination": 2568624555, "path": [[-935.860723508597, -1847.1505814225964], [-934.4607235064473, -1928.0505814229798]]}, {"length": 72.6924019196, "source": 4615944714, "destination": 4615944725, "path": [[-11653.610723506346, -1544.200581420796], [-11644.760723505953, -1217.4005814209465]]}, {"length": 9.23403419362, "source": 135076364, "destination": 2140984945, "path": [[9614.38927649283, 5914.549418577053], [9578.339276494318, 5905.899418578997], [9562.539276494419, 5901.099418576195]]}, {"length": 16.5351252578, "source": 135076364, "destination": 135076371, "path": [[9614.38927649283, 5914.549418577053], [9614.839276494535, 5988.8994185790525]]}, {"length": 8.17327359051, "source": 1932196370, "destination": 135075368, "path": [[6090.889276492817, -7325.650581421428], [6090.289276492911, -7288.900581421842]]}, {"length": 8.15340068192, "source": 1932196370, "destination": 1933540027, "path": [[6090.889276492817, -7325.650581421428], [6042.4392764915065, -7325.500581423228]]}, {"length": 16.201448421, "source": 1932196370, "destination": 1933540181, "path": [[6090.889276492817, -7325.650581421428], [6091.639276490923, -7398.500581423661]]}, {"length": 16.3678490199, "source": 135076371, "destination": 135076243, "path": [[9614.839276494535, 5988.8994185790525], [9652.839276490966, 5993.899418577086], [9709.989276494469, 6003.899418576708]]}, {"length": 5.35859848614, "source": 135076371, "destination": 2140984948, "path": [[9614.839276494535, 5988.8994185790525], [9615.139276490936, 6012.99941857647]]}, {"length": 15.1027921047, "source": 4615944724, "destination": 4615944723, "path": [[-11122.060723508297, -1988.2505814230456], [-11055.560723505663, -2033.8505814230246]]}, {"length": 120.457763442, "source": 4615944725, "destination": 2214680848, "path": [[-11644.760723505953, -1217.4005814209465], [-12360.460723506605, -1214.6505814207842]]}, {"length": 72.6924019196, "source": 4615944725, "destination": 4615944714, "path": [[-11644.760723505953, -1217.4005814209465], [-11653.610723506346, -1544.200581420796]]}, {"length": 127.582074826, "source": 4615944725, "destination": 135023035, "path": [[-11644.760723505953, -1217.4005814209465], [-11341.910723508874, -1218.5505814237274], [-11274.96072351164, -1212.3505814223279], [-11220.31072350893, -1203.6005814231032], [-10904.710723508515, -1125.9005814210354]]}, {"length": 113.083717792, "source": 1933541124, "destination": 1933540864, "path": [[6104.789276491829, -8167.100581420783], [6113.73927649339, -8171.0005814237265], [6131.289276488871, -8175.250581423654], [6147.689276488677, -8176.450581423467], [6163.439276491545, -8175.900581420592], [6180.0892764907185, -8173.700581423304], [6195.189276489544, -8168.950581421086], [6207.539276488205, -8163.650581423099], [6217.639276492548, -8156.700581423593], [6230.039276488242, -8145.650581422359], [6237.6892764888225, -8136.600581423181], [6244.439276493096, -8124.850581420873], [6247.789276493166, -8114.800581420667], [6249.139276491178, -8105.450581421536], [6249.139276491178, -8096.95058142168], [6246.239276492815, -8082.650581421547], [6240.389276491953, -8070.400581424054], [6231.589276488592, -8059.350581422819], [6221.489276491355, -8049.800581421351], [6212.239276493392, -8043.700581421121], [6198.33927649438, -8037.200581423321], [6181.439276488732, -8030.750581422552], [6167.939276494394, -8023.100581421972], [6154.68927649232, -8012.20058142249], [6146.139276488328, -8002.000581420532], [6141.189276490877, -7990.750581420514], [6139.189276488822, -7978.00058142073], [6139.789276488727, -7966.650581423096], [6144.239276494545, -7951.250581420765], [6145.839276491926, -7939.100581420888], [6143.589276490502, -7781.600581420634]]}, {"length": 89.9421354223, "source": 1933541124, "destination": 1933540866, "path": [[6104.789276491829, -8167.100581420783], [6110.2892764921535, -8154.850581423289], [6154.039276488276, -8103.700581422401], [6127.939276488803, -8068.900581420735], [6107.689276490191, -8034.000581421452], [6098.089276491692, -7998.450581421679], [6095.989276488467, -7782.300581421709]]}, {"length": 7.87348622477, "source": 1933541124, "destination": 1930367531, "path": [[6104.789276491829, -8167.100581420783], [6096.339276489005, -8185.850581423182], [6089.889276488237, -8200.650581422053]]}, {"length": 88.6705898787, "source": 1933541124, "destination": 1933540868, "path": [[6104.789276491829, -8167.100581420783], [6097.5392764888165, -8164.000581423636], [6085.189276490155, -8157.050581420577], [6075.939276492192, -8150.05058142404], [6067.889276494043, -8141.350581421847], [6062.03927649318, -8132.200581421501], [6057.289276490963, -8121.30058142202], [6055.289276488907, -8110.050581422001], [6054.3892764926, -8095.400581421331], [6054.2392764944, -8025.65058142335], [6054.2392764944, -7948.6005814217715], [6052.939276493418, -7871.35058142141], [6049.139276491644, -7830.200581423696], [6045.889276492744, -7783.000581422783]]}, {"length": 68.4606352784, "source": 3009796634, "destination": 1942240504, "path": [[5424.9892764914875, -907.9005814207619], [5465.789276492216, -928.3005814211265], [5483.039276491298, -934.1005814214043], [5489.839276492603, -943.8005814210726], [5493.43927649204, -951.7005814210222], [5497.489276493184, -959.0005814210656], [5502.689276490002, -962.9505814210404], [5510.689276491121, -972.6505814207087], [5519.539276491514, -985.4005814240452], [5522.739276493383, -998.7505814237352], [5522.739276493383, -1007.250581423591], [5521.939276491139, -1016.9505814232593], [5520.339276493758, -1021.8505814236778], [5514.339276494695, -1027.6005814233713], [5497.489276493184, -1043.1005814233174], [5491.839276494658, -1050.3505814227765], [5488.239276495222, -1057.6505814228199], [5488.239276495222, -1069.2005814227912], [5489.4392764950335, -1077.400581422694], [5495.439276494097, -1085.3005814226435], [5505.089276489627, -1094.7005814223587], [5514.339276494695, -1102.9005814222614], [5521.139276488895, -1113.500581421789], [5520.339276493758, -1123.850581421948], [5516.88927649252, -1134.6505814238128], [5498.339276492459, -1145.2505814233405], [5478.589276492585, -1147.4505814206282]]}, {"length": 63.3145995183, "source": 3009796634, "destination": 1942240504, "path": [[5424.9892764914875, -907.9005814207619], [5375.039276493964, -960.9005814219529], [5375.489276488565, -986.2505814233202], [5383.93927649139, -997.2005814233853], [5416.839276492169, -1014.7505814224189], [5427.43927649525, -1027.2505814228339], [5427.8392764928185, -1048.2505814231047], [5423.639276493475, -1081.0005814221313], [5423.939276489875, -1099.5505814221929], [5427.939276493988, -1106.9505814234049], [5457.289276492361, -1129.0005814217352], [5478.589276492585, -1147.4505814206282]]}, {"length": 10.7499681457, "source": 3009796634, "destination": 1942240548, "path": [[5424.9892764914875, -907.9005814207619], [5440.789276491387, -891.1005814233874], [5459.089276492079, -867.1005814235855]]}, {"length": 42.0722890015, "source": 1932196380, "destination": 1932196425, "path": [[5295.589276492763, -7338.300581423596], [5298.789276494631, -7347.05058142282], [5298.789276494631, -7357.250581421226], [5299.939276490306, -7471.85058142108], [5300.589276494349, -7527.150581420728]]}, {"length": 80.0395131877, "source": 1932196380, "destination": 2139783262, "path": [[5295.589276492763, -7338.300581423596], [5309.539276488806, -7336.100581422756], [5482.439276491391, -7332.500581423318], [5719.739276493385, -7329.4505814232025], [5770.839276493689, -7329.300581421449]]}, {"length": 4.76382933275, "source": 1932196380, "destination": 135075366, "path": [[5295.589276492763, -7338.300581423596], [5277.789276490807, -7321.650581420869]]}, {"length": 56.0091694308, "source": 134968410, "destination": 1483977762, "path": [[-1124.6607235051442, -5602.600581422479], [-1123.9107235070378, -5854.450581423976]]}, {"length": 283.944627397, "source": 134968410, "destination": 1483977719, "path": [[-1124.6607235051442, -5602.600581422479], [-1125.7607235108935, -5357.250581422335], [-2488.8107235057078, -5359.700581422544]]}, {"length": 240.976703768, "source": 134968410, "destination": 4719457762, "path": [[-1124.6607235051442, -5602.600581422479], [-2556.6107235093227, -5608.500581423925]]}, {"length": 37.485192542, "source": 134968410, "destination": 134968413, "path": [[-1124.6607235051442, -5602.600581422479], [-901.9107235062052, -5602.300581422525]]}, {"length": 23.8905538257, "source": 1932196272, "destination": 1932196257, "path": [[5216.439276495066, -6931.85058142376], [5092.5392764895605, -6879.400581421891]]}, {"length": 9.69271699841, "source": 1932196272, "destination": 1932196267, "path": [[5216.439276495066, -6931.85058142376], [5246.339276489209, -6894.600581421883]]}, {"length": 7.08653416421, "source": 1932196272, "destination": 1932196287, "path": [[5216.439276495066, -6931.85058142376], [5195.289276493042, -6959.400581422415]]}, {"length": 12.72982456, "source": 2568600101, "destination": 2568600085, "path": [[19.18927649313673, -2504.0505814217795], [20.539276491149394, -2520.1005814210475], [20.539276491149394, -2534.3005814235653], [17.839276495124068, -2547.0005814227648], [9.789276489868826, -2559.700581421964]]}, {"length": 8.00615889839, "source": 2568600103, "destination": 2568600105, "path": [[-81.41072351008916, -2405.800581421147], [-80.7607235060459, -2369.80058142322]]}, {"length": 71.2966577672, "source": 134937129, "destination": 134937145, "path": [[2564.139276493904, -2960.400581422107], [2597.339276491084, -3012.1005814223167], [2620.8392764885957, -3055.100581423886], [2647.8392764914815, -3086.1005814237787], [2689.3392764932855, -3120.100581423202], [2728.8392764930336, -3142.100581420948], [2783.839276489175, -3162.600581422481], [2847.339276492278, -3175.100581422896]]}, {"length": 47.4978959116, "source": 134937129, "destination": 135064548, "path": [[2564.139276493904, -2960.400581422107], [2568.8392764919854, -3173.950581423668]]}, {"length": 10.4528178843, "source": 2568600108, "destination": 2568600033, "path": [[-359.66072351101275, -2911.3505814208906], [-360.31072350795057, -2958.3505814230193]]}, {"length": 12.8664657031, "source": 2568600108, "destination": 2568600122, "path": [[-359.66072351101275, -2911.3505814208906], [-436.11072350557833, -2911.6005814238124]]}, {"length": 96.6721030045, "source": 2568600108, "destination": 2568600110, "path": [[-359.66072351101275, -2911.3505814208906], [214.7392764939582, -2908.3005814207754]]}, {"length": 29.2257767807, "source": 2568600108, "destination": 2568600143, "path": [[-359.66072351101275, -2911.3505814208906], [-356.8607235067134, -2779.9505814236627]]}, {"length": 600.74830609, "source": 885856813, "destination": 2960628184, "path": [[12.789276489399981, -5558.950581423971], [-560.6607235080219, -5271.600581423286], [-1523.460723511505, -4768.000581421461], [-1937.1607235072474, -4548.60058142259], [-2079.1607235111087, -4474.100581422391], [-2306.160723506423, -4354.600581422119], [-2461.7107235087587, -4275.45058142087], [-2601.1607235076895, -4188.150581423855], [-2660.2107235049743, -4131.850581423179], [-2721.160723510252, -4077.6505814221764], [-2744.9607235112694, -4056.85058142069], [-2781.260723509149, -4034.95058142056], [-2831.1607235096403, -4015.1505814236543], [-2887.8107235073003, -3999.100581420834]]}, {"length": 12.817689704, "source": 885856813, "destination": 1567555174, "path": [[12.789276489399981, -5558.950581423971], [55.539276495153445, -5511.250581420768]]}, {"length": 9.41920250225, "source": 2568600110, "destination": 1667939632, "path": [[214.7392764939582, -2908.3005814207754], [215.2392764926958, -2950.6505814218544]]}, {"length": 96.6721030045, "source": 2568600110, "destination": 2568600108, "path": [[214.7392764939582, -2908.3005814207754], [-359.66072351101275, -2911.3505814208906]]}, {"length": 49.0354501109, "source": 2568600110, "destination": 2568600069, "path": [[214.7392764939582, -2908.3005814207754], [186.1392764936909, -2710.400581420913], [179.43927649355373, -2689.6005814229793]]}, {"length": 19.4934600916, "source": 2568600110, "destination": 4615885006, "path": [[214.7392764939582, -2908.3005814207754], [259.63927649286234, -2827.50058142156]]}, {"length": 104.369300936, "source": 2568600110, "destination": 2568600013, "path": [[214.7392764939582, -2908.3005814207754], [263.43927649463694, -2718.450581422616], [283.03927648920535, -2493.350581421083], [280.98927649011785, -2443.050581423023]]}, {"length": 49.1284210885, "source": 2086854408, "destination": 134983394, "path": [[10050.439276490408, -1332.9005814206596], [10342.339276490975, -1333.6005814217344]]}, {"length": 89.824472358, "source": 2086854408, "destination": 2086854523, "path": [[10050.439276490408, -1332.9005814206596], [10047.789276491414, -929.0005814222013]]}, {"length": 6.32016195362, "source": 2086854408, "destination": 2086854572, "path": [[10050.439276490408, -1332.9005814206596], [10012.889276488579, -1332.8005814230437]]}, {"length": 104.970730161, "source": 2568600116, "destination": 2568624513, "path": [[-537.360723505742, -2911.850581423181], [-1161.060723511298, -2915.950581421356]]}, {"length": 17.0400505927, "source": 2568600116, "destination": 2568600122, "path": [[-537.360723505742, -2911.850581423181], [-436.11072350557833, -2911.6005814238124]]}, {"length": 10.8745626355, "source": 2568600116, "destination": 2568600038, "path": [[-537.360723505742, -2911.850581423181], [-537.3107235087105, -2960.7505814226442]]}, {"length": 30.5789369885, "source": 2568600116, "destination": 2568600167, "path": [[-537.360723505742, -2911.850581423181], [-536.3107235112352, -2774.350581422169]]}, {"length": 56.5219125463, "source": 2568600119, "destination": 2568624520, "path": [[-436.16072350971535, -2959.4005814210786], [-438.46072350817167, -3213.550581421032]]}, {"length": 12.7673156169, "source": 2568600119, "destination": 2568600033, "path": [[-436.16072350971535, -2959.4005814210786], [-360.31072350795057, -2958.3505814230193]]}, {"length": 10.6302251751, "source": 2568600119, "destination": 2568600122, "path": [[-436.16072350971535, -2959.4005814210786], [-436.11072350557833, -2911.6005814238124]]}, {"length": 31.6996217165, "source": 2286590520, "destination": 135064200, "path": [[-7587.310723508267, 6491.649418578049], [-7775.610723506077, 6490.9494185769745]]}, {"length": 77.7496559425, "source": 2286590520, "destination": 1965661536, "path": [[-7587.310723508267, 6491.649418578049], [-7574.810723511405, 6491.699418578633], [-7125.460723507615, 6492.749418576694]]}, {"length": 13.5098823856, "source": 2286590520, "destination": 2286590562, "path": [[-7587.310723508267, 6491.649418578049], [-7587.310723508267, 6430.899418578661]]}, {"length": 182.352911901, "source": 134937145, "destination": 135064558, "path": [[2847.339276492278, -3175.100581422896], [3134.339276492426, -3175.100581422896], [3723.2392764892097, -3181.3005814207427], [3930.589276492924, -3188.550581423755]]}, {"length": 12.8664657031, "source": 2568600122, "destination": 2568600108, "path": [[-436.11072350557833, -2911.6005814238124], [-359.66072351101275, -2911.3505814208906]]}, {"length": 17.0400505927, "source": 2568600122, "destination": 2568600116, "path": [[-436.11072350557833, -2911.6005814238124], [-537.360723505742, -2911.850581423181]]}, {"length": 8.52095084712, "source": 2568600122, "destination": 2568600125, "path": [[-436.11072350557833, -2911.6005814238124], [-437.4607235106964, -2873.300581423877]]}, {"length": 10.6302251751, "source": 2568600122, "destination": 2568600119, "path": [[-436.11072350557833, -2911.6005814238124], [-436.16072350971535, -2959.4005814210786]]}, {"length": 15.8158242346, "source": 2568600125, "destination": 2568600161, "path": [[-437.4607235106964, -2873.300581423877], [-452.2107235089834, -2872.8005814215862], [-462.2607235091891, -2869.2505814227334], [-472.31072350939485, -2864.650581422268], [-473.6607235074075, -2855.050581423768], [-473.6607235074075, -2840.8005814206663], [-473.6607235074075, -2822.05058142182]]}, {"length": 8.52095084712, "source": 2568600125, "destination": 2568600122, "path": [[-437.4607235106964, -2873.300581423877], [-436.11072350557833, -2911.6005814238124]]}, {"length": 13.9309029965, "source": 2568600125, "destination": 2568600140, "path": [[-437.4607235106964, -2873.300581423877], [-428.0607235074285, -2872.3005814228486], [-414.0107235102164, -2865.20058142159], [-413.31072350914155, -2853.000581421128], [-413.31072350914155, -2830.6505814228444], [-413.31072350914155, -2822.5505814205576]]}, {"length": 32.2139017525, "source": 2311060035, "destination": 2311060120, "path": [[-3524.910723506025, 4006.849418576763], [-3523.610723505044, 3861.9994185786763]]}, {"length": 17.5915125087, "source": 2311060035, "destination": 2069036395, "path": [[-3524.910723506025, 4006.849418576763], [-3420.4107235069614, 4007.5994185784225]]}, {"length": 95.8605964764, "source": 2311060035, "destination": 2069036566, "path": [[-3524.910723506025, 4006.849418576763], [-3574.5607235071475, 4006.799418576179], [-3988.510723509364, 4003.4494185761105], [-4094.3607235064405, 4003.6494185784477]]}, {"length": 48.759858238, "source": 2311060035, "destination": 2310516558, "path": [[-3524.910723506025, 4006.849418576763], [-3526.6107235116806, 4226.099418577433]]}, {"length": 111.447881317, "source": 2311060037, "destination": 2069036656, "path": [[-4247.810723505552, 4004.9994185764604], [-4539.810723507288, 4003.4994185766946], [-4650.7107235100875, 4000.94941857887], [-4695.110723510254, 4000.1994185772105], [-4759.110723504989, 4000.4494185765793], [-4909.810723511044, 4000.499418577164]]}, {"length": 48.9721537511, "source": 2311060037, "destination": 2310516568, "path": [[-4247.810723505552, 4004.9994185764604], [-4247.810723505552, 4072.849418577107], [-4248.110723509058, 4117.399418579026], [-4249.410723510038, 4176.699418579233], [-4250.0607235069765, 4214.799418576831], [-4250.0607235069765, 4225.199418577575]]}, {"length": 13.2736574167, "source": 2311060037, "destination": 2069036987, "path": [[-4247.810723505552, 4004.9994185764604], [-4168.960723511362, 4004.449418577138]]}, {"length": 48.6162880367, "source": 2311060037, "destination": 2310516606, "path": [[-4247.810723505552, 4004.9994185764604], [-4247.810723505552, 3938.5994185785476], [-4238.310723508221, 3875.2994185777825], [-4238.960723505159, 3786.7994185774023]]}, {"length": 36.1298860982, "source": 885856839, "destination": 135099952, "path": [[207.93927649265243, -5927.650581423194], [205.33927649069028, -6090.100581420898]]}, {"length": 7.47281164549, "source": 1932196425, "destination": 1932196432, "path": [[5300.589276494349, -7527.150581420728], [5256.189276494183, -7527.750581420633]]}, {"length": 78.7145172079, "source": 1932196425, "destination": 1932196426, "path": [[5300.589276494349, -7527.150581420728], [5337.03927649043, -7527.4505814206805], [5399.839276492457, -7526.550581420821], [5455.489276492643, -7524.750581421103], [5495.639276489328, -7523.850581421243], [5618.4392764890845, -7522.9505814213835], [5682.839276488494, -7524.150581421196], [5721.789276492473, -7525.0505814210555], [5768.239276491727, -7525.9005814238835]]}, {"length": 42.0722890015, "source": 1932196425, "destination": 1932196380, "path": [[5300.589276494349, -7527.150581420728], [5299.939276490306, -7471.85058142108], [5298.789276494631, -7357.250581421226], [5298.789276494631, -7347.05058142282], [5295.589276492763, -7338.300581423596]]}, {"length": 51.2229358558, "source": 1932196425, "destination": 135047495, "path": [[5300.589276494349, -7527.150581420728], [5301.139276490119, -7575.900581421991], [5302.339276489931, -7717.250581421808], [5294.789276490519, -7729.600581424023], [5270.989276489501, -7749.200581422145]]}, {"length": 78.7145172079, "source": 1932196426, "destination": 1932196425, "path": [[5768.239276491727, -7525.9005814238835], [5721.789276492473, -7525.0505814210555], [5682.839276488494, -7524.150581421196], [5618.4392764890845, -7522.9505814213835], [5495.639276489328, -7523.850581421243], [5455.489276492643, -7524.750581421103], [5399.839276492457, -7526.550581420821], [5337.03927649043, -7527.4505814206805], [5300.589276494349, -7527.150581420728]]}, {"length": 43.7493307889, "source": 1932196426, "destination": 2139783262, "path": [[5768.239276491727, -7525.9005814238835], [5769.389276494508, -7519.250581420778], [5771.739276489996, -7494.850581423407], [5771.739276489996, -7450.050581422119], [5770.539276490183, -7412.150581423304], [5770.839276493689, -7329.300581421449]]}, {"length": 50.1552887665, "source": 1932196426, "destination": 1932196455, "path": [[5768.239276491727, -7525.9005814238835], [5765.78927649507, -7540.300581421633], [5762.589276493201, -7561.950581422394], [5761.4392764904205, -7581.800581423437], [5763.38927648834, -7610.650581423073], [5766.589276490208, -7652.150581421324], [5769.389276494508, -7696.700581423243], [5774.539276494295, -7750.850581423663]]}, {"length": 10.157647599, "source": 2568600140, "destination": 2568600161, "path": [[-413.31072350914155, -2822.5505814205576], [-473.6607235074075, -2822.05058142182]]}, {"length": 13.9309029965, "source": 2568600140, "destination": 2568600125, "path": [[-413.31072350914155, -2822.5505814205576], [-413.31072350914155, -2830.6505814228444], [-413.31072350914155, -2853.000581421128], [-414.0107235102164, -2865.20058142159], [-428.0607235074285, -2872.3005814228486], [-437.4607235106964, -2873.300581423877]]}, {"length": 13.4164961393, "source": 2568600140, "destination": 2568600143, "path": [[-413.31072350914155, -2822.5505814205576], [-356.8607235067134, -2779.9505814236627]]}, {"length": 29.2257767807, "source": 2568600143, "destination": 2568600108, "path": [[-356.8607235067134, -2779.9505814236627], [-359.66072351101275, -2911.3505814208906]]}, {"length": 13.4164961393, "source": 2568600143, "destination": 2568600140, "path": [[-356.8607235067134, -2779.9505814236627], [-413.31072350914155, -2822.5505814205576]]}, {"length": 19.7616260034, "source": 2568600143, "destination": 2568600173, "path": [[-356.8607235067134, -2779.9505814236627], [-354.9607235058261, -2691.100581422745]]}, {"length": 76.0729056079, "source": 2355676176, "destination": 2703728622, "path": [[-117.26072350626282, 5450.349418577361], [-569.1607235078777, 5449.349418576332]]}, {"length": 53.0408385161, "source": 2311060051, "destination": 2311060120, "path": [[-3671.810723510305, 3988.8494185760237], [-3671.11072350923, 3861.9994185786763], [-3550.7107235090984, 3861.9994185786763], [-3523.610723505044, 3861.9994185786763]]}, {"length": 43.6002561126, "source": 2311060052, "destination": 2311060159, "path": [[-3774.3607235114496, 3984.1494185779425], [-3774.3607235114496, 3826.399418578319], [-3774.010723510912, 3788.0994185783834]]}, {"length": 51.305552849, "source": 2086854414, "destination": 135057529, "path": [[7329.939276495168, -5223.2505814231445], [7329.58927649463, -4992.550581423671]]}, {"length": 100.575163092, "source": 2086854414, "destination": 2086854498, "path": [[7329.939276495168, -5223.2505814231445], [7927.489276490007, -5215.100581423826]]}, {"length": 49.5819323915, "source": 2086854414, "destination": 134991213, "path": [[7329.939276495168, -5223.2505814231445], [7330.2892764886, -5446.200581420868]]}, {"length": 196.516848893, "source": 2086854414, "destination": 2086854485, "path": [[7329.939276495168, -5223.2505814231445], [6162.289276488764, -5235.450581423606]]}, {"length": 23.1190681338, "source": 3009796695, "destination": 1933539490, "path": [[1732.4892764918332, -4518.350581420805], [1734.1392764933516, -4622.300581420546]]}, {"length": 9.00664278197, "source": 3009796695, "destination": 3733365739, "path": [[1732.4892764918332, -4518.350581420805], [1732.289276489496, -4507.1005814207865], [1731.489276494358, -4477.850581423581]]}, {"length": 6.94198104299, "source": 3009796695, "destination": 3758384277, "path": [[1732.4892764918332, -4518.350581420805], [1773.7392764942683, -4518.450581421974]]}, {"length": 176.81599133, "source": 3009796696, "destination": 3758384282, "path": [[1838.4892764942151, -4518.600581423726], [1841.3392764884406, -4719.950581421273], [1843.0392764940962, -5035.050581422951], [1844.7392764926462, -5122.40058142055], [1844.4392764891404, -5263.850581421537], [1778.6392764946868, -5264.500581422027]]}, {"length": 10.8969170077, "source": 3009796696, "destination": 3758384277, "path": [[1838.4892764942151, -4518.600581423726], [1773.7392764942683, -4518.450581421974]]}, {"length": 139.300410272, "source": 3009796696, "destination": 3009796703, "path": [[1838.4892764942151, -4518.600581423726], [2439.28927649506, -4527.400581423535], [2483.839276493427, -4528.9005814233005], [2536.8892764916495, -4538.3505814236005], [2578.889276492191, -4549.300581423666], [2621.1392764921015, -4563.000581423893], [2640.4392764902695, -4571.150581423211], [2650.6392764886755, -4579.750581420683]]}, {"length": 109.370150167, "source": 135084635, "destination": 135084637, "path": [[-1784.6607235085798, -10087.60058142144], [-1134.6607235083184, -10089.600581423496]]}, {"length": 111.978223524, "source": 135084637, "destination": 135084639, "path": [[-1134.6607235083184, -10089.600581423496], [-469.1607235116635, -10091.600581422]]}, {"length": 109.370150167, "source": 135084637, "destination": 135084635, "path": [[-1134.6607235083184, -10089.600581423496], [-1784.6607235085798, -10087.60058142144]]}, {"length": 60.712971662, "source": 135084637, "destination": 135094631, "path": [[-1134.6607235083184, -10089.600581423496], [-1133.160723505, -9816.600581423529]]}, {"length": 9.75607728862, "source": 2286590558, "destination": 2285539209, "path": [[-7085.110723508592, 6431.099418577446], [-7108.860723505472, 6430.699418576324], [-7143.060723507233, 6431.14941857803]]}, {"length": 111.735855737, "source": 2286590558, "destination": 2286663053, "path": [[-7085.110723508592, 6431.099418577446], [-6971.010723511028, 6433.0494185789175], [-6785.760723509782, 6433.899418578193], [-6603.360723509866, 6434.349418576347], [-6438.8107235089365, 6434.999418576836], [-6421.410723511655, 6434.949418576252]]}, {"length": 47.2721258263, "source": 2286590558, "destination": 1433125502, "path": [[-7085.110723508592, 6431.099418577446], [-7088.360723507492, 6218.549418576913]]}, {"length": 13.7783989148, "source": 2286590558, "destination": 135050585, "path": [[-7085.110723508592, 6431.099418577446], [-7084.160723508148, 6493.0494185766465]]}, {"length": 139.300410272, "source": 3009796703, "destination": 3009796696, "path": [[2650.6392764886755, -4579.750581420683], [2640.4392764902695, -4571.150581423211], [2621.1392764921015, -4563.000581423893], [2578.889276492191, -4549.300581423666], [2536.8892764916495, -4538.3505814236005], [2483.839276493427, -4528.9005814233005], [2439.28927649506, -4527.400581423535], [1838.4892764942151, -4518.600581423726]]}, {"length": 46.6925152395, "source": 3009796703, "destination": 2080585171, "path": [[2650.6392764886755, -4579.750581420683], [2728.8392764930336, -4482.700581423415], [2761.689276489676, -4492.450581423668], [2790.2892764899434, -4485.900581421731], [2838.4892764918845, -4515.500581423026]]}, {"length": 18.7085423155, "source": 3009796703, "destination": 3758384279, "path": [[2650.6392764886755, -4579.750581420683], [2651.489276495056, -4589.200581420982], [2648.389276494356, -4598.200581423129], [2643.839276494475, -4605.750581422541], [2702.7892764905914, -4641.350581422898]]}, {"length": 64.0917777598, "source": 2286590560, "destination": 2285539209, "path": [[-7523.760723508132, 6430.949418579246], [-7466.060723508861, 6430.949418579246], [-7408.760723507157, 6431.249418579199], [-7305.460723507906, 6431.099418577446], [-7205.060723507017, 6431.999418577306], [-7143.060723507233, 6431.14941857803]]}, {"length": 10.6978374018, "source": 2286590560, "destination": 2286590562, "path": [[-7523.760723508132, 6430.949418579246], [-7587.310723508267, 6430.899418578661]]}, {"length": 3.15865462559, "source": 2286590560, "destination": 2286590574, "path": [[-7523.760723508132, 6430.949418579246], [-7523.460723511733, 6416.749418576728]]}, {"length": 10.157647599, "source": 2568600161, "destination": 2568600140, "path": [[-473.6607235074075, -2822.05058142182], [-413.31072350914155, -2822.5505814205576]]}, {"length": 15.8158242346, "source": 2568600161, "destination": 2568600125, "path": [[-473.6607235074075, -2822.05058142182], [-473.6607235074075, -2840.8005814206663], [-473.6607235074075, -2855.050581423768], [-472.31072350939485, -2864.650581422268], [-462.2607235091891, -2869.2505814227334], [-452.2107235089834, -2872.8005814215862], [-437.4607235106964, -2873.300581423877]]}, {"length": 15.1505508183, "source": 2568600161, "destination": 2568600167, "path": [[-473.6607235074075, -2822.05058142182], [-476.36072351053826, -2815.4505814228514], [-536.3107235112352, -2774.350581422169]]}, {"length": 213.802041062, "source": 135084642, "destination": 2573122506, "path": [[182.38927648894787, -10091.4505814238], [182.33927649191628, -10378.300581422194], [179.88927649525976, -10668.50058142066], [182.6892764924537, -10968.000581421222], [185.03927649504703, -11052.800581420996]]}, {"length": 159.421929636, "source": 135084642, "destination": 2573122510, "path": [[182.38927648894787, -10091.4505814238], [180.839276488598, -10031.050581421398], [183.38927649352854, -9602.900581423768], [189.18927649025363, -9374.650581420952]]}, {"length": 109.630119961, "source": 135084642, "destination": 135084639, "path": [[182.38927648894787, -10091.4505814238], [-469.1607235116635, -10091.600581422]]}, {"length": 412.227272027, "source": 134968422, "destination": 1428268136, "path": [[-9323.660723509875, -7479.150581421123], [-9273.910723507583, -7423.75058142386], [-9242.410723508954, -7395.550581421162], [-9200.760723508949, -7366.350581420988], [-9156.010723508245, -7339.40058142224], [-9076.010723511274, -7296.90058142296], [-8700.910723504763, -7097.6505814215325], [-7635.910723507777, -6546.800581421763], [-7341.810723509923, -6400.000581422205]]}, {"length": 73.8504072071, "source": 134968422, "destination": 2080739282, "path": [[-9323.660723509875, -7479.150581421123], [-9355.960723510747, -7525.550581423346], [-9368.31072350941, -7558.150581420619], [-9379.210723508892, -7595.200581423711], [-9384.610723508047, -7626.95058142171], [-9388.160723510453, -7672.200581421152], [-9389.560723505496, -7721.750581421105], [-9389.110723510896, -7802.600581420904]]}, {"length": 47.2674006024, "source": 134968422, "destination": 2080738981, "path": [[-9323.660723509875, -7479.150581421123], [-9375.96072350999, -7474.900581421196], [-9418.61072350747, -7477.650581421358], [-9463.110723508806, -7488.0005814215165], [-9515.210723506585, -7507.950581423728], [-9586.010723509731, -7537.000581422149]]}, {"length": 50.1552887665, "source": 1932196455, "destination": 1932196426, "path": [[5774.539276494295, -7750.850581423663], [5769.389276494508, -7696.700581423243], [5766.589276490208, -7652.150581421324], [5763.38927648834, -7610.650581423073], [5761.4392764904205, -7581.800581423437], [5762.589276493201, -7561.950581422394], [5765.78927649507, -7540.300581421633], [5768.239276491727, -7525.9005814238835]]}, {"length": 45.5739516823, "source": 1932196455, "destination": 1933540854, "path": [[5774.539276494295, -7750.850581423663], [6045.339276489869, -7747.550581420626]]}, {"length": 85.1319911756, "source": 1932196455, "destination": 135047495, "path": [[5774.539276494295, -7750.850581423663], [5660.489276493763, -7752.050581423475], [5311.939276488431, -7756.050581424034], [5294.2892764917815, -7756.050581424034], [5279.889276494032, -7754.100581422563], [5270.989276489501, -7749.200581422145]]}, {"length": 2.81303793778, "source": 2568600170, "destination": 2568600187, "path": [[-535.660723507192, -2692.1005814237733], [-535.5607235060234, -2679.4505814216054]]}, {"length": 30.4122511636, "source": 2568600170, "destination": 2568600173, "path": [[-535.660723507192, -2692.1005814237733], [-354.9607235058261, -2691.100581422745]]}, {"length": 18.2917692159, "source": 2568600170, "destination": 2568600167, "path": [[-535.660723507192, -2692.1005814237733], [-536.3107235112352, -2774.350581422169]]}, {"length": 30.4122511636, "source": 2568600173, "destination": 2568600170, "path": [[-354.9607235058261, -2691.100581422745], [-535.660723507192, -2692.1005814237733]]}, {"length": 31.2497679932, "source": 2568600173, "destination": 2568600044, "path": [[-354.9607235058261, -2691.100581422745], [-351.9607235062949, -2550.600581422202]]}, {"length": 19.7616260034, "source": 2568600173, "destination": 2568600143, "path": [[-354.9607235058261, -2691.100581422745], [-356.8607235067134, -2779.9505814236627]]}, {"length": 3.15865462559, "source": 2286590574, "destination": 2286590560, "path": [[-7523.460723511733, 6416.749418576728], [-7523.760723508132, 6430.949418579246]]}, {"length": 58.4185976188, "source": 3009796720, "destination": 1933539536, "path": [[3096.539276491228, -4973.450581420735], [3091.1892764891036, -4980.50058142141], [3084.9392764906725, -4985.450581422412], [3074.1392764923603, -4990.400581423415], [3050.339276491343, -4996.400581422477], [3014.889276492738, -5003.300581421399], [2964.089276488835, -5014.85058142137], [2925.23927649313, -5026.65058142071], [2886.9392764931945, -5039.550581422247], [2845.539276492559, -5056.500581421375], [2784.9392764949243, -5081.750581421574]]}, {"length": 89.6693126079, "source": 3009796720, "destination": 3758384281, "path": [[3096.539276491228, -4973.450581420735], [3101.6892764910153, -4964.400581421558], [3103.93927649244, -4956.700581423946], [3105.3392764945897, -4944.2505814205615], [3102.23927649389, -4928.600581422415], [3092.289276494853, -4903.900581421539], [3078.1392764893667, -4882.650581421899], [3067.039276494654, -4868.250581420597], [3041.2392764915808, -4841.650581422386], [2880.9892764911638, -4720.15058142361], [2870.1892764928516, -4714.800581421486], [2855.139276491059, -4712.400581421861], [2823.6892764894606, -4714.350581423332], [2781.43927648955, -4688.850581423765]]}, {"length": 25.2065639938, "source": 3009796720, "destination": 4719445539, "path": [[3096.539276491228, -4973.450581420735], [3246.2392764927017, -4977.25058142251]]}, {"length": 26.3818630576, "source": 2069379699, "destination": 2069379707, "path": [[-4520.210723505614, 5094.099418577969], [-4529.610723508881, 5115.399418578192], [-4536.310723509018, 5138.749418577504], [-4540.310723506025, 5177.3494185773925], [-4543.0107235091555, 5210.849418578078]]}, {"length": 15.8692746109, "source": 2069379699, "destination": 2069393822, "path": [[-4520.210723505614, 5094.099418577969], [-4592.610723506141, 5139.799418579116]]}, {"length": 25.2621788462, "source": 2069379699, "destination": 2069379711, "path": [[-4520.210723505614, 5094.099418577969], [-4489.360723511027, 5076.849418578888], [-4442.410723505929, 5055.49941857808], [-4391.4607235109315, 5036.249418576944]]}, {"length": 3.33627476169, "source": 2286590583, "destination": 2286590562, "path": [[-7587.310723508267, 6415.899418577454], [-7587.310723508267, 6430.899418578661]]}, {"length": 59.7565570263, "source": 2069036820, "destination": 135033696, "path": [[8812.989276492544, 5712.199418578479], [8811.839276489764, 5980.899418577934]]}, {"length": 109.290434694, "source": 2069036820, "destination": 2069036945, "path": [[8812.989276492544, 5712.199418578479], [8163.789276494526, 5708.149418577335]]}, {"length": 19.6371824296, "source": 2069036820, "destination": 135074431, "path": [[8812.989276492544, 5712.199418578479], [8813.339276493081, 5623.899418576883]]}, {"length": 2.81303793778, "source": 2568600187, "destination": 2568600170, "path": [[-535.5607235060234, -2679.4505814216054], [-535.660723507192, -2692.1005814237733]]}, {"length": 7.4992982528, "source": 2568600187, "destination": 2568600212, "path": [[-535.5607235060234, -2679.4505814216054], [-580.1107235114955, -2680.1505814226803]]}, {"length": 28.4331222844, "source": 2568600187, "destination": 2568600047, "path": [[-535.5607235060234, -2679.4505814216054], [-534.5607235085481, -2551.6005814232303]]}, {"length": 37.4747979068, "source": 2568600189, "destination": 2568600193, "path": [[-772.9607235091862, -2555.600581423789], [-772.6607235056804, -2585.9505814231907], [-775.3607235088111, -2683.40058142158], [-721.6107235095137, -2682.5005814217207]]}, {"length": 40.1323227446, "source": 2568600189, "destination": 2568600047, "path": [[-772.9607235091862, -2555.600581423789], [-645.8107235047805, -2553.450581423533], [-534.5607235085481, -2551.6005814232303]]}, {"length": 27.447754406, "source": 2568600189, "destination": 2568600199, "path": [[-772.9607235091862, -2555.600581423789], [-759.2607235054061, -2566.100581422148], [-746.2607235098062, -2572.3005814235476], [-730.5107235069386, -2576.450581422307], [-707.9607235098706, -2586.800581422466], [-687.4607235047847, -2597.150581422625], [-666.2607235057294, -2611.100581422221], [-643.0107235075866, -2628.2005814231015]]}, {"length": 57.5659459562, "source": 2568600189, "destination": 2568600183, "path": [[-772.9607235091862, -2555.600581423789], [-813.2607235111777, -2556.300581421311], [-865.9107235047259, -2560.400581423039], [-910.3607235090294, -2563.0005814214483], [-969.1607235069455, -2564.5505814217986], [-1114.560723507907, -2564.400581423598]]}, {"length": 36.2313012051, "source": 3009796734, "destination": 1932196145, "path": [[1515.4392764884506, -5887.050581421249], [1477.139276488515, -5948.700581424049], [1461.089276489247, -5974.100581422448], [1441.7392764940473, -6004.650581420634], [1424.4892764949668, -6034.700581423635]]}, {"length": 31.3381978642, "source": 3009796734, "destination": 2080560852, "path": [[1515.4392764884506, -5887.050581421249], [1517.139276494106, -5910.700581420514], [1519.3892764884254, -5934.800581421485], [1520.6892764894064, -5951.600581422412], [1526.4392764891, -5967.350581421726], [1537.539276490918, -5988.50058142375], [1553.189276492617, -6023.700581422986]]}, {"length": 120.898524617, "source": 3009796734, "destination": 1932195990, "path": [[1515.4392764884506, -5887.050581421249], [1554.2392764942292, -5824.500581422143], [1606.6892764925456, -5737.550581422112], [1657.189276492943, -5657.250581421636], [1701.88927648951, -5585.150581421061], [1711.6392764933153, -5569.45058142233], [1729.939276494008, -5540.250581422157], [1733.4892764893084, -5532.750581423329], [1735.8892764889333, -5513.800581422146], [1735.0892764937953, -5402.200581421823], [1734.6892764891209, -5380.100581422908]]}, {"length": 180.143577048, "source": 1932196479, "destination": 1930367562, "path": [[5234.63927649459, -7776.400581423814], [5228.789276493728, -7781.250581423648], [5220.139276488567, -7790.550581422195], [5215.689276489855, -7800.250581421864], [5213.43927648843, -7810.850581421391], [5215.139276494085, -7820.550581421059], [5221.839276494222, -7834.4505814236245], [5231.8892764944285, -7846.500581422333], [5245.539276494072, -7858.550581421042], [5261.189276488665, -7869.100581423538], [5285.589276489589, -7885.550581423928], [5305.089276490094, -7902.450581422471], [5319.039276493242, -7919.550581423351], [5331.889276490642, -7939.400581420841], [5346.5392764948665, -7961.550581423893], [5362.739276492334, -7980.800581421477], [5379.189276489171, -7998.100581421141], [5404.28927649117, -8014.550581421531], [5423.839276488707, -8023.20058142314], [5445.339276491268, -8029.55058142274], [5470.989276489036, -8033.350581420962], [5499.989276493978, -8035.450581420633], [5540.739276490569, -8036.100581421124], [5563.639276488175, -8036.950581423952], [5587.889276490898, -8039.050581423624], [5609.639276492828, -8042.65058142306], [5630.589276492515, -8048.750581423292], [5652.639276490845, -8058.050581421839], [5688.889276491693, -8073.900581422322], [5730.18927649116, -8093.3005814216585], [5749.989276495171, -8103.450581423032], [5768.689276493433, -8115.250581422373], [5788.239276490969, -8129.400581420754], [5819.18927649383, -8151.350581421468], [5835.689276494804, -8164.050581420668], [5850.439276493091, -8179.250581420661], [5864.689276492641, -8196.950581421446], [5875.68927649329, -8216.200581422583], [5884.939276491252, -8232.650581422973], [5896.339276489471, -8247.650581420628], [5910.28927649262, -8260.950581423287], [5927.739276494038, -8272.750581422628], [5945.739276491224, -8279.800581423302]]}, {"length": 137.439747541, "source": 1932196479, "destination": 1933540868, "path": [[5234.63927649459, -7776.400581423814], [5238.3892764922275, -7779.000581422224], [5248.789276492971, -7784.550581423133], [5261.139276491633, -7788.800581423061], [5274.889276492445, -7791.550581423224], [5290.389276488839, -7792.200581423714], [5307.23927649035, -7792.400581422498], [5432.2892764915305, -7790.900581422733], [5562.139276491962, -7788.800581423061], [5751.889276488953, -7786.650581422805], [6015.489276492758, -7783.450581420937], [6045.889276492744, -7783.000581422783]]}, {"length": 109.68086673, "source": 1932196479, "destination": 1932196357, "path": [[5234.63927649459, -7776.400581423814], [5228.239276490854, -7772.000581422134], [5220.93927649081, -7764.55058142389], [5215.889276492191, -7756.250581422819], [5211.389276489343, -7746.450581421982], [5210.289276490698, -7738.600581422616], [5210.289276490698, -7729.650581421055], [5209.439276491423, -7664.350581421786], [5211.089276492941, -7542.950581420627], [5210.8392764935725, -7448.500581421768], [5212.239276488617, -7399.400581423521], [5211.089276492941, -7349.200581423076], [5211.939276492217, -7338.350581420627], [5215.889276492191, -7327.700581420515], [5225.43927649366, -7314.300581423794], [5237.239276489447, -7301.800581423378], [5244.189276488953, -7295.750581423732]]}, {"length": 8.60253320017, "source": 1932196479, "destination": 135047495, "path": [[5234.63927649459, -7776.400581423814], [5270.989276489501, -7749.200581422145]]}, {"length": 17.9386195034, "source": 2568600193, "destination": 2568600199, "path": [[-721.6107235095137, -2682.5005814217207], [-688.1607235058596, -2662.3505814207247], [-669.0107235058917, -2647.850581421807], [-643.0107235075866, -2628.2005814231015]]}, {"length": 37.4747979068, "source": 2568600193, "destination": 2568600189, "path": [[-721.6107235095137, -2682.5005814217207], [-775.3607235088111, -2683.40058142158], [-772.6607235056804, -2585.9505814231907], [-772.9607235091862, -2555.600581423789]]}, {"length": 8.3828577852, "source": 2568600193, "destination": 2568600191, "path": [[-721.6107235095137, -2682.5005814217207], [-671.8107235101911, -2681.7005814230297]]}, {"length": 12.9620765861, "source": 2069379717, "destination": 2069376794, "path": [[-4175.160723505655, 4983.049418576968], [-4252.160723510201, 4982.749418577015]]}, {"length": 75.0575520517, "source": 2069379717, "destination": 2069376863, "path": [[-4175.160723505655, 4983.049418576968], [-4177.3107235059115, 5320.549418577513]]}, {"length": 21.494438498, "source": 2069379717, "destination": 2069376903, "path": [[-4175.160723505655, 4983.049418576968], [-4174.560723505749, 4886.39941857727]]}, {"length": 17.9386195034, "source": 2568600199, "destination": 2568600193, "path": [[-643.0107235075866, -2628.2005814231015], [-669.0107235058917, -2647.850581421807], [-688.1607235058596, -2662.3505814207247], [-721.6107235095137, -2682.5005814217207]]}, {"length": 15.6843203912, "source": 2568600199, "destination": 2568600212, "path": [[-643.0107235075866, -2628.2005814231015], [-625.9107235067063, -2643.7005814230474], [-601.3107235105508, -2661.800581421403], [-580.1107235114955, -2680.1505814226803]]}, {"length": 27.447754406, "source": 2568600199, "destination": 2568600189, "path": [[-643.0107235075866, -2628.2005814231015], [-666.2607235057294, -2611.100581422221], [-687.4607235047847, -2597.150581422625], [-707.9607235098706, -2586.800581422466], [-730.5107235069386, -2576.450581422307], [-746.2607235098062, -2572.3005814235476], [-759.2607235054061, -2566.100581422148], [-772.9607235091862, -2555.600581423789]]}, {"length": 25.5856490207, "source": 2568600199, "destination": 2568600047, "path": [[-643.0107235075866, -2628.2005814231015], [-609.5107235069008, -2593.0005814238657], [-604.710723507651, -2587.300581421204], [-597.2107235052704, -2580.6005814210666], [-584.2107235096705, -2571.30058142252], [-565.7607235107776, -2561.950581423389], [-534.5607235085481, -2551.6005814232303]]}, {"length": 9.15130293242, "source": 135019146, "destination": 135019148, "path": [[-1921.4107235114852, 383.4494185781523], [-1921.660723510854, 424.59941857941885]]}, {"length": 124.822368237, "source": 135019146, "destination": 135016126, "path": [[-1921.4107235114852, 383.4494185781523], [-2662.9607235051367, 376.54941857923063]]}, {"length": 124.614264399, "source": 135019148, "destination": 135021866, "path": [[-1921.660723510854, 424.59941857941885], [-1410.6607235078172, 419.8994185777849], [-1338.160723506121, 413.39941857643225], [-1181.8607235056788, 415.39941857848817]]}, {"length": 120.23661486, "source": 135019148, "destination": 134968191, "path": [[-1921.660723510854, 424.59941857941885], [-1925.1107235049858, 965.2494185772298]]}, {"length": 124.820635317, "source": 135019155, "destination": 135016132, "path": [[-1932.0607235115972, 2057.9494185781755], [-2673.6107235052486, 2055.249418578597]]}, {"length": 62.7592141738, "source": 135019155, "destination": 2086776757, "path": [[-1932.0607235115972, 2057.9494185781755], [-1933.8607235113159, 2340.149418579074]]}, {"length": 7.4992982528, "source": 2568600212, "destination": 2568600187, "path": [[-580.1107235114955, -2680.1505814226803], [-535.5607235060234, -2679.4505814216054]]}, {"length": 15.6843203912, "source": 2568600212, "destination": 2568600199, "path": [[-580.1107235114955, -2680.1505814226803], [-601.3107235105508, -2661.800581421403], [-625.9107235067063, -2643.7005814230474], [-643.0107235075866, -2628.2005814231015]]}, {"length": 15.4368632438, "source": 2568600212, "destination": 2568600191, "path": [[-580.1107235114955, -2680.1505814226803], [-671.8107235101911, -2681.7005814230297]]}, {"length": 61.1895499738, "source": 135019157, "destination": 2069036373, "path": [[-1935.6107235068976, 2617.149418576048], [-1945.1607235083657, 2892.199418578656]]}, {"length": 18.3055602012, "source": 135019157, "destination": 2080617438, "path": [[-1935.6107235068976, 2617.149418576048], [-1826.8607235114587, 2617.4994185765854]]}, {"length": 17.5234967183, "source": 2311060119, "destination": 2311060120, "path": [[-3419.5107235106548, 3861.9994185786763], [-3523.610723505044, 3861.9994185786763]]}, {"length": 32.3803591778, "source": 2311060119, "destination": 2069036395, "path": [[-3419.5107235106548, 3861.9994185786763], [-3420.4107235069614, 4007.5994185784225]]}, {"length": 53.0408385161, "source": 2311060120, "destination": 2311060051, "path": [[-3523.610723505044, 3861.9994185786763], [-3550.7107235090984, 3861.9994185786763], [-3671.11072350923, 3861.9994185786763], [-3671.810723510305, 3988.8494185760237]]}, {"length": 32.2139017525, "source": 2311060120, "destination": 2311060035, "path": [[-3523.610723505044, 3861.9994185786763], [-3524.910723506025, 4006.849418576763]]}, {"length": 16.2904886139, "source": 2311060120, "destination": 2311060158, "path": [[-3523.610723505044, 3861.9994185786763], [-3523.1607235104434, 3788.7494185788737]]}, {"length": 17.5234967183, "source": 2311060120, "destination": 2311060119, "path": [[-3523.610723505044, 3861.9994185786763], [-3419.5107235106548, 3861.9994185786763]]}, {"length": 61.0246552445, "source": 135019161, "destination": 2069036722, "path": [[-1950.9107235080592, 4287.699418576096], [-1952.6607235107463, 4562.099418578214]]}, {"length": 60.2128679578, "source": 135019161, "destination": 2069036870, "path": [[-1950.9107235080592, 4287.699418576096], [-1949.210723509509, 4016.9494185775534]]}, {"length": 125.3088727, "source": 135019161, "destination": 135021878, "path": [[-1950.9107235080592, 4287.699418576096], [-1206.5107235059713, 4290.399418579227]]}, {"length": 111.690557431, "source": 135019161, "destination": 3661057639, "path": [[-1950.9107235080592, 4287.699418576096], [-2614.4107235097636, 4285.24941857944]]}, {"length": 21.01592588, "source": 2069376794, "destination": 2069376739, "path": [[-4252.160723510201, 4982.749418577015], [-4252.460723506601, 4888.249418577572]]}, {"length": 75.1811902635, "source": 2069376794, "destination": 2069376909, "path": [[-4252.160723510201, 4982.749418577015], [-4255.51072351027, 5320.799418576882]]}, {"length": 26.3156628201, "source": 2069376794, "destination": 2069379711, "path": [[-4252.160723510201, 4982.749418577015], [-4285.510723505581, 4997.649418577055], [-4332.460723510678, 5013.89941857866], [-4391.4607235109315, 5036.249418576944]]}, {"length": 12.9620765861, "source": 2069376794, "destination": 2069379717, "path": [[-4252.160723510201, 4982.749418577015], [-4175.160723505655, 4983.049418576968]]}, {"length": 59.0328068346, "source": 1933540002, "destination": 1933539699, "path": [[4728.48927649494, -7306.800581421413], [4739.63927649379, -7292.800581421233], [4745.039276492946, -7278.150581420561], [4747.589276490771, -7263.7005814222275], [4746.589276493296, -7247.80058142116], [4743.139276492058, -7230.700581423833], [4733.8892764940965, -7214.10058142169], [4722.139276488235, -7198.450581423544], [4705.239276489692, -7179.000581423623], [4699.539276494135, -7171.300581422457], [4694.43927649138, -7160.70058142293], [4691.889276493555, -7148.150581421931], [4690.289276489068, -7062.75058142225], [4690.389276490237, -7054.150581421226]]}, {"length": 130.359509654, "source": 1933540002, "destination": 1933539628, "path": [[4728.48927649494, -7306.800581421413], [4716.839276490247, -7317.850581422646], [4703.339276488805, -7325.550581423812], [4691.839276489418, -7330.650581423015], [4678.589276494449, -7334.900581422943], [4663.739276494994, -7337.950581423058], [4649.339276490138, -7339.500581423408], [4634.939276492389, -7339.500581423408], [4617.1892764945715, -7336.600581421493], [4607.439276490766, -7334.150581421283], [4600.989276489998, -7332.500581423318], [4586.839276491617, -7326.5505814212875], [4571.289276491087, -7317.700581420894], [4557.339276495042, -7308.000581421225], [4549.239276492755, -7298.300581421558], [4541.839276491544, -7285.700581423526], [4536.889276494094, -7273.1005814219425], [4534.839276495006, -7259.1505814223465], [4534.6392764926695, -7244.8505814222135], [4537.539276491032, -7233.100581423458], [4542.939276490188, -7222.050581422223], [4553.289276493899, -7210.000581423515], [4564.339276491581, -7197.400581421931], [4578.0392764882545, -7182.050581423738], [4586.839276491617, -7171.350581423041], [4591.989276491404, -7159.950581421271], [4593.989276493459, -7149.750581422864], [4593.989276493459, -7137.25058142245], [4594.339276493997, -7028.000581421167], [4595.289276494441, -6948.800581422887], [4594.339276493997, -6886.450581422565]]}, {"length": 23.9734119098, "source": 1933540002, "destination": 1933540143, "path": [[4728.48927649494, -7306.800581421413], [4764.389276495251, -7307.050581420782], [4763.08927649427, -7315.5005814236065], [4759.589276488896, -7322.450581423112], [4751.989276492452, -7332.600581420934], [4744.339276491872, -7346.55058142053], [4740.489276493065, -7355.950581423798], [4738.289276488672, -7364.100581423117], [4737.339276488228, -7372.550581422388], [4737.339276488228, -7383.85058142299]]}, {"length": 121.558435357, "source": 3146411803, "destination": 3146412242, "path": [[-3756.01072350662, -715.5005814212245], [-3756.01072350662, -1262.1005814210662]]}, {"length": 23.9252357474, "source": 3146411803, "destination": 3146557109, "path": [[-3756.01072350662, -715.5005814212245], [-3613.8607235116638, -715.0005814224869]]}, {"length": 64.4455314749, "source": 3146411803, "destination": 135043151, "path": [[-3756.01072350662, -715.5005814212245], [-4062.310723504936, -716.6005814234211], [-4138.910723504807, -716.9005814233742]]}, {"length": 35.1934646562, "source": 1959915292, "destination": 1428268064, "path": [[-6648.7607235075075, -5856.35058142131], [-6560.660723508249, -5956.65058142103], [-6519.910723511657, -5978.55058142116]]}, {"length": 74.05547897, "source": 1959915292, "destination": 1959915204, "path": [[-6648.7607235075075, -5856.35058142131], [-6892.410723509101, -5579.05058142083]]}, {"length": 54.1221790947, "source": 1959915292, "destination": 1959915324, "path": [[-6648.7607235075075, -5856.35058142131], [-6657.0607235050265, -5823.5505814216995], [-6659.310723506451, -5807.400581421262], [-6659.410723507619, -5789.300581422907], [-6656.660723507457, -5771.85058142149], [-6650.960723504795, -5753.850581420749], [-6643.31072351132, -5738.80058142251], [-6634.260723508589, -5726.650581422632], [-6624.460723507753, -5716.300581422473], [-6611.0607235074785, -5704.4005814219645], [-6596.71072350676, -5694.150581422974], [-6577.860723510298, -5684.350581422137], [-6561.410723506356, -5675.200581421791], [-6521.960723510745, -5660.150581423551]]}, {"length": 4.49216167274, "source": 2568600235, "destination": 2568600249, "path": [[-435.1607235051347, -2458.3005814236003], [-461.8607235116201, -2458.3005814236003]]}, {"length": 14.3223558592, "source": 2568600235, "destination": 2703708315, "path": [[-435.1607235051347, -2458.3005814236003], [-350.0607235054076, -2458.2505814230162]]}, {"length": 21.694139383, "source": 2568600235, "destination": 2568599455, "path": [[-435.1607235051347, -2458.3005814236003], [-434.51072350819686, -2437.800581422067], [-434.51072350819686, -2431.6005814206674], [-432.46072350910936, -2424.8505814234986], [-429.01072350787217, -2416.05058142369], [-422.86072351060966, -2405.2005814212407], [-411.91072350699187, -2394.3505814223445], [-387.3107235108364, -2371.750581421139]]}, {"length": 16.1155517489, "source": 2214680848, "destination": 2214680666, "path": [[-12360.460723506605, -1214.6505814207842], [-12456.210723506445, -1214.2505814232152]]}, {"length": 211.526667123, "source": 2214680848, "destination": 2214680668, "path": [[-12360.460723506605, -1214.6505814207842], [-12358.460723511655, -2165.8005814231274]]}, {"length": 120.457763442, "source": 2214680848, "destination": 4615944725, "path": [[-12360.460723506605, -1214.6505814207842], [-11644.760723505953, -1217.4005814209465]]}, {"length": 14.3641024114, "source": 2289072815, "destination": 2289072817, "path": [[-7980.910723510704, 6491.249418576927], [-7980.260723506661, 6440.449418576577], [-7998.460723506185, 6440.399418575993]]}, {"length": 8.61927984349, "source": 2289072815, "destination": 135064196, "path": [[-7980.910723510704, 6491.249418576927], [-7929.710723509232, 6491.2994185775115]]}, {"length": 91.7772301182, "source": 2289072815, "destination": 2290110623, "path": [[-7980.910723510704, 6491.249418576927], [-8526.060723511364, 6487.299418576953]]}, {"length": 12.9373693288, "source": 2289072817, "destination": 2290110624, "path": [[-7998.460723506185, 6440.399418575993], [-8075.310723505425, 6440.249418577792]]}, {"length": 7.26364633547, "source": 2289072817, "destination": 2289072822, "path": [[-7998.460723506185, 6440.399418575993], [-7997.51072350574, 6407.749418578134]]}, {"length": 14.3641024114, "source": 2289072817, "destination": 2289072815, "path": [[-7998.460723506185, 6440.399418575993], [-7980.260723506661, 6440.449418576577], [-7980.910723510704, 6491.249418576927]]}, {"length": 75.8488977763, "source": 2289072820, "destination": 2290110624, "path": [[-8525.860723509028, 6438.349418576905], [-8408.460723508426, 6439.249418576765], [-8176.31072350622, 6439.9994185784235], [-8075.310723505425, 6440.249418577792]]}, {"length": 2.45734273079, "source": 2289072820, "destination": 2290110625, "path": [[-8525.860723509028, 6438.349418576905], [-8525.860723509028, 6427.299418579224]]}, {"length": 10.8842775441, "source": 2289072820, "destination": 2290110623, "path": [[-8525.860723509028, 6438.349418576905], [-8525.860723509028, 6469.099418577429], [-8526.060723511364, 6487.299418576953]]}, {"length": 11.3552707981, "source": 2289072822, "destination": 2289072832, "path": [[-7997.51072350574, 6407.749418578134], [-7977.110723508929, 6394.399418578445], [-7976.810723505423, 6363.74941857909]]}, {"length": 7.26364633547, "source": 2289072822, "destination": 2289072817, "path": [[-7997.51072350574, 6407.749418578134], [-7998.460723506185, 6440.399418575993]]}, {"length": 3.23756270588, "source": 2289072822, "destination": 2289072826, "path": [[-7997.51072350574, 6407.749418578134], [-7997.110723508172, 6393.1994185786325]]}, {"length": 20.892246698, "source": 2568600249, "destination": 2568599344, "path": [[-461.8607235116201, -2458.3005814236003], [-460.4607235094704, -2441.9505814208264], [-459.8107235054272, -2432.100581422958], [-461.16072351054527, -2424.8505814234986], [-463.9107235107076, -2418.650581422099], [-470.0607235079701, -2407.800581423203], [-482.3607235096006, -2391.20058142106], [-499.9107235050815, -2372.40058142163]]}, {"length": 4.49216167274, "source": 2568600249, "destination": 2568600235, "path": [[-461.8607235116201, -2458.3005814236003], [-435.1607235051347, -2458.3005814236003]]}, {"length": 12.1257486121, "source": 2568600249, "destination": 2703708317, "path": [[-461.8607235116201, -2458.3005814236003], [-533.9107235116103, -2458.3005814236003]]}, {"length": 3.23756270588, "source": 2289072826, "destination": 2289072822, "path": [[-7997.110723508172, 6393.1994185786325], [-7997.51072350574, 6407.749418578134]]}, {"length": 8.15340068192, "source": 1933540027, "destination": 1932196370, "path": [[6042.4392764915065, -7325.500581423228], [6090.889276492817, -7325.650581421428]]}, {"length": 16.201448421, "source": 1933540027, "destination": 1933540179, "path": [[6042.4392764915065, -7325.500581423228], [6042.789276492044, -7398.350581421909]]}, {"length": 45.7115202876, "source": 1933540027, "destination": 2139783262, "path": [[6042.4392764915065, -7325.500581423228], [5885.489276494127, -7327.650581423484], [5770.839276493689, -7329.300581421449]]}, {"length": 8.00615889839, "source": 1933540027, "destination": 1933539975, "path": [[6042.4392764915065, -7325.500581423228], [6042.23927648917, -7289.500581421748]]}, {"length": 16.2904886139, "source": 2311060158, "destination": 2311060120, "path": [[-3523.1607235104434, 3788.7494185788737], [-3523.610723505044, 3861.9994185786763]]}, {"length": 17.5350651658, "source": 2311060158, "destination": 2311060160, "path": [[-3523.1607235104434, 3788.7494185788737], [-3419.0107235048117, 3787.29941857614]]}, {"length": 13.0955849668, "source": 2311060158, "destination": 2311060165, "path": [[-3523.1607235104434, 3788.7494185788737], [-3520.5107235114497, 3729.8994185768206]]}, {"length": 42.2261020157, "source": 2311060158, "destination": 2311060159, "path": [[-3523.1607235104434, 3788.7494185788737], [-3774.010723510912, 3788.0994185783834]]}, {"length": 43.6002561126, "source": 2311060159, "destination": 2311060052, "path": [[-3774.010723510912, 3788.0994185783834], [-3774.3607235114496, 3826.399418578319], [-3774.3607235114496, 3984.1494185779425]]}, {"length": 12.6986565127, "source": 2311060159, "destination": 2311060164, "path": [[-3774.010723510912, 3788.0994185783834], [-3773.4607235080375, 3730.9994185790174]]}, {"length": 53.8324919795, "source": 2311060159, "destination": 2310516605, "path": [[-3774.010723510912, 3788.0994185783834], [-4093.8107235106713, 3787.3994185773086]]}, {"length": 42.2261020157, "source": 2311060159, "destination": 2311060158, "path": [[-3774.010723510912, 3788.0994185783834], [-3523.1607235104434, 3788.7494185788737]]}, {"length": 14.8257415327, "source": 2311060160, "destination": 2703728628, "path": [[-3419.0107235048117, 3787.29941857614], [-3330.9607235096905, 3785.6994185787585]]}, {"length": 17.5350651658, "source": 2311060160, "destination": 2311060158, "path": [[-3419.0107235048117, 3787.29941857614], [-3523.1607235104434, 3788.7494185788737]]}, {"length": 16.6128868612, "source": 2311060160, "destination": 2311060119, "path": [[-3419.0107235048117, 3787.29941857614], [-3419.5107235106548, 3861.9994185786763]]}, {"length": 48.3370537136, "source": 2311060161, "destination": 2069036987, "path": [[-4167.560723509212, 3787.099418577355], [-4168.960723511362, 4004.449418577138]]}, {"length": 12.8986476588, "source": 2311060161, "destination": 135034101, "path": [[-4167.560723509212, 3787.099418577355], [-4167.210723508674, 3729.09941857813]]}, {"length": 12.0189906744, "source": 2311060161, "destination": 2310516606, "path": [[-4167.560723509212, 3787.099418577355], [-4238.960723505159, 3786.7994185774023]]}, {"length": 12.4144186375, "source": 2311060161, "destination": 2310516605, "path": [[-4167.560723509212, 3787.099418577355], [-4093.8107235106713, 3787.3994185773086]]}, {"length": 1.42086344278, "source": 2311060162, "destination": 2310516606, "path": [[-4247.410723507983, 3786.7494185768182], [-4238.960723505159, 3786.7994185774023]]}, {"length": 12.8447323849, "source": 2311060162, "destination": 2311060166, "path": [[-4247.410723507983, 3786.7494185768182], [-4246.060723509971, 3728.9994185769615]]}, {"length": 99.0892763643, "source": 2311060162, "destination": 2310516607, "path": [[-4247.410723507983, 3786.7494185768182], [-4679.810723509092, 3787.6494185766774], [-4836.060723505398, 3786.649418579202]]}, {"length": 12.8356074612, "source": 2282973643, "destination": 2282973644, "path": [[-9368.460723507611, 2189.2494185777878], [-9292.210723508277, 2188.4494185790973]]}, {"length": 50.3568526315, "source": 2282973643, "destination": 2282973653, "path": [[-9368.460723507611, 2189.2494185777878], [-9469.660723510742, 2188.4494185790973], [-9565.710723506982, 2186.099418576504], [-9638.060723510478, 2185.849418577135], [-9667.560723507051, 2185.1994185766443]]}, {"length": 7.15137026353, "source": 2282973643, "destination": 2282973629, "path": [[-9368.460723507611, 2189.2494185777878], [-9368.860723505179, 2203.5994185785057], [-9369.110723511654, 2221.399418576908]]}, {"length": 53.8925629133, "source": 2311060164, "destination": 2251802367, "path": [[-3773.4607235080375, 3730.9994185790174], [-4093.610723508334, 3729.1994185792987]]}, {"length": 42.5799965148, "source": 2311060164, "destination": 2311060165, "path": [[-3773.4607235080375, 3730.9994185790174], [-3520.5107235114497, 3729.8994185768206]]}, {"length": 12.6986565127, "source": 2311060164, "destination": 2311060159, "path": [[-3773.4607235080375, 3730.9994185790174], [-3774.010723510912, 3788.0994185783834]]}, {"length": 12.9195927026, "source": 2311060165, "destination": 2311060171, "path": [[-3520.5107235114497, 3729.8994185768206], [-3517.4607235077815, 3671.8494185770114]]}, {"length": 42.5799965148, "source": 2311060165, "destination": 2311060164, "path": [[-3520.5107235114497, 3729.8994185768206], [-3773.4607235080375, 3730.9994185790174]]}, {"length": 13.0955849668, "source": 2311060165, "destination": 2311060158, "path": [[-3520.5107235114497, 3729.8994185768206], [-3523.1607235104434, 3788.7494185788737]]}, {"length": 17.1620576008, "source": 2311060165, "destination": 135035727, "path": [[-3520.5107235114497, 3729.8994185768206], [-3418.6607235113797, 3726.3994185785523]]}, {"length": 12.8447323849, "source": 2311060166, "destination": 2311060162, "path": [[-4246.060723509971, 3728.9994185769615], [-4247.410723507983, 3786.7494185768182]]}, {"length": 13.4323004861, "source": 2311060166, "destination": 2311060179, "path": [[-4246.060723509971, 3728.9994185769615], [-4245.410723505927, 3701.74941857826], [-4245.410723505927, 3668.599418578111]]}, {"length": 13.2726388863, "source": 2311060166, "destination": 135034101, "path": [[-4246.060723509971, 3728.9994185769615], [-4167.210723508674, 3729.09941857813]]}, {"length": 19.5684471952, "source": 2311060166, "destination": 2311060167, "path": [[-4246.060723509971, 3728.9994185769615], [-4362.31072350779, 3728.8494185787613]]}, {"length": 16.1680364481, "source": 2311060167, "destination": 2311060168, "path": [[-4362.31072350779, 3728.8494185787613], [-4458.360723511134, 3728.7494185775927]]}, {"length": 13.3882522687, "source": 2311060167, "destination": 2311060178, "path": [[-4362.31072350779, 3728.8494185787613], [-4362.160723509589, 3668.6494185786955]]}, {"length": 19.5684471952, "source": 2311060167, "destination": 2311060166, "path": [[-4362.31072350779, 3728.8494185787613], [-4246.060723509971, 3728.9994185769615]]}, {"length": 130.204010704, "source": 2311060168, "destination": 2069036656, "path": [[-4458.360723511134, 3728.7494185775927], [-4690.460723509204, 3728.3994185770553], [-4816.21072351146, 3727.7494185765645], [-4837.11072350701, 3728.1994185782705], [-4861.410723506765, 3733.3494185780582], [-4878.110723510076, 3740.89941857747], [-4892.360723509626, 3755.349418579357], [-4901.810723509925, 3772.1994185773156], [-4906.0607235063, 3789.2494185776113], [-4907.410723511419, 3815.6494185770384], [-4909.810723511044, 4000.499418577164]]}, {"length": 13.4661150159, "source": 2311060168, "destination": 2311060180, "path": [[-4458.360723511134, 3728.7494185775927], [-4458.360723511134, 3668.1994185769895]]}, {"length": 16.1680364481, "source": 2311060168, "destination": 2311060167, "path": [[-4458.360723511134, 3728.7494185775927], [-4362.31072350779, 3728.8494185787613]]}, {"length": 27.543057869, "source": 2282973644, "destination": 2282973563, "path": [[-9292.210723508277, 2188.4494185790973], [-9292.810723508182, 2312.299418576913]]}, {"length": 12.8356074612, "source": 2282973644, "destination": 2282973643, "path": [[-9292.210723508277, 2188.4494185790973], [-9368.460723507611, 2189.2494185777878]]}, {"length": 33.6255082114, "source": 2282973644, "destination": 134959135, "path": [[-9292.210723508277, 2188.4494185790973], [-9291.510723507201, 2037.2494185778578]]}, {"length": 32.7351169643, "source": 2311060171, "destination": 2311060173, "path": [[-3517.4607235077815, 3671.8494185770114], [-3495.1607235100823, 3671.8994185775955], [-3323.010723505604, 3670.1494185784613]]}, {"length": 95.2225859009, "source": 2311060171, "destination": 2311060316, "path": [[-3517.4607235077815, 3671.8494185770114], [-3513.6107235089753, 3298.749418576108], [-3515.4607235057256, 3243.699418579382]]}, {"length": 12.9195927026, "source": 2311060171, "destination": 2311060165, "path": [[-3517.4607235077815, 3671.8494185770114], [-3520.5107235114497, 3729.8994185768206]]}, {"length": 96.9179042826, "source": 2311060171, "destination": 2311060175, "path": [[-3517.4607235077815, 3671.8494185770114], [-3853.7607235085147, 3671.099418578905], [-4045.8107235110674, 3669.849418578508], [-4093.210723510765, 3669.6994185767553]]}, {"length": 32.7351169643, "source": 2311060173, "destination": 2311060171, "path": [[-3323.010723505604, 3670.1494185784613], [-3495.1607235100823, 3671.8994185775955], [-3517.4607235077815, 3671.8494185770114]]}, {"length": 121.52313805, "source": 135019215, "destination": 135022800, "path": [[8254.339276490442, -124.15058142067892], [8976.339276493662, -120.65058142241014]]}, {"length": 61.5803932584, "source": 135019215, "destination": 2086776745, "path": [[8254.339276490442, -124.15058142067892], [8252.83927649423, 152.7494185786793]]}, {"length": 60.1346835948, "source": 135019215, "destination": 2086854438, "path": [[8254.339276490442, -124.15058142067892], [8255.539276490254, -394.5505814222372]]}, {"length": 13.2332706022, "source": 2311060177, "destination": 2311060179, "path": [[-4166.810723511106, 3668.69941857928], [-4206.660723511391, 3668.0994185793734], [-4245.410723505927, 3668.599418578111]]}, {"length": 47.6254266022, "source": 2311060177, "destination": 2069036868, "path": [[-4166.810723511106, 3668.69941857928], [-4165.460723505987, 3454.5494185778125]]}, {"length": 13.4326088306, "source": 2311060177, "destination": 135034101, "path": [[-4166.810723511106, 3668.69941857928], [-4167.210723508674, 3729.09941857813]]}, {"length": 12.3907444699, "source": 2311060177, "destination": 2311060175, "path": [[-4166.810723511106, 3668.69941857928], [-4117.360723505215, 3669.599418579139], [-4093.210723510765, 3669.6994185767553]]}, {"length": 9.26289637365, "source": 2311060178, "destination": 2311060194, "path": [[-4362.160723509589, 3668.6494185786955], [-4362.010723511389, 3626.9994185786913]]}, {"length": 19.6540038503, "source": 2311060178, "destination": 2311060179, "path": [[-4362.160723509589, 3668.6494185786955], [-4285.06072351098, 3669.0994185768486], [-4245.410723505927, 3668.599418578111]]}, {"length": 16.1951573562, "source": 2311060178, "destination": 2311060180, "path": [[-4362.160723509589, 3668.6494185786955], [-4424.210723506405, 3668.349418578742], [-4458.360723511134, 3668.1994185769895]]}, {"length": 13.3882522687, "source": 2311060178, "destination": 2311060167, "path": [[-4362.160723509589, 3668.6494185786955], [-4362.31072350779, 3728.8494185787613]]}, {"length": 47.5143008452, "source": 2311060179, "destination": 2311060240, "path": [[-4245.410723505927, 3668.599418578111], [-4245.410723505927, 3564.4994185766163], [-4244.710723504852, 3454.9494185789345]]}, {"length": 13.2332706022, "source": 2311060179, "destination": 2311060177, "path": [[-4245.410723505927, 3668.599418578111], [-4206.660723511391, 3668.0994185793734], [-4166.810723511106, 3668.69941857928]]}, {"length": 19.6540038503, "source": 2311060179, "destination": 2311060178, "path": [[-4245.410723505927, 3668.599418578111], [-4285.06072351098, 3669.0994185768486], [-4362.160723509589, 3668.6494185786955]]}, {"length": 13.4323004861, "source": 2311060179, "destination": 2311060166, "path": [[-4245.410723505927, 3668.599418578111], [-4245.410723505927, 3701.74941857826], [-4246.060723509971, 3728.9994185769615]]}, {"length": 13.4661150159, "source": 2311060180, "destination": 2311060168, "path": [[-4458.360723511134, 3668.1994185769895], [-4458.360723511134, 3728.7494185775927]]}, {"length": 16.1951573562, "source": 2311060180, "destination": 2311060178, "path": [[-4458.360723511134, 3668.1994185769895], [-4424.210723506405, 3668.349418578742], [-4362.160723509589, 3668.6494185786955]]}, {"length": 2.19175464605, "source": 2311060180, "destination": 2309494685, "path": [[-4458.360723511134, 3668.1994185769895], [-4458.360723511134, 3658.349418579121]]}, {"length": 89.3707824545, "source": 2311060180, "destination": 2310516607, "path": [[-4458.360723511134, 3668.1994185769895], [-4552.260723507117, 3667.849418576452], [-4754.810723511582, 3667.0994185783456], [-4830.910723505611, 3666.849418578977], [-4835.1607235090905, 3750.699418578307], [-4836.060723505398, 3786.649418579202]]}, {"length": 121.680710205, "source": 135019221, "destination": 135016288, "path": [[8270.339276492678, -2859.600581423649], [7547.339276491983, -2862.6005814231803]]}, {"length": 59.88958674, "source": 135019221, "destination": 2086854482, "path": [[8270.339276492678, -2859.600581423649], [8626.189276490948, -2858.000581422715]]}, {"length": 62.437064064, "source": 135019221, "destination": 135019223, "path": [[8270.339276492678, -2859.600581423649], [8272.489276492934, -3140.3505814218133]]}, {"length": 59.8125619806, "source": 135019221, "destination": 2086854375, "path": [[8270.339276492678, -2859.600581423649], [8268.58927648999, -2590.6505814212724]]}, {"length": 12.6396108725, "source": 4719909591, "destination": 4719864584, "path": [[-1160.5107235084233, -3092.6505814221628], [-1235.6107235049762, -3093.0005814227]]}, {"length": 11.6418867857, "source": 4719909591, "destination": 1667939637, "path": [[-1160.5107235084233, -3092.6505814221628], [-1160.310723506086, -3040.300581421462]]}, {"length": 47.9606248547, "source": 2358476580, "destination": 2358476450, "path": [[-563.660723507553, 4567.449418576785], [-566.4107235077154, 4783.099418578018]]}, {"length": 95.8510090027, "source": 2358476580, "destination": 2358476583, "path": [[-563.660723507553, 4567.449418576785], [-757.7107235050562, 4566.749418579264], [-1133.060723510937, 4565.399418577698]]}, {"length": 12.7683744569, "source": 2358476580, "destination": 2069036405, "path": [[-563.660723507553, 4567.449418576785], [-487.81072350578825, 4567.749418576739]]}, {"length": 47.5360204056, "source": 2358476580, "destination": 2357086669, "path": [[-563.660723507553, 4567.449418576785], [-562.8607235053096, 4353.69941857644]]}, {"length": 5.96508866392, "source": 1962191311, "destination": 1962191307, "path": [[6487.589276488848, 2377.499418578566], [6518.43927649054, 2364.299418577076]]}, {"length": 23.105859025, "source": 2289072861, "destination": 2289072832, "path": [[-7986.110723507522, 6261.949418576051], [-7986.360723506891, 6284.949418578379], [-7976.860723509561, 6303.099418577318], [-7973.810723505892, 6310.449418577946], [-7972.260723505542, 6315.599418577733], [-7972.260723505542, 6321.599418576796], [-7973.160723508954, 6327.74941857761], [-7975.360723506242, 6335.899418576929], [-7976.460723504886, 6342.399418578281], [-7976.660723507222, 6349.099418578418], [-7976.810723505423, 6363.74941857909]]}, {"length": 47.9161846619, "source": 2358476581, "destination": 2703719280, "path": [[-1282.4607235089047, 4565.04941857716], [-1282.5607235100733, 4578.549418578604], [-1283.0107235117794, 4653.449418576372], [-1283.46072350638, 4723.899418578981], [-1283.8607235110544, 4780.499418576056]]}, {"length": 96.3648882877, "source": 2358476581, "destination": 2703728625, "path": [[-1282.4607235089047, 4565.04941857716], [-1854.9107235088513, 4562.549418576367]]}, {"length": 48.0479279593, "source": 2358476581, "destination": 2357086674, "path": [[-1282.4607235089047, 4565.04941857716], [-1281.110723510892, 4348.999418578359]]}, {"length": 12.4904149139, "source": 2358476581, "destination": 2069036849, "path": [[-1282.4607235089047, 4565.04941857716], [-1208.2607235086584, 4565.099418577745]]}, {"length": 9.26289637365, "source": 2311060194, "destination": 2311060178, "path": [[-4362.010723511389, 3626.9994185786913], [-4362.160723509589, 3668.6494185786955]]}, {"length": 47.6584355253, "source": 2289072869, "destination": 2290110625, "path": [[-8525.010723509751, 6212.999418576004], [-8525.860723509028, 6315.9494185782705], [-8525.860723509028, 6427.299418579224]]}, {"length": 10.9097293778, "source": 2289072869, "destination": 2091809130, "path": [[-8525.010723509751, 6212.999418576004], [-8589.81072350673, 6212.249418577898]]}, {"length": 47.5597980744, "source": 2289072869, "destination": 2289072986, "path": [[-8525.010723509751, 6212.999418576004], [-8524.910723508583, 6202.649418579398], [-8523.660723511739, 6019.34941857607], [-8523.4607235094, 5999.149418578043]]}, {"length": 86.8190753087, "source": 2289072869, "destination": 2091809557, "path": [[-8525.010723509751, 6212.999418576004], [-8317.06072350613, 6211.399418578622], [-8292.510723507006, 6210.149418578226], [-8009.360723505665, 6211.799418576192]]}, {"length": 8.51036712568, "source": 2960628177, "destination": 1667872493, "path": [[-2789.6607235078363, -3918.1005814228342], [-2825.7607235104842, -3944.900581423383]]}, {"length": 15.1643632393, "source": 2960628177, "destination": 2960628181, "path": [[-2789.6607235078363, -3918.1005814228342], [-2760.1107235071254, -3950.700581423661], [-2742.9607235092135, -3976.2505814238125]]}, {"length": 76.0729056079, "source": 2703728622, "destination": 2355676176, "path": [[-569.1607235078777, 5449.349418576332], [-117.26072350626282, 5450.349418577361]]}, {"length": 13.4992042178, "source": 2703728622, "destination": 2355655000, "path": [[-569.1607235078777, 5449.349418576332], [-568.7607235103087, 5388.649418577529]]}, {"length": 95.6621816987, "source": 2703728622, "destination": 2355676000, "path": [[-569.1607235078777, 5449.349418576332], [-571.8107235068715, 5879.499418576017]]}, {"length": 95.8706860398, "source": 2703728622, "destination": 2355676183, "path": [[-569.1607235078777, 5449.349418576332], [-1138.6607235053248, 5446.999418577292]]}, {"length": 13.5661370516, "source": 134986474, "destination": 134986536, "path": [[-9381.660723505547, -10629.100581422079], [-9381.660723505547, -10568.100581423323]]}, {"length": 397.537720824, "source": 134986474, "destination": 134966034, "path": [[-9381.660723505547, -10629.100581422079], [-11744.160723509367, -10607.60058142307]]}, {"length": 13.8045389476, "source": 134986475, "destination": 134986474, "path": [[-9299.66072350652, -10631.100581420582], [-9381.660723505547, -10629.100581422079]]}, {"length": 150.795255476, "source": 134986475, "destination": 135045922, "path": [[-9299.66072350652, -10631.100581420582], [-9301.660723508576, -10650.10058142235], [-9298.660723509045, -11309.100581421206]]}, {"length": 125.30574396, "source": 2069036840, "destination": 2069036353, "path": [[-1201.3107235091525, 3467.249418577012], [-1945.7107235112403, 3464.549418577434]]}, {"length": 60.4574741365, "source": 2069036840, "destination": 135021875, "path": [[-1201.3107235091525, 3467.249418577012], [-1203.0107235077026, 3739.0994185777517]]}, {"length": 121.274208602, "source": 2069036840, "destination": 2069036654, "path": [[-1201.3107235091525, 3467.249418577012], [-480.8607235062823, 3469.8994185760057]]}, {"length": 58.189147282, "source": 2069036840, "destination": 134980206, "path": [[-1201.3107235091525, 3467.249418577012], [-1199.6107235106024, 3205.599418578231]]}, {"length": 12.4994313122, "source": 2316883458, "destination": 2316883457, "path": [[-2773.9107235049687, 6190.149418578983], [-2699.660723507691, 6190.149418578983]]}, {"length": 9.45167931345, "source": 2316883458, "destination": 2316883445, "path": [[-2773.9107235049687, 6190.149418578983], [-2774.110723507306, 6232.649418578262]]}, {"length": 23.8070353608, "source": 2316883458, "destination": 2316883479, "path": [[-2773.9107235049687, 6190.149418578983], [-2773.860723507937, 6083.099418578541]]}, {"length": 11.4064832749, "source": 2573122294, "destination": 4719462289, "path": [[-3253.11072350587, -2386.7505814223478], [-3271.810723511237, -2436.0505814229327]]}, {"length": 102.571045609, "source": 2573122294, "destination": 135064044, "path": [[-3253.11072350587, -2386.7505814223478], [-2643.6607235069687, -2384.8505814214604]]}, {"length": 2.77432456087, "source": 2293202935, "destination": 2293202934, "path": [[-11948.860723506983, 90.24941857660451], [-11938.510723510375, 99.94941857627282]]}, {"length": 13.2994341674, "source": 2310516522, "destination": 2310516505, "path": [[-3526.8107235069124, 4281.949418576403], [-3527.16072350745, 4341.7494185789]]}, {"length": 17.6160873927, "source": 2310516522, "destination": 135035730, "path": [[-3526.8107235069124, 4281.949418576403], [-3422.1607235096485, 4282.349418577524]]}, {"length": 12.4209508235, "source": 2310516522, "destination": 2310516558, "path": [[-3526.8107235069124, 4281.949418576403], [-3526.6107235116806, 4226.099418577433]]}, {"length": 95.6564815695, "source": 2310516522, "destination": 2069376823, "path": [[-3526.8107235069124, 4281.949418576403], [-4095.0607235075154, 4279.899418577315]]}, {"length": 13.7866888336, "source": 1959915345, "destination": 3357236936, "path": [[-6658.510723511313, -3742.050581422518], [-6656.410723508088, -3706.000581424007], [-6657.110723509163, -3680.1005814233176]]}, {"length": 7.07507860082, "source": 1959915345, "destination": 4720035457, "path": [[-6658.510723511313, -3742.050581422518], [-6662.760723507688, -3773.7005814229005]]}, {"length": 221.332607169, "source": 1959915345, "destination": 1959915350, "path": [[-6658.510723511313, -3742.050581422518], [-6617.510723508247, -3745.4005814225866], [-6541.710723510619, -3753.500581421321], [-6489.410723510502, -3757.6005814230484], [-6437.110723510386, -3758.100581421786], [-6390.160723505289, -3754.000581423611], [-6343.260723511435, -3747.9505814239646], [-6235.960723508071, -3725.600581422128], [-6171.51072351163, -3732.0505814228964], [-5421.610723509219, -3985.6005814229434]]}, {"length": 89.7883769027, "source": 1959915345, "destination": 1959915190, "path": [[-6658.510723511313, -3742.050581422518], [-6707.360723510192, -3743.350581423499], [-6761.660723505258, -3750.4505814212052], [-6893.760723507114, -3783.4505814231534], [-6949.360723510267, -3793.450581422775], [-7117.660723508834, -3821.8505814207047], [-7126.46072350509, -3822.000581422458], [-7134.510723510346, -3821.00058142143], [-7142.510723511464, -3812.9005814226957], [-7148.710723505757, -3790.250581420906]]}, {"length": 148.860682441, "source": 2960628181, "destination": 3278420176, "path": [[-2742.9607235092135, -3976.2505814238125], [-2676.9107235082856, -4045.800581423009], [-2643.160723508231, -4080.2005814235545], [-2613.210723509951, -4107.450581422256], [-2594.0607235099833, -4128.400581421943], [-2554.610723507267, -4156.750581422841], [-2072.510723508003, -4400.550581422635]]}, {"length": 7.96213456793, "source": 2069376811, "destination": 2069376752, "path": [[-5652.260723508107, 4762.149418578332], [-5604.960723509577, 4762.399418577701]]}, {"length": 13.6996795565, "source": 2069376811, "destination": 134954265, "path": [[-5652.260723508107, 4762.149418578332], [-5652.660723505676, 4823.749418576995]]}, {"length": 108.515725438, "source": 2069376811, "destination": 135031619, "path": [[-5652.260723508107, 4762.149418578332], [-5650.3607235072195, 4274.199418578206]]}, {"length": 9.97364377451, "source": 2069376811, "destination": 2286663657, "path": [[-5652.260723508107, 4762.149418578332], [-5711.5107235077285, 4762.299418576532]]}, {"length": 36.749210232, "source": 2573122310, "destination": 4719844793, "path": [[-2657.960723510655, -784.4505814205149], [-2648.7607235097244, -949.5505814207661]]}, {"length": 17.863760883, "source": 2573122310, "destination": 1567588865, "path": [[-2657.960723510655, -784.4505814205149], [-2681.360723506998, -862.8005814230733]]}, {"length": 125.696610805, "source": 2573122312, "destination": 135043153, "path": [[-2656.0107235056307, -711.5005814206654], [-2745.310723511807, -712.05058142354], [-3300.5607235097045, -715.5005814212245], [-3402.8107235073435, -716.1505814217151]]}, {"length": 16.2264610455, "source": 2573122312, "destination": 2573122310, "path": [[-2656.0107235056307, -711.5005814206654], [-2657.660723507149, -773.6505814222028], [-2657.960723510655, -784.4505814205149]]}, {"length": 124.810184318, "source": 2573122314, "destination": 2573122312, "path": [[-1914.4607235048738, -708.8005814210874], [-2569.6607235090596, -711.2005814207123], [-2656.0107235056307, -711.5005814206654]]}, {"length": 61.5026284637, "source": 2573122314, "destination": 2086776826, "path": [[-1914.4607235048738, -708.8005814210874], [-1916.210723507561, -432.2505814222666]]}, {"length": 39.3076255784, "source": 2573122314, "destination": 2585900652, "path": [[-1914.4607235048738, -708.8005814210874], [-1915.2607235071173, -885.5505814224784]]}, {"length": 121.326146725, "source": 2573122316, "destination": 135043164, "path": [[271.48927649278676, -700.8505814205535], [125.3392764937189, -701.3505814228438], [-449.36072350765244, -703.4505814225156]]}, {"length": 122.474213673, "source": 2573122316, "destination": 135016390, "path": [[271.48927649278676, -700.8505814205535], [277.33927649364887, -1251.5505814221228]]}, {"length": 130.017903665, "source": 2311060239, "destination": 2311060240, "path": [[-5017.110723507301, 3454.999418575966], [-4797.310723510862, 3455.749418577625], [-4244.710723504852, 3454.9494185789345]]}, {"length": 47.5143008452, "source": 2311060240, "destination": 2311060179, "path": [[-4244.710723504852, 3454.9494185789345], [-4245.410723505927, 3564.4994185766163], [-4245.410723505927, 3668.599418578111]]}, {"length": 13.3403706942, "source": 2311060240, "destination": 2069036868, "path": [[-4244.710723504852, 3454.9494185789345], [-4165.460723505987, 3454.5494185778125]]}, {"length": 47.770236783, "source": 2311060240, "destination": 2311060325, "path": [[-4244.710723504852, 3454.9494185789345], [-4244.460723505483, 3417.8994185793954], [-4244.460723505483, 3361.74941857692], [-4243.810723508545, 3282.899418579177], [-4243.4607235080075, 3240.149418576976]]}, {"length": 130.017903665, "source": 2311060240, "destination": 2311060239, "path": [[-4244.710723504852, 3454.9494185789345], [-4797.310723510862, 3455.749418577625], [-5017.110723507301, 3454.999418575966]]}, {"length": 16.2946352548, "source": 2960628184, "destination": 1667872493, "path": [[-2887.8107235073003, -3999.100581420834], [-2867.5607235086886, -3989.050581420628], [-2850.0607235102393, -3976.4005814220127], [-2835.96072350889, -3961.500581421973], [-2825.7607235104842, -3944.900581423383]]}, {"length": 32.4104035287, "source": 2960628184, "destination": 1667872478, "path": [[-2887.8107235073003, -3999.100581420834], [-2924.11072350518, -4008.8005814240546], [-2962.610723507453, -4010.100581421483], [-2999.910723509913, -4002.850581422024], [-3032.8607235077243, -3987.7505814231995], [-3058.560723509629, -3966.050581421854]]}, {"length": 86.8190753087, "source": 2091809557, "destination": 2289072869, "path": [[-8009.360723505665, 6211.799418576192], [-8292.510723507006, 6210.149418578226], [-8317.06072350613, 6211.399418578622], [-8525.010723509751, 6212.999418576004]]}, {"length": 49.1171612956, "source": 4224850393, "destination": 4224850393, "path": [[7111.589276490804, 4004.8994185788442], [7109.739276494054, 3992.2494185766764], [7102.389276489874, 3981.249418576027], [7090.28927649058, 3972.6494185785555], [7073.3892764920365, 3967.5494185793523], [7054.2892764891, 3967.9494185769217], [7037.939276493433, 3973.4994185778305], [7024.389276494958, 3984.6994185772646], [7018.639276495264, 3998.199418578707], [7019.589276488603, 4010.5494185773696], [7026.839276491614, 4022.699418577247], [7037.939276493433, 4031.099418579487], [7052.0892764918135, 4036.2994185763055], [7068.789276495125, 4037.649418577871], [7086.489276488805, 4033.799418579065], [7099.089276493942, 4026.449418578437], [7107.289276490292, 4017.2494185775067], [7111.589276490804, 4004.8994185788442]]}, {"length": 31.1518211039, "source": 4224850393, "destination": 4224849385, "path": [[7111.589276490804, 4004.8994185788442], [7121.63927649101, 4025.1494185774563], [7134.689276490746, 4045.9994185759742], [7151.9392764898275, 4068.7994185759635], [7177.089276488858, 4097.949418579105], [7201.339276491581, 4126.899418576358]]}, {"length": 59.8345576542, "source": 2573122333, "destination": 1429422307, "path": [[1753.8392764890887, -695.4005814208131], [1752.3392764928758, -426.35058142082016]]}, {"length": 124.196502691, "source": 2573122333, "destination": 1996491668, "path": [[1753.8392764890887, -695.4005814208131], [1114.5892764901077, -697.7505814234064], [1015.9392764919062, -698.1005814239438]]}, {"length": 59.6562501432, "source": 2573122333, "destination": 2086715245, "path": [[1753.8392764890887, -695.4005814208131], [1754.3892764919633, -963.6505814221152]]}, {"length": 34.7945805667, "source": 2573122335, "destination": 2139783264, "path": [[4867.4392764951335, -1244.8005814214014], [4660.739276488357, -1241.9505814236231]]}, {"length": 9.47453709608, "source": 2573122335, "destination": 4992692228, "path": [[4867.4392764951335, -1244.8005814214014], [4922.639276493612, -1253.150581423057]]}, {"length": 10.7942880458, "source": 2573122335, "destination": 1942240501, "path": [[4867.4392764951335, -1244.8005814214014], [4869.939276488822, -1293.3005814232956]]}, {"length": 19.9653524753, "source": 134961952, "destination": 134961949, "path": [[9830.089276491093, 5705.449418577757], [9711.489276490682, 5705.399418577173]]}, {"length": 122.655831377, "source": 3758384262, "destination": 2311060377, "path": [[-5650.960723507125, 3117.3494185772197], [-5572.810723506905, 3117.5494185760044], [-5393.110723510119, 3118.2994185776633], [-5116.460723506578, 3119.799418577429], [-4962.26072350936, 3120.2994185761668], [-4962.460723511696, 3090.0494185779335]]}, {"length": 2.73506327143, "source": 3758384262, "destination": 2311060354, "path": [[-5650.960723507125, 3117.3494185772197], [-5667.2107235087315, 3117.2994185766356]]}, {"length": 128.119411439, "source": 3758384262, "destination": 135031649, "path": [[-5650.960723507125, 3117.3494185772197], [-5653.810723508457, 3073.0994185788063], [-5663.760723507494, 2926.3494185762793], [-5672.41072350555, 2777.849418578171], [-5675.160723505713, 2541.649418578373]]}, {"length": 9.85226722934, "source": 3758384262, "destination": 134959945, "path": [[-5650.960723507125, 3117.3494185772197], [-5648.060723508763, 3161.599418579186]]}, {"length": 52.8235281076, "source": 2573122344, "destination": 135110872, "path": [[5827.689276493686, -1496.6005814223138], [5832.339276494736, -1734.1005814230925]]}, {"length": 98.4206046136, "source": 2573122344, "destination": 877895779, "path": [[5827.689276493686, -1496.6005814223138], [5823.83927649488, -1299.5505814217267], [5836.039276488236, -1264.650581422444], [5850.739276489492, -1244.750581420817], [5890.939276490315, -1231.850581422833], [5944.439276490243, -1226.2005814207555], [6093.239276488304, -1222.750581423071]]}, {"length": 166.592884482, "source": 2573122344, "destination": 2086854436, "path": [[5827.689276493686, -1496.6005814223138], [6817.48927649295, -1490.5005814220829]]}, {"length": 20.3266049435, "source": 2573122345, "destination": 2271725713, "path": [[5837.189276491017, -2923.5505814213525], [5837.239276495155, -2832.1505814226102]]}, {"length": 53.9074447958, "source": 2573122345, "destination": 135064564, "path": [[5837.189276491017, -2923.5505814213525], [5837.0392764928165, -3165.9505814225495]]}, {"length": 166.193117066, "source": 2573122345, "destination": 2086854415, "path": [[5837.189276491017, -2923.5505814213525], [6824.689276491825, -2923.5505814213525]]}, {"length": 12.1983718467, "source": 2573122347, "destination": 135064564, "path": [[5836.889276494617, -3220.8005814240437], [5837.0392764928165, -3165.9505814225495]]}, {"length": 186.0749484, "source": 2573122347, "destination": 1295456181, "path": [[5836.889276494617, -3220.8005814240437], [5840.6892764892855, -4057.500581421181]]}, {"length": 224.599716832, "source": 2573122347, "destination": 1146604909, "path": [[5836.889276494617, -3220.8005814240437], [5707.5892764899545, -3246.250581423027], [5587.439276489193, -3275.7505814231536], [5444.439276494961, -3312.750581422108], [5312.3892764901375, -3342.600581422772], [5214.489276490041, -3354.7005814220656], [5104.789276494159, -3364.7505814222714], [5000.989276489065, -3367.950581420587], [4900.039276492407, -3368.550581424046], [4807.4392764903, -3366.5005814214055], [4609.789276493359, -3343.6005814238], [4532.789276488813, -3331.7505814238757]]}, {"length": 13.7927820635, "source": 134986541, "destination": 134986475, "path": [[-9301.660723508576, -10569.100581420798], [-9299.66072350652, -10631.100581420582]]}, {"length": 7.52928357134, "source": 134986541, "destination": 2080739054, "path": [[-9301.660723508576, -10569.100581420798], [-9256.910723507872, -10569.200581421966]]}, {"length": 23.9734119098, "source": 1933540143, "destination": 1933540002, "path": [[4737.339276488228, -7383.85058142299], [4737.339276488228, -7372.550581422388], [4738.289276488672, -7364.100581423117], [4740.489276493065, -7355.950581423798], [4744.339276491872, -7346.55058142053], [4751.989276492452, -7332.600581420934], [4759.589276488896, -7322.450581423112], [4763.08927649427, -7315.5005814236065], [4764.389276495251, -7307.050581420782], [4728.48927649494, -7306.800581421413]]}, {"length": 46.2354073075, "source": 2573122354, "destination": 2086854537, "path": [[7322.189276493418, -3196.7005814230733], [7323.4892764944, -3404.6005814225564]]}, {"length": 12.5429790806, "source": 2573122354, "destination": 2080592187, "path": [[7322.189276493418, -3196.7005814230733], [7322.189276493418, -3140.3005814212293]]}, {"length": 83.9543822151, "source": 2573122354, "destination": 135064822, "path": [[7322.189276493418, -3196.7005814230733], [6823.339276493812, -3196.0005814219985]]}, {"length": 60.1910853985, "source": 3146411827, "destination": 134975725, "path": [[-3756.01072350662, -4093.4505814220756], [-4113.6607235117135, -4095.6005814223317]]}, {"length": 107.239393524, "source": 3146411827, "destination": 3146411798, "path": [[-3756.01072350662, -4093.4505814220756], [-3742.2107235087765, -4575.550581421339]]}, {"length": 172.973847619, "source": 3146411827, "destination": 3146411767, "path": [[-3756.01072350662, -4093.4505814220756], [-3371.1607235105134, -4091.100581423035], [-3368.360723506214, -4577.650581421011]]}, {"length": 53.8073728391, "source": 2573122356, "destination": 2086854406, "path": [[7327.339276493205, -4078.1005814238824], [7327.939276493112, -4320.050581423374]]}, {"length": 95.1727114708, "source": 2573122356, "destination": 2573122358, "path": [[7327.339276493205, -4078.1005814238824], [6761.839276492765, -4082.100581420889]]}, {"length": 7.7615159077, "source": 2573122356, "destination": 1295456206, "path": [[7327.339276493205, -4078.1005814238824], [7327.889276488975, -4043.200581421047]]}, {"length": 93.1788726808, "source": 2573122356, "destination": 1295456198, "path": [[7327.339276493205, -4078.1005814238824], [7880.989276493721, -4073.9505814215704]]}, {"length": 44.5992473916, "source": 2573122358, "destination": 134975753, "path": [[6761.839276492765, -4082.100581420889], [6496.839276493915, -4084.1005814229447]]}, {"length": 95.1727114708, "source": 2573122358, "destination": 2573122356, "path": [[6761.839276492765, -4082.100581420889], [7327.339276493205, -4078.1005814238824]]}, {"length": 97.2420623193, "source": 2573122358, "destination": 134956077, "path": [[6761.839276492765, -4082.100581420889], [6765.539276493371, -4519.350581421832]]}, {"length": 204.133555337, "source": 2573122359, "destination": 135057528, "path": [[5840.839276494591, -4088.6005814222417], [5842.839276489542, -4547.100581422825], [5842.889276493679, -4560.150581422562], [5844.389276489892, -5006.500581423268]]}, {"length": 110.403376931, "source": 2573122359, "destination": 134975753, "path": [[5840.839276494591, -4088.6005814222417], [6496.839276493915, -4084.1005814229447]]}, {"length": 6.91661796595, "source": 2573122359, "destination": 1295456181, "path": [[5840.839276494591, -4088.6005814222417], [5840.6892764892855, -4057.500581421181]]}, {"length": 199.374423503, "source": 135019326, "destination": 2573122354, "path": [[8506.839276492428, -3191.850581423239], [8191.939276493087, -3192.450581423145], [7322.189276493418, -3196.7005814230733]]}, {"length": 46.4136210796, "source": 135019326, "destination": 2086854532, "path": [[8506.839276492428, -3191.850581423239], [8508.389276492779, -3400.550581421413]]}, {"length": 44.7140846017, "source": 135019329, "destination": 2086854433, "path": [[8509.98927649016, -3613.6005814206837], [8512.789276494459, -3814.65058142183]]}, {"length": 39.2524432675, "source": 135019329, "destination": 2086854397, "path": [[8509.98927649016, -3613.6005814206837], [8508.689276489178, -3437.1005814222144]]}, {"length": 98.943536409, "source": 135019329, "destination": 2086854494, "path": [[8509.98927649016, -3613.6005814206837], [7922.089276490851, -3617.550581420659]]}, {"length": 101.077572187, "source": 135019331, "destination": 134991218, "path": [[8516.939276489666, -4981.050581420732], [8519.939276489196, -5435.550581420756]]}, {"length": 55.8200965697, "source": 135019331, "destination": 2086854428, "path": [[8516.939276489666, -4981.050581420732], [8515.93927649219, -4730.050581422063]]}, {"length": 49.7171700392, "source": 135019331, "destination": 1935184006, "path": [[8516.939276489666, -4981.050581420732], [8812.339276488501, -4977.800581421832]]}, {"length": 50.1078347818, "source": 135019331, "destination": 1935184007, "path": [[8516.939276489666, -4981.050581420732], [8219.189276488236, -4982.0505814217595]]}, {"length": 49.6206352773, "source": 135019334, "destination": 1935184032, "path": [[8522.939276488727, -5891.700581422299], [8228.089276492767, -5894.000581420755]]}, {"length": 202.368407394, "source": 135019334, "destination": 135019337, "path": [[8522.939276488727, -5891.700581422299], [8530.939276489846, -6801.650581422791]]}, {"length": 101.444495217, "source": 135019334, "destination": 134991218, "path": [[8522.939276488727, -5891.700581422299], [8519.939276489196, -5435.550581420756]]}, {"length": 49.7742405322, "source": 135019334, "destination": 1935184031, "path": [[8522.939276488727, -5891.700581422299], [8818.689276495206, -5888.600581421599]]}, {"length": 49.4754558827, "source": 135019337, "destination": 1935184050, "path": [[8530.939276489846, -6801.650581422791], [8675.83927649207, -6782.250581423455], [8822.239276490507, -6773.450581423645]]}, {"length": 8.34028167882, "source": 135019337, "destination": 1932196195, "path": [[8530.939276489846, -6801.650581422791], [8531.33927649452, -6839.150581424036]]}, {"length": 50.361076845, "source": 135019337, "destination": 1935184051, "path": [[8530.939276489846, -6801.650581422791], [8231.689276492205, -6804.550581421154]]}, {"length": 202.368407394, "source": 135019337, "destination": 135019334, "path": [[8530.939276489846, -6801.650581422791], [8522.939276488727, -5891.700581422299]]}, {"length": 6.98340288986, "source": 135019340, "destination": 1930367395, "path": [[8536.339276489001, -7712.500581423143], [8536.53927649134, -7743.900581420604]]}, {"length": 50.0631179272, "source": 135019340, "destination": 1930367388, "path": [[8536.339276489001, -7712.500581423143], [8833.78927649403, -7707.9005814226775]]}, {"length": 194.226294668, "source": 135019340, "destination": 1932196195, "path": [[8536.339276489001, -7712.500581423143], [8533.389276493608, -7247.6505814229595], [8531.33927649452, -6839.150581424036]]}, {"length": 50.0748183453, "source": 135019340, "destination": 1935184551, "path": [[8536.339276489001, -7712.500581423143], [8238.789276489912, -7715.800581422627]]}, {"length": 12.2988110284, "source": 135035725, "destination": 2311060673, "path": [[-3409.9607235091867, 2609.4494185784356], [-3410.3607235067557, 2664.749418578083]]}, {"length": 110.341439315, "source": 135035725, "destination": 2316883652, "path": [[-3409.9607235091867, 2609.4494185784356], [-3316.660723506004, 2610.099418578926], [-2754.4607235086005, 2613.899418577148]]}, {"length": 13.543530132, "source": 135035727, "destination": 2311060160, "path": [[-3418.6607235113797, 3726.3994185785523], [-3419.0107235048117, 3787.29941857614]]}, {"length": 17.1620576008, "source": 135035727, "destination": 2311060165, "path": [[-3418.6607235113797, 3726.3994185785523], [-3520.5107235114497, 3729.8994185768206]]}, {"length": 6.9581907999, "source": 1933540176, "destination": 1933540179, "path": [[6001.439276488441, -7398.25058142074], [6042.789276492044, -7398.350581421909]]}, {"length": 13.1096860302, "source": 135035730, "destination": 2311059946, "path": [[-3422.1607235096485, 4282.349418577524], [-3422.5607235072175, 4341.299418577193]]}, {"length": 14.9226903606, "source": 135035730, "destination": 3715980772, "path": [[-3422.1607235096485, 4282.349418577524], [-3333.5107235075156, 4282.649418577477]]}, {"length": 17.6160873927, "source": 135035730, "destination": 2310516522, "path": [[-3422.1607235096485, 4282.349418577524], [-3526.8107235069124, 4281.949418576403]]}, {"length": 6.9581907999, "source": 1933540179, "destination": 1933540176, "path": [[6042.789276492044, -7398.350581421909], [6001.439276488441, -7398.25058142074]]}, {"length": 16.201448421, "source": 1933540179, "destination": 1933540027, "path": [[6042.789276492044, -7398.350581421909], [6042.4392764915065, -7325.500581423228]]}, {"length": 8.21945685745, "source": 1933540179, "destination": 1933540181, "path": [[6042.789276492044, -7398.350581421909], [6091.639276490923, -7398.500581423661]]}, {"length": 77.6596338287, "source": 1933540179, "destination": 1933540854, "path": [[6042.789276492044, -7398.350581421909], [6043.089276488445, -7451.400581423684], [6043.389276491951, -7563.800581422697], [6045.339276489869, -7682.650581422478], [6045.339276489869, -7747.550581420626]]}, {"length": 10.6302251751, "source": 2282822484, "destination": 2282656418, "path": [[-9869.710723506842, -187.50058142202874], [-9869.96072350621, -139.70058142120934]]}, {"length": 12.1010826535, "source": 2282822484, "destination": 2282822524, "path": [[-9869.710723506842, -187.50058142202874], [-9882.810723510716, -202.40058142206863], [-9893.360723509659, -216.05058142171174], [-9905.510723505984, -234.6005814217733]]}, {"length": 10.832942466, "source": 2282822484, "destination": 2282822485, "path": [[-9869.710723506842, -187.50058142202874], [-9920.21072350724, -187.35058142382854], [-9934.06072350922, -187.75058142139756]]}, {"length": 99.9073360067, "source": 2282822484, "destination": 135045975, "path": [[-9869.710723506842, -187.50058142202874], [-9815.760723505207, -187.65058142378166], [-9455.960723506962, -186.4005814233849], [-9389.510723508465, -184.10058142137586], [-9357.46072350696, -183.55058142205394], [-9276.21072350604, -182.9005814215634]]}, {"length": 10.832942466, "source": 2282822485, "destination": 2282822484, "path": [[-9934.06072350922, -187.75058142139756], [-9920.21072350724, -187.35058142382854], [-9869.710723506842, -187.50058142202874]]}, {"length": 237.15195682, "source": 2289072986, "destination": 1965661601, "path": [[-8523.4607235094, 5999.149418578043], [-8421.110723510594, 5999.899418576149], [-8338.560723508692, 5999.899418576149], [-8105.660723508379, 5999.899418576149], [-7969.110723507811, 6003.199418579186], [-7949.810723509643, 5995.0994185769], [-7926.210723510962, 5983.4994185763435], [-7907.160723505058, 5979.1494185788], [-7884.210723510421, 5979.649418577537], [-7857.360723505735, 5980.149418576275], [-7806.260723505431, 5981.199418577888], [-7785.810723511588, 5983.349418578144], [-7757.010723508984, 5999.899418576149], [-7731.06072350771, 6002.749418577479], [-7531.0107235111445, 6002.499418578111], [-7269.310723508226, 6002.799418578064], [-7130.81072350974, 6003.349418577386]]}, {"length": 47.5597980744, "source": 2289072986, "destination": 2289072869, "path": [[-8523.4607235094, 5999.149418578043], [-8523.660723511739, 6019.34941857607], [-8524.910723508583, 6202.649418579398], [-8525.010723509751, 6212.999418576004]]}, {"length": 16.5574578865, "source": 2289072986, "destination": 2291095886, "path": [[-8523.4607235094, 5999.149418578043], [-8522.660723507159, 5924.699418578428]]}, {"length": 10.9099577653, "source": 2289072986, "destination": 2139774710, "path": [[-8523.4607235094, 5999.149418578043], [-8543.410723511613, 5998.99941857629], [-8588.26072350638, 5998.749418576921]]}, {"length": 18.9038354005, "source": 2311060316, "destination": 2311060345, "path": [[-3515.4607235057256, 3243.699418579382], [-3516.560723511475, 3158.699418577271]]}, {"length": 95.2225859009, "source": 2311060316, "destination": 2311060171, "path": [[-3515.4607235057256, 3243.699418579382], [-3513.6107235089753, 3298.749418576108], [-3517.4607235077815, 3671.8494185770114]]}, {"length": 96.0777148362, "source": 2311060316, "destination": 2311060323, "path": [[-3515.4607235057256, 3243.699418579382], [-3640.0607235052007, 3242.349418577817], [-3808.2607235097043, 3241.1494185780043], [-3949.0607235066477, 3241.1494185780043], [-4068.9607235080416, 3241.1494185780043], [-4086.210723507122, 3240.9994185762516]]}, {"length": 146.965328486, "source": 1959915322, "destination": 1959915267, "path": [[-8279.71072350664, -4818.9505814235645], [-8146.960723507846, -4789.750581423391], [-7519.5107235117575, -4632.350581420752], [-7510.010723507321, -4629.850581423511], [-7496.510723505879, -4623.850581420897], [-7481.760723507591, -4614.950581423472], [-7472.360723511429, -4608.100581421581], [-7466.060723508861, -4596.6505814227785]]}, {"length": 83.2794765063, "source": 2289072992, "destination": 1806083095, "path": [[-9147.710723510727, 5849.499418577153], [-9007.110723509015, 5849.649418578906], [-8770.310723505758, 5849.999418579444], [-8653.010723506326, 5850.949418576334]]}, {"length": 47.4137620496, "source": 2310516445, "destination": 2310516505, "path": [[-3528.010723506725, 4554.949418576371], [-3527.16072350745, 4341.7494185789]]}, {"length": 17.5242681857, "source": 2310516445, "destination": 2069036778, "path": [[-3528.010723506725, 4554.949418576371], [-3423.91072350523, 4555.3494185774925]]}, {"length": 23.5961820673, "source": 2310516445, "destination": 2310516404, "path": [[-3528.010723506725, 4554.949418576371], [-3528.9607235071685, 4661.049418576368]]}, {"length": 96.1423098174, "source": 2310516445, "destination": 2069376922, "path": [[-3528.010723506725, 4554.949418576371], [-3712.0607235081593, 4552.149418579176], [-4099.110723508658, 4551.649418576886]]}, {"length": 47.7062546402, "source": 2311060323, "destination": 2251802364, "path": [[-4086.210723507122, 3240.9994185762516], [-4086.460723506491, 3315.1494185794663], [-4087.360723509903, 3443.499418576579], [-4090.9607235093404, 3455.1994185783033]]}, {"length": 96.0777148362, "source": 2311060323, "destination": 2311060316, "path": [[-4086.210723507122, 3240.9994185762516], [-4068.9607235080416, 3241.1494185780043], [-3949.0607235066477, 3241.1494185780043], [-3808.2607235097043, 3241.1494185780043], [-3640.0607235052007, 3242.349418577817], [-3515.4607235057256, 3243.699418579382]]}, {"length": 26.4693190383, "source": 2311060323, "destination": 2311060325, "path": [[-4086.210723507122, 3240.9994185762516], [-4202.910723506648, 3240.149418576976], [-4243.4607235080075, 3240.149418576976]]}, {"length": 18.647890237, "source": 2311060323, "destination": 2251802375, "path": [[-4086.210723507122, 3240.9994185762516], [-4086.060723508922, 3203.849418579097], [-4085.9607235077533, 3157.149418576921]]}, {"length": 47.770236783, "source": 2311060325, "destination": 2311060240, "path": [[-4243.4607235080075, 3240.149418576976], [-4243.810723508545, 3282.899418579177], [-4244.460723505483, 3361.74941857692], [-4244.460723505483, 3417.8994185793954], [-4244.710723504852, 3454.9494185789345]]}, {"length": 26.4693190383, "source": 2311060325, "destination": 2311060323, "path": [[-4243.4607235080075, 3240.149418576976], [-4202.910723506648, 3240.149418576976], [-4086.210723507122, 3240.9994185762516]]}, {"length": 95.6451346318, "source": 2311060325, "destination": 2311060332, "path": [[-4243.4607235080075, 3240.149418576976], [-4321.160723506523, 3240.149418576976], [-4438.76072350946, 3239.3994185788697], [-4536.760723510724, 3239.1494185759484], [-4735.060723511708, 3238.149418578473], [-4811.660723511579, 3237.7994185779357]]}, {"length": 16.1784486559, "source": 2311060325, "destination": 2311060342, "path": [[-4243.4607235080075, 3240.149418576976], [-4243.160723511608, 3196.8494185790064], [-4243.210723508639, 3167.399418579464]]}, {"length": 67.4348705859, "source": 1959915324, "destination": 1959915204, "path": [[-6521.960723510745, -5660.150581423551], [-6632.56072351004, -5660.700581422872], [-6680.110723507937, -5658.950581423738], [-6717.760723510935, -5654.850581422011], [-6760.260723510214, -5646.80058142386], [-6805.910723507224, -5630.75058142104], [-6848.160723507135, -5607.650581421098], [-6892.410723509101, -5579.05058142083]]}, {"length": 54.1221790947, "source": 1959915324, "destination": 1959915292, "path": [[-6521.960723510745, -5660.150581423551], [-6561.410723506356, -5675.200581421791], [-6577.860723510298, -5684.350581422137], [-6596.71072350676, -5694.150581422974], [-6611.0607235074785, -5704.4005814219645], [-6624.460723507753, -5716.300581422473], [-6634.260723508589, -5726.650581422632], [-6643.31072351132, -5738.80058142251], [-6650.960723504795, -5753.850581420749], [-6656.660723507457, -5771.85058142149], [-6659.410723507619, -5789.300581422907], [-6659.310723506451, -5807.400581421262], [-6657.0607235050265, -5823.5505814216995], [-6648.7607235075075, -5856.35058142131]]}, {"length": 183.128480103, "source": 1959915324, "destination": 2080625207, "path": [[-6521.960723510745, -5660.150581423551], [-5486.960723509072, -5654.850581422011], [-5486.360723509165, -5614.600581420604]]}, {"length": 34.4568539801, "source": 2311060331, "destination": 2311060333, "path": [[-5203.510723511328, 3237.8994185791043], [-4998.810723506608, 3237.4494185773983]]}, {"length": 95.6451346318, "source": 2311060332, "destination": 2311060325, "path": [[-4811.660723511579, 3237.7994185779357], [-4735.060723511708, 3238.149418578473], [-4536.760723510724, 3239.1494185759484], [-4438.76072350946, 3239.3994185788697], [-4321.160723506523, 3240.149418576976], [-4243.4607235080075, 3240.149418576976]]}, {"length": 31.5033946517, "source": 2311060332, "destination": 2311060333, "path": [[-4811.660723511579, 3237.7994185779357], [-4898.760723506257, 3237.3994185768142], [-4983.660723510752, 3237.3994185768142], [-4998.810723506608, 3237.4494185773983]]}, {"length": 16.180295516, "source": 2311060332, "destination": 2311060343, "path": [[-4811.660723511579, 3237.7994185779357], [-4810.310723506462, 3165.0494185768707]]}, {"length": 16.2804948128, "source": 2311060333, "destination": 2311060344, "path": [[-4998.810723506608, 3237.4494185773983], [-4997.8607235061645, 3196.199418578516], [-4997.210723509226, 3164.2494185781798]]}, {"length": 34.4568539801, "source": 2311060333, "destination": 2311060331, "path": [[-4998.810723506608, 3237.4494185773983], [-5203.510723511328, 3237.8994185791043]]}, {"length": 31.5033946517, "source": 2311060333, "destination": 2311060332, "path": [[-4998.810723506608, 3237.4494185773983], [-4983.660723510752, 3237.3994185768142], [-4898.760723506257, 3237.3994185768142], [-4811.660723511579, 3237.7994185779357]]}, {"length": 96.170857867, "source": 2703719278, "destination": 2355654665, "path": [[-1865.7607235113005, 6451.749418577179], [-1294.5107235111664, 6455.749418577739]]}, {"length": 16.3393780053, "source": 2703719278, "destination": 2352259854, "path": [[-1865.7607235113005, 6451.749418577179], [-1962.8107235050152, 6450.599418577951]]}, {"length": 47.5380270924, "source": 2703719278, "destination": 2354509465, "path": [[-1865.7607235113005, 6451.749418577179], [-1865.410723510763, 6315.599418577733], [-1863.8607235104132, 6248.69941857753], [-1863.7107235051076, 6237.999418576834]]}, {"length": 96.125769961, "source": 2703719279, "destination": 2355676008, "path": [[-1290.8107235105604, 5878.499418578542], [-1861.8107235113257, 5875.199418579058]]}, {"length": 96.1623770384, "source": 2703719279, "destination": 2355676185, "path": [[-1290.8107235105604, 5878.499418578542], [-1290.410723505886, 5814.049418578548], [-1289.5607235066109, 5679.649418578237], [-1288.460723507967, 5510.149418576304], [-1288.060723510398, 5446.0994185774325]]}, {"length": 25.1501860122, "source": 2703719279, "destination": 2355676003, "path": [[-1290.8107235105604, 5878.499418578542], [-1141.410723505487, 5878.949418576695]]}, {"length": 15.9237031509, "source": 2703719279, "destination": 2355654865, "path": [[-1290.8107235105604, 5878.499418578542], [-1291.260723505161, 5950.099418576827]]}, {"length": 13.0210442972, "source": 2703719280, "destination": 2354509538, "path": [[-1283.8607235110544, 4780.499418576056], [-1284.2107235115918, 4839.049418578156]]}, {"length": 25.1580686231, "source": 2703719280, "destination": 2355655012, "path": [[-1283.8607235110544, 4780.499418576056], [-1134.4107235089496, 4781.049418578931]]}, {"length": 96.314510733, "source": 2703719280, "destination": 2354509541, "path": [[-1283.8607235110544, 4780.499418576056], [-1856.0107235074952, 4778.399418576384]]}, {"length": 47.9161846619, "source": 2703719280, "destination": 2358476581, "path": [[-1283.8607235110544, 4780.499418576056], [-1283.46072350638, 4723.899418578981], [-1283.0107235117794, 4653.449418576372], [-1282.5607235100733, 4578.549418578604], [-1282.4607235089047, 4565.04941857716]]}, {"length": 95.4600671471, "source": 2311060342, "destination": 2311060343, "path": [[-4243.210723508639, 3167.399418579464], [-4810.310723506462, 3165.0494185768707]]}, {"length": 16.1784486559, "source": 2311060342, "destination": 2311060325, "path": [[-4243.210723508639, 3167.399418579464], [-4243.160723511608, 3196.8494185790064], [-4243.4607235080075, 3240.149418576976]]}, {"length": 16.7163980376, "source": 2311060342, "destination": 2311060366, "path": [[-4243.210723508639, 3167.399418579464], [-4243.660723510346, 3130.7994185780785], [-4242.160723507027, 3092.249418578774]]}, {"length": 13.4480320443, "source": 2311060342, "destination": 134959951, "path": [[-4243.210723508639, 3167.399418579464], [-4163.610723509237, 3162.2494185761243]]}, {"length": 16.1088392661, "source": 2311060343, "destination": 134959948, "path": [[-4810.310723506462, 3165.0494185768707], [-4906.010723509269, 3164.6494185793017]]}, {"length": 16.180295516, "source": 2311060343, "destination": 2311060332, "path": [[-4810.310723506462, 3165.0494185768707], [-4811.660723511579, 3237.7994185779357]]}, {"length": 17.1128630828, "source": 2311060343, "destination": 2311060373, "path": [[-4810.310723506462, 3165.0494185768707], [-4825.3607235082545, 3133.6494185794095], [-4825.3607235082545, 3090.099418578518]]}, {"length": 95.4600671471, "source": 2311060343, "destination": 2311060342, "path": [[-4810.310723506462, 3165.0494185768707], [-4243.210723508639, 3167.399418579464]]}, {"length": 109.557627523, "source": 2311060344, "destination": 134959945, "path": [[-4997.210723509226, 3164.2494185781798], [-5648.060723508763, 3161.599418579186]]}, {"length": 15.3513852085, "source": 2311060344, "destination": 134959948, "path": [[-4997.210723509226, 3164.2494185781798], [-4906.010723509269, 3164.6494185793017]]}, {"length": 16.2804948128, "source": 2311060344, "destination": 2311060333, "path": [[-4997.210723509226, 3164.2494185781798], [-4997.8607235061645, 3196.199418578516], [-4998.810723506608, 3237.4494185773983]]}, {"length": 17.2620707433, "source": 2311060345, "destination": 134959954, "path": [[-3516.560723511475, 3158.699418577271], [-3414.01072351033, 3158.999418577224]]}, {"length": 18.9038354005, "source": 2311060345, "destination": 2311060316, "path": [[-3516.560723511475, 3158.699418577271], [-3515.4607235057256, 3243.699418579382]]}, {"length": 34.3053357816, "source": 2311060345, "destination": 2311060346, "path": [[-3516.560723511475, 3158.699418577271], [-3720.360723505678, 3158.1494185779493]]}, {"length": 14.1401396638, "source": 2311060345, "destination": 2311060359, "path": [[-3516.560723511475, 3158.699418577271], [-3516.560723511475, 3126.649418579319], [-3512.6607235085316, 3095.2494185783053]]}, {"length": 14.0221914951, "source": 2311060346, "destination": 2311060360, "path": [[-3720.360723505678, 3158.1494185779493], [-3719.310723511171, 3095.099418576552]]}, {"length": 34.3053357816, "source": 2311060346, "destination": 2311060345, "path": [[-3720.360723505678, 3158.1494185779493], [-3516.560723511475, 3158.699418577271]]}, {"length": 61.5410105682, "source": 2311060346, "destination": 2251802375, "path": [[-3720.360723505678, 3158.1494185779493], [-4085.9607235077533, 3157.149418576921]]}, {"length": 96.9855725556, "source": 2069376831, "destination": 2069376936, "path": [[-4107.210723510945, 5870.899418578546], [-4106.410723508702, 5778.4994185787755], [-4104.710723510152, 5434.79941857683]]}, {"length": 15.5772946542, "source": 2069376831, "destination": 2068973833, "path": [[-4107.210723510945, 5870.899418578546], [-4107.560723511483, 5915.6994185762815], [-4104.010723509077, 5940.79941857828]]}, {"length": 46.7419550193, "source": 2069376831, "destination": 2309494003, "path": [[-4107.210723510945, 5870.899418578546], [-3985.4107235086644, 5870.599418578593], [-3829.5607235099283, 5872.099418578358]]}, {"length": 12.3991634873, "source": 2069376831, "destination": 2069376873, "path": [[-4107.210723510945, 5870.899418578546], [-4180.810723511286, 5868.74941857829]]}, {"length": 12.1010826535, "source": 2282822524, "destination": 2282822484, "path": [[-9905.510723505984, -234.6005814217733], [-9893.360723509659, -216.05058142171174], [-9882.810723510716, -202.40058142206863], [-9869.710723506842, -187.50058142202874]]}, {"length": 2.73506327143, "source": 2311060354, "destination": 3758384262, "path": [[-5667.2107235087315, 3117.2994185766356], [-5650.960723507125, 3117.3494185772197]]}, {"length": 34.7853072264, "source": 2311060359, "destination": 2311060360, "path": [[-3512.6607235085316, 3095.2494185783053], [-3646.9107235106435, 3095.499418577674], [-3719.310723511171, 3095.099418576552]]}, {"length": 14.1401396638, "source": 2311060359, "destination": 2311060345, "path": [[-3512.6607235085316, 3095.2494185783053], [-3516.560723511475, 3126.649418579319], [-3516.560723511475, 3158.699418577271]]}, {"length": 63.3039968252, "source": 2311060359, "destination": 3758384263, "path": [[-3512.6607235085316, 3095.2494185783053], [-3510.9107235058445, 2810.599418577198]]}, {"length": 14.0221914951, "source": 2311060360, "destination": 2311060346, "path": [[-3719.310723511171, 3095.099418576552], [-3720.360723505678, 3158.1494185779493]]}, {"length": 34.7853072264, "source": 2311060360, "destination": 2311060359, "path": [[-3719.310723511171, 3095.099418576552], [-3646.9107235106435, 3095.499418577674], [-3512.6607235085316, 3095.2494185783053]]}, {"length": 12.666322206, "source": 2311060360, "destination": 2311060442, "path": [[-3719.310723511171, 3095.099418576552], [-3718.3607235107274, 3038.1494185789393]]}, {"length": 61.4824356937, "source": 2311060360, "destination": 1806083189, "path": [[-3719.310723511171, 3095.099418576552], [-3744.56072351137, 3094.9994185789365], [-3946.460723511791, 3093.74941857854], [-4084.5607235056036, 3093.399418578002]]}, {"length": 31.2497679932, "source": 2568600044, "destination": 2568600173, "path": [[-351.9607235062949, -2550.600581422202], [-354.9607235058261, -2691.100581422745]]}, {"length": 20.5400875663, "source": 2568600044, "destination": 2703708315, "path": [[-351.9607235062949, -2550.600581422202], [-350.0607235054076, -2458.2505814230162]]}, {"length": 61.1021127678, "source": 2568600044, "destination": 2568600085, "path": [[-351.9607235062949, -2550.600581422202], [-173.26072350698496, -2545.500581422999], [-80.71072350901431, -2549.55058142059], [-22.41072350983586, -2555.150581422083], [9.789276489868826, -2559.700581421964]]}, {"length": 30.7321111955, "source": 2568600044, "destination": 2568600047, "path": [[-351.9607235062949, -2550.600581422202], [-534.5607235085481, -2551.6005814232303]]}, {"length": 270.413309649, "source": 4253571980, "destination": 4253573908, "path": [[9619.889276493155, 4353.049418575949], [9226.289276490717, 4356.299418578402], [9222.68927649128, 4953.999418578547], [9645.78927649029, 4958.149418577306]]}, {"length": 10.0564364271, "source": 4253571980, "destination": 2062743237, "path": [[9619.889276493155, 4353.049418575949], [9679.589276494482, 4351.3494185774]]}, {"length": 33.3135943499, "source": 4253571980, "destination": 135076231, "path": [[9619.889276493155, 4353.049418575949], [9631.78927649011, 4430.999418577386], [9648.489276493421, 4501.199418577073]]}, {"length": 58.0666577143, "source": 2068877122, "destination": 2068887953, "path": [[-477.2107235098133, 2898.3994185765027], [-478.8607235113318, 3159.4994185759615]]}, {"length": 63.3829548281, "source": 2068877122, "destination": 135025214, "path": [[-477.2107235098133, 2898.3994185765027], [-465.9107235056581, 2788.6994185770673], [-448.8607235089148, 2723.949418577121], [-427.6107235057225, 2669.7994185767016], [-396.9607235063677, 2622.7494185775413]]}, {"length": 13.2993281872, "source": 2311060366, "destination": 2311060364, "path": [[-4242.160723507027, 3092.249418578774], [-4204.560723508166, 3092.2994185793586], [-4163.160723507531, 3092.5994185793115]]}, {"length": 98.9856631843, "source": 2311060366, "destination": 2311060373, "path": [[-4242.160723507027, 3092.249418578774], [-4354.8107235054085, 3091.799418577068], [-4485.810723508621, 3090.549418576671], [-4550.810723507937, 3090.79941857604], [-4568.810723505123, 3098.199418577252], [-4608.010723508471, 3098.199418577252], [-4628.560723510589, 3090.549418576671], [-4722.310723508372, 3090.549418576671], [-4825.3607235082545, 3090.099418578518]]}, {"length": 16.7163980376, "source": 2311060366, "destination": 2311060342, "path": [[-4242.160723507027, 3092.249418578774], [-4243.660723510346, 3130.7994185780785], [-4243.210723508639, 3167.399418579464]]}, {"length": 59.6901574778, "source": 2086854422, "destination": 877895784, "path": [[7536.8892764942075, -950.550581421794], [7538.339276493389, -1218.9505814212964]]}, {"length": 121.594167147, "source": 2086854422, "destination": 2086854466, "path": [[7536.8892764942075, -950.550581421794], [6814.439276489282, -952.6005814208816]]}, {"length": 61.8139025762, "source": 2086854422, "destination": 135016275, "path": [[7536.8892764942075, -950.550581421794], [7535.339276493858, -672.6005814208236]]}, {"length": 121.541937366, "source": 2086854422, "destination": 2086854421, "path": [[7536.8892764942075, -950.550581421794], [8258.989276491491, -944.4505814215631]]}, {"length": 23.0768517678, "source": 2311060373, "destination": 2311060377, "path": [[-4825.3607235082545, 3090.099418578518], [-4832.110723505422, 3090.0494185779335], [-4962.460723511696, 3090.0494185779335]]}, {"length": 17.1128630828, "source": 2311060373, "destination": 2311060343, "path": [[-4825.3607235082545, 3090.099418578518], [-4825.3607235082545, 3133.6494185794095], [-4810.310723506462, 3165.0494185768707]]}, {"length": 98.9856631843, "source": 2311060373, "destination": 2311060366, "path": [[-4825.3607235082545, 3090.099418578518], [-4722.310723508372, 3090.549418576671], [-4628.560723510589, 3090.549418576671], [-4608.010723508471, 3098.199418577252], [-4568.810723505123, 3098.199418577252], [-4550.810723507937, 3090.79941857604], [-4485.810723508621, 3090.549418576671], [-4354.8107235054085, 3091.799418577068], [-4242.160723507027, 3092.249418578774]]}, {"length": 22.8171144158, "source": 2311060373, "destination": 2311060463, "path": [[-4825.3607235082545, 3090.099418578518], [-4825.3607235082545, 2987.499418576789]]}, {"length": 63.4055851966, "source": 2573122455, "destination": 2080560741, "path": [[7811.939276493263, -10450.650581422138], [8045.9392764922195, -10444.900581422446], [8081.089276494424, -10441.000581423054], [8096.9392764913555, -10439.25058142392], [8136.3392764899345, -10428.40058142147], [8168.989276491346, -10407.450581421785], [8173.439276490058, -10403.950581423516]]}, {"length": 458.916473003, "source": 2573122455, "destination": 1424938829, "path": [[7811.939276493263, -10450.650581422138], [7138.989276491258, -10458.000581422766], [6618.539276495028, -10452.650581420641], [6394.13927649457, -10453.550581424053], [5992.389276492815, -10460.65058142176], [5085.039276494285, -10478.800581420699]]}, {"length": 23.0768517678, "source": 2311060377, "destination": 2311060373, "path": [[-4962.460723511696, 3090.0494185779335], [-4832.110723505422, 3090.0494185779335], [-4825.3607235082545, 3090.099418578518]]}, {"length": 122.655831377, "source": 2311060377, "destination": 3758384262, "path": [[-4962.460723511696, 3090.0494185779335], [-4962.26072350936, 3120.2994185761668], [-5116.460723506578, 3119.799418577429], [-5393.110723510119, 3118.2994185776633], [-5572.810723506905, 3117.5494185760044], [-5650.960723507125, 3117.3494185772197]]}, {"length": 93.0841209882, "source": 2311060377, "destination": 2311060631, "path": [[-4962.460723511696, 3090.0494185779335], [-4962.56072350576, 3031.249418576465], [-4961.610723505317, 2932.099418575973], [-4960.610723507842, 2800.3494185782074], [-4958.660723509922, 2671.4994185788046]]}, {"length": 60.2128679578, "source": 2069036870, "destination": 135019161, "path": [[-1949.210723509509, 4016.9494185775534], [-1950.9107235080592, 4287.699418576096]]}, {"length": 62.3922997849, "source": 2069036870, "destination": 135019159, "path": [[-1949.210723509509, 4016.9494185775534], [-1947.4107235097904, 3736.3994185781735]]}, {"length": 125.309520016, "source": 2069036870, "destination": 2069036397, "path": [[-1949.210723509509, 4016.9494185775534], [-1204.8107235074212, 4020.9494185781123]]}, {"length": 124.043014829, "source": 2069036870, "destination": 2069036759, "path": [[-1949.210723509509, 4016.9494185775534], [-2686.0607235050793, 4010.7994185767384]]}, {"length": 48.4267490828, "source": 2355654862, "destination": 2069037025, "path": [[-1216.2607235097767, 6022.549418577938], [-1218.4607235070644, 6240.299418578843]]}, {"length": 12.7100072694, "source": 2355654862, "destination": 2355654863, "path": [[-1216.2607235097767, 6022.549418577938], [-1291.760723511004, 6022.249418577985]]}, {"length": 12.4492173564, "source": 2355654862, "destination": 2355654861, "path": [[-1216.2607235097767, 6022.549418577938], [-1142.3107235088992, 6022.94941857906]]}, {"length": 16.0797194605, "source": 2355654862, "destination": 135021881, "path": [[-1216.2607235097767, 6022.549418577938], [-1217.1107235090517, 5950.249418578579]]}, {"length": 47.4716082315, "source": 2068877128, "destination": 2423670840, "path": [[-1959.6607235072838, 5660.3994185771], [-1956.8107235059529, 5873.8494185774925]]}, {"length": 48.3815030451, "source": 2068877128, "destination": 2358476142, "path": [[-1959.6607235072838, 5660.3994185771], [-1958.2607235051341, 5442.849418578533]]}, {"length": 125.312612701, "source": 2068877128, "destination": 2068877118, "path": [[-1959.6607235072838, 5660.3994185771], [-1215.260723505196, 5660.149418577731]]}, {"length": 73.0018287691, "source": 2068877128, "destination": 2352260117, "path": [[-1959.6607235072838, 5660.3994185771], [-2393.3107235052375, 5658.649418577966]]}, {"length": 268.661193783, "source": 2495519674, "destination": 2331404993, "path": [[-6102.910723505773, 504.0494185770683], [-6102.060723506497, 638.5994185791333], [-6102.060723506497, 783.7494185771732], [-6096.710723511478, 822.2994185764776], [-6084.6107235050795, 858.8494185772788], [-6071.660723506511, 887.2994185793459], [-6057.610723509299, 910.6494185786573], [-6040.160723507881, 928.8994185787658], [-6019.3607235063955, 947.1994185794586], [-5995.260723508977, 963.9494185762487], [-5939.760723506993, 989.7994185763537], [-5898.860723505095, 1008.5494185787525], [-5858.660723511377, 1020.7494185792143], [-5813.710723508337, 1028.3494185792108], [-5751.360723508014, 1027.8494185769205], [-5444.260723507455, 1014.149418576693], [-5289.360723509162, 993.8494185774971], [-5131.110723510801, 984.6994185771507], [-5095.360723508691, 939.7494185776623]]}, {"length": 7.67393111423, "source": 2495519674, "destination": 2442181955, "path": [[-6102.910723505773, 504.0494185770683], [-6148.46072350872, 502.4994185767184]]}, {"length": 13.9202668676, "source": 2495519674, "destination": 2442181956, "path": [[-6102.910723505773, 504.0494185770683], [-6020.21072350567, 504.64941857697454]]}, {"length": 940.740782802, "source": 2495519674, "destination": 2217880510, "path": [[-6102.910723505773, 504.0494185770683], [-6107.410723508621, 310.7494185776716], [-6138.260723510313, 56.99941857884028], [-6130.210723505059, -222.10058142135836], [-6124.860723510039, -538.8005814239705], [-6077.060723505667, -600.2005814238487], [-6066.310723511492, -624.5005814236038], [-6067.11072350663, -800.100581422214], [-6073.960723504968, -828.3505814219438], [-6087.510723510548, -859.8005814235421], [-6091.260723508185, -884.7505814237877], [-6093.510723509609, -1184.8005814236728], [-6090.010723511341, -1211.3005814207156], [-6084.210723507511, -1233.5505814213832], [-6080.760723506273, -1260.950581421838], [-6070.510723510835, -1731.6505814228833], [-6062.0607235080115, -1829.1005814212724], [-6046.110723509912, -1919.550581423124], [-6029.4107235066, -1978.9505814209463], [-6009.8107235049265, -2030.2005814230029], [-5985.360723506972, -2093.0505814220624], [-5958.210723505886, -2142.7005814231848], [-5931.760723505875, -2189.5505814235603], [-5901.360723505888, -2237.8505814231175], [-5866.310723504853, -2285.4005814210154], [-5831.310723507954, -2329.500581421229], [-5795.210723505306, -2371.1505814212333], [-5751.460723509183, -2416.5505814224275], [-5664.910723510275, -2495.2505814219703], [-5520.460723509757, -2595.6505814228594], [-5433.160723505636, -2650.600581421969], [-5311.010723509924, -2722.600581421375], [-5254.210723506958, -2752.950581420777], [-5074.310723507835, -2859.150581421943], [-4965.610723509428, -2923.5505814213525], [-4790.260723510187, -3027.5505814216785], [-4658.060723507162, -3107.0005814228807], [-4548.410723508312, -3171.2005814235054], [-4533.010723505981, -3156.2505814228816], [-4503.16072350887, -3127.500581420861]]}, {"length": 59.9792112445, "source": 2069036875, "destination": 134985696, "path": [[6095.789276493235, 5143.699418578507], [6094.3392764940545, 5413.399418578991]]}, {"length": 99.3791702871, "source": 2069036875, "destination": 2069036516, "path": [[6095.789276493235, 5143.699418578507], [5505.439276490165, 5141.699418576451]]}, {"length": 129.956870601, "source": 2069036875, "destination": 2069036764, "path": [[6095.789276493235, 5143.699418578507], [6478.88927649376, 5143.699418578507], [6867.78927649101, 5143.699418578507]]}, {"length": 157.417941972, "source": 2069036875, "destination": 134954318, "path": [[6095.789276493235, 5143.699418578507], [6097.039276490079, 4917.349418576578], [6096.239276494942, 4903.199418578197], [6092.339276491998, 4891.19941857652], [6087.239276489243, 4881.449418576267], [6079.289276492262, 4873.499418579286], [6063.639276490562, 4867.999418578961], [6046.139276492113, 4864.599418578308], [6027.539276495019, 4863.499418576112], [5507.489276489252, 4861.899418578731]]}, {"length": 47.9815733031, "source": 2356771781, "destination": 2357086394, "path": [[-2614.5607235079638, 4891.7994185764255], [-2616.310723510651, 5107.5494185788275]]}, {"length": 43.0272263439, "source": 2356771781, "destination": 2357086468, "path": [[-2614.5607235079638, 4891.7994185764255], [-2358.9607235052767, 4892.749418576869]]}, {"length": 25.4106171537, "source": 2356771781, "destination": 2316883630, "path": [[-2614.5607235079638, 4891.7994185764255], [-2765.5107235062815, 4891.249418577104]]}, {"length": 25.5303953471, "source": 2356771781, "destination": 2358476398, "path": [[-2614.5607235079638, 4891.7994185764255], [-2615.0607235067014, 4776.999418577788]]}, {"length": 10.8334598178, "source": 2289073095, "destination": 2091809040, "path": [[-8521.110723506808, 5636.899418576036], [-8585.460723509186, 5636.399418577298]]}, {"length": 47.6361175815, "source": 2289073095, "destination": 2289073161, "path": [[-8521.110723506808, 5636.899418576036], [-8520.210723510501, 5422.699418577537]]}, {"length": 47.7478256888, "source": 2289073095, "destination": 2289072988, "path": [[-8521.110723506808, 5636.899418576036], [-8521.510723511483, 5739.249418578396], [-8522.110723511389, 5851.599418576825]]}, {"length": 80.0637421512, "source": 2289073095, "destination": 2091810071, "path": [[-8521.110723506808, 5636.899418576036], [-8404.310723506114, 5637.749418578864], [-8259.610723506228, 5638.3494185787695], [-8045.560723509481, 5641.799418576455]]}, {"length": 213.802041062, "source": 2573122506, "destination": 135084642, "path": [[185.03927649504703, -11052.800581420996], [182.6892764924537, -10968.000581421222], [179.88927649525976, -10668.50058142066], [182.33927649191628, -10378.300581422194], [182.38927648894787, -10091.4505814238]]}, {"length": 221.301537899, "source": 2573122506, "destination": 134955579, "path": [[185.03927649504703, -11052.800581420996], [-1130.160723505469, -11063.100581420571]]}, {"length": 99.8624477447, "source": 2573122506, "destination": 135099983, "path": [[185.03927649504703, -11052.800581420996], [187.43927649467196, -11128.950581422714], [196.93927649200305, -11501.750581423665]]}, {"length": 48.6145428802, "source": 2356771788, "destination": 2357086570, "path": [[-2613.8107235098573, 4341.699418578315], [-2614.1107235062577, 4560.2994185784955]]}, {"length": 128.069143875, "source": 2356771788, "destination": 2354509548, "path": [[-2613.8107235098573, 4341.699418578315], [-2235.5107235085825, 4341.7494185789], [-1853.0607235049956, 4346.649418579318]]}, {"length": 12.5296788855, "source": 2356771788, "destination": 2310516501, "path": [[-2613.8107235098573, 4341.699418578315], [-2688.2107235053354, 4343.349418576281]]}, {"length": 12.5541116388, "source": 2356771788, "destination": 3661057639, "path": [[-2613.8107235098573, 4341.699418578315], [-2614.4107235097636, 4285.24941857944]]}, {"length": 12.1876538497, "source": 2356771790, "destination": 3661057641, "path": [[-2615.01072350967, 4225.299418578743], [-2687.4107235101974, 4225.7494185768965]]}, {"length": 249.826807713, "source": 2356771790, "destination": 2355655019, "path": [[-2615.01072350967, 4225.299418578743], [-1520.0107235102678, 4230.44941857853], [-1130.9107235106808, 4230.44941857853]]}, {"length": 23.0069120214, "source": 2356771790, "destination": 2356771791, "path": [[-2615.01072350967, 4225.299418578743], [-2613.910723511026, 4121.849418577739]]}, {"length": 13.3325990462, "source": 2356771790, "destination": 3661057639, "path": [[-2615.01072350967, 4225.299418578743], [-2614.4107235097636, 4285.24941857944]]}, {"length": 59.6783789397, "source": 134994382, "destination": 1429422280, "path": [[2463.789276490047, 403.99941857671706], [2470.6392764883844, 135.6994185783833]]}, {"length": 121.24819486, "source": 134994382, "destination": 134990148, "path": [[2463.789276490047, 403.99941857671706], [1743.4392764883455, 399.89941857854205]]}, {"length": 203.59999511, "source": 2293202896, "destination": 2139774321, "path": [[-11125.11072350486, 395.69941857919844], [-10936.510723510652, 394.19941857943286], [-10258.660723508228, 395.4994185768612], [-9915.510723509158, 399.1494185768829]]}, {"length": 53.8510170524, "source": 2293202896, "destination": 2293202889, "path": [[-11125.11072350486, 395.69941857919844], [-11160.760723505802, 417.04941857645395], [-11201.010723510763, 464.94941857844196], [-11238.06072350675, 613.2994185783502]]}, {"length": 32.5222797009, "source": 2310516558, "destination": 2312746776, "path": [[-3526.6107235116806, 4226.099418577433], [-3333.410723506347, 4225.7494185768965]]}, {"length": 12.4209508235, "source": 2310516558, "destination": 2310516522, "path": [[-3526.6107235116806, 4226.099418577433], [-3526.8107235069124, 4281.949418576403]]}, {"length": 48.759858238, "source": 2310516558, "destination": 2311060035, "path": [[-3526.6107235116806, 4226.099418577433], [-3524.910723506025, 4006.849418576763]]}, {"length": 95.8236228324, "source": 2310516558, "destination": 2311059948, "path": [[-3526.6107235116806, 4226.099418577433], [-4095.860723509759, 4226.099418577433]]}, {"length": 12.666322206, "source": 2311060442, "destination": 2311060360, "path": [[-3718.3607235107274, 3038.1494185789393], [-3719.310723511171, 3095.099418576552]]}, {"length": 18.0262362474, "source": 2311060442, "destination": 2311060486, "path": [[-3718.3607235107274, 3038.1494185789393], [-3716.9607235085778, 2957.099418576803]]}, {"length": 115.836503141, "source": 2311060442, "destination": 2311060486, "path": [[-3718.3607235107274, 3038.1494185789393], [-4008.8607235091445, 3037.149418577911], [-4008.8607235091445, 2957.099418576803], [-3716.9607235085778, 2957.099418576803]]}, {"length": 16.2356243335, "source": 2573122523, "destination": 2080560796, "path": [[438.2392764910037, -8204.300581422074], [346.8892764928455, -8180.80058142101]]}, {"length": 264.065307544, "source": 2573122523, "destination": 2573122510, "path": [[438.2392764910037, -8204.300581422074], [414.28927649178604, -8270.000581422466], [382.33927649145016, -8362.45058142282], [335.6892764898589, -8522.600581422068], [304.6392764929351, -8647.700581423835], [265.139276493187, -8852.450581422034], [240.68927649523175, -8999.050581422807], [227.63927648838944, -9105.900581420912], [215.389276490896, -9224.800581421277], [189.18927649025363, -9374.650581420952]]}, {"length": 63.9373043612, "source": 2573122525, "destination": 135099962, "path": [[196.93927649200305, -7946.100581420978], [197.83927648830968, -7658.600581422093]]}, {"length": 378.677445581, "source": 2573122529, "destination": 135097216, "path": [[197.28927649254047, -7347.750581423896], [596.5392764935018, -7346.40058142233], [633.3892764942561, -7340.5005814208835], [661.8892764933548, -7331.750581421658], [674.8392764919231, -7305.050581422279], [679.2892764906355, -7273.800581423018], [685.3392764938349, -6949.10058142284], [693.3392764949531, -6355.250581421501], [203.83927649447742, -6353.100581421245]]}, {"length": 69.1300756028, "source": 2573122529, "destination": 135099962, "path": [[197.28927649254047, -7347.750581423896], [197.83927648830968, -7658.600581422093]]}, {"length": 39.830137617, "source": 2573122529, "destination": 135099955, "path": [[197.28927649254047, -7347.750581423896], [197.13927649434027, -7168.650581423463]]}, {"length": 53.325156986, "source": 134962146, "destination": 135057528, "path": [[6161.239276494257, -5003.700581422521], [5844.389276489892, -5006.500581423268]]}, {"length": 196.632938226, "source": 134962146, "destination": 135057529, "path": [[6161.239276494257, -5003.700581422521], [7329.58927649463, -4992.550581423671]]}, {"length": 51.5391861405, "source": 134962146, "destination": 2086854485, "path": [[6161.239276494257, -5003.700581422521], [6162.289276488764, -5235.450581423606]]}, {"length": 196.406381162, "source": 134962148, "destination": 134991213, "path": [[6163.3392764903765, -5460.950581422708], [7330.2892764886, -5446.200581420868]]}, {"length": 49.3895036904, "source": 134962148, "destination": 2086854534, "path": [[6163.3392764903765, -5460.950581422708], [6148.639276489121, -5481.85058142181], [6144.139276493377, -5497.850581424046], [6143.68927649167, -5513.500581422193], [6142.339276493658, -5622.400581422937], [6141.83927649492, -5679.900581423425]]}, {"length": 50.1492769433, "source": 134962148, "destination": 2086854485, "path": [[6163.3392764903765, -5460.950581422708], [6162.289276488764, -5235.450581423606]]}, {"length": 22.849159493, "source": 4614339557, "destination": 4274705785, "path": [[9533.739276491815, 6376.249418575952], [9555.08927648907, 6425.499418575953], [9578.789276488918, 6473.149418578572]]}, {"length": 48.1905362603, "source": 4614339557, "destination": 4614343699, "path": [[9533.739276491815, 6376.249418575952], [9498.58927648961, 6343.349418578726], [9455.239276491056, 6303.149418577903], [9420.289276491189, 6275.349418576326], [9389.739276493003, 6240.199418577675], [9353.03927649045, 6208.64941857846]]}, {"length": 114.986259516, "source": 4614339557, "destination": 4614339564, "path": [[9533.739276491815, 6376.249418575952], [9515.439276491123, 6280.099418578544], [9506.289276494328, 6156.999418578835], [9502.239276493185, 6106.999418577175], [9483.939276492492, 6092.349418576504], [9461.589276490657, 6078.54941857866], [9330.489276493381, 6076.999418578311], [9191.48927648905, 6080.549418577164]]}, {"length": 72.6121554935, "source": 2573122535, "destination": 2573122545, "path": [[1363.839276493195, -7342.850581423477], [1355.3392764933392, -7299.250581422001], [1352.6892764943454, -7274.900581421662], [1360.589276494295, -7247.3005814224225], [1413.7392764936862, -7183.750581422288], [1463.5892764900404, -7124.150581422128], [1518.689276494456, -7051.200581422279]]}, {"length": 240.551810391, "source": 2573122535, "destination": 1424938754, "path": [[1363.839276493195, -7342.850581423477], [1555.6392764892735, -7323.450581420588], [2046.3392764895616, -7329.100581422665], [2140.339276493819, -7321.100581421547], [2233.3392764934956, -7305.6005814216005], [2353.139276493721, -7268.350581423278], [2423.0892764904866, -7263.2505814205215], [2462.989276494909, -7274.250581421171], [2507.1392764886014, -7292.750581420649], [2587.9392764949216, -7348.200581422048], [2698.8892764947536, -7428.600581423694]]}, {"length": 268.629850193, "source": 2573122535, "destination": 1393871503, "path": [[1363.839276493195, -7342.850581423477], [1256.4392764886634, -7403.750581421064], [1249.2892764939256, -7413.450581420733], [1100.439276491727, -7615.000581420617], [1060.239276490904, -7690.100581420722], [1060.239276490904, -7769.250581421971], [1065.5892764930286, -8116.300581423985], [1084.789276490028, -8199.30058142404], [1084.789276490028, -8308.900581422307], [1076.3392764943092, -8412.600581422681], [1068.1892764949907, -8471.650581423517]]}, {"length": 45.4391684754, "source": 4614339564, "destination": 4614339568, "path": [[9191.48927648905, 6080.549418577164], [9137.389276489215, 6055.449418578718], [9098.739276488743, 6033.149418577466], [9042.83927648919, 6009.299418579417], [8949.339276490775, 6004.649418578367]]}, {"length": 15.3134532252, "source": 4614339564, "destination": 4614339575, "path": [[9191.48927648905, 6080.549418577164], [9178.58927649462, 6079.399418577936], [9165.889276488315, 6081.499418577607], [9154.789276493602, 6086.6494185773945], [9146.589276490147, 6094.299418577975], [9142.089276494404, 6103.4994185789055], [9141.839276495033, 6113.349418576774], [9145.83927649204, 6122.699418579458]]}, {"length": 6.7484336212, "source": 4614339564, "destination": 4614339587, "path": [[9191.48927648905, 6080.549418577164], [9182.089276492889, 6110.04941857729]]}, {"length": 114.986259516, "source": 4614339564, "destination": 4614339557, "path": [[9191.48927648905, 6080.549418577164], [9330.489276493381, 6076.999418578311], [9461.589276490657, 6078.54941857866], [9483.939276492492, 6092.349418576504], [9502.239276493185, 6106.999418577175], [9506.289276494328, 6156.999418578835], [9515.439276491123, 6280.099418578544], [9533.739276491815, 6376.249418575952]]}, {"length": 12.9035003181, "source": 4614339564, "destination": 4614339579, "path": [[9191.48927648905, 6080.549418577164], [9202.989276488439, 6084.699418579476], [9212.139276492337, 6091.499418577228], [9217.939276489062, 6100.099418578253], [9219.73927648878, 6109.699418576753], [9217.339276489156, 6119.199418577637], [9211.039276493693, 6127.599418576324]]}, {"length": 22.8171144158, "source": 2311060463, "destination": 2311060373, "path": [[-4825.3607235082545, 2987.499418576789], [-4825.3607235082545, 3090.099418578518]]}, {"length": 45.4391684754, "source": 4614339568, "destination": 4614339564, "path": [[8949.339276490775, 6004.649418578367], [9042.83927648919, 6009.299418579417], [9098.739276488743, 6033.149418577466], [9137.389276489215, 6055.449418578718], [9191.48927648905, 6080.549418577164]]}, {"length": 203.484400913, "source": 2573122545, "destination": 1429423290, "path": [[1518.689276494456, -7051.200581422279], [1615.0392764942012, -6935.300581421444], [1644.2892764914063, -6887.600581421793], [1664.4892764929864, -6835.350581422262], [1680.7392764945916, -6710.750581422786], [1694.2892764930662, -6662.700581422598], [1709.0892764883847, -6635.750581423849], [1723.389276492071, -6621.950581422453], [1739.6392764936763, -6606.350581421339], [1743.9892764912202, -6602.1505814219945], [1757.3892764914945, -6590.550581421439], [1783.1392764904308, -6568.300581420772], [1884.6892764941003, -6492.900581420713], [1913.7892764931053, -6471.300581420536], [1948.6392764918037, -6438.40058142331], [1977.63927648964, -6405.050581420824], [2032.4392764905497, -6323.900581421071], [2061.889276490092, -6259.550581422246]]}, {"length": 57.0553906901, "source": 2573122545, "destination": 1429423374, "path": [[1518.689276494456, -7051.200581422279], [1488.3392764915016, -7036.600581422192], [1267.5392764904814, -6933.7505814210945], [1227.5892764890273, -6920.150581422035]]}, {"length": 72.6121554935, "source": 2573122545, "destination": 2573122535, "path": [[1518.689276494456, -7051.200581422279], [1463.5892764900404, -7124.150581422128], [1413.7392764936862, -7183.750581422288], [1360.589276494295, -7247.3005814224225], [1352.6892764943454, -7274.900581421662], [1355.3392764933392, -7299.250581422001], [1363.839276493195, -7342.850581423477]]}, {"length": 6.71965837527, "source": 4614339575, "destination": 4614339587, "path": [[9145.83927649204, 6122.699418579458], [9182.089276492889, 6110.04941857729]]}, {"length": 15.3134532252, "source": 4614339575, "destination": 4614339564, "path": [[9145.83927649204, 6122.699418579458], [9141.839276495033, 6113.349418576774], [9142.089276494404, 6103.4994185789055], [9146.589276490147, 6094.299418577975], [9154.789276493602, 6086.6494185773945], [9165.889276488315, 6081.499418577607], [9178.58927649462, 6079.399418577936], [9191.48927648905, 6080.549418577164]]}, {"length": 56.670776842, "source": 4614339575, "destination": 4614343717, "path": [[9145.83927649204, 6122.699418579458], [9080.439276495155, 6133.899418578892], [8993.039276489868, 6136.249418577932], [8858.889276488924, 6134.699418577583], [8810.939276493456, 6135.649418578027]]}, {"length": 13.0116221938, "source": 4614339575, "destination": 4614339579, "path": [[9145.83927649204, 6122.699418579458], [9153.639276490821, 6130.549418578823], [9164.439276489134, 6136.049418579149], [9176.989276490132, 6138.549418576389], [9189.73927649347, 6137.849418578867], [9201.539276489257, 6134.049418577092], [9211.039276493693, 6127.599418576324]]}, {"length": 6.24340326583, "source": 4614339579, "destination": 4614339587, "path": [[9211.039276493693, 6127.599418576324], [9182.089276492889, 6110.04941857729]]}, {"length": 12.9035003181, "source": 4614339579, "destination": 4614339564, "path": [[9211.039276493693, 6127.599418576324], [9217.339276489156, 6119.199418577637], [9219.73927648878, 6109.699418576753], [9217.939276489062, 6100.099418578253], [9212.139276492337, 6091.499418577228], [9202.989276488439, 6084.699418579476], [9191.48927648905, 6080.549418577164]]}, {"length": 22.7870710797, "source": 4614339579, "destination": 4614343701, "path": [[9211.039276493693, 6127.599418576324], [9240.03927649153, 6140.0494185761545], [9281.689276491534, 6150.849418578019], [9300.989276489701, 6165.449418578106], [9310.53927649117, 6187.54941857702]]}, {"length": 13.0116221938, "source": 4614339579, "destination": 4614339575, "path": [[9211.039276493693, 6127.599418576324], [9201.539276489257, 6134.049418577092], [9189.73927649347, 6137.849418578867], [9176.989276490132, 6138.549418576389], [9164.439276489134, 6136.049418579149], [9153.639276490821, 6130.549418578823], [9145.83927649204, 6122.699418579458]]}, {"length": 58.5081857132, "source": 135109629, "destination": 4224850385, "path": [[6999.8392764887285, 4928.899418576549], [7058.339276490244, 4907.899418576279], [7115.339276488441, 4879.399418577179], [7121.839276493347, 4876.399418577648], [7178.339276492807, 4837.899418578928], [7262.139276491553, 4761.799418577794]]}, {"length": 53.4781751377, "source": 135109629, "destination": 4719569426, "path": [[6999.8392764887285, 4928.899418576549], [7045.4892764928445, 4972.849418578562], [7065.089276494518, 4981.09941857905], [7286.339276490139, 4975.049418579402]]}, {"length": 22.7670303679, "source": 135109629, "destination": 135008308, "path": [[6999.8392764887285, 4928.899418576549], [6927.839276492876, 4945.89941857626], [6868.839276492622, 4953.399418578641]]}, {"length": 65.6525017857, "source": 134983509, "destination": 2086776828, "path": [[10414.839276492672, -118.1005814210323], [10411.139276492066, 177.09941857901867]]}, {"length": 104.017005956, "source": 134983509, "destination": 135074813, "path": [[10414.839276492672, -118.1005814210323], [9796.839276489776, -119.9505814213353]]}, {"length": 60.5242231727, "source": 134983509, "destination": 2086854423, "path": [[10414.839276492672, -118.1005814210323], [10416.589276488252, -390.250581421725]]}, {"length": 6.24340326583, "source": 4614339587, "destination": 4614339579, "path": [[9182.089276492889, 6110.04941857729], [9211.039276493693, 6127.599418576324]]}, {"length": 6.7484336212, "source": 4614339587, "destination": 4614339564, "path": [[9182.089276492889, 6110.04941857729], [9191.48927648905, 6080.549418577164]]}, {"length": 6.71965837527, "source": 4614339587, "destination": 4614339575, "path": [[9182.089276492889, 6110.04941857729], [9145.83927649204, 6122.699418579458]]}, {"length": 437.980875596, "source": 2573122565, "destination": 2140986963, "path": [[1538.389276490193, -6293.350581422885], [1477.0892764914834, -6391.8505814228865], [1328.9892764944966, -6643.050581423893], [1139.539276493906, -6956.800581424005], [1032.3392764917116, -7126.150581420632], [875.739276494869, -7370.75058142267], [757.5892764890568, -7567.300581420966], [664.0392764936109, -7728.250581422458], [610.3392764913451, -7821.250581422135], [551.7392764886608, -7943.450581421985], [489.839276490045, -8080.35058142309], [484.2892764926887, -8092.700581421752]]}, {"length": 19.2931596086, "source": 2573122565, "destination": 1424938727, "path": [[1538.389276490193, -6293.350581422885], [1440.289276494866, -6248.450581423981]]}, {"length": 18.0262362474, "source": 2311060486, "destination": 2311060442, "path": [[-3716.9607235085778, 2957.099418576803], [-3718.3607235107274, 3038.1494185789393]]}, {"length": 115.836503141, "source": 2311060486, "destination": 2311060442, "path": [[-3716.9607235085778, 2957.099418576803], [-4008.8607235091445, 2957.099418576803], [-4008.8607235091445, 3037.149418577911], [-3718.3607235107274, 3038.1494185789393]]}, {"length": 12.3547440831, "source": 2311060486, "destination": 2311060503, "path": [[-3716.9607235085778, 2957.099418576803], [-3716.0607235051657, 2901.549418577787]]}, {"length": 1458.22221866, "source": 2573122567, "destination": 1424938809, "path": [[1582.039276492253, -6220.5005814206515], [1695.7392764922474, -6268.600581421424], [1766.7892764947624, -6301.800581422157], [1820.1392764893853, -6330.300581421256], [1878.3392764945006, -6364.700581421801], [1951.6892764883664, -6415.350581423951], [2061.089276494954, -6503.900581421362], [2157.689276494068, -6594.45058142083], [2237.089276491133, -6677.350581423269], [2332.939276492141, -6788.000581423148], [2460.1892764906097, -6936.250581421888], [2616.889276488621, -7110.70058142127], [2670.1392764891807, -7165.5005814221795], [2716.7392764937404, -7210.050581420546], [2762.389276490751, -7246.700581422516], [2815.2392764937417, -7285.300581422405], [2868.939276488902, -7322.250581420775], [2925.889276490068, -7358.850581422161], [2994.6392764941265, -7399.650581422889], [3370.989276490377, -7614.850581422416], [4205.839276494316, -8064.550581423191], [5213.689276494904, -8593.850581423369], [5911.889276490001, -8962.600581423174], [6518.739276494045, -9328.950581423356], [6673.339276488832, -9412.30058142395], [7900.789276490627, -10056.450581423349], [8314.239276494107, -10272.900581423271]]}, {"length": 17.7886809577, "source": 2573122567, "destination": 2573122565, "path": [[1582.039276492253, -6220.5005814206515], [1538.389276490193, -6293.350581422885]]}, {"length": 190.371832729, "source": 135035912, "destination": 1424938738, "path": [[4064.5892764885616, -5937.20058142111], [4061.089276490293, -6302.800581423185], [4064.38927649333, -6589.200581423427], [4066.4392764924173, -6793.20058142352]]}, {"length": 50.0733784413, "source": 135035912, "destination": 1937679932, "path": [[4064.5892764885616, -5937.20058142111], [4362.139276494759, -5935.550581423144]]}, {"length": 203.310714206, "source": 135035912, "destination": 135057525, "path": [[4064.5892764885616, -5937.20058142111], [4062.9392764941485, -5810.800581421916], [4061.739276494336, -5343.850581422061], [4061.089276490293, -5023.000581420689]]}, {"length": 13.3768032719, "source": 2289073161, "destination": 2289073168, "path": [[-8520.210723510501, 5422.699418577537], [-8520.010723508165, 5362.549418578055]]}, {"length": 10.9756199323, "source": 2289073161, "destination": 2289073162, "path": [[-8520.210723510501, 5422.699418577537], [-8585.410723505049, 5422.549418579337]]}, {"length": 101.352735936, "source": 2289073161, "destination": 2289073167, "path": [[-8520.210723510501, 5422.699418577537], [-8483.660723506147, 5422.749418578122], [-8220.060723509449, 5423.699418578564], [-7994.760723505578, 5423.949418577933], [-7994.160723505673, 5365.949418578708]]}, {"length": 47.6361175815, "source": 2289073161, "destination": 2289073095, "path": [[-8520.210723510501, 5422.699418577537], [-8521.110723506808, 5636.899418576036]]}, {"length": 47.5581982027, "source": 2289073162, "destination": 2091809040, "path": [[-8585.410723505049, 5422.549418579337], [-8585.460723509186, 5636.399418577298]]}, {"length": 10.9756199323, "source": 2289073162, "destination": 2289073161, "path": [[-8585.410723505049, 5422.549418579337], [-8520.210723510501, 5422.699418577537]]}, {"length": 13.4440103031, "source": 2289073162, "destination": 134982235, "path": [[-8585.410723505049, 5422.549418579337], [-8585.760723505588, 5362.099418576349]]}, {"length": 10.8666862716, "source": 2289073162, "destination": 2289073163, "path": [[-8585.410723505049, 5422.549418579337], [-8649.960723509765, 5422.399418577584]]}, {"length": 13.3990188585, "source": 2289073163, "destination": 2289073169, "path": [[-8649.960723509765, 5422.399418577584], [-8649.41072350689, 5362.149418576933]]}, {"length": 10.8666862716, "source": 2289073163, "destination": 2289073162, "path": [[-8649.960723509765, 5422.399418577584], [-8585.410723505049, 5422.549418579337]]}, {"length": 82.2265147074, "source": 2289073163, "destination": 2289073166, "path": [[-8649.960723509765, 5422.399418577584], [-8697.760723507032, 5422.299418576415], [-8970.660723505829, 5421.099418576603], [-9138.410723508627, 5420.399418579081]]}, {"length": 202.843452772, "source": 135035917, "destination": 135057528, "path": [[5848.839276488605, -5918.600581424016], [5844.389276489892, -5006.500581423268]]}, {"length": 51.0387221849, "source": 135035917, "destination": 2658901914, "path": [[5848.839276488605, -5918.600581424016], [5849.839276493185, -6148.100581423677]]}, {"length": 50.1129607236, "source": 135035917, "destination": 1937679931, "path": [[5848.839276488605, -5918.600581424016], [5551.089276494281, -5922.400581422238]]}, {"length": 49.9179854483, "source": 135035917, "destination": 1933603724, "path": [[5848.839276488605, -5918.600581424016], [6145.439276494358, -5915.2005814233635]]}, {"length": 82.2265147074, "source": 2289073166, "destination": 2289073163, "path": [[-9138.410723508627, 5420.399418579081], [-8970.660723505829, 5421.099418576603], [-8697.760723507032, 5422.299418576415], [-8649.960723509765, 5422.399418577584]]}, {"length": 88.5242234099, "source": 2289073167, "destination": 2289073168, "path": [[-7994.160723505673, 5365.949418578708], [-8520.010723508165, 5362.549418578055]]}, {"length": 101.352735936, "source": 2289073167, "destination": 2289073161, "path": [[-7994.160723505673, 5365.949418578708], [-7994.760723505578, 5423.949418577933], [-8220.060723509449, 5423.699418578564], [-8483.660723506147, 5422.749418578122], [-8520.210723510501, 5422.699418577537]]}, {"length": 13.7993149024, "source": 2289073167, "destination": 2289073171, "path": [[-7994.160723505673, 5365.949418578708], [-7993.860723509271, 5303.8994185783395]]}, {"length": 5.90968298822, "source": 2289073167, "destination": 134985532, "path": [[-7994.160723505673, 5365.949418578708], [-7959.060723507605, 5366.199418578077]]}, {"length": 50.6252482496, "source": 135035920, "destination": 1933539568, "path": [[7336.839276490537, -5901.600581420752], [7637.639276488528, -5898.050581421899]]}, {"length": 51.12764419, "source": 135035920, "destination": 2086854500, "path": [[7336.839276490537, -5901.600581420752], [7335.9392764942295, -5671.700581423522]]}, {"length": 200.513611314, "source": 135035920, "destination": 1933603724, "path": [[7336.839276490537, -5901.600581420752], [6145.439276494358, -5915.2005814233635]]}, {"length": 48.5038306229, "source": 135035920, "destination": 2658901885, "path": [[7336.839276490537, -5901.600581420752], [7338.039276490349, -6119.700581422194]]}, {"length": 13.4117047071, "source": 2289073169, "destination": 2289073178, "path": [[-8649.41072350689, 5362.149418576933], [-8649.41072350689, 5344.649418578484], [-8649.16072350752, 5301.8494185792515]]}, {"length": 13.3990188585, "source": 2289073169, "destination": 2289073163, "path": [[-8649.41072350689, 5362.149418576933], [-8649.960723509765, 5422.399418577584]]}, {"length": 10.7146737946, "source": 2289073169, "destination": 134982235, "path": [[-8649.41072350689, 5362.149418576933], [-8585.760723505588, 5362.099418576349]]}, {"length": 163.594007558, "source": 2289073169, "destination": 2091809095, "path": [[-8649.41072350689, 5362.149418576933], [-9196.310723510236, 5359.949418576093], [-9213.51072350518, 5360.849418575953], [-9230.16072351146, 5363.799418578452], [-9252.510723506191, 5373.499418578121], [-9271.41072350679, 5387.049418576595], [-9284.660723508863, 5401.499418578482], [-9293.360723511058, 5415.049418576956], [-9302.61072350902, 5439.699418577248], [-9306.760723511332, 5465.799418576722], [-9307.710723511775, 5489.449418575987], [-9307.610723510606, 5637.649418577695]]}, {"length": 8.98933775864, "source": 2289073170, "destination": 2289073171, "path": [[-7940.460723510512, 5304.199418578292], [-7993.860723509271, 5303.8994185783395]]}, {"length": 8.98933775864, "source": 2289073171, "destination": 2289073170, "path": [[-7993.860723509271, 5303.8994185783395], [-7940.460723510512, 5304.199418578292]]}, {"length": 88.5051501695, "source": 2289073171, "destination": 2289073174, "path": [[-7993.860723509271, 5303.8994185783395], [-8116.060723509122, 5303.199418577265], [-8367.810723505898, 5302.549418576774], [-8519.610723510596, 5301.949418576868]]}, {"length": 13.7993149024, "source": 2289073171, "destination": 2289073167, "path": [[-7993.860723509271, 5303.8994185783395], [-7994.160723505673, 5365.949418578708]]}, {"length": 52.6496968477, "source": 135109653, "destination": 844180730, "path": [[7955.639276488569, 4162.8994185778365], [7919.4392764918575, 4181.399418577314], [7890.389276489885, 4197.8994185782885], [7872.239276494497, 4209.799418578797], [7847.339276494836, 4227.899418577153], [7735.539276488624, 4329.049418576147]]}, {"length": 170.420388123, "source": 135109653, "destination": 844180731, "path": [[7955.639276488569, 4162.8994185778365], [7977.689276494004, 4210.449418579287], [8016.739276492046, 4274.199418578206], [8036.639276490121, 4298.549418578546], [8063.5892764888695, 4323.149418578254], [8103.339276495091, 4348.099418578499], [8142.089276489628, 4378.549418579069], [8166.83927649109, 4404.699418579128], [8202.689276494368, 4450.399418576722], [8354.189276488454, 4636.149418576707], [8368.939276493848, 4650.349418579225], [8366.289276494854, 4662.5494185761345], [8359.589276494717, 4679.7994185787675], [8336.789276491174, 4712.299418578425], [8252.639276491891, 4772.499418578491], [8224.78927648973, 4789.699418576987]]}, {"length": 149.895918308, "source": 135109653, "destination": 1942314036, "path": [[7955.639276488569, 4162.8994185778365], [7925.839276488488, 4115.6494185763395], [7591.139276492242, 3547.9494185786107]]}, {"length": 47.5214445332, "source": 135109653, "destination": 135100478, "path": [[7955.639276488569, 4162.8994185778365], [8007.3392764887785, 4142.399418576304], [8049.689276489858, 4128.59941857846], [8101.339276493036, 4116.899418576736], [8141.089276492153, 4111.749418576948], [8181.739276494682, 4108.149418577512], [8224.33927649513, 4106.399418578377]]}, {"length": 13.477632229, "source": 2289073174, "destination": 2289073168, "path": [[-8519.610723510596, 5301.949418576868], [-8519.910723506997, 5343.499418579257], [-8520.010723508165, 5362.549418578055]]}, {"length": 48.1143963285, "source": 2289073174, "destination": 2289073265, "path": [[-8519.610723510596, 5301.949418576868], [-8518.710723507184, 5187.79941857872], [-8518.710723507184, 5085.599418578113]]}, {"length": 88.5051501695, "source": 2289073174, "destination": 2289073171, "path": [[-8519.610723510596, 5301.949418576868], [-8367.810723505898, 5302.549418576774], [-8116.060723509122, 5303.199418577265], [-7993.860723509271, 5303.8994185783395]]}, {"length": 11.0176990159, "source": 2289073174, "destination": 2289073176, "path": [[-8519.610723510596, 5301.949418576868], [-8537.310723511382, 5301.899418576284], [-8585.060723511617, 5301.899418576284]]}, {"length": 28.2454848436, "source": 2311060503, "destination": 2311060501, "path": [[-3716.0607235051657, 2901.549418577787], [-3548.2607235053365, 2902.1994185782773]]}, {"length": 12.3547440831, "source": 2311060503, "destination": 2311060486, "path": [[-3716.0607235051657, 2901.549418577787], [-3716.9607235085778, 2957.099418576803]]}, {"length": 53.587368416, "source": 2311060503, "destination": 3758384263, "path": [[-3716.0607235051657, 2901.549418577787], [-3714.560723508953, 2814.799418576541], [-3541.3107235058305, 2810.599418577198], [-3510.9107235058445, 2810.599418577198]]}, {"length": 10.7895547731, "source": 2289073176, "destination": 2289073178, "path": [[-8585.060723511617, 5301.899418576284], [-8633.660723511128, 5301.899418576284], [-8649.16072350752, 5301.8494185792515]]}, {"length": 13.3889254342, "source": 2289073176, "destination": 134982235, "path": [[-8585.060723511617, 5301.899418576284], [-8585.760723505588, 5362.099418576349]]}, {"length": 11.0176990159, "source": 2289073176, "destination": 2289073174, "path": [[-8585.060723511617, 5301.899418576284], [-8537.310723511382, 5301.899418576284], [-8519.610723510596, 5301.949418576868]]}, {"length": 48.0709007776, "source": 2289073176, "destination": 1433125518, "path": [[-8585.060723511617, 5301.899418576284], [-8583.010723505424, 5085.7494185763135]]}, {"length": 10.7895547731, "source": 2289073178, "destination": 2289073176, "path": [[-8649.16072350752, 5301.8494185792515], [-8633.660723511128, 5301.899418576284], [-8585.060723511617, 5301.899418576284]]}, {"length": 13.4117047071, "source": 2289073178, "destination": 2289073169, "path": [[-8649.16072350752, 5301.8494185792515], [-8649.41072350689, 5344.649418578484], [-8649.41072350689, 5362.149418576933]]}, {"length": 95.4838865099, "source": 2289073178, "destination": 2289073180, "path": [[-8649.16072350752, 5301.8494185792515], [-8827.910723510968, 5301.149418578178], [-8914.910723511583, 5301.199418578762], [-9216.360723506512, 5299.549418577243]]}, {"length": 48.137734379, "source": 2289073178, "destination": 2291234701, "path": [[-8649.16072350752, 5301.8494185792515], [-8649.060723506353, 5285.049418578325], [-8648.760723509951, 5136.649418577832], [-8648.510723510582, 5085.399418579328]]}, {"length": 95.4838865099, "source": 2289073180, "destination": 2289073178, "path": [[-9216.360723506512, 5299.549418577243], [-8914.910723511583, 5301.199418578762], [-8827.910723510968, 5301.149418578178], [-8649.16072350752, 5301.8494185792515]]}, {"length": 60.6480650684, "source": 135016282, "destination": 2086854480, "path": [[7544.339276492451, -2320.1005814215137], [7904.689276493571, -2318.350581422379]]}, {"length": 122.093203474, "source": 135016282, "destination": 135016280, "path": [[7544.339276492451, -2320.1005814215137], [7541.339276492919, -1771.100581422047]]}, {"length": 58.6613401893, "source": 135016282, "destination": 2086854396, "path": [[7544.339276492451, -2320.1005814215137], [7195.789276494224, -2321.100581422542]]}, {"length": 60.6240602626, "source": 135016282, "destination": 2086854413, "path": [[7544.339276492451, -2320.1005814215137], [7545.839276488664, -2592.7005814239124]]}, {"length": 41.0839761706, "source": 2568600069, "destination": 2568600085, "path": [[179.43927649355373, -2689.6005814229793], [159.33927649314228, -2669.3005814237836], [125.13927649138168, -2630.750581420926], [97.63927648975823, -2609.950581422993], [71.48927649325287, -2592.7005814239124], [42.63927649361676, -2575.450581421279], [9.789276489868826, -2559.700581421964]]}, {"length": 49.0354501109, "source": 2568600069, "destination": 2568600110, "path": [[179.43927649355373, -2689.6005814229793], [186.1392764936909, -2710.400581420913], [214.7392764939582, -2908.3005814207754]]}, {"length": 45.9573362872, "source": 2568600069, "destination": 2587010637, "path": [[179.43927649355373, -2689.6005814229793], [191.73927649518419, -2679.150581421652], [199.789276493334, -2655.8005814223407], [202.43927649232774, -2612.200581420865], [206.48927649347115, -2487.3505814220207]]}, {"length": 13.4507125371, "source": 2292322139, "destination": 2292322142, "path": [[-9171.410723510577, 4601.249418577425], [-9251.310723506378, 4600.749418578687]]}, {"length": 50.9273513406, "source": 1937710117, "destination": 135081370, "path": [[7339.03927649493, -6585.600581423989], [7339.33927649133, -6356.600581423067]]}, {"length": 250.67011134, "source": 1937710117, "destination": 2042464563, "path": [[7339.03927649493, -6585.600581423989], [7266.839276489634, -6587.30058142254], [7161.589276492464, -6588.000581423614], [7063.089276492463, -6588.000581423614], [6970.439276493324, -6589.350581421627], [6909.689276490382, -6589.350581421627], [6831.439276488993, -6590.400581423239], [6778.78927648834, -6589.000581421089], [6705.939276493211, -6587.650581423077], [6619.989276494209, -6588.350581420599], [6565.5892764908685, -6589.350581421627], [6514.289276488227, -6590.7005814231925], [6471.089276494979, -6591.400581420714], [6419.83927648937, -6591.750581421252], [6383.839276494996, -6592.400581421743], [6351.439276492954, -6594.100581423845], [6326.239276489787, -6594.8005814213675], [6290.7392764941505, -6594.8005814213675], [6235.839276492072, -6593.800581423892], [6197.589276489169, -6594.45058142083], [6165.239276491264, -6596.150581422933], [6128.789276495183, -6598.550581422558], [6073.439276491399, -6601.250581422136], [6010.939276492877, -6601.950581423211], [5937.139276490199, -6604.350581422836], [5892.439276493633, -6606.050581421386], [5850.2392764907545, -6605.05058142391]]}, {"length": 50.3716345166, "source": 1937710117, "destination": 135039780, "path": [[7339.03927649493, -6585.600581423989], [7339.939276491236, -6812.1005814205655]]}, {"length": 128.37317145, "source": 2069376860, "destination": 2069376944, "path": [[-4993.410723507452, 4714.6994185780495], [-4966.610723506903, 4717.749418578165], [-4937.26072350853, 4719.499418577299], [-4909.110723509968, 4723.549418578443], [-4884.960723508413, 4734.749418577877], [-4867.360723508796, 4749.1994185762105], [-4843.410723509578, 4761.1494185773045], [-4816.610723509029, 4770.2494185770665], [-4788.410723506331, 4773.299418577181], [-4251.860723506696, 4769.64941857716]]}, {"length": 14.4815378345, "source": 2069376860, "destination": 2069376885, "path": [[-4993.410723507452, 4714.6994185780495], [-5014.710723507676, 4725.949418578068], [-5033.460723510075, 4739.049418578389], [-5055.610723509573, 4759.0994185782165]]}, {"length": 12.9547722469, "source": 2069376860, "destination": 2069376943, "path": [[-4993.410723507452, 4714.6994185780495], [-5020.410723510338, 4702.24941857822], [-5055.110723510836, 4680.149418579304]]}, {"length": 77.4819703358, "source": 2311060525, "destination": 134959954, "path": [[-3411.4607235053995, 2810.599418577198], [-3414.01072351033, 3158.999418577224]]}, {"length": 16.7393539431, "source": 2311060525, "destination": 3758384263, "path": [[-3411.4607235053995, 2810.599418577198], [-3510.9107235058445, 2810.599418577198]]}, {"length": 34.6638180673, "source": 2087861294, "destination": 1930503416, "path": [[10060.93927649232, -8569.300581420692], [10037.639276490041, -8568.850581422537], [9900.739276488934, -8568.550581422585], [9854.939276493724, -8568.800581421954]]}, {"length": 193.56843389, "source": 2087861294, "destination": 2087861329, "path": [[10060.93927649232, -8569.300581420692], [10061.439276491057, -7698.900581420531]]}, {"length": 55.7505959181, "source": 2087861294, "destination": 2087861293, "path": [[10060.93927649232, -8569.300581420692], [10099.589276492792, -8570.05058142235], [10328.889276493668, -8570.650581422256], [10392.189276494435, -8568.700581420784]]}, {"length": 8.74128011462, "source": 2087861294, "destination": 2087861313, "path": [[10060.93927649232, -8569.300581420692], [10063.689276492481, -8608.55058142107]]}, {"length": 9.26435574866, "source": 2586992559, "destination": 2586992561, "path": [[896.2892764898811, -1846.4505814215215], [895.1892764912373, -1888.1005814215257]]}, {"length": 36.749455481, "source": 2586992559, "destination": 2586992558, "path": [[896.2892764898811, -1846.4505814215215], [677.9392764926229, -1847.5005814231338]]}, {"length": 46.9581203519, "source": 2586992559, "destination": 2587010391, "path": [[896.2892764898811, -1846.4505814215215], [1175.2892764889111, -1844.5505814206342]]}, {"length": 15.9524538517, "source": 1942314035, "destination": 1962191347, "path": [[7536.989276488271, 3224.9494185769836], [7534.339276489277, 3161.4494185774333], [7528.089276490846, 3154.749418577296]]}, {"length": 73.0618181596, "source": 1942314035, "destination": 1942314036, "path": [[7536.989276488271, 3224.9494185769836], [7540.489276493645, 3265.0494185766374], [7578.039276488369, 3382.799418577775], [7592.439276493224, 3421.0494185771267], [7599.189276490392, 3460.6494185780434], [7591.139276492242, 3547.9494185786107]]}, {"length": 58.8972189444, "source": 1942314035, "destination": 1962191318, "path": [[7536.989276488271, 3224.9494185769836], [7291.03927648822, 3221.3994185781303], [7187.639276494906, 3229.099418579295]]}, {"length": 179.34275958, "source": 1942314036, "destination": 1942314064, "path": [[7591.139276492242, 3547.9494185786107], [7467.73927649258, 3301.299418577486], [7446.289276494155, 3237.3494185762297], [7441.239276488432, 3141.1994185788217], [7444.939276489038, 3045.4994185760142], [7503.289276492353, 2764.199418578528]]}, {"length": 73.0618181596, "source": 1942314036, "destination": 1942314035, "path": [[7591.139276492242, 3547.9494185786107], [7599.189276490392, 3460.6494185780434], [7592.439276493224, 3421.0494185771267], [7578.039276488369, 3382.799418577775], [7540.489276493645, 3265.0494185766374], [7536.989276488271, 3224.9494185769836]]}, {"length": 149.895918308, "source": 1942314036, "destination": 135109653, "path": [[7591.139276492242, 3547.9494185786107], [7925.839276488488, 4115.6494185763395], [7955.639276488569, 4162.8994185778365]]}, {"length": 63.3155743534, "source": 2292322142, "destination": 2292322400, "path": [[-9251.310723506378, 4600.749418578687], [-9251.010723509979, 4548.899418576724], [-9250.410723510071, 4523.999418577063], [-9250.210723507735, 4316.049418576995]]}, {"length": 13.4507125371, "source": 2292322142, "destination": 2292322139, "path": [[-9251.310723506378, 4600.749418578687], [-9171.410723510577, 4601.249418577425]]}, {"length": 33.3475237058, "source": 2292322142, "destination": 2287972844, "path": [[-9251.310723506378, 4600.749418578687], [-9251.360723510516, 4612.299418578658], [-9252.21072350979, 4750.699418575977]]}, {"length": 55.2702801458, "source": 2087861313, "destination": 134982537, "path": [[10063.689276492481, -8608.55058142107], [10392.139276490298, -8606.100581420862]]}, {"length": 8.74128011462, "source": 2087861313, "destination": 2087861294, "path": [[10063.689276492481, -8608.55058142107], [10060.93927649232, -8569.300581420692]]}, {"length": 36.3559324457, "source": 2087861313, "destination": 1930503470, "path": [[10063.689276492481, -8608.55058142107], [9847.63927649368, -8610.150581422005]]}, {"length": 9.21020486811, "source": 2293563019, "destination": 2293563003, "path": [[-5355.060723509552, 6396.749418577485], [-5356.510723508734, 6438.149418578121]]}, {"length": 56.0427668156, "source": 2069376865, "destination": 2069376730, "path": [[-4471.910723509609, 5667.649418576559], [-4451.8107235091975, 5649.39941857645], [-4437.060723510911, 5631.099418579311], [-4426.31072350963, 5608.799418578059], [-4420.9607235075055, 5585.449418578747], [-4416.9607235104995, 5549.899418578974], [-4416.9607235104995, 5535.699418576456], [-4426.31072350963, 5515.399418577261], [-4435.710723505792, 5495.099418578065], [-4437.060723510911, 5464.59941857691], [-4438.410723508923, 5448.399418579442], [-4433.010723509768, 5429.099418577721]]}, {"length": 27.3692445835, "source": 2069376865, "destination": 2069376868, "path": [[-4471.910723509609, 5667.649418576559], [-4615.4107235096835, 5725.499418577584]]}, {"length": 37.1727435578, "source": 2069376865, "destination": 2069376919, "path": [[-4471.910723509609, 5667.649418576559], [-4412.910723509356, 5725.499418577584], [-4345.860723510952, 5804.699418579417]]}, {"length": 9.35101958232, "source": 2282973329, "destination": 2282973360, "path": [[-8772.660723508352, 2568.5994185771224], [-8772.460723506014, 2526.5494185759962]]}, {"length": 100.138386972, "source": 1942314064, "destination": 1962191352, "path": [[7503.289276492353, 2764.199418578528], [7401.939276491021, 2320.4994185768155]]}, {"length": 179.34275958, "source": 1942314064, "destination": 1942314036, "path": [[7503.289276492353, 2764.199418578528], [7444.939276489038, 3045.4994185760142], [7441.239276488432, 3141.1994185788217], [7446.289276494155, 3237.3494185762297], [7467.73927649258, 3301.299418577486], [7591.139276492242, 3547.9494185786107]]}, {"length": 83.8476406576, "source": 1942314064, "destination": 1279884639, "path": [[7503.289276492353, 2764.199418578528], [7517.9892764936085, 2828.3494185785685], [7526.889276491033, 3140.199418577794]]}, {"length": 41.3718112885, "source": 2087861329, "destination": 134983496, "path": [[10061.439276491057, -7698.900581420531], [10307.289276489939, -7697.100581420813]]}, {"length": 193.56843389, "source": 2087861329, "destination": 2087861294, "path": [[10061.439276491057, -7698.900581420531], [10060.93927649232, -8569.300581420692]]}, {"length": 7.73243120709, "source": 2087861329, "destination": 2086862902, "path": [[10061.439276491057, -7698.900581420531], [10015.489276490542, -7699.350581422237]]}, {"length": 55.764364903, "source": 2074272062, "destination": 135104883, "path": [[-3308.710723509023, -6355.250581421501], [-3308.8107235101916, -6104.5005814222]]}, {"length": 115.322051687, "source": 2074272062, "destination": 1916976467, "path": [[-3308.710723509023, -6355.250581421501], [-2623.410723508357, -6354.4005814222255]]}, {"length": 54.1186922665, "source": 2074272062, "destination": 135097197, "path": [[-3308.710723509023, -6355.250581421501], [-3308.660723504886, -6598.600581423142]]}, {"length": 178.164916145, "source": 135019608, "destination": 134962288, "path": [[8447.839276492175, -10869.60058142239], [8787.339276494777, -10959.600581422535], [8841.339276493443, -10981.100581421544], [8890.83927648926, -11009.100581421904], [8933.839276494382, -11042.100581423852], [8970.339276494598, -11079.100581422806], [8998.839276493698, -11120.600581421058], [9019.339276491679, -11164.100581421366], [9078.83927649067, -11410.600581420738]]}, {"length": 61.9051816105, "source": 2068020324, "destination": 2069036700, "path": [[2443.3892764932352, 4302.949418576673], [2439.8392764908294, 4581.299418578766]]}, {"length": 122.065776824, "source": 2068020324, "destination": 134997404, "path": [[2443.3892764932352, 4302.949418576673], [3168.4892764900496, 4308.899418578704]]}, {"length": 60.4469633907, "source": 2068020324, "destination": 2069120326, "path": [[2443.3892764932352, 4302.949418576673], [2445.6892764916915, 4031.1494185765187]]}, {"length": 121.444201091, "source": 2068020324, "destination": 134990167, "path": [[2443.3892764932352, 4302.949418576673], [1721.9392764928898, 4303.099418578427]]}, {"length": 9.79356097976, "source": 2282822761, "destination": 2282034667, "path": [[-9211.910723507799, -733.0005814232265], [-9218.2607235074, -756.6005814219068], [-9218.4107235056, -776.5505814205653]]}, {"length": 11.167328762, "source": 2282822761, "destination": 135043204, "path": [[-9211.910723507799, -733.0005814232265], [-9278.260723505127, -733.3005814231797]]}, {"length": 122.589789645, "source": 2282822761, "destination": 3758384275, "path": [[-9211.910723507799, -733.0005814232265], [-9205.46072350703, -709.2005814222091], [-9205.810723507568, -686.4505814228039], [-9206.560723505674, -528.7505814237647], [-9207.660723511424, -345.85058142155845], [-9208.41072350953, -213.05058142218058], [-9201.260723507687, -182.7505814233632]]}, {"length": 111.589967652, "source": 2282822761, "destination": 135043207, "path": [[-9211.910723507799, -733.0005814232265], [-8548.910723504832, -730.1005814213113]]}, {"length": 4.83891401171, "source": 2282822762, "destination": 2282822765, "path": [[-8946.76072351075, -753.2005814212539], [-8946.410723510213, -774.9505814231838]]}, {"length": 83.8168580196, "source": 2086723431, "destination": 2086723534, "path": [[5088.339276490216, 2366.4994185779165], [4590.389276494023, 2366.4994185779165]]}, {"length": 4.83891401171, "source": 2282822765, "destination": 2282822762, "path": [[-8946.410723510213, -774.9505814231838], [-8946.76072351075, -753.2005814212539]]}, {"length": 45.7810310648, "source": 2282822765, "destination": 2282034667, "path": [[-8946.410723510213, -774.9505814231838], [-9218.4107235056, -776.5505814205653]]}, {"length": 9.71871781883, "source": 2282822765, "destination": 2282822781, "path": [[-8946.410723510213, -774.9505814231838], [-8945.76072350617, -818.6505814222755]]}, {"length": 35.917980599, "source": 2282822765, "destination": 2282034663, "path": [[-8946.410723510213, -774.9505814231838], [-8884.660723509796, -774.6005814226464], [-8733.010723510404, -774.0505814233245]]}, {"length": 168.867379982, "source": 1567538287, "destination": 1935295477, "path": [[-3421.810723509111, -2588.0005814222786], [-3399.660723509612, -2247.6005814233704], [-3394.1107235051504, -2194.450581423979], [-3380.560723506676, -2100.700581422643], [-3364.660723505608, -1974.6005814234024], [-3355.460723511783, -1830.5505814240064]]}, {"length": 42.1269494764, "source": 1887485040, "destination": 2587199435, "path": [[1023.189276494918, -1249.8505814235727], [1273.489276492512, -1249.4005814218667]]}, {"length": 122.709839272, "source": 1887485040, "destination": 1996491668, "path": [[1023.189276494918, -1249.8505814235727], [1015.9392764919062, -698.1005814239438]]}, {"length": 125.531065233, "source": 1887485040, "destination": 135016390, "path": [[1023.189276494918, -1249.8505814235727], [277.33927649364887, -1251.5505814221228]]}, {"length": 61.3019043282, "source": 2068020337, "destination": 134985680, "path": [[2429.939276488824, 5678.199418579055], [2429.989276492961, 5402.549418576541]]}, {"length": 63.648444604, "source": 2068020337, "destination": 134994393, "path": [[2429.939276488824, 5678.199418579055], [2430.4892764916985, 5893.099418578629], [2430.6392764898987, 5964.39941857696]]}, {"length": 238.925018734, "source": 2068020337, "destination": 2068877154, "path": [[2429.939276488824, 5678.199418579055], [1715.6392764903217, 5673.599418578589], [1010.6892764909503, 5669.549418577446]]}, {"length": 122.519057866, "source": 2068020337, "destination": 2068020404, "path": [[2429.939276488824, 5678.199418579055], [3157.739276488769, 5680.2994185787265]]}, {"length": 583.422546202, "source": 1567538290, "destination": 1428267841, "path": [[-3389.6107235094064, -2862.5005814220117], [-3396.91072350945, -3053.2005814229988], [-3396.4607235077438, -3128.200581421936], [-3395.4107235061315, -3151.8005814206163], [-3388.4607235066255, -3211.150581421407], [-3384.710723508988, -3232.450581421631], [-3376.4107235114693, -3275.400581422616], [-3362.6607235106576, -3322.5005814223605], [-3349.8607235102895, -3358.1005814227183], [-3331.1607235049223, -3409.900581420544], [-3285.260723508543, -3505.6005814233513], [-3221.46072350904, -3605.6005814231185], [-3094.0107235082337, -3779.000581420888], [-2935.660723508704, -3995.8005814213493], [-2840.9607235104772, -4119.6005814221335], [-2764.9107235063752, -4230.350581423181], [-2729.960723506508, -4292.7005814235035], [-2698.0607235103093, -4362.4505814214845], [-2672.710723508942, -4432.3005814206335], [-2653.510723504837, -4503.700581423686], [-2637.4107235085376, -4602.200581423687], [-2635.610723508819, -4672.700581423328], [-2634.910723507744, -4726.400581422041], [-2630.7107235084004, -5258.700581421749], [-2632.4107235069505, -5359.950581421913]]}, {"length": 61.5911644034, "source": 1567538290, "destination": 1567538287, "path": [[-3389.6107235094064, -2862.5005814220117], [-3401.760723505731, -2770.900581420932], [-3402.9607235055437, -2638.2505814233073], [-3421.810723509111, -2588.0005814222786]]}, {"length": 114.962330095, "source": 4615944723, "destination": 135023040, "path": [[-11055.560723505663, -2033.8505814230246], [-11028.460723508715, -2002.350581420842], [-10988.76072350663, -1971.3505814209498], [-10936.710723505883, -1940.1005814216887], [-10481.360723510135, -1766.4005814239658]]}, {"length": 63.6743027257, "source": 4615944723, "destination": 135020785, "path": [[-11055.560723505663, -2033.8505814230246], [-11065.810723508206, -2045.8005814205649], [-11092.210723511187, -2094.700581423581], [-11165.060723506314, -2306.9005814235766]]}, {"length": 15.1027921047, "source": 4615944723, "destination": 4615944724, "path": [[-11055.560723505663, -2033.8505814230246], [-11122.060723508297, -1988.2505814230456]]}, {"length": 36.5832920706, "source": 4720000116, "destination": 4720000117, "path": [[2229.0392764929834, -1999.250581423695], [2229.389276493521, -1834.75058142335]]}, {"length": 22.9072032081, "source": 4720000117, "destination": 4719995860, "path": [[2229.389276493521, -1834.75058142335], [2245.439276492789, -1827.1005814227692], [2244.289276490008, -1752.4005814237853], [2246.489276494401, -1738.550581421805]]}, {"length": 36.5832920706, "source": 4720000117, "destination": 4720000116, "path": [[2229.389276493521, -1834.75058142335], [2229.0392764929834, -1999.250581423695]]}, {"length": 63.4160229384, "source": 4720000117, "destination": 4719995863, "path": [[2229.389276493521, -1834.75058142335], [2136.589276489076, -1878.8005814229791], [2040.3892764946363, -2067.5005814219103]]}, {"length": 62.3909915589, "source": 2068020343, "destination": 2069120297, "path": [[2449.1392764929287, 2902.0494185765247], [2344.189276492159, 2901.799418577156], [2090.2892764951275, 2901.149418576665], [2078.4892764922347, 2901.099418576081]]}, {"length": 122.446577943, "source": 2068020343, "destination": 2069120356, "path": [[2449.1392764929287, 2902.0494185765247], [3176.489276491168, 2910.4994185793485]]}, {"length": 59.8124182892, "source": 2068020343, "destination": 134994389, "path": [[2449.1392764929287, 2902.0494185765247], [2448.3392764906853, 2737.249418576226], [2448.839276489423, 2633.0994185777]]}, {"length": 79.0989953809, "source": 2282822780, "destination": 2282822802, "path": [[-8920.010723507232, -818.1505814235379], [-8869.91072351151, -817.1005814219257], [-8841.81072350998, -792.9505814239235], [-8730.66072350781, -792.9505814239235], [-8729.960723506736, -994.4005814226387]]}, {"length": 12.4173222555, "source": 2282822780, "destination": 2282822788, "path": [[-8920.010723507232, -818.1505814235379], [-8851.41072350848, -838.7005814221027]]}, {"length": 4.33492273397, "source": 2282822780, "destination": 2282822781, "path": [[-8920.010723507232, -818.1505814235379], [-8945.76072350617, -818.6505814222755]]}, {"length": 47.9689408633, "source": 2282822781, "destination": 2282034667, "path": [[-8945.76072350617, -818.6505814222755], [-9044.860723506077, -820.700581421363], [-9065.110723511792, -820.2005814226254], [-9089.46072350858, -818.1005814229536], [-9113.110723511398, -814.750581422885], [-9131.660723511459, -810.3505814212042], [-9148.81072350937, -804.6005814215107], [-9167.660723505833, -797.3505814220516], [-9196.460723508437, -785.4005814209586], [-9218.4107235056, -776.5505814205653]]}, {"length": 4.33492273397, "source": 2282822781, "destination": 2282822780, "path": [[-8945.76072350617, -818.6505814222755], [-8920.010723507232, -818.1505814235379]]}, {"length": 9.71871781883, "source": 2282822781, "destination": 2282822765, "path": [[-8945.76072350617, -818.6505814222755], [-8946.410723510213, -774.9505814231838]]}, {"length": 61.1021127678, "source": 2568600085, "destination": 2568600044, "path": [[9.789276489868826, -2559.700581421964], [-22.41072350983586, -2555.150581422083], [-80.71072350901431, -2549.55058142059], [-173.26072350698496, -2545.500581422999], [-351.9607235062949, -2550.600581422202]]}, {"length": 41.0839761706, "source": 2568600085, "destination": 2568600069, "path": [[9.789276489868826, -2559.700581421964], [42.63927649361676, -2575.450581421279], [71.48927649325287, -2592.7005814239124], [97.63927648975823, -2609.950581422993], [125.13927649138168, -2630.750581420926], [159.33927649314228, -2669.3005814237836], [179.43927649355373, -2689.6005814229793]]}, {"length": 12.72982456, "source": 2568600085, "destination": 2568600101, "path": [[9.789276489868826, -2559.700581421964], [17.839276495124068, -2547.0005814227648], [20.539276491149394, -2534.3005814235653], [20.539276491149394, -2520.1005814210475], [19.18927649313673, -2504.0505814217795]]}, {"length": 10.6969948865, "source": 2293563021, "destination": 2293563001, "path": [[-5135.760723504745, 6391.149418575992], [-5135.8607235059135, 6439.249418576765]]}, {"length": 121.347760136, "source": 2086776683, "destination": 2086776720, "path": [[252.08927649345014, 2352.299418578951], [-468.81072351112607, 2348.249418577808]]}, {"length": 63.6932560987, "source": 2086776683, "destination": 134982661, "path": [[252.08927649345014, 2352.299418578951], [253.88927649316884, 2065.8994185787096]]}, {"length": 12.4173222555, "source": 2282822788, "destination": 2282822780, "path": [[-8851.41072350848, -838.7005814221027], [-8920.010723507232, -818.1505814235379]]}, {"length": 12.7319705637, "source": 1483977761, "destination": 1483977753, "path": [[-187.81072351004013, -5848.200581421992], [-187.81072351004013, -5790.950581420873]]}, {"length": 157.534873109, "source": 1483977761, "destination": 1483977762, "path": [[-187.81072351004013, -5848.200581421992], [-1123.9107235070378, -5854.450581423976]]}, {"length": 54.4410626967, "source": 1483977761, "destination": 1483977772, "path": [[-187.81072351004013, -5848.200581421992], [-187.81072351004013, -6093.000581422813]]}, {"length": 61.4244717608, "source": 2086854508, "destination": 134979290, "path": [[9645.089276489216, -394.3505814234527], [9643.839276492372, -118.15058142161661]]}, {"length": 112.767429665, "source": 2086854508, "destination": 2086854382, "path": [[9645.089276489216, -394.3505814234527], [8975.08927648971, -394.3505814234527]]}, {"length": 63.3720853582, "source": 2086715245, "destination": 135016394, "path": [[1754.3892764919633, -963.6505814221152], [1757.3392764944629, -1248.600581423176]]}, {"length": 59.6562501432, "source": 2086715245, "destination": 2573122333, "path": [[1754.3892764919633, -963.6505814221152], [1753.8392764890887, -695.4005814208131]]}, {"length": 123.265753106, "source": 2086715245, "destination": 2086715230, "path": [[1754.3892764919633, -963.6505814221152], [2486.7392764917895, -958.0505814206219]]}, {"length": 93.0934625111, "source": 2311060625, "destination": 2311060643, "path": [[-3510.0607235065695, 2671.9494185769577], [-3567.510723506473, 2671.9494185769577], [-3757.0107235112005, 2671.699418577589], [-3921.010723509255, 2670.6994185765607], [-4063.1107235071795, 2670.199418577823]]}, {"length": 0.991155009434, "source": 2311060625, "destination": 2311060652, "path": [[-3510.0607235065695, 2671.9494185769577], [-3510.0607235065695, 2667.4994185782452]]}, {"length": 30.8347302024, "source": 2311060625, "destination": 3758384263, "path": [[-3510.0607235065695, 2671.9494185769577], [-3510.9107235058445, 2810.599418577198]]}, {"length": 79.0989953809, "source": 2282822802, "destination": 2282822780, "path": [[-8729.960723506736, -994.4005814226387], [-8730.66072350781, -792.9505814239235], [-8841.81072350998, -792.9505814239235], [-8869.91072351151, -817.1005814219257], [-8920.010723507232, -818.1505814235379]]}, {"length": 218.730985896, "source": 134937748, "destination": 1930503811, "path": [[9794.889276491858, -9334.250581421344], [9823.839276492663, -9446.100581421035], [9840.339276493636, -9515.10058142091], [9868.339276493998, -9631.100581422914], [9877.83927649133, -9722.600581422825], [9882.839276492916, -9983.100581422377], [9878.589276489436, -10267.900581421685], [9879.139276492311, -10312.300581421852]]}, {"length": 39.2851490044, "source": 134937748, "destination": 134979246, "path": [[9794.889276491858, -9334.250581421344], [9794.63927649249, -9510.900581421567]]}, {"length": 314.883197871, "source": 2310516590, "destination": 2316883642, "path": [[-889.7607235098803, 3801.849418579195], [-2645.3607235055188, 3793.1994185775866], [-2760.060723510094, 3787.099418577355]]}, {"length": 93.0841209882, "source": 2311060631, "destination": 2311060377, "path": [[-4958.660723509922, 2671.4994185788046], [-4960.610723507842, 2800.3494185782074], [-4961.610723505317, 2932.099418575973], [-4962.56072350576, 3031.249418576465], [-4962.460723511696, 3090.0494185779335]]}, {"length": 108.203891562, "source": 2311060633, "destination": 3758384264, "path": [[-2034.7607235109422, 2671.44941857822], [-2059.560723509435, 2671.44941857822], [-2256.2107235089, 2670.449418577192], [-2371.8607235068134, 2670.449418577192], [-2571.8107235093157, 2669.9494185784542], [-2677.5607235052235, 2668.049418577567]]}, {"length": 32.5222067948, "source": 134937758, "destination": 1951958644, "path": [[9882.939276494086, -10414.700581421243], [9990.83927649025, -10420.60058142269], [10075.939276489975, -10421.450581421965]]}, {"length": 181.364757889, "source": 134937758, "destination": 135022935, "path": [[9882.939276494086, -10414.700581421243], [9802.039276493702, -10397.15058142221], [9756.68927649309, -10385.000581422333], [9714.68927649255, -10370.750581422782], [9677.839276491795, -10353.600581421319], [9605.3392764901, -10321.60058142395], [9537.83927648999, -10284.600581421444], [9475.839276490206, -10242.100581422164], [9412.339276494207, -10188.100581423498], [9364.339276494604, -10136.600581422073], [9317.839276491213, -10073.100581422523], [9315.33927649042, -10068.600581423227], [9292.339276491646, -10025.10058142292], [9281.839276489734, -10006.100581421151], [9256.339276490166, -9936.100581423801], [9241.389276489543, -9831.500581423568]]}, {"length": 93.0934625111, "source": 2311060643, "destination": 2311060625, "path": [[-4063.1107235071795, 2670.199418577823], [-3921.010723509255, 2670.6994185765607], [-3757.0107235112005, 2671.699418577589], [-3567.510723506473, 2671.9494185769577], [-3510.0607235065695, 2671.9494185769577]]}, {"length": 75.5277656578, "source": 135052452, "destination": 135037811, "path": [[-7350.160723511579, -11440.100581420864], [-7387.160723510533, -11457.600581422867], [-7425.160723506962, -11468.600581423516], [-7463.160723510498, -11473.60058142155], [-7789.160723511657, -11474.100581423842]]}, {"length": 12.6163874745, "source": 2311060652, "destination": 2311060688, "path": [[-3510.0607235065695, 2667.4994185782452], [-3506.760723510638, 2648.699418578815], [-3508.1107235086506, 2610.9494185782014]]}, {"length": 0.991155009434, "source": 2311060652, "destination": 2311060625, "path": [[-3510.0607235065695, 2667.4994185782452], [-3510.0607235065695, 2671.9494185769577]]}, {"length": 16.7945645885, "source": 2311060652, "destination": 2311060673, "path": [[-3510.0607235065695, 2667.4994185782452], [-3469.510723505209, 2665.99941857848], [-3410.3607235067557, 2664.749418578083]]}, {"length": 56.3524279571, "source": 2074050020, "destination": 2074050038, "path": [[9638.839276490784, 829.2494185759836], [9659.339276488765, 912.1994185790072], [9666.13927649007, 980.199418577854], [9672.83927649021, 1022.8494185788861], [9682.239276493476, 1046.1994185781975], [9688.889276489477, 1059.6994185760877], [9704.039276492438, 1074.8994185760807]]}, {"length": 24.1628859028, "source": 2074050020, "destination": 2074050054, "path": [[9638.839276490784, 829.2494185759836], [9638.239276490878, 937.8994185773593]]}, {"length": 12.5012338115, "source": 2311060654, "destination": 3758384264, "path": [[-2751.8107235096068, 2666.7494185765863], [-2677.5607235052235, 2668.049418577567]]}, {"length": 110.853860334, "source": 2311060654, "destination": 2311060673, "path": [[-2751.8107235096068, 2666.7494185765863], [-2963.8107235072653, 2666.2494185778487], [-3054.9607235101917, 2665.749418579111], [-3139.560723511181, 2665.99941857848], [-3226.460723510627, 2665.4994185761893], [-3303.26072350573, 2665.749418579111], [-3410.3607235067557, 2664.749418578083]]}, {"length": 235.859356128, "source": 2311060654, "destination": 2316883643, "path": [[-2751.8107235096068, 2666.7494185765863], [-2752.110723506007, 2742.84941857772], [-2759.2107235108188, 3727.2994185784114]]}, {"length": 11.7620364583, "source": 2311060654, "destination": 2316883652, "path": [[-2751.8107235096068, 2666.7494185765863], [-2754.4607235086005, 2613.899418577148]]}, {"length": 10.9821872448, "source": 2074098866, "destination": 134975766, "path": [[9732.039276492798, -4060.700581423049], [9666.789276494113, -4061.400581420571]]}, {"length": 26.188761028, "source": 2074098866, "destination": 134975807, "path": [[9732.039276492798, -4060.700581423049], [9734.039276494856, -4178.450581420634]]}, {"length": 46.4574857102, "source": 2091809971, "destination": 2290110633, "path": [[-9313.6607235067, 6215.399418579182], [-9314.010723507237, 6424.29941857614]]}, {"length": 11.699805057, "source": 2091809971, "destination": 2291095796, "path": [[-9313.6607235067, 6215.399418579182], [-9244.16072351164, 6215.099418579229]]}, {"length": 48.4375619343, "source": 2091809971, "destination": 1806083085, "path": [[-9313.6607235067, 6215.399418579182], [-9313.610723509668, 6175.099418577191], [-9311.81072350995, 5997.599418577693]]}, {"length": 63.6269986037, "source": 2068020404, "destination": 134997408, "path": [[3157.739276488769, 5680.2994185787265], [3155.4892764944498, 5966.399418579016]]}, {"length": 122.519057866, "source": 2068020404, "destination": 2068020337, "path": [[3157.739276488769, 5680.2994185787265], [2429.939276488824, 5678.199418579055]]}, {"length": 122.107634137, "source": 2068020404, "destination": 2068009746, "path": [[3157.739276488769, 5680.2994185787265], [3883.0892764920577, 5683.349418578842]]}, {"length": 61.5809786846, "source": 2068020404, "destination": 134985684, "path": [[3157.739276488769, 5680.2994185787265], [3159.989276490194, 5403.399418579369]]}, {"length": 154.908329529, "source": 2069036916, "destination": 2069036930, "path": [[4588.289276490797, 2912.499418577852], [5508.539276490865, 2918.599418578083]]}, {"length": 237.96234519, "source": 2069036916, "destination": 2069120356, "path": [[4588.289276490797, 2912.499418577852], [3868.5392764890025, 2911.8994185779457], [3817.5892764940045, 2915.949418579089], [3742.489276490346, 2922.04941857932], [3305.2892764899866, 2922.04941857932], [3224.7892764942776, 2917.9994185781766], [3176.489276491168, 2910.4994185793485]]}, {"length": 58.1000190594, "source": 2069036916, "destination": 134959970, "path": [[4588.289276490797, 2912.499418577852], [4586.839276491617, 3173.749418579064]]}, {"length": 60.4016195107, "source": 2069036916, "destination": 135088446, "path": [[4588.289276490797, 2912.499418577852], [4589.839276491148, 2640.8994185764814]]}, {"length": 25.6715660033, "source": 2289073338, "destination": 1433125529, "path": [[-7952.260723506299, 4874.599418577929], [-8104.760723504967, 4874.549418577345]]}, {"length": 3.79504315511, "source": 2282973727, "destination": 2282973728, "path": [[-9237.160723507997, 2086.299418579074], [-9259.710723505066, 2086.1994185779054]]}, {"length": 10.86221341, "source": 2282973727, "destination": 2282973744, "path": [[-9237.160723507997, 2086.299418579074], [-9237.110723510967, 2077.3994185780966], [-9237.110723510967, 2037.4494185766423]]}, {"length": 50.2729995149, "source": 2282973727, "destination": 2282973562, "path": [[-9237.160723507997, 2086.299418579074], [-9239.160723510053, 2288.9494185776016], [-9239.110723505917, 2312.349418577497]]}, {"length": 99.4975827246, "source": 2282973727, "destination": 2282973723, "path": [[-9237.160723507997, 2086.299418579074], [-9032.660723505614, 2086.9994185765963], [-8927.360723511412, 2087.599418576502], [-8814.160723510156, 2087.999418577624], [-8646.06072350682, 2089.0494185792363]]}, {"length": 6.09364204772, "source": 2282822844, "destination": 135065299, "path": [[-8546.260723505839, -1490.3505814238827], [-8546.110723507638, -1517.7505814207848]]}, {"length": 36.1438528097, "source": 2282822844, "destination": 2282822845, "path": [[-8546.260723505839, -1490.3505814238827], [-8761.010723510764, -1491.100581421989]]}, {"length": 46.8578727228, "source": 2282822844, "destination": 135016502, "path": [[-8546.260723505839, -1490.3505814238827], [-8546.510723505207, -1448.2005814215881], [-8546.410723511144, -1279.6505814236525]]}, {"length": 8.29266216679, "source": 2289073341, "destination": 1433125540, "path": [[-8080.26072350998, 4863.149418579127], [-8068.910723508793, 4855.9494185767], [-8060.310723507769, 4846.149418579415], [-8057.36072350527, 4840.249418577969], [-8054.510723511044, 4832.549418576804]]}, {"length": 79.2012355942, "source": 2289073341, "destination": 2289073348, "path": [[-8080.26072350998, 4863.149418579127], [-8120.760723507203, 4815.599418577676], [-8516.510723509895, 4814.449418578448]]}, {"length": 4.85163416158, "source": 2289073341, "destination": 1433125529, "path": [[-8080.26072350998, 4863.149418579127], [-8085.810723507337, 4866.449418578612], [-8104.760723504967, 4874.549418577345]]}, {"length": 106.192102585, "source": 134995134, "destination": 134995137, "path": [[6379.839276490884, -2686.6005814234486], [6377.339276490091, -2209.1005814210976]]}, {"length": 74.7250409127, "source": 134995134, "destination": 135047195, "path": [[6379.839276490884, -2686.6005814234486], [6823.839276492549, -2685.100581423683]]}, {"length": 46.2660014273, "source": 134995134, "destination": 2086854492, "path": [[6379.839276490884, -2686.6005814234486], [6104.939276490029, -2687.850581423845]]}, {"length": 98.0966951427, "source": 2086776693, "destination": 2086776728, "path": [[8226.839276488818, 3470.8994185770334], [7644.089276489296, 3467.549418576965]]}, {"length": 60.3344360782, "source": 2086776693, "destination": 134960002, "path": [[8226.839276488818, 3470.8994185770334], [8226.839276488818, 3199.5994185791687]]}, {"length": 56.1534855076, "source": 2086776693, "destination": 135036822, "path": [[8226.839276488818, 3470.8994185770334], [8226.839276488818, 3723.3994185790207]]}, {"length": 122.450221359, "source": 2086776693, "destination": 2086776807, "path": [[8226.839276488818, 3470.8994185770334], [8954.239276491193, 3476.999418577265]]}, {"length": 106.080904479, "source": 134995137, "destination": 134995139, "path": [[6377.339276490091, -2209.1005814210976], [6374.839276489297, -1732.1005814210366]]}, {"length": 46.3002739866, "source": 134995137, "destination": 2086854412, "path": [[6377.339276490091, -2209.1005814210976], [6102.239276494003, -2210.350581421494]]}, {"length": 106.192102585, "source": 134995137, "destination": 134995134, "path": [[6377.339276490091, -2209.1005814210976], [6379.839276490884, -2686.6005814234486]]}, {"length": 46.3343266804, "source": 134995139, "destination": 2086854369, "path": [[6374.839276489297, -1732.1005814210366], [6099.539276490873, -1733.1005814220646]]}, {"length": 74.7278752408, "source": 134995139, "destination": 135091011, "path": [[6374.839276489297, -1732.1005814210366], [6818.839276490962, -1730.1005814225334]]}, {"length": 106.080904479, "source": 134995139, "destination": 134995137, "path": [[6374.839276489297, -1732.1005814210366], [6377.339276490091, -2209.1005814210976]]}, {"length": 13.1764446073, "source": 2289073348, "destination": 1433125530, "path": [[-8516.510723509895, 4814.449418578448], [-8517.110723509802, 4857.499418577049], [-8517.310723505034, 4873.69941857807]]}, {"length": 11.1604666194, "source": 2289073348, "destination": 134954243, "path": [[-8516.510723509895, 4814.449418578448], [-8582.810723510192, 4814.249418576111]]}, {"length": 79.2012355942, "source": 2289073348, "destination": 2289073341, "path": [[-8516.510723509895, 4814.449418578448], [-8120.760723507203, 4815.599418577676], [-8080.26072350998, 4863.149418579127]]}, {"length": 14.2561286029, "source": 2289073348, "destination": 2287972846, "path": [[-8516.510723509895, 4814.449418578448], [-8515.560723509452, 4750.349418578991]]}, {"length": 13.1007845992, "source": 2289073349, "destination": 2287972808, "path": [[-8646.860723509064, 4814.199418579079], [-8647.510723506002, 4866.2494185762735], [-8647.510723506002, 4873.099418578164]]}, {"length": 11.2425358954, "source": 2289073349, "destination": 2287972826, "path": [[-8646.860723509064, 4814.199418579079], [-8646.260723509158, 4763.6494185780975]]}, {"length": 10.7817564584, "source": 2289073349, "destination": 134954243, "path": [[-8646.860723509064, 4814.199418579079], [-8582.810723510192, 4814.249418576111]]}, {"length": 110.677608973, "source": 2289073349, "destination": 134954236, "path": [[-8646.860723509064, 4814.199418579079], [-9105.360723509648, 4813.649418576205], [-9304.31072350757, 4811.049418577795]]}, {"length": 109.30487833, "source": 2311060688, "destination": 4242275962, "path": [[-3508.1107235086506, 2610.9494185782014], [-3508.710723508557, 2390.5494185783027], [-3507.810723505145, 2119.4494185792223]]}, {"length": 12.6163874745, "source": 2311060688, "destination": 2311060652, "path": [[-3508.1107235086506, 2610.9494185782014], [-3506.760723510638, 2648.699418578815], [-3510.0607235065695, 2667.4994185782452]]}, {"length": 16.5242203399, "source": 2311060688, "destination": 135035725, "path": [[-3508.1107235086506, 2610.9494185782014], [-3409.9607235091867, 2609.4494185784356]]}, {"length": 65.5428612714, "source": 2442181843, "destination": 2331404992, "path": [[-6017.210723506139, 122.4494185763092], [-6012.660723506258, -172.25058142145144]]}, {"length": 84.9990700215, "source": 2442181843, "destination": 2442181956, "path": [[-6017.210723506139, 122.4494185763092], [-6019.260723505226, 388.9994185790613], [-6020.21072350567, 504.64941857697454]]}, {"length": 76.4601891, "source": 1808366820, "destination": 1808366831, "path": [[-4088.9607235072845, 2503.2994185778534], [-4093.610723508334, 2336.7994185790053], [-4106.610723511039, 2159.7994185782454]]}, {"length": 119.728264911, "source": 1942240487, "destination": 135010416, "path": [[4595.489276489672, -1193.20058142236], [4589.539276494747, -1128.5005814229976], [4563.089276494737, -1060.4505814235665], [4530.189276493957, -1005.2005814209508], [4526.989276492088, -953.0005814220033], [4543.8392764936, -901.400581422962], [4569.4892764913675, -870.4005814230698], [4619.2392764936585, -823.0505814239564], [4636.0892764951695, -770.8505814214561], [4638.339276489489, -685.1005814212385]]}, {"length": 81.2448504141, "source": 1942240487, "destination": 1942240505, "path": [[4595.489276489672, -1193.20058142236], [4567.789276492817, -1193.20058142236], [4502.939276491702, -1195.9505814225224], [4389.589276492245, -1193.0505814206072], [4292.689276489626, -1208.6505814217219], [4189.639276489743, -1247.1005814234104], [4171.939276488956, -1253.5005814235944], [4155.639276490319, -1250.750581423432], [4145.389276494881, -1244.7005814237855], [4136.489276490352, -1237.1505814208206]]}, {"length": 10.8326278507, "source": 1942240487, "destination": 135010418, "path": [[4595.489276489672, -1193.20058142236], [4594.289276489861, -1241.9005814230388]]}, {"length": 19.2886333381, "source": 1942240487, "destination": 2139783264, "path": [[4595.489276489672, -1193.20058142236], [4654.139276489388, -1200.5005814224035], [4660.739276488357, -1241.9505814236231]]}, {"length": 8.52042427624, "source": 1808366831, "destination": 2003096864, "path": [[-4106.610723511039, 2159.7994185782454], [-4133.060723511051, 2160.599418576936], [-4157.2107235055, 2160.799418579273]]}, {"length": 22.1297069613, "source": 1808366831, "destination": 135072436, "path": [[-4106.610723511039, 2159.7994185782454], [-4106.560723506902, 2135.0494185767843], [-4107.760723506715, 2060.299418577216]]}, {"length": 102.639188968, "source": 1808366831, "destination": 4242275962, "path": [[-4106.610723511039, 2159.7994185782454], [-4061.1107235051236, 2143.649418577809], [-3987.8107235082894, 2122.549418576369], [-3956.2607235055225, 2116.249418577354], [-3706.610723504866, 2118.349418577026], [-3507.810723505145, 2119.4494185792223]]}, {"length": 76.4601891, "source": 1808366831, "destination": 1808366820, "path": [[-4106.610723511039, 2159.7994185782454], [-4093.610723508334, 2336.7994185790053], [-4088.9607235072845, 2503.2994185778534]]}, {"length": 11.0084173158, "source": 1942240496, "destination": 3009784217, "path": [[6035.43927649497, -728.3505814221769], [6035.639276490201, -678.8505814228074]]}, {"length": 91.5874848465, "source": 1942240496, "destination": 1279884652, "path": [[6035.43927649497, -728.3505814221769], [5987.13927649186, -786.200581423202], [5947.2392764945425, -1008.2005814240347], [5930.839276494737, -1033.8505814218024], [5903.989276490051, -1060.2505814212293], [5844.139276490523, -1095.750581423971]]}, {"length": 208.872969383, "source": 1942240496, "destination": 1942224447, "path": [[6035.43927649497, -728.3505814221769], [6039.489276489007, -1169.900581423633], [6041.139276490526, -1180.7505814225294], [6034.089276489851, -1191.2005814238569], [6023.689276489108, -1198.00058142161], [6004.589276493278, -1200.3505814206505], [5937.539276494874, -1200.3505814206505], [5898.639276495032, -1204.400581421794], [5866.78927648876, -1210.1505814214875], [5838.289276489661, -1227.7505814211054], [5806.439276490493, -1257.8505814211383], [5791.33927649167, -1280.5005814229276], [5784.639276491533, -1309.95058142247], [5784.489276493332, -1332.3505814213377], [5783.639276494057, -1444.6005814221508], [5783.639276494057, -1469.0005814230744], [5776.589276493382, -1491.6005814207267], [5765.889276489133, -1507.850581422332], [5744.739276494215, -1523.800581423984]]}, {"length": 46.5006268204, "source": 1942240501, "destination": 2139783264, "path": [[4869.939276488822, -1293.3005814232956], [4664.039276491394, -1295.1505814235986], [4660.739276488357, -1241.9505814236231]]}, {"length": 72.6590434751, "source": 1942240501, "destination": 1942240522, "path": [[4869.939276488822, -1293.3005814232956], [4938.989276489281, -1293.2505814227113], [5247.189276488484, -1293.0005814233425], [5277.28927649207, -1283.8005814224118], [5292.739276491431, -1271.9505814224874]]}, {"length": 29.1221304578, "source": 1942240501, "destination": 135010407, "path": [[4869.939276488822, -1293.3005814232956], [4870.589276492865, -1424.2505814223705]]}, {"length": 10.7942880458, "source": 1942240501, "destination": 2573122335, "path": [[4869.939276488822, -1293.3005814232956], [4867.4392764951335, -1244.8005814214014]]}, {"length": 45.0217211237, "source": 2568600105, "destination": 2568600035, "path": [[-80.7607235060459, -2369.80058142322], [-348.26072350568893, -2371.50058142177]]}, {"length": 46.8226132211, "source": 2568600105, "destination": 2568599493, "path": [[-80.7607235060459, -2369.80058142322], [197.43927649074067, -2368.0505814205335]]}, {"length": 8.00615889839, "source": 2568600105, "destination": 2568600103, "path": [[-80.7607235060459, -2369.80058142322], [-81.41072351008916, -2405.800581421147]]}, {"length": 63.3145995183, "source": 1942240504, "destination": 3009796634, "path": [[5478.589276492585, -1147.4505814206282], [5457.289276492361, -1129.0005814217352], [5427.939276493988, -1106.9505814234049], [5423.939276489875, -1099.5505814221929], [5423.639276493475, -1081.0005814221313], [5427.8392764928185, -1048.2505814231047], [5427.43927649525, -1027.2505814228339], [5416.839276492169, -1014.7505814224189], [5383.93927649139, -997.2005814233853], [5375.489276488565, -986.2505814233202], [5375.039276493964, -960.9005814219529], [5424.9892764914875, -907.9005814207619]]}, {"length": 68.4606352784, "source": 1942240504, "destination": 3009796634, "path": [[5478.589276492585, -1147.4505814206282], [5498.339276492459, -1145.2505814233405], [5516.88927649252, -1134.6505814238128], [5520.339276493758, -1123.850581421948], [5521.139276488895, -1113.500581421789], [5514.339276494695, -1102.9005814222614], [5505.089276489627, -1094.7005814223587], [5495.439276494097, -1085.3005814226435], [5489.4392764950335, -1077.400581422694], [5488.239276495222, -1069.2005814227912], [5488.239276495222, -1057.6505814228199], [5491.839276494658, -1050.3505814227765], [5497.489276493184, -1043.1005814233174], [5514.339276494695, -1027.6005814233713], [5520.339276493758, -1021.8505814236778], [5521.939276491139, -1016.9505814232593], [5522.739276493383, -1007.250581423591], [5522.739276493383, -998.7505814237352], [5519.539276491514, -985.4005814240452], [5510.689276491121, -972.6505814207087], [5502.689276490002, -962.9505814210404], [5497.489276493184, -959.0005814210656], [5493.43927649204, -951.7005814210222], [5489.839276492603, -943.8005814210726], [5483.039276491298, -934.1005814214043], [5465.789276492216, -928.3005814211265], [5424.9892764914875, -907.9005814207619]]}, {"length": 14.7143058129, "source": 1942240504, "destination": 1429422450, "path": [[5478.589276492585, -1147.4505814206282], [5469.83927649336, -1164.0505814227708], [5457.339276489392, -1183.250581423323], [5427.58927649345, -1197.9505814210256]]}, {"length": 81.2448504141, "source": 1942240505, "destination": 1942240487, "path": [[4136.489276490352, -1237.1505814208206], [4145.389276494881, -1244.7005814237855], [4155.639276490319, -1250.750581423432], [4171.939276488956, -1253.5005814235944], [4189.639276489743, -1247.1005814234104], [4292.689276489626, -1208.6505814217219], [4389.589276492245, -1193.0505814206072], [4502.939276491702, -1195.9505814225224], [4567.789276492817, -1193.20058142236], [4595.489276489672, -1193.20058142236]]}, {"length": 10.1953240017, "source": 1942240505, "destination": 2139783260, "path": [[4136.489276490352, -1237.1505814208206], [4121.139276492158, -1243.050581422267], [4083.03927649456, -1258.700581423966]]}, {"length": 125.982283199, "source": 1942240505, "destination": 2080617391, "path": [[4136.489276490352, -1237.1505814208206], [4123.989276493489, -1220.350581423446], [4110.089276494477, -1197.3505814211194], [4084.58927649491, -1152.2505814234307], [4065.5892764931423, -1114.7005814216016], [4042.8892764907687, -1062.5505814232383], [4026.4392764939316, -1009.9505814231691], [4012.239276491414, -950.4505814206254], [4006.289276489383, -898.9505814227527], [4003.1892764886834, -850.8505814219802], [4002.589276488777, -764.5505814224407], [4000.2392764932893, -745.1505814231041], [4000.2392764932893, -687.5505814214478]]}, {"length": 26.9709967055, "source": 4847713530, "destination": 2960628168, "path": [[-2910.4107235085053, -3820.200581422739], [-2932.610723505036, -3813.0005814238643], [-2966.6107235115646, -3813.1005814214805], [-2999.460723508207, -3819.8505814222017], [-3028.960723504781, -3832.7505814237384], [-3053.0107235051673, -3850.9505814232625]]}, {"length": 3.34167326807, "source": 4847713530, "destination": 4847713531, "path": [[-2910.4107235085053, -3820.200581422739], [-2892.060723510781, -3825.9505814224326]]}, {"length": 84.4649865895, "source": 4847713531, "destination": 2960628137, "path": [[-2892.060723510781, -3825.9505814224326], [-2830.7107235079343, -3823.150581421686], [-2804.1607235067545, -3822.8005814211483], [-2770.010723509131, -3816.350581423933], [-2747.2607235097257, -3809.550581422627], [-2719.7607235081023, -3796.6005814205064], [-2699.810723505891, -3780.450581423622], [-2683.2107235108538, -3763.2505814215733], [-2670.9107235092233, -3740.650581423921], [-2663.810723511517, -3714.800581423816], [-2657.6107235101176, -3684.6505814231987], [-2652.910723504931, -3633.0005814235733], [-2633.6607235109, -3567.6005814231357]]}, {"length": 3.34167326807, "source": 4847713531, "destination": 4847713530, "path": [[-2892.060723510781, -3825.9505814224326], [-2910.4107235085053, -3820.200581422739]]}, {"length": 17.5521510043, "source": 4847713531, "destination": 2960628174, "path": [[-2892.060723510781, -3825.9505814224326], [-2866.7107235094136, -3834.3005814205353], [-2840.76072350814, -3855.6505814213438], [-2824.0607235048287, -3881.7505814208175]]}, {"length": 13.3768032719, "source": 134954236, "destination": 2287972840, "path": [[-9304.31072350757, 4811.049418577795], [-9303.860723505863, 4750.899418578314]]}, {"length": 13.3996914831, "source": 134954236, "destination": 2292321986, "path": [[-9304.31072350757, 4811.049418577795], [-9383.910723506971, 4810.999418577211]]}, {"length": 110.677608973, "source": 134954236, "destination": 2289073349, "path": [[-9304.31072350757, 4811.049418577795], [-9105.360723509648, 4813.649418576205], [-8646.860723509064, 4814.199418579079]]}, {"length": 91.069704907, "source": 134979311, "destination": 135022841, "path": [[9657.739276491384, -3183.1005814240143], [9116.639276491867, -3187.400581420974]]}, {"length": 11.4977743722, "source": 134979311, "destination": 134979305, "path": [[9657.739276491384, -3183.1005814240143], [9657.639276490216, -3131.4005814238044]]}, {"length": 98.926170136, "source": 1942240514, "destination": 1942240578, "path": [[5559.139276492431, -815.5005814209915], [5566.039276494905, -809.5505814225135], [5565.389276490861, -800.4505814227514], [5557.689276493249, -788.9505814233644], [5545.989276491526, -784.4505814205149], [5534.23927649277, -782.8505814231335], [5513.93927649002, -787.6505814223833], [5504.089276492152, -796.4505814221923], [5500.239276493347, -802.8505814223763], [5498.589276491828, -812.0005814227227], [5498.789276494164, -823.8505814226471], [5502.73927649414, -831.1005814221062], [5509.439276494277, -839.5005814207934], [5520.539276488989, -846.6505814226366], [5534.1892764886325, -851.7005814212553], [5546.1392764897255, -854.1005814208802], [5562.439276488362, -855.4005814218613], [5582.489276491742, -852.9005814210677], [5601.139276492972, -845.0505814217024], [5615.88927649126, -832.5505814212875], [5624.439276495252, -817.0505814213413], [5626.839276494877, -796.2505814234078], [5623.039276493102, -782.1505814220586], [5612.189276490653, -766.1505814233749], [5585.9892764900105, -749.800581420601], [5551.039276490144, -736.8005814214484], [5472.289276490017, -748.6505814213729], [5452.089276488437, -768.1505814218781], [5442.489276489937, -785.9005814232489]]}, {"length": 12.9473008754, "source": 1942240514, "destination": 1942240514, "path": [[5559.139276492431, -815.5005814209915], [5551.239276492481, -819.7005814238878], [5541.989276494519, -818.000581421785], [5536.239276494825, -812.3005814226758], [5536.939276488794, -807.2505814205044], [5544.039276493606, -801.7005814231482], [5553.689276489138, -802.1505814213015], [5561.339276489718, -806.3505814206451], [5559.139276492431, -815.5005814209915]]}, {"length": 12.9473008754, "source": 1942240514, "destination": 1942240514, "path": [[5559.139276492431, -815.5005814209915], [5561.339276489718, -806.3505814206451], [5553.689276489138, -802.1505814213015], [5544.039276493606, -801.7005814231482], [5536.939276488794, -807.2505814205044], [5536.239276494825, -812.3005814226758], [5541.989276494519, -818.000581421785], [5551.239276492481, -819.7005814238878], [5559.139276492431, -815.5005814209915]]}, {"length": 12.687295601, "source": 134954243, "destination": 2287972832, "path": [[-8582.810723510192, 4814.249418576111], [-8582.560723510824, 4757.199418577329]]}, {"length": 13.1765455026, "source": 134954243, "destination": 1433125531, "path": [[-8582.810723510192, 4814.249418576111], [-8582.510723506686, 4873.499418579286]]}, {"length": 11.1604666194, "source": 134954243, "destination": 2289073348, "path": [[-8582.810723510192, 4814.249418576111], [-8516.510723509895, 4814.449418578448]]}, {"length": 10.7817564584, "source": 134954243, "destination": 2289073349, "path": [[-8582.810723510192, 4814.249418576111], [-8646.860723509064, 4814.199418579079]]}, {"length": 44.0827939768, "source": 1942240522, "destination": 1429422450, "path": [[5292.739276491431, -1271.9505814224874], [5299.089276491031, -1248.600581423176], [5297.389276492481, -1228.4505814221802], [5303.089276495143, -1198.3505814221473], [5315.339276492637, -1181.7505814235574], [5334.189276489098, -1168.750581420852], [5363.039276488735, -1165.1005814208304], [5390.389276492158, -1167.900581421577], [5416.189276495232, -1181.250581421267], [5427.58927649345, -1197.9505814210256]]}, {"length": 17.9581103956, "source": 1942240522, "destination": 1429422541, "path": [[5292.739276491431, -1271.9505814224874], [5399.439276494888, -1272.2005814218562]]}, {"length": 72.6590434751, "source": 1942240522, "destination": 1942240501, "path": [[5292.739276491431, -1271.9505814224874], [5277.28927649207, -1283.8005814224118], [5247.189276488484, -1293.0005814233425], [4938.989276489281, -1293.2505814227113], [4869.939276488822, -1293.3005814232956]]}, {"length": 85.3817947046, "source": 134954251, "destination": 1965661606, "path": [[-7634.01072350689, 4816.599418578704], [-7126.810723505628, 4819.049418578914]]}, {"length": 119.835362102, "source": 135027982, "destination": 134968184, "path": [[-3408.410723508837, 420.94941857939716], [-3408.5107235100054, 473.6494185770823], [-3409.660723505681, 959.7994185774894]]}, {"length": 125.419407355, "source": 135027982, "destination": 135016129, "path": [[-3408.410723508837, 420.94941857939716], [-2663.2607235086425, 422.34941857799413]]}, {"length": 114.401489333, "source": 134954257, "destination": 134954259, "path": [[-7079.210723510698, 4819.749418576435], [-6399.610723505589, 4820.899418579216]]}, {"length": 60.9242911478, "source": 134954257, "destination": 1433125588, "path": [[-7079.210723510698, 4819.749418576435], [-7077.610723506212, 4545.799418576024]]}, {"length": 60.6461331447, "source": 134954257, "destination": 1433125515, "path": [[-7079.210723510698, 4819.749418576435], [-7080.510723511679, 5092.449418576451]]}, {"length": 8.01403510187, "source": 134954257, "destination": 1965661606, "path": [[-7079.210723510698, 4819.749418576435], [-7126.810723505628, 4819.049418578914]]}, {"length": 7.6291637227, "source": 134954259, "destination": 134954264, "path": [[-6399.610723505589, 4820.899418579216], [-6376.560723509783, 4821.099418578001], [-6354.310723509116, 4821.099418578001]]}, {"length": 114.401489333, "source": 134954259, "destination": 134954257, "path": [[-6399.610723505589, 4820.899418579216], [-7079.210723510698, 4819.749418576435]]}, {"length": 60.9161575301, "source": 134954259, "destination": 1433125587, "path": [[-6399.610723505589, 4820.899418579216], [-6399.260723505051, 4697.799418575954], [-6396.9107235095635, 4587.299418577828], [-6396.810723508395, 4546.999418579389]]}, {"length": 60.7459924248, "source": 134954259, "destination": 1433125516, "path": [[-6399.610723505589, 4820.899418579216], [-6398.910723511619, 5094.049418577384]]}, {"length": 80.0637421512, "source": 2091810071, "destination": 2289073095, "path": [[-8045.560723509481, 5641.799418576455], [-8259.610723506228, 5638.3494185787695], [-8404.310723506114, 5637.749418578864], [-8521.110723506808, 5636.899418576036]]}, {"length": 7.6291637227, "source": 134954264, "destination": 134954259, "path": [[-6354.310723509116, 4821.099418578001], [-6376.560723509783, 4821.099418578001], [-6399.610723505589, 4820.899418579216]]}, {"length": 61.7434389103, "source": 134954264, "destination": 135053909, "path": [[-6354.310723509116, 4821.099418578001], [-6348.410723511222, 4543.499418577568]]}, {"length": 122.557354616, "source": 134954264, "destination": 134985550, "path": [[-6354.310723509116, 4821.099418578001], [-6355.910723506497, 5324.949418579195], [-6348.460723508253, 5371.849418576602]]}, {"length": 108.140516339, "source": 134954264, "destination": 2286663645, "path": [[-6354.310723509116, 4821.099418578001], [-6188.760723510712, 4821.599418576739], [-6013.71072350787, 4822.499418576598], [-5711.910723505298, 4823.499418577626]]}, {"length": 13.1881683495, "source": 134954265, "destination": 2286663632, "path": [[-5652.660723505676, 4823.749418576995], [-5653.260723505582, 4883.049418577201]]}, {"length": 13.6996795565, "source": 134954265, "destination": 2069376811, "path": [[-5652.660723505676, 4823.749418576995], [-5652.260723508107, 4762.149418578332]]}, {"length": 9.97409559193, "source": 134954265, "destination": 2286663645, "path": [[-5652.660723505676, 4823.749418576995], [-5711.910723505298, 4823.499418577626]]}, {"length": 12.8766186959, "source": 134954268, "destination": 2069376903, "path": [[-4174.210723505212, 4828.499418579213], [-4174.560723505749, 4886.39941857727]]}, {"length": 13.0210442972, "source": 134954268, "destination": 2069376925, "path": [[-4174.210723505212, 4828.499418579213], [-4173.810723507642, 4769.949418577113]]}, {"length": 12.6424627703, "source": 134954268, "destination": 2069376797, "path": [[-4174.210723505212, 4828.499418579213], [-4099.110723508658, 4828.799418579166]]}, {"length": 343.17341296, "source": 2069036317, "destination": 4224850364, "path": [[9041.039276489471, 5585.799418579285], [8803.389276494045, 5371.6994185784015], [7726.3392764947985, 4406.449418578262]]}, {"length": 66.0515129446, "source": 2069036317, "destination": 134985708, "path": [[9041.039276489471, 5585.799418579285], [8882.93927648931, 5468.849418576838], [8843.789276490099, 5441.449418576383], [8822.88927649455, 5431.449418576762], [8796.089276494002, 5423.0994185786585], [8775.639276493053, 5420.1494185761585], [8732.239276490362, 5421.849418578262]]}, {"length": 12.8096009467, "source": 134954271, "destination": 2309494559, "path": [[-3425.6607235079173, 4831.249418579375], [-3426.0607235054863, 4888.849418577479]]}, {"length": 68.5220115814, "source": 134954271, "destination": 2069036749, "path": [[-3425.6607235079173, 4831.249418579375], [-3832.7107235076596, 4829.749418576057]]}, {"length": 111.010497698, "source": 134954271, "destination": 2316883631, "path": [[-3425.6607235079173, 4831.249418579375], [-2766.2107235073563, 4833.649418579]]}, {"length": 60.8911450542, "source": 134954274, "destination": 2069036973, "path": [[-2691.310723506035, 4833.899418578369], [-2689.5607235104535, 4560.099418576157]]}, {"length": 56.0061119553, "source": 134954274, "destination": 2357086470, "path": [[-2691.310723506035, 4833.899418578369], [-2358.6107235047393, 4835.149418578766]]}, {"length": 12.6089122326, "source": 134954274, "destination": 2316883631, "path": [[-2691.310723506035, 4833.899418578369], [-2766.2107235073563, 4833.649418579]]}, {"length": 11.4813013457, "source": 2069036323, "destination": 2069037048, "path": [[1013.9892764939873, 5125.449418578399], [945.8392764898349, 5127.499418577486]]}, {"length": 61.5926128754, "source": 2069036323, "destination": 2068853459, "path": [[1013.9892764939873, 5125.449418578399], [1016.6892764900126, 4848.499418578456]]}, {"length": 238.723016074, "source": 2069036323, "destination": 2069037027, "path": [[1013.9892764939873, 5125.449418578399], [1718.389276490484, 5129.499418575989], [2432.08927648908, 5129.699418578326]]}, {"length": 87.0432828065, "source": 1808366884, "destination": 135072436, "path": [[-3595.81072351034, 2016.6494185787087], [-3739.060723511045, 2017.1994185780306], [-3791.9607235110675, 2019.2994185777025], [-3855.1107235065274, 2024.199418578121], [-3921.9107235055617, 2032.6494185773925], [-3984.1107235076834, 2044.5994185784855], [-4017.5107235072005, 2050.899418577501], [-4055.5607235077673, 2055.149418577429], [-4107.760723506715, 2060.299418577216]]}, {"length": 61.0468785551, "source": 134954277, "destination": 2069036722, "path": [[-1954.410723506328, 4836.599418577947], [-1952.6607235107463, 4562.099418578214]]}, {"length": 61.0801614714, "source": 134954277, "destination": 2069036787, "path": [[-1954.410723506328, 4836.599418577947], [-1956.160723509015, 5111.249418579433]]}, {"length": 112.820206602, "source": 134954277, "destination": 2354509538, "path": [[-1954.410723506328, 4836.599418577947], [-1284.2107235115918, 4839.049418578156]]}, {"length": 68.0422845829, "source": 134954277, "destination": 2357086470, "path": [[-1954.410723506328, 4836.599418577947], [-2358.6107235047393, 4835.149418578766]]}, {"length": 60.9801843264, "source": 134954280, "destination": 2069036849, "path": [[-1210.0107235113455, 4839.299418577525], [-1208.2607235086584, 4565.099418577745]]}, {"length": 12.4907756948, "source": 134954280, "destination": 2354509538, "path": [[-1210.0107235113455, 4839.299418577525], [-1284.2107235115918, 4839.049418578156]]}, {"length": 60.8689389191, "source": 134954280, "destination": 2069036831, "path": [[-1210.0107235113455, 4839.299418577525], [-1211.7607235069272, 5112.999418578567]]}, {"length": 121.279262053, "source": 134954280, "destination": 134954289, "path": [[-1210.0107235113455, 4839.299418577525], [-489.56072350847535, 4841.949418576519]]}, {"length": 60.4606046438, "source": 2069036329, "destination": 2069036672, "path": [[-104.46072350589475, 3471.2494185775713], [-108.51072350703816, 3743.0994185783106]]}, {"length": 58.1995237786, "source": 2069036329, "destination": 2069036653, "path": [[-104.46072350589475, 3471.2494185775713], [-104.51072351003177, 3209.549418578206]]}, {"length": 63.3598533143, "source": 2069036329, "destination": 2069036654, "path": [[-104.46072350589475, 3471.2494185775713], [-480.8607235062823, 3469.8994185760057]]}, {"length": 60.0699666302, "source": 2069036329, "destination": 2069036655, "path": [[-104.46072350589475, 3471.2494185775713], [-74.31072350527756, 3459.999418577553], [157.03927649468596, 3464.699418579187], [173.1392764909856, 3458.599418578956], [246.93927649366287, 3457.6994185790963]]}, {"length": 13.829725613, "source": 2069036333, "destination": 2069393854, "path": [[-5513.61072351142, 5342.049418576522], [-5534.060723505263, 5341.799418577153], [-5534.060723505263, 5388.499418579329]]}, {"length": 109.557627523, "source": 134959945, "destination": 2311060344, "path": [[-5648.060723508763, 3161.599418579186], [-4997.210723509226, 3164.2494185781798]]}, {"length": 240.789096829, "source": 134959945, "destination": 134960025, "path": [[-5648.060723508763, 3161.599418579186], [-6072.060723511186, 3159.0494185778084], [-6101.710723505959, 3159.2494185765927], [-6117.810723509365, 3159.3494185777618], [-6446.860723507087, 3160.5994185781583], [-6638.81072350847, 3162.4994185790456], [-6984.160723504829, 3161.499418578018], [-7078.510723509624, 3161.1994185780645]]}, {"length": 247.433201416, "source": 134959945, "destination": 135031619, "path": [[-5648.060723508763, 3161.599418579186], [-5651.660723508201, 3637.1994185770973], [-5650.3607235072195, 4274.199418578206]]}, {"length": 9.85226722934, "source": 134959945, "destination": 3758384262, "path": [[-5648.060723508763, 3161.599418579186], [-5650.960723507125, 3117.3494185772197]]}, {"length": 58.7132475896, "source": 1667939632, "destination": 135064770, "path": [[215.2392764926958, -2950.6505814218544], [212.18927648902763, -3214.6505814232287]]}, {"length": 9.41920250225, "source": 1667939632, "destination": 2568600110, "path": [[215.2392764926958, -2950.6505814218544], [214.7392764939582, -2908.3005814207754]]}, {"length": 121.279262053, "source": 134954289, "destination": 134954280, "path": [[-489.56072350847535, 4841.949418576519], [-1210.0107235113455, 4839.299418577525]]}, {"length": 13.0210442972, "source": 134954289, "destination": 2358476449, "path": [[-489.56072350847535, 4841.949418576519], [-489.2107235079379, 4783.399418577972]]}, {"length": 122.491248307, "source": 134954289, "destination": 134954292, "path": [[-489.56072350847535, 4841.949418576519], [238.0892764932696, 4844.599418579065]]}, {"length": 12.8096009467, "source": 134954289, "destination": 2358476430, "path": [[-489.56072350847535, 4841.949418576519], [-489.96072350604436, 4899.549418578175]]}, {"length": 57.151899737, "source": 2069036339, "destination": 4253708820, "path": [[5277.28927649207, 5694.449418577107], [5278.439276494851, 5510.84941857738], [5375.389276494502, 5510.799418576795]]}, {"length": 16.4306878139, "source": 2069036339, "destination": 4253708829, "path": [[5277.28927649207, 5694.449418577107], [5374.889276488659, 5695.149418578183]]}, {"length": 90.112074392, "source": 2069036339, "destination": 4253708829, "path": [[5277.28927649207, 5694.449418577107], [5276.339276491626, 5859.599418577944], [5374.33927649289, 5860.99941857654], [5374.889276488659, 5695.149418578183]]}, {"length": 122.491248307, "source": 134954292, "destination": 134954289, "path": [[238.0892764932696, 4844.599418579065], [-489.56072350847535, 4841.949418576519]]}, {"length": 62.0030858365, "source": 134954292, "destination": 2069036970, "path": [[238.0892764932696, 4844.599418579065], [236.3392764905825, 5123.399418579311]]}, {"length": 119.528497135, "source": 134954292, "destination": 134954298, "path": [[238.0892764932696, 4844.599418579065], [948.1392764882912, 4847.199418577475]]}, {"length": 60.9800365284, "source": 134954292, "destination": 2069037023, "path": [[238.0892764932696, 4844.599418579065], [239.83927648885128, 4570.399418579285]]}, {"length": 204.714738864, "source": 135036213, "destination": 2080633147, "path": [[-12959.560723508901, -10538.850581422565], [-11779.160723506266, -10548.100581420527], [-11742.960723509554, -10548.400581424034]]}, {"length": 12.9551215625, "source": 135036213, "destination": 134970189, "path": [[-12959.560723508901, -10538.850581422565], [-12960.160723508807, -10597.10058142116]]}, {"length": 62.3372390102, "source": 134954298, "destination": 2069037048, "path": [[948.1392764882912, 4847.199418577475], [945.8392764898349, 5127.499418577486]]}, {"length": 11.5423683639, "source": 134954298, "destination": 2068853459, "path": [[948.1392764882912, 4847.199418577475], [1016.6892764900126, 4848.499418578456]]}, {"length": 119.528497135, "source": 134954298, "destination": 134954292, "path": [[948.1392764882912, 4847.199418577475], [238.0892764932696, 4844.599418579065]]}, {"length": 12.832798487, "source": 2069036347, "destination": 2309494191, "path": [[-3829.9607235074973, 5377.799418578633], [-3830.910723507941, 5435.499418577905]]}, {"length": 12.5537526782, "source": 2069036347, "destination": 2309494214, "path": [[-3829.9607235074973, 5377.799418578633], [-3830.260723511003, 5321.349418576205]]}, {"length": 23.8792336125, "source": 2069036347, "destination": 2309494198, "path": [[-3829.9607235074973, 5377.799418578633], [-3688.1107235089416, 5378.349418577955]]}, {"length": 46.167130878, "source": 2069036347, "destination": 2068973823, "path": [[-3829.9607235074973, 5377.799418578633], [-4104.2107235114145, 5377.399418577511]]}, {"length": 15.0453941123, "source": 1279884604, "destination": 134959986, "path": [[7153.889276494851, 3189.699418577163], [7064.639276492812, 3193.349418577185]]}, {"length": 73.5305534951, "source": 1279884604, "destination": 134959997, "path": [[7153.889276494851, 3189.699418577163], [7305.539276494244, 3190.849418576391], [7515.089276495246, 3192.8994185790316], [7590.689276490537, 3193.499418578938]]}, {"length": 10.4428975284, "source": 1279884604, "destination": 1962191318, "path": [[7153.889276494851, 3189.699418577163], [7187.639276494906, 3229.099418579295]]}, {"length": 13.0002627056, "source": 1279884604, "destination": 4224850405, "path": [[7153.889276494851, 3189.699418577163], [7107.789276489029, 3142.799418576203]]}, {"length": 122.562378174, "source": 134954304, "destination": 134954306, "path": [[2436.4392764937293, 4849.349418577731], [3164.4892764930432, 4854.3994185763495]]}, {"length": 62.351406269, "source": 134954304, "destination": 2069037027, "path": [[2436.4392764937293, 4849.349418577731], [2432.08927648908, 5129.699418578326]]}, {"length": 59.6144624902, "source": 134954304, "destination": 2069036700, "path": [[2436.4392764937293, 4849.349418577731], [2439.8392764908294, 4581.299418578766]]}, {"length": 238.995541908, "source": 134954304, "destination": 2068853459, "path": [[2436.4392764937293, 4849.349418577731], [1718.9892764903902, 4849.299418577147], [1016.6892764900126, 4848.499418578456]]}, {"length": 125.30574396, "source": 2069036353, "destination": 2069036840, "path": [[-1945.7107235112403, 3464.549418577434], [-1201.3107235091525, 3467.249418577012]]}, {"length": 58.2001432125, "source": 2069036353, "destination": 134980203, "path": [[-1945.7107235112403, 3464.549418577434], [-1944.0107235055848, 3202.8494185780687]]}, {"length": 124.043305461, "source": 2069036353, "destination": 2069036811, "path": [[-1945.7107235112403, 3464.549418577434], [-2682.6107235109475, 3461.849418577856]]}, {"length": 60.4574741365, "source": 2069036353, "destination": 135019159, "path": [[-1945.7107235112403, 3464.549418577434], [-1947.4107235097904, 3736.3994185781735]]}, {"length": 122.562378174, "source": 134954306, "destination": 134954304, "path": [[3164.4892764930432, 4854.3994185763495], [2436.4392764937293, 4849.349418577731]]}, {"length": 61.1807118105, "source": 134954306, "destination": 2069036496, "path": [[3164.4892764930432, 4854.3994185763495], [3162.2392764916185, 5129.499418575989]]}, {"length": 61.180564497, "source": 134954306, "destination": 2069120250, "path": [[3164.4892764930432, 4854.3994185763495], [3166.489276495099, 4579.29941857671]]}, {"length": 122.019399584, "source": 134954306, "destination": 134954309, "path": [[3164.4892764930432, 4854.3994185763495], [3889.339276490489, 4856.399418578405]]}, {"length": 7.67393111423, "source": 2442181955, "destination": 2495519674, "path": [[-6148.46072350872, 502.4994185767184], [-6102.910723505773, 504.0494185770683]]}, {"length": 13.9202668676, "source": 2442181956, "destination": 2495519674, "path": [[-6020.21072350567, 504.64941857697454], [-6102.910723505773, 504.0494185770683]]}, {"length": 84.9990700215, "source": 2442181956, "destination": 2442181843, "path": [[-6020.21072350567, 504.64941857697454], [-6019.260723505226, 388.9994185790613], [-6017.210723506139, 122.4494185763092]]}, {"length": 149.597945288, "source": 2442181956, "destination": 134968171, "path": [[-6020.21072350567, 504.64941857697454], [-6021.21072351025, 707.9494185759927], [-6019.060723509994, 765.999418579355], [-6013.56072350967, 800.3494185793159], [-6008.460723506914, 819.5994185768996], [-5996.06072351122, 844.9494185782669], [-5977.66072350936, 866.6494185760598], [-5957.160723511379, 884.9994185773369], [-5929.410723510387, 902.6994185781234], [-5894.61072350872, 918.399418576854], [-5860.460723511096, 929.9494185768253], [-5823.460723505036, 937.849418576775], [-5784.7107235104995, 940.8494185763061], [-5606.060723508222, 942.9994185765622]]}, {"length": 122.019399584, "source": 134954309, "destination": 134954306, "path": [[3889.339276490489, 4856.399418578405], [3164.4892764930432, 4854.3994185763495]]}, {"length": 60.7356800022, "source": 134954309, "destination": 2069036476, "path": [[3889.339276490489, 4856.399418578405], [3887.339276488433, 5129.499418575989]]}, {"length": 121.447021152, "source": 134954309, "destination": 134954311, "path": [[3889.339276490489, 4856.399418578405], [4610.789276490834, 4858.399418576909]]}, {"length": 105.085409026, "source": 1279884614, "destination": 1279884627, "path": [[5891.78927648959, -294.10058142076423], [5878.539276494621, -385.1005814219377], [5837.589276488587, -518.8005814211749], [5828.289276493592, -620.550581423629], [5832.5892764941045, -762.2505814239844]]}, {"length": 55.8888455371, "source": 1279884614, "destination": 1393207236, "path": [[5891.78927648959, -294.10058142076423], [5887.039276494477, -189.55058142111625], [5862.839276488785, -44.00058142195462]]}, {"length": 45.5395123387, "source": 1279884614, "destination": 1942302111, "path": [[5891.78927648959, -294.10058142076423], [5934.8392764917435, -360.95058142393555], [5966.039276493973, -403.25058142087755], [6033.439276492913, -467.4005814209181]]}, {"length": 61.4252054002, "source": 134954311, "destination": 2069036953, "path": [[4610.789276490834, 4858.399418576909], [4608.689276494715, 5134.599418578745]]}, {"length": 56.4015548686, "source": 134954311, "destination": 134954315, "path": [[4610.789276490834, 4858.399418576909], [4945.839276494724, 4859.399418577937]]}, {"length": 121.447021152, "source": 134954311, "destination": 134954309, "path": [[4610.789276490834, 4858.399418576909], [3889.339276490489, 4856.399418578405]]}, {"length": 59.7796286785, "source": 134954315, "destination": 2069407058, "path": [[4945.839276494724, 4859.399418577937], [4948.039276492011, 4590.5994185773125]]}, {"length": 56.4015548686, "source": 134954315, "destination": 134954311, "path": [[4945.839276494724, 4859.399418577937], [4610.789276490834, 4858.399418576909]]}, {"length": 94.547778732, "source": 134954315, "destination": 134954318, "path": [[4945.839276494724, 4859.399418577937], [5507.489276489252, 4861.899418578731]]}, {"length": 61.8579926698, "source": 134954315, "destination": 2069036783, "path": [[4945.839276494724, 4859.399418577937], [4945.03927649248, 5137.5494185776915]]}, {"length": 62.2257401791, "source": 134954318, "destination": 2069036516, "path": [[5507.489276489252, 4861.899418578731], [5505.439276490165, 5141.699418576451]]}, {"length": 157.417941972, "source": 134954318, "destination": 2069036875, "path": [[5507.489276489252, 4861.899418578731], [6027.539276495019, 4863.499418576112], [6046.139276492113, 4864.599418578308], [6063.639276490562, 4867.999418578961], [6079.289276492262, 4873.499418579286], [6087.239276489243, 4881.449418576267], [6092.339276491998, 4891.19941857652], [6096.239276494942, 4903.199418578197], [6097.039276490079, 4917.349418576578], [6095.789276493235, 5143.699418578507]]}, {"length": 94.547778732, "source": 134954318, "destination": 134954315, "path": [[5507.489276489252, 4861.899418578731], [4945.839276494724, 4859.399418577937]]}, {"length": 60.3686343235, "source": 134954318, "destination": 2069120388, "path": [[5507.489276489252, 4861.899418578731], [5509.289276488971, 4590.449418579112]]}, {"length": 125.426557299, "source": 2086776717, "destination": 2086776768, "path": [[-3406.9607235096555, 190.29941857695576], [-2661.760723505324, 189.89941857938675]]}, {"length": 30.73460387, "source": 2086776717, "destination": 3146411796, "path": [[-3406.9607235096555, 190.29941857695576], [-3407.860723505962, 328.4994185790424]]}, {"length": 57.5465004303, "source": 1916976464, "destination": 135099952, "path": [[-136.56072351153625, -6092.80058142403], [176.33927649285397, -6091.600581420664], [205.33927649069028, -6090.100581420898]]}, {"length": 57.3324341406, "source": 1916976464, "destination": 1916976466, "path": [[-136.56072351153625, -6092.80058142403], [-137.5607235090115, -6350.600581424004]]}, {"length": 8.62502899237, "source": 1916976464, "destination": 1483977772, "path": [[-136.56072351153625, -6092.80058142403], [-187.81072351004013, -6093.000581422813]]}, {"length": 54.0409471577, "source": 1916976465, "destination": 135094537, "path": [[-1122.6607235101937, -6347.60058142092], [-1122.1607235114561, -6590.600581422023]]}, {"length": 165.773412434, "source": 1916976465, "destination": 1916976466, "path": [[-1122.6607235101937, -6347.60058142092], [-137.5607235090115, -6350.600581424004]]}, {"length": 252.549876561, "source": 1916976465, "destination": 1916976467, "path": [[-1122.6607235101937, -6347.60058142092], [-2623.410723508357, -6354.4005814222255]]}, {"length": 55.8200965697, "source": 1916976465, "destination": 135094533, "path": [[-1122.6607235101937, -6347.60058142092], [-1123.1607235089314, -6096.600581422252]]}, {"length": 121.737507669, "source": 2069036370, "destination": 2069036648, "path": [[2430.2892764893613, 6256.349418578111], [3153.439276488257, 6256.349418578111]]}, {"length": 64.9266083022, "source": 2069036370, "destination": 134994393, "path": [[2430.2892764893613, 6256.349418578111], [2430.53927648873, 6029.149418576907], [2430.6392764898987, 5964.39941857696]]}, {"length": 239.460074016, "source": 2069036370, "destination": 2069036668, "path": [[2430.2892764893613, 6256.349418578111], [1711.039276493409, 6250.24941857788], [1007.8892764937564, 6252.299418576968]]}, {"length": 56.1091695201, "source": 1916976467, "destination": 135090896, "path": [[-2623.410723508357, -6354.4005814222255], [-2622.6607235102506, -6102.1005814225755]]}, {"length": 252.549876561, "source": 1916976467, "destination": 1916976465, "path": [[-2623.410723508357, -6354.4005814222255], [-1122.6607235101937, -6347.60058142092]]}, {"length": 53.7520694105, "source": 1916976467, "destination": 135090901, "path": [[-2623.410723508357, -6354.4005814222255], [-2622.160723511513, -6596.100581422348]]}, {"length": 115.322051687, "source": 1916976467, "destination": 2074272062, "path": [[-2623.410723508357, -6354.4005814222255], [-3308.710723509023, -6355.250581421501]]}, {"length": 165.537254696, "source": 1916976468, "destination": 135094537, "path": [[-138.46072350531813, -6587.050581423171], [-445.1607235083088, -6588.10058142123], [-1122.1607235114561, -6590.600581422023]]}, {"length": 52.5842893426, "source": 1916976468, "destination": 1916976466, "path": [[-138.46072350531813, -6587.050581423171], [-137.5607235090115, -6350.600581424004]]}, {"length": 57.4420859988, "source": 1916976468, "destination": 135097204, "path": [[-138.46072350531813, -6587.050581423171], [130.8392764940436, -6586.1005814227265], [202.83927648989675, -6584.100581420671]]}, {"length": 56.8105873101, "source": 1916976468, "destination": 1916976469, "path": [[-138.46072350531813, -6587.050581423171], [-140.51072351151106, -6842.500581420552]]}, {"length": 16.7126810998, "source": 1916976469, "destination": 1916976481, "path": [[-140.51072351151106, -6842.500581420552], [-141.16072350844888, -6917.650581421241]]}, {"length": 56.8105873101, "source": 1916976469, "destination": 1916976468, "path": [[-140.51072351151106, -6842.500581420552], [-138.46072350531813, -6587.050581423171]]}, {"length": 165.223030574, "source": 1916976469, "destination": 1916976477, "path": [[-140.51072351151106, -6842.500581420552], [-1122.360723506688, -6844.00058142387]]}, {"length": 281.063982021, "source": 1279884630, "destination": 1933539536, "path": [[2075.139276492166, -6190.15058142125], [2079.3392764915097, -6115.50058142285], [2080.8892764918596, -6043.550581424029], [2094.0892764897967, -5952.100581421149], [2120.4392764886393, -5869.350581424015], [2173.3892764927987, -5758.000581423062], [2225.889276495252, -5683.300581420525], [2527.839276488919, -5321.0005814214865], [2600.589276489984, -5242.00058142199], [2738.8392764891023, -5120.200581423262], [2784.9392764949243, -5081.750581421574]]}, {"length": 15.5942826017, "source": 1279884630, "destination": 1429423290, "path": [[2075.139276492166, -6190.15058142125], [2061.889276490092, -6259.550581422246]]}, {"length": 97.9865766254, "source": 1279884630, "destination": 2080560852, "path": [[2075.139276492166, -6190.15058142125], [2038.1892764902432, -6185.100581422631], [1766.2392764918877, -6144.000581421949], [1746.5392764890453, -6139.5505814232365], [1730.9892764885149, -6130.650581422259], [1714.3892764934776, -6123.300581421631], [1553.189276492617, -6023.700581422986]]}, {"length": 109.298969584, "source": 2069036377, "destination": 2069036712, "path": [[6862.339276494822, 6234.999418577303], [7511.589276489872, 6238.049418577419]]}, {"length": 58.17783944, "source": 2069036377, "destination": 135008310, "path": [[6862.339276494822, 6234.999418577303], [6863.839276491035, 5973.399418579106]]}, {"length": 109.339202405, "source": 2069036377, "destination": 2069036510, "path": [[6862.339276494822, 6234.999418577303], [6212.839276493298, 6233.999418576275]]}, {"length": 47.0026273373, "source": 2069036377, "destination": 4274706127, "path": [[6862.339276494822, 6234.999418577303], [6861.13927649501, 6446.349418578024]]}, {"length": 47.3494690782, "source": 1965661530, "destination": 2285539209, "path": [[-7132.110723510721, 6218.399418578712], [-7143.060723507233, 6431.14941857803]]}, {"length": 108.464884078, "source": 1965661530, "destination": 1433125503, "path": [[-7132.110723510721, 6218.399418578712], [-7776.41072350832, 6215.949418578503]]}, {"length": 7.36468918788, "source": 1965661530, "destination": 1433125502, "path": [[-7132.110723510721, 6218.399418578712], [-7088.360723507492, 6218.549418576913]]}, {"length": 47.8254141064, "source": 1965661530, "destination": 1965661601, "path": [[-7132.110723510721, 6218.399418578712], [-7130.81072350974, 6003.349418577386]]}, {"length": 56.3537556452, "source": 1916976477, "destination": 135094537, "path": [[-1122.360723506688, -6844.00058142387], [-1122.1607235114561, -6590.600581422023]]}, {"length": 19.0034557211, "source": 1916976477, "destination": 1916976483, "path": [[-1122.360723506688, -6844.00058142387], [-1122.4607235078565, -6929.450581420582]]}, {"length": 165.223030574, "source": 1916976477, "destination": 1916976469, "path": [[-1122.360723506688, -6844.00058142387], [-140.51072351151106, -6842.500581420552]]}, {"length": 252.124307923, "source": 1916976477, "destination": 1916976479, "path": [[-1122.360723506688, -6844.00058142387], [-2620.610723511163, -6849.9005814217635]]}, {"length": 50.2273935068, "source": 134954334, "destination": 2062743212, "path": [[9646.889276488935, 4791.39941857909], [9648.239276494052, 4565.5494185794505]]}, {"length": 37.0841664459, "source": 134954334, "destination": 4253573908, "path": [[9646.889276488935, 4791.39941857909], [9645.78927649029, 4958.149418577306]]}, {"length": 83.8476406576, "source": 1279884639, "destination": 1942314064, "path": [[7526.889276491033, 3140.199418577794], [7517.9892764936085, 2828.3494185785685], [7503.289276492353, 2764.199418578528]]}, {"length": 3.24173572077, "source": 1279884639, "destination": 1962191347, "path": [[7526.889276491033, 3140.199418577794], [7528.089276490846, 3154.749418577296]]}, {"length": 10.4988458653, "source": 1279884639, "destination": 1279884662, "path": [[7526.889276491033, 3140.199418577794], [7589.239276491355, 3141.3994185776064]]}, {"length": 77.7496559425, "source": 1965661536, "destination": 2286590520, "path": [[-7125.460723507615, 6492.749418576694], [-7574.810723511405, 6491.699418578633], [-7587.310723508267, 6491.649418578049]]}, {"length": 6.95300778927, "source": 1965661536, "destination": 135050585, "path": [[-7125.460723507615, 6492.749418576694], [-7084.160723508148, 6493.0494185766465]]}, {"length": 14.0160840586, "source": 1965661536, "destination": 2285539209, "path": [[-7125.460723507615, 6492.749418576694], [-7143.060723507233, 6431.14941857803]]}, {"length": 16.7126810998, "source": 1916976481, "destination": 1916976469, "path": [[-141.16072350844888, -6917.650581421241], [-140.51072351151106, -6842.500581420552]]}, {"length": 96.592311845, "source": 1916976481, "destination": 135097406, "path": [[-141.16072350844888, -6917.650581421241], [-715.1607235087454, -6915.100581423417]]}, {"length": 55.9755280151, "source": 1916976481, "destination": 135027023, "path": [[-141.16072350844888, -6917.650581421241], [-140.86072350494305, -7169.350581420986]]}, {"length": 46.454187599, "source": 2069036387, "destination": 2068973833, "path": [[-3828.06072350661, 5941.499418579355], [-4104.010723509077, 5940.79941857828]]}, {"length": 15.4359874514, "source": 2069036387, "destination": 2309494003, "path": [[-3828.06072350661, 5941.499418579355], [-3829.5607235099283, 5872.099418578358]]}, {"length": 49.1079618643, "source": 2069036387, "destination": 2068853452, "path": [[-3828.06072350661, 5941.499418579355], [-3536.3607235083805, 5943.799418577811]]}, {"length": 109.290434694, "source": 2069036945, "destination": 2069036820, "path": [[8163.789276494526, 5708.149418577335], [8812.989276492544, 5712.199418578479]]}, {"length": 60.1015519069, "source": 2069036945, "destination": 135033694, "path": [[8163.789276494526, 5708.149418577335], [8162.339276488239, 5978.399418577141]]}, {"length": 63.6597112424, "source": 2069036945, "destination": 134985702, "path": [[8163.789276494526, 5708.149418577335], [8165.339276494877, 5421.899418578846]]}, {"length": 109.337265303, "source": 2069036945, "destination": 2069036837, "path": [[8163.789276494526, 5708.149418577335], [7514.289276493002, 5708.149418577335]]}, {"length": 120.487388803, "source": 2086723533, "destination": 2086723504, "path": [[1734.5392764909207, 1802.149418576704], [2450.339276492741, 1806.1994185778474]]}, {"length": 59.8570722456, "source": 2086723533, "destination": 134990156, "path": [[1734.5392764909207, 1802.149418576704], [1732.7892764882336, 2071.2994185778653]]}, {"length": 61.1024383452, "source": 2069036395, "destination": 135035730, "path": [[-3420.4107235069614, 4007.5994185784225], [-3422.1607235096485, 4282.349418577524]]}, {"length": 17.5915125087, "source": 2069036395, "destination": 2311060035, "path": [[-3420.4107235069614, 4007.5994185784225], [-3524.910723506025, 4006.849418576763]]}, {"length": 91.5874848465, "source": 1279884652, "destination": 1942240496, "path": [[5844.139276490523, -1095.750581423971], [5903.989276490051, -1060.2505814212293], [5930.839276494737, -1033.8505814218024], [5947.2392764945425, -1008.2005814240347], [5987.13927649186, -786.200581423202], [6035.43927649497, -728.3505814221769]]}, {"length": 75.7674263079, "source": 1279884652, "destination": 1279884627, "path": [[5844.139276490523, -1095.750581423971], [5880.989276491277, -984.3505814224329], [5873.739276488266, -895.6005814226842], [5832.5892764941045, -762.2505814239844]]}, {"length": 50.2816300293, "source": 1279884652, "destination": 1429422573, "path": [[5844.139276490523, -1095.750581423971], [5766.639276494345, -1213.8505814220935], [5692.839276491668, -1289.7505814208898]]}, {"length": 12.4904149139, "source": 2358476141, "destination": 2355676185, "path": [[-1213.8607235101517, 5446.4494185779695], [-1288.060723510398, 5446.0994185774325]]}, {"length": 12.9209878317, "source": 2358476141, "destination": 134985669, "path": [[-1213.8607235101517, 5446.4494185779695], [-1213.5107235096143, 5388.349418577576]]}, {"length": 47.5254017294, "source": 2358476141, "destination": 2068877118, "path": [[-1213.8607235101517, 5446.4494185779695], [-1215.260723505196, 5660.149418577731]]}, {"length": 12.6599166259, "source": 2358476141, "destination": 2355676183, "path": [[-1213.8607235101517, 5446.4494185779695], [-1138.6607235053248, 5446.999418577292]]}, {"length": 48.3815030451, "source": 2358476142, "destination": 2068877128, "path": [[-1958.2607235051341, 5442.849418578533], [-1959.6607235072838, 5660.3994185771]]}, {"length": 15.2860786459, "source": 2358476142, "destination": 2352260147, "path": [[-1958.2607235051341, 5442.849418578533], [-2049.060723507523, 5441.9994185792575]]}, {"length": 16.7925725311, "source": 2358476142, "destination": 2355676188, "path": [[-1958.2607235051341, 5442.849418578533], [-1858.5107235082887, 5443.699418577808]]}, {"length": 12.9436376032, "source": 2358476142, "destination": 134985667, "path": [[-1958.2607235051341, 5442.849418578533], [-1957.9107235117021, 5384.64941857697]]}, {"length": 95.8694763381, "source": 2358476143, "destination": 2355655000, "path": [[-1138.2607235077558, 5388.499418579329], [-980.1607235075949, 5388.749418578698], [-899.9107235112547, 5388.749418578698], [-673.0607235070352, 5388.999418578067], [-568.7607235103087, 5388.649418577529]]}, {"length": 13.2658466855, "source": 2358476143, "destination": 2355655002, "path": [[-1138.2607235077558, 5388.499418579329], [-1137.9107235072183, 5328.849418578585]]}, {"length": 12.6673894878, "source": 2358476143, "destination": 134985669, "path": [[-1138.2607235077558, 5388.499418579329], [-1213.5107235096143, 5388.349418577576]]}, {"length": 13.0103112863, "source": 2358476143, "destination": 2355676183, "path": [[-1138.2607235077558, 5388.499418579329], [-1138.6607235053248, 5446.999418577292]]}, {"length": 10.7637690735, "source": 2139774320, "destination": 2139774321, "path": [[-9914.860723505115, 350.74941857615727], [-9915.510723509158, 399.1494185768829]]}, {"length": 192.906796481, "source": 2139774320, "destination": 134948420, "path": [[-9914.860723505115, 350.74941857615727], [-10256.660723506173, 348.64941857648546], [-10937.310723505789, 343.4494185761139], [-11060.910723507788, 341.6994185769795]]}, {"length": 9.46406746527, "source": 2139774320, "destination": 2139774318, "path": [[-9914.860723505115, 350.74941857615727], [-9913.910723511777, 308.19941857629374]]}, {"length": 96.334019374, "source": 2358476145, "destination": 2358476144, "path": [[-1859.96072350747, 5385.14941857926], [-1287.7107235098606, 5387.999418577038]]}, {"length": 16.4890028462, "source": 2358476145, "destination": 134985667, "path": [[-1859.96072350747, 5385.14941857926], [-1957.9107235117021, 5384.64941857697]]}, {"length": 13.0247944809, "source": 2358476145, "destination": 2355676188, "path": [[-1859.96072350747, 5385.14941857926], [-1858.5107235082887, 5415.8494185792], [-1858.5107235082887, 5443.699418577808]]}, {"length": 12.0588512038, "source": 2358476145, "destination": 2355676189, "path": [[-1859.96072350747, 5385.14941857926], [-1861.66072350602, 5349.89941857944], [-1862.110723507726, 5330.949418578257]]}, {"length": 12.8426272087, "source": 2358476146, "destination": 2352260147, "path": [[-2049.11072351166, 5384.249418579401], [-2049.060723507523, 5441.9994185792575]]}, {"length": 12.4209508235, "source": 2358476146, "destination": 2355676190, "path": [[-2049.11072351166, 5384.249418579401], [-2049.8107235056295, 5328.399418576879]]}, {"length": 15.3528528782, "source": 2358476146, "destination": 134985667, "path": [[-2049.11072351166, 5384.249418579401], [-1957.9107235117021, 5384.64941857697]]}, {"length": 95.5256149438, "source": 2358476146, "destination": 2358476147, "path": [[-2049.11072351166, 5384.249418579401], [-2616.5607235100197, 5381.649418577439]]}, {"length": 13.1731250665, "source": 2358476147, "destination": 134985665, "path": [[-2616.5607235100197, 5381.649418577439], [-2694.8107235114094, 5381.299418576901]]}, {"length": 95.5256149438, "source": 2358476147, "destination": 2358476146, "path": [[-2616.5607235100197, 5381.649418577439], [-2049.11072351166, 5384.249418579401]]}, {"length": 12.1654487046, "source": 2358476147, "destination": 2352260173, "path": [[-2616.5607235100197, 5381.649418577439], [-2616.1107235083136, 5326.9494185776975]]}, {"length": 12.8769686564, "source": 2358476147, "destination": 2352260149, "path": [[-2616.5607235100197, 5381.649418577439], [-2617.0107235117257, 5439.5494185790485]]}, {"length": 12.4954648985, "source": 2358476148, "destination": 2354509530, "path": [[-1213.160723509077, 5330.59941857772], [-1287.3607235093232, 5332.199418578653]]}, {"length": 48.392876856, "source": 2358476148, "destination": 2069036831, "path": [[-1213.160723509077, 5330.59941857772], [-1212.5607235091707, 5237.199418576921], [-1211.7607235069272, 5112.999418578567]]}, {"length": 12.6730801393, "source": 2358476148, "destination": 2355655002, "path": [[-1213.160723509077, 5330.59941857772], [-1137.9107235072183, 5328.849418578585]]}, {"length": 12.8429780954, "source": 2358476148, "destination": 134985669, "path": [[-1213.160723509077, 5330.59941857772], [-1213.5107235096143, 5388.349418577576]]}, {"length": 47.9589335495, "source": 2069036405, "destination": 2358476449, "path": [[-487.81072350578825, 4567.749418576739], [-489.2107235079379, 4783.399418577972]]}, {"length": 12.7683744569, "source": 2069036405, "destination": 2358476580, "path": [[-487.81072350578825, 4567.749418576739], [-563.660723507553, 4567.449418576785]]}, {"length": 61.0913746882, "source": 2069036405, "destination": 135025220, "path": [[-487.81072350578825, 4567.749418576739], [-486.06072351020657, 4293.049418578221]]}, {"length": 122.490218202, "source": 2069036405, "destination": 2069037023, "path": [[-487.81072350578825, 4567.749418576739], [239.83927648885128, 4570.399418579285]]}, {"length": 12.4579018482, "source": 2358476150, "destination": 2316883624, "path": [[-2694.460723510872, 5326.349418577792], [-2768.460723508781, 5325.79941857847]]}, {"length": 48.5149782381, "source": 2358476150, "destination": 2069036640, "path": [[-2694.460723510872, 5326.349418577792], [-2693.0607235087223, 5108.199418579317]]}, {"length": 13.1902183769, "source": 2358476150, "destination": 2352260173, "path": [[-2694.460723510872, 5326.349418577792], [-2616.1107235083136, 5326.9494185776975]]}, {"length": 7.78702058435, "source": 1965661559, "destination": 134985543, "path": [[-7126.810723505628, 5370.8994185761585], [-7080.560723508711, 5371.29941857728]]}, {"length": 12.9531509976, "source": 1965661559, "destination": 2285539755, "path": [[-7126.810723505628, 5370.8994185761585], [-7132.460723511258, 5390.749418577201], [-7145.410723509826, 5427.399418579171]]}, {"length": 13.9981973208, "source": 1965661559, "destination": 2284260413, "path": [[-7126.810723505628, 5370.8994185761585], [-7126.760723508596, 5349.149418577781], [-7147.460723508913, 5311.04941857663]]}, {"length": 108.357723509, "source": 1965661559, "destination": 134985535, "path": [[-7126.810723505628, 5370.8994185761585], [-7770.4607235062895, 5365.599418578171]]}, {"length": 37.7535188974, "source": 1279884665, "destination": 1942302122, "path": [[5847.689276492929, 289.44941857744766], [5855.839276492247, 459.09941857757985]]}, {"length": 75.8046346451, "source": 1279884665, "destination": 1393207236, "path": [[5847.689276492929, 289.44941857744766], [5823.689276489575, 207.64941857720487], [5813.439276494137, 165.64941857666327], [5811.68927649145, 123.19941857796834], [5818.539276489787, 84.64941857866393], [5834.039276493286, 33.39941857660733], [5862.839276488785, -44.00058142195462]]}, {"length": 34.9956686254, "source": 1279884665, "destination": 1942302134, "path": [[5847.689276492929, 289.44941857744766], [5881.239276490646, 194.24941857693057], [5907.03927649372, 138.74941857849876]]}, {"length": 250.393528558, "source": 1933539479, "destination": 1933539490, "path": [[260.3392764939372, -4577.450581422227], [288.23927649312964, -4577.7505814221795], [297.1392764905545, -4579.150581420777], [305.3892764910415, -4582.3005814220605], [382.989276488388, -4614.100581420644], [398.2892764895496, -4619.3505814216], [411.2892764922549, -4622.250581423515], [427.2392764903543, -4623.950581422065], [447.5892764901346, -4624.65058142314], [482.88927649053903, -4624.900581422508], [767.2392764916935, -4624.450581420802], [1050.9892764929418, -4623.700581422696], [1309.2392764946226, -4623.000581421621], [1629.589276490151, -4622.750581422252], [1734.1392764933516, -4622.300581420546]]}, {"length": 104.568987737, "source": 1933539479, "destination": 1933539534, "path": [[260.3392764939372, -4577.450581422227], [259.88927649223115, -4591.950581421144], [259.5892764887253, -4642.000581423389], [259.2892764923249, -4732.750581421641], [258.63927648828167, -4811.450581421184], [259.5892764887253, -4852.350581423081], [258.9392764917875, -4914.450581424035], [258.9392764917875, -5030.00058142078], [259.0892764899877, -5047.650581420981]]}, {"length": 95.599710781, "source": 1933539479, "destination": 2139769367, "path": [[260.3392764939372, -4577.450581422227], [261.83927649015004, -4527.650581422904], [262.7892764905937, -4407.300581423357], [263.0892764940995, -4264.600581421973], [263.58927649283714, -4180.100581422153], [268.9892764919932, -4147.850581421863]]}, {"length": 15.9118128168, "source": 1965661565, "destination": 1965661601, "path": [[-7130.81072350974, 5931.799418576134], [-7130.81072350974, 6003.349418577386]]}, {"length": 7.60906155561, "source": 1965661565, "destination": 135033658, "path": [[-7130.81072350974, 5931.799418576134], [-7085.61072350733, 5931.899418577303]]}, {"length": 234.311364495, "source": 1965661565, "destination": 2291095886, "path": [[-7130.81072350974, 5931.799418576134], [-7568.760723508205, 5929.14941857714], [-7856.060723504754, 5928.149418576112], [-7882.860723505302, 5927.949418577327], [-8522.660723507159, 5924.699418578428]]}, {"length": 14.877930052, "source": 1965661565, "destination": 2285539542, "path": [[-7130.81072350974, 5931.799418576134], [-7130.910723510908, 5864.899418579484]]}, {"length": 48.8657820351, "source": 1965661566, "destination": 2284260413, "path": [[-7129.460723511727, 5092.29941857825], [-7144.560723510551, 5214.099418576979], [-7149.910723505571, 5306.499418576749], [-7147.460723508913, 5311.04941857663]]}, {"length": 8.24026425605, "source": 1965661566, "destination": 1433125515, "path": [[-7129.460723511727, 5092.29941857825], [-7080.510723511679, 5092.449418576451]]}, {"length": 108.43604677, "source": 1965661566, "destination": 1433125517, "path": [[-7129.460723511727, 5092.29941857825], [-7773.610723511127, 5089.799418577457]]}, {"length": 47.0916108091, "source": 1965661566, "destination": 1433125525, "path": [[-7129.460723511727, 5092.29941857825], [-7128.160723510746, 4880.549418576407]]}, {"length": 53.0976594931, "source": 1965661573, "destination": 1965661642, "path": [[-7124.110723509602, 3758.7994185770413], [-7123.06072350799, 3886.349418579016], [-7129.460723511727, 3997.449418577048]]}, {"length": 8.40808558777, "source": 1965661573, "destination": 135036835, "path": [[-7124.110723509602, 3758.7994185770413], [-7074.160723504974, 3758.8494185776253]]}, {"length": 133.13340705, "source": 1965661573, "destination": 1965661599, "path": [[-7124.110723509602, 3758.7994185770413], [-7124.410723506003, 3587.8994185765123], [-7129.760723508127, 3502.599418578001], [-7149.910723505571, 3347.2994185785865], [-7148.21072350702, 3160.9994185792802]]}, {"length": 159.355648794, "source": 1965661573, "destination": 1433125599, "path": [[-7124.110723509602, 3758.7994185770413], [-7662.11072350842, 3738.599418579014], [-7686.460723505206, 3739.749418578242], [-7707.960723507767, 3743.0994185783106], [-7725.310723508017, 3748.849418578004], [-7738.110723508385, 3757.7994185760135], [-7748.3607235109275, 3769.9994185764754], [-7754.560723505221, 3785.4994185764212], [-7756.910723507815, 3804.199418578236], [-7757.210723511321, 3825.9994185771975], [-7756.310723507909, 3860.2994185765738], [-7757.46072351069, 3907.599418578656], [-7758.9607235069025, 3949.7494185773976], [-7759.260723510408, 3967.749418578137], [-7759.010723511039, 4000.94941857887]]}, {"length": 60.9805538197, "source": 2069036425, "destination": 134954298, "path": [[950.3892764897159, 4572.999418577694], [948.1392764882912, 4847.199418577475]]}, {"length": 119.611712424, "source": 2069036425, "destination": 2069037023, "path": [[950.3892764897159, 4572.999418577694], [239.83927648885128, 4570.399418579285]]}, {"length": 11.6069970995, "source": 2069036425, "destination": 2069036679, "path": [[950.3892764897159, 4572.999418577694], [1019.3392764890064, 4573.249418577063]]}, {"length": 61.2286435335, "source": 134994385, "destination": 2086723474, "path": [[2450.989276489679, 1529.3494185790735], [2455.4392764883914, 1254.0494185770967]]}, {"length": 123.380017487, "source": 134994385, "destination": 134997388, "path": [[2450.989276489679, 1529.3494185790735], [3183.9892764935485, 1532.399418579189]]}, {"length": 63.9819737408, "source": 2069036439, "destination": 134985699, "path": [[6865.039276490847, 5704.099418576192], [6866.339276491828, 5416.399418578521]]}, {"length": 59.8900382059, "source": 2069036439, "destination": 135008310, "path": [[6865.039276490847, 5704.099418576192], [6863.839276491035, 5973.399418579106]]}, {"length": 109.298845894, "source": 2069036439, "destination": 2069036837, "path": [[6865.039276490847, 5704.099418576192], [7514.289276493002, 5708.149418577335]]}, {"length": 130.0463306, "source": 2069036439, "destination": 2069037011, "path": [[6865.039276490847, 5704.099418576192], [6092.539276494335, 5699.999418578017]]}, {"length": 94.5147906397, "source": 2086723482, "destination": 2086723534, "path": [[4028.889276490588, 2364.499418579413], [4590.389276494023, 2366.4994185779165]]}, {"length": 11.7324984958, "source": 1965661599, "destination": 134960025, "path": [[-7148.21072350702, 3160.9994185792802], [-7078.510723509624, 3161.1994185780645]]}, {"length": 27.1345992474, "source": 1965661599, "destination": 2664670595, "path": [[-7148.21072350702, 3160.9994185792802], [-7309.410723507881, 3160.549418577574]]}, {"length": 133.13340705, "source": 1965661599, "destination": 1965661573, "path": [[-7148.21072350702, 3160.9994185792802], [-7149.910723505571, 3347.2994185785865], [-7129.760723508127, 3502.599418578001], [-7124.410723506003, 3587.8994185765123], [-7124.110723509602, 3758.7994185770413]]}, {"length": 60.8689389191, "source": 2069036831, "destination": 134954280, "path": [[-1211.7607235069272, 5112.999418578567], [-1210.0107235113455, 4839.299418577525]]}, {"length": 12.6673894878, "source": 2069036831, "destination": 2358476297, "path": [[-1211.7607235069272, 5112.999418578567], [-1136.5107235050687, 5113.349418579105]]}, {"length": 12.4911364653, "source": 2069036831, "destination": 2358476298, "path": [[-1211.7607235069272, 5112.999418578567], [-1285.9607235071735, 5112.549418576862]]}, {"length": 48.392876856, "source": 2069036831, "destination": 2358476148, "path": [[-1211.7607235069272, 5112.999418578567], [-1212.5607235091707, 5237.199418576921], [-1213.160723509077, 5330.59941857772]]}, {"length": 15.1337917895, "source": 2309494000, "destination": 2312746297, "path": [[-3432.310723511023, 5872.349418577727], [-3342.4107235049405, 5872.349418577727]]}, {"length": 17.3900360145, "source": 2309494000, "destination": 2309493997, "path": [[-3432.310723511023, 5872.349418577727], [-3535.610723510274, 5872.599418577096]]}, {"length": 15.767857894, "source": 2309494000, "destination": 135033673, "path": [[-3432.310723511023, 5872.349418577727], [-3432.7607235056234, 5943.249418578489]]}, {"length": 85.2568045174, "source": 135036827, "destination": 135076353, "path": [[9621.839276491073, 3728.3994185770553], [9617.439276489393, 4063.2994185791913], [9616.839276489485, 4111.749418576948]]}, {"length": 26.1925463516, "source": 135036827, "destination": 2074049995, "path": [[9621.839276491073, 3728.3994185770553], [9466.239276491706, 3727.799418577149]]}, {"length": 8.01403510187, "source": 1965661606, "destination": 134954257, "path": [[-7126.810723505628, 4819.049418578914], [-7079.210723510698, 4819.749418576435]]}, {"length": 85.3817947046, "source": 1965661606, "destination": 134954251, "path": [[-7126.810723505628, 4819.049418578914], [-7634.01072350689, 4816.599418578704]]}, {"length": 13.6786112172, "source": 1965661606, "destination": 1433125525, "path": [[-7126.810723505628, 4819.049418578914], [-7128.160723510746, 4880.549418576407]]}, {"length": 13.1655969793, "source": 1965661606, "destination": 1433125574, "path": [[-7126.810723505628, 4819.049418578914], [-7127.410723505534, 4759.849418576323]]}, {"length": 48.3190706188, "source": 1965661608, "destination": 2284151913, "path": [[-7134.8107235067455, 4545.59941857724], [-7144.560723510551, 4445.6494185780575], [-7144.310723511182, 4328.599418577995]]}, {"length": 9.6288118656, "source": 1965661608, "destination": 1433125588, "path": [[-7134.8107235067455, 4545.59941857724], [-7077.610723506212, 4545.799418576024]]}, {"length": 105.983579526, "source": 1965661608, "destination": 1433125589, "path": [[-7134.8107235067455, 4545.59941857724], [-7764.360723506059, 4539.599418578177]]}, {"length": 47.6883466414, "source": 1965661608, "destination": 1433125574, "path": [[-7134.8107235067455, 4545.59941857724], [-7127.110723509133, 4637.4994185782725], [-7127.410723505534, 4759.849418576323]]}, {"length": 134.940996609, "source": 4719844793, "destination": 2585900652, "path": [[-2648.7607235097244, -949.5505814207661], [-2569.410723509691, -982.2005814221768], [-2522.010723509993, -984.4505814236015], [-2382.160723506388, -984.9505814223392], [-2188.6107235076224, -985.9505814233671], [-2119.460723505995, -985.4505814210768], [-2097.4607235118015, -985.3005814228766], [-2073.660723510784, -979.1505814220614], [-2066.010723510203, -967.9505814226275], [-2056.6107235069353, -954.3505814235687], [-1982.0607235061516, -895.5505814220999], [-1953.310723507684, -885.7005814206786], [-1915.2607235071173, -885.5505814224784]]}, {"length": 341.029323519, "source": 4719844793, "destination": 2573122294, "path": [[-2648.7607235097244, -949.5505814207661], [-2642.6107235053564, -1059.9505814212762], [-2641.6607235049128, -1124.7505814218073], [-2643.3107235064313, -1181.6005814218045], [-2651.7607235092555, -1270.0005814210158], [-2663.560723505043, -1359.2005814224706], [-2689.010723507579, -1437.250581421523], [-2700.4607235099343, -1467.4005814221402], [-2731.8607235073955, -1531.2505814222277], [-2776.8107235104367, -1609.3005814212802], [-2909.210723508693, -1817.0005814219792], [-3080.560723510928, -2072.700581422282], [-3152.9107235073184, -2183.6005814215296], [-3201.460723509797, -2270.150581423991], [-3253.11072350587, -2386.7505814223478]]}, {"length": 108.594086521, "source": 2286663816, "destination": 2286663657, "path": [[-5708.910723505767, 4273.999418579422], [-5708.910723505767, 4373.799418576851], [-5711.5107235077285, 4762.299418576532]]}, {"length": 9.85592570226, "source": 2286663816, "destination": 135031619, "path": [[-5708.910723505767, 4273.999418579422], [-5650.3607235072195, 4274.199418578206]]}, {"length": 60.9956272396, "source": 2286663816, "destination": 135096675, "path": [[-5708.910723505767, 4273.999418579422], [-6071.210723504805, 4269.399418578956]]}, {"length": 51.4494864246, "source": 1933540845, "destination": 1933540850, "path": [[6448.739276493143, -7740.050581421798], [6143.089276491764, -7746.000581423828]]}, {"length": 195.106771381, "source": 1933540845, "destination": 1933539614, "path": [[6448.739276493143, -7740.050581421798], [6448.189276490268, -7561.800581420641], [6447.889276493868, -7459.950581420571], [6449.63927648945, -7401.250581423824], [6449.039276489543, -7343.500581423968], [6448.689276489005, -6862.750581422716]]}, {"length": 49.4514282491, "source": 1933540845, "destination": 134976422, "path": [[6448.739276493143, -7740.050581421798], [6742.539276494597, -7734.950581422595]]}, {"length": 59.3695040938, "source": 134930762, "destination": 134930780, "path": [[-2828.9107235082156, -8932.250581423774], [-2826.1607235080533, -9007.600581423247], [-2816.160723504879, -9074.100581422328], [-2797.160723510217, -9130.10058142305], [-2764.160723508269, -9192.100581422836]]}, {"length": 99.0651900008, "source": 2291095714, "destination": 2291095713, "path": [[-9244.910723509747, 6424.599418576094], [-9203.810723505512, 6424.799418578431], [-9161.210723505064, 6425.649418577706], [-9024.560723510433, 6425.999418578243], [-8656.460723507564, 6427.199418578056]]}, {"length": 11.6325931013, "source": 2291095714, "destination": 2290110633, "path": [[-9244.910723509747, 6424.599418576094], [-9314.010723507237, 6424.29941857614]]}, {"length": 46.5908238688, "source": 2291095714, "destination": 2291095796, "path": [[-9244.910723509747, 6424.599418576094], [-9244.41072351101, 6351.949418576197], [-9244.41072351101, 6283.79941857915], [-9243.960723509303, 6224.149418578407], [-9244.16072351164, 6215.099418579229]]}, {"length": 13.6438344602, "source": 2291095714, "destination": 2291095711, "path": [[-9244.910723509747, 6424.599418576094], [-9245.060723507948, 6445.949418576902], [-9245.610723510821, 6485.94941857894]]}, {"length": 48.896616817, "source": 1965661641, "destination": 2285539755, "path": [[-7136.160723504759, 5646.649418576289], [-7144.560723510551, 5582.599418577416], [-7148.21072350702, 5435.399418576736], [-7145.410723509826, 5427.399418579171]]}, {"length": 8.86515990934, "source": 1965661641, "destination": 1433125509, "path": [[-7136.160723504759, 5646.649418576289], [-7083.51072351121, 5647.4994185791165]]}, {"length": 48.5564937448, "source": 1965661641, "destination": 2285539542, "path": [[-7136.160723504759, 5646.649418576289], [-7131.11072350614, 5728.7994185770685], [-7130.910723510908, 5864.899418579484]]}, {"length": 107.406203011, "source": 1965661641, "destination": 1433125511, "path": [[-7136.160723504759, 5646.649418576289], [-7217.610723508016, 5641.349418578301], [-7391.560723505108, 5640.4494185784415], [-7457.660723510173, 5640.549418576057], [-7611.410723505685, 5641.549418577086], [-7690.560723510487, 5641.899418577623], [-7773.8607235104955, 5643.199418578604]]}, {"length": 9.07515200844, "source": 1965661642, "destination": 1433125600, "path": [[-7129.460723511727, 3997.449418577048], [-7075.560723507124, 3998.3494185769077]]}, {"length": 47.7139100712, "source": 1965661642, "destination": 2284151936, "path": [[-7129.460723511727, 3997.449418577048], [-7145.860723511532, 4152.299418578309], [-7145.010723505152, 4211.499418577347]]}, {"length": 53.0976594931, "source": 1965661642, "destination": 1965661573, "path": [[-7129.460723511727, 3997.449418577048], [-7123.06072350799, 3886.349418579016], [-7124.110723509602, 3758.7994185770413]]}, {"length": 106.021035051, "source": 1965661642, "destination": 1433125599, "path": [[-7129.460723511727, 3997.449418577048], [-7251.810723509778, 3995.4994185791293], [-7276.110723509532, 3995.8494185761137], [-7308.510723511574, 3997.1494185770953], [-7328.46072350668, 3997.6494185793854], [-7354.360723510922, 3997.299418578848], [-7378.410723511308, 3995.599418576745], [-7405.110723510688, 3995.599418576745], [-7463.110723506361, 3996.149418576067], [-7571.110723510799, 3996.3494185784043], [-7661.960723510219, 3998.2494185792916], [-7759.010723511039, 4000.94941857887]]}, {"length": 86.2536337041, "source": 2074049995, "destination": 135036824, "path": [[9466.239276491706, 3727.799418577149], [8953.839276493625, 3725.8994185762617]]}, {"length": 26.1925463516, "source": 2074049995, "destination": 135036827, "path": [[9466.239276491706, 3727.799418577149], [9621.839276491073, 3728.3994185770553]]}, {"length": 122.061568152, "source": 2069036496, "destination": 2069036476, "path": [[3162.2392764916185, 5129.499418575989], [3887.339276488433, 5129.499418575989]]}, {"length": 61.1807118105, "source": 2069036496, "destination": 134954306, "path": [[3162.2392764916185, 5129.499418575989], [3164.4892764930432, 4854.3994185763495]]}, {"length": 122.911690723, "source": 2069036496, "destination": 2069037027, "path": [[3162.2392764916185, 5129.499418575989], [2432.08927648908, 5129.699418578326]]}, {"length": 60.9137869723, "source": 2069036496, "destination": 134985684, "path": [[3162.2392764916185, 5129.499418575989], [3159.989276490194, 5403.399418579369]]}, {"length": 133.201037888, "source": 3148258771, "destination": 3148258786, "path": [[-1917.5607235055736, -222.50058142248008], [-1938.2607235058913, -205.4505814221841], [-1965.5607235051775, -194.75058142148782], [-1991.060723504745, -188.7005814218412], [-2017.5107235047562, -187.15058142149132], [-2517.3607235089435, -191.05058142088183], [-2542.210723511573, -193.25058142172225], [-2559.6607235058855, -196.80058142057533], [-2582.610723507628, -205.7005814215529], [-2592.4607235054964, -211.3505814236305], [-2615.6607235066076, -225.70058142079574], [-2635.36072350945, -240.75058142258854], [-2658.8607235069617, -263.100581420872]]}, {"length": 14.2108543535, "source": 3148258771, "destination": 135074757, "path": [[-1917.5607235055736, -222.50058142248008], [-1917.960723510248, -158.60058142180833]]}, {"length": 34.5170922533, "source": 2074099157, "destination": 134956081, "path": [[9321.389276493619, -4540.100581422735], [9116.28927649133, -4541.400581423715]]}, {"length": 66.3119061259, "source": 2074099157, "destination": 3698428994, "path": [[9321.389276493619, -4540.100581422735], [9332.189276491932, -4519.70058142237], [9346.939276490219, -4502.45058142329], [9362.989276489487, -4490.000581423459], [9384.489276492048, -4483.200581422153], [9407.289276488484, -4482.150581420541], [9646.839276491903, -4481.550581420634], [9675.989276495045, -4482.1005814235095]]}, {"length": 141.225199455, "source": 2074099157, "destination": 134956085, "path": [[9321.389276493619, -4540.100581422735], [9398.239276492859, -4539.600581423997], [10045.039276491252, -4535.4005814211005], [10160.539276490965, -4534.400581423625]]}, {"length": 26.147766174, "source": 2074050009, "destination": 2074050053, "path": [[9703.489276489563, 1149.9994185761864], [9715.739276494161, 1122.2994185793311], [9726.489276488337, 1109.0994185778413], [9741.239276493729, 1098.949418576467], [9764.039276490166, 1093.8994185778483], [9816.339276490282, 1089.849418576705]]}, {"length": 16.6992462163, "source": 2074050009, "destination": 2074050038, "path": [[9703.489276489563, 1149.9994185761864], [9703.9892764883, 1084.3994185769645], [9704.039276492438, 1074.8994185760807]]}, {"length": 8.12904559492, "source": 2069036508, "destination": 2069036666, "path": [[4962.589276495066, 6225.849418576956], [4962.639276492098, 6262.399418577757]]}, {"length": 101.175340586, "source": 2069036508, "destination": 2069036677, "path": [[4962.589276495066, 6225.849418576956], [5563.589276491143, 6227.899418576044]]}, {"length": 57.8660857372, "source": 2069036508, "destination": 135033678, "path": [[4962.589276495066, 6225.849418576956], [4963.389276490205, 5965.649418577357]]}, {"length": 109.339202405, "source": 2069036510, "destination": 2069036377, "path": [[6212.839276493298, 6233.999418576275], [6862.339276494822, 6234.999418577303]]}, {"length": 46.7691676238, "source": 2069036510, "destination": 4274706132, "path": [[6212.839276493298, 6233.999418576275], [6211.639276493486, 6444.299418578936]]}, {"length": 109.305277552, "source": 2069036510, "destination": 2069036677, "path": [[6212.839276493298, 6233.999418576275], [5563.589276491143, 6227.899418576044]]}, {"length": 58.6226100897, "source": 2069036510, "destination": 135033686, "path": [[6212.839276493298, 6233.999418576275], [6214.339276489511, 5970.399418576022]]}, {"length": 7.47281164549, "source": 1932196432, "destination": 1932196425, "path": [[5256.189276494183, -7527.750581420633], [5300.589276494349, -7527.150581420728]]}, {"length": 46.7106033307, "source": 1932196432, "destination": 135075366, "path": [[5256.189276494183, -7527.750581420633], [5254.389276494465, -7383.250581423084], [5254.839276489065, -7362.800581422135], [5263.58927648829, -7339.350581421655], [5277.789276490807, -7321.650581420869]]}, {"length": 49.7866770107, "source": 1932196432, "destination": 135047495, "path": [[5256.189276494183, -7527.750581420633], [5258.589276493808, -7722.800581422717], [5261.189276488665, -7738.000581422711], [5265.98927649502, -7744.600581421679], [5270.989276489501, -7749.200581422145]]}, {"length": 99.7210028766, "source": 3148258786, "destination": 2573122312, "path": [[-2658.8607235069617, -263.100581420872], [-2656.4607235073368, -643.7005814206032], [-2656.0107235056307, -711.5005814206654]]}, {"length": 19.1236358882, "source": 2568599553, "destination": 2568599722, "path": [[464.33927649047746, -2274.650581423288], [500.539276494294, -2240.150581421574], [527.239276493674, -2203.400581421988]]}, {"length": 6.91401136402, "source": 2568599553, "destination": 2568599550, "path": [[464.33927649047746, -2274.650581423288], [432.1392764907728, -2293.9505814214554]]}, {"length": 24.8978917369, "source": 2568599553, "destination": 2568599654, "path": [[464.33927649047746, -2274.650581423288], [612.2392764922324, -2272.150581422494]]}, {"length": 148.333740635, "source": 1933540837, "destination": 1933539704, "path": [[7648.939276492683, -7721.300581422952], [7647.139276492964, -7533.500581423879], [7646.239276489552, -7452.850581422865], [7645.339276493246, -7397.000581423896], [7648.039276489271, -7348.3505814238015], [7648.939276492683, -7292.200581421326], [7648.489276490977, -7236.700581422894], [7647.139276492964, -7177.8005814238095], [7644.439276489834, -7129.150581423715], [7639.489276492384, -7077.050581422383], [7639.689276494721, -7054.550581422347]]}, {"length": 49.17994425, "source": 1933540837, "destination": 135016306, "path": [[7648.939276492683, -7721.300581422952], [7941.1892764937875, -7719.150581422696]]}, {"length": 51.5045499394, "source": 1933540837, "destination": 135047491, "path": [[7648.939276492683, -7721.300581422952], [7342.9892764949045, -7728.000581423089]]}, {"length": 8.5873283452, "source": 1933540837, "destination": 1933540860, "path": [[7648.939276492683, -7721.300581422952], [7647.389276492333, -7759.90058142284]]}, {"length": 49.4156934916, "source": 1933540841, "destination": 135047491, "path": [[7049.339276491651, -7730.200581423929], [7342.9892764949045, -7728.000581423089]]}, {"length": 51.6367595268, "source": 1933540841, "destination": 134976422, "path": [[7049.339276491651, -7730.200581423929], [6742.539276494597, -7734.950581422595]]}, {"length": 150.301045406, "source": 1933540841, "destination": 1933539703, "path": [[7049.339276491651, -7730.200581423929], [7046.139276489783, -7611.450581421764], [7047.4892764949, -7481.1005814225955], [7048.839276492913, -7186.65058142065], [7050.189276490926, -7100.900581423985], [7049.089276492282, -7054.400581420595]]}, {"length": 54.0895405318, "source": 2086854567, "destination": 135022841, "path": [[9120.639276488873, -3430.600581420862], [9116.639276491867, -3187.400581420974]]}, {"length": 141.086413577, "source": 2086854567, "destination": 134975763, "path": [[9120.639276488873, -3430.600581420862], [9116.089276488992, -4065.000581423561]]}, {"length": 102.997812463, "source": 2086854567, "destination": 2086854397, "path": [[9120.639276488873, -3430.600581420862], [8508.689276489178, -3437.1005814222144]]}, {"length": 60.616849533, "source": 2069120305, "destination": 2069120311, "path": [[3171.1892764931804, 4033.149418578574], [2811.0892764914297, 4032.1494185775464]]}, {"length": 85.8837782017, "source": 2069120305, "destination": 2069120435, "path": [[3171.1892764931804, 4033.149418578574], [3681.3892764939737, 4034.79941857654]]}, {"length": 61.3257907699, "source": 2069120305, "destination": 134997404, "path": [[3171.1892764931804, 4033.149418578574], [3168.4892764900496, 4308.899418578704]]}, {"length": 62.8826675868, "source": 2069120305, "destination": 134997399, "path": [[3171.1892764931804, 4033.149418578574], [3173.9892764903743, 3750.399418578354]]}, {"length": 204.276542497, "source": 134967053, "destination": 134966043, "path": [[-12967.660723511188, -11100.600581421815], [-11753.660723506699, -11111.600581422465]]}, {"length": 111.98059785, "source": 134967053, "destination": 134970189, "path": [[-12967.660723511188, -11100.600581421815], [-12960.160723508807, -10597.10058142116]]}, {"length": 96.9855725556, "source": 2069376936, "destination": 2069376831, "path": [[-4104.710723510152, 5434.79941857683], [-4106.410723508702, 5778.4994185787755], [-4107.210723510945, 5870.899418578546]]}, {"length": 12.3485418104, "source": 2069376936, "destination": 2069376738, "path": [[-4104.710723510152, 5434.79941857683], [-4178.060723511124, 5434.199418576924]]}, {"length": 46.0922543827, "source": 2069376936, "destination": 2309494191, "path": [[-4104.710723510152, 5434.79941857683], [-4037.610723507612, 5434.79941857683], [-3830.910723507941, 5435.499418577905]]}, {"length": 12.7659086506, "source": 2069376936, "destination": 2068973823, "path": [[-4104.710723510152, 5434.79941857683], [-4104.510723507815, 5396.249418577526], [-4104.2107235114145, 5377.399418577511]]}, {"length": 7.91729630069, "source": 1933540850, "destination": 1933540864, "path": [[6143.089276491764, -7746.000581423828], [6143.589276490502, -7781.600581420634]]}, {"length": 6.38259883678, "source": 1933540850, "destination": 1933540833, "path": [[6143.089276491764, -7746.000581423828], [6142.639276490058, -7717.3005814223925]]}, {"length": 7.98699863988, "source": 1933540850, "destination": 135047493, "path": [[6143.089276491764, -7746.000581423828], [6095.639276495035, -7746.900581423688]]}, {"length": 51.4494864246, "source": 1933540850, "destination": 1933540845, "path": [[6143.089276491764, -7746.000581423828], [6448.739276493143, -7740.050581421798]]}, {"length": 86.6433410221, "source": 134975773, "destination": 4719854784, "path": [[214.33927648928375, -4148.600581423523], [213.43927649297711, -3759.0005814216456]]}, {"length": 84.8271858978, "source": 134975773, "destination": 135046515, "path": [[214.33927648928375, -4148.600581423523], [207.589276492115, -4530.000581421945]]}, {"length": 9.19845465511, "source": 134975773, "destination": 2139769367, "path": [[214.33927648928375, -4148.600581423523], [268.9892764919932, -4147.850581421863]]}, {"length": 77.6596338287, "source": 1933540854, "destination": 1933540179, "path": [[6045.339276489869, -7747.550581420626], [6045.339276489869, -7682.650581422478], [6043.389276491951, -7563.800581422697], [6043.089276488445, -7451.400581423684], [6042.789276492044, -7398.350581421909]]}, {"length": 7.88688445581, "source": 1933540854, "destination": 1933540868, "path": [[6045.339276489869, -7747.550581420626], [6045.339276489869, -7775.100581422834], [6045.889276492744, -7783.000581422783]]}, {"length": 8.46523868721, "source": 1933540854, "destination": 135047493, "path": [[6045.339276489869, -7747.550581420626], [6095.639276495035, -7746.900581423688]]}, {"length": 45.5739516823, "source": 1933540854, "destination": 1932196455, "path": [[6045.339276489869, -7747.550581420626], [5774.539276494295, -7750.850581423663]]}, {"length": 7.37202819237, "source": 1933540857, "destination": 135016306, "path": [[7941.439276493156, -7752.300581422844], [7941.1892764937875, -7719.150581422696]]}, {"length": 100.236656003, "source": 1933540857, "destination": 1930367395, "path": [[7941.439276493156, -7752.300581422844], [7984.439276491174, -7747.100581422473], [8225.139276490267, -7744.100581422941], [8536.53927649134, -7743.900581420604]]}, {"length": 49.5488940675, "source": 1933540857, "destination": 1933540860, "path": [[7941.439276493156, -7752.300581422844], [7914.089276489733, -7755.600581422328], [7769.339276492815, -7758.150581423706], [7647.389276492333, -7759.90058142284]]}, {"length": 361.316245891, "source": 1933540857, "destination": 1933540860, "path": [[7941.439276493156, -7752.300581422844], [7942.039276493062, -7850.100581421771], [7944.339276491519, -7952.900581422284], [7943.389276491075, -8158.800581423265], [7944.189276493318, -8368.150581421929], [7946.389276490607, -8457.350581423383], [7905.339276490508, -8465.10058142158], [7842.339276493249, -8470.550581421321], [7796.039276492194, -8472.600581423962], [7747.439276492685, -8473.600581421437], [7717.289276492067, -8473.2505814209], [7689.839276494581, -8469.8505814238], [7670.0892764947075, -8462.350581421419], [7658.389276492982, -8453.15058142404], [7652.539276492121, -8441.600581420516], [7651.189276494108, -8427.300581423935], [7652.989276493827, -8399.750581421727], [7655.239276495251, -8370.450581423938], [7655.239276495251, -8304.800581420579], [7655.689276489852, -8141.400581422431], [7651.639276488709, -8029.100581421034], [7650.289276490696, -7975.300581421152], [7648.039276489271, -7949.750581421], [7644.88927649154, -7910.650581422374], [7646.689276491259, -7868.450581423048], [7646.239276489552, -7789.450581423552], [7647.389276492333, -7759.90058142284]]}, {"length": 34.0202813043, "source": 2074050043, "destination": 2074050077, "path": [[9482.389276492142, 994.4994185779876], [9280.58927649289, 1003.0994185790121]]}, {"length": 49.5488940675, "source": 1933540860, "destination": 1933540857, "path": [[7647.389276492333, -7759.90058142284], [7769.339276492815, -7758.150581423706], [7914.089276489733, -7755.600581422328], [7941.439276493156, -7752.300581422844]]}, {"length": 361.316245891, "source": 1933540860, "destination": 1933540857, "path": [[7647.389276492333, -7759.90058142284], [7646.239276489552, -7789.450581423552], [7646.689276491259, -7868.450581423048], [7644.88927649154, -7910.650581422374], [7648.039276489271, -7949.750581421], [7650.289276490696, -7975.300581421152], [7651.639276488709, -8029.100581421034], [7655.689276489852, -8141.400581422431], [7655.239276495251, -8304.800581420579], [7655.239276495251, -8370.450581423938], [7652.989276493827, -8399.750581421727], [7651.189276494108, -8427.300581423935], [7652.539276492121, -8441.600581420516], [7658.389276492982, -8453.15058142404], [7670.0892764947075, -8462.350581421419], [7689.839276494581, -8469.8505814238], [7717.289276492067, -8473.2505814209], [7747.439276492685, -8473.600581421437], [7796.039276492194, -8472.600581423962], [7842.339276493249, -8470.550581421321], [7905.339276490508, -8465.10058142158], [7946.389276490607, -8457.350581423383], [7944.189276493318, -8368.150581421929], [7943.389276491075, -8158.800581423265], [7944.339276491519, -7952.900581422284], [7942.039276493062, -7850.100581421771], [7941.439276493156, -7752.300581422844]]}, {"length": 51.1334554045, "source": 1933540860, "destination": 2139783258, "path": [[7647.389276492333, -7759.90058142284], [7592.539276494392, -7760.700581421532], [7410.989276493751, -7762.850581421788], [7343.589276494811, -7764.650581421506]]}, {"length": 8.5873283452, "source": 1933540860, "destination": 1933540837, "path": [[7647.389276492333, -7759.90058142284], [7648.939276492683, -7721.300581422952]]}, {"length": 82.3850579752, "source": 2069376938, "destination": 2069376868, "path": [[-5070.06072351146, 5707.249418577476], [-5057.960723505062, 5698.09941857713], [-5044.560723504787, 5698.09941857713], [-5029.8107235065, 5701.149418577244], [-4989.610723505677, 5714.349418578735], [-4964.11072350611, 5719.449418577938], [-4944.0107235056985, 5720.449418578965], [-4917.160723508118, 5720.449418578965], [-4890.36072350757, 5717.399418578851], [-4870.210723510127, 5720.449418578965], [-4850.110723509715, 5725.499418577584], [-4827.3107235061725, 5739.749418577134], [-4801.810723506605, 5753.949418576099], [-4779.010723510169, 5760.049418576329], [-4756.2607235107635, 5761.049418577358], [-4737.460723511333, 5760.049418576329], [-4694.560723507379, 5750.899418575983], [-4615.4107235096835, 5725.499418577584]]}, {"length": 45.1906993152, "source": 2069376938, "destination": 2069379693, "path": [[-5070.06072351146, 5707.249418577476], [-5024.460723511482, 5730.599418576787], [-4993.61072350979, 5748.849418576896], [-4970.810723506247, 5766.1494185765605], [-4953.360723504829, 5784.399418576669], [-4941.310723509673, 5801.649418579302], [-4939.96072351166, 5867.049418576187]]}, {"length": 55.4665906864, "source": 2069376938, "destination": 2069376926, "path": [[-5070.06072351146, 5707.249418577476], [-5114.310723506322, 5691.999418576898], [-5143.810723510001, 5675.7994185794305], [-5161.260723511418, 5662.59941857794], [-5173.3107235065745, 5647.349418577363], [-5181.360723504724, 5631.099418579311], [-5185.410723505867, 5612.849418579202], [-5185.410723505867, 5597.599418578625], [-5182.710723509843, 5575.299418577373], [-5177.360723507718, 5553.949418576565], [-5177.360723507718, 5535.699418576456], [-5181.360723504724, 5521.449418576907], [-5190.760723507992, 5502.199418579323]]}, {"length": 8.01066053434, "source": 1933540864, "destination": 1933540866, "path": [[6143.589276490502, -7781.600581420634], [6095.989276488467, -7782.300581421709]]}, {"length": 113.083717792, "source": 1933540864, "destination": 1933541124, "path": [[6143.589276490502, -7781.600581420634], [6145.839276491926, -7939.100581420888], [6144.239276494545, -7951.250581420765], [6139.789276488727, -7966.650581423096], [6139.189276488822, -7978.00058142073], [6141.189276490877, -7990.750581420514], [6146.139276488328, -8002.000581420532], [6154.68927649232, -8012.20058142249], [6167.939276494394, -8023.100581421972], [6181.439276488732, -8030.750581422552], [6198.33927649438, -8037.200581423321], [6212.239276493392, -8043.700581421121], [6221.489276491355, -8049.800581421351], [6231.589276488592, -8059.350581422819], [6240.389276491953, -8070.400581424054], [6246.239276492815, -8082.650581421547], [6249.139276491178, -8096.95058142168], [6249.139276491178, -8105.450581421536], [6247.789276493166, -8114.800581420667], [6244.439276493096, -8124.850581420873], [6237.6892764888225, -8136.600581423181], [6230.039276488242, -8145.650581422359], [6217.639276492548, -8156.700581423593], [6207.539276488205, -8163.650581423099], [6195.189276489544, -8168.950581421086], [6180.0892764907185, -8173.700581423304], [6163.439276491545, -8175.900581420592], [6147.689276488677, -8176.450581423467], [6131.289276488871, -8175.250581423654], [6113.73927649339, -8171.0005814237265], [6104.789276491829, -8167.100581420783]]}, {"length": 7.91729630069, "source": 1933540864, "destination": 1933540850, "path": [[6143.589276490502, -7781.600581420634], [6143.089276491764, -7746.000581423828]]}, {"length": 100.941033834, "source": 1933540864, "destination": 1933603725, "path": [[6143.589276490502, -7781.600581420634], [6276.339276489296, -7779.650581422715], [6403.639276491902, -7777.500581422459], [6522.239276492314, -7775.400581422787], [6714.789276493604, -7773.050581423746], [6743.339276489734, -7772.750581423793]]}, {"length": 49.391394093, "source": 1429423360, "destination": 1962156896, "path": [[2326.0392764896665, -6395.250581423539], [2501.0392764883704, -6487.250581422188], [2518.0392764951876, -6480.000581422729], [2577.839276490579, -6488.750581421954]]}, {"length": 7.08271770176, "source": 1429423360, "destination": 1429423361, "path": [[2326.0392764896665, -6395.250581423539], [2304.5892764912423, -6422.6505814239945]]}, {"length": 35.8188504188, "source": 1429423360, "destination": 1962156892, "path": [[2326.0392764896665, -6395.250581423539], [2150.1892764916875, -6304.500581421735]]}, {"length": 47.7223933398, "source": 1429423360, "destination": 1429423302, "path": [[2326.0392764896665, -6395.250581423539], [2331.6392764911598, -6389.250581420924], [2454.689276490285, -6326.600581420649], [2476.3392764910463, -6320.600581421587], [2533.689276489781, -6315.4505814218], [2578.439276490485, -6314.950581423062]]}, {"length": 8.01066053434, "source": 1933540866, "destination": 1933540864, "path": [[6095.989276488467, -7782.300581421709], [6143.589276490502, -7781.600581420634]]}, {"length": 8.43216913867, "source": 1933540866, "destination": 1933540868, "path": [[6095.989276488467, -7782.300581421709], [6045.889276492744, -7783.000581422783]]}, {"length": 89.9421354223, "source": 1933540866, "destination": 1933541124, "path": [[6095.989276488467, -7782.300581421709], [6098.089276491692, -7998.450581421679], [6107.689276490191, -8034.000581421452], [6127.939276488803, -8068.900581420735], [6154.039276488276, -8103.700581422401], [6110.2892764921535, -8154.850581423289], [6104.789276491829, -8167.100581420783]]}, {"length": 7.87334744697, "source": 1933540866, "destination": 135047493, "path": [[6095.989276488467, -7782.300581421709], [6095.639276495035, -7746.900581423688]]}, {"length": 25.1238284755, "source": 2074050051, "destination": 135076353, "path": [[9467.589276489718, 4110.84941857709], [9569.889276491494, 4111.449418576995], [9616.839276489485, 4111.749418576948]]}, {"length": 85.1868703668, "source": 2074050051, "destination": 2074049995, "path": [[9467.589276489718, 4110.84941857709], [9466.239276491706, 3727.799418577149]]}, {"length": 86.9024372437, "source": 2074050051, "destination": 135074390, "path": [[9467.589276489718, 4110.84941857709], [9379.43927649343, 4110.499418576552], [8951.339276492832, 4108.899418579171]]}, {"length": 8.43216913867, "source": 1933540868, "destination": 1933540866, "path": [[6045.889276492744, -7783.000581422783], [6095.989276488467, -7782.300581421709]]}, {"length": 88.6705898787, "source": 1933540868, "destination": 1933541124, "path": [[6045.889276492744, -7783.000581422783], [6049.139276491644, -7830.200581423696], [6052.939276493418, -7871.35058142141], [6054.2392764944, -7948.6005814217715], [6054.2392764944, -8025.65058142335], [6054.3892764926, -8095.400581421331], [6055.289276488907, -8110.050581422001], [6057.289276490963, -8121.30058142202], [6062.03927649318, -8132.200581421501], [6067.889276494043, -8141.350581421847], [6075.939276492192, -8150.05058142404], [6085.189276490155, -8157.050581420577], [6097.5392764888165, -8164.000581423636], [6104.789276491829, -8167.100581420783]]}, {"length": 7.88688445581, "source": 1933540868, "destination": 1933540854, "path": [[6045.889276492744, -7783.000581422783], [6045.339276489869, -7775.100581422834], [6045.339276489869, -7747.550581420626]]}, {"length": 137.439747541, "source": 1933540868, "destination": 1932196479, "path": [[6045.889276492744, -7783.000581422783], [6015.489276492758, -7783.450581420937], [5751.889276488953, -7786.650581422805], [5562.139276491962, -7788.800581423061], [5432.2892764915305, -7790.900581422733], [5307.23927649035, -7792.400581422498], [5290.389276488839, -7792.200581423714], [5274.889276492445, -7791.550581423224], [5261.139276491633, -7788.800581423061], [5248.789276492971, -7784.550581423133], [5238.3892764922275, -7779.000581422224], [5234.63927649459, -7776.400581423814]]}, {"length": 31.3933545583, "source": 2074050053, "destination": 2062743232, "path": [[9816.339276490282, 1089.849418576705], [10002.689276490173, 1083.9494185788112]]}, {"length": 20.536909768, "source": 2074050054, "destination": 2074050067, "path": [[9638.239276490878, 937.8994185773593], [9637.839276493309, 1006.3994185784964], [9637.639276490972, 1030.2494185765454]]}, {"length": 31.2422188883, "source": 2074050054, "destination": 2074050043, "path": [[9638.239276490878, 937.8994185773593], [9620.539276490092, 958.8994185776301], [9601.739276490662, 974.099418577623], [9580.289276492238, 985.2994185770569], [9549.389276493514, 991.699418577241], [9482.389276492142, 994.4994185779876]]}, {"length": 47.9255650549, "source": 2358476297, "destination": 2355655002, "path": [[-1136.5107235050687, 5113.349418579105], [-1137.9107235072183, 5328.849418578585]]}, {"length": 12.6673894878, "source": 2358476297, "destination": 2069036831, "path": [[-1136.5107235050687, 5113.349418579105], [-1211.7607235069272, 5112.999418578567]]}, {"length": 48.0701508181, "source": 2358476297, "destination": 2358476445, "path": [[-1136.5107235050687, 5113.349418579105], [-1135.160723507056, 4897.1994185791345]]}, {"length": 95.9286722429, "source": 2358476297, "destination": 2703728623, "path": [[-1136.5107235050687, 5113.349418579105], [-566.6607235070842, 5115.74941857873]]}, {"length": 56.4434857015, "source": 2074050058, "destination": 2074050009, "path": [[9701.589276488676, 1403.7994185791547], [9703.489276489563, 1149.9994185761864]]}, {"length": 84.4541492798, "source": 2074050058, "destination": 2074050067, "path": [[9701.589276488676, 1403.7994185791547], [9680.489276490789, 1282.8994185767328], [9672.83927649021, 1164.9494185768106], [9670.089276490045, 1102.2994185765356], [9664.789276492058, 1075.5994185771556], [9653.989276493747, 1051.5494185767693], [9637.639276490972, 1030.2494185765454]]}, {"length": 48.2154213374, "source": 2358476300, "destination": 2358476440, "path": [[-1862.0107235065575, 5111.349418577049], [-1862.0607235106945, 5085.649418578697], [-1862.3107235100633, 5034.599418578978], [-1860.6107235115132, 4894.549418576588]]}, {"length": 96.971796289, "source": 2358476300, "destination": 2358476298, "path": [[-1862.0107235065575, 5111.349418577049], [-1410.2107235061112, 5111.749418578171], [-1285.9607235071735, 5112.549418576862]]}, {"length": 15.8488157181, "source": 2358476300, "destination": 2069036787, "path": [[-1862.0107235065575, 5111.349418577049], [-1956.160723509015, 5111.249418579433]]}, {"length": 48.8384606412, "source": 2358476300, "destination": 2355676189, "path": [[-1862.0107235065575, 5111.349418577049], [-1861.8607235083573, 5182.899418578301], [-1862.5107235052951, 5312.249418576443], [-1862.110723507726, 5330.949418578257]]}, {"length": 52.6574245709, "source": 2358476301, "destination": 2357086393, "path": [[-2047.5607235113102, 5110.749418577143], [-2360.3607235074264, 5108.999418578009]]}, {"length": 48.2270126138, "source": 2358476301, "destination": 2357086466, "path": [[-2047.5607235113102, 5110.749418577143], [-2045.1107235075483, 4893.899418576098]]}, {"length": 15.385984879, "source": 2358476301, "destination": 2069036787, "path": [[-2047.5607235113102, 5110.749418577143], [-1956.160723509015, 5111.249418579433]]}, {"length": 48.4045968427, "source": 2358476301, "destination": 2355676190, "path": [[-2047.5607235113102, 5110.749418577143], [-2049.8107235056295, 5328.399418576879]]}, {"length": 5.22576222943, "source": 2586992557, "destination": 2568599769, "path": [[676.5892764946102, -1984.450581421271], [707.639276491534, -1984.350581423655]]}, {"length": 8.32946839581, "source": 2586992557, "destination": 2586992597, "path": [[676.5892764946102, -1984.450581421271], [677.1392764903794, -1947.0005814206104]]}, {"length": 45.4251906113, "source": 2586992557, "destination": 2568599766, "path": [[676.5892764946102, -1984.450581421271], [406.6892764882368, -1985.5005814228832]]}, {"length": 15.8009752855, "source": 2074050067, "destination": 2074050025, "path": [[9637.639276490972, 1030.2494185765454], [9637.089276495204, 1101.2994185790603]]}, {"length": 27.5980707045, "source": 2074050067, "destination": 2074050043, "path": [[9637.639276490972, 1030.2494185765454], [9603.039276491643, 1014.9994185759681], [9561.43927648867, 1004.8494185781465], [9482.389276492142, 994.4994185779876]]}, {"length": 114.423073465, "source": 2074050069, "destination": 135076226, "path": [[9704.489276494143, 1009.9494185773494], [9709.63927649393, 495.44941857604385]]}, {"length": 95.8605964764, "source": 2069036566, "destination": 2311060035, "path": [[-4094.3607235064405, 4003.6494185784477], [-3988.510723509364, 4003.4494185761105], [-3574.5607235071475, 4006.799418576179], [-3524.910723506025, 4006.849418576763]]}, {"length": 49.471417935, "source": 2069036566, "destination": 2311059948, "path": [[-4094.3607235064405, 4003.6494185784477], [-4096.06072350499, 4213.249418576481], [-4095.860723509759, 4226.099418577433]]}, {"length": 12.5591360112, "source": 2069036566, "destination": 2069036987, "path": [[-4094.3607235064405, 4003.6494185784477], [-4168.960723511362, 4004.449418577138]]}, {"length": 48.0915671658, "source": 2069036566, "destination": 2310516605, "path": [[-4094.3607235064405, 4003.6494185784477], [-4094.1607235112087, 3984.249418579111], [-4093.8107235106713, 3787.3994185773086]]}, {"length": 52.38664111, "source": 2086854575, "destination": 135022770, "path": [[8951.239276491662, -1494.5505814232263], [8954.339276492363, -1730.1005814225334]]}, {"length": 62.2464983701, "source": 2086854575, "destination": 877895724, "path": [[8951.239276491662, -1494.5505814232263], [8948.589276492668, -1294.1005814219864], [8953.089276488412, -1250.300581421726], [8962.039276489975, -1215.4505814230276]]}, {"length": 115.961677542, "source": 2086854575, "destination": 2086854509, "path": [[8951.239276491662, -1494.5505814232263], [8262.23927649039, -1493.5505814221983]]}, {"length": 52.6326864378, "source": 2074050077, "destination": 134968225, "path": [[9280.58927649289, 1003.0994185790121], [8967.889276490838, 1002.8994185766749]]}, {"length": 65.7442706033, "source": 2074050077, "destination": 2074050025, "path": [[9280.58927649289, 1003.0994185790121], [9441.389276489077, 1027.2494185770142], [9527.98927649212, 1045.1494185765853], [9573.5892764921, 1056.3494185760192], [9600.43927648968, 1067.4994185784215], [9615.189276495073, 1076.6494185787678], [9637.089276495204, 1101.2994185790603]]}, {"length": 36.5635777916, "source": 2586992560, "destination": 2586992561, "path": [[677.9392764926229, -1888.1005814215257], [895.1892764912373, -1888.1005814215257]]}, {"length": 9.02935281402, "source": 2586992560, "destination": 2586992563, "path": [[677.9392764926229, -1888.1005814215257], [677.3892764897482, -1928.7005814234703]]}, {"length": 10.3405562244, "source": 2586992560, "destination": 2586992583, "path": [[677.9392764926229, -1888.1005814215257], [645.7392764929182, -1848.500581420609]]}, {"length": 9.02835459912, "source": 2586992560, "destination": 2586992558, "path": [[677.9392764926229, -1888.1005814215257], [677.9392764926229, -1847.5005814231338]]}, {"length": 33.0929905196, "source": 2586992560, "destination": 2586992567, "path": [[677.9392764926229, -1888.1005814215257], [633.6892764906565, -1879.9505814222073], [588.0892764906775, -1881.0005814238195], [537.1392764885741, -1884.0005814233507], [484.8392764884579, -1895.2005814227846]]}, {"length": 49.3043124383, "source": 4224950695, "destination": 4224950738, "path": [[6885.239276492428, 3627.3994185762604], [6886.339276491071, 3405.6994185789335]]}, {"length": 35.660483011, "source": 2585900621, "destination": 2585900432, "path": [[-2013.6107235089185, -1485.0005814217582], [-2014.3607235070249, -1645.3505814233438]]}, {"length": 8.69527713847, "source": 2585900621, "destination": 2585900617, "path": [[-2013.6107235089185, -1485.0005814217582], [-2013.4607235107183, -1445.9005814231318]]}, {"length": 12.9610101566, "source": 2585900621, "destination": 2585900629, "path": [[-2013.6107235089185, -1485.0005814217582], [-2037.860723511642, -1477.8505814234677], [-2049.2607235098603, -1473.3005814235867], [-2055.2607235089226, -1466.7005814210654], [-2056.6107235069353, -1445.9005814231318]]}, {"length": 11.1838613129, "source": 135010418, "destination": 2139783264, "path": [[4594.289276489861, -1241.9005814230388], [4660.739276488357, -1241.9505814236231]]}, {"length": 82.3445018852, "source": 135010418, "destination": 1429422611, "path": [[4594.289276489861, -1241.9005814230388], [4362.139276494759, -1240.200581420936], [4273.6892764949625, -1258.9505814233348], [4195.439276493573, -1288.7005814228303], [4137.439276490795, -1327.8005814214566]]}, {"length": 10.8326278507, "source": 135010418, "destination": 1942240487, "path": [[4594.289276489861, -1241.9005814230388], [4595.489276489672, -1193.20058142236]]}, {"length": 36.5418620896, "source": 2568679346, "destination": 2568679360, "path": [[508.6392764894754, -2390.4505814229537], [536.4392764946047, -2386.800581422932], [570.2892764887224, -2383.700581422232], [602.7892764919329, -2382.7005814212043], [662.3892764920924, -2384.750581423845], [690.7892764900225, -2389.8505814230475], [709.5892764894529, -2398.05058142295], [708.8892764883781, -2389.2005814225568]]}, {"length": 1.69825663677, "source": 2568679346, "destination": 2568599627, "path": [[508.6392764894754, -2390.4505814229537], [505.93927649345005, -2397.800581423581]]}, {"length": 33.3358406867, "source": 2568679346, "destination": 2568599654, "path": [[508.6392764894754, -2390.4505814229537], [513.9392764945683, -2376.1505814228203], [522.0392764897497, -2349.6005814216405], [531.4892764900492, -2330.250581422888], [542.9892764894362, -2314.9505814217264], [549.6892764895733, -2306.3005814236703], [559.7892764939161, -2297.5505814208927], [574.4892764951715, -2286.5005814232118], [589.9392764945333, -2278.400581420925], [612.2392764922324, -2272.150581422494]]}, {"length": 33.6007262369, "source": 4719820337, "destination": 4719820416, "path": [[-1707.110723508265, -2369.80058142322], [-1706.3107235060215, -2464.0005814227097], [-1700.9107235068655, -2498.150581423886], [-1686.110723511547, -2517.6505814208385]]}, {"length": 62.9060881546, "source": 4719820337, "destination": 2568624537, "path": [[-1707.110723508265, -2369.80058142322], [-1356.4107235097822, -2364.2005814217273], [-1334.3107235073148, -2369.000581420977]]}, {"length": 62.7562701372, "source": 4719820337, "destination": 4719494628, "path": [[-1707.110723508265, -2369.80058142322], [-2079.910723509215, -2375.8005814222824]]}, {"length": 9.02935281402, "source": 2586992563, "destination": 2586992560, "path": [[677.3892764897482, -1928.7005814234703], [677.9392764926229, -1888.1005814215257]]}, {"length": 36.7325294602, "source": 2586992563, "destination": 2586992562, "path": [[677.3892764897482, -1928.7005814234703], [895.6392764929433, -1929.7005814209456]]}, {"length": 4.07006256124, "source": 2586992563, "destination": 2586992597, "path": [[677.3892764897482, -1928.7005814234703], [677.1392764903794, -1947.0005814206104]]}, {"length": 11.0940491442, "source": 134982238, "destination": 2291095886, "path": [[-8588.560723509887, 5924.34941857789], [-8522.660723507159, 5924.699418578428]]}, {"length": 10.9591844335, "source": 134982238, "destination": 1806083093, "path": [[-8588.560723509887, 5924.34941857789], [-8653.66072351037, 5924.299418577306]]}, {"length": 16.5457506329, "source": 134982238, "destination": 2139774710, "path": [[-8588.560723509887, 5924.34941857789], [-8588.26072350638, 5998.749418576921]]}, {"length": 16.2347916307, "source": 134982238, "destination": 2292321463, "path": [[-8588.560723509887, 5924.34941857789], [-8587.760723507643, 5851.349418577456]]}, {"length": 62.3767129892, "source": 2573122290, "destination": 1567538290, "path": [[-3312.960723505398, -2588.200581421063], [-3354.1607235108017, -2716.100581423575], [-3389.6107235094064, -2862.5005814220117]]}, {"length": 292.611020273, "source": 2573122290, "destination": 4847713530, "path": [[-3312.960723505398, -2588.200581421063], [-3318.66072350806, -2711.6005814207256], [-3323.1607235109095, -2756.6005814207983], [-3336.460723510015, -2943.8005814235166], [-3338.5107235091027, -3016.7005814227823], [-3336.560723511184, -3062.40058142393], [-3331.910723510134, -3108.1005814215246], [-3324.910723506491, -3152.6005814228597], [-3313.6107235094414, -3205.750581422251], [-3295.1607235105485, -3274.100581421635], [-3268.960723509906, -3341.0505814224225], [-3242.8607235104323, -3398.100581421204], [-3219.660723509321, -3443.600581423567], [-3164.660723506074, -3530.100581421891], [-2980.5107235105766, -3774.800581421545], [-2944.9107235066663, -3802.900581423074], [-2910.4107235085053, -3820.200581422739]]}, {"length": 109.630119961, "source": 135084639, "destination": 135084642, "path": [[-469.1607235116635, -10091.600581422], [182.38927648894787, -10091.4505814238]]}, {"length": 46.4470085473, "source": 135084639, "destination": 135097411, "path": [[-469.1607235116635, -10091.600581422], [-470.8607235102136, -9882.750581422073]]}, {"length": 111.978223524, "source": 135084639, "destination": 135084637, "path": [[-469.1607235116635, -10091.600581422], [-1134.6607235083184, -10089.600581423496]]}, {"length": 12.3401455384, "source": 2069036606, "destination": 2069376922, "path": [[-4172.410723505493, 4552.299418577377], [-4099.110723508658, 4551.649418576886]]}, {"length": 48.4038520534, "source": 2069036606, "destination": 2069376925, "path": [[-4172.410723505493, 4552.299418577377], [-4173.810723507642, 4769.949418577113]]}, {"length": 47.5921083361, "source": 2069036606, "destination": 2069376845, "path": [[-4172.410723505493, 4552.299418577377], [-4171.06072350748, 4338.299418577662]]}, {"length": 208.872969383, "source": 1942224447, "destination": 1942240496, "path": [[5744.739276494215, -1523.800581423984], [5765.889276489133, -1507.850581422332], [5776.589276493382, -1491.6005814207267], [5783.639276494057, -1469.0005814230744], [5783.639276494057, -1444.6005814221508], [5784.489276493332, -1332.3505814213377], [5784.639276491533, -1309.95058142247], [5791.33927649167, -1280.5005814229276], [5806.439276490493, -1257.8505814211383], [5838.289276489661, -1227.7505814211054], [5866.78927648876, -1210.1505814214875], [5898.639276495032, -1204.400581421794], [5937.539276494874, -1200.3505814206505], [6004.589276493278, -1200.3505814206505], [6023.689276489108, -1198.00058142161], [6034.089276489851, -1191.2005814238569], [6041.139276490526, -1180.7505814225294], [6039.489276489007, -1169.900581423633], [6035.43927649497, -728.3505814221769]]}, {"length": 249.10823596, "source": 1942224447, "destination": 1942220075, "path": [[5744.739276494215, -1523.800581423984], [5747.0892764897035, -1543.4005814221052], [5751.139276490847, -1757.5505814235726], [5752.789276492365, -1997.7505814239294], [5752.489276488859, -2024.4505814233094], [5743.4392764932345, -2041.3505814218524], [5695.139276490125, -2092.1005814216187], [5646.539276490614, -2130.0005814239853], [5497.989276491921, -2212.900581422872], [5266.989276492495, -2215.2505814219126], [5076.53927649443, -2218.300581422028], [5040.789276492319, -2216.3505814205564]]}, {"length": 77.8477641031, "source": 1942224447, "destination": 1429422573, "path": [[5744.739276494215, -1523.800581423984], [5729.989276488823, -1506.550581421351], [5709.889276488411, -1493.3505814234138], [5683.089276494968, -1487.250581423183], [5652.239276493276, -1484.2005814230674], [5621.389276491584, -1484.2005814230674], [5599.93927649316, -1476.1005814207806], [5584.8392764943355, -1464.2005814238246], [5577.139276489617, -1450.7005814223817], [5584.8392764943355, -1434.8005814213138], [5595.8892764920165, -1417.200581421696], [5660.289276491426, -1369.5005814220451], [5681.73927648985, -1350.2505814209087], [5693.439276491574, -1327.2005814215504], [5693.439276491574, -1309.95058142247], [5692.839276491668, -1289.7505814208898]]}, {"length": 5.7590684533, "source": 885378115, "destination": 885378093, "path": [[9965.489276488881, -3104.500581422087], [9965.489276488881, -3130.4005814227767]]}, {"length": 332.566831283, "source": 3688816196, "destination": 2080507888, "path": [[239.7392764947881, -11059.900581422255], [226.089276495145, -10975.600581421219], [224.78927649416391, -10679.350581423108], [235.08927649373845, -10635.95058142397], [237.08927648868894, -10182.000581423268], [235.7892764948133, -10124.150581422242], [228.7892764911703, -10041.100581421602], [234.98927649256984, -9603.050581421969], [244.38927648873232, -9566.700581423504]]}, {"length": 72.0165173676, "source": 3688816196, "destination": 3688816205, "path": [[239.7392764947881, -11059.900581422255], [305.3892764910415, -11062.900581421785], [355.78927649027037, -11065.450581423163], [394.98927649361804, -11070.100581420662], [432.4892764913102, -11079.450581423345], [470.5892764889086, -11094.250581422217], [501.339276489432, -11113.75058142272], [518.7392764938181, -11141.250581420793], [528.2392764911492, -11180.250581421802], [527.8392764935802, -11223.300581423957]]}, {"length": 60.1459282664, "source": 135016374, "destination": 3146412232, "path": [[-4135.4107235065385, -1263.5005814232159], [-4135.510723507707, -1216.1505814205498], [-4136.010723506444, -993.0505814210733]]}, {"length": 63.855318377, "source": 135016374, "destination": 3146412242, "path": [[-4135.4107235065385, -1263.5005814232159], [-4083.7607235104656, -1263.3005814208786], [-3756.01072350662, -1262.1005814210662]]}, {"length": 11.3017033374, "source": 135016374, "destination": 3146557051, "path": [[-4135.4107235065385, -1263.5005814232159], [-4202.560723506111, -1263.7505814225847]]}, {"length": 61.6700423401, "source": 135016374, "destination": 3148277103, "path": [[-4135.4107235065385, -1263.5005814232159], [-4136.310723509951, -1317.750581421251], [-4137.560723506795, -1540.8005814236958]]}, {"length": 33.0929905196, "source": 2586992567, "destination": 2586992560, "path": [[484.8392764884579, -1895.2005814227846], [537.1392764885741, -1884.0005814233507], [588.0892764906775, -1881.0005814238195], [633.6892764906565, -1879.9505814222073], [677.9392764926229, -1888.1005814215257]]}, {"length": 2.4646671665, "source": 2586992567, "destination": 2586992585, "path": [[484.8392764884579, -1895.2005814227846], [473.68927648960835, -1902.4005814216594]]}, {"length": 14.5660160778, "source": 2586992567, "destination": 2586992581, "path": [[484.8392764884579, -1895.2005814227846], [545.3892764890611, -1848.4005814229931]]}, {"length": 10.6978374018, "source": 2286590562, "destination": 2286590560, "path": [[-7587.310723508267, 6430.899418578661], [-7523.760723508132, 6430.949418579246]]}, {"length": 13.5098823856, "source": 2286590562, "destination": 2286590520, "path": [[-7587.310723508267, 6430.899418578661], [-7587.310723508267, 6491.649418578049]]}, {"length": 28.4015913514, "source": 2286590562, "destination": 2285539214, "path": [[-7587.310723508267, 6430.899418578661], [-7596.560723506229, 6430.899418578661], [-7756.010723511508, 6428.549418576068]]}, {"length": 3.33627476169, "source": 2286590562, "destination": 2286590583, "path": [[-7587.310723508267, 6430.899418578661], [-7587.310723508267, 6415.899418577454]]}, {"length": 23.3073298412, "source": 3688816206, "destination": 3688816211, "path": [[529.0892764904243, -11425.600581421946], [626.0892764942128, -11451.95058142079], [638.7892764934122, -11477.000581422202]]}, {"length": 44.9899803906, "source": 3688816206, "destination": 3688816205, "path": [[529.0892764904243, -11425.600581421946], [527.8392764935802, -11223.300581423957]]}, {"length": 142.923892906, "source": 2587024976, "destination": 2587024992, "path": [[1276.739276491412, -4238.650581420699], [912.1392764939174, -4238.700581421284], [912.1892764909489, -4329.6005814212895], [1276.739276491412, -4329.5505814207045]]}, {"length": 19.0032185855, "source": 2587024976, "destination": 3009732857, "path": [[1276.739276491412, -4238.650581420699], [1276.5392764890748, -4324.100581420964]]}, {"length": 154.580341449, "source": 2587024976, "destination": 3009732857, "path": [[1276.739276491412, -4238.650581420699], [1680.589276489286, -4239.400581422359], [1681.1392764921607, -4322.700581422368], [1276.5392764890748, -4324.100581420964]]}, {"length": 21.1277073006, "source": 2587024976, "destination": 2587024981, "path": [[1276.739276491412, -4238.650581420699], [1277.3892764883499, -4185.650581423061], [1277.3392764913183, -4143.65058142252]]}, {"length": 16.2946374714, "source": 2140986962, "destination": 2140986963, "path": [[391.83927648878125, -8070.900581422791], [484.2892764926887, -8092.700581421752]]}, {"length": 124.197637949, "source": 2140986962, "destination": 2140986966, "path": [[391.83927648878125, -8070.900581422791], [324.73927649334655, -8054.2505814236165], [-134.56072350948034, -7962.95058142249], [-323.1107235066588, -7933.30058142061]]}, {"length": 442.289906607, "source": 2140986962, "destination": 1424938727, "path": [[391.83927648878125, -8070.900581422791], [435.98927648957897, -7969.15058142389], [486.2392764906076, -7859.4505814209015], [553.4892764913479, -7730.600581421499], [665.3892764916236, -7539.350581421189], [960.8392764945961, -7062.000581420591], [1062.7392764916976, -6892.150581421674], [1132.389276492063, -6777.2005814212835], [1215.93927649144, -6629.7505814212345], [1382.289276492088, -6349.5005814218075], [1440.289276494866, -6248.450581423981]]}, {"length": 13.5723469768, "source": 2140986963, "destination": 2080507908, "path": [[484.2892764926887, -8092.700581421752], [527.239276493674, -8101.950581423267], [556.8892764884481, -8117.400581422629]]}, {"length": 16.2946374714, "source": 2140986963, "destination": 2140986962, "path": [[484.2892764926887, -8092.700581421752], [391.83927648878125, -8070.900581422791]]}, {"length": 14.671133816, "source": 2140986963, "destination": 2573122508, "path": [[484.2892764926887, -8092.700581421752], [456.18927649115903, -8155.150581423242]]}, {"length": 21.1277073006, "source": 2587024981, "destination": 2587024976, "path": [[1277.3392764913183, -4143.65058142252], [1277.3892764883499, -4185.650581423061], [1276.739276491412, -4238.650581420699]]}, {"length": 95.2450811457, "source": 2587024981, "destination": 2587024973, "path": [[1277.3392764913183, -4143.65058142252], [711.3892764891716, -4145.600581423992]]}, {"length": 82.8036801358, "source": 2587024981, "destination": 134975775, "path": [[1277.3392764913183, -4143.65058142252], [1364.4892764901329, -4142.300581420955], [1769.3392764925875, -4140.2505814218675]]}, {"length": 50.8068351691, "source": 2140986966, "destination": 1393871512, "path": [[-323.1107235066588, -7933.30058142061], [-373.9607235075937, -7928.450581420776], [-585.860723511189, -7924.900581421924], [-583.4607235115641, -7954.150581422681]]}, {"length": 7.27232675246, "source": 2140986966, "destination": 1393871529, "path": [[-323.1107235066588, -7933.30058142061], [-323.0607235096272, -7966.000581422605]]}, {"length": 124.197637949, "source": 2140986966, "destination": 2140986962, "path": [[-323.1107235066588, -7933.30058142061], [-134.56072350948034, -7962.95058142249], [324.73927649334655, -8054.2505814236165], [391.83927648878125, -8070.900581422791]]}, {"length": 71.7140441148, "source": 2140986966, "destination": 1393871502, "path": [[-323.1107235066588, -7933.30058142061], [-323.3607235060276, -7834.600581421824], [-318.8107235061466, -7808.5005814223505], [-308.86072350710947, -7780.300581423206], [-298.0107235117657, -7760.100581421625], [-271.4607235105859, -7730.800581423836], [-250.3107235085622, -7712.800581423096], [-227.86072350555742, -7698.500581422963], [-192.26072350875256, -7682.150581423741], [-151.0107235063174, -7671.100581422507]]}, {"length": 60.0906039421, "source": 2086776761, "destination": 135012761, "path": [[-4151.310723507606, 1235.0494185788818], [-4153.060723510293, 1505.249418578103]]}, {"length": 61.8141212823, "source": 2086776761, "destination": 134968182, "path": [[-4151.310723507606, 1235.0494185788818], [-4149.560723504919, 957.0994185779114]]}, {"length": 124.119064602, "source": 2086776761, "destination": 2086776743, "path": [[-4151.310723507606, 1235.0494185788818], [-4888.710723506051, 1232.3494185793038]]}, {"length": 1.11927223705, "source": 844922460, "destination": 2703708313, "path": [[-555.860723508772, -1586.7505814206595], [-555.860723508772, -1581.7005814220408]]}, {"length": 142.923892906, "source": 2587024992, "destination": 2587024976, "path": [[1276.739276491412, -4329.5505814207045], [912.1892764909489, -4329.6005814212895], [912.1392764939174, -4238.700581421284], [1276.739276491412, -4238.650581420699]]}, {"length": 1.21205445874, "source": 2587024992, "destination": 3009732857, "path": [[1276.739276491412, -4329.5505814207045], [1276.5392764890748, -4324.100581420964]]}, {"length": 20.9605308768, "source": 2587024992, "destination": 2587024998, "path": [[1276.739276491412, -4329.5505814207045], [1277.3392764913183, -4423.800581420778]]}, {"length": 282.336495397, "source": 1567555174, "destination": 1277679555, "path": [[55.539276495153445, -5511.250581420768], [146.4892764886372, -5554.550581422291], [278.1892764929239, -5618.200581423594], [732.9892764929014, -5841.600581423023], [1035.6892764917802, -5973.700581421326], [1324.5392764886788, -6107.250581422363], [1484.139276492158, -6176.350581423407]]}, {"length": 12.817689704, "source": 1567555174, "destination": 885856813, "path": [[55.539276495153445, -5511.250581420768], [12.789276489399981, -5558.950581423971]]}, {"length": 14.1616173983, "source": 1567555174, "destination": 1932196037, "path": [[55.539276495153445, -5511.250581420768], [102.38927649197649, -5458.350581420746]]}, {"length": 69.250222607, "source": 2587025000, "destination": 2587025002, "path": [[1276.0392764903372, -4514.25058142263], [1641.939276488813, -4513.050581422817], [1641.7392764935812, -4478.550581421104]]}, {"length": 20.1164573977, "source": 2587025000, "destination": 2587024998, "path": [[1276.0392764903372, -4514.25058142263], [1277.3392764913183, -4423.800581420778]]}, {"length": 145.44963269, "source": 2587025000, "destination": 2587024998, "path": [[1276.0392764903372, -4514.25058142263], [904.5892764945052, -4515.500581423026], [904.0392764916305, -4425.050581421175], [1277.3392764913183, -4423.800581420778]]}, {"length": 69.250222607, "source": 2587025002, "destination": 2587025000, "path": [[1641.7392764935812, -4478.550581421104], [1641.939276488813, -4513.050581422817], [1276.0392764903372, -4514.25058142263]]}, {"length": 15.1048806189, "source": 2587025002, "destination": 3733365739, "path": [[1641.7392764935812, -4478.550581421104], [1731.489276494358, -4477.850581423581]]}, {"length": 73.7097389709, "source": 2587025002, "destination": 2587024998, "path": [[1641.7392764935812, -4478.550581421104], [1641.3892764930438, -4422.600581420966], [1277.3392764913183, -4423.800581420778]]}, {"length": 15.1505508183, "source": 2568600167, "destination": 2568600161, "path": [[-536.3107235112352, -2774.350581422169], [-476.36072351053826, -2815.4505814228514], [-473.6607235074075, -2822.05058142182]]}, {"length": 18.2917692159, "source": 2568600167, "destination": 2568600170, "path": [[-536.3107235112352, -2774.350581422169], [-535.660723507192, -2692.1005814237733]]}, {"length": 30.5789369885, "source": 2568600167, "destination": 2568600116, "path": [[-536.3107235112352, -2774.350581422169], [-537.360723505742, -2911.850581423181]]}, {"length": 2.76781968777, "source": 2587025004, "destination": 134956059, "path": [[1773.4892764948995, -4477.500581423044], [1773.389276493731, -4465.050581423213]]}, {"length": 9.10687647315, "source": 2587025004, "destination": 3758384277, "path": [[1773.4892764948995, -4477.500581423044], [1773.7392764942683, -4518.450581421974]]}, {"length": 7.06870637706, "source": 2587025004, "destination": 3733365739, "path": [[1773.4892764948995, -4477.500581423044], [1731.489276494358, -4477.850581423581]]}, {"length": 58.1995237786, "source": 2069036653, "destination": 2069036329, "path": [[-104.51072351003177, 3209.549418578206], [-104.46072350589475, 3471.2494185775713]]}, {"length": 10.8326278507, "source": 2069036653, "destination": 2069036701, "path": [[-104.51072351003177, 3209.549418578206], [-103.16072350491368, 3160.849418577527]]}, {"length": 59.4204805407, "source": 2069036653, "destination": 134980214, "path": [[-104.51072351003177, 3209.549418578206], [248.48927649401276, 3210.849418579187]]}, {"length": 121.274208602, "source": 2069036654, "destination": 2069036840, "path": [[-480.8607235062823, 3469.8994185760057], [-1201.3107235091525, 3467.249418577012]]}, {"length": 63.3598533143, "source": 2069036654, "destination": 2069036329, "path": [[-480.8607235062823, 3469.8994185760057], [-104.46072350589475, 3471.2494185775713]]}, {"length": 58.2001432125, "source": 2069036654, "destination": 134980211, "path": [[-480.8607235062823, 3469.8994185760057], [-479.1607235077322, 3208.1994185766407]]}, {"length": 60.44629243, "source": 2069036654, "destination": 135025217, "path": [[-480.8607235062823, 3469.8994185760057], [-482.56072350483237, 3741.699418576161]]}, {"length": 0.697630101294, "source": 2293562991, "destination": 2309493760, "path": [[-4103.760723509708, 6442.649418577417], [-4103.760723509708, 6445.799418578701]]}, {"length": 47.4692349809, "source": 2293562991, "destination": 2068973890, "path": [[-4103.760723509708, 6442.649418577417], [-4103.160723509802, 6229.199418577025]]}, {"length": 13.2737679539, "source": 2293562991, "destination": 2294600111, "path": [[-4103.760723509708, 6442.649418577417], [-4153.760723511368, 6442.449418578633], [-4182.610723511005, 6442.399418578048]]}, {"length": 130.204010704, "source": 2069036656, "destination": 2311060168, "path": [[-4909.810723511044, 4000.499418577164], [-4907.410723511419, 3815.6494185770384], [-4906.0607235063, 3789.2494185776113], [-4901.810723509925, 3772.1994185773156], [-4892.360723509626, 3755.349418579357], [-4878.110723510076, 3740.89941857747], [-4861.410723506765, 3733.3494185780582], [-4837.11072350701, 3728.1994185782705], [-4816.21072351146, 3727.7494185765645], [-4690.460723509204, 3728.3994185770553], [-4458.360723511134, 3728.7494185775927]]}, {"length": 61.4725844608, "source": 2069036656, "destination": 135032884, "path": [[-4909.810723511044, 4000.499418577164], [-4911.860723510131, 4085.899418576844], [-4911.410723508425, 4146.549418578616], [-4911.660723507794, 4207.399418579172], [-4912.4607235100375, 4276.899418577785]]}, {"length": 111.447881317, "source": 2069036656, "destination": 2311060037, "path": [[-4909.810723511044, 4000.499418577164], [-4759.110723504989, 4000.4494185765793], [-4695.110723510254, 4000.1994185772105], [-4650.7107235100875, 4000.94941857887], [-4539.810723507288, 4003.4994185766946], [-4247.810723505552, 4004.9994185764604]]}, {"length": 98.1414264594, "source": 2285540627, "destination": 2284151911, "path": [[-6493.510723508678, 4330.599418576498], [-6644.260723511763, 4330.649418577082], [-6751.410723509821, 4330.649418577082], [-6870.560723506003, 4329.2994185790685], [-7033.610723510719, 4328.8994185779475], [-7076.5107235075675, 4328.799418576778]]}, {"length": 47.4473955063, "source": 2069036662, "destination": 4274706131, "path": [[8810.33927649355, 6240.099418576506], [8809.139276493737, 6453.449418579283]]}, {"length": 109.298969584, "source": 2069036662, "destination": 2069036941, "path": [[8810.33927649355, 6240.099418576506], [8161.089276491395, 6237.04941857639]]}, {"length": 23.2287428551, "source": 2069036662, "destination": 4614343717, "path": [[8810.33927649355, 6240.099418576506], [8810.939276493456, 6135.649418578027]]}, {"length": 19.3933360791, "source": 2293563000, "destination": 2293563001, "path": [[-5020.660723509707, 6439.449418579102], [-5135.8607235059135, 6439.249418576765]]}, {"length": 47.5471105973, "source": 2293563000, "destination": 2293563076, "path": [[-5020.660723509707, 6439.449418579102], [-5020.310723509169, 6225.649418578172]]}, {"length": 16.4728705277, "source": 2293563000, "destination": 2293562998, "path": [[-5020.660723509707, 6439.449418579102], [-4922.810723506644, 6439.899418577255]]}, {"length": 19.3933360791, "source": 2293563001, "destination": 2293563000, "path": [[-5135.8607235059135, 6439.249418576765], [-5020.660723509707, 6439.449418579102]]}, {"length": 37.1460885758, "source": 2293563001, "destination": 2293563003, "path": [[-5135.8607235059135, 6439.249418576765], [-5356.510723508734, 6438.149418578121]]}, {"length": 10.6969948865, "source": 2293563001, "destination": 2293563021, "path": [[-5135.8607235059135, 6439.249418576765], [-5135.760723504745, 6391.149418575992]]}, {"length": 109.30487833, "source": 4242275962, "destination": 2311060688, "path": [[-3507.810723505145, 2119.4494185792223], [-3508.710723508557, 2390.5494185783027], [-3508.1107235086506, 2610.9494185782014]]}, {"length": 17.4348158696, "source": 4242275962, "destination": 4242276922, "path": [[-3507.810723505145, 2119.4494185792223], [-3450.46072350641, 2119.7494185791757], [-3404.2607235065248, 2120.8994185784036]]}, {"length": 102.639188968, "source": 4242275962, "destination": 1808366831, "path": [[-3507.810723505145, 2119.4494185792223], [-3706.610723504866, 2118.349418577026], [-3956.2607235055225, 2116.249418577354], [-3987.8107235082894, 2122.549418576369], [-4061.1107235051236, 2143.649418577809], [-4106.610723511039, 2159.7994185782454]]}, {"length": 37.1460885758, "source": 2293563003, "destination": 2293563001, "path": [[-5356.510723508734, 6438.149418578121], [-5135.8607235059135, 6439.249418576765]]}, {"length": 9.21020486811, "source": 2293563003, "destination": 2293563019, "path": [[-5356.510723508734, 6438.149418578121], [-5355.060723509552, 6396.749418577485]]}, {"length": 38.2734640501, "source": 2293563003, "destination": 2286663047, "path": [[-5356.510723508734, 6438.149418578121], [-5583.860723511691, 6437.249418578262]]}, {"length": 129.599007905, "source": 2069036668, "destination": 2068877154, "path": [[1007.8892764937564, 6252.299418576968], [1009.9892764898755, 5959.649418578294], [1010.6892764909503, 5669.549418577446]]}, {"length": 239.460074016, "source": 2069036668, "destination": 2069036370, "path": [[1007.8892764937564, 6252.299418576968], [1711.039276493409, 6250.24941857788], [2430.2892764893613, 6256.349418578111]]}, {"length": 12.0452076931, "source": 2069036668, "destination": 2069036751, "path": [[1007.8892764937564, 6252.299418576968], [936.3392764925038, 6251.949418576431]]}, {"length": 5.74721429854, "source": 4224843390, "destination": 4224950793, "path": [[6559.339276492437, 3346.349418578143], [6559.389276489469, 3335.1494185787087], [6559.389276489469, 3325.9994185783626], [6559.389276489469, 3320.499418578038]]}, {"length": 33.6007262369, "source": 4719820416, "destination": 4719820337, "path": [[-1686.110723511547, -2517.6505814208385], [-1700.9107235068655, -2498.150581423886], [-1706.3107235060215, -2464.0005814227097], [-1707.110723508265, -2369.80058142322]]}, {"length": 31.148959942, "source": 4719820416, "destination": 4719820419, "path": [[-1686.110723511547, -2517.6505814208385], [-1588.7107235101894, -2516.8505814221476], [-1544.3607235070544, -2516.8505814221476], [-1516.9607235065996, -2542.2505814205465]]}, {"length": 72.8989757115, "source": 4719820416, "destination": 4719865979, "path": [[-1686.110723511547, -2517.6505814208385], [-1663.510723510342, -2546.30058142169], [-1619.160723507207, -2592.400581423959], [-1551.6607235070978, -2647.850581421807], [-1511.1607235098745, -2677.900581421255], [-1459.1107235091272, -2693.950581420523], [-1417.860723506692, -2700.700581421245], [-1365.0107235108067, -2697.7505814222977], [-1359.3107235081447, -2696.450581421317]]}, {"length": 78.1042549125, "source": 2086776768, "destination": 135074755, "path": [[-2661.760723505324, 189.89941857938675], [-2659.910723508574, -97.65058142363614], [-2659.510723511005, -161.30058142138637]]}, {"length": 125.426557299, "source": 2086776768, "destination": 2086776717, "path": [[-2661.760723505324, 189.89941857938675], [-3406.9607235096555, 190.29941857695576]]}, {"length": 31.148959942, "source": 4719820419, "destination": 4719820416, "path": [[-1516.9607235065996, -2542.2505814205465], [-1544.3607235070544, -2516.8505814221476], [-1588.7107235101894, -2516.8505814221476], [-1686.110723511547, -2517.6505814208385]]}, {"length": 99.4678259493, "source": 2069036676, "destination": 2069037011, "path": [[5501.689276492527, 5696.099418578626], [6092.539276494335, 5699.999418578017]]}, {"length": 21.3463327064, "source": 2069036676, "destination": 4253708829, "path": [[5501.689276492527, 5696.099418578626], [5374.889276488659, 5695.149418578183]]}, {"length": 63.4263898796, "source": 2069036676, "destination": 134985694, "path": [[5501.689276492527, 5696.099418578626], [5503.489276492246, 5410.899418578197]]}, {"length": 60.446814289, "source": 2069036676, "destination": 135018871, "path": [[5501.689276492527, 5696.099418578626], [5499.48927649524, 5967.8994185787815]]}, {"length": 101.175340586, "source": 2069036677, "destination": 2069036508, "path": [[5563.589276491143, 6227.899418576044], [4962.589276495066, 6225.849418576956]]}, {"length": 57.8218353595, "source": 2069036677, "destination": 135018882, "path": [[5563.589276491143, 6227.899418576044], [5564.839276495093, 5967.8994185787815]]}, {"length": 58.2666166033, "source": 2069036677, "destination": 135018884, "path": [[5563.589276491143, 6227.899418576044], [5562.339276494299, 6489.899418578915]]}, {"length": 109.305277552, "source": 2069036677, "destination": 2069036510, "path": [[5563.589276491143, 6227.899418576044], [6212.839276493298, 6233.999418576275]]}, {"length": 8.13901784843, "source": 4224843399, "destination": 4224963684, "path": [[6199.639276488256, 4106.099418578424], [6151.289276495219, 4106.099418578424]]}, {"length": 11.4624460413, "source": 134979211, "destination": 134979288, "path": [[9709.439276491594, 424.59941857941885], [9641.339276491579, 424.39941857708163]]}, {"length": 55.9433968829, "source": 134979211, "destination": 2086776742, "path": [[9709.439276491594, 424.59941857941885], [9711.53927649482, 173.04941857787526]]}, {"length": 59.4010626774, "source": 2086776770, "destination": 135019155, "path": [[-1930.3607235059417, 1790.8494185761015], [-1932.0607235115972, 2057.9494185781755]]}, {"length": 124.819696642, "source": 2086776770, "destination": 2086776774, "path": [[-1930.3607235059417, 1790.8494185761015], [-2671.9107235066986, 1788.1494185765234]]}, {"length": 12.8524484141, "source": 2358476430, "destination": 2358476432, "path": [[-489.96072350604436, 4899.549418578175], [-566.3107235065468, 4899.299418578807]]}, {"length": 12.8096009467, "source": 2358476430, "destination": 134954289, "path": [[-489.96072350604436, 4899.549418578175], [-489.56072350847535, 4841.949418576519]]}, {"length": 35.5362991082, "source": 2358476430, "destination": 2358476427, "path": [[-489.96072350604436, 4899.549418578175], [-278.8607235117979, 4900.299418576282]]}, {"length": 48.147990441, "source": 2358476430, "destination": 2069036966, "path": [[-489.96072350604436, 4899.549418578175], [-491.31072351116245, 5116.049418578683]]}, {"length": 19.7684659088, "source": 2069379693, "destination": 2294600300, "path": [[-4939.96072351166, 5867.049418576187], [-4822.610723508092, 5863.749418576703]]}, {"length": 45.1906993152, "source": 2069379693, "destination": 2069376938, "path": [[-4939.96072351166, 5867.049418576187], [-4941.310723509673, 5801.649418579302], [-4953.360723504829, 5784.399418576669], [-4970.810723506247, 5766.1494185765605], [-4993.61072350979, 5748.849418576896], [-5024.460723511482, 5730.599418576787], [-5070.06072351146, 5707.249418577476]]}, {"length": 13.2154759019, "source": 2069379693, "destination": 2293563148, "path": [[-4939.96072351166, 5867.049418576187], [-5018.460723505314, 5866.499418576865]]}, {"length": 25.841801281, "source": 2358476432, "destination": 2358476450, "path": [[-566.3107235065468, 4899.299418578807], [-566.4107235077154, 4783.099418578018]]}, {"length": 95.7594084554, "source": 2358476432, "destination": 2358476445, "path": [[-566.3107235065468, 4899.299418578807], [-1135.160723507056, 4897.1994185791345]]}, {"length": 12.8524484141, "source": 2358476432, "destination": 2358476430, "path": [[-566.3107235065468, 4899.299418578807], [-489.96072350604436, 4899.549418578175]]}, {"length": 48.1364769894, "source": 2358476432, "destination": 2703728623, "path": [[-566.3107235065468, 4899.299418578807], [-566.6607235070842, 5115.74941857873]]}, {"length": 50.9705143183, "source": 134979219, "destination": 2086854548, "path": [[9720.78927649278, -1847.0505814214278], [10023.63927648986, -1846.6005814232744]]}, {"length": 112.62271574, "source": 134979219, "destination": 134979220, "path": [[9720.78927649278, -1847.0505814214278], [9714.889276494887, -2353.450581423999]]}, {"length": 51.9623864566, "source": 134979220, "destination": 2086854378, "path": [[9714.889276494887, -2353.450581423999], [10023.63927648986, -2353.300581422246]]}, {"length": 10.3414277788, "source": 134979220, "destination": 2074057083, "path": [[9714.889276494887, -2353.450581423999], [9653.439276490872, -2353.650581422784]]}, {"length": 173.014454383, "source": 134979220, "destination": 134979221, "path": [[9714.889276494887, -2353.450581423999], [9718.189276490819, -2551.1505814215243], [9720.589276490444, -2756.3005814208454], [9722.539276488362, -3131.4005814238044]]}, {"length": 96.971374093, "source": 2358476437, "destination": 2358476440, "path": [[-1284.5607235050238, 4896.64941857626], [-1860.6107235115132, 4894.549418576588]]}, {"length": 48.014588949, "source": 2358476437, "destination": 2358476298, "path": [[-1284.5607235050238, 4896.64941857626], [-1285.2607235060987, 5003.849418578455], [-1285.9607235071735, 5112.549418576862]]}, {"length": 12.809952738, "source": 2358476437, "destination": 2354509538, "path": [[-1284.5607235050238, 4896.64941857626], [-1284.2107235115918, 4839.049418578156]]}, {"length": 25.149827653, "source": 2358476437, "destination": 2358476445, "path": [[-1284.5607235050238, 4896.64941857626], [-1135.160723507056, 4897.1994185791345]]}, {"length": 48.5039235303, "source": 134979222, "destination": 2086854569, "path": [[9722.139276490794, -3182.4505814235235], [9723.489276488806, -3400.550581421413]]}, {"length": 10.8392817996, "source": 134979222, "destination": 134979311, "path": [[9722.139276490794, -3182.4505814235235], [9657.739276491384, -3183.1005814240143]]}, {"length": 57.9597723685, "source": 134979223, "destination": 2086854475, "path": [[9725.139276490325, -3661.6005814238406], [9729.639276493173, -3922.2005814210092]]}, {"length": 39.397746789, "source": 134979223, "destination": 2086854515, "path": [[9725.139276490325, -3661.6005814238406], [9959.23927649045, -3660.7505814210126]]}, {"length": 31.0585441109, "source": 2358476440, "destination": 2357086466, "path": [[-1860.6107235115132, 4894.549418576588], [-2045.1107235075483, 4893.899418576098]]}, {"length": 48.2154213374, "source": 2358476440, "destination": 2358476300, "path": [[-1860.6107235115132, 4894.549418576588], [-1862.3107235100633, 5034.599418578978], [-1862.0607235106945, 5085.649418578697], [-1862.0107235065575, 5111.349418577049]]}, {"length": 96.971374093, "source": 2358476440, "destination": 2358476437, "path": [[-1860.6107235115132, 4894.549418576588], [-1284.5607235050238, 4896.64941857626]]}, {"length": 25.8497689037, "source": 2358476440, "destination": 2354509541, "path": [[-1860.6107235115132, 4894.549418576588], [-1860.2107235068388, 4865.249418578798], [-1856.2107235098324, 4808.949418578123], [-1856.0107235074952, 4778.399418576384]]}, {"length": 10.8973305451, "source": 134979225, "destination": 134979322, "path": [[9747.139276491624, -4971.350581421064], [9682.389276491676, -4971.900581423938]]}, {"length": 89.5538063074, "source": 134979225, "destination": 134983437, "path": [[9747.139276491624, -4971.350581421064], [10279.289276489579, -4970.500581421788]]}, {"length": 100.744968805, "source": 134979225, "destination": 134979226, "path": [[9747.139276491624, -4971.350581421064], [9751.089276491599, -5424.350581421322]]}, {"length": 88.6536323643, "source": 134979226, "destination": 134983440, "path": [[9751.089276491599, -5424.350581421322], [10277.889276494534, -5421.950581421697]]}, {"length": 49.6154584717, "source": 134979226, "destination": 2086862784, "path": [[9751.089276491599, -5424.350581421322], [9752.13927649321, -5647.450581420799]]}, {"length": 49.6930539297, "source": 134979227, "destination": 2086862795, "path": [[9753.239276491855, -5874.5505814208345], [9753.139276490685, -6098.000581420848]]}, {"length": 11.3426985397, "source": 134979227, "destination": 134979326, "path": [[9753.239276491855, -5874.5505814208345], [9685.839276492914, -5875.000581422541]]}, {"length": 59.6144624902, "source": 2069036700, "destination": 134954304, "path": [[2439.8392764908294, 4581.299418578766], [2436.4392764937293, 4849.349418577731]]}, {"length": 61.9051816105, "source": 2069036700, "destination": 2068020324, "path": [[2439.8392764908294, 4581.299418578766], [2443.3892764932352, 4302.949418576673]]}, {"length": 121.105093814, "source": 2069036700, "destination": 2069036959, "path": [[2439.8392764908294, 4581.299418578766], [1720.4892764937085, 4573.199418576479]]}, {"length": 59.906802877, "source": 4719853213, "destination": 4719853215, "path": [[-397.5107235092423, -4129.900581421708], [-539.9107235106726, -4234.950581423646], [-646.4107235117922, -4322.35058142183]]}, {"length": 11.9093841394, "source": 134979230, "destination": 134979232, "path": [[9756.439276493722, -6757.500581421993], [9755.839276493816, -6811.050581422506]]}, {"length": 101.785999139, "source": 4719853215, "destination": 4719884098, "path": [[-646.4107235117922, -4322.35058142183], [-664.2607235107789, -4310.250581422537], [-675.4607235066601, -4283.6005814237415], [-679.5107235078035, -4268.45058142078], [-681.9107235074284, -4161.850581422044], [-682.7107235096719, -4024.3005814240005], [-649.4607235083549, -3981.2505814218466], [-649.1107235078175, -3879.1505814224083]]}, {"length": 59.906802877, "source": 4719853215, "destination": 4719853213, "path": [[-646.4107235117922, -4322.35058142183], [-539.9107235106726, -4234.950581423646], [-397.5107235092423, -4129.900581421708]]}, {"length": 49.6504969159, "source": 4719853215, "destination": 4719850318, "path": [[-646.4107235117922, -4322.35058142183], [-636.6607235079869, -4328.950581420799], [-607.8607235053823, -4364.800581420524], [-608.2107235059198, -4536.200581423344]]}, {"length": 11.8923444891, "source": 134979232, "destination": 134979336, "path": [[9755.839276493816, -6811.050581422506], [9685.18927648887, -6812.450581421103]]}, {"length": 96.2043086175, "source": 134979232, "destination": 134979234, "path": [[9755.839276493816, -6811.050581422506], [9763.839276494935, -7243.600581421816]]}, {"length": 13.0210442972, "source": 2358476449, "destination": 134954289, "path": [[-489.2107235079379, 4783.399418577972], [-489.56072350847535, 4841.949418576519]]}, {"length": 12.9961023995, "source": 2358476449, "destination": 2358476450, "path": [[-489.2107235079379, 4783.399418577972], [-566.4107235077154, 4783.099418578018]]}, {"length": 47.9589335495, "source": 2358476449, "destination": 2069036405, "path": [[-489.2107235079379, 4783.399418577972], [-487.81072350578825, 4567.749418576739]]}, {"length": 12.1702632574, "source": 2358476449, "destination": 2358476447, "path": [[-489.2107235079379, 4783.399418577972], [-416.91072350857894, 4783.649418577341]]}, {"length": 42.8176690779, "source": 134979234, "destination": 2086862856, "path": [[9763.839276494935, -7243.600581421816], [10018.289276494841, -7244.050581423522]]}, {"length": 92.4708146155, "source": 134979234, "destination": 1999574947, "path": [[9763.839276494935, -7243.600581421816], [9761.239276492972, -7659.400581420783]]}, {"length": 193.852723404, "source": 134979236, "destination": 1930503420, "path": [[9760.639276493066, -7698.0005814206725], [9763.43927649026, -7774.400581421759], [9770.239276491566, -7857.700581421767], [9778.389276490885, -7947.550581423712], [9785.289276493359, -8040.100581421683], [9787.889276488215, -8107.600581421792], [9789.039276490996, -8208.800581421372], [9789.439276488565, -8370.90058142209], [9789.739276492071, -8549.150581423248], [9789.88927649027, -8569.100581421906]]}, {"length": 42.8853936372, "source": 134979236, "destination": 2086862902, "path": [[9760.639276493066, -7698.0005814206725], [10015.489276490542, -7699.350581422237]]}, {"length": 64.1141082951, "source": 2086776774, "destination": 2086776776, "path": [[-2671.9107235066986, 1788.1494185765234], [-3052.8107235099355, 1786.7494185779265]]}, {"length": 124.819696642, "source": 2086776774, "destination": 2086776770, "path": [[-2671.9107235066986, 1788.1494185765234], [-1930.3607235059417, 1790.8494185761015]]}, {"length": 61.7140187944, "source": 2086776774, "destination": 135012767, "path": [[-2671.9107235066986, 1788.1494185765234], [-2670.160723511117, 1510.649418577259]]}, {"length": 12.1968940623, "source": 134979238, "destination": 134979345, "path": [[9790.13927648964, -8610.60058142371], [9717.839276490282, -8614.5005814231]]}, {"length": 12.6545761656, "source": 134979238, "destination": 1930503507, "path": [[9790.13927648964, -8610.60058142371], [9790.989276488915, -8667.50058142074]]}, {"length": 9.67596529064, "source": 134979238, "destination": 1930503470, "path": [[9790.13927648964, -8610.60058142371], [9847.63927649368, -8610.150581422005]]}, {"length": 122.093497413, "source": 135085736, "destination": 135091012, "path": [[6821.839276490493, -2323.100581421045], [6821.339276491755, -2232.100581423424], [6818.839276490962, -1774.1005814215782]]}, {"length": 62.9373227949, "source": 135085736, "destination": 2086854396, "path": [[6821.839276490493, -2323.100581421045], [7195.789276494224, -2321.100581422542]]}, {"length": 60.8576847179, "source": 135085736, "destination": 2086854454, "path": [[6821.839276490493, -2323.100581421045], [6823.339276493812, -2596.750581421503]]}, {"length": 9.35439235775, "source": 2586992583, "destination": 2586992584, "path": [[645.7392764929182, -1848.500581420609], [618.9392764923696, -1811.6505814234074]]}, {"length": 10.3405562244, "source": 2586992583, "destination": 2586992560, "path": [[645.7392764929182, -1848.500581420609], [677.9392764926229, -1888.1005814215257]]}, {"length": 16.8889039688, "source": 2586992583, "destination": 2586992581, "path": [[645.7392764929182, -1848.500581420609], [545.3892764890611, -1848.4005814229931]]}, {"length": 5.42462753564, "source": 2586992583, "destination": 2586992558, "path": [[645.7392764929182, -1848.500581420609], [677.9392764926229, -1847.5005814231338]]}, {"length": 11.8086855945, "source": 134979246, "destination": 134979350, "path": [[9794.63927649249, -9510.900581421567], [9724.489276493387, -9512.450581421916]]}, {"length": 5.87373428211, "source": 2586992584, "destination": 2586992580, "path": [[618.9392764923696, -1811.6505814234074], [584.0392764895341, -1811.7005814239917]]}, {"length": 10.157647599, "source": 2586992584, "destination": 2586992582, "path": [[618.9392764923696, -1811.6505814234074], [679.2892764906355, -1811.5505814222388]]}, {"length": 9.35439235775, "source": 2586992584, "destination": 2586992583, "path": [[618.9392764923696, -1811.6505814234074], [645.7392764929182, -1848.500581420609]]}, {"length": 61.0246552445, "source": 2069036722, "destination": 135019161, "path": [[-1952.6607235107463, 4562.099418578214], [-1950.9107235080592, 4287.699418576096]]}, {"length": 14.5105321952, "source": 2069036722, "destination": 2703728626, "path": [[-1952.6607235107463, 4562.099418578214], [-2038.8607235091172, 4561.849418578845]]}, {"length": 61.0468785551, "source": 2069036722, "destination": 134954277, "path": [[-1952.6607235107463, 4562.099418578214], [-1954.410723506328, 4836.599418577947]]}, {"length": 16.4548054631, "source": 2069036722, "destination": 2703728625, "path": [[-1952.6607235107463, 4562.099418578214], [-1854.9107235088513, 4562.549418576367]]}, {"length": 48.5926617268, "source": 2069036723, "destination": 2309494209, "path": [[-3427.4107235106044, 5104.5994185763275], [-3428.8107235056486, 5323.099418578891]]}, {"length": 15.1587837169, "source": 2069036723, "destination": 2312746444, "path": [[-3427.4107235106044, 5104.5994185763275], [-3337.360723506322, 5104.89941857628]]}, {"length": 62.7746501544, "source": 2068009814, "destination": 2068009746, "path": [[4255.989276494176, 5682.249418576646], [3883.0892764920577, 5683.349418578842]]}, {"length": 58.725680122, "source": 2068009814, "destination": 2068009772, "path": [[4255.989276494176, 5682.249418576646], [4604.839276488803, 5682.3494185778145]]}, {"length": 75.182310763, "source": 2068009814, "destination": 2068009758, "path": [[4255.989276494176, 5682.249418576646], [4257.08927649282, 5736.899418579355], [4004.0892764920955, 5737.149418578724], [3882.6892764944887, 5737.149418578724]]}, {"length": 17.3672171575, "source": 2568624551, "destination": 2568599419, "path": [[-914.2107235078356, -2046.8505814221771], [-836.0607235076145, -2097.850581421312]]}, {"length": 46.0327394188, "source": 2568624551, "destination": 2568599372, "path": [[-914.2107235078356, -2046.8505814221771], [-929.0607235072912, -2037.1505814225088], [-1009.5607235101056, -1996.5505814205642], [-1073.910723505378, -1970.2005814217216], [-1138.3107235047873, -1929.4005814209925]]}, {"length": 26.9069038622, "source": 2568624551, "destination": 2568624555, "path": [[-914.2107235078356, -2046.8505814221771], [-930.4107235053038, -2010.5005814237131], [-933.1107235084346, -1986.1005814227894], [-935.8107235115654, -1953.5505814225473], [-934.4607235064473, -1928.0505814229798]]}, {"length": 17.6636780931, "source": 3357236918, "destination": 3357236920, "path": [[7007.289276494077, 3256.799418576151], [7068.4892764916185, 3244.499418578073], [7110.039276490454, 3242.79941857597]]}, {"length": 277.826932858, "source": 3357236918, "destination": 4224850306, "path": [[7007.289276494077, 3256.799418576151], [7020.589276493183, 3271.3994185762376], [7047.5392764919325, 3307.199418578932], [7073.639276491405, 3346.5994185775116], [7091.53927649453, 3378.3494185790632], [7109.139276494147, 3415.849418576755], [7122.3392764920845, 3452.3994185775564], [7132.439276489322, 3493.099418577117], [7139.289276494765, 3534.699418576537], [7142.289276494295, 3568.199418577223], [7144.839276492121, 3612.749418579142], [7144.839276492121, 3769.8994185788592], [7152.339276494502, 3833.3994185784095], [7169.83927649295, 3908.3994185773463], [7184.339276491869, 3945.8994185785914], [7216.8392764950795, 4017.3994185792594], [7253.8392764940345, 4075.399418578485], [7313.339276493025, 4144.899418577097], [7579.489276494655, 4385.1994185786225]]}, {"length": 4.49115839821, "source": 3357236918, "destination": 3357236917, "path": [[7007.289276494077, 3256.799418576151], [6981.489276491004, 3261.9494185794906]]}, {"length": 10.5219862552, "source": 2586992585, "destination": 2586992594, "path": [[473.68927648960835, -1902.4005814216594], [437.8892764904663, -1925.6505814233549], [426.3392764940477, -1933.3005814239357]]}, {"length": 10.6969948865, "source": 2586992585, "destination": 2586992587, "path": [[473.68927648960835, -1902.4005814216594], [429.53927648881063, -1867.8005814223297]]}, {"length": 2.4646671665, "source": 2586992585, "destination": 2586992567, "path": [[473.68927648960835, -1902.4005814216594], [484.8392764884579, -1895.2005814227846]]}, {"length": 13.3922907542, "source": 3357236920, "destination": 134959986, "path": [[7110.039276490454, 3242.79941857597], [7064.639276492812, 3193.349418577185]]}, {"length": 14.2355672485, "source": 3357236920, "destination": 844180725, "path": [[7110.039276490454, 3242.79941857597], [7194.489276493243, 3239.3994185788697]]}, {"length": 17.6636780931, "source": 3357236920, "destination": 3357236918, "path": [[7110.039276490454, 3242.79941857597], [7068.4892764916185, 3244.499418578073], [7007.289276494077, 3256.799418576151]]}, {"length": 14.3536793089, "source": 2585900320, "destination": 2585900353, "path": [[-1766.9607235077933, -1850.350581420912], [-1729.4107235059641, -1866.6005814225173], [-1707.9107235105084, -1880.8005814214823], [-1702.3607235060467, -1890.1005814235816]]}, {"length": 21.8008442667, "source": 2585900320, "destination": 2585900602, "path": [[-1766.9607235077933, -1850.350581420912], [-1782.3607235101235, -1829.050581420688], [-1799.8107235115413, -1810.750581423548], [-1809.2107235077037, -1801.1505814214956], [-1822.610723507978, -1791.000581423674], [-1838.0107235103083, -1781.8505814233276], [-1848.6607235104202, -1775.800581423681]]}, {"length": 32.7634444547, "source": 2585900320, "destination": 2585900329, "path": [[-1766.9607235077933, -1850.350581420912], [-1812.5607235077723, -1834.1005814228595], [-1876.91072351015, -1823.9505814214851], [-1954.7107235098338, -1815.850581422751]]}, {"length": 50.8384335652, "source": 2086862795, "destination": 134979229, "path": [[9753.139276490685, -6098.000581420848], [9752.989276492484, -6326.600581420649]]}, {"length": 47.5471105973, "source": 2293563076, "destination": 2293563000, "path": [[-5020.310723509169, 6225.649418578172], [-5020.660723509707, 6439.449418579102]]}, {"length": 16.3377231333, "source": 2293563076, "destination": 2068973828, "path": [[-5020.310723509169, 6225.649418578172], [-4923.260723508349, 6225.499418576419]]}, {"length": 48.9259307593, "source": 2293563076, "destination": 2703728621, "path": [[-5020.310723509169, 6225.649418578172], [-5019.710723509263, 6005.649418579395]]}, {"length": 31.0105101148, "source": 2293563076, "destination": 2293563079, "path": [[-5020.310723509169, 6225.649418578172], [-5093.210723508435, 6225.1494185794345], [-5149.360723507357, 6224.049418577238], [-5178.610723511667, 6222.899418578009], [-5204.460723511773, 6222.549418577472]]}, {"length": 2.53319328509, "source": 3357236935, "destination": 2423697761, "path": [[-7808.810723510362, -3230.500581423712], [-7812.460723506831, -3219.4505814224785], [-7812.460723506831, -3219.400581421894]]}, {"length": 169.584144305, "source": 3357236935, "destination": 2423695594, "path": [[-7808.810723510362, -3230.500581423712], [-7772.260723506008, -3223.5505814206535], [-6827.660723509154, -3056.750581421852]]}, {"length": 93.5657489828, "source": 3357236935, "destination": 2423697765, "path": [[-7808.810723510362, -3230.500581423712], [-7771.310723505565, -3343.950581420785], [-7702.760723510948, -3560.65058142363], [-7668.710723507388, -3637.4005814217016]]}, {"length": 147.728248854, "source": 3357236935, "destination": 2423695599, "path": [[-7808.810723510362, -3230.500581423712], [-7836.660723505418, -3235.8005814216995], [-7872.260723509327, -3248.550581421483], [-7900.960723510763, -3279.5505814213757], [-7902.260723511745, -3301.7505814214587], [-7893.66072351072, -3328.8505814219607], [-7793.9107235067695, -3526.950581420607], [-7740.210723511609, -3632.4505814206987], [-7714.2107235061985, -3686.050581421796], [-7685.360723506563, -3741.300581420859], [-7683.8107235062125, -3760.1505814208736], [-7684.960723508993, -3777.6005814222913], [-7702.96072350618, -3800.9005814210186], [-7726.060723506123, -3810.400581421902]]}, {"length": 238.800942589, "source": 3357236936, "destination": 3146325505, "path": [[-6657.110723509163, -3680.1005814233176], [-5726.010723506647, -3654.950581420735], [-5626.310723506833, -3630.3505814210266], [-5543.360723507362, -3582.1005814220543], [-5477.160723508234, -3483.450581423853], [-5421.4107235068805, -3419.600581423765], [-5396.510723507219, -3406.350581421691]]}, {"length": 13.7866888336, "source": 3357236936, "destination": 1959915345, "path": [[-6657.110723509163, -3680.1005814233176], [-6656.410723508088, -3706.000581424007], [-6658.510723511313, -3742.050581422518]]}, {"length": 86.8211898775, "source": 3357236936, "destination": 1959915190, "path": [[-6657.110723509163, -3680.1005814233176], [-6664.860723510912, -3680.3005814221024], [-6755.160723507459, -3692.4005814213956], [-6860.660723511102, -3731.1505814230372], [-6969.160723507173, -3761.200581422486], [-7148.710723505757, -3790.250581420906]]}, {"length": 96.7151206526, "source": 3357236936, "destination": 2423695617, "path": [[-6657.110723509163, -3680.1005814233176], [-6657.810723510238, -3655.0505814219036], [-6675.460723506887, -3589.0505814215603], [-6749.360723510734, -3347.950581421344], [-6755.010723509258, -3253.05058142078]]}, {"length": 19.2752480131, "source": 2074050038, "destination": 2074050053, "path": [[9704.039276492438, 1074.8994185760807], [9729.189276491468, 1081.6994185773865], [9816.339276490282, 1089.849418576705]]}, {"length": 14.4445437623, "source": 2074050038, "destination": 2074050069, "path": [[9704.039276492438, 1074.8994185760807], [9704.489276494143, 1009.9494185773494]]}, {"length": 8.97127275438, "source": 2568600183, "destination": 2568624523, "path": [[-1114.560723507907, -2564.400581423598], [-1167.7607235114351, -2561.8505814222203]]}, {"length": 51.0794284228, "source": 2568600183, "destination": 4719865979, "path": [[-1114.560723507907, -2564.400581423598], [-1258.6107235108557, -2648.750581421666], [-1296.4107235049482, -2677.0505814219805], [-1326.1107235109648, -2688.70058142312], [-1359.3107235081447, -2696.450581421317]]}, {"length": 57.5659459562, "source": 2568600183, "destination": 2568600189, "path": [[-1114.560723507907, -2564.400581423598], [-969.1607235069455, -2564.5505814217986], [-910.3607235090294, -2563.0005814214483], [-865.9107235047259, -2560.400581423039], [-813.2607235111777, -2556.300581421311], [-772.9607235091862, -2555.600581423789]]}, {"length": 12.8096009467, "source": 2069036749, "destination": 2703728624, "path": [[-3832.7107235076596, 4829.749418576057], [-3832.410723511259, 4887.349418577714]]}, {"length": 44.8451105962, "source": 2069036749, "destination": 2069376797, "path": [[-3832.7107235076596, 4829.749418576057], [-4099.110723508658, 4828.799418579166]]}, {"length": 68.5220115814, "source": 2069036749, "destination": 134954271, "path": [[-3832.7107235076596, 4829.749418576057], [-3425.6607235079173, 4831.249418579375]]}, {"length": 118.987997074, "source": 2069036751, "destination": 2069036673, "path": [[936.3392764925038, 6251.949418576431], [229.53927648927674, 6248.199418578793]]}, {"length": 12.0452076931, "source": 2069036751, "destination": 2069036668, "path": [[936.3392764925038, 6251.949418576431], [1007.8892764937564, 6252.299418576968]]}, {"length": 151.533459489, "source": 2184814290, "destination": 2089552577, "path": [[-9275.360723506765, -11309.150581421789], [-9270.160723509945, -10975.600581421219], [-9270.860723511021, -10798.550581423428], [-9272.210723509033, -10707.200581421715], [-9264.81072350782, -10685.900581421492], [-9251.360723510516, -10668.150581423673], [-9254.510723508247, -10631.30058142292]]}, {"length": 10.018274853, "source": 2184814290, "destination": 2184814291, "path": [[-9275.360723506765, -11309.150581421789], [-9275.360723506765, -11354.200581422447]]}, {"length": 41.8448850075, "source": 2184814290, "destination": 135065381, "path": [[-9275.360723506765, -11309.150581421789], [-9026.660723506553, -11309.600581423496]]}, {"length": 3.94410735032, "source": 2184814291, "destination": 2080708609, "path": [[-9275.360723506765, -11354.200581422447], [-9298.810723507246, -11354.200581422447]]}, {"length": 10.018274853, "source": 2184814291, "destination": 2184814290, "path": [[-9275.360723506765, -11354.200581422447], [-9275.360723506765, -11309.150581421789]]}, {"length": 60.7463633426, "source": 2069036756, "destination": 134985700, "path": [[7517.239276488397, 5145.749418577594], [7515.839276493352, 5418.899418579314]]}, {"length": 109.327950249, "source": 2069036756, "destination": 2069036764, "path": [[7517.239276488397, 5145.749418577594], [6867.78927649101, 5143.699418578507]]}, {"length": 168.898204675, "source": 2069036756, "destination": 134985702, "path": [[7517.239276488397, 5145.749418577594], [8162.439276489408, 5150.849418576798], [8165.339276494877, 5421.899418578846]]}, {"length": 107.439897473, "source": 2069036756, "destination": 4224963615, "path": [[7517.239276488397, 5145.749418577594], [7518.839276492883, 4827.899418579307], [7515.339276494615, 4796.8994185794145], [7502.8392764906475, 4761.899418578963], [7479.8392764918735, 4728.399418578278], [7449.3392764907185, 4700.399418577917], [7425.339276494469, 4684.949418578554]]}, {"length": 124.043014829, "source": 2069036759, "destination": 2069036870, "path": [[-2686.0607235050793, 4010.7994185767384], [-1949.210723509509, 4016.9494185775534]]}, {"length": 61.6250160485, "source": 2069036759, "destination": 135016135, "path": [[-2686.0607235050793, 4010.7994185767384], [-2684.3107235094976, 3733.699418578595]]}, {"length": 112.456980153, "source": 134979288, "destination": 135022798, "path": [[9641.339276491579, 424.39941857708163], [8973.239276492961, 418.94941857734125]]}, {"length": 15.7232107316, "source": 134979288, "destination": 135076343, "path": [[9641.339276491579, 424.39941857708163], [9640.93927649401, 495.09941857905915]]}, {"length": 60.9241432142, "source": 134979290, "destination": 2086776842, "path": [[9643.839276492372, -118.15058142161661], [9642.589276488423, 155.79941857879476]]}, {"length": 23.442120143, "source": 134979290, "destination": 2074057010, "path": [[9643.839276492372, -118.15058142161661], [9667.48927649519, -125.15058142170687], [9689.889276494057, -140.9505814216061], [9702.089276494518, -157.20058142321136], [9717.589276490911, -199.9505814218594]]}, {"length": 129.956870601, "source": 2069036764, "destination": 2069036875, "path": [[6867.78927649101, 5143.699418578507], [6478.88927649376, 5143.699418578507], [6095.789276493235, 5143.699418578507]]}, {"length": 109.327950249, "source": 2069036764, "destination": 2069036756, "path": [[6867.78927649101, 5143.699418578507], [7517.239276488397, 5145.749418577594]]}, {"length": 14.033113958, "source": 2069036764, "destination": 4224950686, "path": [[6867.78927649101, 5143.699418578507], [6868.139276491547, 5080.599418576526]]}, {"length": 60.6464303677, "source": 2069036764, "destination": 134985699, "path": [[6867.78927649101, 5143.699418578507], [6866.339276491828, 5416.399418578521]]}, {"length": 22.8650564219, "source": 134979293, "destination": 2074057136, "path": [[9646.339276493165, -663.6005814222301], [9510.489276493672, -664.300581423305]]}, {"length": 59.8788257951, "source": 134979293, "destination": 2086854508, "path": [[9646.339276493165, -663.6005814222301], [9645.089276489216, -394.3505814234527]]}, {"length": 44.9710454447, "source": 2086854369, "destination": 135110872, "path": [[6099.539276490873, -1733.1005814220646], [5832.339276494736, -1734.1005814230925]]}, {"length": 46.3343266804, "source": 2086854369, "destination": 134995139, "path": [[6099.539276490873, -1733.1005814220646], [6374.839276489297, -1732.1005814210366]]}, {"length": 106.136709157, "source": 2086854369, "destination": 2086854412, "path": [[6099.539276490873, -1733.1005814220646], [6102.239276494003, -2210.350581421494]]}, {"length": 26.3818630576, "source": 2069379707, "destination": 2069379699, "path": [[-4543.0107235091555, 5210.849418578078], [-4540.310723506025, 5177.3494185773925], [-4536.310723509018, 5138.749418577504], [-4529.610723508881, 5115.399418578192], [-4520.210723505614, 5094.099418577969]]}, {"length": 27.2452387854, "source": 2069379707, "destination": 2069376740, "path": [[-4543.0107235091555, 5210.849418578078], [-4530.910723509862, 5254.499418576586], [-4518.860723507601, 5279.849418577953], [-4504.110723509313, 5306.24941857738], [-4489.360723511027, 5325.549418579101]]}, {"length": 17.8751213616, "source": 2069379707, "destination": 2069393822, "path": [[-4543.0107235091555, 5210.849418578078], [-4565.810723505592, 5176.299418579333], [-4592.610723506141, 5139.799418579116]]}, {"length": 6.52296925489, "source": 4224843493, "destination": 4224963607, "path": [[6937.039276493806, 3913.749418579471], [6975.789276488342, 3913.749418579471]]}, {"length": 62.1031577604, "source": 2069036774, "destination": 135025217, "path": [[-484.3607235116565, 4020.9494185781123], [-482.56072350483237, 3741.699418576161]]}, {"length": 122.495479004, "source": 2069036774, "destination": 2069407003, "path": [[-484.3607235116565, 4020.9494185781123], [243.3392764942255, 4022.0994185773407]]}, {"length": 60.5129793308, "source": 2069036774, "destination": 135025220, "path": [[-484.3607235116565, 4020.9494185781123], [-486.06072351020657, 4293.049418578221]]}, {"length": 55.5412035509, "source": 2069036774, "destination": 2327765655, "path": [[-484.3607235116565, 4020.9494185781123], [-814.3107235056846, 4020.999418578697]]}, {"length": 61.0857683371, "source": 2086854375, "destination": 2086854564, "path": [[8268.58927648999, -2590.6505814212724], [8631.539276493073, -2588.5005814210162]]}, {"length": 60.9467728734, "source": 2086854375, "destination": 135019220, "path": [[8268.58927648999, -2590.6505814212724], [8266.83927649441, -2316.600581423245]]}, {"length": 121.638594841, "source": 2086854375, "destination": 2086854413, "path": [[8268.58927648999, -2590.6505814212724], [7545.839276488664, -2592.7005814239124]]}, {"length": 59.8125619806, "source": 2086854375, "destination": 135019221, "path": [[8268.58927648999, -2590.6505814212724], [8270.339276492678, -2859.600581423649]]}, {"length": 172.965427136, "source": 134979305, "destination": 2074057083, "path": [[9657.639276490216, -3131.4005814238044], [9653.439276490872, -2353.650581422784]]}, {"length": 10.9221141353, "source": 134979305, "destination": 134979221, "path": [[9657.639276490216, -3131.4005814238044], [9722.539276488362, -3131.4005814238044]]}, {"length": 51.9623864566, "source": 2086854378, "destination": 134979220, "path": [[10023.63927648986, -2353.300581422246], [9714.889276494887, -2353.450581423999]]}, {"length": 112.685118668, "source": 2086854378, "destination": 2086854548, "path": [[10023.63927648986, -2353.300581422246], [10023.63927648986, -1846.6005814232744]]}, {"length": 173.131829451, "source": 2086854378, "destination": 2086854420, "path": [[10023.63927648986, -2353.300581422246], [10027.239276489297, -3131.8005814213734]]}, {"length": 55.2359439625, "source": 2086854378, "destination": 134983399, "path": [[10023.63927648986, -2353.300581422246], [10351.839276488306, -2353.100581423462]]}, {"length": 57.0112366487, "source": 2086854379, "destination": 134983394, "path": [[10344.839276491768, -1589.9505814225279], [10342.339276490975, -1333.6005814217344]]}, {"length": 56.9667968771, "source": 2086854379, "destination": 134983397, "path": [[10344.839276491768, -1589.9505814225279], [10347.339276492563, -1846.100581420984]]}, {"length": 123.245351969, "source": 2086723538, "destination": 2086723504, "path": [[3182.539276494367, 1808.2494185769349], [2450.339276492741, 1806.1994185778474]]}, {"length": 67.0174222701, "source": 2086723538, "destination": 2086723529, "path": [[3182.539276494367, 1808.2494185769349], [3580.6892764895792, 1807.1994185788753]]}, {"length": 59.6788320034, "source": 2086723538, "destination": 134997392, "path": [[3182.539276494367, 1808.2494185769349], [3181.1392764922175, 2076.5994185794057]]}, {"length": 61.3469500595, "source": 2086723538, "destination": 134997388, "path": [[3182.539276494367, 1808.2494185769349], [3183.9892764935485, 1532.399418579189]]}, {"length": 60.8684947138, "source": 2086854382, "destination": 135022800, "path": [[8975.08927648971, -394.3505814234527], [8976.339276493662, -120.65058142241014]]}, {"length": 60.6460588387, "source": 2086854382, "destination": 135022802, "path": [[8975.08927648971, -394.3505814234527], [8973.839276492869, -667.0505814234673]]}, {"length": 112.767429665, "source": 2086854382, "destination": 2086854508, "path": [[8975.08927648971, -394.3505814234527], [9645.089276489216, -394.3505814234527]]}, {"length": 121.107177578, "source": 2086854382, "destination": 2086854438, "path": [[8975.08927648971, -394.3505814234527], [8255.539276490254, -394.5505814222372]]}, {"length": 7.75861234398, "source": 3009796733, "destination": 3758384282, "path": [[1732.5392764888647, -5264.950581423733], [1778.6392764946868, -5264.500581422027]]}, {"length": 50.983441293, "source": 3009796733, "destination": 1933539526, "path": [[1732.5392764888647, -5264.950581423733], [1731.0892764896835, -5154.6505814208385], [1735.4892764913643, -5035.750581424026]]}, {"length": 25.6112635555, "source": 3009796733, "destination": 1932195990, "path": [[1732.5392764888647, -5264.950581423733], [1732.6892764941704, -5276.45058142312], [1734.6892764891209, -5380.100581422908]]}, {"length": 15.385984879, "source": 2069036787, "destination": 2358476301, "path": [[-1956.160723509015, 5111.249418579433], [-2047.5607235113102, 5110.749418577143]]}, {"length": 15.8488157181, "source": 2069036787, "destination": 2358476300, "path": [[-1956.160723509015, 5111.249418579433], [-1862.0107235065575, 5111.349418577049]]}, {"length": 48.5483129034, "source": 2069036787, "destination": 2358476149, "path": [[-1956.160723509015, 5111.249418579433], [-1957.5607235111647, 5329.549418576107]]}, {"length": 61.0801614714, "source": 2069036787, "destination": 134954277, "path": [[-1956.160723509015, 5111.249418579433], [-1954.410723506328, 4836.599418577947]]}, {"length": 26.0628453303, "source": 134979316, "destination": 134975766, "path": [[9671.03927649049, -4178.550581421803], [9666.789276494113, -4061.400581420571]]}, {"length": 10.6022095187, "source": 134979316, "destination": 134975807, "path": [[9671.03927649049, -4178.550581421803], [9734.039276494856, -4178.450581420634]]}, {"length": 47.4810051386, "source": 2139774710, "destination": 2091809130, "path": [[-8588.26072350638, 5998.749418576921], [-8589.81072350673, 6212.249418577898]]}, {"length": 10.9099577653, "source": 2139774710, "destination": 2289072986, "path": [[-8588.26072350638, 5998.749418576921], [-8543.410723511613, 5998.99941857629], [-8523.4607235094, 5999.149418578043]]}, {"length": 11.0427497321, "source": 2139774710, "destination": 1806083082, "path": [[-8588.26072350638, 5998.749418576921], [-8653.860723505602, 5998.699418576336]]}, {"length": 16.5457506329, "source": 2139774710, "destination": 134982238, "path": [[-8588.26072350638, 5998.749418576921], [-8588.560723509887, 5924.34941857789]]}, {"length": 32.7634444547, "source": 2585900329, "destination": 2585900320, "path": [[-1954.7107235098338, -1815.850581422751], [-1876.91072351015, -1823.9505814214851], [-1812.5607235077723, -1834.1005814228595], [-1766.9607235077933, -1850.350581420912]]}, {"length": 19.947287549, "source": 2585900329, "destination": 2585900602, "path": [[-1954.7107235098338, -1815.850581422751], [-1848.6607235104202, -1775.800581423681]]}, {"length": 6.54366181798, "source": 2585900329, "destination": 2585900459, "path": [[-1954.7107235098338, -1815.850581422751], [-1993.5607235055386, -1817.0505814225635]]}, {"length": 10.8973305451, "source": 134979322, "destination": 134979225, "path": [[9682.389276491676, -4971.900581423938], [9747.139276491624, -4971.350581421064]]}, {"length": 46.3971125886, "source": 134979322, "destination": 2086854442, "path": [[9682.389276491676, -4971.900581423938], [9406.689276488578, -4972.800581423798]]}, {"length": 108.932173798, "source": 134979322, "destination": 3698428994, "path": [[9682.389276491676, -4971.900581423938], [9679.83927649385, -4747.100581422359], [9677.839276491795, -4596.600581422194], [9675.989276495045, -4482.1005814235095]]}, {"length": 8.3828577852, "source": 2568600191, "destination": 2568600193, "path": [[-671.8107235101911, -2681.7005814230297], [-721.6107235095137, -2682.5005814217207]]}, {"length": 8.51142609005, "source": 2568600191, "destination": 844923267, "path": [[-671.8107235101911, -2681.7005814230297], [-673.4107235075726, -2719.950581422381]]}, {"length": 15.4368632438, "source": 2568600191, "destination": 2568600212, "path": [[-671.8107235101911, -2681.7005814230297], [-580.1107235114955, -2680.1505814226803]]}, {"length": 100.743716345, "source": 134979324, "destination": 134979322, "path": [[9685.03927649067, -5424.900581420644], [9682.389276491676, -4971.900581423938]]}, {"length": 46.5239800059, "source": 134979324, "destination": 2086854484, "path": [[9685.03927649067, -5424.900581420644], [9408.589276489465, -5426.800581421531]]}, {"length": 122.409953751, "source": 2069036705, "destination": 2069036673, "path": [[-497.5607235095936, 6242.099418578562], [229.53927648927674, 6248.199418578793]]}, {"length": 13.0556067732, "source": 2069036705, "destination": 2355654743, "path": [[-497.5607235095936, 6242.099418578562], [-575.1107235099084, 6241.649418576855]]}, {"length": 47.7701661186, "source": 2069036705, "destination": 2355654657, "path": [[-497.5607235095936, 6242.099418578562], [-499.11072350994345, 6456.899418576967]]}, {"length": 64.1041268088, "source": 2069036705, "destination": 135025223, "path": [[-497.5607235095936, 6242.099418578562], [-496.6607235061815, 5953.849418578016]]}, {"length": 11.3426985397, "source": 134979326, "destination": 134979227, "path": [[9685.839276492914, -5875.000581422541], [9753.239276491855, -5874.5505814208345]]}, {"length": 100.097877513, "source": 134979326, "destination": 134979324, "path": [[9685.839276492914, -5875.000581422541], [9685.03927649067, -5424.900581420644]]}, {"length": 46.7158538087, "source": 134979326, "destination": 135022807, "path": [[9685.839276492914, -5875.000581422541], [9408.289276493066, -5879.200581421884]]}, {"length": 123.015624359, "source": 135016405, "destination": 135043180, "path": [[3202.3892764883044, -1245.2505814231074], [3200.339276489217, -692.1005814213288]]}, {"length": 207.918836931, "source": 135016405, "destination": 135084837, "path": [[3202.3892764883044, -1245.2505814231074], [3588.33927649016, -1244.4005814238324], [3655.389276488563, -1249.450581422451], [3698.3892764936854, -1255.7005814208821], [3740.6892764906274, -1266.1005814216253], [3789.489276492475, -1287.0005814207275], [3840.9892764903475, -1321.3005814236567], [3875.589276489677, -1352.700581421118], [3902.4392764943627, -1391.250581423975], [3916.8392764921123, -1436.100581422295], [3921.939276494868, -1479.1005814238645], [3922.539276494774, -1736.0005814239798]]}, {"length": 116.307605952, "source": 135016405, "destination": 135016399, "path": [[3202.3892764883044, -1245.2505814231074], [2511.3392764950504, -1246.1005814223824]]}, {"length": 196.54877137, "source": 134979331, "destination": 134979326, "path": [[9683.689276492658, -6758.800581422975], [9684.689276490133, -6338.150581420621], [9685.839276492914, -5875.000581422541]]}, {"length": 12.2459347822, "source": 134979331, "destination": 134979230, "path": [[9683.689276492658, -6758.800581422975], [9756.439276493722, -6757.500581421993]]}, {"length": 55.2196247558, "source": 2086854404, "destination": 135057529, "path": [[7328.9892764947235, -4744.250581421028], [7329.58927649463, -4992.550581423671]]}, {"length": 100.551368305, "source": 2086854404, "destination": 2086854501, "path": [[7328.9892764947235, -4744.250581421028], [7926.3892764913635, -4736.10058142171]]}, {"length": 94.340555158, "source": 2086854404, "destination": 2086854406, "path": [[7328.9892764947235, -4744.250581421028], [7326.48927649393, -4546.800581422872], [7327.939276493112, -4320.050581423374]]}, {"length": 59.3677492919, "source": 2086723542, "destination": 135025171, "path": [[-465.2607235087203, 1796.3494185764262], [-466.96072350727036, 2063.2994185767475]]}, {"length": 121.335467503, "source": 2086723542, "destination": 2086723499, "path": [[-465.2607235087203, 1796.3494185764262], [255.58927649171892, 1798.9994185789726]]}, {"length": 53.8073728391, "source": 2086854406, "destination": 2573122356, "path": [[7327.939276493112, -4320.050581423374], [7327.339276493205, -4078.1005814238824]]}, {"length": 94.3554562454, "source": 2086854406, "destination": 2086854563, "path": [[7327.939276493112, -4320.050581423374], [7888.5892764901655, -4316.250581421599]]}, {"length": 94.340555158, "source": 2086854406, "destination": 2086854404, "path": [[7327.939276493112, -4320.050581423374], [7326.48927649393, -4546.800581422872], [7328.9892764947235, -4744.250581421028]]}, {"length": 93.8352107114, "source": 134979336, "destination": 135022976, "path": [[9685.18927648887, -6812.450581421103], [9127.639276492517, -6819.300581422994]]}, {"length": 11.9339540152, "source": 134979336, "destination": 134979331, "path": [[9685.18927648887, -6812.450581421103], [9683.689276492658, -6758.800581422975]]}, {"length": 4.29523819264, "source": 2585900332, "destination": 2585900459, "path": [[-2019.0607235051061, -1817.8505814212542], [-1993.5607235055386, -1817.0505814225635]]}, {"length": 24.1354107245, "source": 2585900332, "destination": 2585900364, "path": [[-2019.0607235051061, -1817.8505814212542], [-2055.9607235099975, -1830.050581421716], [-2072.060723506297, -1840.2005814230904], [-2088.160723509702, -1855.4505814236677], [-2101.5607235099765, -1868.6005814210205], [-2113.7107235063013, -1893.0005814219442]]}, {"length": 16.1401403018, "source": 2585900332, "destination": 2585900359, "path": [[-2019.0607235051061, -1817.8505814212542], [-2114.960723510251, -1817.9005814218385]]}, {"length": 58.1890698385, "source": 2069036811, "destination": 134980201, "path": [[-2682.6107235109475, 3461.849418577856], [-2680.910723505292, 3200.199418579075]]}, {"length": 124.043305461, "source": 2069036811, "destination": 2069036353, "path": [[-2682.6107235109475, 3461.849418577856], [-1945.7107235112403, 3464.549418577434]]}, {"length": 106.136709157, "source": 2086854412, "destination": 2086854369, "path": [[6102.239276494003, -2210.350581421494], [6099.539276490873, -1733.1005814220646]]}, {"length": 46.3002739866, "source": 2086854412, "destination": 134995137, "path": [[6102.239276494003, -2210.350581421494], [6377.339276490091, -2209.1005814210976]]}, {"length": 106.192272329, "source": 2086854412, "destination": 2086854492, "path": [[6102.239276494003, -2210.350581421494], [6104.939276490029, -2687.850581423845]]}, {"length": 45.0044016688, "source": 2086854412, "destination": 135107417, "path": [[6102.239276494003, -2210.350581421494], [5834.839276488424, -2211.6005814218906]]}, {"length": 60.0236730081, "source": 2086854413, "destination": 135016288, "path": [[7545.839276488664, -2592.7005814239124], [7547.339276491983, -2862.6005814231803]]}, {"length": 60.6240602626, "source": 2086854413, "destination": 135016282, "path": [[7545.839276488664, -2592.7005814239124], [7544.339276492451, -2320.1005814215137]]}, {"length": 121.598984946, "source": 2086854413, "destination": 2086854454, "path": [[7545.839276488664, -2592.7005814239124], [6823.339276493812, -2596.750581421503]]}, {"length": 121.638594841, "source": 2086854413, "destination": 2086854375, "path": [[7545.839276488664, -2592.7005814239124], [8268.58927648999, -2590.6505814212724]]}, {"length": 88.5496216013, "source": 135018882, "destination": 135033683, "path": [[5564.839276495093, 5967.8994185787815], [6090.839276488679, 5970.399418576022]]}, {"length": 57.8218353595, "source": 135018882, "destination": 2069036677, "path": [[5564.839276495093, 5967.8994185787815], [5563.589276491143, 6227.899418576044]]}, {"length": 11.0010464296, "source": 135018882, "destination": 135018871, "path": [[5564.839276495093, 5967.8994185787815], [5499.48927649524, 5967.8994185787815]]}, {"length": 166.193117066, "source": 2086854415, "destination": 2573122345, "path": [[6824.689276491825, -2923.5505814213525], [5837.189276491017, -2923.5505814213525]]}, {"length": 17.6022682421, "source": 2086854415, "destination": 2086854491, "path": [[6824.689276491825, -2923.5505814213525], [6824.489276489487, -3002.7005814226013]]}, {"length": 12.88746305, "source": 2086854415, "destination": 135047169, "path": [[6824.689276491825, -2923.5505814213525], [6824.8392764900245, -2865.6005814227115]]}, {"length": 10.0191744422, "source": 134979345, "destination": 1930503424, "path": [[9717.839276490282, -8614.5005814231], [9717.93927649145, -8569.450581422445]]}, {"length": 10.3117536063, "source": 134979345, "destination": 1999574946, "path": [[9717.839276490282, -8614.5005814231], [9656.739276493909, -8618.050581421954]]}, {"length": 12.1968940623, "source": 134979345, "destination": 134979238, "path": [[9717.839276490282, -8614.5005814231], [9790.13927648964, -8610.60058142371]]}, {"length": 173.131829451, "source": 2086854420, "destination": 2086854378, "path": [[10027.239276489297, -3131.8005814213734], [10023.63927648986, -2353.300581422246]]}, {"length": 55.3961872123, "source": 2086854420, "destination": 134983404, "path": [[10027.239276489297, -3131.8005814213734], [10356.389276488188, -3129.900581424039]]}, {"length": 120.317542625, "source": 2086854421, "destination": 2086854568, "path": [[8258.989276491491, -944.4505814215631], [8973.839276492869, -940.4005814239724]]}, {"length": 61.2357822222, "source": 2086854421, "destination": 135019217, "path": [[8258.989276491491, -944.4505814215631], [8257.339276489973, -669.1005814225548]]}, {"length": 60.6575751806, "source": 2086854421, "destination": 877895789, "path": [[8258.989276491491, -944.4505814215631], [8260.589276488872, -1217.200581422162]]}, {"length": 121.541937366, "source": 2086854421, "destination": 2086854422, "path": [[8258.989276491491, -944.4505814215631], [7536.8892764942075, -950.550581421794]]}, {"length": 34.7602222527, "source": 2069036822, "destination": 135074421, "path": [[8776.489276492328, 5463.399418577097], [8814.339276490557, 5498.399418577548], [8910.339276489765, 5582.399418578632]]}, {"length": 36.297344574, "source": 2069036822, "destination": 135074431, "path": [[8776.489276492328, 5463.399418577097], [8789.039276493328, 5498.29941857638], [8803.039276493508, 5552.999418576121], [8808.039276495094, 5589.149418579354], [8813.339276493081, 5623.899418576883]]}, {"length": 118.409261868, "source": 2086854423, "destination": 2074057016, "path": [[10416.589276488252, -390.250581421725], [9713.089276495168, -394.3005814228684]]}, {"length": 60.5242231727, "source": 2086854423, "destination": 134983509, "path": [[10416.589276488252, -390.250581421725], [10414.839276492672, -118.1005814210323]]}, {"length": 61.2358558126, "source": 2086854423, "destination": 134983511, "path": [[10416.589276488252, -390.250581421725], [10418.33927649094, -665.6005814207333]]}, {"length": 19.9542896488, "source": 2214680673, "destination": 2214680672, "path": [[-12988.910723507273, -2346.2005814209874], [-12883.210723508399, -2305.5505814220114]]}, {"length": 19.4212000821, "source": 2214680673, "destination": 2214680674, "path": [[-12988.910723507273, -2346.2005814209874], [-13091.76072350482, -2385.800581421904]]}, {"length": 48.7144590639, "source": 2214680673, "destination": 2214680676, "path": [[-12988.910723507273, -2346.2005814209874], [-12988.910723507273, -2565.2505814228734]]}, {"length": 55.8200965697, "source": 2086854428, "destination": 135019331, "path": [[8515.93927649219, -4730.050581422063], [8516.939276489666, -4981.050581420732]]}, {"length": 99.2230601937, "source": 2086854428, "destination": 2086854501, "path": [[8515.93927649219, -4730.050581422063], [7926.3892764913635, -4736.10058142171]]}, {"length": 32.8915309789, "source": 2086854428, "destination": 885855103, "path": [[8515.93927649219, -4730.050581422063], [8515.339276492285, -4582.150581423861]]}, {"length": 134.902801495, "source": 2086854431, "destination": 2086854499, "path": [[10442.089276494926, -3653.6005814227224], [10439.989276491702, -3859.100581422581], [10437.289276488571, -3876.3505814216614], [10426.539276494395, -3898.650581422913], [10413.139276494121, -3907.8005814232597], [10390.339276490578, -3917.9505814210816], [10287.08927648836, -3916.9505814236063], [10209.289276488675, -3919.950581423137], [9959.23927649045, -3921.1505814229495]]}, {"length": 69.7215010332, "source": 2086854431, "destination": 2086854452, "path": [[10442.089276494926, -3653.6005814227224], [10372.789276495098, -3658.6005814207565], [10320.539276492014, -3660.650581423397], [10028.18927648974, -3660.4505814210597]]}, {"length": 45.9012568653, "source": 2086854432, "destination": 135022785, "path": [[8947.639276492226, -3063.0005814238357], [8947.33927648872, -2856.6005814205655]]}, {"length": 56.7015726734, "source": 2086854433, "destination": 134975760, "path": [[8512.789276494459, -3814.65058142183], [8516.33927648976, -4069.6005814240266]]}, {"length": 44.7140846017, "source": 2086854433, "destination": 135019329, "path": [[8512.789276494459, -3814.65058142183], [8509.98927649016, -3613.6005814206837]]}, {"length": 138.356246432, "source": 2086854433, "destination": 2086854494, "path": [[8512.789276494459, -3814.65058142183], [8020.039276495083, -3817.6505814213615], [7985.1392764922475, -3815.650581422858], [7958.939276491606, -3807.3005814212024], [7941.489276490188, -3798.2005814214403], [7927.489276490007, -3785.2005814222875], [7921.389276489776, -3771.8005814220132], [7922.089276490851, -3617.550581420659]]}, {"length": 166.592884482, "source": 2086854436, "destination": 2573122344, "path": [[6817.48927649295, -1490.5005814220829], [5827.689276493686, -1496.6005814223138]]}, {"length": 53.2852545838, "source": 2086854436, "destination": 135091011, "path": [[6817.48927649295, -1490.5005814220829], [6818.839276490962, -1730.1005814225334]]}, {"length": 121.424236158, "source": 2086854436, "destination": 2086854468, "path": [[6817.48927649295, -1490.5005814220829], [7538.9392764932945, -1492.950581422292]]}, {"length": 59.9903297747, "source": 2086854436, "destination": 877895781, "path": [[6817.48927649295, -1490.5005814220829], [6815.9392764926, -1220.750581421015]]}, {"length": 109.337265303, "source": 2069036837, "destination": 2069036945, "path": [[7514.289276493002, 5708.149418577335], [8163.789276494526, 5708.149418577335]]}, {"length": 109.298845894, "source": 2069036837, "destination": 2069036439, "path": [[7514.289276493002, 5708.149418577335], [6865.039276490847, 5704.099418576192]]}, {"length": 64.3268645188, "source": 2069036837, "destination": 134985700, "path": [[7514.289276493002, 5708.149418577335], [7515.839276493352, 5418.899418579314]]}, {"length": 59.5454828053, "source": 2069036837, "destination": 135033689, "path": [[7514.289276493002, 5708.149418577335], [7512.839276493822, 5975.899418576347]]}, {"length": 121.511790309, "source": 2086854438, "destination": 2086854440, "path": [[8255.539276490254, -394.5505814222372], [7533.5892764911705, -396.3505814219559]]}, {"length": 61.0580240795, "source": 2086854438, "destination": 135019217, "path": [[8255.539276490254, -394.5505814222372], [8257.339276489973, -669.1005814225548]]}, {"length": 121.107177578, "source": 2086854438, "destination": 2086854382, "path": [[8255.539276490254, -394.5505814222372], [8975.08927648971, -394.3505814234527]]}, {"length": 60.1346835948, "source": 2086854438, "destination": 135019215, "path": [[8255.539276490254, -394.5505814222372], [8254.339276490442, -124.15058142067892]]}, {"length": 42.9082264237, "source": 1930503473, "destination": 1930503505, "path": [[10082.639276490114, -8640.80058142136], [9996.63927649408, -8642.000581421173], [9896.38927649139, -8641.400581421265], [9880.989276489061, -8642.600581421078], [9869.139276489135, -8645.60058142061], [9858.089276491455, -8650.65058142278], [9847.439276491343, -8657.850581421655], [9837.889276489876, -8665.150581421698]]}, {"length": 52.1432223755, "source": 1930503473, "destination": 2087861299, "path": [[10082.639276490114, -8640.80058142136], [10181.289276488314, -8641.400581421265], [10363.589276494167, -8642.300581421125], [10392.439276493804, -8643.80058142089]]}, {"length": 96.2511388651, "source": 1930503473, "destination": 1930503580, "path": [[10082.639276490114, -8640.80058142136], [10080.439276492825, -9073.60058142359]]}, {"length": 59.8681381876, "source": 2086854440, "destination": 135016272, "path": [[7533.5892764911705, -396.3505814219559], [7531.839276488483, -127.15058142376279]]}, {"length": 61.4360622389, "source": 2086854440, "destination": 135016275, "path": [[7533.5892764911705, -396.3505814219559], [7535.339276493858, -672.6005814208236]]}, {"length": 121.511790309, "source": 2086854440, "destination": 2086854438, "path": [[7533.5892764911705, -396.3505814219559], [8255.539276490254, -394.5505814222372]]}, {"length": 121.569185651, "source": 2086854440, "destination": 2086854507, "path": [[7533.5892764911705, -396.3505814219559], [6811.339276488581, -402.4505814221868]]}, {"length": 100.96560618, "source": 2086854442, "destination": 2086854484, "path": [[9406.689276488578, -4972.800581423798], [9408.589276489465, -5426.800581421531]]}, {"length": 46.3971125886, "source": 2086854442, "destination": 134979322, "path": [[9406.689276488578, -4972.800581423798], [9682.389276491676, -4971.900581423938]]}, {"length": 48.6015637236, "source": 2086854442, "destination": 135022844, "path": [[9406.689276488578, -4972.800581423798], [9117.889276488711, -4973.750581420689]]}, {"length": 8.08624768307, "source": 1933539975, "destination": 135075368, "path": [[6042.23927648917, -7289.500581421748], [6090.289276492911, -7288.900581421842]]}, {"length": 93.9286485013, "source": 1933539975, "destination": 1933539616, "path": [[6042.23927648917, -7289.500581421748], [6042.139276495107, -7268.950581423183], [6041.839276491601, -7197.000581420809], [6040.839276494125, -7004.200581423703], [6039.589276490176, -6923.100581420982], [6042.789276492044, -6867.200581421429]]}, {"length": 45.6593043757, "source": 1933539975, "destination": 1932196355, "path": [[6042.23927648917, -7289.500581421748], [5770.939276494857, -7292.950581422985]]}, {"length": 8.00615889839, "source": 1933539975, "destination": 1933540027, "path": [[6042.23927648917, -7289.500581421748], [6042.4392764915065, -7325.500581423228]]}, {"length": 45.2458723626, "source": 2086854447, "destination": 134979331, "path": [[9414.839276495002, -6761.650581420753], [9683.689276492658, -6758.800581422975]]}, {"length": 196.251309588, "source": 2086854447, "destination": 135022807, "path": [[9414.839276495002, -6761.650581420753], [9408.289276493066, -5879.200581421884]]}, {"length": 60.9801843264, "source": 2069036849, "destination": 134954280, "path": [[-1208.2607235086584, 4565.099418577745], [-1210.0107235113455, 4839.299418577525]]}, {"length": 12.4904149139, "source": 2069036849, "destination": 2358476581, "path": [[-1208.2607235086584, 4565.099418577745], [-1282.4607235089047, 4565.04941857716]]}, {"length": 61.0913746882, "source": 2069036849, "destination": 135021878, "path": [[-1208.2607235086584, 4565.099418577745], [-1206.5107235059713, 4290.399418579227]]}, {"length": 12.6588487141, "source": 2069036849, "destination": 2358476583, "path": [[-1208.2607235086584, 4565.099418577745], [-1133.060723510937, 4565.399418577698]]}, {"length": 122.108741278, "source": 2069036850, "destination": 2069036648, "path": [[3878.7892764915455, 6258.399418577199], [3153.439276488257, 6256.349418578111]]}, {"length": 64.4940767706, "source": 2069036850, "destination": 135007385, "path": [[3878.7892764915455, 6258.399418577199], [3880.839276490633, 5968.399418577519]]}, {"length": 182.461207959, "source": 2069036850, "destination": 2069036666, "path": [[3878.7892764915455, 6258.399418577199], [4962.639276492098, 6262.399418577757]]}, {"length": 69.7215010332, "source": 2086854452, "destination": 2086854431, "path": [[10028.18927648974, -3660.4505814210597], [10320.539276492014, -3660.650581423397], [10372.789276495098, -3658.6005814207565], [10442.089276494926, -3653.6005814227224]]}, {"length": 11.6038907172, "source": 2086854452, "destination": 2086854515, "path": [[10028.18927648974, -3660.4505814210597], [9959.23927649045, -3660.7505814210126]]}, {"length": 57.6687233758, "source": 2086854452, "destination": 2086854535, "path": [[10028.18927648974, -3660.4505814210597], [10031.689276495115, -3401.1505814213197]]}, {"length": 60.8576847179, "source": 2086854454, "destination": 135085736, "path": [[6823.339276493812, -2596.750581421503], [6821.839276490493, -2323.100581421045]]}, {"length": 19.6481944492, "source": 2086854454, "destination": 135047195, "path": [[6823.339276493812, -2596.750581421503], [6823.839276492549, -2685.100581423683]]}, {"length": 121.598984946, "source": 2086854454, "destination": 2086854413, "path": [[6823.339276493812, -2596.750581421503], [7545.839276488664, -2592.7005814239124]]}, {"length": 113.261113719, "source": 2069036856, "destination": 2251802364, "path": [[-3418.110723508505, 3457.1994185768062], [-4090.9607235093404, 3455.1994185783033]]}, {"length": 59.8674607397, "source": 2069036856, "destination": 135035727, "path": [[-3418.110723508505, 3457.1994185768062], [-3418.6607235113797, 3726.3994185785523]]}, {"length": 57.377297574, "source": 2086854457, "destination": 134983402, "path": [[10353.389276488655, -2602.850581421734], [10355.039276490174, -2860.850581424046]]}, {"length": 55.5425017052, "source": 2086854457, "destination": 134983399, "path": [[10353.389276488655, -2602.850581421734], [10351.839276488306, -2353.100581423462]]}, {"length": 6.50706039361, "source": 134995770, "destination": 2292321562, "path": [[-10577.360723509344, 5353.999418577615], [-10538.71072350887, 5354.299418577568]]}, {"length": 96.8403914658, "source": 134995770, "destination": 2292321468, "path": [[-10577.360723509344, 5353.999418577615], [-10577.410723506375, 5394.199418578438], [-10578.460723507987, 5408.349418576819], [-10580.560723511211, 5444.299418577713], [-10581.560723508686, 5462.449418576653], [-10580.710723509412, 5492.749418579024], [-10579.5107235096, 5513.69941857871], [-10579.5107235096, 5536.099418577578], [-10579.6607235078, 5562.399418579389], [-10579.260723510231, 5625.049418576111], [-10581.910723509225, 5667.24941857899], [-10586.460723509106, 5708.149418577335], [-10589.660723510973, 5728.249418577747], [-10592.710723507536, 5745.499418576827], [-10596.110723511742, 5760.199418578082], [-10600.710723508655, 5769.499418576629], [-10605.960723509612, 5776.749418576088], [-10615.210723507573, 5784.199418577884]]}, {"length": 10.9080770144, "source": 134995770, "destination": 2292321597, "path": [[-10577.360723509344, 5353.999418577615], [-10577.610723508713, 5304.949418576399]]}, {"length": 58.4776831907, "source": 2086854461, "destination": 135016280, "path": [[7193.889276493337, -1772.5505814212283], [7541.339276492919, -1771.100581422047]]}, {"length": 121.992510437, "source": 2086854461, "destination": 2086854396, "path": [[7193.889276493337, -1772.5505814212283], [7195.789276494224, -2321.100581422542]]}, {"length": 63.1229964171, "source": 2086854461, "destination": 135091012, "path": [[7193.889276493337, -1772.5505814212283], [6818.839276490962, -1774.1005814215782]]}, {"length": 60.7585281924, "source": 2086854462, "destination": 877895784, "path": [[7899.339276491446, -1218.1005814220214], [7538.339276493389, -1218.9505814212964]]}, {"length": 60.8007154155, "source": 2086854462, "destination": 877895789, "path": [[7899.339276491446, -1218.1005814220214], [8260.589276488872, -1217.200581422162]]}, {"length": 60.2233447326, "source": 2086854462, "destination": 2086854526, "path": [[7899.339276491446, -1218.1005814220214], [7899.839276490184, -1488.9005814211487]]}, {"length": 100.397395108, "source": 2086854465, "destination": 2086854536, "path": [[9116.18927649016, -4309.900581421999], [8519.639276492797, -4314.0005814237265]]}, {"length": 51.4833719009, "source": 2086854465, "destination": 134956081, "path": [[9116.18927649016, -4309.900581421999], [9116.28927649133, -4541.400581423715]]}, {"length": 54.4633246653, "source": 2086854465, "destination": 134975763, "path": [[9116.18927649016, -4309.900581421999], [9116.089276488992, -4065.000581423561]]}, {"length": 93.7249686541, "source": 2086854465, "destination": 2086854503, "path": [[9116.18927649016, -4309.900581421999], [9177.689276491208, -4309.4505814238455], [9297.239276492064, -4308.550581423987], [9673.089276489576, -4305.75058142324]]}, {"length": 121.594167147, "source": 2086854466, "destination": 2086854422, "path": [[6814.439276489282, -952.6005814208816], [7536.8892764942075, -950.550581421794]]}, {"length": 59.6344154022, "source": 2086854466, "destination": 877895781, "path": [[6814.439276489282, -952.6005814208816], [6815.9392764926, -1220.750581421015]]}, {"length": 121.678377018, "source": 2086854466, "destination": 2086854574, "path": [[6814.439276489282, -952.6005814208816], [6091.489276492723, -954.800581421722]]}, {"length": 61.6026355417, "source": 2086854466, "destination": 135043189, "path": [[6814.439276489282, -952.6005814208816], [6812.8392764919, -675.6005814239074]]}, {"length": 61.8591582623, "source": 2086854468, "destination": 135016280, "path": [[7538.9392764932945, -1492.950581422292], [7541.339276492919, -1771.100581422047]]}, {"length": 60.9350153739, "source": 2086854468, "destination": 877895784, "path": [[7538.9392764932945, -1492.950581422292], [7538.339276493389, -1218.9505814212964]]}, {"length": 121.424236158, "source": 2086854468, "destination": 2086854436, "path": [[7538.9392764932945, -1492.950581422292], [6817.48927649295, -1490.5005814220829]]}, {"length": 60.7476244463, "source": 2086854468, "destination": 2086854526, "path": [[7538.9392764932945, -1492.950581422292], [7899.839276490184, -1488.9005814211487]]}, {"length": 99.6660633511, "source": 2086854470, "destination": 2086854500, "path": [[7928.13927649405, -5665.700581420907], [7335.9392764942295, -5671.700581423522]]}, {"length": 51.2832381791, "source": 2086854470, "destination": 135016301, "path": [[7928.13927649405, -5665.700581420907], [7928.739276493957, -5896.3005814227645]]}, {"length": 50.1601487141, "source": 2086854470, "destination": 134991215, "path": [[7928.13927649405, -5665.700581420907], [7927.589276491176, -5440.150581421221]]}, {"length": 12.5838696811, "source": 2069037025, "destination": 2355654746, "path": [[-1218.4607235070644, 6240.299418578843], [-1143.7107235110489, 6240.399418576459]]}, {"length": 48.0369533905, "source": 2069037025, "destination": 2354509379, "path": [[-1218.4607235070644, 6240.299418578843], [-1219.9607235103826, 6456.29941857706]]}, {"length": 48.4267490828, "source": 2069037025, "destination": 2355654862, "path": [[-1218.4607235070644, 6240.299418578843], [-1216.2607235097767, 6022.549418577938]]}, {"length": 12.5673859765, "source": 2069037025, "destination": 2355654747, "path": [[-1218.4607235070644, 6240.299418578843], [-1293.1107235090167, 6239.849418577137]]}, {"length": 99.5527814393, "source": 2086854472, "destination": 2086854536, "path": [[7928.089276489914, -4315.950581421646], [8519.639276492797, -4314.0005814237265]]}, {"length": 6.64819213294, "source": 2086854472, "destination": 2086854563, "path": [[7928.089276489914, -4315.950581421646], [7888.5892764901655, -4316.250581421599]]}, {"length": 40.9641524402, "source": 2086854472, "destination": 1425441691, "path": [[7928.089276489914, -4315.950581421646], [7928.239276495219, -4472.500581421456], [7893.089276493015, -4480.050581420869]]}, {"length": 53.8962419632, "source": 2086854472, "destination": 134975758, "path": [[7928.089276489914, -4315.950581421646], [7927.839276490545, -4073.600581421033]]}, {"length": 462.486843723, "source": 2080739054, "destination": 1393210000, "path": [[-9256.910723507872, -10569.200581421966], [-9019.160723511277, -10569.600581423088], [-8849.710723509928, -10574.350581421753], [-8710.760723509737, -10584.350581421375], [-8515.260723505946, -10606.15058142389], [-8256.01072350679, -10646.500581422913], [-8078.360723509093, -10676.100581420655], [-7869.560723506197, -10708.950581420851], [-7331.260723510979, -10795.350581421559], [-7057.060723511199, -10841.000581422122], [-6556.560723510074, -10927.150581423462]]}, {"length": 13.8150225731, "source": 2080739054, "destination": 2089552577, "path": [[-9256.910723507872, -10569.200581421966], [-9255.660723511028, -10601.900581423963], [-9254.510723508247, -10631.30058142292]]}, {"length": 196.878729597, "source": 2080739054, "destination": 1959922651, "path": [[-9256.910723507872, -10569.200581421966], [-9258.210723508853, -10524.750581421216], [-9261.460723507753, -10481.450581423247], [-9264.110723506747, -10408.700581422181], [-9264.160723510884, -10336.850581420975], [-9274.910723505058, -10218.150581422946], [-9303.010723506588, -9959.200581423744], [-9311.710723508782, -9685.250581423332]]}, {"length": 58.2666166033, "source": 135018884, "destination": 2069036677, "path": [[5562.339276494299, 6489.899418578915], [5563.589276491143, 6227.899418576044]]}, {"length": 50.9082347321, "source": 135018884, "destination": 2069120414, "path": [[5562.339276494299, 6489.899418578915], [5259.939276491821, 6488.649418578518]]}, {"length": 109.257030892, "source": 135018884, "destination": 135038807, "path": [[5562.339276494299, 6489.899418578915], [6211.33927648998, 6492.399418576156]]}, {"length": 30.8035854054, "source": 2086854475, "destination": 2074098866, "path": [[9729.639276493173, -3922.2005814210092], [9732.039276492798, -4060.700581423049]]}, {"length": 38.64047024, "source": 2086854475, "destination": 2086854499, "path": [[9729.639276493173, -3922.2005814210092], [9959.23927649045, -3921.1505814229495]]}, {"length": 56.3438390245, "source": 2086854478, "destination": 134983397, "path": [[10349.589276493987, -2099.4505814222466], [10347.339276492563, -1846.100581420984]]}, {"length": 56.4105826135, "source": 2086854478, "destination": 134983399, "path": [[10349.589276493987, -2099.4505814222466], [10351.839276488306, -2353.100581423462]]}, {"length": 60.6480650684, "source": 2086854480, "destination": 135016282, "path": [[7904.689276493571, -2318.350581422379], [7544.339276492451, -2320.1005814215137]]}, {"length": 60.9510612081, "source": 2086854480, "destination": 135019220, "path": [[7904.689276493571, -2318.350581422379], [8266.83927649441, -2316.600581423245]]}, {"length": 184.46333116, "source": 2086854480, "destination": 2086854526, "path": [[7904.689276493571, -2318.350581422379], [7899.839276490184, -1488.9005814211487]]}, {"length": 54.0495354424, "source": 2086854482, "destination": 135022785, "path": [[8626.189276490948, -2858.000581422715], [8947.33927648872, -2856.6005814205655]]}, {"length": 59.9408815919, "source": 2086854482, "destination": 2086854564, "path": [[8626.189276490948, -2858.000581422715], [8631.539276493073, -2588.5005814210162]]}, {"length": 59.88958674, "source": 2086854482, "destination": 135019221, "path": [[8626.189276490948, -2858.000581422715], [8270.339276492678, -2859.600581423649]]}, {"length": 60.6801557233, "source": 2069037027, "destination": 134985680, "path": [[2432.08927648908, 5129.699418578326], [2429.989276492961, 5402.549418576541]]}, {"length": 62.351406269, "source": 2069037027, "destination": 134954304, "path": [[2432.08927648908, 5129.699418578326], [2436.4392764937293, 4849.349418577731]]}, {"length": 238.723016074, "source": 2069037027, "destination": 2069036323, "path": [[2432.08927648908, 5129.699418578326], [1718.389276490484, 5129.499418575989], [1013.9892764939873, 5125.449418578399]]}, {"length": 122.911690723, "source": 2069037027, "destination": 2069036496, "path": [[2432.08927648908, 5129.699418578326], [3162.2392764916185, 5129.499418575989]]}, {"length": 100.96560618, "source": 2086854484, "destination": 2086854442, "path": [[9408.589276489465, -5426.800581421531], [9406.689276488578, -4972.800581423798]]}, {"length": 46.5239800059, "source": 2086854484, "destination": 134979324, "path": [[9408.589276489465, -5426.800581421531], [9685.03927649067, -5424.900581420644]]}, {"length": 48.5126560295, "source": 2086854484, "destination": 134991221, "path": [[9408.589276489465, -5426.800581421531], [9120.339276492472, -5429.850581421647]]}, {"length": 100.60925466, "source": 2086854484, "destination": 135022807, "path": [[9408.589276489465, -5426.800581421531], [9408.289276493066, -5879.200581421884]]}, {"length": 51.5391861405, "source": 2086854485, "destination": 134962146, "path": [[6162.289276488764, -5235.450581423606], [6161.239276494257, -5003.700581422521]]}, {"length": 50.1492769433, "source": 2086854485, "destination": 134962148, "path": [[6162.289276488764, -5235.450581423606], [6163.3392764903765, -5460.950581422708]]}, {"length": 196.516848893, "source": 2086854485, "destination": 2086854414, "path": [[6162.289276488764, -5235.450581423606], [7329.939276495168, -5223.2505814231445]]}, {"length": 78.374133647, "source": 2293202916, "destination": 2293202968, "path": [[-12216.660723510131, 170.49941857649742], [-12216.610723505994, 122.09941857932449], [-12216.560723508963, -85.5005814237586], [-12209.210723504782, -98.20058142295807], [-12105.91072350553, -124.70058142355356]]}, {"length": 19.6276684955, "source": 2293202916, "destination": 2293202914, "path": [[-12216.660723510131, 170.49941857649742], [-12248.660723507499, 177.8494185771251], [-12329.610723504913, 192.29941857901167]]}, {"length": 19.4888360765, "source": 2293202916, "destination": 2293202922, "path": [[-12216.660723510131, 170.49941857649742], [-12105.8607235085, 145.0494185775142]]}, {"length": 121.350136815, "source": 2086854491, "destination": 2086854513, "path": [[6824.489276489487, -3002.7005814226013], [7545.5392764922635, -3002.7005814226013]]}, {"length": 30.4788574615, "source": 2086854491, "destination": 135064566, "path": [[6824.489276489487, -3002.7005814226013], [6824.13927648895, -3139.7505814219076]]}, {"length": 17.6022682421, "source": 2086854491, "destination": 2086854415, "path": [[6824.489276489487, -3002.7005814226013], [6824.689276491825, -2923.5505814213525]]}, {"length": 45.0374330145, "source": 2086854492, "destination": 135047193, "path": [[6104.939276490029, -2687.850581423845], [5837.339276489218, -2689.100581420689]]}, {"length": 106.192272329, "source": 2086854492, "destination": 2086854412, "path": [[6104.939276490029, -2687.850581423845], [6102.239276494003, -2210.350581421494]]}, {"length": 46.2660014273, "source": 2086854492, "destination": 134995134, "path": [[6104.939276490029, -2687.850581423845], [6379.839276490884, -2686.6005814234486]]}, {"length": 98.943536409, "source": 2086854494, "destination": 135019329, "path": [[7922.089276490851, -3617.550581420659], [8509.98927649016, -3613.6005814206837]]}, {"length": 138.356246432, "source": 2086854494, "destination": 2086854433, "path": [[7922.089276490851, -3617.550581420659], [7921.389276489776, -3771.8005814220132], [7927.489276490007, -3785.2005814222875], [7941.489276490188, -3798.2005814214403], [7958.939276491606, -3807.3005814212024], [7985.1392764922475, -3815.650581422858], [8020.039276495083, -3817.6505814213615], [8512.789276494459, -3814.65058142183]]}, {"length": 100.517212272, "source": 2086854494, "destination": 135043369, "path": [[7922.089276490851, -3617.550581420659], [7324.839276492412, -3621.6005814218024]]}, {"length": 103.737724488, "source": 2086715232, "destination": 2573122316, "path": [[887.8392764941623, -698.6005814226814], [483.28927649521347, -700.0505814218627], [271.48927649278676, -700.8505814205535]]}, {"length": 165.241502819, "source": 2086715232, "destination": 2086715247, "path": [[887.8392764941623, -698.6005814226814], [886.0892764914752, -422.05058142386065], [269.73927649009966, -424.30058142173266]]}, {"length": 51.705744447, "source": 2086854498, "destination": 135016299, "path": [[7927.489276490007, -5215.100581423826], [7927.339276491807, -4982.600581421082]]}, {"length": 100.575163092, "source": 2086854498, "destination": 2086854414, "path": [[7927.489276490007, -5215.100581423826], [7329.939276495168, -5223.2505814231445]]}, {"length": 50.0488937367, "source": 2086854498, "destination": 134991215, "path": [[7927.489276490007, -5215.100581423826], [7927.589276491176, -5440.150581421221]]}, {"length": 134.902801495, "source": 2086854499, "destination": 2086854431, "path": [[9959.23927649045, -3921.1505814229495], [10209.289276488675, -3919.950581423137], [10287.08927648836, -3916.9505814236063], [10390.339276490578, -3917.9505814210816], [10413.139276494121, -3907.8005814232597], [10426.539276494395, -3898.650581422913], [10437.289276488571, -3876.3505814216614], [10439.989276491702, -3859.100581422581], [10442.089276494926, -3653.6005814227224]]}, {"length": 38.64047024, "source": 2086854499, "destination": 2086854475, "path": [[9959.23927649045, -3921.1505814229495], [9729.639276493173, -3922.2005814210092]]}, {"length": 57.1324395977, "source": 2086854499, "destination": 2086854555, "path": [[9959.23927649045, -3921.1505814229495], [9960.589276488463, -4178.0505814230655]]}, {"length": 57.9103023023, "source": 2086854499, "destination": 2086854515, "path": [[9959.23927649045, -3921.1505814229495], [9959.23927649045, -3660.7505814210126]]}, {"length": 51.12764419, "source": 2086854500, "destination": 135035920, "path": [[7335.9392764942295, -5671.700581423522], [7336.839276490537, -5901.600581420752]]}, {"length": 99.6660633511, "source": 2086854500, "destination": 2086854470, "path": [[7335.9392764942295, -5671.700581423522], [7928.13927649405, -5665.700581420907]]}, {"length": 200.954809915, "source": 2086854500, "destination": 2086854534, "path": [[7335.9392764942295, -5671.700581423522], [6141.83927649492, -5679.900581423425]]}, {"length": 50.1579026736, "source": 2086854500, "destination": 134991213, "path": [[7335.9392764942295, -5671.700581423522], [7330.2892764886, -5446.200581420868]]}, {"length": 48.0087322021, "source": 2086854501, "destination": 2086854552, "path": [[7926.3892764913635, -4736.10058142171], [7926.089276494963, -4656.950581424013], [7926.0392764908265, -4643.350581421401], [7961.539276493568, -4641.550581421683], [7960.989276490693, -4545.3505814236905]]}, {"length": 100.551368305, "source": 2086854501, "destination": 2086854404, "path": [[7926.3892764913635, -4736.10058142171], [7328.9892764947235, -4744.250581421028]]}, {"length": 54.8194375089, "source": 2086854501, "destination": 135016299, "path": [[7926.3892764913635, -4736.10058142171], [7927.339276491807, -4982.600581421082]]}, {"length": 99.2230601937, "source": 2086854501, "destination": 2086854428, "path": [[7926.3892764913635, -4736.10058142171], [8515.93927649219, -4730.050581422063]]}, {"length": 100.308123423, "source": 2086723430, "destination": 2086723490, "path": [[3783.8892764909815, 716.0494185782795], [3187.989276490555, 709.9994185786329]]}, {"length": 56.9003097353, "source": 2086723430, "destination": 2080617396, "path": [[3783.8892764909815, 716.0494185782795], [3781.189276494956, 971.8994185767826]]}, {"length": 93.7249686541, "source": 2086854503, "destination": 2086854465, "path": [[9673.089276489576, -4305.75058142324], [9297.239276492064, -4308.550581423987], [9177.689276491208, -4309.4505814238455], [9116.18927649016, -4309.900581421999]]}, {"length": 28.2901216011, "source": 2086854503, "destination": 134979316, "path": [[9673.089276489576, -4305.75058142324], [9671.03927649049, -4178.550581421803]]}, {"length": 55.35305599, "source": 2086776807, "destination": 135036824, "path": [[8954.239276491193, 3476.999418577265], [8953.839276493625, 3725.8994185762617]]}, {"length": 60.8794508326, "source": 2086776807, "destination": 134960003, "path": [[8954.239276491193, 3476.999418577265], [8954.6892764929, 3203.24941857919]]}, {"length": 112.59550364, "source": 2086776807, "destination": 2086776820, "path": [[8954.239276491193, 3476.999418577265], [9623.139276492055, 3476.999418577265]]}, {"length": 122.450221359, "source": 2086776807, "destination": 2086776693, "path": [[8954.239276491193, 3476.999418577265], [8226.839276488818, 3470.8994185770334]]}, {"length": 117.120854104, "source": 2086723436, "destination": 2086723498, "path": [[4664.3392764949, 135.49941857604608], [5360.18927649451, 137.2994185793175]]}, {"length": 60.7683176441, "source": 2086723436, "destination": 134936066, "path": [[4664.3392764949, 135.49941857604608], [4663.439276491488, 408.7494185789353]]}, {"length": 60.6555438869, "source": 2086723436, "destination": 135010413, "path": [[4664.3392764949, 135.49941857604608], [4664.989276491838, -73.55058142266557], [4641.4392764901895, -134.70058142317498]]}, {"length": 61.0578026651, "source": 2086854509, "destination": 135019219, "path": [[8262.23927649039, -1493.5505814221983], [8263.839276494877, -1768.100581422516]]}, {"length": 61.4582101088, "source": 2086854509, "destination": 877895789, "path": [[8262.23927649039, -1493.5505814221983], [8260.589276488872, -1217.200581422162]]}, {"length": 115.961677542, "source": 2086854509, "destination": 2086854575, "path": [[8262.23927649039, -1493.5505814221983], [8951.239276491662, -1494.5505814232263]]}, {"length": 165.241502819, "source": 2086715247, "destination": 2086715232, "path": [[269.73927649009966, -424.30058142173266], [886.0892764914752, -422.05058142386065], [887.8392764941623, -698.6005814226814]]}, {"length": 121.327259342, "source": 2086715247, "destination": 2086776746, "path": [[269.73927649009966, -424.30058142173266], [-451.11072351033954, -426.9005814236948]]}, {"length": 61.5026284637, "source": 2086715247, "destination": 2573122316, "path": [[269.73927649009966, -424.30058142173266], [271.48927649278676, -700.8505814205535]]}, {"length": 31.1584972409, "source": 2086854513, "destination": 135016288, "path": [[7545.5392764922635, -3002.7005814226013], [7547.339276491983, -2862.6005814231803]]}, {"length": 121.350136815, "source": 2086854513, "destination": 2086854491, "path": [[7545.5392764922635, -3002.7005814226013], [6824.489276489487, -3002.7005814226013]]}, {"length": 18.6262253215, "source": 2086854513, "destination": 2080585085, "path": [[7545.5392764922635, -3002.7005814226013], [7544.43927649362, -3086.4505814207632]]}, {"length": 81.077858296, "source": 2086776712, "destination": 3146557081, "path": [[-4851.910723509434, 109.0994185766192], [-4801.560723507237, 109.39941857657232], [-4370.210723507739, 111.84941857678155]]}, {"length": 34.4596003121, "source": 2086776712, "destination": 3146595665, "path": [[-4851.910723509434, 109.0994185766192], [-4852.760723508709, 264.04941857904873]]}, {"length": 41.8651262473, "source": 2086776712, "destination": 3146411825, "path": [[-4851.910723509434, 109.0994185766192], [-4850.860723507822, -79.15058142060616]]}, {"length": 90.3246653554, "source": 2074057136, "destination": 135022802, "path": [[9510.489276493672, -664.300581423305], [8973.839276492869, -667.0505814234673]]}, {"length": 100.1165139, "source": 2086723444, "destination": 2086723461, "path": [[3780.0392764921753, 1260.0994185767433], [3185.2392764903925, 1258.0994185782401]]}, {"length": 60.7238074196, "source": 2086723444, "destination": 2080617383, "path": [[3780.0392764921753, 1260.0994185767433], [3778.989276490563, 1533.1494185772954]]}, {"length": 121.33338766, "source": 2086723445, "destination": 2086723560, "path": [[259.0892764899877, 1247.1994185787594], [-461.7607235104515, 1244.5994185767972]]}, {"length": 60.9356070004, "source": 2086723445, "destination": 134968198, "path": [[259.0892764899877, 1247.1994185787594], [260.8392764926748, 973.1994185777637]]}, {"length": 59.679058534, "source": 2086723447, "destination": 134968200, "path": [[1004.4892764895508, 707.5494185784237], [1002.7892764910007, 975.8994185773417]]}, {"length": 61.9697168567, "source": 2086723447, "destination": 135051131, "path": [[1004.4892764895508, 707.5494185784237], [1006.2892764892695, 428.89941857637837]]}, {"length": 124.882933116, "source": 2086723447, "destination": 2086723508, "path": [[1004.4892764895508, 707.5494185784237], [262.5392764912249, 704.8494185788456]]}, {"length": 120.937009456, "source": 2086723449, "destination": 2086723457, "path": [[2449.439276489329, 2354.499418576239], [1730.9892764885149, 2359.399418576658]]}, {"length": 62.4026995127, "source": 2086723449, "destination": 134994387, "path": [[2449.439276489329, 2354.499418576239], [2449.739276492835, 2073.899418576275]]}, {"length": 123.05609752, "source": 2086723449, "destination": 2086723573, "path": [[2449.439276489329, 2354.499418576239], [2552.43927649218, 2352.3994185765673], [3090.5892764891973, 2355.4494185766825], [3180.4392764911427, 2354.199418576286]]}, {"length": 62.6273150684, "source": 2086854523, "destination": 2086854560, "path": [[10047.789276491414, -929.0005814222013], [10419.889276491289, -928.2005814235106]]}, {"length": 89.824472358, "source": 2086854523, "destination": 2086854408, "path": [[10047.789276491414, -929.0005814222013], [10050.439276490408, -1332.9005814206596]]}, {"length": 55.0281666953, "source": 2086854523, "destination": 2074057116, "path": [[10047.789276491414, -929.0005814222013], [9720.839276489813, -929.7005814232762]]}, {"length": 48.5038306229, "source": 2658901885, "destination": 135035920, "path": [[7338.039276490349, -6119.700581422194], [7336.839276490537, -5901.600581420752]]}, {"length": 52.6846316545, "source": 2658901885, "destination": 135081370, "path": [[7338.039276490349, -6119.700581422194], [7339.33927649133, -6356.600581423067]]}, {"length": 250.514710844, "source": 2658901885, "destination": 2658901914, "path": [[7338.039276490349, -6119.700581422194], [5849.839276493185, -6148.100581423677]]}, {"length": 184.46333116, "source": 2086854526, "destination": 2086854480, "path": [[7899.839276490184, -1488.9005814211487], [7904.689276493571, -2318.350581422379]]}, {"length": 60.7476244463, "source": 2086854526, "destination": 2086854468, "path": [[7899.839276490184, -1488.9005814211487], [7538.9392764932945, -1492.950581422292]]}, {"length": 60.2233447326, "source": 2086854526, "destination": 2086854462, "path": [[7899.839276490184, -1488.9005814211487], [7899.339276491446, -1218.1005814220214]]}, {"length": 269.818522663, "source": 2086723455, "destination": 2086723516, "path": [[3912.839276495106, 718.099418577367], [4761.68927649212, 717.249418578092], [5515.839276490908, 724.0494185793978]]}, {"length": 60.0347082412, "source": 2086723455, "destination": 135007454, "path": [[3912.839276495106, 718.099418577367], [3914.289276494287, 448.1494185775148]]}, {"length": 120.937009456, "source": 2086723457, "destination": 2086723449, "path": [[1730.9892764885149, 2359.399418576658], [2449.439276489329, 2354.499418576239]]}, {"length": 60.2907267012, "source": 2086723457, "destination": 134990159, "path": [[1730.9892764885149, 2359.399418576658], [1729.2392764929332, 2630.4994185792907]]}, {"length": 49.2499914688, "source": 2069036930, "destination": 4224950604, "path": [[5508.539276490865, 2918.599418578083], [5510.93927649049, 2697.1494185765723]]}, {"length": 154.908329529, "source": 2069036930, "destination": 2069036916, "path": [[5508.539276490865, 2918.599418578083], [4588.289276490797, 2912.499418577852]]}, {"length": 6.55673333125, "source": 2069036930, "destination": 4224950670, "path": [[5508.539276490865, 2918.599418578083], [5547.489276494844, 2918.5494185774987]]}, {"length": 48.1601561379, "source": 2069036930, "destination": 4224950623, "path": [[5508.539276490865, 2918.599418578083], [5506.189276488271, 3135.1494185791753]]}, {"length": 54.6447269593, "source": 134967275, "destination": 2292321562, "path": [[-10214.11072350986, 5356.39941857724], [-10335.760723506837, 5355.799418577334], [-10538.71072350887, 5354.299418577568]]}, {"length": 72.7647561129, "source": 134967275, "destination": 135032438, "path": [[-10214.11072350986, 5356.39941857724], [-10069.510723511143, 5356.749418577778], [-9781.860723506952, 5357.449418578853]]}, {"length": 70.8575316259, "source": 134967275, "destination": 134967278, "path": [[-10214.11072350986, 5356.39941857724], [-10217.660723505162, 5620.149418579245], [-10218.460723507405, 5674.999418577187]]}, {"length": 199.41403886, "source": 2086854532, "destination": 2086854537, "path": [[8508.389276492779, -3400.550581421413], [7323.4892764944, -3404.6005814225564]]}, {"length": 8.1279368115, "source": 2086854532, "destination": 2086854397, "path": [[8508.389276492779, -3400.550581421413], [8508.689276489178, -3437.1005814222144]]}, {"length": 46.4136210796, "source": 2086854532, "destination": 135019326, "path": [[8508.389276492779, -3400.550581421413], [8506.839276492428, -3191.850581423239]]}, {"length": 100.1165139, "source": 2086723461, "destination": 2086723444, "path": [[3185.2392764903925, 1258.0994185782401], [3780.0392764921753, 1260.0994185767433]]}, {"length": 122.841790288, "source": 2086723461, "destination": 2086723474, "path": [[3185.2392764903925, 1258.0994185782401], [2455.4392764883914, 1254.0494185770967]]}, {"length": 61.0019806045, "source": 2086723461, "destination": 134997388, "path": [[3185.2392764903925, 1258.0994185782401], [3183.9892764935485, 1532.399418579189]]}, {"length": 60.4682811541, "source": 2086723461, "destination": 134968207, "path": [[3185.2392764903925, 1258.0994185782401], [3186.489276494342, 986.1994185769163]]}, {"length": 200.954809915, "source": 2086854534, "destination": 2086854500, "path": [[6141.83927649492, -5679.900581423425], [7335.9392764942295, -5671.700581423522]]}, {"length": 52.3378949901, "source": 2086854534, "destination": 1933603724, "path": [[6141.83927649492, -5679.900581423425], [6140.98927648854, -5776.950581420692], [6145.439276494358, -5915.2005814233635]]}, {"length": 49.3895036904, "source": 2086854534, "destination": 134962148, "path": [[6141.83927649492, -5679.900581423425], [6142.339276493658, -5622.400581422937], [6143.68927649167, -5513.500581422193], [6144.139276493377, -5497.850581424046], [6148.639276489121, -5481.85058142181], [6163.3392764903765, -5460.950581422708]]}, {"length": 51.8684665826, "source": 2086854535, "destination": 2086854569, "path": [[10031.689276495115, -3401.1505814213197], [9723.489276488806, -3400.550581421413]]}, {"length": 57.6687233758, "source": 2086854535, "destination": 2086854452, "path": [[10031.689276495115, -3401.1505814213197], [10028.18927648974, -3660.4505814210597]]}, {"length": 99.5527814393, "source": 2086854536, "destination": 2086854472, "path": [[8519.639276492797, -4314.0005814237265], [7928.089276489914, -4315.950581421646]]}, {"length": 100.397395108, "source": 2086854536, "destination": 2086854465, "path": [[8519.639276492797, -4314.0005814237265], [9116.18927649016, -4309.900581421999]]}, {"length": 30.4801881028, "source": 2086854536, "destination": 885855100, "path": [[8519.639276492797, -4314.0005814237265], [8521.489276489547, -4451.050581423033]]}, {"length": 54.3549912572, "source": 2086854536, "destination": 134975760, "path": [[8519.639276492797, -4314.0005814237265], [8516.33927648976, -4069.6005814240266]]}, {"length": 48.2591455263, "source": 2086854537, "destination": 135043369, "path": [[7323.4892764944, -3404.6005814225564], [7324.839276492412, -3621.6005814218024]]}, {"length": 46.2354073075, "source": 2086854537, "destination": 2573122354, "path": [[7323.4892764944, -3404.6005814225564], [7322.189276493418, -3196.7005814230733]]}, {"length": 199.41403886, "source": 2086854537, "destination": 2086854532, "path": [[7323.4892764944, -3404.6005814225564], [8508.389276492779, -3400.550581421413]]}, {"length": 60.1907110589, "source": 2086723466, "destination": 134968203, "path": [[1741.4892764904266, 707.9494185759927], [1739.739276494845, 978.5994185769198]]}, {"length": 120.825077868, "source": 2086723466, "destination": 2086723566, "path": [[1741.4892764904266, 707.9494185759927], [2413.239276492618, 709.6994185786798], [2459.239276490166, 707.4494185772551]]}, {"length": 60.4574741365, "source": 135019159, "destination": 2069036353, "path": [[-1947.4107235097904, 3736.3994185781735], [-1945.7107235112403, 3464.549418577434]]}, {"length": 125.306750919, "source": 135019159, "destination": 135021875, "path": [[-1947.4107235097904, 3736.3994185781735], [-1203.0107235077026, 3739.0994185777517]]}, {"length": 62.3922997849, "source": 135019159, "destination": 2069036870, "path": [[-1947.4107235097904, 3736.3994185781735], [-1949.210723509509, 4016.9494185775534]]}, {"length": 124.044250012, "source": 135019159, "destination": 135016135, "path": [[-1947.4107235097904, 3736.3994185781735], [-2684.3107235094976, 3733.699418578595]]}, {"length": 109.339202405, "source": 2069036941, "destination": 2069036712, "path": [[8161.089276491395, 6237.04941857639], [7511.589276489872, 6238.049418577419]]}, {"length": 47.669688688, "source": 2069036941, "destination": 4274705974, "path": [[8161.089276491395, 6237.04941857639], [8160.08927649392, 6451.399418576642]]}, {"length": 57.5216282073, "source": 2069036941, "destination": 135033694, "path": [[8161.089276491395, 6237.04941857639], [8162.339276488239, 5978.399418577141]]}, {"length": 109.298969584, "source": 2069036941, "destination": 2069036662, "path": [[8161.089276491395, 6237.04941857639], [8810.33927649355, 6240.099418576506]]}, {"length": 113.397661427, "source": 2086854544, "destination": 2086854568, "path": [[9647.589276490009, -938.3505814213322], [8973.839276492869, -940.4005814239724]]}, {"length": 34.4263680724, "source": 2086854544, "destination": 2074057152, "path": [[9647.589276490009, -938.3505814213322], [9646.889276488935, -783.5505814206556]]}, {"length": 120.760556425, "source": 2086723474, "destination": 2086723577, "path": [[2455.4392764883914, 1254.0494185770967], [1737.9892764921578, 1256.0494185791526]]}, {"length": 122.841790288, "source": 2086723474, "destination": 2086723461, "path": [[2455.4392764883914, 1254.0494185770967], [3185.2392764903925, 1258.0994185782401]]}, {"length": 60.6837203041, "source": 2086723474, "destination": 134968206, "path": [[2455.4392764883914, 1254.0494185770967], [2459.8392764900723, 981.1994185788819]]}, {"length": 112.685118668, "source": 2086854548, "destination": 2086854378, "path": [[10023.63927648986, -1846.6005814232744], [10023.63927648986, -2353.300581422246]]}, {"length": 50.9705143183, "source": 2086854548, "destination": 134979219, "path": [[10023.63927648986, -1846.6005814232744], [9720.78927649278, -1847.0505814214278]]}, {"length": 114.278445033, "source": 2086854548, "destination": 2086854572, "path": [[10023.63927648986, -1846.6005814232744], [10012.889276488579, -1332.8005814230437]]}, {"length": 54.479539553, "source": 2086854548, "destination": 134983397, "path": [[10023.63927648986, -1846.6005814232744], [10347.339276492563, -1846.100581420984]]}, {"length": 70.8575316259, "source": 134967278, "destination": 134967275, "path": [[-10218.460723507405, 5674.999418577187], [-10217.660723505162, 5620.149418579245], [-10214.11072350986, 5356.39941857724]]}, {"length": 122.377553372, "source": 135036822, "destination": 135036824, "path": [[8226.839276488818, 3723.3994185790207], [8953.839276493625, 3725.8994185762617]]}, {"length": 56.1534855076, "source": 135036822, "destination": 2086776693, "path": [[8226.839276488818, 3723.3994185790207], [8226.839276488818, 3470.8994185770334]]}, {"length": 85.1765013756, "source": 135036822, "destination": 135100478, "path": [[8226.839276488818, 3723.3994185790207], [8224.33927649513, 4106.399418578377]]}, {"length": 194.425817972, "source": 2086854552, "destination": 134956081, "path": [[7960.989276490693, -4545.3505814236905], [9116.28927649133, -4541.400581423715]]}, {"length": 21.4818005489, "source": 2086854552, "destination": 1425441691, "path": [[7960.989276490693, -4545.3505814236905], [7931.389276492951, -4545.450581421306], [7906.039276491583, -4524.250581422251], [7893.4892764905835, -4492.950581422406], [7893.089276493015, -4480.050581420869]]}, {"length": 48.0087322021, "source": 2086854552, "destination": 2086854501, "path": [[7960.989276490693, -4545.3505814236905], [7961.539276493568, -4641.550581421683], [7926.0392764908265, -4643.350581421401], [7926.089276494963, -4656.950581424013], [7926.3892764913635, -4736.10058142171]]}, {"length": 8.77421182575, "source": 2585900356, "destination": 2585900605, "path": [[-1700.6607235074966, -1728.2005814216461], [-1701.1107235092027, -1767.6505814208099]]}, {"length": 50.4828923549, "source": 2658901914, "destination": 135081367, "path": [[5849.839276493185, -6148.100581423677], [5850.83927649066, -6375.100581422544]]}, {"length": 250.514710844, "source": 2658901914, "destination": 2658901885, "path": [[5849.839276493185, -6148.100581423677], [7338.039276490349, -6119.700581422194]]}, {"length": 51.0387221849, "source": 2658901914, "destination": 135035917, "path": [[5849.839276493185, -6148.100581423677], [5848.839276488605, -5918.600581424016]]}, {"length": 57.1324395977, "source": 2086854555, "destination": 2086854499, "path": [[9960.589276488463, -4178.0505814230655], [9959.23927649045, -3921.1505814229495]]}, {"length": 38.1261215284, "source": 2086854555, "destination": 134975807, "path": [[9960.589276488463, -4178.0505814230655], [9734.039276494856, -4178.450581420634]]}, {"length": 60.9577888492, "source": 2086854556, "destination": 135043187, "path": [[6088.639276491393, -404.5005814212743], [6090.339276489942, -678.6005814234386]]}, {"length": 60.9801104274, "source": 2086854556, "destination": 135074782, "path": [[6088.639276491393, -404.5005814212743], [6086.939276492842, -130.30058142149414]]}, {"length": 121.638187321, "source": 2086854556, "destination": 2086854507, "path": [[6088.639276491393, -404.5005814212743], [6811.339276488581, -402.4505814221868]]}, {"length": 121.105093814, "source": 2069036959, "destination": 2069036700, "path": [[1720.4892764937085, 4573.199418576479], [2439.8392764908294, 4581.299418578766]]}, {"length": 90.1579761192, "source": 2086854560, "destination": 134983512, "path": [[10419.889276491289, -928.2005814235106], [10422.339276495051, -1333.6005814217344]]}, {"length": 62.6273150684, "source": 2086854560, "destination": 2086854523, "path": [[10419.889276491289, -928.2005814235106], [10047.789276491414, -929.0005814222013]]}, {"length": 58.4001852001, "source": 2086854560, "destination": 134983511, "path": [[10419.889276491289, -928.2005814235106], [10418.33927649094, -665.6005814207333]]}, {"length": 45.0304283901, "source": 2703728624, "destination": 2069376818, "path": [[-3832.410723511259, 4887.349418577714], [-4099.910723510902, 4886.39941857727]]}, {"length": 50.8549181133, "source": 2703728624, "destination": 2309494563, "path": [[-3832.410723511259, 4887.349418577714], [-3530.310723505181, 4888.449418576357]]}, {"length": 12.8096009467, "source": 2703728624, "destination": 2069036749, "path": [[-3832.410723511259, 4887.349418577714], [-3832.7107235076596, 4829.749418576057]]}, {"length": 96.5179642279, "source": 2703728624, "destination": 2309494214, "path": [[-3832.410723511259, 4887.349418577714], [-3830.260723511003, 5321.349418576205]]}, {"length": 60.7353090192, "source": 2086723490, "destination": 134997385, "path": [[3187.989276490555, 709.9994185786329], [3189.489276493873, 436.8994185774966]]}, {"length": 100.308123423, "source": 2086723490, "destination": 2086723430, "path": [[3187.989276490555, 709.9994185786329], [3783.8892764909815, 716.0494185782795]]}, {"length": 122.661060408, "source": 2086723490, "destination": 2086723566, "path": [[3187.989276490555, 709.9994185786329], [2459.239276490166, 707.4494185772551]]}, {"length": 61.4246184894, "source": 2086723490, "destination": 134968207, "path": [[3187.989276490555, 709.9994185786329], [3186.489276494342, 986.1994185769163]]}, {"length": 6.64819213294, "source": 2086854563, "destination": 2086854472, "path": [[7888.5892764901655, -4316.250581421599], [7928.089276489914, -4315.950581421646]]}, {"length": 36.4354223343, "source": 2086854563, "destination": 1425441691, "path": [[7888.5892764901655, -4316.250581421599], [7893.089276493015, -4480.050581420869]]}, {"length": 94.3554562454, "source": 2086854563, "destination": 2086854406, "path": [[7888.5892764901655, -4316.250581421599], [7327.939276493112, -4320.050581423374]]}, {"length": 53.900422397, "source": 2086854563, "destination": 1295456198, "path": [[7888.5892764901655, -4316.250581421599], [7880.989276493721, -4073.9505814215704]]}, {"length": 59.9408815919, "source": 2086854564, "destination": 2086854482, "path": [[8631.539276493073, -2588.5005814210162], [8626.189276490948, -2858.000581422715]]}, {"length": 52.8979511937, "source": 2086854564, "destination": 2086854395, "path": [[8631.539276493073, -2588.5005814210162], [8945.839276492507, -2586.6005814236814]]}, {"length": 61.0857683371, "source": 2086854564, "destination": 2086854375, "path": [[8631.539276493073, -2588.5005814210162], [8268.58927648999, -2590.6505814212724]]}, {"length": 60.6132066734, "source": 2069036966, "destination": 134985673, "path": [[-491.31072351116245, 5116.049418578683], [-493.0607235067441, 5388.599418576945]]}, {"length": 122.501769597, "source": 2069036966, "destination": 2069036970, "path": [[-491.31072351116245, 5116.049418578683], [236.3392764905825, 5123.399418579311]]}, {"length": 48.147990441, "source": 2069036966, "destination": 2358476430, "path": [[-491.31072351116245, 5116.049418578683], [-489.96072350604436, 4899.549418578175]]}, {"length": 12.6844537831, "source": 2069036966, "destination": 2703728623, "path": [[-491.31072351116245, 5116.049418578683], [-566.6607235070842, 5115.74941857873]]}, {"length": 135.833733061, "source": 2267910129, "destination": 2267910080, "path": [[-11963.410723510038, -7881.850581423322], [-11572.910723508301, -7970.10058142078], [-11273.860723505892, -8035.050581423065], [-11220.210723507762, -8035.050581423065], [-11185.310723504927, -8035.050581423065]]}, {"length": 53.868977582, "source": 2267910129, "destination": 2267910068, "path": [[-11963.410723510038, -7881.850581423322], [-12270.16072351006, -7812.550581423494]]}, {"length": 96.5931403954, "source": 2267910129, "destination": 2267910118, "path": [[-11963.410723510038, -7881.850581423322], [-11872.310723511247, -7660.100581421858], [-11839.410723510468, -7580.05058142075], [-11792.960723511214, -7467.1005814224145]]}, {"length": 113.397661427, "source": 2086854568, "destination": 2086854544, "path": [[8973.839276492869, -940.4005814239724], [9647.589276490009, -938.3505814213322]]}, {"length": 60.7903381465, "source": 2086854568, "destination": 135022802, "path": [[8973.839276492869, -940.4005814239724], [8973.839276492869, -667.0505814234673]]}, {"length": 61.2759701794, "source": 2086854568, "destination": 877895724, "path": [[8973.839276492869, -940.4005814239724], [8973.839276492869, -1125.6005814210823], [8969.289276492986, -1174.3505814223454], [8962.039276489975, -1215.4505814230276]]}, {"length": 120.317542625, "source": 2086854568, "destination": 2086854421, "path": [[8973.839276492869, -940.4005814239724], [8258.989276491491, -944.4505814215631]]}, {"length": 51.8684665826, "source": 2086854569, "destination": 2086854535, "path": [[9723.489276488806, -3400.550581421413], [10031.689276495115, -3401.1505814213197]]}, {"length": 58.0556365012, "source": 2086854569, "destination": 134979223, "path": [[9723.489276488806, -3400.550581421413], [9725.139276490325, -3661.6005814238406]]}, {"length": 60.3797557778, "source": 2069036970, "destination": 134982672, "path": [[236.3392764905825, 5123.399418579311], [234.58927649500083, 5394.89941857596]]}, {"length": 119.439036403, "source": 2069036970, "destination": 2069037048, "path": [[236.3392764905825, 5123.399418579311], [945.8392764898349, 5127.499418577486]]}, {"length": 62.0030858365, "source": 2069036970, "destination": 134954292, "path": [[236.3392764905825, 5123.399418579311], [238.0892764932696, 4844.599418579065]]}, {"length": 122.501769597, "source": 2069036970, "destination": 2069036966, "path": [[236.3392764905825, 5123.399418579311], [-491.31072351116245, 5116.049418578683]]}, {"length": 61.7473799948, "source": 2086723499, "destination": 134982659, "path": [[255.58927649171892, 1798.9994185789726], [257.3892764914376, 1521.3494185779552]]}, {"length": 121.335467503, "source": 2086723499, "destination": 2086723542, "path": [[255.58927649171892, 1798.9994185789726], [-465.2607235087203, 1796.3494185764262]]}, {"length": 6.32016195362, "source": 2086854572, "destination": 2086854408, "path": [[10012.889276488579, -1332.8005814230437], [10050.439276490408, -1332.9005814206596]]}, {"length": 114.278445033, "source": 2086854572, "destination": 2086854548, "path": [[10012.889276488579, -1332.8005814230437], [10023.63927648986, -1846.6005814232744]]}, {"length": 20.2221384252, "source": 2086854572, "destination": 2074057158, "path": [[10012.889276488579, -1332.8005814230437], [9892.739276494922, -1332.5005814230906]]}, {"length": 12.7007855523, "source": 2069036973, "destination": 2357086570, "path": [[-2689.5607235104535, 4560.099418576157], [-2614.1107235062577, 4560.2994185784955]]}, {"length": 12.7263062456, "source": 2069036973, "destination": 2316883634, "path": [[-2689.5607235104535, 4560.099418576157], [-2765.160723505744, 4559.849418576789]]}, {"length": 48.2036467665, "source": 2069036973, "destination": 2310516501, "path": [[-2689.5607235104535, 4560.099418576157], [-2688.2107235053354, 4343.349418576281]]}, {"length": 121.678377018, "source": 2086854574, "destination": 2086854466, "path": [[6091.489276492723, -954.800581421722], [6814.439276489282, -952.6005814208816]]}, {"length": 59.5901925626, "source": 2086854574, "destination": 877895779, "path": [[6091.489276492723, -954.800581421722], [6093.239276488304, -1222.750581423071]]}, {"length": 61.4244717608, "source": 2086854574, "destination": 135043187, "path": [[6091.489276492723, -954.800581421722], [6090.339276489942, -678.6005814234386]]}, {"length": 44.6103605555, "source": 2086862767, "destination": 134979232, "path": [[10020.939276493835, -6811.300581421875], [9755.839276493816, -6811.050581422506]]}, {"length": 96.240369926, "source": 2086862767, "destination": 2086862856, "path": [[10020.939276493835, -6811.300581421875], [10018.289276494841, -7244.050581423522]]}, {"length": 61.568829951, "source": 2086723504, "destination": 134994385, "path": [[2450.339276492741, 1806.1994185778474], [2450.989276489679, 1529.3494185790735]]}, {"length": 123.245351969, "source": 2086723504, "destination": 2086723538, "path": [[2450.339276492741, 1806.1994185778474], [3182.539276494367, 1808.2494185769349]]}, {"length": 120.487388803, "source": 2086723504, "destination": 2086723533, "path": [[2450.339276492741, 1806.1994185778474], [1734.5392764909207, 1802.149418576704]]}, {"length": 36.5635777916, "source": 2586992561, "destination": 2586992560, "path": [[895.1892764912373, -1888.1005814215257], [677.9392764926229, -1888.1005814215257]]}, {"length": 9.2521872566, "source": 2586992561, "destination": 2586992562, "path": [[895.1892764912373, -1888.1005814215257], [895.6392764929433, -1929.7005814209456]]}, {"length": 11.976171546, "source": 2586992562, "destination": 2568599763, "path": [[895.6392764929433, -1929.7005814209456], [896.2392764928495, -1983.5505814214116]]}, {"length": 36.7325294602, "source": 2586992562, "destination": 2586992563, "path": [[895.6392764929433, -1929.7005814209456], [677.3892764897482, -1928.7005814234703]]}, {"length": 124.938779806, "source": 2086776819, "destination": 2086776732, "path": [[266.28927648886247, 123.19941857796834], [1008.5892764948312, 124.94941857710273]]}, {"length": 60.9022450855, "source": 2086776819, "destination": 135074765, "path": [[266.28927648886247, 123.19941857796834], [267.989276494518, -150.6505814212744]]}, {"length": 61.8807905863, "source": 2086723508, "destination": 134982657, "path": [[262.5392764912249, 704.8494185788456], [264.3392764909436, 426.59941857792205]]}, {"length": 121.331419204, "source": 2086723508, "destination": 2086776765, "path": [[262.5392764912249, 704.8494185788456], [-458.3107235092143, 702.1994185762992]]}, {"length": 124.882933116, "source": 2086723508, "destination": 2086723447, "path": [[262.5392764912249, 704.8494185788456], [1004.4892764895508, 707.5494185784237]]}, {"length": 12.7213478982, "source": 1965661549, "destination": 2284151936, "path": [[-7144.210723510014, 4268.699418577881], [-7145.010723505152, 4211.499418577347]]}, {"length": 11.4883641065, "source": 1965661549, "destination": 2284151921, "path": [[-7144.210723510014, 4268.699418577881], [-7212.460723508229, 4268.599418576713]]}, {"length": 11.4463158729, "source": 1965661549, "destination": 135050582, "path": [[-7144.210723510014, 4268.699418577881], [-7076.210723511167, 4268.749418578465]]}, {"length": 13.3207639254, "source": 1965661549, "destination": 2284151913, "path": [[-7144.210723510014, 4268.699418577881], [-7144.310723511182, 4328.599418577995]]}, {"length": 55.9093128858, "source": 2086776820, "destination": 135036827, "path": [[9623.139276492055, 3476.999418577265], [9621.839276491073, 3728.3994185770553]]}, {"length": 112.59550364, "source": 2086776820, "destination": 2086776807, "path": [[9623.139276492055, 3476.999418577265], [8954.239276491193, 3476.999418577265]]}, {"length": 48.3370537136, "source": 2069036987, "destination": 2311060161, "path": [[-4168.960723511362, 4004.449418577138], [-4167.560723509212, 3787.099418577355]]}, {"length": 13.2736574167, "source": 2069036987, "destination": 2311060037, "path": [[-4168.960723511362, 4004.449418577138], [-4247.810723505552, 4004.9994185764604]]}, {"length": 12.5591360112, "source": 2069036987, "destination": 2069036566, "path": [[-4168.960723511362, 4004.449418577138], [-4094.3607235064405, 4003.6494185784477]]}, {"length": 49.1710553173, "source": 2069036987, "destination": 2310516565, "path": [[-4168.960723511362, 4004.449418577138], [-4170.3607235064055, 4225.549418578112]]}, {"length": 23.2499279832, "source": 2086723516, "destination": 135018858, "path": [[5515.839276490908, 724.0494185793978], [5512.789276494345, 708.5494185794516], [5488.1892764910845, 621.6494185764532]]}, {"length": 54.5390793561, "source": 2086723516, "destination": 134968247, "path": [[5515.839276490908, 724.0494185793978], [5521.789276492938, 754.049418578262], [5524.089276491395, 783.9494185759577], [5522.6892764892455, 968.8994185772515]]}, {"length": 269.818522663, "source": 2086723516, "destination": 2086723455, "path": [[5515.839276490908, 724.0494185793978], [4761.68927649212, 717.249418578092], [3912.839276495106, 718.099418577367]]}, {"length": 8.06671902466, "source": 134946751, "destination": 2271725726, "path": [[-1988.1607235063825, -11508.100581423263], [-1950.710723505722, -11485.450581421475]]}, {"length": 50.5051145118, "source": 2086862784, "destination": 134979227, "path": [[9752.13927649321, -5647.450581420799], [9753.239276491855, -5874.5505814208345]]}, {"length": 8.95357199492, "source": 2586992577, "destination": 2568599785, "path": [[348.939276491933, -1932.3005814229077], [364.3892764912948, -1938.3505814225543], [388.0392764941121, -1958.7005814223346]]}, {"length": 9.50872074445, "source": 2586992577, "destination": 2586992595, "path": [[348.939276491933, -1932.3005814229077], [387.78927649474326, -1901.2505814224312]]}, {"length": 12.109268679, "source": 2586992577, "destination": 2568599742, "path": [[348.939276491933, -1932.3005814229077], [328.63927648918434, -1924.3505814223738], [302.13927649214156, -1919.850581423077], [280.1892764949798, -1919.4505814219553]]}, {"length": 14.8945796559, "source": 2586992578, "destination": 2586992579, "path": [[499.5892764938503, -1811.8005814216076], [411.08927648991767, -1811.9005814227762]]}, {"length": 14.2137080343, "source": 2586992578, "destination": 2586992580, "path": [[499.5892764938503, -1811.8005814216076], [584.0392764895341, -1811.7005814239917]]}, {"length": 17.1494492551, "source": 2586992578, "destination": 2586992587, "path": [[499.5892764938503, -1811.8005814216076], [429.53927648881063, -1867.8005814223297]]}, {"length": 8.81008993721, "source": 2586992579, "destination": 2586992592, "path": [[411.08927648991767, -1811.9005814227762], [358.73927649276993, -1812.0005814239448]]}, {"length": 14.8945796559, "source": 2586992579, "destination": 2586992578, "path": [[411.08927648991767, -1811.9005814227762], [499.5892764938503, -1811.8005814216076]]}, {"length": 6.37553453042, "source": 2586992579, "destination": 2586992589, "path": [[411.08927648991767, -1811.9005814227762], [385.43927649214993, -1833.000581420663]]}, {"length": 5.87373428211, "source": 2586992580, "destination": 2586992584, "path": [[584.0392764895341, -1811.7005814239917], [618.9392764923696, -1811.6505814234074]]}, {"length": 14.2137080343, "source": 2586992580, "destination": 2586992578, "path": [[584.0392764895341, -1811.7005814239917], [499.5892764938503, -1811.8005814216076]]}, {"length": 10.4368544342, "source": 2586992580, "destination": 2586992581, "path": [[584.0392764895341, -1811.7005814239917], [545.3892764890611, -1848.4005814229931]]}, {"length": 14.5660160778, "source": 2586992581, "destination": 2586992567, "path": [[545.3892764890611, -1848.4005814229931], [484.8392764884579, -1895.2005814227846]]}, {"length": 10.4368544342, "source": 2586992581, "destination": 2586992580, "path": [[545.3892764890611, -1848.4005814229931], [584.0392764895341, -1811.7005814239917]]}, {"length": 16.8889039688, "source": 2586992581, "destination": 2586992583, "path": [[545.3892764890611, -1848.4005814229931], [645.7392764929182, -1848.500581420609]]}, {"length": 10.157647599, "source": 2586992582, "destination": 2586992584, "path": [[679.2892764906355, -1811.5505814222388], [618.9392764923696, -1811.6505814234074]]}, {"length": 36.5217730036, "source": 2586992582, "destination": 135074194, "path": [[679.2892764906355, -1811.5505814222388], [896.2892764898811, -1811.2505814222857]]}, {"length": 7.99827493893, "source": 2586992582, "destination": 2586992558, "path": [[679.2892764906355, -1811.5505814222388], [677.9392764926229, -1847.5005814231338]]}, {"length": 11.2601586914, "source": 2293202887, "destination": 2293202888, "path": [[-11724.310723508324, 613.7994185770879], [-11657.410723508121, 613.699418579472]]}, {"length": 133.996483299, "source": 2293202887, "destination": 2293202889, "path": [[-11724.310723508324, 613.7994185770879], [-11680.610723509233, 694.7494185780556], [-11636.91072351014, 747.8494185768625], [-11593.210723511049, 773.0494185764769], [-11297.610723509877, 773.0494185764769], [-11259.660723510478, 762.5994185787022], [-11241.260723508618, 749.5494185789653], [-11251.610723505222, 667.7494185787225], [-11238.06072350675, 613.2994185783502]]}, {"length": 70.5829455249, "source": 2293202888, "destination": 2293202889, "path": [[-11657.410723508121, 613.699418579472], [-11238.06072350675, 613.2994185783502]]}, {"length": 48.6369701115, "source": 2293202888, "destination": 134971606, "path": [[-11657.410723508121, 613.699418579472], [-11656.410723510646, 394.9994185781236]]}, {"length": 11.2601586914, "source": 2293202888, "destination": 2293202887, "path": [[-11657.410723508121, 613.699418579472], [-11724.310723508324, 613.7994185770879]]}, {"length": 70.5829455249, "source": 2293202889, "destination": 2293202888, "path": [[-11238.06072350675, 613.2994185783502], [-11657.410723508121, 613.699418579472]]}, {"length": 53.8510170524, "source": 2293202889, "destination": 2293202896, "path": [[-11238.06072350675, 613.2994185783502], [-11201.010723510763, 464.94941857844196], [-11160.760723505802, 417.04941857645395], [-11125.11072350486, 395.69941857919844]]}, {"length": 133.996483299, "source": 2293202889, "destination": 2293202887, "path": [[-11238.06072350675, 613.2994185783502], [-11251.610723505222, 667.7494185787225], [-11241.260723508618, 749.5494185789653], [-11259.660723510478, 762.5994185787022], [-11297.610723509877, 773.0494185764769], [-11593.210723511049, 773.0494185764769], [-11636.91072351014, 747.8494185768625], [-11680.610723509233, 694.7494185780556], [-11724.310723508324, 613.7994185770879]]}, {"length": 6.59852475097, "source": 2293563339, "destination": 2293563340, "path": [[-10538.86072350707, 5083.449418577857], [-10578.060723510418, 5083.299418576104]]}, {"length": 164.715784476, "source": 2293563339, "destination": 2292321739, "path": [[-10538.86072350707, 5083.449418577857], [-10404.06072350919, 5084.0994185783475], [-10294.510723511507, 5082.499418577413], [-10078.1607235092, 5081.549418576969], [-9898.110723504771, 5080.849418579447], [-9767.610723507403, 5080.64941857711], [-9643.860723507203, 5081.549418576969], [-9560.460723506025, 5083.649418576641]]}, {"length": 49.3574077437, "source": 2293563339, "destination": 2292321596, "path": [[-10538.86072350707, 5083.449418577857], [-10536.760723510952, 5091.649418577759], [-10538.010723507796, 5184.599418576852], [-10539.11072350644, 5296.449418576543], [-10539.010723505271, 5305.249418576352]]}, {"length": 48.134480277, "source": 2293563339, "destination": 2292321958, "path": [[-10538.86072350707, 5083.449418577857], [-10542.310723508308, 5069.999418576998], [-10541.710723508402, 4983.099418577553], [-10541.060723511464, 4951.1994185778], [-10541.060723511464, 4935.599418576686], [-10540.160723508052, 4917.6494185765305], [-10537.060723507351, 4883.1494185783695], [-10536.660723509784, 4867.34941857847]]}, {"length": 63.2374027427, "source": 2086776715, "destination": 1433125635, "path": [[-4147.810723509338, 684.3494185773125], [-4146.010723509618, 399.99941857615795]]}, {"length": 60.6577237642, "source": 2086776715, "destination": 134968182, "path": [[-4147.810723509338, 684.3494185773125], [-4149.560723504919, 957.0994185779114]]}, {"length": 60.2906519572, "source": 2086776715, "destination": 2960622567, "path": [[-4147.810723509338, 684.3494185773125], [-4506.0107235102005, 683.7994185779905]]}, {"length": 6.48069062586, "source": 2586992589, "destination": 2586992592, "path": [[385.43927649214993, -1833.000581420663], [358.73927649276993, -1812.0005814239448]]}, {"length": 6.37553453042, "source": 2586992589, "destination": 2586992579, "path": [[385.43927649214993, -1833.000581420663], [411.08927648991767, -1811.9005814227762]]}, {"length": 9.95419622478, "source": 2586992589, "destination": 2586992596, "path": [[385.43927649214993, -1833.000581420663], [345.3392764924956, -1865.9005814214424]]}, {"length": 10.7230820779, "source": 2586992589, "destination": 2586992587, "path": [[385.43927649214993, -1833.000581420663], [429.53927648881063, -1867.8005814223297]]}, {"length": 94.5147906397, "source": 2086723534, "destination": 2086723482, "path": [[4590.389276494023, 2366.4994185779165], [4028.889276490588, 2364.499418579413]]}, {"length": 46.9800913536, "source": 2086723534, "destination": 135088444, "path": [[4590.389276494023, 2366.4994185779165], [4590.839276488623, 2155.2494185783644]]}, {"length": 61.0239167896, "source": 2086723534, "destination": 135088446, "path": [[4590.389276494023, 2366.4994185779165], [4589.839276491148, 2640.8994185764814]]}, {"length": 83.8168580196, "source": 2086723534, "destination": 2086723431, "path": [[4590.389276494023, 2366.4994185779165], [5088.339276490216, 2366.4994185779165]]}, {"length": 8.81008993721, "source": 2586992592, "destination": 2586992579, "path": [[358.73927649276993, -1812.0005814239448], [411.08927648991767, -1811.9005814227762]]}, {"length": 13.1361276068, "source": 2586992592, "destination": 2568599797, "path": [[358.73927649276993, -1812.0005814239448], [280.68927649371744, -1812.1005814215607]]}, {"length": 6.48069062586, "source": 2586992592, "destination": 2586992589, "path": [[358.73927649276993, -1812.0005814239448], [385.43927649214993, -1833.000581420663]]}, {"length": 70.6633634285, "source": 2293202897, "destination": 2293202914, "path": [[-12586.160723508045, 335.8494185761174], [-12586.560723505612, 214.44941857851063], [-12460.110723509388, 211.04941857785775], [-12377.960723505055, 200.8994185764834], [-12329.610723504913, 192.29941857901167]]}, {"length": 10.5219862552, "source": 2586992594, "destination": 2586992585, "path": [[426.3392764940477, -1933.3005814239357], [437.8892764904663, -1925.6505814233549], [473.68927648960835, -1902.4005814216594]]}, {"length": 9.63863503846, "source": 2586992594, "destination": 2586992595, "path": [[426.3392764940477, -1933.3005814239357], [387.78927649474326, -1901.2505814224312]]}, {"length": 4.27314915138, "source": 2586992594, "destination": 2586992598, "path": [[426.3392764940477, -1933.3005814239357], [407.23927649111147, -1945.9505814225508]]}, {"length": 9.50872074445, "source": 2586992595, "destination": 2586992577, "path": [[387.78927649474326, -1901.2505814224312], [348.939276491933, -1932.3005814229077]]}, {"length": 9.63863503846, "source": 2586992595, "destination": 2586992594, "path": [[387.78927649474326, -1901.2505814224312], [426.3392764940477, -1933.3005814239357]]}, {"length": 10.2327889605, "source": 2586992595, "destination": 2586992587, "path": [[387.78927649474326, -1901.2505814224312], [429.53927648881063, -1867.8005814223297]]}, {"length": 10.6225918692, "source": 2586992595, "destination": 2586992596, "path": [[387.78927649474326, -1901.2505814224312], [345.3392764924956, -1865.9005814214424]]}, {"length": 10.6225918692, "source": 2586992596, "destination": 2586992595, "path": [[345.3392764924956, -1865.9005814214424], [387.78927649474326, -1901.2505814224312]]}, {"length": 9.95419622478, "source": 2586992596, "destination": 2586992589, "path": [[345.3392764924956, -1865.9005814214424], [385.43927649214993, -1833.000581420663]]}, {"length": 16.1880919073, "source": 2586992596, "destination": 2568599742, "path": [[345.3392764924956, -1865.9005814214424], [280.1892764949798, -1919.4505814219553]]}, {"length": 16.1722167198, "source": 2586992596, "destination": 2568599797, "path": [[345.3392764924956, -1865.9005814214424], [280.68927649371744, -1812.1005814215607]]}, {"length": 4.07006256124, "source": 2586992597, "destination": 2586992563, "path": [[677.1392764903794, -1947.0005814206104], [677.3892764897482, -1928.7005814234703]]}, {"length": 8.32946839581, "source": 2586992597, "destination": 2586992557, "path": [[677.1392764903794, -1947.0005814206104], [676.5892764946102, -1984.450581421271]]}, {"length": 45.4251906113, "source": 2586992597, "destination": 2586992598, "path": [[677.1392764903794, -1947.0005814206104], [407.23927649111147, -1945.9505814225508]]}, {"length": 4.30048076531, "source": 2586992598, "destination": 2568599785, "path": [[407.23927649111147, -1945.9505814225508], [388.0392764941121, -1958.7005814223346]]}, {"length": 4.27314915138, "source": 2586992598, "destination": 2586992594, "path": [[407.23927649111147, -1945.9505814225508], [426.3392764940477, -1933.3005814239357]]}, {"length": 45.4251906113, "source": 2586992598, "destination": 2586992597, "path": [[407.23927649111147, -1945.9505814225508], [677.1392764903794, -1947.0005814206104]]}, {"length": 47.2363077518, "source": 2293563352, "destination": 2287972840, "path": [[-9302.560723504883, 4538.499418575981], [-9302.660723506051, 4598.449418576678], [-9303.860723505863, 4750.899418578314]]}, {"length": 13.474812977, "source": 2293563352, "destination": 2293563353, "path": [[-9302.560723504883, 4538.499418575981], [-9382.61072350599, 4538.299418577197]]}, {"length": 48.8480392495, "source": 2293563352, "destination": 2292322398, "path": [[-9302.560723504883, 4538.499418575981], [-9302.160723507313, 4318.849418577742]]}, {"length": 13.474812977, "source": 2293563353, "destination": 2293563352, "path": [[-9382.61072350599, 4538.299418577197], [-9302.560723504883, 4538.499418575981]]}, {"length": 48.1263783824, "source": 2293563353, "destination": 2280505626, "path": [[-9382.61072350599, 4538.299418577197], [-9382.61072350599, 4524.1994185794], [-9381.16072350681, 4374.749418577295], [-9381.010723508609, 4321.899418577857]]}, {"length": 132.080251185, "source": 2293563353, "destination": 2293563363, "path": [[-9382.61072350599, 4538.299418577197], [-9393.810723508977, 4538.299418577197], [-9459.360723511167, 4537.799418578459], [-9516.610723508733, 4535.949418578156], [-9575.41072350665, 4533.399418576778], [-9627.11072350686, 4530.849418578953], [-9678.210723507163, 4529.4494185768035], [-9726.810723506675, 4528.499418576359], [-9762.210723508248, 4528.949418578066], [-9800.360723509983, 4531.299418577106], [-9833.910723507699, 4532.449418576334], [-9870.260723509717, 4532.949418578624], [-10001.960723506898, 4532.2494185775495], [-10166.760723507196, 4530.2494185790465]]}, {"length": 47.3471040724, "source": 2293563353, "destination": 2287972838, "path": [[-9382.61072350599, 4538.299418577197], [-9382.61072350599, 4639.749418576144], [-9383.460723505266, 4751.199418578267]]}, {"length": 119.611712424, "source": 2069037023, "destination": 2069036425, "path": [[239.83927648885128, 4570.399418579285], [950.3892764897159, 4572.999418577694]]}, {"length": 60.9800365284, "source": 2069037023, "destination": 134954292, "path": [[239.83927648885128, 4570.399418579285], [238.0892764932696, 4844.599418579065]]}, {"length": 61.0913746882, "source": 2069037023, "destination": 134982669, "path": [[239.83927648885128, 4570.399418579285], [241.58927649153839, 4295.699418577215]]}, {"length": 122.490218202, "source": 2069037023, "destination": 2069036405, "path": [[239.83927648885128, 4570.399418579285], [-487.81072350578825, 4567.749418576739]]}, {"length": 52.1432223755, "source": 2087861299, "destination": 1930503473, "path": [[10392.439276493804, -8643.80058142089], [10363.589276494167, -8642.300581421125], [10181.289276488314, -8641.400581421265], [10082.639276490114, -8640.80058142136]]}, {"length": 93.3517052425, "source": 2087861299, "destination": 134980301, "path": [[10392.439276493804, -8643.80058142089], [10397.239276493054, -9063.550581423386]]}, {"length": 8.38393285513, "source": 2087861299, "destination": 134982537, "path": [[10392.439276493804, -8643.80058142089], [10392.139276490298, -8606.100581420862]]}, {"length": 70.6633634285, "source": 2293202914, "destination": 2293202897, "path": [[-12329.610723504913, 192.29941857901167], [-12377.960723505055, 200.8994185764834], [-12460.110723509388, 211.04941857785775], [-12586.560723505612, 214.44941857851063], [-12586.160723508045, 335.8494185761174]]}, {"length": 86.3765095676, "source": 2293202914, "destination": 2293202971, "path": [[-12329.610723504913, 192.29941857901167], [-12329.66072350905, 157.39941857617623], [-12330.160723507788, -91.60058142398952], [-12330.410723507157, -196.1005814230532]]}, {"length": 19.6276684955, "source": 2293202914, "destination": 2293202916, "path": [[-12329.610723504913, 192.29941857901167], [-12248.660723507499, 177.8494185771251], [-12216.660723510131, 170.49941857649742]]}, {"length": 132.080251185, "source": 2293563363, "destination": 2293563353, "path": [[-10166.760723507196, 4530.2494185790465], [-10001.960723506898, 4532.2494185775495], [-9870.260723509717, 4532.949418578624], [-9833.910723507699, 4532.449418576334], [-9800.360723509983, 4531.299418577106], [-9762.210723508248, 4528.949418578066], [-9726.810723506675, 4528.499418576359], [-9678.210723507163, 4529.4494185768035], [-9627.11072350686, 4530.849418578953], [-9575.41072350665, 4533.399418576778], [-9516.610723508733, 4535.949418578156], [-9459.360723511167, 4537.799418578459], [-9393.810723508977, 4538.299418577197], [-9382.61072350599, 4538.299418577197]]}, {"length": 134.306561968, "source": 2086723556, "destination": 2086723464, "path": [[4272.989276493889, 968.149418579145], [4265.989276490245, 1572.0494185771372]]}, {"length": 54.7618645903, "source": 2086723556, "destination": 134968250, "path": [[4272.989276493889, 968.149418579145], [4598.339276491004, 968.3494185779296]]}, {"length": 60.8464284351, "source": 2086723556, "destination": 134968253, "path": [[4272.989276493889, 968.149418579145], [3911.489276489988, 967.8994185762235]]}, {"length": 50.0382679695, "source": 135064230, "destination": 2069036666, "path": [[4961.339276491117, 6487.399418578121], [4962.639276492098, 6262.399418577757]]}, {"length": 50.2684681654, "source": 135064230, "destination": 2069120414, "path": [[4961.339276491117, 6487.399418578121], [5259.939276491821, 6488.649418578518]]}, {"length": 42.9082264237, "source": 1930503505, "destination": 1930503473, "path": [[9837.889276489876, -8665.150581421698], [9847.439276491343, -8657.850581421655], [9858.089276491455, -8650.65058142278], [9869.139276489135, -8645.60058142061], [9880.989276489061, -8642.600581421078], [9896.38927649139, -8641.400581421265], [9996.63927649408, -8642.000581421173], [10082.639276490114, -8640.80058142136]]}, {"length": 7.90875398966, "source": 1930503505, "destination": 1930503507, "path": [[9837.889276489876, -8665.150581421698], [9790.989276488915, -8667.50058142074]]}, {"length": 367.219112905, "source": 1930503505, "destination": 1930503812, "path": [[9837.889276489876, -8665.150581421698], [9836.339276489525, -8674.150581423844], [9837.089276494737, -8818.400581422025], [9837.489276492306, -8994.550581423511], [9839.489276494362, -9222.350581421068], [9840.2892764895, -9323.8505814206], [9841.839276489849, -9357.600581420655], [9844.589276490013, -9385.350581421648], [9849.7392764898, -9425.650581423639], [9856.839276494611, -9461.800581423318], [9865.889276490236, -9500.600581421992], [9877.339276492592, -9541.200581423936], [9886.839276489922, -9577.600581422985], [9895.489276495084, -9616.750581422195], [9901.43927649001, -9653.75058142115], [9905.78927649466, -9690.450581423704], [9909.339276489958, -9731.35058142205], [9910.089276495171, -9767.50058142173], [9910.889276490308, -9875.000581423876], [9912.889276492366, -10101.600581421622], [9912.889276492366, -10312.350581422435]]}, {"length": 12.3408758758, "source": 1930503505, "destination": 1930503470, "path": [[9837.889276489876, -8665.150581421698], [9847.63927649368, -8610.150581422005]]}, {"length": 121.33338766, "source": 2086723560, "destination": 2086723445, "path": [[-461.7607235104515, 1244.5994185767972], [259.0892764899877, 1247.1994185787594]]}, {"length": 60.9578627752, "source": 2086723560, "destination": 135012775, "path": [[-461.7607235104515, 1244.5994185767972], [-463.5107235060332, 1518.6994185789615]]}, {"length": 112.677200211, "source": 2086723561, "destination": 2086723464, "path": [[4271.039276488864, 2078.6994185790772], [4265.989276490245, 1572.0494185771372]]}, {"length": 62.0688987521, "source": 2086723561, "destination": 135007464, "path": [[4271.039276488864, 2078.6994185790772], [3902.289276489057, 2079.199418577815]]}, {"length": 48.7829576743, "source": 2703728618, "destination": 2703728619, "path": [[-2622.710723507282, 6233.399418576369], [-2620.2107235064886, 6014.049418578083]]}, {"length": 13.0893894575, "source": 2703728618, "destination": 2068973820, "path": [[-2622.710723507282, 6233.399418576369], [-2700.4607235099343, 6232.849418577047]]}, {"length": 96.6053951124, "source": 2703728618, "destination": 2352259893, "path": [[-2622.710723507282, 6233.399418576369], [-2433.3607235078603, 6234.799418578518], [-2048.860723505186, 6234.999418577303]]}, {"length": 47.9611429733, "source": 2703728618, "destination": 2351111997, "path": [[-2622.710723507282, 6233.399418576369], [-2624.1607235064635, 6360.449418576053], [-2622.710723507282, 6449.0494185776015]]}, {"length": 96.4516891813, "source": 2703728619, "destination": 2352260068, "path": [[-2620.2107235064886, 6014.049418578083], [-2047.2607235078044, 6014.449418579205]]}, {"length": 48.7829576743, "source": 2703728619, "destination": 2703728618, "path": [[-2620.2107235064886, 6014.049418578083], [-2622.710723507282, 6233.399418576369]]}, {"length": 13.0845686999, "source": 2703728619, "destination": 2316883499, "path": [[-2620.2107235064886, 6014.049418578083], [-2697.9107235050037, 6015.549418577848]]}, {"length": 30.9020299992, "source": 2703728619, "destination": 2352260084, "path": [[-2620.2107235064886, 6014.049418578083], [-2618.6607235061388, 5875.099418577889]]}, {"length": 16.4831689455, "source": 2703728620, "destination": 2069376793, "path": [[-4824.160723508441, 6010.949418577383], [-4893.9107235099755, 6010.64941857743], [-4921.9107235103365, 6008.399418576005]]}, {"length": 32.7371261412, "source": 2703728620, "destination": 2294600300, "path": [[-4824.160723508441, 6010.949418577383], [-4823.760723510873, 5965.899418576726], [-4822.610723508092, 5863.749418576703]]}, {"length": 47.9623284555, "source": 2703728620, "destination": 2294600150, "path": [[-4824.160723508441, 6010.949418577383], [-4825.410723505285, 6146.899418578045], [-4827.060723506804, 6211.799418576192], [-4827.060723506804, 6226.599418578616]]}, {"length": 95.081330662, "source": 2703728620, "destination": 1806083049, "path": [[-4824.160723508441, 6010.949418577383], [-4259.360723509076, 6013.49941857876]]}, {"length": 16.4934645992, "source": 2703728621, "destination": 2069376793, "path": [[-5019.710723509263, 6005.649418579395], [-4951.11072351051, 6005.99941857638], [-4921.9107235103365, 6008.399418576005]]}, {"length": 48.9259307593, "source": 2703728621, "destination": 2293563076, "path": [[-5019.710723509263, 6005.649418579395], [-5020.310723509169, 6225.649418578172]]}, {"length": 94.6704673066, "source": 2703728621, "destination": 2069376750, "path": [[-5019.710723509263, 6005.649418579395], [-5544.210723506638, 6002.799418578064], [-5582.0607235048665, 6002.3994185769425]]}, {"length": 15.0561729035, "source": 2703728621, "destination": 3299414702, "path": [[-5019.710723509263, 6005.649418579395], [-5019.110723509357, 5937.949418576949]]}, {"length": 59.9363706095, "source": 2086723566, "destination": 134994384, "path": [[2459.239276490166, 707.4494185772551], [2462.339276490866, 437.94941857910885]]}, {"length": 122.661060408, "source": 2086723566, "destination": 2086723490, "path": [[2459.239276490166, 707.4494185772551], [3187.989276490555, 709.9994185786329]]}, {"length": 120.825077868, "source": 2086723566, "destination": 2086723466, "path": [[2459.239276490166, 707.4494185772551], [2413.239276492618, 709.6994185786798], [1741.4892764904266, 707.9494185759927]]}, {"length": 48.1364769894, "source": 2703728623, "destination": 2358476432, "path": [[-566.6607235070842, 5115.74941857873], [-566.3107235065468, 4899.299418578807]]}, {"length": 95.9286722429, "source": 2703728623, "destination": 2358476297, "path": [[-566.6607235070842, 5115.74941857873], [-1136.5107235050687, 5113.349418579105]]}, {"length": 12.6844537831, "source": 2703728623, "destination": 2069036966, "path": [[-566.6607235070842, 5115.74941857873], [-491.31072351116245, 5116.049418578683]]}, {"length": 47.7702604528, "source": 2703728623, "destination": 2355655001, "path": [[-566.6607235070842, 5115.74941857873], [-568.3107235086027, 5330.549418577135]]}, {"length": 28.2004525058, "source": 2310516574, "destination": 2310516530, "path": [[-4841.510723508691, 4222.79941857795], [-4950.760723509973, 4223.649418577224], [-5007.360723510601, 4234.149418579136]]}, {"length": 0.391428814065, "source": 2310516574, "destination": 2310516573, "path": [[-4841.510723508691, 4222.79941857795], [-4839.210723510234, 4222.79941857795]]}, {"length": 97.0008733279, "source": 2310516574, "destination": 2310516607, "path": [[-4841.510723508691, 4222.79941857795], [-4840.36072350591, 4167.149418577765], [-4837.11072350701, 3844.049418578521], [-4836.660723505303, 3811.7494185776477], [-4836.060723505398, 3786.649418579202]]}, {"length": 74.1507640117, "source": 2074042353, "destination": 2069036317, "path": [[9351.4892764901, 5820.3494185775635], [9316.339276495, 5802.899418576146], [9216.939276491586, 5737.499418579262], [9140.639276495222, 5675.549418576509], [9041.039276489471, 5585.799418579285]]}, {"length": 96.835164527, "source": 2703728626, "destination": 2357086570, "path": [[-2038.8607235091172, 4561.849418578845], [-2614.1107235062577, 4560.2994185784955]]}, {"length": 1.77861474988, "source": 2703728626, "destination": 2357086571, "path": [[-2038.8607235091172, 4561.849418578845], [-2038.66072350678, 4553.849418577727]]}, {"length": 14.5105321952, "source": 2703728626, "destination": 2069036722, "path": [[-2038.8607235091172, 4561.849418578845], [-1952.6607235107463, 4562.099418578214]]}, {"length": 48.0103038309, "source": 2703728626, "destination": 2357086471, "path": [[-2038.8607235091172, 4561.849418578845], [-2043.9107235077358, 4777.699418578863]]}, {"length": 97.8637424624, "source": 2703728628, "destination": 2312746776, "path": [[-3330.9607235096905, 3785.6994185787585], [-3333.410723506347, 4225.7494185768965]]}, {"length": 14.8257415327, "source": 2703728628, "destination": 2311060160, "path": [[-3330.9607235096905, 3785.6994185787585], [-3419.0107235048117, 3787.29941857614]]}, {"length": 96.1057198132, "source": 2703728628, "destination": 2316883642, "path": [[-3330.9607235096905, 3785.6994185787585], [-3263.6107235077816, 3784.4494185783615], [-2760.060723510094, 3787.099418577355]]}, {"length": 5.62607587556, "source": 2703728628, "destination": 2312746782, "path": [[-3330.9607235096905, 3785.6994185787585], [-3330.8107235114903, 3760.3994185779757]]}, {"length": 61.735628981, "source": 2086723573, "destination": 134997392, "path": [[3180.4392764911427, 2354.199418576286], [3181.1392764922175, 2076.5994185794057]]}, {"length": 123.05609752, "source": 2086723573, "destination": 2086723449, "path": [[3180.4392764911427, 2354.199418576286], [3090.5892764891973, 2355.4494185766825], [2552.43927649218, 2352.3994185765673], [2449.439276489329, 2354.499418576239]]}, {"length": 62.614793592, "source": 2086723573, "destination": 134997395, "path": [[3180.4392764911427, 2354.199418576286], [3178.4892764932238, 2635.7494185766936]]}, {"length": 197.114769966, "source": 1428266998, "destination": 1959915201, "path": [[-7616.260723509072, -4230.450581420797], [-7603.810723509241, -4301.000581421022], [-7602.310723505923, -4381.250581420914], [-7624.41072350839, -4597.95058142376], [-7609.710723507134, -4636.800581423017], [-7580.710723509299, -4711.3505814238015], [-7566.36072350858, -4739.150581421825], [-7537.760723508313, -4769.950581422932], [-7386.610723507658, -4913.25058142067], [-7355.410723505429, -4945.700581423296], [-7291.910723509432, -5042.9505814229005]]}, {"length": 91.5401098951, "source": 1428266998, "destination": 1959915267, "path": [[-7616.260723509072, -4230.450581420797], [-7583.760723505861, -4226.70058142316], [-7571.610723509537, -4229.550581420937], [-7564.310723509493, -4236.3505814222435], [-7557.960723509894, -4245.000581423852], [-7466.060723508861, -4596.6505814227785]]}, {"length": 95.2984606498, "source": 1428266998, "destination": 2423695599, "path": [[-7616.260723509072, -4230.450581420797], [-7655.160723508914, -4038.350581421213], [-7659.610723507626, -4023.9505814234635], [-7699.460723507911, -3895.900581422751], [-7726.060723506123, -3810.400581421902]]}, {"length": 39.9944098865, "source": 1394286583, "destination": 1999574944, "path": [[9722.989276490069, -9685.100581421579], [9713.939276494442, -9643.90058142328], [9700.5892764912, -9617.70058142264], [9685.139276491838, -9596.100581422463], [9663.439276494046, -9575.500581423314], [9637.389276491604, -9559.40058142346], [9606.589276494049, -9545.65058142265], [9598.539276488793, -9543.150581421854]]}, {"length": 38.396541319, "source": 1394286583, "destination": 134979350, "path": [[9722.989276490069, -9685.100581421579], [9724.489276493387, -9512.450581421916]]}, {"length": 119.439036403, "source": 2069037048, "destination": 2069036970, "path": [[945.8392764898349, 5127.499418577486], [236.3392764905825, 5123.399418579311]]}, {"length": 11.4813013457, "source": 2069037048, "destination": 2069036323, "path": [[945.8392764898349, 5127.499418577486], [1013.9892764939873, 5125.449418578399]]}, {"length": 59.9130584564, "source": 2069037048, "destination": 134985675, "path": [[945.8392764898349, 5127.499418577486], [943.6392764925472, 5396.899418578016]]}, {"length": 120.760556425, "source": 2086723577, "destination": 2086723474, "path": [[1737.9892764921578, 1256.0494185791526], [2455.4392764883914, 1254.0494185770967]]}, {"length": 60.2017905277, "source": 2086723577, "destination": 134990154, "path": [[1737.9892764921578, 1256.0494185791526], [1736.2892764936078, 1526.7494185771113]]}, {"length": 61.5027017348, "source": 2086776831, "destination": 135043161, "path": [[-1176.4607235065228, -429.55058142268854], [-1174.710723510941, -706.1005814215093]]}, {"length": 122.084677141, "source": 2086776831, "destination": 2086776746, "path": [[-1176.4607235065228, -429.55058142268854], [-451.11072351033954, -426.9005814236948]]}, {"length": 124.508389216, "source": 2086776831, "destination": 2086776826, "path": [[-1176.4607235065228, -429.55058142268854], [-1916.210723507561, -432.2505814222666]]}, {"length": 60.8577587655, "source": 2086776831, "destination": 135074759, "path": [[-1176.4607235065228, -429.55058142268854], [-1178.2107235092099, -155.9005814222303]]}], "vertices": [{"position": [8544.539276492458, -8435.000581421547], "name": 1394286592}, {"position": [3491.739276491046, -4567.450581422605], "name": 1394286598}, {"position": [-499.11072350994345, 6456.899418576967], "name": 2355654657}, {"position": [-11812.560723505783, -52.65058142356338], "name": 2293202952}, {"position": [-11827.410723505238, -52.65058142356338], "name": 2293202953}, {"position": [-7138.960723509058, -6304.250581422366], "name": 134968426}, {"position": [-11812.76072350812, -107.75058142087346], "name": 2293202967}, {"position": [-12105.91072350553, -124.70058142355356], "name": 2293202968}, {"position": [-12105.960723509668, -194.85058142265643], "name": 2293202970}, {"position": [-12330.410723507157, -196.1005814230532], "name": 2293202971}, {"position": [3438.2392764911174, -4471.10058142286], "name": 1394286622}, {"position": [-4650.91072350532, -3506.0005814209208], "name": 134955039}, {"position": [7193.889276493337, -1772.5505814212283], "name": 2086854461}, {"position": [-4871.060723509401, -3838.6005814210475], "name": 134955049}, {"position": [9754.789276492203, -6550.600581423538], "name": 2086862890}, {"position": [8962.039276489975, -1215.4505814230276], "name": 877895724}, {"position": [10018.289276494841, -7244.050581423522], "name": 2086862856}, {"position": [9640.139276491765, -7631.850581422128], "name": 1930503160}, {"position": [10015.489276490542, -7699.350581422237], "name": 2086862902}, {"position": [10175.339276493389, 6292.0994185766685], "name": 1429422148}, {"position": [2119.289276492964, -1370.7505814224419], "name": 4720001094}, {"position": [-5544.160723509605, -5229.100581424007], "name": 134955091}, {"position": [-6790.810723508401, -4441.350581423365], "name": 1428267094}, {"position": [3911.9892764887254, -1327.4005814238876], "name": 2139783257}, {"position": [7343.589276494811, -7764.650581421506], "name": 2139783258}, {"position": [-5595.810723505679, -5616.800581421444], "name": 134955099}, {"position": [4083.03927649456, -1258.700581423966], "name": 2139783260}, {"position": [5268.489276488708, -2725.000581421], "name": 2139783261}, {"position": [5770.839276493689, -7329.300581421449], "name": 2139783262}, {"position": [4660.739276488357, -1241.9505814236231], "name": 2139783264}, {"position": [6025.6892764911645, 2284.6494185770894], "name": 135086177}, {"position": [-468.81072351112607, 2348.249418577808], "name": 2086776720}, {"position": [6093.239276488304, -1222.750581423071], "name": 877895779}, {"position": [6815.9392764926, -1220.750581421015], "name": 877895781}, {"position": [7538.339276493389, -1218.9505814212964], "name": 877895784}, {"position": [9792.789276488635, -667.850581422158], "name": 1954283626}, {"position": [8260.589276488872, -1217.200581422162], "name": 877895789}, {"position": [7373.239276489585, 2106.2494185777323], "name": 1429422192}, {"position": [-5581.010723510361, 5935.349418578539], "name": 2069376742}, {"position": [7597.039276490136, 2061.9494185787344], "name": 1429422197}, {"position": [-3419.0107235048117, 3787.29941857614], "name": 2311060160}, {"position": [-5095.360723508691, 939.7494185776623], "name": 2331404993}, {"position": [-6754.91072350809, -4534.850581421779], "name": 1428267152}, {"position": [7688.339276491262, 4372.399418578254], "name": 135086232}, {"position": [-6683.560723509174, -4546.750581422288], "name": 1428267171}, {"position": [-9287.11072350552, 1487.499418576732], "name": 134959133}, {"position": [3915.839276494637, 136.54941857765834], "name": 1429422278}, {"position": [-4415.810723507719, -442.4005814236409], "name": 3496300577}, {"position": [2470.6392764883844, 135.6994185783833], "name": 1429422280}, {"position": [3196.3392764922105, 135.34941857784588], "name": 1429422281}, {"position": [1749.0392764898388, 134.69941857735535], "name": 1429422282}, {"position": [8251.33927649091, 425.8994185768472], "name": 135019213}, {"position": [-11656.410723510646, 394.9994185781236], "name": 134971606}, {"position": [5832.339276494736, -1734.1005814230925], "name": 135110872}, {"position": [-11723.560723510218, 394.09941857826425], "name": 134971609}, {"position": [-4093.210723510765, 3669.6994185767553], "name": 2311060175}, {"position": [5366.5892764911405, -406.6005814209461], "name": 1429422301}, {"position": [4638.639276492995, -411.05058142321127], "name": 1429422302}, {"position": [3793.8392764900186, -414.35058142269554], "name": 1429422303}, {"position": [3937.3392764900927, -412.3505814206396], "name": 1429422304}, {"position": [3199.089276492373, -415.1505814213863], "name": 1429422305}, {"position": [2476.589276490415, -420.05058142180474], "name": 1429422306}, {"position": [1752.3392764928758, -426.35058142082016], "name": 1429422307}, {"position": [-4901.410723505251, 2578.949418577281], "name": 135032870}, {"position": [8257.339276489973, -669.1005814225548], "name": 135019217}, {"position": [5675.989276490156, -615.3505814232574], "name": 1429422312}, {"position": [3796.739276488381, -689.3505814211665], "name": 1429422315}, {"position": [5691.089276488981, -739.1505814240418], "name": 1429422318}, {"position": [-3278.3607235060686, -1507.7505814211634], "name": 3009732847}, {"position": [-11165.060723506314, -2306.9005814235766], "name": 135020785}, {"position": [8263.839276494877, -1768.100581422516], "name": 135019219}, {"position": [7538.9392764932945, -1492.950581422292], "name": 2086854468}, {"position": [1276.5392764890748, -4324.100581420964], "name": 3009732857}, {"position": [-3335.010723510834, 4772.999418577228], "name": 2312746554}, {"position": [710.439276488728, -4532.450581422154], "name": 3009732864}, {"position": [-1123.1607235089314, -6096.600581422252], "name": 135094533}, {"position": [-9384.410723505709, 4870.699418578539], "name": 2280505606}, {"position": [-1122.1607235114561, -6590.600581422023], "name": 135094537}, {"position": [5663.939276495001, -862.2505814237513], "name": 1429422346}, {"position": [8272.489276492934, -3140.3505814218133], "name": 135019223}, {"position": [-1264.610723509918, -2482.400581421018], "name": 2568624530}, {"position": [-9158.660723507239, 2525.249418578568], "name": 2282973370}, {"position": [-9381.010723508609, 4321.899418577857], "name": 2280505626}, {"position": [-4695.810723511329, 6440.899418578283], "name": 2295832861}, {"position": [-10233.860723509735, 4318.899418578326], "name": 2280505630}, {"position": [-4765.710723511063, 6440.399418575993], "name": 2295832863}, {"position": [-3318.4107235086913, -2433.0505814234016], "name": 4719468832}, {"position": [-9380.810723506273, 4262.049418578328], "name": 2280505635}, {"position": [-4765.710723511063, 6415.949418578038], "name": 2295832870}, {"position": [-5663.1107235105555, -782.6505814207962], "name": 2423701805}, {"position": [-5881.860723505383, -1487.7505814219205], "name": 2423701807}, {"position": [-9380.76072350924, 4213.19941857945], "name": 2280505648}, {"position": [-5758.510723509858, -1204.0005814206722], "name": 2423701809}, {"position": [-10204.560723508393, 4211.049418579194], "name": 2280505657}, {"position": [7627.339276488954, 4428.399418578976], "name": 135086398}, {"position": [6655.589276491014, 5029.749418579144], "name": 4224950592}, {"position": [-3307.610723510379, -6846.400581423495], "name": 2074272065}, {"position": [-5369.460723507302, -4660.650581421067], "name": 134955062}, {"position": [6497.639276489053, 2976.7994185760926], "name": 4224950598}, {"position": [-9379.960723506996, 4036.799418578596], "name": 2280505672}, {"position": [-4695.4607235107915, 6404.949418577388], "name": 2295832905}, {"position": [9366.339276489554, 5911.899418578059], "name": 135086410}, {"position": [5510.93927649049, 2697.1494185765723], "name": 4224950604}, {"position": [7416.33927648877, 4309.649418576811], "name": 4224950605}, {"position": [6116.139276493015, 2918.149418576377], "name": 4224950614}, {"position": [6773.28927649512, 5079.5994185790505], "name": 4224950615}, {"position": [-2764.160723508269, -9192.100581422836], "name": 134930780}, {"position": [5506.189276488271, 3135.1494185791753], "name": 4224950623}, {"position": [5942.439276488187, 2737.3994185779793], "name": 4224950624}, {"position": [-2014.3607235070249, -1645.3505814233438], "name": 2585900432}, {"position": [6074.5392764900425, 2918.199418576961], "name": 4224950626}, {"position": [-1133.160723505, -9816.600581423529], "name": 135094631}, {"position": [6542.5892764920945, 4998.699418578667], "name": 4224950632}, {"position": [-5758.8607235103955, -1269.4505814216939], "name": 2423701866}, {"position": [6614.4392764897475, 3293.4994185787045], "name": 4224950635}, {"position": [5731.239276492772, 2737.349418577395], "name": 4224950638}, {"position": [6177.139276488219, 3071.0494185761663], "name": 4224950639}, {"position": [-2895.9607235066187, -9283.950581423283], "name": 134930800}, {"position": [5512.339276492639, 2582.4494185791027], "name": 4224950641}, {"position": [5427.58927649345, -1197.9505814210256], "name": 1429422450}, {"position": [6205.989276494961, 4785.19941857769], "name": 4224950648}, {"position": [7047.639276493101, 3417.299418579489], "name": 4224950657}, {"position": [-673.4107235075726, -2719.950581422381], "name": 844923267}, {"position": [6234.289276491722, 2939.199418577232], "name": 4224950661}, {"position": [5556.239276494069, 2582.649418577887], "name": 4224950665}, {"position": [5547.489276494844, 2918.5494185774987], "name": 4224950670}, {"position": [6496.339276495178, 2837.7494185782834], "name": 4224950672}, {"position": [9724.489276493387, -9512.450581421916], "name": 134979350}, {"position": [6221.089276493785, 4597.1994185762815], "name": 4224950675}, {"position": [-4892.210723511425, 1502.5494185785249], "name": 135012759}, {"position": [6655.239276490476, 5123.249418577558], "name": 4224950680}, {"position": [-4153.060723510293, 1505.249418578103], "name": 135012761}, {"position": [-3409.8107235109865, 1507.949418577681], "name": 135012764}, {"position": [6868.139276491547, 5080.599418576526], "name": 4224950686}, {"position": [-2670.160723511117, 1510.649418577259], "name": 135012767}, {"position": [6176.889276488851, 3110.4494185782983], "name": 4224950688}, {"position": [9645.339276488585, -11405.600581422703], "name": 134930849}, {"position": [-1928.61072351036, 1513.349418576837], "name": 135012770}, {"position": [-1188.8607235093218, 1516.049418576415], "name": 135012773}, {"position": [-463.5107235060332, 1518.6994185789615], "name": 135012775}, {"position": [6508.68927649384, 3149.399418578724], "name": 4224950696}, {"position": [999.2892764927319, 1524.0494185775333], "name": 135012777}, {"position": [6114.439276494466, 2650.999418577271], "name": 4224950699}, {"position": [9677.639276489459, -11048.95058142219], "name": 134930861}, {"position": [6113.439276489885, 3245.799418579054], "name": 4224950704}, {"position": [6509.039276494377, 3292.9994185764144], "name": 4224950712}, {"position": [6425.8892764925695, 3320.199418578085], "name": 4224950716}, {"position": [3155.4892764944498, 5966.399418579016], "name": 134997408}, {"position": [5730.539276491698, 2918.4494185763297], "name": 4224950723}, {"position": [6112.889276494116, 2699.6494185773654], "name": 4224950724}, {"position": [6614.339276488579, 3320.5994185792065], "name": 4224950725}, {"position": [-6855.110723506641, 1496.1994185789251], "name": 135012807}, {"position": [5399.439276494888, -1272.2005814218562], "name": 1429422541}, {"position": [5505.839276494839, 3221.949418577452], "name": 4224950734}, {"position": [5548.839276492856, 3221.949418577452], "name": 4224950737}, {"position": [6886.339276491071, 3405.6994185789335], "name": 4224950738}, {"position": [8964.989276492473, 1519.449418577068], "name": 135012821}, {"position": [6257.639276491034, 3148.049418577159], "name": 4224950742}, {"position": [-6005.460723507384, -1268.8505814217876], "name": 2217927127}, {"position": [6541.939276495157, 5123.249418577558], "name": 4224950744}, {"position": [-7118.910723505678, -5149.350581422851], "name": 1855078873}, {"position": [5521.53927649357, 1225.2994185786292], "name": 135012827}, {"position": [6298.539276492931, 3207.749418578487], "name": 4224950748}, {"position": [6148.439276493889, 4538.999418578271], "name": 4224950749}, {"position": [6044.339276492394, 4590.1994185761905], "name": 4224950750}, {"position": [5941.139276494312, 2918.29941857813], "name": 4224950752}, {"position": [-6878.81072350649, -5050.200581422359], "name": 1855078882}, {"position": [-2672.960723508311, -3832.0505814226635], "name": 1855078885}, {"position": [-786.5107235076607, -1585.6505814220156], "name": 2586986513}, {"position": [5838.539276489029, 2737.3994185779793], "name": 4224950762}, {"position": [6886.739276488641, 3321.2494185761443], "name": 4224950763}, {"position": [5692.839276491668, -1289.7505814208898], "name": 1429422573}, {"position": [-1176.4607235065228, -429.55058142268854], "name": 2086776831}, {"position": [9699.489276492557, 1688.3994185761253], "name": 135012848}, {"position": [10339.839276490182, 1687.39941857865], "name": 135012851}, {"position": [6148.439276493889, 3250.8494185776726], "name": 4224950773}, {"position": [4598.839276489742, 1572.3994185776746], "name": 135012864}, {"position": [5838.539276489029, 2918.349418578714], "name": 4224950785}, {"position": [-1993.5607235055386, -1817.0505814225635], "name": 2585900459}, {"position": [6615.039276489653, 3149.999418578631], "name": 4224950789}, {"position": [5556.889276491006, 2697.3494185789095], "name": 4224950791}, {"position": [6559.389276489469, 3320.499418578038], "name": 4224950793}, {"position": [-6418.560723510325, 6005.499418577642], "name": 2139775503}, {"position": [-7086.310723508404, 6003.299418576802], "name": 2139775504}, {"position": [-5660.160723508056, 6003.299418576802], "name": 2139775505}, {"position": [6229.339276494273, 3152.849418576409], "name": 4224950802}, {"position": [4137.439276490795, -1327.8005814214566], "name": 1429422611}, {"position": [5556.239276494069, 2644.449418578887], "name": 4224950804}, {"position": [5545.489276492788, 3135.249418576791], "name": 4224950809}, {"position": [6434.639276491794, 3147.79941857779], "name": 4224950815}, {"position": [5627.989276490553, 2737.349418577395], "name": 4224950818}, {"position": [3958.139276491579, -1306.70058142357], "name": 2139783259}, {"position": [-1160.310723506086, -3040.300581421462], "name": 1667939637}, {"position": [6773.28927649512, 5125.299418576646], "name": 4224950828}, {"position": [6144.439276489777, 4665.899418576202], "name": 4224950829}, {"position": [-2492.5607235104508, -5099.650581421145], "name": 1428267566}, {"position": [6231.639276492729, 3318.799418579488], "name": 4224950834}, {"position": [-2210.160723507215, -11071.60058142398], "name": 134955571}, {"position": [-2140.1607235063125, -11071.10058142169], "name": 134955574}, {"position": [5548.839276492856, 3178.7494185770984], "name": 4224950839}, {"position": [-1886.66072350685, -11069.100581423187], "name": 134955577}, {"position": [-3404.2607235065248, 2120.8994185784036], "name": 4242276922}, {"position": [6148.939276492627, 4528.299418577575], "name": 4224950843}, {"position": [7542.88927649327, 4418.649418578724], "name": 4224950844}, {"position": [5507.5392764933895, 4297.949418578639], "name": 4224950845}, {"position": [6401.139276491108, 4929.349418578255], "name": 4224950847}, {"position": [-3339.060723504872, 5379.699418575967], "name": 3661788598}, {"position": [-8795.160723508388, -11195.600581423549], "name": 134955595}, {"position": [-6348.410723511222, 4543.499418577568], "name": 135053909}, {"position": [-11382.560723511404, -3037.2005814207623], "name": 135038393}, {"position": [4278.789276490614, -1616.400581422539], "name": 1429422683}, {"position": [3937.289276493061, -687.6505814226164], "name": 2573122320}, {"position": [-7772.16072350484, -11172.100581422485], "name": 134955618}, {"position": [-2680.910723505292, 3200.199418579075], "name": 134980201}, {"position": [-1944.0107235055848, 3202.8494185780687], "name": 134980203}, {"position": [-1199.6107235106024, 3205.599418578231], "name": 134980206}, {"position": [-479.1607235077322, 3208.1994185766407], "name": 134980211}, {"position": [248.48927649401276, 3210.849418579187], "name": 134980214}, {"position": [4435.889276493299, -1752.8505814219386], "name": 1429422711}, {"position": [-1065.0607235049847, 4224.299418577715], "name": 2327765627}, {"position": [-6419.460723506631, 6220.399418577216], "name": 1433125500}, {"position": [-7088.360723507492, 6218.549418576913], "name": 1433125502}, {"position": [-7776.41072350832, 6215.949418578503], "name": 1433125503}, {"position": [-1065.1107235091217, 4290.949418578549], "name": 2327765632}, {"position": [-7771.860723508439, 5739.499418577765], "name": 1433125505}, {"position": [-6414.61072351035, 5678.599418576624], "name": 1433125506}, {"position": [-6337.310723509404, 5637.499418579495], "name": 1433125507}, {"position": [-1065.7607235060595, 4230.44941857853], "name": 2327765636}, {"position": [-7083.51072351121, 5647.4994185791165], "name": 1433125509}, {"position": [-7773.8607235104955, 5643.199418578604], "name": 1433125511}, {"position": [-7080.510723511679, 5092.449418576451], "name": 1433125515}, {"position": [-816.9607235117837, 3740.4994185763485], "name": 2327765644}, {"position": [-7773.610723511127, 5089.799418577457], "name": 1433125517}, {"position": [-8583.010723505424, 5085.7494185763135], "name": 1433125518}, {"position": [7093.589276493617, 2143.949418577762], "name": 1429422189}, {"position": [9766.889276491496, 6058.449418578249], "name": 1942315667}, {"position": [-7128.160723510746, 4880.549418576407], "name": 1433125525}, {"position": [-814.3107235056846, 4020.999418578697], "name": 2327765655}, {"position": [-7674.260723504744, 4875.949418579495], "name": 1433125528}, {"position": [-8104.760723504967, 4874.549418577345], "name": 1433125529}, {"position": [-8517.310723505034, 4873.69941857807], "name": 1433125530}, {"position": [-8582.510723506686, 4873.499418579286], "name": 1433125531}, {"position": [-7696.710723507749, 4853.449418579458], "name": 1433125532}, {"position": [9937.48927648852, 6354.999418576313], "name": 1942315678}, {"position": [9825.039276492476, 6354.899418578697], "name": 1942315679}, {"position": [-7746.6607235052725, 4844.9994185766345], "name": 1433125539}, {"position": [-2532.460723507768, -3612.4005814208713], "name": 2140988068}, {"position": [-7996.510723508265, 4838.549418579419], "name": 1433125543}, {"position": [9711.489276490682, 5705.399418577173], "name": 134961949}, {"position": [-7931.860723509488, 4808.599418577586], "name": 1433125556}, {"position": [-7808.010723508119, 4804.649418577611], "name": 1433125558}, {"position": [-7768.160723507834, 4787.599418577315], "name": 1433125564}, {"position": [-8022.010723507833, 4780.949418577762], "name": 1433125569}, {"position": [-7734.810723505348, 4772.74941857786], "name": 1433125571}, {"position": [-7127.410723505534, 4759.849418576323], "name": 1433125574}, {"position": [-7725.560723507386, 4755.499418578779], "name": 1433125575}, {"position": [-8040.510723510863, 4755.499418578779], "name": 1433125577}, {"position": [-8088.1107235057925, 4755.099418577657], "name": 1433125578}, {"position": [10397.239276493054, -9063.550581423386], "name": 134980301}, {"position": [-6396.810723508395, 4546.999418579389], "name": 1433125587}, {"position": [-7077.610723506212, 4545.799418576024], "name": 1433125588}, {"position": [-7764.360723506059, 4539.599418578177], "name": 1433125589}, {"position": [-7973.210723505986, 4540.049418576331], "name": 1433125590}, {"position": [-8553.81072350525, 4536.199418577525], "name": 1433125591}, {"position": [-3638.8107235083567, -2451.3005814235103], "name": 4719461082}, {"position": [-7759.010723511039, 4000.94941857887], "name": 1433125599}, {"position": [-7075.560723507124, 3998.3494185769077], "name": 1433125600}, {"position": [-4127.910723511263, -1828.0005814226286], "name": 135103216}, {"position": [-9381.660723505547, -10568.100581423323], "name": 134986536}, {"position": [-1829.8107235068528, -1644.7505814234376], "name": 2585936626}, {"position": [-4104.060723506109, -2513.25058142271], "name": 135103219}, {"position": [-1610.210723505645, -1586.8005814212438], "name": 2585936640}, {"position": [-1731.41072350802, -1588.8005814232997], "name": 2585936641}, {"position": [-1724.860723506083, -1535.000581423418], "name": 2585936642}, {"position": [-4146.010723509618, 399.99941857615795], "name": 1433125635}, {"position": [-1516.9607235065996, -1531.300581422812], "name": 2585936645}, {"position": [-1516.5107235048936, -1592.2005814239526], "name": 2585936646}, {"position": [-1518.5607235110865, -1310.800581421745], "name": 2585936647}, {"position": [-1171.0607235073667, -1685.0505814218764], "name": 2585936649}, {"position": [-1582.5107235087899, -1547.5505814208645], "name": 2585936650}, {"position": [-1610.210723505645, -1548.0505814231549], "name": 2585936651}, {"position": [-1582.5107235087899, -1586.6005814224593], "name": 2585936652}, {"position": [-1651.9607235068179, -1644.200581420563], "name": 2585936653}, {"position": [-1962.8107235050152, 6450.599418577951], "name": 2352259854}, {"position": [-1694.8607235107715, -1588.2005814233935], "name": 2585936655}, {"position": [-2702.6107235101904, 6448.199418578326], "name": 2352259856}, {"position": [-1709.6107235090585, -1534.8005814210808], "name": 2585936657}, {"position": [-1706.9607235100648, -1367.4005814223733], "name": 2585936658}, {"position": [9645.78927649029, 4958.149418577306], "name": 4253573908}, {"position": [-1685.5107235116407, -1534.5005814211277], "name": 2585936661}, {"position": [-1675.410723507298, -1386.1505814212194], "name": 2585936664}, {"position": [-9382.110723507252, -9858.400581421734], "name": 135045913}, {"position": [-914.2107235078356, -2046.8505814221771], "name": 2568624551}, {"position": [-1628.5107235063379, -1380.600581423863], "name": 2585936668}, {"position": [-1708.6107235115833, -1471.4005814226994], "name": 2585936672}, {"position": [-1684.8607235075974, -1471.4505814232837], "name": 2585936673}, {"position": [-9298.660723509045, -11309.100581421206], "name": 135045922}, {"position": [-1684.4607235100284, -1430.300581422017], "name": 2585936675}, {"position": [-1590.960723511614, -1367.0005814212516], "name": 2585936676}, {"position": [-1590.960723511614, -1311.100581421698], "name": 2585936677}, {"position": [-1525.2107235070866, -1310.800581421745], "name": 2585936678}, {"position": [-1525.110723505918, -1289.7505814208898], "name": 2585936680}, {"position": [-1282.5107235059363, -1111.1005814221642], "name": 2585936681}, {"position": [-1524.0107235072742, -1119.750581423773], "name": 2585936682}, {"position": [-1289.6607235077795, -1116.4005814237044], "name": 2585936683}, {"position": [-1302.6107235063478, -1309.9005814218856], "name": 2585936684}, {"position": [-1524.5607235101488, -1206.55058142205], "name": 2585936687}, {"position": [-1412.3607235063673, -1206.700581423803], "name": 2585936688}, {"position": [-1524.1607235054744, -1108.1505814232173], "name": 2585936689}, {"position": [-2048.860723505186, 6234.999418577303], "name": 2352259893}, {"position": [-1917.8107235049424, -1207.0505814207877], "name": 2585936696}, {"position": [-1793.760723508342, -1207.5005814224937], "name": 2585936697}, {"position": [4578.1392764894235, -3270.3505814239975], "name": 1429422909}, {"position": [-2632.4107235069505, -5359.950581421913], "name": 1428267841}, {"position": [4997.839276491333, -3304.450581421037], "name": 1429422915}, {"position": [6179.039276489107, 4628.999418578416], "name": 4224849377}, {"position": [-9276.21072350604, -182.9005814215634], "name": 135045975}, {"position": [2150.1892764916875, -6304.500581421735], "name": 1962156892}, {"position": [-571.8107235068715, 5879.499418576017], "name": 2355676000}, {"position": [-7524.210723509839, 367.1494185759627], "name": 135037794}, {"position": [-1141.410723505487, 5878.949418576695], "name": 2355676003}, {"position": [-381.6107235081745, 5878.749418577911], "name": 2355676004}, {"position": [-7854.860723504942, -157.9005814207335], "name": 135037798}, {"position": [1380.3892764912007, -5388.4505814210115], "name": 1996284775}, {"position": [-1861.8107235113257, 5875.199418579058], "name": 2355676008}, {"position": [-7730.660723510141, -11008.100581420877], "name": 135037807}, {"position": [-7789.160723511657, -11474.100581423842], "name": 135037811}, {"position": [8223.889276493424, -5437.850581422765], "name": 1935184021}, {"position": [1334.939276489422, -2403.5505814232747], "name": 2587010541}, {"position": [-1894.6107235109366, -5096.000581421123], "name": 135057560}, {"position": [2578.8392764951595, -6570.100581424043], "name": 135039812}, {"position": [2171.9392764936174, -4464.300581421554], "name": 1429423002}, {"position": [7893.089276493015, -4480.050581420869], "name": 1425441691}, {"position": [-7616.260723509072, -4230.450581420797], "name": 1428266998}, {"position": [5368.339276493827, -681.6005814229698], "name": 4719616940}, {"position": [-11900.76072350621, -3036.0505814215344], "name": 135046070}, {"position": [2794.339276491087, -4557.2005814236145], "name": 1429423034}, {"position": [-2617.610723511632, 5656.949418579416], "name": 2355676091}, {"position": [2871.389276492664, -4608.050581420997], "name": 1429423040}, {"position": [8228.089276492767, -5894.000581420755], "name": 1935184032}, {"position": [9752.989276492484, -6326.600581420649], "name": 134979229}, {"position": [-3370.810723509976, -5102.05058142077], "name": 135057570}, {"position": [-3403.610723509587, -1436.6005814210325], "name": 1935295439}, {"position": [-1960.660723504759, 6016.699418577076], "name": 2352260065}, {"position": [9168.639276488477, -6859.900581421385], "name": 1930503139}, {"position": [-2047.2607235078044, 6014.449418579205], "name": 2352260068}, {"position": [-4506.0107235102005, 683.7994185779905], "name": 2960622567}, {"position": [-4102.310723510527, 6014.39941857862], "name": 1806083048}, {"position": [-4259.360723509076, 6013.49941857876], "name": 1806083049}, {"position": [-4851.11072350719, 504.94941857692766], "name": 2960622571}, {"position": [3183.439276490674, -5024.100581422886], "name": 1429423084}, {"position": [-2417.6107235049926, 5875.349418577258], "name": 2352260078}, {"position": [-2052.4607235117287, 5875.199418579058], "name": 2352260080}, {"position": [-2618.6607235061388, 5875.099418577889], "name": 2352260084}, {"position": [-3355.460723511783, -1830.5505814240064], "name": 1935295477}, {"position": [-2417.860723511467, 5844.149418578581], "name": 2352260088}, {"position": [9589.339276494968, -7654.350581422164], "name": 1930503165}, {"position": [9797.189276490315, -7657.250581420527], "name": 1930503167}, {"position": [9173.739276491233, -7657.250581420527], "name": 1930503168}, {"position": [9695.389276494381, -7662.600581422652], "name": 1930503169}, {"position": [9642.53927649139, -7664.950581421692], "name": 1930503170}, {"position": [7922.089276490851, -3617.550581420659], "name": 2086854494}, {"position": [-8653.860723505602, 5998.699418576336], "name": 1806083082}, {"position": [-2255.6607235060255, 5710.7494185792975], "name": 2352260108}, {"position": [-9311.81072350995, 5997.599418577693], "name": 1806083085}, {"position": [-2393.1107235100058, 5710.54941857696], "name": 2352260110}, {"position": [-2572.0607235086845, 5710.2994185775915], "name": 2352260112}, {"position": [-3535.9607235108115, 5993.899418577086], "name": 1806083089}, {"position": [-4101.460723511253, 5992.099418577368], "name": 1806083091}, {"position": [-2393.3107235052375, 5658.649418577966], "name": 2352260117}, {"position": [-1138.6607235053248, 5446.999418577292], "name": 2355676183}, {"position": [-1288.060723510398, 5446.0994185774325], "name": 2355676185}, {"position": [164.48927649292955, -5488.7005814237], "name": 1429423130}, {"position": [1773.389276493731, -4465.050581423213], "name": 134956059}, {"position": [-1858.5107235082887, 5443.699418577808], "name": 2355676188}, {"position": [-4098.810723505153, 4770.2494185770665], "name": 1806083101}, {"position": [-2049.8107235056295, 5328.399418576879], "name": 2355676190}, {"position": [-5608.710723507215, -1495.5505814207015], "name": 2960622624}, {"position": [-8522.110723511389, 5851.599418576825], "name": 2289072988}, {"position": [6499.7892764893095, -4545.200581421937], "name": 134956075}, {"position": [6765.539276493371, -4519.350581421832], "name": 134956077}, {"position": [9193.089276493538, -7821.150581420966], "name": 1930503214}, {"position": [9116.28927649133, -4541.400581423715], "name": 134956081}, {"position": [-2049.060723507523, 5441.9994185792575], "name": 2352260147}, {"position": [-2617.0107235117257, 5439.5494185790485], "name": 2352260149}, {"position": [-5659.760723510488, 2053.3994185782944], "name": 135031647}, {"position": [-401.1107235086797, 5331.349418579379], "name": 2352260157}, {"position": [512.0892764907126, -3309.600581420824], "name": 844923969}, {"position": [938.5892764939285, -3295.400581421859], "name": 844923972}, {"position": [-2616.1107235083136, 5326.9494185776975], "name": 2352260173}, {"position": [-7097.610723505454, -6340.8505814237515], "name": 1428268115}, {"position": [4949.889276488761, 4094.049418576162], "name": 135038037}, {"position": [4950.139276495236, 4329.899418578975], "name": 135038042}, {"position": [-7076.5107235075675, 4328.799418576778], "name": 2284151911}, {"position": [-7341.810723509923, -6400.000581422205], "name": 1428268136}, {"position": [-7144.310723511182, 4328.599418577995], "name": 2284151913}, {"position": [-574.2107235064964, 6024.249418576488], "name": 2355668074}, {"position": [-3564.710723509279, -1828.200581421413], "name": 134939756}, {"position": [1171.7392764936108, -2510.200581422595], "name": 2587010578}, {"position": [-7212.460723508229, 4268.599418576713], "name": 2284151921}, {"position": [-7689.860723509411, 4267.549418578654], "name": 2284151923}, {"position": [-4084.5607235056036, 3093.399418578002], "name": 1806083189}, {"position": [-7211.910723505354, 4211.999418576084], "name": 2284151928}, {"position": [-7218.510723511428, -6495.650581420876], "name": 1428268153}, {"position": [-7766.8107235098205, 4211.8494185778845], "name": 2284151931}, {"position": [-7732.460723509859, 4211.7994185773005], "name": 2284151932}, {"position": [-7688.260723504925, 4211.699418576131], "name": 2284151934}, {"position": [-7286.760723509644, -6527.450581423011], "name": 1428268159}, {"position": [-7145.010723505152, 4211.499418577347], "name": 2284151936}, {"position": [9196.689276492976, -7703.500581420996], "name": 2322588806}, {"position": [-7687.060723505112, 4192.199418579179], "name": 2284151943}, {"position": [-2677.5607235052235, 2668.049418577567], "name": 3758384264}, {"position": [-9293.960723510963, 2524.8994185780302], "name": 3758384266}, {"position": [-8646.860723509064, 2314.2494185783844], "name": 3758384268}, {"position": [-7211.710723510123, 4191.799418578057], "name": 2284151949}, {"position": [-9201.260723507687, -182.7505814233632], "name": 3758384275}, {"position": [1773.7392764942683, -4518.450581421974], "name": 3758384277}, {"position": [2702.7892764905914, -4641.350581422898], "name": 3758384279}, {"position": [2781.43927648955, -4688.850581423765], "name": 3758384281}, {"position": [1778.6392764946868, -5264.500581422027], "name": 3758384282}, {"position": [10400.589276493121, -9969.450581422734], "name": 134955644}, {"position": [-4136.010723506444, -993.0505814210733], "name": 3146412232}, {"position": [-3774.66072350785, 327.29941857922995], "name": 3146412233}, {"position": [2061.889276490092, -6259.550581422246], "name": 1429423290}, {"position": [213.43927649297711, -3759.0005814216456], "name": 4719854784}, {"position": [264.5392764932808, 395.89941857798294], "name": 135099936}, {"position": [2578.439276490485, -6314.950581423062], "name": 1429423302}, {"position": [8262.23927649039, -1493.5505814221983], "name": 2086854509}, {"position": [251.83927649408133, -3174.3505814212367], "name": 4615885005}, {"position": [4001.189276493733, 3399.94941857924], "name": 2069120213}, {"position": [-256.4107235087931, -9416.000581421002], "name": 3085526232}, {"position": [6101.639276494097, 4569.549418576457], "name": 2069120219}, {"position": [-1291.260723505161, 5950.099418576827], "name": 2355654865}, {"position": [2459.239276490166, 707.4494185772551], "name": 2086723566}, {"position": [9654.68927649482, -8532.250581421153], "name": 1930503404}, {"position": [10082.639276490114, -8640.80058142136], "name": 1930503473}, {"position": [9101.689276491243, -8544.300581423415], "name": 1930503408}, {"position": [5543.239276491363, -5009.850581423336], "name": 1937679912}, {"position": [9854.939276493724, -8568.800581421954], "name": 1930503416}, {"position": [3166.489276495099, 4579.29941857671], "name": 2069120250}, {"position": [9789.88927649027, -8569.100581421906], "name": 1930503420}, {"position": [9717.93927649145, -8569.450581422445], "name": 1930503424}, {"position": [2304.5892764912423, -6422.6505814239945], "name": 1429423361}, {"position": [-8115.560723510384, -6846.100581423542], "name": 1428268292}, {"position": [3791.1392764939933, -137.80058142387475], "name": 1429422294}, {"position": [2544.7392764945675, -6835.000581421724], "name": 135079176}, {"position": [-2274.0107235108553, -1644.650581422269], "name": 3380364844}, {"position": [1227.5892764890273, -6920.150581422035], "name": 1429423374}, {"position": [4654.8892764946, 3404.799418579074], "name": 2069120273}, {"position": [-6914.6107235056315, -6868.050581420704], "name": 1428268307}, {"position": [9659.289276491734, -8569.750581422397], "name": 1930503446}, {"position": [4326.43927648968, 3403.449418577509], "name": 2069120282}, {"position": [243.3392764942255, 4022.0994185773407], "name": 2069407003}, {"position": [-3727.2607235081523, -8658.600581423314], "name": 134939936}, {"position": [205.33927649069028, -6090.100581420898], "name": 135099952}, {"position": [4004.7392764890333, 4058.549418576973], "name": 2069120291}, {"position": [9510.489276493672, -664.300581423305], "name": 2074057136}, {"position": [-1181.7107235074786, 388.84941857730837], "name": 135021864}, {"position": [2078.4892764922347, 2901.099418576081], "name": 2069120297}, {"position": [-1181.8607235056788, 415.39941857848817], "name": 135021866}, {"position": [-1192.310723510559, 2060.6494185777537], "name": 135021869}, {"position": [9847.63927649368, -8610.150581422005], "name": 1930503470}, {"position": [-1195.9107235099964, 2619.7994185785947], "name": 135021872}, {"position": [-3147.6607235063625, -9330.100581422585], "name": 134939953}, {"position": [-1203.0107235077026, 3739.0994185777517], "name": 135021875}, {"position": [-1206.5107235059713, 4290.399418579227], "name": 135021878}, {"position": [2811.0892764914297, 4032.1494185775464], "name": 2069120311}, {"position": [-1217.1107235090517, 5950.249418578579], "name": 135021881}, {"position": [1721.8892764887528, 4030.099418578459], "name": 2069120315}, {"position": [-2863.6607235057454, -9908.10058142344], "name": 134939967}, {"position": [-1830.1607235073902, -3797.600581421534], "name": 4719871296}, {"position": [6531.289276495045, 6493.649418576552], "name": 2069120324}, {"position": [-3535.9607235108115, 6014.449418579205], "name": 2316883510}, {"position": [2445.6892764916915, 4031.1494185765187], "name": 2069120326}, {"position": [-1199.3107235070966, 3156.8494185769678], "name": 2068887957}, {"position": [-2192.160723510028, -11399.100581421351], "name": 134939977}, {"position": [889.8892764932498, -2270.6005814221444], "name": 2587010385}, {"position": [4948.039276492011, 4590.5994185773125], "name": 2069407058}, {"position": [9790.989276488915, -8667.50058142074], "name": 1930503507}, {"position": [1760.0392764904882, -1840.6005814206594], "name": 2587010388}, {"position": [9718.039276492618, -8671.100581423729], "name": 1930503509}, {"position": [1175.2892764889111, -1844.5505814206342], "name": 2587010391}, {"position": [9654.489276492484, -8674.25058142146], "name": 1930503512}, {"position": [-4628.160723505915, -5582.100581420946], "name": 4720043355}, {"position": [-3341.8607235091713, 5943.149418577321], "name": 2316883514}, {"position": [1302.4392764933168, -2136.5005814217852], "name": 2587010400}, {"position": [1305.9392764915856, -2403.850581423228], "name": 2587010619}, {"position": [3176.489276491168, 2910.4994185793485], "name": 2069120356}, {"position": [6146.139276488328, 4603.24941857948], "name": 2069120358}, {"position": [1172.6392764899174, -1982.050581421646], "name": 2587010408}, {"position": [1055.5892764898545, -2075.7505814223978], "name": 2587010413}, {"position": [-4137.560723506795, -1540.8005814236958], "name": 3148277103}, {"position": [-987.8107235081757, -4539.100581421707], "name": 135046512}, {"position": [2072.689276488404, 3191.649418578635], "name": 2069120370}, {"position": [207.589276492115, -4530.000581421945], "name": 135046515}, {"position": [-3437.46072351081, -1538.1505814211494], "name": 3148277115}, {"position": [-4258.060723508095, 5940.199418578373], "name": 2069376785}, {"position": [9672.889276494345, -9004.15058142201], "name": 1930503550}, {"position": [9517.589276491379, -9004.15058142201], "name": 1930503551}, {"position": [-7309.410723507881, 3160.549418577574], "name": 2664670595}, {"position": [5509.289276488971, 4590.449418579112], "name": 2069120388}, {"position": [3189.489276493873, 405.39941857886674], "name": 134997383}, {"position": [3189.489276493873, 436.8994185774966], "name": 134997385}, {"position": [3183.9892764935485, 1532.399418579189], "name": 134997388}, {"position": [213.2892764947769, -3697.550581421183], "name": 4719854989}, {"position": [3181.1392764922175, 2076.5994185794057], "name": 134997392}, {"position": [3985.239276488528, 4584.699418579419], "name": 2069120402}, {"position": [3178.4892764932238, 2635.7494185766936], "name": 134997395}, {"position": [3173.9892764903743, 3750.399418578354], "name": 134997399}, {"position": [2810.389276490355, 4576.549418576547], "name": 2069120409}, {"position": [3174.3892764950488, 3400.7494185779306], "name": 2069120410}, {"position": [10080.439276492825, -9073.60058142359], "name": 1930503580}, {"position": [5259.939276491821, 6488.649418578518], "name": 2069120414}, {"position": [4657.889276494132, -5965.250581422055], "name": 1937679941}, {"position": [3682.639276490818, 3751.799418576951], "name": 2069120416}, {"position": [-9241.76072350491, 2860.799418577642], "name": 2282973136}, {"position": [2078.839276492772, 2631.7494185761348], "name": 2069120424}, {"position": [197.13927649434027, -7168.650581423463], "name": 135099955}, {"position": [3681.3892764939737, 4034.79941857654], "name": 2069120435}, {"position": [1056.0392764915605, -2132.100581423657], "name": 2587010484}, {"position": [3174.28927649388, 3479.9494185762114], "name": 2069120437}, {"position": [2073.439276493616, 3753.2994185767166], "name": 2069120438}, {"position": [4325.189276492836, 4046.2494185788955], "name": 2069120441}, {"position": [-9508.610723507616, 4261.199418579054], "name": 2291254718}, {"position": [-9508.810723509952, 4212.549418578959], "name": 2291254719}, {"position": [1415.8392764898053, -2271.650581423756], "name": 2587010496}, {"position": [-9301.46072350624, 4211.099418576225], "name": 2291254721}, {"position": [-9098.51072351131, 4207.2994185780035], "name": 2291254723}, {"position": [2811.0892764914297, 3152.7994185793773], "name": 2069120452}, {"position": [2811.0892764914297, 3399.749418576903], "name": 2069120453}, {"position": [4650.78927648932, 4047.3494185775394], "name": 2069120455}, {"position": [1762.2392764948813, -2262.550581423994], "name": 2587010507}, {"position": [-9509.660723509227, 4189.649418577801], "name": 2291254735}, {"position": [9509.939276490797, -9515.300581423247], "name": 1930503632}, {"position": [1314.6392764937787, -2251.950581420914], "name": 2587010513}, {"position": [9600.739276493186, -9567.850581422732], "name": 1930503644}, {"position": [-2079.910723509215, -2375.8005814222824], "name": 4719494628}, {"position": [1323.2892764918347, -2337.6505814205475], "name": 2587010533}, {"position": [-1632.0607235087436, -1901.1005814206783], "name": 4719494637}, {"position": [1053.7392764931042, -2406.6505814239745], "name": 2587010543}, {"position": [6090.889276492817, -7325.650581421428], "name": 1932196370}, {"position": [-9314.110723508405, 6485.849418577772], "name": 134958929}, {"position": [10347.239276491393, 504.64941857697454], "name": 135079428}, {"position": [10321.589276493625, 4110.799418576506], "name": 135079432}, {"position": [139.98927649083726, -2453.850581421335], "name": 2587010648}, {"position": [-7058.8607235109175, 1495.4994185778503], "name": 2284152338}, {"position": [1106.089276490252, -2629.9005814216516], "name": 2587010591}, {"position": [1106.0392764932203, -2610.6505814205148], "name": 2587010594}, {"position": [3246.2392764927017, -4977.25058142251], "name": 4719445539}, {"position": [-2577.9107235095466, -1672.3005814220926], "name": 3380364837}, {"position": [-2462.2107235074964, -1377.6505814213635], "name": 3380364839}, {"position": [-2343.260723506546, -1412.5005814236147], "name": 3380364840}, {"position": [-2462.710723506234, -1319.7505814233068], "name": 3380364842}, {"position": [-2343.8107235094208, -1357.8505814209052], "name": 3380364843}, {"position": [-2050.2607235073356, 6450.949418578489], "name": 2352170540}, {"position": [-2332.8107235087714, -1593.500581421381], "name": 3380364845}, {"position": [-2333.310723507509, -1527.8505814215748], "name": 3380364846}, {"position": [-2377.5107235053383, -1593.5505814219653], "name": 3380364847}, {"position": [1256.2392764934316, -2404.100581422597], "name": 2587010617}, {"position": [5551.089276494281, -5922.400581422238], "name": 1937679931}, {"position": [4362.139276494759, -5935.550581423144], "name": 1937679932}, {"position": [4363.789276489171, -5968.050581422802], "name": 1937679933}, {"position": [5252.13927649304, -5957.750581423226], "name": 1937679935}, {"position": [4950.539276492805, -5962.650581423645], "name": 1937679936}, {"position": [-11060.910723507788, 341.6994185769795], "name": 134948420}, {"position": [-4631.260723506613, -6340.650581421414], "name": 135038533}, {"position": [4493.589276492571, -5967.000581421189], "name": 1937679944}, {"position": [206.48927649347115, -2487.3505814220207], "name": 2587010637}, {"position": [194.4392764912095, -2452.8505814238597], "name": 2587010645}, {"position": [4366.589276493471, -6019.450581423058], "name": 1937679960}, {"position": [4494.589276490046, -6017.65058142334], "name": 1937679962}, {"position": [4488.239276490447, -6019.150581423105], "name": 1937679967}, {"position": [-11650.660723510953, 110.39941857760027], "name": 134948449}, {"position": [9997.289276491018, 1687.949418577972], "name": 2062743142}, {"position": [-4921.9107235103365, 6008.399418576005], "name": 2069376793}, {"position": [6174.789276492731, 2656.899418578718], "name": 135038574}, {"position": [4518.139276491695, -6039.150581422347], "name": 1937679985}, {"position": [4473.78927648856, -6039.800581422838], "name": 1937679986}, {"position": [10075.939276489975, -10421.450581421965], "name": 1951958644}, {"position": [6176.98927649002, 2918.099418579345], "name": 135038582}, {"position": [-7989.810723508128, 6363.74941857909], "name": 2289072833}, {"position": [-4202.560723506111, -1263.7505814225847], "name": 3146557051}, {"position": [9988.839276488194, -11367.600581422721], "name": 135030399}, {"position": [-6662.760723507688, -3773.7005814229005], "name": 4720035457}, {"position": [197.83927648830968, -7658.600581422093], "name": 135099962}, {"position": [9912.889276492366, -10312.350581422435], "name": 1930503812}, {"position": [-3874.0107235071264, 112.19941857731897], "name": 3146557062}, {"position": [-1915.2607235071173, -885.5505814224784], "name": 2585900652}, {"position": [-4371.560723505752, 325.44941857892695], "name": 3146557068}, {"position": [6297.439276494288, 4719.899418578421], "name": 135038607}, {"position": [-3875.360723505139, 326.7994185769396], "name": 3146557072}, {"position": [-4852.210723505834, 325.44941857892695], "name": 3146557073}, {"position": [10076.239276493481, -10389.700581423966], "name": 1930503832}, {"position": [-4370.210723507739, 111.84941857678155], "name": 3146557081}, {"position": [6868.839276492622, 4953.399418578641], "name": 135008308}, {"position": [-3402.8607235114805, -641.8005814232686], "name": 3146557099}, {"position": [9710.789276489606, 5875.199418579058], "name": 2140984946}, {"position": [7049.089276492282, -7054.400581420595], "name": 1933539703}, {"position": [-10733.06072350988, 4214.899418577999], "name": 1362208431}, {"position": [-397.5107235092423, -4129.900581421708], "name": 4719853213}, {"position": [8266.83927649441, -2316.600581423245], "name": 135019220}, {"position": [-3613.8607235116638, -715.0005814224869], "name": 3146557109}, {"position": [-2671.9107235066986, 1788.1494185765234], "name": 2086776774}, {"position": [-7782.0607235068455, 316.4994185773651], "name": 3146557117}, {"position": [456.18927649115903, -8155.150581423242], "name": 2573122508}, {"position": [-3293.7607235083988, -1830.0005814211318], "name": 4719468835}, {"position": [189.18927649025363, -9374.650581420952], "name": 2573122510}, {"position": [-2613.910723511026, 4121.849418577739], "name": 2356771791}, {"position": [-4090.9607235093404, 3455.1994185783033], "name": 2251802364}, {"position": [-4093.610723508334, 3729.1994185792987], "name": 2251802367}, {"position": [-6341.110723511179, 6005.549418578226], "name": 2251802370}, {"position": [-4180.36072350958, 6013.849418579298], "name": 2251802373}, {"position": [-4085.9607235077533, 3157.149418576921], "name": 2251802375}, {"position": [-9049.9107235118, 3149.4494185793087], "name": 2282972945}, {"position": [9879.139276492311, -10312.300581421852], "name": 1930503811}, {"position": [-9243.16072350706, 3123.449418577451], "name": 2282972952}, {"position": [-9374.81072350721, 3114.1494185789043], "name": 2282972956}, {"position": [-9295.460723507176, 3113.099418577292], "name": 2282972957}, {"position": [-8651.260723510746, 3109.1994185779013], "name": 2282972959}, {"position": [-8627.460723509728, 3092.3494185763902], "name": 2282972962}, {"position": [-8651.11072350544, 3092.049418576437], "name": 2282972963}, {"position": [-9048.660723507852, 3089.4494185780277], "name": 2282972967}, {"position": [-9104.660723508572, 3089.2994185762745], "name": 2282972968}, {"position": [1276.0392764903372, -4514.25058142263], "name": 2587025000}, {"position": [-9295.210723507807, 3088.9994185763217], "name": 2282972971}, {"position": [-9243.16072350706, 3088.94941857929], "name": 2282972973}, {"position": [-4844.510723508221, -6103.70058142351], "name": 135112494}, {"position": [9722.989276490069, -9685.100581421579], "name": 1394286583}, {"position": [-9374.610723504873, 3074.599418578572], "name": 2282972985}, {"position": [-9295.060723509607, 3072.9994185776377], "name": 2282972987}, {"position": [10305.33927649202, -6811.600581421828], "name": 134983490}, {"position": [-9048.160723509114, 3065.049418577104], "name": 2282972992}, {"position": [5505.439276490165, 5141.699418576451], "name": 2069036516}, {"position": [6211.33927648998, 6492.399418576156], "name": 135038807}, {"position": [9991.939276488893, 2279.3994185761335], "name": 2062743183}, {"position": [-9104.160723509834, 3062.3994185781103], "name": 2282973023}, {"position": [7322.189276493418, -3140.3005814212293], "name": 2080592187}, {"position": [-4802.410723506511, -2706.300581422738], "name": 2423711600}, {"position": [2316.6892764905356, -1738.6005814223893], "name": 4720011123}, {"position": [-5993.110723508721, -1829.1505814218567], "name": 2423711605}, {"position": [-5873.360723505528, -1855.4005814230834], "name": 2423711606}, {"position": [3168.4892764900496, 4308.899418578704], "name": 134997404}, {"position": [-4846.310723507941, -2929.20058142343], "name": 2423711611}, {"position": [-3271.810723511237, -2436.0505814229327], "name": 4719462289}, {"position": [1757.5892764938317, -1302.5005814206736], "name": 2587199388}, {"position": [965.0892764909713, -1305.2005814238044], "name": 2587199389}, {"position": [6252.889276488815, 4751.6994185770045], "name": 4224950597}, {"position": [-10630.160723508197, -9205.800581423062], "name": 2638686117}, {"position": [1057.639276488942, -1304.850581423267], "name": 2587199398}, {"position": [1008.6892764888944, -1339.0505814214748], "name": 2587199399}, {"position": [1008.6892764888944, -1332.1005814219689], "name": 2587199400}, {"position": [281.9892764946985, -1555.5005814213985], "name": 2587199406}, {"position": [321.9892764931842, -1546.350581421052], "name": 2587199409}, {"position": [350.8392764928203, -1307.2505814228919], "name": 2587199413}, {"position": [281.6392764941611, -1627.050581422651], "name": 2587199414}, {"position": [597.5892764951141, -1366.9505814206673], "name": 2587199417}, {"position": [598.2392764920519, -1306.4005814236168], "name": 2587199418}, {"position": [597.7892764903459, -1348.45058142119], "name": 2587199419}, {"position": [564.0392764902913, -1306.550581421817], "name": 2587199420}, {"position": [5628.639276494596, 2918.499418576914], "name": 4224950602}, {"position": [1406.9392764923805, -1249.5005814230353], "name": 2587199422}, {"position": [1406.9392764923805, -1303.7005814240388], "name": 2587199423}, {"position": [5564.839276495093, 5967.8994185787815], "name": 135018882}, {"position": [5862.839276488785, -44.00058142195462], "name": 1393207236}, {"position": [5502.039276493065, 409.79941857699487], "name": 1393207238}, {"position": [-8558.810723506838, 2865.2494185763544], "name": 2282973129}, {"position": [-8650.160723504996, 2865.2494185763544], "name": 2282973130}, {"position": [1273.489276492512, -1249.4005814218667], "name": 2587199435}, {"position": [-9294.060723505027, 2861.499418578717], "name": 2282973135}, {"position": [-5585.160723505567, -1268.750581420619], "name": 2423703504}, {"position": [-8546.410723511144, -1279.6505814236525], "name": 135016502}, {"position": [10404.839276489496, -10354.300581422392], "name": 2074159070}, {"position": [1061.8892764924226, -8505.700581423525], "name": 2080560806}, {"position": [55.539276495153445, -5511.250581420768], "name": 1567555174}, {"position": [244.38927648873232, -9566.700581423504], "name": 2080507888}, {"position": [-6437.310723505618, -7416.700581423185], "name": 1428269050}, {"position": [-9844.010723504936, -9690.200581420782], "name": 2638686205}, {"position": [-346.1107235054328, -1584.7505814221563], "name": 2586986494}, {"position": [-347.4107235064139, -1255.7005814208821], "name": 2586986495}, {"position": [-2601.1607235076895, -9873.100581422988], "name": 134948864}, {"position": [9561.589276493976, 5826.5994185759955], "name": 2140984933}, {"position": [556.8892764884481, -8117.400581422629], "name": 2080507908}, {"position": [-99.26072350907589, -1742.4005814206112], "name": 2586986501}, {"position": [4594.889276489766, -6849.450581423611], "name": 2029677569}, {"position": [-3116.760723507639, -2927.3005814225426], "name": 135047176}, {"position": [-135.6107235110926, -1402.450581423409], "name": 2586986508}, {"position": [-301.06072350832846, -1255.400581420929], "name": 2586986512}, {"position": [7003.1392764917655, 2962.699418578296], "name": 2271725585}, {"position": [5601.739276492879, -2680.6005814208334], "name": 135047187}, {"position": [-756.9107235099182, -1410.6005814227274], "name": 2586986517}, {"position": [5837.339276489218, -2689.100581420689], "name": 135047193}, {"position": [-9764.910723511377, -9756.300581422294], "name": 2638686234}, {"position": [-629.1607235056063, -1256.400581421957], "name": 2586986523}, {"position": [-784.2107235092044, -1517.4005814238], "name": 2586986524}, {"position": [-682.9607235090407, -1587.7005814211032], "name": 2586986528}, {"position": [7100.889276493661, 2929.3494185793634], "name": 2271725601}, {"position": [-10185.210723506088, -9785.850581423005], "name": 2638686245}, {"position": [-113.81072350502563, -1507.9505814235006], "name": 2586986535}, {"position": [28.489276495236027, -1457.4005814225188], "name": 2586986540}, {"position": [900.5392764933617, -2753.1005814225296], "name": 135047214}, {"position": [1764.839276489738, -2754.1005814235577], "name": 135047215}, {"position": [196.58927649146563, -1547.0005814215426], "name": 2586986545}, {"position": [235.58927649247607, -1602.750581422896], "name": 2586986546}, {"position": [-2054.010723504973, 5947.649418576617], "name": 2423670837}, {"position": [-1956.8107235059529, 5873.8494185774925], "name": 2423670840}, {"position": [-1982.460723510826, 5919.799418578009], "name": 2423670842}, {"position": [-1998.8607235106315, 5934.149418578727], "name": 2423670843}, {"position": [197.53927649190928, -1363.4005814218142], "name": 2586986556}, {"position": [66.58927649283441, -1527.8005814209905], "name": 2586986557}, {"position": [-1933.0607235090724, 5977.399418576113], "name": 2423670848}, {"position": [-1936.7107235055414, 5918.049418578875], "name": 2423670850}, {"position": [7005.639276492559, 2695.599418576222], "name": 2271725635}, {"position": [6879.639276490934, 2694.5994185787467], "name": 2271725636}, {"position": [-9076.560723507044, 2660.499418578155], "name": 2282973253}, {"position": [-556.5107235057098, -1309.5505814213482], "name": 2586986567}, {"position": [-10385.510723509127, -9882.050581420997], "name": 2638686280}, {"position": [-347.2107235111821, -1308.550581423873], "name": 2586986569}, {"position": [-234.11072351109397, -1307.7505814216295], "name": 2586986571}, {"position": [278.38927649526113, -1307.5005814222607], "name": 2586986572}, {"position": [197.83927648830968, -1307.5005814222607], "name": 2586986573}, {"position": [-9173.060723504988, 2653.249418578696], "name": 2282973262}, {"position": [-1009.1607235054312, -1477.0505814212243], "name": 2586986580}, {"position": [-1982.7607235072264, 5977.149418576744], "name": 2423670869}, {"position": [-1995.9607235051635, 5966.999418578922], "name": 2423670871}, {"position": [-10244.810723506249, -9991.900581422185], "name": 2638686296}, {"position": [-1430.8107235052603, -1810.850581421164], "name": 4719495257}, {"position": [-1861.2107235114195, 5948.049418577739], "name": 2423670874}, {"position": [-1045.3607235092477, -1309.3005814219794], "name": 2586986589}, {"position": [-8649.260723508689, 2629.649418576463], "name": 2282973279}, {"position": [-1172.6607235047481, -1489.2005814211018], "name": 2586986593}, {"position": [910.6892764947361, 2627.499418576207], "name": 2080617359}, {"position": [-9076.810723506413, 2627.7494185791284], "name": 2282973286}, {"position": [-9172.81072350562, 2627.3494185780064], "name": 2282973288}, {"position": [-9240.810723511571, 2627.0494185780535], "name": 2282973289}, {"position": [-9294.260723507363, 2626.9994185774694], "name": 2282973290}, {"position": [5674.689276489175, -5.700581422019013], "name": 1942259823}, {"position": [9353.03927649045, 6208.64941857846], "name": 4614343699}, {"position": [-8649.11072351049, 2588.9494185769026], "name": 2282973300}, {"position": [-3548.2607235053365, 2902.1994185782773], "name": 2311060501}, {"position": [5324.139276488893, -2594.100581422509], "name": 2271725696}, {"position": [-5668.310723507375, -738.2005814235981], "name": 2423701867}, {"position": [5680.0392764912995, -266.5505814221092], "name": 1942259848}, {"position": [5486.889276490103, -2640.2505814218102], "name": 2271725708}, {"position": [5441.439276488325, -2725.050581421584], "name": 2271725710}, {"position": [9173.389276490696, -7703.750581423918], "name": 2139785359}, {"position": [9082.139276493706, -6859.4005814226475], "name": 2139785360}, {"position": [5837.239276495155, -2832.1505814226102], "name": 2271725713}, {"position": [7934.639276491851, -6845.250581420714], "name": 2139785362}, {"position": [5669.989276491095, 116.44941857724689], "name": 1942259859}, {"position": [9127.789276490716, -6858.9505814209415], "name": 2139785364}, {"position": [2129.3392764931696, -6386.250581421393], "name": 2271725719}, {"position": [2220.9392764906966, -6523.350581421283], "name": 2271725722}, {"position": [-1950.710723505722, -11485.450581421475], "name": 2271725726}, {"position": [8776.489276492328, 5463.399418577097], "name": 2069036822}, {"position": [-8558.410723509269, 2528.0494185793145], "name": 2282973355}, {"position": [-8648.460723506447, 2527.299418577655], "name": 2282973358}, {"position": [9597.389276493119, -9498.900581423442], "name": 2074159280}, {"position": [8954.339276492363, -1730.1005814225334], "name": 135022770}, {"position": [-5007.360723510601, 4234.149418579136], "name": 2310516530}, {"position": [8954.339276492363, -1765.1005814229848], "name": 135022772}, {"position": [-9093.410723508554, 2525.7494185773057], "name": 2282973366}, {"position": [-2360.3607235074264, 5108.999418578009], "name": 2357086393}, {"position": [-2616.310723510651, 5107.5494185788275], "name": 2357086394}, {"position": [-9240.01072350933, 2525.099418576815], "name": 2282973371}, {"position": [-9371.56072350831, 2524.5994185780773], "name": 2282973373}, {"position": [8944.339276489189, -2314.1005814224513], "name": 135022782}, {"position": [8947.33927648872, -2856.6005814205655], "name": 135022785}, {"position": [10023.63927648986, -2353.300581422246], "name": 2086854378}, {"position": [-8772.410723508983, 2511.249418578387], "name": 2282973382}, {"position": [-9158.41072350787, 2510.8494185772656], "name": 2282973384}, {"position": [-9093.210723506218, 2509.5494185762846], "name": 2282973389}, {"position": [8973.239276492961, 418.94941857734125], "name": 135022798}, {"position": [8976.339276493662, -120.65058142241014], "name": 135022800}, {"position": [8973.839276492869, -667.0505814234673], "name": 135022802}, {"position": [9408.289276493066, -5879.200581421884], "name": 135022807}, {"position": [9127.989276493054, -6764.650581423837], "name": 135022809}, {"position": [-6827.660723509154, -3056.750581421852], "name": 2423695594}, {"position": [-5655.360723508807, 5089.899418578625], "name": 2068973807}, {"position": [9722.989276490069, -9409.600581420818], "name": 2074159346}, {"position": [-6302.360723509537, -3217.6505814227594], "name": 2423695603}, {"position": [-6343.860723511341, 6221.8494185763975], "name": 2068973812}, {"position": [-9674.410723505389, 2488.599418576598], "name": 2282973432}, {"position": [1553.189276492617, -6023.700581422986], "name": 2080560852}, {"position": [-1686.110723511547, -2517.6505814208385], "name": 4719820416}, {"position": [-7144.210723510014, 4268.699418577881], "name": 1965661549}, {"position": [9117.889276488711, -4973.750581420689], "name": 135022844}, {"position": [9115.789276492593, -5885.300581422115], "name": 135022845}, {"position": [-5748.210723510283, -3183.600581422752], "name": 2423695614}, {"position": [-4104.2107235114145, 5377.399418577511], "name": 2068973823}, {"position": [-1960.960723508265, 6235.049418577887], "name": 2068973824}, {"position": [-6755.010723509258, -3253.05058142078], "name": 2423695617}, {"position": [-2045.1107235075483, 4893.899418576098], "name": 2357086466}, {"position": [-2358.9607235052767, 4892.749418576869], "name": 2357086468}, {"position": [-2358.6107235047393, 4835.149418578766], "name": 2357086470}, {"position": [-2043.9107235077358, 4777.699418578863], "name": 2357086471}, {"position": [-5959.560723511004, -3033.0505814220032], "name": 2423695625}, {"position": [-5661.710723508406, 6221.699418578197], "name": 2068973834}, {"position": [-4586.460723508879, 5087.89941857657], "name": 2068973835}, {"position": [10392.189276494435, -8568.700581420784], "name": 2087861293}, {"position": [5550.489276494374, 4298.049418576255], "name": 4224950659}, {"position": [-3433.6107235048985, 6230.799418577959], "name": 2068973848}, {"position": [5292.739276491431, -1271.9505814224874], "name": 1942240522}, {"position": [-4182.160723509298, 6228.699418578288], "name": 2068973856}, {"position": [-5256.3107235101825, 6228.899418577072], "name": 2068973857}, {"position": [-3472.5107235047403, -3349.4505814211097], "name": 135104809}, {"position": [-6007.110723508902, 5638.799418576923], "name": 2068973871}, {"position": [5850.2392764907545, -6605.05058142391], "name": 2042464563}, {"position": [-9202.86072350507, 2418.699418576864], "name": 2282973498}, {"position": [-9239.410723509423, 2418.699418576864], "name": 2282973499}, {"position": [4590.839276488623, 2155.2494185783644], "name": 135088444}, {"position": [4589.839276491148, 2640.8994185764814], "name": 135088446}, {"position": [-4103.160723509802, 6229.199418577025], "name": 2068973890}, {"position": [7342.9892764949045, -7728.000581423089], "name": 135047491}, {"position": [1743.4392764883455, 399.89941857854205], "name": 134990148}, {"position": [6095.639276495035, -7746.900581423688], "name": 135047493}, {"position": [5270.989276489501, -7749.200581422145], "name": 135047495}, {"position": [4649.139276494907, 4310.799418576039], "name": 135088456}, {"position": [1736.2892764936078, 1526.7494185771113], "name": 134990154}, {"position": [1732.7892764882336, 2071.2994185778653], "name": 134990156}, {"position": [1729.2392764929332, 2630.4994185792907], "name": 134990159}, {"position": [1721.8392764917212, 3749.7494185778633], "name": 134990162}, {"position": [9241.389276489543, -9831.500581423568], "name": 135022935}, {"position": [-6071.210723504805, 4269.399418578956], "name": 135096675}, {"position": [-2614.1107235062577, 4560.2994185784955], "name": 2357086570}, {"position": [-2038.66072350678, 4553.849418577727], "name": 2357086571}, {"position": [4601.339276490535, 1945.349418576825], "name": 135088493}, {"position": [-8556.060723506675, 2315.299418576444], "name": 2282973551}, {"position": [-10199.660723507975, 317.3494185766401], "name": 2080739029}, {"position": [-3308.8107235101916, -6104.5005814222], "name": 135104883}, {"position": [-3307.160723508673, -6955.60058142064], "name": 135104885}, {"position": [-9239.110723505917, 2312.349418577497], "name": 2282973562}, {"position": [-9292.810723508182, 2312.299418576913], "name": 2282973563}, {"position": [-4095.860723509759, 4226.099418577433], "name": 2311059948}, {"position": [1732.5392764888647, -5264.950581423733], "name": 3009796733}, {"position": [9127.639276492517, -6819.300581422994], "name": 135022976}, {"position": [-10328.66072350913, -7913.000581421415], "name": 2267911755}, {"position": [9130.939276488447, -7704.000581423287], "name": 135022979}, {"position": [-9809.160723506238, 2302.949418577782], "name": 2282973573}, {"position": [9675.989276495045, -4482.1005814235095], "name": 3698428994}, {"position": [-8103.260723508754, 4263.34941857931], "name": 135096722}, {"position": [9742.489276490574, -4495.900581421352], "name": 3698428995}, {"position": [-7767.2607235115265, 4267.399418576901], "name": 135096727}, {"position": [6035.639276490201, -678.8505814228074], "name": 3009784217}, {"position": [-9369.410723508054, 2245.8994185790007], "name": 2282973598}, {"position": [-9005.11072350696, 4263.849418578047], "name": 135096743}, {"position": [-9668.210723511094, 2233.3994185785855], "name": 2282973617}, {"position": [-4592.610723506141, 5139.799418579116], "name": 2069393822}, {"position": [-11610.060723505456, -51.900581421904235], "name": 135023030}, {"position": [-11518.36072350676, -191.55058142317216], "name": 135023033}, {"position": [-10904.710723508515, -1125.9005814210354], "name": 135023035}, {"position": [-9436.760723509962, 2221.79941857803], "name": 2282973628}, {"position": [-9369.110723511654, 2221.399418576908], "name": 2282973629}, {"position": [-9750.410723505354, -8274.60058142293], "name": 2267911757}, {"position": [-10481.360723510135, -1766.4005814239658], "name": 135023040}, {"position": [-4841.510723508691, 4222.79941857795], "name": 2310516574}, {"position": [6518.43927649054, 2364.299418577076], "name": 1962191307}, {"position": [-524.2107235048366, 4353.9994185763935], "name": 2357086668}, {"position": [-562.8607235053096, 4353.69941857644], "name": 2357086669}, {"position": [6631.289276491259, 2375.4494185794783], "name": 1962191310}, {"position": [-1131.6607235087872, 4350.749418577493], "name": 2357086671}, {"position": [-4250.0607235069765, 4225.199418577575], "name": 2310516568}, {"position": [-1281.110723510892, 4348.999418578359], "name": 2357086674}, {"position": [-9667.560723507051, 2185.1994185766443], "name": 2282973653}, {"position": [7187.639276494906, 3229.099418579295], "name": 1962191318}, {"position": [-5117.310723505852, -8573.500581423588], "name": 2089552344}, {"position": [6470.98927649381, 2227.799418577092], "name": 1962191321}, {"position": [6490.539276491347, 2335.4994185780242], "name": 1962191326}, {"position": [895.6392764929433, -1929.7005814209456], "name": 2586992562}, {"position": [6415.18927648832, 2358.1994185768453], "name": 1962191330}, {"position": [6427.1392764894135, 2371.6494185777037], "name": 1962191339}, {"position": [-2643.6607235069687, -2384.8505814214604], "name": 135064044}, {"position": [7528.089276490846, 3154.749418577296], "name": 1962191347}, {"position": [7385.039276492478, 2212.0994185783616], "name": 1962191349}, {"position": [-9509.210723507522, 4212.549418578959], "name": 2291254720}, {"position": [6509.089276491409, 3320.3994185768693], "name": 4224950697}, {"position": [7401.939276491021, 2320.4994185768155], "name": 1962191352}, {"position": [-4267.110723510825, -2406.6005814233904], "name": 2424998399}, {"position": [6334.689276492611, 2262.749418576959], "name": 1962191362}, {"position": [-4207.310723508328, -2386.3005814206417], "name": 2424998403}, {"position": [-4104.010723509077, -2407.150581422712], "name": 2424998410}, {"position": [-4267.360723510194, -2385.500581421951], "name": 2424998414}, {"position": [5642.48927648947, -1245.6505814206764], "name": 1429422509}, {"position": [7286.339276490139, 4975.049418579402], "name": 4719569426}, {"position": [-4104.110723510246, -2386.100581421857], "name": 2424998421}, {"position": [268.9892764919932, -4147.850581421863], "name": 2139769367}, {"position": [-2653.0107235060996, -2931.1505814213488], "name": 1855078878}, {"position": [-7291.910723509432, -5042.9505814229005], "name": 1959915201}, {"position": [-8646.06072350682, 2089.0494185792363], "name": 2282973723}, {"position": [-4207.910723508235, -2407.0005814209594], "name": 2424998429}, {"position": [2622.4392764930826, -7516.500581420615], "name": 1424938757}, {"position": [-9259.710723505066, 2086.1994185779054], "name": 2282973728}, {"position": [-4262.510723506807, 6442.14941857868], "name": 2294600112}, {"position": [-11047.610723508682, -8080.500581421291], "name": 1428269604}, {"position": [-8645.910723508621, 2039.9994185780201], "name": 2282973743}, {"position": [-9237.110723510967, 2037.4494185766423], "name": 2282973744}, {"position": [-8645.76072351042, 1978.6994185793105], "name": 2282973747}, {"position": [-9237.110723510967, 1976.9494185766234], "name": 2282973751}, {"position": [-9260.060723505603, 1976.8994185760391], "name": 2282973752}, {"position": [-8645.76072351042, 1964.1994185768397], "name": 2282973753}, {"position": [-9235.360723508278, 1781.3994185793547], "name": 2282973759}, {"position": [-8544.01072351152, 355.94941857652884], "name": 134982215}, {"position": [-8543.710723508013, 402.9494185786575], "name": 134982219}, {"position": [-8547.46072350565, 1490.349418578063], "name": 134982220}, {"position": [-8553.860723509388, 2040.0994185791888], "name": 134982222}, {"position": [-8559.110723510345, 2590.049418579099], "name": 134982224}, {"position": [-8585.760723505588, 5362.099418576349], "name": 134982235}, {"position": [-677.6607235110532, -1309.0005814220262], "name": 2586986565}, {"position": [-8590.810723511311, 6486.8494185787995], "name": 134982240}, {"position": [-5705.860723509204, -2174.300581422983], "name": 2423712353}, {"position": [-7929.710723509232, 6491.2994185775115], "name": 135064196}, {"position": [-7775.610723506077, 6490.9494185769745], "name": 135064200}, {"position": [-2614.4107235097636, 4285.24941857944], "name": 3661057639}, {"position": [366.0392764928133, -8130.350581421198], "name": 1393871501}, {"position": [-151.0107235063174, -7671.100581422507], "name": 1393871502}, {"position": [1068.1892764949907, -8471.650581423517], "name": 1393871503}, {"position": [8954.239276491193, 3476.999418577265], "name": 2086776807}, {"position": [-583.4607235115641, -7954.150581422681], "name": 1393871512}, {"position": [9078.83927649067, -11410.600581420738], "name": 134962288}, {"position": [-9322.460723510063, -8191.400581420538], "name": 1428269734}, {"position": [-8518.710723507184, 5085.599418578113], "name": 2289073265}, {"position": [-323.0607235096272, -7966.000581422605], "name": 1393871529}, {"position": [-9386.860723509471, -8192.550581423318], "name": 1428269738}, {"position": [-5962.310723511166, 2050.7994185763323], "name": 135072431}, {"position": [3171.1892764931804, 4033.149418578574], "name": 2069120305}, {"position": [-4107.760723506715, 2060.299418577216], "name": 135072436}, {"position": [-5079.860723505191, -1264.500581420691], "name": 2331404988}, {"position": [-5090.110723507734, -170.85058142285448], "name": 2331404989}, {"position": [-5580.310723509285, -171.10058142222329], "name": 2331404990}, {"position": [-5577.060723510385, -738.4505814229669], "name": 2331404991}, {"position": [-6012.660723506258, -172.25058142145144], "name": 2331404992}, {"position": [-9254.510723508247, -10631.30058142292], "name": 2089552577}, {"position": [-5081.260723507341, -735.5005814240201], "name": 2331404994}, {"position": [-11963.410723510038, -7881.850581423322], "name": 2267910129}, {"position": [7960.989276490693, -4545.3505814236905], "name": 2086854552}, {"position": [-5216.210723510529, 5401.6994185772655], "name": 2069393871}, {"position": [-7959.260723509942, 5088.6494185782285], "name": 1433125519}, {"position": [-4639.460723510069, -4651.300581421936], "name": 134957796}, {"position": [-4625.76072350629, -5110.000581421304], "name": 134957798}, {"position": [-4628.31072351122, -5613.950581423665], "name": 134957801}, {"position": [-6007.260723507102, -738.9505814217046], "name": 2217927122}, {"position": [-4625.260723507552, -6107.450581421148], "name": 134957807}, {"position": [-4585.910723506004, -165.25058142136118], "name": 134957816}, {"position": [-4650.2607235083815, -724.7005814221552], "name": 134957819}, {"position": [-3510.9107235058445, 2810.599418577198], "name": 3758384263}, {"position": [-4647.660723506419, -1265.3505814235189], "name": 134957822}, {"position": [9695.489276488444, 2279.3994185761335], "name": 135072512}, {"position": [10335.839276493174, 2279.3994185761335], "name": 135072514}, {"position": [-1007.1107235063437, -3039.650581420972], "name": 4719864580}, {"position": [-1008.8607235090308, -3149.8005814221133], "name": 4719864582}, {"position": [-1235.6107235049762, -3093.0005814227], "name": 4719864584}, {"position": [-11744.160723509367, -10607.60058142307], "name": 134966034}, {"position": [7596.839276494904, 2093.8994185790707], "name": 135072531}, {"position": [8206.339276490837, 2096.8994185786014], "name": 135072534}, {"position": [-11752.660723509223, -11074.10058142122], "name": 134966040}, {"position": [-11753.660723506699, -11111.600581422465], "name": 134966043}, {"position": [7339.939276491236, -6812.1005814205655], "name": 135039780}, {"position": [6088.98927649193, -6827.450581422312], "name": 135039782}, {"position": [5850.339276491923, -6829.4005814237835], "name": 135039784}, {"position": [5256.639276488784, -6840.300581423264], "name": 135039786}, {"position": [-7508.610723505171, -3944.900581423383], "name": 1667926827}, {"position": [3778.989276490563, 1533.1494185772954], "name": 2080617383}, {"position": [-10560.96072350954, 4819.4494185764825], "name": 134990654}, {"position": [-5650.3607235072195, 4274.199418578206], "name": 135031619}, {"position": [-5659.660723509319, 5934.899418576833], "name": 135031620}, {"position": [-694.5107235054593, -1582.6005814219002], "name": 2586986529}, {"position": [-1918.6107235071859, 5966.049418578478], "name": 2423670861}, {"position": [-4168.360723511455, -2593.0505814208973], "name": 1667926869}, {"position": [-10251.160723505847, 4257.499418578447], "name": 134957917}, {"position": [-9302.060723506145, 4262.349418578282], "name": 134957919}, {"position": [-5675.160723505713, 2541.649418578373], "name": 135031649}, {"position": [5267.939276492939, -2457.9005814224784], "name": 1962178364}, {"position": [-3308.660723504886, -6598.600581423142], "name": 135097197}, {"position": [202.83927648989675, -6584.100581420671], "name": 135097204}, {"position": [232.03927649007028, -5362.000581421], "name": 2139769721}, {"position": [203.83927649447742, -6353.100581421245], "name": 135097216}, {"position": [8566.18927649322, -8625.200581423798], "name": 134982531}, {"position": [9134.889276488422, -8620.800581422116], "name": 134982533}, {"position": [10392.139276490298, -8606.100581420862], "name": 134982537}, {"position": [-4145.510723510881, 325.44941857892695], "name": 3146412237}, {"position": [1015.9392764919062, -698.1005814239438], "name": 1996491668}, {"position": [-9015.310723505365, -8383.550581420706], "name": 1428269973}, {"position": [6104.939276490029, -2687.850581423845], "name": 2086854492}, {"position": [-7396.160723509127, -4646.100581421564], "name": 134982563}, {"position": [-6006.260723509627, -1705.900581423947], "name": 2217880484}, {"position": [-1700.6607235074966, -1728.2005814216461], "name": 2585900356}, {"position": [-5834.160723509285, -2217.2005814233844], "name": 2217880492}, {"position": [-4503.16072350887, -3127.500581420861], "name": 2217880510}, {"position": [8519.639276492797, -4314.0005814237265], "name": 2086854536}, {"position": [2529.7392764898063, -1738.7505814205895], "name": 4719995859}, {"position": [2246.489276494401, -1738.550581421805], "name": 4719995860}, {"position": [-7981.3107235082725, -7007.900581420756], "name": 1959922645}, {"position": [2040.3892764946363, -2067.5005814219103], "name": 4719995863}, {"position": [-11382.310723504928, -3666.0005814219685], "name": 135031769}, {"position": [1395.089276492456, -3197.6005814229325], "name": 135064538}, {"position": [6988.989276493385, 2224.2994185788234], "name": 1962186575}, {"position": [6644.539276493333, 2307.699418576448], "name": 1962186576}, {"position": [1763.589276492894, -3179.2505814216556], "name": 135064546}, {"position": [2568.8392764919854, -3173.950581423668], "name": 135064548}, {"position": [-13217.660723505276, -3869.1005814222026], "name": 135031786}, {"position": [3930.589276492924, -3188.550581423755], "name": 135064558}, {"position": [-1173.9107235086976, -835.8005814237401], "name": 2140998641}, {"position": [5837.0392764928165, -3165.9505814225495], "name": 135064564}, {"position": [6824.13927648895, -3139.7505814219076], "name": 135064566}, {"position": [-600.9107235058764, -3744.900581423849], "name": 4719897593}, {"position": [266.28927648886247, 123.19941857796834], "name": 2086776819}, {"position": [264.3392764909436, 426.59941857792205], "name": 134982657}, {"position": [257.3892764914376, 1521.3494185779552], "name": 134982659}, {"position": [4642.339276493602, -7053.950581422441], "name": 2029677572}, {"position": [253.88927649316884, 2065.8994185787096], "name": 134982661}, {"position": [250.33927649076304, 2625.099418576582], "name": 134982662}, {"position": [-2681.360723506998, -862.8005814230733], "name": 1567588865}, {"position": [245.08927648980716, 3744.3494185787076], "name": 134982666}, {"position": [241.58927649153839, 4295.699418577215], "name": 134982669}, {"position": [9309.839276490095, 6202.799418577598], "name": 4614343694}, {"position": [234.58927649500083, 5394.89941857596], "name": 134982672}, {"position": [231.03927649259504, 5957.39941857687], "name": 134982675}, {"position": [9310.53927649117, 6187.54941857702], "name": 4614343701}, {"position": [9308.489276492082, 6192.499418578023], "name": 4614343703}, {"position": [9308.239276492714, 6197.699418578395], "name": 4614343704}, {"position": [7888.5892764901655, -4316.250581421599], "name": 2086854563}, {"position": [8810.939276493456, 6135.649418578027], "name": 4614343717}, {"position": [9965.489276488881, -3130.4005814227767], "name": 885378093}, {"position": [-716.6607235049582, -7165.1005814210575], "name": 135097404}, {"position": [-7147.460723508913, 5311.04941857663], "name": 2284260413}, {"position": [-715.1607235087454, -6915.100581423417], "name": 135097406}, {"position": [8810.33927649355, 6240.099418576506], "name": 2069036662}, {"position": [-7771.010723509164, 5308.049418577099], "name": 2284260418}, {"position": [-470.8607235102136, -9882.750581422073], "name": 135097411}, {"position": [-7587.310723508267, 6430.899418578661], "name": 2286590562}, {"position": [6492.189276492865, 4805.9494185785925], "name": 4224950800}, {"position": [-6011.560723507614, -603.900581420902], "name": 2442181819}, {"position": [-8761.010723510764, -1491.100581421989], "name": 2282822845}, {"position": [-10538.86072350707, 5083.449418577857], "name": 2293563339}, {"position": [5246.339276489209, -4589.550581421519], "name": 135098376}, {"position": [4006.33927649352, 4312.8994185792635], "name": 135007358}, {"position": [-3410.3607235067557, 2664.749418578083], "name": 2311060673}, {"position": [7379.339276489816, 4655.399418577844], "name": 135097480}, {"position": [-5717.360723508591, 5934.6494185774645], "name": 2292321422}, {"position": [-1109.760723508657, -1375.5505814216917], "name": 2586986584}, {"position": [3880.839276490633, 5968.399418577519], "name": 135007385}, {"position": [-671.8107235101911, -2681.7005814230297], "name": 2568600191}, {"position": [-5717.160723506254, 5865.049418577683], "name": 2292321452}, {"position": [-627.9107235087622, -3304.4005814240054], "name": 4719907357}, {"position": [-5659.210723507613, 5861.199418578877], "name": 2292321457}, {"position": [-5717.110723509222, 5860.899418578924], "name": 2292321458}, {"position": [-6006.6107235101645, 5860.799418577755], "name": 2292321459}, {"position": [-6345.5607235098905, 5858.049418577593], "name": 2292321462}, {"position": [-8587.760723507643, 5851.349418577456], "name": 2292321463}, {"position": [-10615.210723507573, 5784.199418577884], "name": 2292321468}, {"position": [212.18927648902763, -3214.6505814232287], "name": 135064770}, {"position": [926.8392764951727, -3204.4005814206857], "name": 135064774}, {"position": [7547.339276491983, -2862.6005814231803], "name": 135016288}, {"position": [1765.3392764884757, -3216.6005814211476], "name": 135064786}, {"position": [2572.839276488992, -3213.550581421032], "name": 135064790}, {"position": [3914.539276493656, 406.2494185781418], "name": 135007452}, {"position": [3914.289276494287, 448.1494185775148], "name": 135007454}, {"position": [-836.0607235076145, -2097.850581421312], "name": 2568599419}, {"position": [3906.1892764920003, 1569.6994185780966], "name": 135007460}, {"position": [3902.289276489057, 2079.199418577815], "name": 135007464}, {"position": [7194.489276493243, 3239.3994185788697], "name": 844180725}, {"position": [6823.339276493812, -3196.0005814219985], "name": 135064822}, {"position": [7339.289276494299, -6852.850581420711], "name": 1933539611}, {"position": [7735.539276488624, 4329.049418576147], "name": 844180730}, {"position": [8224.78927648973, 4789.699418576987], "name": 844180731}, {"position": [9102.589276494655, 5577.0994185770915], "name": 844180732}, {"position": [6751.139276488516, 3149.2494185769715], "name": 4224950681}, {"position": [10329.18927649007, 6433.549418577655], "name": 844180741}, {"position": [385.43927649214993, -1833.000581420663], "name": 2586992589}, {"position": [6882.489276492265, 1239.1494185770568], "name": 3935046930}, {"position": [6996.939276490366, 3032.4494185762774], "name": 1962186627}, {"position": [6641.9892764884025, 967.1994185787014], "name": 3935046934}, {"position": [-10538.71072350887, 5354.299418577568], "name": 2292321562}, {"position": [5040.789276492319, -2216.3505814205564], "name": 1942220075}, {"position": [5051.139276488925, -2722.550581420791], "name": 1942220078}, {"position": [-8649.960723509765, 5422.399418577584], "name": 2289073163}, {"position": [-9744.21072351106, 5307.9994185765145], "name": 2292321589}, {"position": [5256.189276494183, -7527.750581420633], "name": 1932196432}, {"position": [-10539.010723505271, 5305.249418576352], "name": 2292321596}, {"position": [-10577.610723508713, 5304.949418576399], "name": 2292321597}, {"position": [-5485.960723511596, -5586.850581423164], "name": 1959915229}, {"position": [-1130.160723505469, -11063.100581420571], "name": 134955579}, {"position": [358.73927649276993, -1812.0005814239448], "name": 2586992592}, {"position": [6091.489276492723, -954.800581421722], "name": 2086854574}, {"position": [7330.2892764886, -5446.200581420868], "name": 134991213}, {"position": [7927.589276491176, -5440.150581421221], "name": 134991215}, {"position": [8519.939276489196, -5435.550581420756], "name": 134991218}, {"position": [9120.339276492472, -5429.850581421647], "name": 134991221}, {"position": [5850.83927649066, -6375.100581422544], "name": 135081367}, {"position": [6033.939276491651, -130.75058142320017], "name": 1942302106}, {"position": [6028.589276489527, 284.5494185770292], "name": 1942302110}, {"position": [6033.439276492913, -467.4005814209181], "name": 1942302111}, {"position": [7338.039276490349, -6119.700581422194], "name": 2658901885}, {"position": [5855.839276492247, 459.09941857757985], "name": 1942302122}, {"position": [-1174.1107235110348, -1309.400581423148], "name": 2585900646}, {"position": [9644.139276488771, 5242.349418576709], "name": 134985629}, {"position": [212.38927649136485, -3298.650581420759], "name": 2568624511}, {"position": [5907.03927649372, 138.74941857849876], "name": 1942302134}, {"position": [6033.089276492376, 7.7994185794239], "name": 1942302137}, {"position": [5945.739276491224, -8279.800581423302], "name": 1930367562}, {"position": [387.78927649474326, -1901.2505814224312], "name": 2586992595}, {"position": [7336.839276490537, -5901.600581420752], "name": 135035920}, {"position": [-9560.460723506025, 5083.649418576641], "name": 2292321739}, {"position": [-4147.810723509338, 684.3494185773125], "name": 2086776715}, {"position": [7541.339276492919, -1771.100581422047], "name": 135016280}, {"position": [-4199.710723504779, -2511.900581421145], "name": 4719463893}, {"position": [-7133.910723510439, -10885.40058142229], "name": 134933976}, {"position": [-8036.260723507383, -9663.600581422572], "name": 2331413982}, {"position": [-9391.860723511058, -10400.25058142291], "name": 2331413994}, {"position": [236.3392764905825, 5123.399418579311], "name": 2069036970}, {"position": [-10258.56072350706, -10285.600581422472], "name": 2331414012}, {"position": [-10251.460723509354, -10323.600581422454], "name": 2331414023}, {"position": [7579.489276494655, 4385.1994185786225], "name": 4224850306}, {"position": [8266.089276489198, -2046.4005814240238], "name": 134934056}, {"position": [8946.63927649475, -2043.2005814221554], "name": 134934058}, {"position": [-8589.81072350673, 6212.249418577898], "name": 2091809130}, {"position": [10077.639276488526, 6493.549418578937], "name": 4635856452}, {"position": [-1160.7607235077921, -3150.950581421341], "name": 2568624516}, {"position": [9862.789276489537, 6487.349418577537], "name": 4635856462}, {"position": [-5370.1607235083775, -3225.4005814209563], "name": 2960627998}, {"position": [-1197.660723505578, 2894.249418577743], "name": 2069036302}, {"position": [9914.689276492083, 6446.199418576271], "name": 4635856470}, {"position": [9991.239276494924, 6488.249418577397], "name": 4635856472}, {"position": [-3529.960723511749, 4772.299418576154], "name": 2310516317}, {"position": [-3623.310723504858, -6598.900581423095], "name": 2869816935}, {"position": [-2764.7107235111434, 4284.699418576565], "name": 3661057640}, {"position": [-2687.4107235101974, 4225.7494185768965], "name": 3661057641}, {"position": [-4359.06072350889, -6680.150581424015], "name": 2869816941}, {"position": [-4522.160723510638, -6682.900581420626], "name": 2869816942}, {"position": [627.7392764886258, -1306.3005814224482], "name": 2587199421}, {"position": [-1213.8607235101517, 5446.4494185779695], "name": 2358476141}, {"position": [-9781.860723506952, 5357.449418578853], "name": 135032438}, {"position": [5521.53927649357, 454.3994185759459], "name": 1393207231}, {"position": [10020.939276493835, -6811.300581421875], "name": 2086862767}, {"position": [-2694.8107235114094, 5381.299418576901], "name": 134985665}, {"position": [-3529.310723507706, 4710.349418576953], "name": 2310516366}, {"position": [-3559.710723507692, 4710.1494185781685], "name": 2310516367}, {"position": [-1957.9107235117021, 5384.64941857697], "name": 134985667}, {"position": [197.43927649074067, -2368.0505814205335], "name": 2568599493}, {"position": [-10575.460723508457, 4867.649418578423], "name": 2292321956}, {"position": [-9586.010723509731, -7537.000581422149], "name": 2080738981}, {"position": [-10536.660723509784, 4867.34941857847], "name": 2292321958}, {"position": [-3528.9607235071685, 4661.049418576368], "name": 2310516404}, {"position": [-3559.260723505986, 4661.049418576368], "name": 2310516405}, {"position": [-7148.710723505757, -3790.250581420906], "name": 1959915190}, {"position": [278.0892764917553, -2329.500581421229], "name": 2568599497}, {"position": [1273.5392764895437, -1304.150581422192], "name": 2587199434}, {"position": [-2662.9607235051367, 376.54941857923063], "name": 135016126}, {"position": [-12622.160723509523, -1268.4005814236343], "name": 2080739007}, {"position": [-2663.2607235086425, 422.34941857799413], "name": 135016129}, {"position": [-13158.510723506823, -2411.4505814232243], "name": 2214670018}, {"position": [-10632.560723507822, -9321.700581423898], "name": 2638686155}, {"position": [-2673.6107235052486, 2055.249418578597], "name": 135016132}, {"position": [-2677.2107235117915, 2614.399418579438], "name": 135016133}, {"position": [-2684.3107235094976, 3733.699418578595], "name": 135016135}, {"position": [-2687.8107235077664, 4284.999418576518], "name": 135016136}, {"position": [-2698.4107235108468, 5945.999418578651], "name": 135016139}, {"position": [-8551.410723505625, -181.60058142058233], "name": 135065293}, {"position": [-9378.160723507279, 3559.4494185779977], "name": 1959915218}, {"position": [-8546.110723507638, -1517.7505814207848], "name": 135065299}, {"position": [-5604.960723509577, 4883.049418577201], "name": 2286663630}, {"position": [-3595.81072351034, 2016.6494185787087], "name": 1808366884}, {"position": [-4433.010723509768, 5429.099418577721], "name": 2069376730}, {"position": [-3528.010723506725, 4554.949418576371], "name": 2310516445}, {"position": [2429.989276492961, 5402.549418576541], "name": 134985680}, {"position": [10342.339276490975, -1333.6005814217344], "name": 134983394}, {"position": [-4252.460723506601, 4888.249418577572], "name": 2069376739}, {"position": [-4489.360723511027, 5325.549418579101], "name": 2069376740}, {"position": [10347.339276492563, -1846.100581420984], "name": 134983397}, {"position": [-12960.160723508807, -10597.10058142116], "name": 134970189}, {"position": [-5070.710723508399, 4950.39941857911], "name": 2069376743}, {"position": [-4258.960723511507, 5867.1994185779395], "name": 2069376744}, {"position": [-792.8607235072604, 4224.849418577037], "name": 2327765628}, {"position": [-5203.660723509529, -3999.650581423708], "name": 1959915242}, {"position": [10356.389276488188, -3129.900581424039], "name": 134983404}, {"position": [-5582.0607235048665, 6002.3994185769425], "name": 2069376750}, {"position": [-5056.660723511186, 4916.449418576718], "name": 2069376751}, {"position": [-5604.960723509577, 4762.399418577701], "name": 2069376752}, {"position": [-5712.360723507004, 4883.049418577201], "name": 2286663635}, {"position": [-3402.9607235055437, -441.8505814207663], "name": 3146411765}, {"position": [-4648.9607235074, -993.0005814240417], "name": 3146411766}, {"position": [-3368.360723506214, -4577.650581421011], "name": 3146411767}, {"position": [-4256.060723506039, 5432.4994185783735], "name": 2069376762}, {"position": [-4140.660723507494, -441.8505814207663], "name": 3146411772}, {"position": [-3754.660723508607, -4642.200581422174], "name": 3146411775}, {"position": [-3773.410723511006, -163.9005814233485], "name": 3146411777}, {"position": [-10565.160723508881, -11084.600581423132], "name": 134967042}, {"position": [-7466.060723508861, -4596.6505814227785], "name": 1959915267}, {"position": [-5581.010723510361, 5861.549418579415], "name": 2069376776}, {"position": [-1958.2607235051341, 5442.849418578533], "name": 2358476142}, {"position": [-10197.760723507088, -174.9005814239979], "name": 1959915274}, {"position": [-5575.160723509498, 5425.299418575946], "name": 2069376779}, {"position": [-4110.860723507414, -4580.700581421126], "name": 3146411788}, {"position": [10279.289276489579, -4970.500581421788], "name": 134983437}, {"position": [-5056.660723511186, 5294.099418577503], "name": 2069376783}, {"position": [10277.889276494534, -5421.950581421697], "name": 134983440}, {"position": [-1287.7107235098606, 5387.999418577038], "name": 2358476144}, {"position": [10224.339276490467, 4459.899418577606], "name": 135073554}, {"position": [-3407.860723505962, 328.4994185790424], "name": 3146411796}, {"position": [-2688.2107235053354, 4343.349418576281], "name": 2310516501}, {"position": [-3742.2107235087765, -4575.550581421339], "name": 3146411798}, {"position": [-3527.16072350745, 4341.7494185789], "name": 2310516505}, {"position": [-4252.160723510201, 4982.749418577015], "name": 2069376794}, {"position": [-3756.01072350662, -715.5005814212245], "name": 3146411803}, {"position": [-6648.7607235075075, -5856.35058142131], "name": 1959915292}, {"position": [-4099.110723508658, 4828.799418579166], "name": 2069376797}, {"position": [-4249.760723510576, 4338.599418577615], "name": 2310516514}, {"position": [-9026.660723506553, -11309.600581423496], "name": 135065381}, {"position": [-3751.9607235054764, -5102.600581423644], "name": 3146411815}, {"position": [-5011.960723507514, 4313.349418577417], "name": 2310516520}, {"position": [-9384.860723507416, -9685.60058142387], "name": 2080739113}, {"position": [-3526.8107235069124, 4281.949418576403], "name": 2310516522}, {"position": [-5652.260723508107, 4762.149418578332], "name": 2069376811}, {"position": [-4838.960723510865, 4277.1494185771535], "name": 2310516524}, {"position": [-5009.660723509058, 4276.549418577247], "name": 2310516525}, {"position": [-5084.160723505704, 4276.299418577878], "name": 2310516526}, {"position": [-4850.860723507822, -79.15058142060616], "name": 3146411825}, {"position": [-4099.910723510902, 4886.39941857727], "name": 2069376818}, {"position": [-3756.01072350662, -4093.4505814220756], "name": 3146411827}, {"position": [-4095.0607235075154, 4279.899418577315], "name": 2069376823}, {"position": [10392.839276491373, -7694.100581421281], "name": 134983481}, {"position": [-5083.860723509304, 4229.649418576287], "name": 2310516538}, {"position": [-6521.960723510745, -5660.150581423551], "name": 1959915324}, {"position": [-1215.260723505196, 5660.149418577731], "name": 2068877118}, {"position": [-4107.210723510945, 5870.899418578546], "name": 2069376831}, {"position": [232.83927649231373, 5668.549418576418], "name": 2068877120}, {"position": [-4388.360723510232, 5320.499418576929], "name": 2069376834}, {"position": [-5568.010723507655, 4227.499418576031], "name": 2310516548}, {"position": [10309.339276489027, -7244.600581422845], "name": 134983493}, {"position": [941.4892764922911, 5669.549418577446], "name": 2068877126}, {"position": [-1959.6607235072838, 5660.3994185771], "name": 2068877128}, {"position": [-6398.910723511619, 5094.049418577384], "name": 1433125516}, {"position": [-5306.760723506442, 5179.349418579449], "name": 2069376844}, {"position": [-4171.06072350748, 4338.299418577662], "name": 2069376845}, {"position": [-3526.6107235116806, 4226.099418577433], "name": 2310516558}, {"position": [-9311.06072350474, 5923.749418577983], "name": 134958927}, {"position": [7531.839276488483, -127.15058142376279], "name": 135016272}, {"position": [-6658.510723511313, -3742.050581422518], "name": 1959915345}, {"position": [10407.789276491996, 448.1994185780991], "name": 134983506}, {"position": [7535.339276493858, -672.6005814208236], "name": 135016275}, {"position": [-5164.210723506812, -3916.2505814225315], "name": 1959915348}, {"position": [10414.839276492672, -118.1005814210323], "name": 134983509}, {"position": [-5421.610723509219, -3985.6005814229434], "name": 1959915350}, {"position": [10418.33927649094, -665.6005814207333], "name": 134983511}, {"position": [10422.339276495051, -1333.6005814217344], "name": 134983512}, {"position": [7544.339276492451, -2320.1005814215137], "name": 135016282}, {"position": [-4104.010723509077, 5320.799418576882], "name": 2069376859}, {"position": [-4993.410723507452, 4714.6994185780495], "name": 2069376860}, {"position": [-4839.210723510234, 4222.79941857795], "name": 2310516573}, {"position": [-9251.310723506378, 4600.749418578687], "name": 2292322142}, {"position": [-4177.3107235059115, 5320.549418577513], "name": 2069376863}, {"position": [-494.8107235094312, 5664.849418579365], "name": 2068877152}, {"position": [-4471.910723509609, 5667.649418576559], "name": 2069376865}, {"position": [1010.6892764909503, 5669.549418577446], "name": 2068877154}, {"position": [-4615.4107235096835, 5725.499418577584], "name": 2069376868}, {"position": [-5083.210723505261, 4123.4994185792575], "name": 2310516581}, {"position": [-4180.810723511286, 5868.74941857829], "name": 2069376873}, {"position": [252.08927649345014, 2352.299418578951], "name": 2086776683}, {"position": [7928.739276493957, -5896.3005814227645], "name": 135016301}, {"position": [-889.7607235098803, 3801.849418579195], "name": 2310516590}, {"position": [7934.389276492482, -6806.100581421504], "name": 135016304}, {"position": [7941.1892764937875, -7719.150581422696], "name": 135016306}, {"position": [8226.839276488818, 3470.8994185770334], "name": 2086776693}, {"position": [7808.139276491488, 454.1494185765771], "name": 2086776694}, {"position": [8954.339276492363, 2924.7994185794823], "name": 2086776696}, {"position": [8957.639276488295, 2378.6994185783783], "name": 2086776697}, {"position": [-5209.5107235103915, 5447.349418577829], "name": 2069376890}, {"position": [-4096.960723508402, 4339.099418576353], "name": 2069376892}, {"position": [-4093.8107235106713, 3787.3994185773086], "name": 2310516605}, {"position": [-4238.960723505159, 3786.7994185774023], "name": 2310516606}, {"position": [-4836.060723505398, 3786.649418579202], "name": 2310516607}, {"position": [-4842.1107235085965, 4334.649418577641], "name": 2069376898}, {"position": [-4174.560723505749, 4886.39941857727], "name": 2069376903}, {"position": [-4110.660723505078, -4644.600581421799], "name": 135090056}, {"position": [-7143.060723507233, 6431.14941857803], "name": 2285539209}, {"position": [-3051.0607235072484, 1509.2994185792463], "name": 2086776714}, {"position": [-3368.1607235109823, -4639.600581423764], "name": 135090059}, {"position": [5442.489276489937, -785.9005814232489], "name": 1942240578}, {"position": [-7756.010723511508, 6428.549418576068], "name": 2285539214}, {"position": [-5180.460723508418, 4817.949418576717], "name": 2069376912}, {"position": [8969.439276491186, 732.2994185763321], "name": 2086776724}, {"position": [7808.039276490319, 729.9494185772915], "name": 2086776725}, {"position": [4363.58927649394, -6852.900581421295], "name": 1937680639}, {"position": [-4345.860723510952, 5804.699418579417], "name": 2069376919}, {"position": [7644.089276489296, 3467.549418576965], "name": 2086776728}, {"position": [-4099.110723508658, 4551.649418576886], "name": 2069376922}, {"position": [1008.5892764948312, 124.94941857710273], "name": 2086776732}, {"position": [-4173.810723507642, 4769.949418577113], "name": 2069376925}, {"position": [-5190.760723507992, 5502.199418579323], "name": 2069376926}, {"position": [7902.039276494577, 1576.4994185794023], "name": 2086776737}, {"position": [8974.739276489174, 153.74941857615454], "name": 2086776739}, {"position": [-4853.110723509246, 668.1494185762915], "name": 2086776740}, {"position": [7530.33927649227, 149.69941857856384], "name": 2086776741}, {"position": [9711.53927649482, 173.04941857787526], "name": 2086776742}, {"position": [-4888.710723506051, 1232.3494185793038], "name": 2086776743}, {"position": [6808.3392764890505, 145.64941857742042], "name": 2086776744}, {"position": [8252.83927649423, 152.7494185786793], "name": 2086776745}, {"position": [-451.11072351033954, -426.9005814236948], "name": 2086776746}, {"position": [-5055.110723510836, 4680.149418579304], "name": 2069376943}, {"position": [-4251.860723506696, 4769.64941857716], "name": 2069376944}, {"position": [6084.739276488449, 143.59941857833292], "name": 2086776754}, {"position": [-12270.16072351006, -7812.550581423494], "name": 2267910068}, {"position": [-1933.8607235113159, 2340.149418579074], "name": 2086776757}, {"position": [9639.389276493659, 740.4494185792032], "name": 2086776758}, {"position": [-3773.6107235062377, 111.84941857678155], "name": 2086776760}, {"position": [-3397.7107235116932, -1260.8005814236378], "name": 135016377}, {"position": [7883.239276495146, 3197.8494185764816], "name": 2086776762}, {"position": [-793.7607235106725, 4291.8994185789925], "name": 2327765663}, {"position": [-458.3107235092143, 702.1994185762992], "name": 2086776765}, {"position": [826.8392764918531, -2394.30058142176], "name": 2568679359}, {"position": [-11185.310723504927, -8035.050581423065], "name": 2267910080}, {"position": [870.8392764944506, -2397.150581423091], "name": 2568679361}, {"position": [-1161.6607235112042, -1256.6005814207415], "name": 135016386}, {"position": [-2680.6107235088916, 3151.449418577812], "name": 2068887959}, {"position": [-445.86072350938366, -1256.3005814207884], "name": 135016388}, {"position": [-12035.710723509397, -7302.800581420854], "name": 2267910085}, {"position": [-12213.360723507094, -7358.800581421576], "name": 2267910086}, {"position": [-3052.8107235099355, 1786.7494185779265], "name": 2086776776}, {"position": [1757.3392764944629, -1248.600581423176], "name": 135016394}, {"position": [-11090.110723507962, -7976.2005814210115], "name": 2267910091}, {"position": [2511.3392764950504, -1246.1005814223824], "name": 135016399}, {"position": [-1264.5107235087494, -2583.5505814235657], "name": 2568624529}, {"position": [-9389.110723510896, -7802.600581420904], "name": 2080739282}, {"position": [3202.3892764883044, -1245.2505814231074], "name": 135016405}, {"position": [6091.639276490923, -7398.500581423661], "name": 1933540181}, {"position": [-8054.510723511044, 4832.549418576804], "name": 1433125540}, {"position": [8954.039276488857, 2685.2494185760634], "name": 2086776800}, {"position": [-11792.960723511214, -7467.1005814224145], "name": 2267910118}, {"position": [-1122.6607235101937, -6347.60058142092], "name": 1916976465}, {"position": [-2675.4607235091044, 2338.149418577018], "name": 2086776808}, {"position": [8247.93927649381, 734.3494185789723], "name": 2086776811}, {"position": [2430.2892764893613, 6256.349418578111], "name": 2069036370}, {"position": [7896.589276491284, 2095.399418578836], "name": 2086776814}, {"position": [-556.6107235068785, -1256.3505814213727], "name": 2586986493}, {"position": [-4144.160723505764, 113.14941857776262], "name": 2086776816}, {"position": [-3777.710723511518, 958.4494185794767], "name": 2086776817}, {"position": [-2623.410723508357, -6354.4005814222255], "name": 1916976467}, {"position": [-12541.910723506078, -7381.65058142215], "name": 2267910132}, {"position": [-1916.210723507561, -432.2505814222666], "name": 2086776826}, {"position": [10411.139276492066, 177.09941857901867], "name": 2086776828}, {"position": [-1194.1607235073093, 2344.1994185766644], "name": 2086776830}, {"position": [-140.51072351151106, -6842.500581420552], "name": 1916976469}, {"position": [-3781.210723509787, 1506.5994185761156], "name": 2086776833}, {"position": [-117.41072351156845, 6460.699418578742], "name": 2355654658}, {"position": [-9311.710723508782, -9685.250581423332], "name": 1959922651}, {"position": [4922.639276493612, -1253.150581423057], "name": 4992692228}, {"position": [-576.7107235072899, 6458.249418578533], "name": 2355654662}, {"position": [9629.639276489854, 2382.749418575969], "name": 2086776839}, {"position": [-1145.0607235090615, 6456.949418577551], "name": 2355654664}, {"position": [-1294.5107235111664, 6455.749418577739], "name": 2355654665}, {"position": [9642.589276488423, 155.79941857879476], "name": 2086776842}, {"position": [9626.189276488618, 2928.8494185770733], "name": 2086776843}, {"position": [-3054.560723505517, 2057.3494185782693], "name": 2086776846}, {"position": [-9280.210723510152, 354.5994185785162], "name": 134959125}, {"position": [6713.339276494424, 449.89941857664917], "name": 135008279}, {"position": [-9280.060723504846, 401.84941857646095], "name": 134959129}, {"position": [-4919.160723510175, 5938.399418578655], "name": 135032858}, {"position": [-1707.96072350754, -1429.8005814232795], "name": 2585936674}, {"position": [-5092.760723506728, 392.8494185778675], "name": 3496300573}, {"position": [-2921.5107235103233, -1543.4005814221052], "name": 2089552574}, {"position": [-9291.510723507201, 2037.2494185778578], "name": 134959135}, {"position": [-4223.860723506334, -442.0005814225192], "name": 3496300576}, {"position": [-4898.0107235081505, 2049.799418578857], "name": 135032865}, {"position": [-9294.3107235115, 2585.699418578002], "name": 134959139}, {"position": [-9295.810723507713, 3148.4494185782805], "name": 134959142}, {"position": [6545.289276495225, 4599.449418577706], "name": 4224850324}, {"position": [2326.0392764896665, -6395.250581423539], "name": 1429423360}, {"position": [-4912.4607235100375, 4276.899418577785], "name": 135032884}, {"position": [6863.839276491035, 5973.399418579106], "name": 135008310}, {"position": [-2620.610723511163, -6849.9005814217635], "name": 1916976479}, {"position": [-3828.06072350661, 5941.499418579355], "name": 2069036387}, {"position": [-575.1107235099084, 6241.649418576855], "name": 2355654743}, {"position": [-1143.7107235110489, 6240.399418576459], "name": 2355654746}, {"position": [-1293.1107235090167, 6239.849418577137], "name": 2355654747}, {"position": [1301.8392764934106, -2378.250581422492], "name": 2587010621}, {"position": [-9302.160723507313, 4318.849418577742], "name": 2292322398}, {"position": [-9042.360723505282, 4316.899418576269], "name": 2292322399}, {"position": [-9250.210723507735, 4316.049418576995], "name": 2292322400}, {"position": [-7804.66072350805, 272.39941857715166], "name": 2080739429}, {"position": [5424.439276488612, -2618.0505814217267], "name": 135047185}, {"position": [3247.0892764919768, -5022.75058142132], "name": 135057523}, {"position": [4061.089276490293, -5023.000581420689], "name": 135057525}, {"position": [5246.789276490916, -5013.15058142282], "name": 135057526}, {"position": [5844.389276489892, -5006.500581423268], "name": 135057528}, {"position": [7329.58927649463, -4992.550581423671], "name": 135057529}, {"position": [-1359.3107235081447, -2696.450581421317], "name": 4719865979}, {"position": [-9250.160723510704, 4262.399418578866], "name": 2292322432}, {"position": [-9249.860723507198, 4207.549418577372], "name": 2292322434}, {"position": [8812.339276488501, -4977.800581421832], "name": 1935184006}, {"position": [8219.189276488236, -4982.0505814217595], "name": 1935184007}, {"position": [815.6392764888665, -2270.300581422191], "name": 2568599575}, {"position": [4532.789276488813, -3331.7505814238757], "name": 1146604909}, {"position": [8815.089276488663, -5432.700581422978], "name": 1935184020}, {"position": [-346.1107235054328, -1580.3505814240282], "name": 2703708309}, {"position": [-9442.910723507226, 4036.899418576212], "name": 2292322456}, {"position": [-555.860723508772, -1581.7005814220408], "name": 2703708313}, {"position": [-2720.5607235103457, -5103.850581424041], "name": 135057562}, {"position": [-350.0607235054076, -2458.2505814230162], "name": 2703708315}, {"position": [-646.4107235117922, -4322.35058142183], "name": 4719853215}, {"position": [-533.9107235116103, -2458.3005814236003], "name": 2703708317}, {"position": [-3322.760723506235, -5102.150581421938], "name": 135057566}, {"position": [8818.689276495206, -5888.600581421599], "name": 1935184031}, {"position": [-8075.310723505425, 6440.249418577792], "name": 2290110624}, {"position": [-8525.860723509028, 6427.299418579224], "name": 2290110625}, {"position": [-8590.610723508973, 6427.299418579224], "name": 2290110626}, {"position": [6823.839276492549, -2685.100581423683], "name": 135047195}, {"position": [-9247.96072350631, 3860.2994185765738], "name": 2292322468}, {"position": [-9915.510723509158, 399.1494185768829], "name": 2139774321}, {"position": [-9314.010723507237, 6424.29941857614], "name": 2290110633}, {"position": [-4118.5607235050265, -5103.000581421213], "name": 135057583}, {"position": [6572.739276492712, 1577.8994185779993], "name": 3639136432}, {"position": [8822.239276490507, -6773.450581423645], "name": 1935184050}, {"position": [8231.689276492205, -6804.550581421154], "name": 1935184051}, {"position": [8232.089276489773, -6841.750581422446], "name": 1935184053}, {"position": [-8075.4607235107305, 6408.949418577948], "name": 2290110648}, {"position": [-8075.510723507761, 6393.449418578001], "name": 2290110651}, {"position": [-6521.160723508501, 5931.499418576181], "name": 2285539516}, {"position": [-487.81072350578825, 4567.749418576739], "name": 2069036405}, {"position": [-2694.460723510872, 5326.349418577792], "name": 2358476150}, {"position": [-115.41072350951254, 6026.899418579034], "name": 2355654855}, {"position": [-8054.110723506369, 6363.549418576753], "name": 2290110664}, {"position": [-8068.310723508886, 6363.549418576753], "name": 2290110665}, {"position": [924.2892764902422, -3155.600581422391], "name": 4615885003}, {"position": [-1142.3107235088992, 6022.94941857906], "name": 2355654861}, {"position": [259.63927649286234, -2827.50058142156], "name": 4615885006}, {"position": [-1291.760723511004, 6022.249418577985], "name": 2355654863}, {"position": [-6431.710723511231, 5868.149418578383], "name": 2285539536}, {"position": [-6520.060723509858, 5867.899418579014], "name": 2285539537}, {"position": [-3756.01072350662, -1262.1005814210662], "name": 3146412242}, {"position": [-7085.110723508592, 5866.199418576912], "name": 2285539540}, {"position": [-7130.910723510908, 5864.899418579484], "name": 2285539542}, {"position": [-1988.1607235063825, -11508.100581423263], "name": 134946751}, {"position": [-7732.960723508597, 4267.449418577485], "name": 2284151925}, {"position": [-6519.56072351112, 5839.199418577578], "name": 2285539560}, {"position": [-4113.6607235117135, -4095.6005814223317], "name": 134975725}, {"position": [-8063.010723510899, 6262.0994185778045], "name": 2290110714}, {"position": [-2622.160723511513, -6596.100581422348], "name": 135090901}, {"position": [6496.839276493915, -4084.1005814229447], "name": 134975753}, {"position": [7927.839276490545, -4073.600581421033], "name": 134975758}, {"position": [8516.33927648976, -4069.6005814240266], "name": 134975760}, {"position": [9116.089276488992, -4065.000581423561], "name": 134975763}, {"position": [106.4892764901515, -1475.750581423796], "name": 2586986542}, {"position": [9666.789276494113, -4061.400581420571], "name": 134975766}, {"position": [-5184.160723509023, 392.649418579083], "name": 2423705885}, {"position": [1769.3392764925875, -4140.2505814218675], "name": 134975775}, {"position": [9724.18927648988, -1329.9005814211284], "name": 2074057102}, {"position": [-11742.960723509554, -10548.400581424034], "name": 2080633147}, {"position": [9734.039276494856, -4178.450581420634], "name": 134975807}, {"position": [9709.439276491594, 424.59941857941885], "name": 134979211}, {"position": [-568.7607235103087, 5388.649418577529], "name": 2355655000}, {"position": [-568.3107235086027, 5330.549418577135], "name": 2355655001}, {"position": [-1137.9107235072183, 5328.849418578585], "name": 2355655002}, {"position": [8824.5892764931, -6815.0505814230655], "name": 1930367327}, {"position": [-7812.460723506831, -3219.400581421894], "name": 2423697761}, {"position": [-1134.4107235089496, 4781.049418578931], "name": 2355655012}, {"position": [-7668.710723507388, -3637.4005814217016], "name": 2423697765}, {"position": [-7468.910723510191, -3900.4505814226322], "name": 2423697768}, {"position": [-10242.760723507161, -9856.600581422015], "name": 2638686268}, {"position": [-1130.9107235106808, 4230.44941857853], "name": 2355655019}, {"position": [-1130.8607235065438, 4219.099418577343], "name": 2355655020}, {"position": [-561.2107235108965, 4209.949418576997], "name": 2355655021}, {"position": [-1284.5607235050238, 4896.64941857626], "name": 2358476437}, {"position": [1617.9392764925637, -5135.250581421502], "name": 1932195902}, {"position": [8515.339276492285, -4582.150581423861], "name": 885855103}, {"position": [-3586.9107235058095, -1828.200581421413], "name": 4719464841}, {"position": [896.2892764898811, -1811.2505814222857], "name": 135074194}, {"position": [-497.5607235095936, 6242.099418578562], "name": 2069036705}, {"position": [144.98927649242432, -1413.6005814222585], "name": 2586986564}, {"position": [8833.78927649403, -7707.9005814226775], "name": 1930367388}, {"position": [7339.33927649133, -6356.600581423067], "name": 135081370}, {"position": [8834.139276494569, -7740.200581423551], "name": 1930367390}, {"position": [6740.839276488941, 2693.4994185765504], "name": 2271725637}, {"position": [-4807.210723505761, 4939.79941857603], "name": 2069393826}, {"position": [8536.53927649134, -7743.900581420604], "name": 1930367395}, {"position": [-5549.460723507593, 5424.999418575993], "name": 2069393829}, {"position": [-5413.360723508731, 5419.949418577375], "name": 2069393833}, {"position": [-7145.410723509826, 5427.399418579171], "name": 2285539755}, {"position": [-4182.610723511005, 6442.399418578048], "name": 2294600111}, {"position": [-4681.1107235100735, 5071.7494185761325], "name": 2069393840}, {"position": [-4827.060723506804, 6439.9994185784235], "name": 2294600113}, {"position": [-7770.060723508721, 5426.599418576927], "name": 2285539766}, {"position": [-6403.610723509701, 5421.799418577677], "name": 2285539768}, {"position": [-4751.760723507914, 5057.549418577168], "name": 2069393851}, {"position": [-4504.71072350922, 4989.9994185764735], "name": 2069393852}, {"position": [-5534.060723505263, 5388.499418579329], "name": 2069393854}, {"position": [-8647.510723506002, 4873.099418578164], "name": 2287972808}, {"position": [-5264.5107235065325, 5419.949418577375], "name": 2069393865}, {"position": [-4260.660723510056, 6227.899418576044], "name": 2294600143}, {"position": [-4827.060723506804, 6226.599418578616], "name": 2294600150}, {"position": [-8646.260723509158, 4763.6494185780975], "name": 2287972826}, {"position": [-8582.560723510824, 4757.199418577329], "name": 2287972832}, {"position": [-7960.560723510924, 4754.499418577751], "name": 2287972835}, {"position": [-9383.460723505266, 4751.199418578267], "name": 2287972838}, {"position": [-9303.860723505863, 4750.899418578314], "name": 2287972840}, {"position": [-9252.21072350979, 4750.699418575977], "name": 2287972844}, {"position": [-8515.560723509452, 4750.349418578991], "name": 2287972846}, {"position": [-9847.110723505637, 4748.349418576936], "name": 2287972856}, {"position": [-1920.8607235086106, 5928.449418576065], "name": 2423670868}, {"position": [-3177.6607235087795, -9043.600581421175], "name": 134943234}, {"position": [-6421.11072350815, 5313.049418578686], "name": 2285539844}, {"position": [-7080.560723508711, 5311.199418578382], "name": 2285539848}, {"position": [-456.3107235071584, 390.39941857765825], "name": 135025165}, {"position": [-456.5607235065272, 423.3994185760537], "name": 135025168}, {"position": [-1430.260723509491, -1893.800581420635], "name": 4719495256}, {"position": [-466.96072350727036, 2063.2994185767475], "name": 135025171}, {"position": [5375.389276494502, 5510.799418576795], "name": 4253708820}, {"position": [-470.51072350967615, 2622.4494185775884], "name": 135025174}, {"position": [5392.339276490076, 5140.849418577176], "name": 4253708823}, {"position": [5333.989276493867, 5410.099418575954], "name": 4253708826}, {"position": [5374.889276488659, 5695.149418578183], "name": 4253708829}, {"position": [5291.089276489913, 5140.09941857907], "name": 4253708832}, {"position": [5334.039276490898, 5333.749418579004], "name": 4253708835}, {"position": [-12358.460723511655, -2165.8005814231274], "name": 2214680668}, {"position": [6089.889276488237, -8200.650581422053], "name": 1930367531}, {"position": [4605.639276491047, 5567.749418577961], "name": 4253708844}, {"position": [-5297.66072350668, -4658.800581420764], "name": 2080625197}, {"position": [-8559.060723506207, 2630.0494185775847], "name": 2282973277}, {"position": [4884.739276491246, 5530.199418576131], "name": 4253708850}, {"position": [-5486.360723509165, -5614.600581420604], "name": 2080625207}, {"position": [-1173.5607235081602, -1374.5005814236322], "name": 2586986591}, {"position": [6769.739276492714, -8251.300581420652], "name": 1930367549}, {"position": [-396.9607235063677, 2622.7494185775413], "name": 135025214}, {"position": [-482.56072350483237, 3741.699418576161], "name": 135025217}, {"position": [8821.3392764942, 4108.399418576881], "name": 135074370}, {"position": [-486.06072351020657, 4293.049418578221], "name": 135025220}, {"position": [-496.6607235061815, 5953.849418578016], "name": 135025223}, {"position": [5375.289276493333, 5410.249418577706], "name": 4253708874}, {"position": [8970.789276489199, 489.99941857630347], "name": 135074379}, {"position": [6134.539276494877, -8285.400581421243], "name": 1930367569}, {"position": [8953.989276491826, 2653.0494185763587], "name": 135074387}, {"position": [-1652.010723510955, -1587.5005814223186], "name": 2585936654}, {"position": [8951.339276492832, 4108.899418579171], "name": 135074390}, {"position": [7257.889276495178, -8289.950581421124], "name": 1930367576}, {"position": [-1694.2607235108653, -1534.6005814222963], "name": 2585936656}, {"position": [-5036.310723511406, -10058.400581421267], "name": 1393209956}, {"position": [-12779.46072350744, -2565.5005814222422], "name": 2214680678}, {"position": [-4028.260723508481, -11391.150581420818], "name": 1393209958}, {"position": [4957.489276492311, -7711.30058142333], "name": 1933540796}, {"position": [4870.589276492865, -1424.2505814223705], "name": 135010407}, {"position": [-4822.610723508092, 5863.749418576703], "name": 2294600300}, {"position": [-7059.110723510286, 1444.7994185786683], "name": 2281976594}, {"position": [-6192.510723508349, -10986.700581423036], "name": 1393209972}, {"position": [8910.339276489765, 5582.399418578632], "name": 135074421}, {"position": [6591.7892764915105, -8373.950581422207], "name": 1930367611}, {"position": [-5234.260723504747, -8573.350581421835], "name": 1393209982}, {"position": [8813.339276493081, 5623.899418576883], "name": 135074431}, {"position": [-6041.1107235083255, -10780.850581422641], "name": 1393209989}, {"position": [-4064.8107235057296, -11330.000581423861], "name": 1393209990}, {"position": [-6556.560723510074, -10927.150581423462], "name": 1393210000}, {"position": [-6099.8607235092095, -11055.350581422374], "name": 1393210002}, {"position": [9136.039276491203, -8446.500581420934], "name": 1930367638}, {"position": [9101.289276493673, -8446.800581420888], "name": 1930367639}, {"position": [-5117.51072350819, -8729.900581421645], "name": 1393210014}, {"position": [-5563.760723511279, -11083.800581420888], "name": 1393210017}, {"position": [-9869.96072350621, -139.70058142120934], "name": 2282656418}, {"position": [-7872.910723506266, 312.19941857685285], "name": 2282033828}, {"position": [8238.789276489912, -7715.800581422627], "name": 1935184551}, {"position": [-8282.26072351157, 309.84941857781223], "name": 2282033834}, {"position": [-5583.010723505311, 6223.099418576794], "name": 3299414701}, {"position": [1022.0392764921371, 4299.299418576652], "name": 2068853422}, {"position": [-6004.610723508108, 5421.199418577771], "name": 3299414703}, {"position": [-7081.0607235074485, 5418.099418577071], "name": 3299414704}, {"position": [-8385.410723505516, 309.3494185790746], "name": 2282033844}, {"position": [-9328.860723506694, 308.54941857683116], "name": 2282033848}, {"position": [-9279.860723509613, 308.39941857863096], "name": 2282033853}, {"position": [1023.3892764901498, 3747.1994185764856], "name": 2068853438}, {"position": [7361.039276489123, -8492.450581421452], "name": 1930367680}, {"position": [1011.3392764949936, 5397.0994185768], "name": 2068853442}, {"position": [-9220.210723505317, 307.8994185763406], "name": 2282033859}, {"position": [9687.189276490926, 3198.199418577019], "name": 134959815}, {"position": [10329.839276494113, 3194.399418578797], "name": 134959818}, {"position": [-3536.3607235083805, 5943.799418577811], "name": 2068853452}, {"position": [7191.289276491375, -8500.400581421985], "name": 1930367693}, {"position": [7390.589276489834, -8502.200581421705], "name": 1930367695}, {"position": [-2622.6607235102506, -6102.1005814225755], "name": 135090896}, {"position": [1016.6892764900126, 4848.499418578456], "name": 2068853459}, {"position": [-8384.26072350984, 277.59941857752324], "name": 2282033877}, {"position": [1006.4892764916067, 396.8994185790109], "name": 135049943}, {"position": [1009.3892764899692, -147.90058142111207], "name": 135049946}, {"position": [9321.389276493619, -4540.100581422735], "name": 2074099157}, {"position": [3883.0892764920577, 5683.349418578842], "name": 2068009746}, {"position": [182.2892764948847, -5339.050581422811], "name": 1932195971}, {"position": [9134.289276488516, -8548.900581423879], "name": 1930367771}, {"position": [3882.6892764944887, 5737.149418578724], "name": 2068009758}, {"position": [9207.239276491919, -8555.650581421049], "name": 1930367775}, {"position": [-3403.5107235084183, 2059.299418576188], "name": 134984482}, {"position": [4604.839276488803, 5682.3494185778145], "name": 2068009772}, {"position": [-9240.510723508067, 2585.949418577371], "name": 2282973320}, {"position": [-8282.010723505096, 63.799418576593325], "name": 2282033972}, {"position": [-7872.210723505191, 62.59941857678086], "name": 2282033975}, {"position": [1727.2392764908773, 3190.94941857756], "name": 134959929}, {"position": [-8185.9107235118245, 62.59941857678086], "name": 2282033978}, {"position": [2450.2392764915726, 3192.0494185762036], "name": 134959932}, {"position": [-6416.6107235053005, 5931.449418579149], "name": 135033661}, {"position": [-7957.060723505549, 62.29941857682775], "name": 2282033983}, {"position": [9103.139276490423, -8621.050581421485], "name": 1930367808}, {"position": [-6417.260723509344, 4880.099418578255], "name": 2285540161}, {"position": [6806.839276492838, 419.8994185777849], "name": 135091010}, {"position": [6818.839276490962, -1730.1005814225334], "name": 135091011}, {"position": [6818.839276490962, -1774.1005814215782], "name": 135091012}, {"position": [-4181.260723505886, 5940.599418579495], "name": 135033670}, {"position": [-3432.7607235056234, 5943.249418578489], "name": 135033673}, {"position": [4601.689276491072, 5964.699418576913], "name": 135033675}, {"position": [-4906.010723509269, 3164.6494185793017], "name": 134959948}, {"position": [-608.2107235059198, -4536.200581423344], "name": 4719850318}, {"position": [-4163.610723509237, 3162.2494185761243], "name": 134959951}, {"position": [-3414.01072351033, 3158.999418577224], "name": 134959954}, {"position": [-8186.2607235052565, 30.69941857702929], "name": 2282034003}, {"position": [-8282.810723507338, 30.399418577076176], "name": 2282034006}, {"position": [-583.5607235056273, -3725.6505814227125], "name": 4719850327}, {"position": [7512.839276493822, 5975.899418576347], "name": 135033689}, {"position": [5581.0892764895925, -2725.1005814221685], "name": 2271725711}, {"position": [3174.689276491449, 3161.849418578555], "name": 134959964}, {"position": [-7085.61072350733, 5931.899418577303], "name": 135033658}, {"position": [8162.339276488239, 5978.399418577141], "name": 135033694}, {"position": [4001.0392764884273, 3170.799418576564], "name": 134959967}, {"position": [8811.839276489764, 5980.899418577934], "name": 135033696}, {"position": [4586.839276491617, 3173.749418579064], "name": 134959970}, {"position": [4656.339276493782, 3174.2494185778014], "name": 134959972}, {"position": [4933.639276494261, 3175.9994185769356], "name": 134959975}, {"position": [5505.73927649367, 3178.6494185794822], "name": 134959978}, {"position": [-5606.060723508222, 942.9994185765622], "name": 134968171}, {"position": [6958.3892764910615, 3203.199418578606], "name": 134959983}, {"position": [-4163.160723507531, 3092.5994185793115], "name": 2311060364}, {"position": [7064.639276492812, 3193.349418577185], "name": 134959986}, {"position": [-4888.160723510282, 941.1994185768435], "name": 134968179}, {"position": [-4149.560723504919, 957.0994185779114], "name": 134968182}, {"position": [7049.339276491651, -7730.200581423929], "name": 1933540841}, {"position": [-3409.660723505681, 959.7994185774894], "name": 134968184}, {"position": [5329.189276494617, -3059.0505814238613], "name": 2271725716}, {"position": [-8029.860723510751, -16.10058142276216], "name": 2282034042}, {"position": [8521.489276489547, -4451.050581423033], "name": 885855100}, {"position": [7590.689276490537, 3193.499418578938], "name": 134959997}, {"position": [8173.939276488795, 3199.6494185762003], "name": 134959999}, {"position": [8226.839276488818, 3199.5994185791687], "name": 134960002}, {"position": [8954.6892764929, 3203.24941857919], "name": 134960003}, {"position": [-460.0107235077644, 970.54941857877], "name": 134968196}, {"position": [9624.539276494204, 3201.449418579472], "name": 134960005}, {"position": [260.8392764926748, 973.1994185777637], "name": 134968198}, {"position": [4292.439276490257, 137.39941857693339], "name": 2080617351}, {"position": [1002.7892764910007, 975.8994185773417], "name": 134968200}, {"position": [5376.239276493778, 288.2494185776352], "name": 2080617354}, {"position": [1739.739276494845, 978.5994185769198], "name": 134968203}, {"position": [6145.439276494358, -5915.2005814233635], "name": 1933603724}, {"position": [6743.339276489734, -7772.750581423793], "name": 1933603725}, {"position": [2459.8392764900723, 981.1994185788819], "name": 134968206}, {"position": [3186.489276494342, 986.1994185769163], "name": 134968207}, {"position": [3997.5392764901585, -412.25058142302373], "name": 2080617362}, {"position": [-6340.160723510735, 5931.949418577887], "name": 135033667}, {"position": [-7078.510723509624, 3161.1994185780645], "name": 134960025}, {"position": [3988.1892764910276, 406.4994185775106], "name": 2080617372}, {"position": [8967.889276490838, 1002.8994185766749], "name": 134968225}, {"position": [6734.339276491141, -6819.350581423578], "name": 134976418}, {"position": [8241.839276493578, 1001.4994185780779], "name": 134968228}, {"position": [6742.539276494597, -7734.950581422595], "name": 134976422}, {"position": [8196.739276492337, 1001.4994185780779], "name": 134968231}, {"position": [-8358.11072350623, -92.80058142380199], "name": 2282034091}, {"position": [4000.2392764932893, -687.5505814214478], "name": 2080617391}, {"position": [-4142.410723510182, -163.7505814215956], "name": 135074736}, {"position": [-0.8107235061061147, -9504.100581423812], "name": 3085530033}, {"position": [6712.339276489843, 967.3994185774859], "name": 134968242}, {"position": [3781.189276494956, 971.8994185767826], "name": 2080617396}, {"position": [3786.4892764929436, 406.0494185793573], "name": 2080617398}, {"position": [5522.6892764892455, 968.8994185772515], "name": 134968247}, {"position": [4598.339276491004, 968.3494185779296], "name": 134968250}, {"position": [1634.7392764899382, -5383.600581421178], "name": 1932195999}, {"position": [3786.7392764923125, 136.34941857887384], "name": 2080617404}, {"position": [3911.489276489988, 967.8994185762235], "name": 134968253}, {"position": [3769.5892764944006, 2637.9494185775343], "name": 2080617406}, {"position": [3986.839276493015, 448.3494185762993], "name": 2080617409}, {"position": [-2659.510723511005, -161.30058142138637], "name": 135074755}, {"position": [-1917.960723510248, -158.60058142180833], "name": 135074757}, {"position": [5276.989276488564, 409.49941857704175], "name": 2080617414}, {"position": [-1178.2107235092099, -155.9005814222303], "name": 135074759}, {"position": [-452.8607235059212, -153.25058142323655], "name": 135074761}, {"position": [4000.289276490321, -137.0005814216313], "name": 2080617418}, {"position": [5337.339276493935, 453.44941857905496], "name": 2080617420}, {"position": [267.989276494518, -150.6505814212744], "name": 135074765}, {"position": [1750.789276492526, -145.20058142153403], "name": 135074767}, {"position": [3894.03927648857, 2638.3994185792403], "name": 2080617424}, {"position": [-8357.71072350866, -140.25058142053126], "name": 2282034129}, {"position": [2471.9392764893655, -142.6005814231246], "name": 135074770}, {"position": [3989.5392764890403, 136.59941857824265], "name": 2080617428}, {"position": [4963.389276490205, 5965.649418577357], "name": 135033678}, {"position": [3197.0392764932853, -139.95058142057815], "name": 135074774}, {"position": [3930.4892764917554, -137.2505814210001], "name": 135074776}, {"position": [7393.889276492871, -8642.650581421662], "name": 134976474}, {"position": [5439.089276492837, -131.80058142125972], "name": 135074779}, {"position": [-8826.510723508818, -142.15058142141856], "name": 2282034140}, {"position": [6086.939276492842, -130.30058142149414], "name": 135074782}, {"position": [6809.839276492368, -130.15058142329394], "name": 135074784}, {"position": [-2305.6107235106538, -4822.7005814212025], "name": 1483977699}, {"position": [-9358.160723508036, -162.1505814206614], "name": 2282034159}, {"position": [-2136.610723511012, -5097.500581420889], "name": 1483977712}, {"position": [6090.839276488679, 5970.399418576022], "name": 135033683}, {"position": [-1321.260723507578, -5133.00058142363], "name": 1483977718}, {"position": [-2488.8107235057078, -5359.700581422544], "name": 1483977719}, {"position": [-3435.2107235093854, 6448.549418578864], "name": 2309493752}, {"position": [-4627.06072350727, -5370.900581421978], "name": 1483977721}, {"position": [10343.839276494293, 1083.3994185794893], "name": 134968314}, {"position": [-737.860723511119, -5438.950581421409], "name": 1483977724}, {"position": [9796.839276489776, -119.9505814213353], "name": 135074813}, {"position": [-580.4107235078959, -5522.500581420786], "name": 1483977727}, {"position": [-872.8107235072002, -5539.00058142176], "name": 1483977728}, {"position": [-435.7107235080093, -5599.300581422995], "name": 1483977730}, {"position": [-871.0607235116186, -5622.550581421137], "name": 1483977732}, {"position": [6214.339276489511, 5970.399418576022], "name": 135033686}, {"position": [-274.26072350777986, -5685.000581422628], "name": 1483977735}, {"position": [-4255.51072351027, 5320.799418576882], "name": 2069376909}, {"position": [-869.3107235089315, -5706.800581421589], "name": 1483977737}, {"position": [-3558.9107235054485, -3568.8505814235327], "name": 1667888138}, {"position": [4033.689276489838, -7057.750581420663], "name": 4958639115}, {"position": [7395.1392764897155, 4568.649418576598], "name": 4224963598}, {"position": [6975.789276488342, 3913.749418579471], "name": 4224963607}, {"position": [-187.81072351004013, -5790.950581420873], "name": 1483977753}, {"position": [7425.339276494469, 4684.949418578554], "name": 4224963615}, {"position": [-8772.460723506014, 2526.5494185759962], "name": 2282973360}, {"position": [-1123.9107235070378, -5854.450581423976], "name": 1483977762}, {"position": [-2627.110723508963, -5857.800581424044], "name": 1483977763}, {"position": [-3312.7607235101664, -5865.4505814210725], "name": 1483977764}, {"position": [5675.439276494388, 414.5494185792131], "name": 2442184705}, {"position": [7630.88927649136, 4494.249418577567], "name": 4224963626}, {"position": [-187.81072351004013, -6093.000581422813], "name": 1483977772}, {"position": [-8985.560723509423, 2526.3494185772115], "name": 2282973362}, {"position": [-3544.710723510036, -3699.2505814232854], "name": 1667888175}, {"position": [-3381.160723506582, -3620.200581423205], "name": 1667888180}, {"position": [-8546.810723508714, 950.9994185776804], "name": 134968373}, {"position": [-7184.810723508406, -214.85058142189928], "name": 2282034231}, {"position": [-3483.8107235088955, -3711.4505814237473], "name": 1667888186}, {"position": [9701.589276488676, 1403.7994185791547], "name": 2074050058}, {"position": [2577.839276490579, -6488.750581421954], "name": 1962156896}, {"position": [6868.589276493253, 4998.399418578714], "name": 4224963657}, {"position": [-3316.8607235083414, -5616.400581423875], "name": 134968405}, {"position": [-2631.660723508844, -5608.800581423879], "name": 134968407}, {"position": [7045.539276489876, 3913.6994185788863], "name": 4224963674}, {"position": [-901.9107235062052, -5602.300581422525], "name": 134968413}, {"position": [3969.9892764915035, -6890.950581421862], "name": 1483977825}, {"position": [6606.789276489167, 4324.699418578603], "name": 4224963683}, {"position": [6151.289276495219, 4106.099418578424], "name": 4224963684}, {"position": [7215.539276494099, 4732.149418579467], "name": 4224963686}, {"position": [6489.089276492166, 4324.79941857622], "name": 4224963689}, {"position": [6994.039276492003, 4191.2994185793195], "name": 4224963690}, {"position": [7113.389276490523, 3913.2994185777648], "name": 4224963692}, {"position": [7771.489276493071, 4366.599418577976], "name": 4224963696}, {"position": [-3533.0607235053435, 328.0994185779207], "name": 4719408247}, {"position": [34.03927649259231, -5424.500581423075], "name": 1932196031}, {"position": [5358.889276493528, -2458.2005814224317], "name": 1962177662}, {"position": [5267.889276488802, -2449.300581421454], "name": 1962177664}, {"position": [5265.339276490977, -2594.500581423631], "name": 1962177665}, {"position": [1735.4892764913643, -5035.750581424026], "name": 1933539526}, {"position": [1643.289276493931, -5467.350581422892], "name": 1932196039}, {"position": [-2233.010723507789, -4181.700581423087], "name": 3278420168}, {"position": [484.2892764926887, -8092.700581421752], "name": 2140986963}, {"position": [-3432.310723511023, 5872.349418577727], "name": 2309494000}, {"position": [-2042.9607235072922, -4367.70058142244], "name": 3278420174}, {"position": [-2072.510723508003, -4400.550581422635], "name": 3278420176}, {"position": [-2666.6607235057427, 962.4994185770674], "name": 134968188}, {"position": [-3535.610723510274, 5872.599418577096], "name": 2309493997}, {"position": [-4156.560723508563, 2059.349418576772], "name": 135034096}, {"position": [-3829.5607235099283, 5872.099418578358], "name": 2309494003}, {"position": [-4167.210723508674, 3729.09941857813], "name": 135034101}, {"position": [-4170.710723506943, 4279.5994185773625], "name": 135034104}, {"position": [-1925.1107235049858, 965.2494185772298], "name": 134968191}, {"position": [825.4892764938404, -2695.650581422626], "name": 2568679357}, {"position": [-8985.410723511222, 2505.349418576941], "name": 2282973399}, {"position": [-1185.360723511053, 967.9494185768078], "name": 134968194}, {"position": [-6293.610723510312, 4760.149418576276], "name": 2285540227}, {"position": [-7776.710723511826, 6111.349418578271], "name": 1433125504}, {"position": [-7806.160723511368, -365.5505814208482], "name": 2282034459}, {"position": [-6429.460723509806, 4759.199418579385], "name": 2285540229}, {"position": [-4157.2107235055, 2160.799418579273], "name": 2003096864}, {"position": [-7675.510723508694, -369.00058142208536], "name": 2282034473}, {"position": [-8526.060723511364, 6487.299418576953], "name": 2290110623}, {"position": [-7186.310723511724, -370.50058142185094], "name": 2282034477}, {"position": [-2163.510723505624, -1817.9005814218385], "name": 2585900335}, {"position": [4662.939276492751, 450.0494185784021], "name": 135107888}, {"position": [-3345.9107235103147, 6448.849418578817], "name": 2312746290}, {"position": [-3342.4107235049405, 5872.349418577727], "name": 2312746297}, {"position": [-1445.5607235106527, -1894.4505814211254], "name": 2585900350}, {"position": [5641.139276491458, 3222.7994185767275], "name": 4224980287}, {"position": [-1702.3607235060467, -1890.1005814235816], "name": 2585900353}, {"position": [5641.03927649029, 3178.9494185794356], "name": 4224980290}, {"position": [-3340.860723511696, 5654.649418577406], "name": 2312746308}, {"position": [-2114.960723510251, -1817.9005814218385], "name": 2585900359}, {"position": [-2105.61072351112, -2376.2005814234044], "name": 2585900362}, {"position": [5642.189276493071, 3480.2494185761643], "name": 4224980299}, {"position": [-2113.7107235063013, -1893.0005814219442], "name": 2585900364}, {"position": [-7076.210723511167, 4268.749418578465], "name": 135050582}, {"position": [-7084.160723508148, 6493.0494185766465], "name": 135050585}, {"position": [-2113.0607235093635, -1931.5005814206643], "name": 2585900379}, {"position": [-2642.6607235094934, -1935.5505814218077], "name": 2585900382}, {"position": [6824.8392764900245, -2865.6005814227115], "name": 135047169}, {"position": [2837.4892764944093, -4638.500581421567], "name": 2080585062}, {"position": [-2456.9607235065405, -1671.7005814221864], "name": 2585900397}, {"position": [-2407.310723505418, -1757.4005814218197], "name": 2585900402}, {"position": [9578.789276488918, 6473.149418578572], "name": 4274705785}, {"position": [7544.43927649362, -3086.4505814207632], "name": 2080585085}, {"position": [-8550.060723507613, -482.6505814214954], "name": 2282034558}, {"position": [3663.3892764896814, -4567.450581422605], "name": 2080585087}, {"position": [-5583.860723511691, 6437.249418578262], "name": 2286663047}, {"position": [-2373.8107235047323, -1546.1005814216833], "name": 2585900424}, {"position": [-5662.560723507681, 6436.549418577187], "name": 2286663049}, {"position": [-5720.860723506859, 6436.499418576603], "name": 2286663050}, {"position": [2917.1392764908433, -4562.000581422864], "name": 2080585099}, {"position": [-2013.0107235090122, -1357.1005814227988], "name": 2585900428}, {"position": [-6421.410723511655, 6434.949418576252], "name": 2286663053}, {"position": [-6306.260723505375, 6434.799418578052], "name": 2286663055}, {"position": [-6348.460723508253, 6434.749418577468], "name": 2286663056}, {"position": [-3339.4107235054094, 5436.449418578349], "name": 2312746385}, {"position": [-3338.71072351144, 5322.999418577723], "name": 2312746386}, {"position": [-2397.9107235092556, -1644.3005814217315], "name": 2585900437}, {"position": [3786.6892764881754, 446.1994185760432], "name": 2080617369}, {"position": [-7726.060723506123, -3810.400581421902], "name": 2423695599}, {"position": [-7182.460723505812, -558.0005814209699], "name": 2282034588}, {"position": [6082.539276491161, 411.59941857671356], "name": 135108005}, {"position": [-3429.5107235067235, 5436.449418578349], "name": 2309494184}, {"position": [-3532.710723504806, 5436.2494185760115], "name": 2309494186}, {"position": [-3602.210723506971, 5436.049418577227], "name": 2309494187}, {"position": [-3687.1107235114664, 5435.849418578442], "name": 2309494189}, {"position": [-3830.910723507941, 5435.499418577905], "name": 2309494191}, {"position": [-6004.010723508201, 5371.499418576064], "name": 2068973811}, {"position": [-3602.1607235099395, 5378.6994185784915], "name": 2309494197}, {"position": [-3688.1107235089416, 5378.349418577955], "name": 2309494198}, {"position": [-3532.2107235060685, 5378.999418578445], "name": 3661788599}, {"position": [952.6392764911407, 4298.299418579177], "name": 134985972}, {"position": [10099.78927649513, 6452.899418576408], "name": 4635856458}, {"position": [-2812.7107235107474, 6448.449418577695], "name": 2316883391}, {"position": [-2776.260723507562, 6448.249418578911], "name": 2316883392}, {"position": [-3428.8107235056486, 5323.099418578891], "name": 2309494209}, {"position": [-3531.710723507331, 5322.749418578354], "name": 2309494210}, {"position": [-3830.260723511003, 5321.349418576205], "name": 2309494214}, {"position": [-3337.360723506322, 5104.89941857628], "name": 2312746444}, {"position": [527.8392764935802, -11223.300581423957], "name": 3688816205}, {"position": [2838.4892764918845, -4515.500581423026], "name": 2080585171}, {"position": [9116.639276491867, -3187.400581420974], "name": 135022841}, {"position": [3776.2392764904007, 2078.749418576109], "name": 2080617380}, {"position": [1552.1892764951417, -5721.800581422798], "name": 1932196090}, {"position": [-2812.060723506704, 6336.4994185768355], "name": 2316883425}, {"position": [-2556.6107235093227, -5608.500581423925], "name": 4719457762}, {"position": [7004.089276492209, 4141.14941857946], "name": 4224849380}, {"position": [2759.4392764882514, -4589.300581422151], "name": 2080585189}, {"position": [-8733.010723510404, -774.0505814233245], "name": 2282034663}, {"position": [7201.339276491581, 4126.899418576358], "name": 4224849385}, {"position": [-9218.4107235056, -776.5505814205653], "name": 2282034667}, {"position": [5551.189276488344, -6836.450581420905], "name": 1937680637}, {"position": [-9218.660723504967, -824.5005814231376], "name": 2282034675}, {"position": [-2774.110723507306, 6232.649418578262], "name": 2316883445}, {"position": [-3344.6607235063652, 6231.299418576697], "name": 2316883446}, {"position": [-3537.0607235094553, 6230.599418579175], "name": 2316883447}, {"position": [852.3892764884522, -5757.250581421403], "name": 1932196095}, {"position": [9937.439276491488, 6257.499418577339], "name": 4274705916}, {"position": [-2699.660723507691, 6190.149418578983], "name": 2316883457}, {"position": [4663.439276491488, 408.7494185789353], "name": 134936066}, {"position": [5516.9892764936885, 1567.899418578378], "name": 134936074}, {"position": [-3343.360723505384, 6113.049418576821], "name": 2316883474}, {"position": [-1859.4607235087324, -1769.6505814228658], "name": 2585900564}, {"position": [-3433.5107235108353, 6112.849418578036], "name": 2316883477}, {"position": [-2698.8607235054474, 6083.299418577326], "name": 2316883478}, {"position": [-2773.860723507937, 6083.099418578541], "name": 2316883479}, {"position": [7510.5892764923965, 6448.349418576527], "name": 4274705944}, {"position": [-4923.260723508349, 6225.499418576419], "name": 2068973828}, {"position": [-8231.510723511803, -1090.8005814229682], "name": 2282034716}, {"position": [-8339.660723507335, -1091.3505814222901], "name": 2282034720}, {"position": [2449.439276489329, 3152.6994185782087], "name": 134960048}, {"position": [-7810.010723510175, -1108.4505814231704], "name": 2282034724}, {"position": [5277.789276490807, -7321.650581420869], "name": 135075366}, {"position": [9745.289276494874, 6478.44941857656], "name": 4274705959}, {"position": [6090.289276492911, -7288.900581421842], "name": 135075368}, {"position": [-2697.9107235050037, 6015.549418577848], "name": 2316883499}, {"position": [-2774.4107235108117, 6015.249418577895], "name": 2316883501}, {"position": [-8231.410723510635, -1212.650581422281], "name": 2282034736}, {"position": [-3342.7107235084463, 6014.449418579205], "name": 2316883507}, {"position": [-3433.4107235096667, 6014.449418579205], "name": 2316883508}, {"position": [8160.08927649392, 6451.399418576642], "name": 4274705974}, {"position": [982.2892764930202, -5812.400581422849], "name": 1932196105}, {"position": [-3336.460723510015, 4889.149418577432], "name": 2312746552}, {"position": [-2775.660723507656, 5945.899418577483], "name": 2316883513}, {"position": [-1848.6607235104202, -1775.800581423681], "name": 2585900602}, {"position": [-2697.9607235091407, 5874.999418576721], "name": 2316883515}, {"position": [-2772.410723508756, 5874.899418579105], "name": 2316883516}, {"position": [-1701.1107235092027, -1767.6505814208099], "name": 2585900605}, {"position": [-1826.6607235091215, -1769.250581421744], "name": 2585900608}, {"position": [1276.739276491412, -4329.5505814207045], "name": 2587024992}, {"position": [-1922.8607235106665, -1740.1505814227392], "name": 2585900611}, {"position": [-2040.1607235100983, -1738.7505814205895], "name": 2585900614}, {"position": [-2013.4607235107183, -1445.9005814231318], "name": 2585900617}, {"position": [-2094.960723511008, -1445.9005814231318], "name": 2585900619}, {"position": [9696.03927649132, 5474.999418577653], "name": 2062743117}, {"position": [-10330.160723505343, -7845.800581421258], "name": 2267911758}, {"position": [196.93927649200305, -11501.750581423665], "name": 135099983}, {"position": [502.33927649401267, -8223.900581423748], "name": 2080560724}, {"position": [-2056.6107235069353, -1445.9005814231318], "name": 2585900629}, {"position": [-9387.010723507672, -8267.500581421671], "name": 2267911766}, {"position": [526.3392764902619, -8175.400581421854], "name": 2080560729}, {"position": [-7808.810723510362, -3230.500581423712], "name": 3357236935}, {"position": [1029.689276492718, -2753.8005814236044], "name": 2568599824}, {"position": [-2013.260723508381, -1405.8005814234775], "name": 2585900643}, {"position": [9562.239276490913, 5849.949418578859], "name": 2140984932}, {"position": [8173.439276490058, -10403.950581423516], "name": 2080560741}, {"position": [9586.739276493006, 5835.349418578772], "name": 2140984934}, {"position": [9563.539276491894, 5977.099418576159], "name": 2140984935}, {"position": [9549.789276491083, 6004.4994185766145], "name": 2140984936}, {"position": [-1918.1607235054798, -1312.4505814232634], "name": 2585900649}, {"position": [9563.639276493064, 5999.349418576827], "name": 2140984938}, {"position": [9990.339276491512, 3194.749418579335], "name": 2062743147}, {"position": [9757.989276494072, 5938.499418576271], "name": 2140984940}, {"position": [9615.389276490305, 5843.999418576828], "name": 2140984941}, {"position": [9763.339276489092, 6010.499418579229], "name": 2140984943}, {"position": [9709.539276492762, 6038.1494185790525], "name": 2140984944}, {"position": [9562.539276494419, 5901.099418576195], "name": 2140984945}, {"position": [-1918.0107235072796, -1321.0505814207352], "name": 2585900658}, {"position": [9526.139276488266, 6021.049418578173], "name": 2140984947}, {"position": [9615.139276490936, 6012.99941857647], "name": 2140984948}, {"position": [-1911.4607235053427, -1355.5505814224489], "name": 2585900661}, {"position": [-1792.2607235050236, -1319.600581421554], "name": 2585900664}, {"position": [10004.689276492229, 500.0994185770935], "name": 2062743161}, {"position": [-1169.0607235053108, -1929.6005814233297], "name": 2568599376}, {"position": [8123.189276489029, -10248.550581422933], "name": 2080560765}, {"position": [-1792.1107235068234, -1311.9005814239415], "name": 2585900670}, {"position": [-2661.760723505324, 189.89941857938675], "name": 2086776768}, {"position": [-1832.3107235076463, -1446.3005814207008], "name": 2585900673}, {"position": [-321.91072350684635, -8020.800581423515], "name": 2080560771}, {"position": [7043.689276493125, -6815.450581420635], "name": 1933539606}, {"position": [9989.239276492866, 4109.749418578445], "name": 2062743178}, {"position": [-1917.510723508542, -1355.6505814236175], "name": 2585900687}, {"position": [-480.8607235062823, 3469.8994185760057], "name": 2069036654}, {"position": [9616.839276489485, 6143.3494185791915], "name": 134944407}, {"position": [-1863.7107235051076, 6237.999418576834], "name": 2354509465}, {"position": [-4103.760723509708, 6442.649418577417], "name": 2293562991}, {"position": [346.8892764928455, -8180.80058142101], "name": 2080560796}, {"position": [-964.8107235094017, -7977.500581421992], "name": 2080560800}, {"position": [-2771.4107235112806, 5657.949418576891], "name": 2316883619}, {"position": [-2532.7107235071367, -10615.350581421268], "name": 135018149}, {"position": [-2695.1607235048414, 5439.199418578511], "name": 2316883622}, {"position": [-2768.7607235051814, 5438.849418577974], "name": 2316883623}, {"position": [-2768.460723508781, 5325.79941857847], "name": 2316883624}, {"position": [7044.889276492939, -6855.900581420827], "name": 1933539612}, {"position": [922.3892764893549, 1523.7494185775802], "name": 2080617415}, {"position": [9648.239276494052, 4565.5494185794505], "name": 2062743212}, {"position": [-2765.5107235062815, 4891.249418577104], "name": 2316883630}, {"position": [-2766.2107235073563, 4833.649418579], "name": 2316883631}, {"position": [-2766.8607235113996, 4775.0994185769005], "name": 2316883632}, {"position": [-2765.160723505744, 4559.849418576789], "name": 2316883634}, {"position": [-2764.560723505838, 4344.399418577894], "name": 2316883636}, {"position": [-2764.8107235052066, 4226.1994185786025], "name": 2316883637}, {"position": [9937.389276494458, 6209.29941857895], "name": 4274706104}, {"position": [-2760.060723510094, 3787.099418577355], "name": 2316883642}, {"position": [-2759.2107235108188, 3727.2994185784114], "name": 2316883643}, {"position": [-3334.760723511465, 4555.099418578124], "name": 2312746687}, {"position": [10002.689276490173, 1083.9494185788112], "name": 2062743232}, {"position": [-2754.4607235086005, 2613.899418577148], "name": 2316883652}, {"position": [9679.589276494482, 4351.3494185774], "name": 2062743237}, {"position": [-1862.5107235052951, 6019.499418577823], "name": 2354509516}, {"position": [6861.13927649501, 6446.349418578024], "name": 4274706127}, {"position": [708.8892764883781, -2389.2005814225568], "name": 2568679360}, {"position": [8809.139276493737, 6453.449418579283], "name": 4274706131}, {"position": [6211.639276493486, 6444.299418578936], "name": 4274706132}, {"position": [-1287.3607235093232, 5332.199418578653], "name": 2354509530}, {"position": [-3507.810723505145, 2119.4494185792223], "name": 4242275962}, {"position": [-3058.560723509629, -3966.050581421854], "name": 1667872478}, {"position": [-1284.2107235115918, 4839.049418578156], "name": 2354509538}, {"position": [-1856.0107235074952, 4778.399418576384], "name": 2354509541}, {"position": [1440.289276494866, -6248.450581423981], "name": 1424938727}, {"position": [-1853.0607235049956, 4346.649418579318], "name": 2354509548}, {"position": [-2825.7607235104842, -3944.900581423383], "name": 1667872493}, {"position": [-1279.760723505774, 4137.2994185771], "name": 2354509550}, {"position": [4066.4392764924173, -6793.20058142352], "name": 1424938738}, {"position": [-5656.460723507451, 5423.949418577933], "name": 2286663412}, {"position": [-5713.710723505017, 5423.149418579243], "name": 2286663414}, {"position": [7324.839276492412, -3621.6005814218024], "name": 135043369}, {"position": [-6324.810723505436, 5420.299418577912], "name": 2286663417}, {"position": [-5715.410723510672, 5371.649418577817], "name": 2286663418}, {"position": [-5577.91072350966, 5316.399418578754], "name": 2286663419}, {"position": [-5714.060723505554, 5315.54941857948], "name": 2286663420}, {"position": [-6004.810723510445, 5313.749418576208], "name": 2286663422}, {"position": [-6336.5607235112975, 5312.749418578733], "name": 2286663425}, {"position": [2698.8892764947536, -7428.600581423694], "name": 1424938754}, {"position": [4663.839276489057, 489.8994185786876], "name": 2080617430}, {"position": [1172.8892764892862, -8522.950581422607], "name": 1424938773}, {"position": [2460.539276491147, -8536.850581421619], "name": 1424938774}, {"position": [-3333.660723505716, 4340.749418577871], "name": 2312746775}, {"position": [-3333.410723506347, 4225.7494185768965], "name": 2312746776}, {"position": [4927.239276490525, -8665.300581423451], "name": 1424938778}, {"position": [-3330.8107235114903, 3760.3994185779757], "name": 2312746782}, {"position": [-3426.0607235054863, 4888.849418577479], "name": 2309494559}, {"position": [-3530.310723505181, 4888.449418576357], "name": 2309494563}, {"position": [5846.539276490148, -6909.600581423092], "name": 1933539633}, {"position": [-1174.5107235086039, -1256.950581421279], "name": 2568599337}, {"position": [6199.639276488256, 4106.099418578424], "name": 4224843399}, {"position": [-1165.4107235088418, -2376.1505814228203], "name": 2568599340}, {"position": [277.9392764935551, -2368.0505814205335], "name": 2568599341}, {"position": [-499.9107235050815, -2372.40058142163], "name": 2568599344}, {"position": [5216.239276492729, 1201.8994185787335], "name": 4719433523}, {"position": [-1826.8607235114587, 2617.4994185765854], "name": 2080617438}, {"position": [6284.139276495182, 1949.3994185779684], "name": 1962186550}, {"position": [6366.58927648881, 2406.149418579417], "name": 1962186551}, {"position": [8314.239276494107, -10272.900581423271], "name": 1424938809}, {"position": [8263.689276489571, -10321.150581422246], "name": 1424938810}, {"position": [-7959.060723507605, 5366.199418578077], "name": 134985532}, {"position": [-7770.4607235062895, 5365.599418578171], "name": 134985535}, {"position": [-649.1107235078175, -3879.1505814224083], "name": 4719884098}, {"position": [-278.8607235117979, 4900.299418576282], "name": 2358476427}, {"position": [-7080.560723508711, 5371.29941857728], "name": 134985543}, {"position": [-6406.110723510494, 5370.999418577327], "name": 134985546}, {"position": [-1138.3107235047873, -1929.4005814209925], "name": 2568599372}, {"position": [5085.039276494285, -10478.800581420699], "name": 1424938829}, {"position": [-6348.460723508253, 5371.849418576602], "name": 134985550}, {"position": [8650.339276492503, -10526.650581422104], "name": 1424938831}, {"position": [-5656.16072351105, 5371.6994185784015], "name": 134985552}, {"position": [-1081.9607235106332, -2375.6505814205298], "name": 2568599384}, {"position": [6154.68927649232, 2193.9994185764535], "name": 1962186585}, {"position": [6943.9392764891745, 2197.5494185788593], "name": 1962186595}, {"position": [-2828.9107235082156, -8932.250581423774], "name": 134930762}, {"position": [5246.889276492084, -6877.8505814215405], "name": 1932196246}, {"position": [7041.2892764935, 2216.399418578874], "name": 1962186600}, {"position": [-2416.960723508055, 5947.099418577295], "name": 2352260072}, {"position": [2229.4892764946894, -1304.400581421561], "name": 4720007030}, {"position": [2321.189276493385, -1304.400581421561], "name": 4720007031}, {"position": [2320.6392764905104, -1246.6505814217044], "name": 4720007032}, {"position": [1006.2892764892695, 428.89941857637837], "name": 135051131}, {"position": [919.7392764903611, 2068.3494185789186], "name": 135051134}, {"position": [-3404.710723508231, -164.0005814209644], "name": 135074738}, {"position": [9621.289276488198, 5426.549418576343], "name": 134985601}, {"position": [1731.489276494358, -4477.850581423581], "name": 3733365739}, {"position": [-8648.510723510582, 5085.399418579328], "name": 2291234701}, {"position": [-8863.160723507235, 5083.849418578979], "name": 2291234704}, {"position": [-1860.6107235115132, 4894.549418576588], "name": 2358476440}, {"position": [-1219.9607235103826, 6456.29941857706], "name": 2354509379}, {"position": [-4644.110723511119, 5065.549418578285], "name": 2068973892}, {"position": [-690.4607235114213, -1926.4005814214613], "name": 2568599452}, {"position": [-4458.360723511134, 3658.349418579121], "name": 2309494685}, {"position": [-387.3107235108364, -2371.750581421139], "name": 2568599455}, {"position": [9598.539276488793, -9543.150581421854], "name": 1999574944}, {"position": [9597.689276489518, -9513.750581422897], "name": 1999574945}, {"position": [9656.739276493909, -8618.050581421954], "name": 1999574946}, {"position": [9761.239276492972, -7659.400581420783], "name": 1999574947}, {"position": [3262.58927648837, -4771.100581422161], "name": 1295456170}, {"position": [1743.2392764931137, 431.3994185771719], "name": 134990151}, {"position": [-1930.3607235059417, 1790.8494185761015], "name": 2086776770}, {"position": [-1135.160723507056, 4897.1994185791345], "name": 2358476445}, {"position": [-6006.460723504859, 5933.399418577068], "name": 2068973896}, {"position": [4473.78927648856, -3668.200581422809], "name": 1295456178}, {"position": [-2411.010723506024, -5099.150581422407], "name": 1483977715}, {"position": [5840.6892764892855, -4057.500581421181], "name": 1295456181}, {"position": [-11238.06072350675, 613.2994185783502], "name": 2293202889}, {"position": [-13168.910723507564, -3951.5505814229355], "name": 2267903931}, {"position": [-4177.710723510586, 5377.449418578095], "name": 134985660}, {"position": [1723.3392764950395, -4183.100581421684], "name": 1932195773}, {"position": [-3429.160723506186, 5379.449418576598], "name": 134985662}, {"position": [202.68927649169655, -1920.0005814212773], "name": 2568599489}, {"position": [1484.139276492158, -6176.350581423407], "name": 1277679555}, {"position": [-1213.5107235096143, 5388.349418577576], "name": 134985669}, {"position": [7880.989276493721, -4073.9505814215704], "name": 1295456198}, {"position": [197.43927649074067, -2327.450581422141], "name": 2568599495}, {"position": [-493.0607235067441, 5388.599418576945], "name": 134985673}, {"position": [943.6392764925472, 5396.899418578016], "name": 134985675}, {"position": [9763.839276494935, -7243.600581421816], "name": 134979234}, {"position": [7327.889276488975, -4043.200581421047], "name": 1295456206}, {"position": [-5653.260723505582, 4883.049418577201], "name": 2286663632}, {"position": [-3319.760723506704, -5365.050581421116], "name": 1483977720}, {"position": [-4041.910723508124, -2561.0005814229453], "name": 2425001938}, {"position": [-3934.460723506561, -2589.95058142375], "name": 2425001939}, {"position": [3159.989276490194, 5403.399418579369], "name": 134985684}, {"position": [-3956.8607235054287, -2617.4005814212364], "name": 2425001941}, {"position": [3885.3392764934824, 5405.89941857661], "name": 134985687}, {"position": [4606.789276493828, 5407.899418578665], "name": 134985689}, {"position": [-6334.560723509241, 4881.549418577435], "name": 2286663642}, {"position": [4945.33927648888, 5408.89941857614], "name": 134985691}, {"position": [-5711.910723505298, 4823.499418577626], "name": 2286663645}, {"position": [5503.489276492246, 5410.899418578197], "name": 134985694}, {"position": [6094.3392764940545, 5413.399418578991], "name": 134985696}, {"position": [8250.839276492172, 455.8994185792642], "name": 135100487}, {"position": [-42.06072350854129, -2058.750581422686], "name": 2568599522}, {"position": [6866.339276491828, 5416.399418578521], "name": 134985699}, {"position": [7515.839276493352, 5418.899418579314], "name": 134985700}, {"position": [-9027.060723511226, -11354.000581423663], "name": 2080708581}, {"position": [8165.339276494877, 5421.899418578846], "name": 134985702}, {"position": [-5711.5107235077285, 4762.299418576532], "name": 2286663657}, {"position": [8732.239276490362, 5421.849418578262], "name": 134985708}, {"position": [-874.4107235116871, -5460.300581422217], "name": 1483977725}, {"position": [6821.839276490493, -2323.100581421045], "name": 135085736}, {"position": [-226.41072350637614, -1922.9505814237768], "name": 2568599540}, {"position": [4657.739276488826, -5933.950581422209], "name": 135010293}, {"position": [-209.06072350612703, -2211.4005814231064], "name": 2568599542}, {"position": [4654.689276492263, -6848.550581423751], "name": 135010295}, {"position": [4642.389276490632, -7254.2505814219285], "name": 135010301}, {"position": [432.1392764907728, -2293.9505814214554], "name": 2568599550}, {"position": [9725.289276488526, -1395.5505814209346], "name": 2074057062}, {"position": [-4103.760723509708, 6445.799418578701], "name": 2309493760}, {"position": [-9378.06072350611, -11325.600581422179], "name": 2080708615}, {"position": [4939.189276491617, -5014.750581423755], "name": 1932195849}, {"position": [1721.9392764928898, 4303.099418578427], "name": 134990167}, {"position": [707.0892764886594, -2006.7005814219385], "name": 2568599572}, {"position": [-5843.410723507248, -1595.9005814210059], "name": 2960627735}, {"position": [886.78927649255, -2132.5505814218104], "name": 2568599581}, {"position": [869.3392764911323, -2149.800581420891], "name": 2568599584}, {"position": [4426.139276489494, -3314.300581422458], "name": 1277679653}, {"position": [-3539.560723510249, 6448.399418577111], "name": 2309493756}, {"position": [3922.539276494774, -1736.0005814239798], "name": 135084837}, {"position": [882.7392764914066, -2410.6505814209813], "name": 2568599607}, {"position": [2234.489276489171, -1714.9505814231247], "name": 4719999032}, {"position": [-7840.060723509623, -180.8505814224759], "name": 2282034186}, {"position": [8224.33927649513, 4106.399418578377], "name": 135100478}, {"position": [495.1392764951379, -2398.000581422366], "name": 2568599623}, {"position": [505.93927649345005, -2397.800581423581], "name": 2568599627}, {"position": [-4138.910723504807, -716.9005814233742], "name": 135043151}, {"position": [-3402.8107235073435, -716.1505814217151], "name": 135043153}, {"position": [-1174.710723510941, -706.1005814215093], "name": 135043161}, {"position": [-12456.210723506445, -1214.2505814232152], "name": 2214680666}, {"position": [-12460.510723506957, -2165.0505814214685], "name": 2214680667}, {"position": [-449.36072350765244, -703.4505814225156], "name": 135043164}, {"position": [-12565.760723511232, -2185.350581420664], "name": 2214680669}, {"position": [-12673.16072350866, -2226.000581423193], "name": 2214680670}, {"position": [-12780.010723510315, -2266.450581423385], "name": 2214680671}, {"position": [-12883.210723508399, -2305.5505814220114], "name": 2214680672}, {"position": [-4726.410723506547, -1265.650581423472], "name": 2960622608}, {"position": [-13091.76072350482, -2385.800581421904], "name": 2214680674}, {"position": [-12988.910723507273, -2565.2505814228734], "name": 2214680676}, {"position": [-12884.460723505243, -2565.3505814240416], "name": 2214680677}, {"position": [612.2392764922324, -2272.150581422494], "name": 2568599654}, {"position": [-12672.110723507047, -2565.650581423995], "name": 2214680679}, {"position": [-12568.760723510764, -2565.800581422195], "name": 2214680680}, {"position": [-12462.310723506675, -2565.9005814233637], "name": 2214680681}, {"position": [2478.3392764931023, -692.8005814224036], "name": 135043178}, {"position": [3200.339276489217, -692.1005814213288], "name": 135043180}, {"position": [4641.4392764901895, -134.70058142317498], "name": 135010413}, {"position": [4638.339276489489, -685.1005814212385], "name": 135010416}, {"position": [5442.489276489937, -681.3005814230166], "name": 135043185}, {"position": [1621.2892764926323, -5300.300581421169], "name": 1932195954}, {"position": [6090.339276489942, -678.6005814234386], "name": 135043187}, {"position": [6812.8392764919, -675.6005814239074], "name": 135043189}, {"position": [475.73927648869585, -3363.5005814218744], "name": 2568624490}, {"position": [-8653.66072351037, 5924.299418577306], "name": 1806083093}, {"position": [706.789276492259, -2361.8505814226864], "name": 2568599683}, {"position": [-9278.260723505127, -733.3005814231797], "name": 135043204}, {"position": [-8548.910723504832, -730.1005814213113], "name": 135043207}, {"position": [2229.8892764922584, -1246.9505814216575], "name": 4720007304}, {"position": [-8653.010723506326, 5850.949418576334], "name": 1806083095}, {"position": [-9383.910723506971, 4810.999418577211], "name": 2292321986}, {"position": [705.9392764929839, -2299.700581421149], "name": 2568599698}, {"position": [-10536.210723508077, 4809.949418579152], "name": 2292321987}, {"position": [1734.6892764891209, -5380.100581422908], "name": 1932195990}, {"position": [4479.489276491222, -3252.9505814231643], "name": 1277679767}, {"position": [649.5892764917244, -2271.550581422588], "name": 2568599704}, {"position": [-6892.410723509101, -5579.05058142083], "name": 1959915204}, {"position": [-8656.410723510533, 6486.74941857763], "name": 2291095710}, {"position": [-9245.610723510821, 6485.94941857894], "name": 2291095711}, {"position": [-8656.460723507564, 6427.199418578056], "name": 2291095713}, {"position": [1734.1392764933516, -4622.300581420546], "name": 1933539490}, {"position": [309.68927649155376, -5401.800581420702], "name": 1932196008}, {"position": [527.239276493674, -2203.400581421988], "name": 2568599722}, {"position": [5834.839276488424, -2211.6005814218906], "name": 135107417}, {"position": [5511.489276493365, 2644.299418577134], "name": 135018866}, {"position": [-1862.110723507726, 5330.949418578257], "name": 2355676189}, {"position": [2580.5392764937096, -4467.050581421717], "name": 134956062}, {"position": [-2331.9107235053593, -3854.2005814221625], "name": 3278420155}, {"position": [-2227.4107235062957, -3856.400581423003], "name": 3278420156}, {"position": [-2113.0607235093635, -3858.850581423212], "name": 3278420157}, {"position": [280.1892764949798, -1919.4505814219553], "name": 2568599742}, {"position": [4724.189276494428, -7054.300581422978], "name": 1933539701}, {"position": [-6519.910723511657, -5978.55058142116], "name": 1428268064}, {"position": [102.38927649197649, -5458.350581420746], "name": 1932196037}, {"position": [-2334.860723507859, -4128.450581422527], "name": 3278420166}, {"position": [-187.81072351004013, -5848.200581421992], "name": 1483977761}, {"position": [1381.6392764951502, -5469.550581423732], "name": 1932196040}, {"position": [-2118.9107235102256, -4241.350581423831], "name": 3278420169}, {"position": [-2006.960723505813, -4299.900581422378], "name": 3278420171}, {"position": [-4827.560723505541, -11266.75058142368], "name": 134951970}, {"position": [259.0892764899877, -5047.650581420981], "name": 1933539534}, {"position": [2784.9392764949243, -5081.750581421574], "name": 1933539536}, {"position": [6547.139276491976, 4344.049418577356], "name": 4224850296}, {"position": [896.2392764928495, -1983.5505814214116], "name": 2568599763}, {"position": [406.6892764882368, -1985.5005814228832], "name": 2568599766}, {"position": [7664.1892764897075, 4461.549418579125], "name": 4224850297}, {"position": [-8358.160723510366, -4883.600581422343], "name": 135010520}, {"position": [707.639276491534, -1984.350581423655], "name": 2568599769}, {"position": [-4208.91072350571, -2586.9005814236343], "name": 2184804575}, {"position": [1646.5892764898626, -5555.500581422734], "name": 1932196066}, {"position": [-9298.810723507246, -11354.200581422447], "name": 2080708609}, {"position": [-4312.560723505499, -2620.600581423105], "name": 2184804581}, {"position": [388.0392764941121, -1958.7005814223346], "name": 2568599785}, {"position": [850.6392764928705, -5638.950581420942], "name": 1932196077}, {"position": [1600.1892764947456, -5641.450581421736], "name": 1932196079}, {"position": [7637.639276488528, -5898.050581421899], "name": 1933539568}, {"position": [957.1392764939901, 3746.949418577117], "name": 134985969}, {"position": [279.489276493905, -2058.1505814227794], "name": 2568599794}, {"position": [-9244.16072351164, 6215.099418579229], "name": 2291095796}, {"position": [280.68927649371744, -1812.1005814215607], "name": 2568599797}, {"position": [939.1392764896977, 5959.399418578925], "name": 134985974}, {"position": [163.5892764895175, -1812.600581423851], "name": 2568599799}, {"position": [281.7392764882243, -1602.600581421143], "name": 2568599802}, {"position": [851.839276492683, -5722.050581422167], "name": 1932196091}, {"position": [-5019.110723509357, 5937.949418576949], "name": 3299414702}, {"position": [9486.689276492654, 5486.549418577624], "name": 2338863365}, {"position": [1501.6392764906072, -5803.450581421288], "name": 1932196103}, {"position": [-5350.0107235109335, -3446.700581420714], "name": 4720030764}, {"position": [76.98927649357756, -1753.3005814236446], "name": 2568599818}, {"position": [-1894.3607235115678, -4797.650581423341], "name": 135092492}, {"position": [-1257.3107235098746, -2916.100581423109], "name": 2568624514}, {"position": [6975.489276491942, 3970.599418579468], "name": 4224963629}, {"position": [-8585.460723509186, 5636.399418577298], "name": 2091809040}, {"position": [6736.689276493735, -7064.650581423138], "name": 1933539715}, {"position": [7648.639276489177, -6809.400581420988], "name": 1933539604}, {"position": [1451.1392764902098, -5885.750581423821], "name": 1932196118}, {"position": [1177.739276492673, -5893.100581420896], "name": 1932196119}, {"position": [6448.289276491437, -6821.950581421987], "name": 1933539608}, {"position": [5296.439276492038, -6839.700581423358], "name": 1933539609}, {"position": [7648.039276489271, -6851.150581422161], "name": 1933539610}, {"position": [9384.539276489078, 5544.6994185786025], "name": 2338863387}, {"position": [4950.539276492805, -5929.450581422912], "name": 1932196124}, {"position": [6734.939276491048, -6859.600581421432], "name": 1933539613}, {"position": [6448.689276489005, -6862.750581422716], "name": 1933539614}, {"position": [6088.139276492655, -6866.700581422691], "name": 1933539615}, {"position": [6042.789276492044, -6867.200581421429], "name": 1933539616}, {"position": [5845.88927649321, -6869.650581421638], "name": 1933539617}, {"position": [5296.939276490775, -6877.20058142105], "name": 1933539621}, {"position": [-4079.960723508691, -3382.3005814213047], "name": 2960628006}, {"position": [9486.039276488611, 5426.74941857868], "name": 2338863399}, {"position": [4957.889276489879, -6881.000581422824], "name": 1933539624}, {"position": [9343.18927649258, 5426.499418579311], "name": 2338863401}, {"position": [9648.489276493421, 4501.199418577073], "name": 135076231}, {"position": [4594.339276493997, -6886.450581422565], "name": 1933539628}, {"position": [4689.889276491499, -6890.750581423077], "name": 1933539631}, {"position": [1424.4892764949668, -6034.700581423635], "name": 1932196145}, {"position": [9717.589276490911, -199.9505814218594], "name": 2074057010}, {"position": [9713.089276495168, -394.3005814228684], "name": 2074057016}, {"position": [899.1392764912121, -2672.8505814226364], "name": 2568599867}, {"position": [-2129.0607235116, -11130.300581420726], "name": 135092542}, {"position": [10160.539276490965, -4534.400581423625], "name": 134956085}, {"position": [4691.289276493649, -6932.600581421866], "name": 1933539649}, {"position": [9351.4892764901, 5820.3494185775635], "name": 2074042353}, {"position": [9826.189276495257, 6189.899418576061], "name": 1942315675}, {"position": [4779.939276488676, -6938.950581421466], "name": 1933539654}, {"position": [-9307.610723510606, 5637.649418577695], "name": 2091809095}, {"position": [6488.939276493966, 4295.6494185766305], "name": 4224963639}, {"position": [-4178.060723511124, 5434.199418576924], "name": 2069376738}, {"position": [-8522.660723507159, 5924.699418578428], "name": 2291095886}, {"position": [247.03927649483148, 3162.149418578508], "name": 2068887949}, {"position": [1759.8392764952564, -1803.6005814217049], "name": 135076181}, {"position": [282.63927649163634, -3292.300581421159], "name": 2568624479}, {"position": [304.03927649302886, -3257.8505814235823], "name": 2568624481}, {"position": [8531.33927649452, -6839.150581424036], "name": 1932196195}, {"position": [5212.339276489785, -6840.9005814231705], "name": 1932196197}, {"position": [1765.4892764937813, -3252.7005814237955], "name": 2568624486}, {"position": [281.2892764936237, -3407.0005814221813], "name": 2568624487}, {"position": [380.7892764911003, -3409.750581422344], "name": 2568624488}, {"position": [517.039276495268, -3246.950581420549], "name": 2568624489}, {"position": [5488.1892764910845, 621.6494185764532], "name": 135018858}, {"position": [359.8392764914138, -3292.2005814235436], "name": 2568624491}, {"position": [344.08927648854615, -3408.750581421316], "name": 2568624492}, {"position": [4958.88927649446, -6844.350581420855], "name": 1932196205}, {"position": [384.3392764935061, -3365.4005814227617], "name": 2568624495}, {"position": [5514.489276492895, 2121.1494185777724], "name": 135018864}, {"position": [399.5392764934991, -3316.6005814209143], "name": 2568624498}, {"position": [4690.389276490237, -7054.150581421226], "name": 1933539699}, {"position": [5507.489276489252, 4093.749418576209], "name": 135018868}, {"position": [-2198.660723507828, -11133.000581423858], "name": 135092597}, {"position": [5507.589276490421, 4338.3494185782465], "name": 135018870}, {"position": [5499.48927649524, 5967.8994185787815], "name": 135018871}, {"position": [7639.689276494721, -7054.550581422347], "name": 1933539704}, {"position": [447.08927649139696, -3345.9005814222564], "name": 2568624505}, {"position": [7342.339276490861, -7054.700581420548], "name": 1933539706}, {"position": [9653.439276490872, -2353.650581422784], "name": 2074057083}, {"position": [455.6892764924214, -3293.150581423987], "name": 2568624508}, {"position": [942.1892764933659, -3243.9005814239863], "name": 2568624509}, {"position": [927.0892764945415, -3244.000581421602], "name": 2568624510}, {"position": [5407.089276488364, -6875.700581421284], "name": 1932196245}, {"position": [-1271.960723506993, -3306.95058142183], "name": 2568624512}, {"position": [-1161.060723511298, -2915.950581421356], "name": 2568624513}, {"position": [9709.63927649393, 495.44941857604385], "name": 135076226}, {"position": [-1160.7607235077921, -3307.500581421152], "name": 2568624515}, {"position": [9682.489276492845, 4111.399418576411], "name": 135076228}, {"position": [17.53927649161824, -3300.000581422324], "name": 2568624517}, {"position": [14.889276492624504, -3211.5005814219444], "name": 2568624518}, {"position": [-435.7607235050409, -3303.2505814212245], "name": 2568624519}, {"position": [-438.46072350817167, -3213.550581421032], "name": 2568624520}, {"position": [-1168.010723510804, -2582.150581421416], "name": 2568624521}, {"position": [-1303.3607235115596, -2584.1505814234724], "name": 2568624522}, {"position": [-1167.7607235114351, -2561.8505814222203], "name": 2568624523}, {"position": [-1302.810723508685, -2482.65058142394], "name": 2568624525}, {"position": [-1166.7107235098229, -2481.7005814234963], "name": 2568624526}, {"position": [-1947.1607235104216, 3154.14941857739], "name": 2068887951}, {"position": [9710.489276493206, 5932.89941857833], "name": 135076240}, {"position": [-478.8607235113318, 3159.4994185759615], "name": 2068887953}, {"position": [9648.189276489917, -1224.2505814228366], "name": 2074057106}, {"position": [9709.989276494469, 6003.899418576708], "name": 135076243}, {"position": [-1267.2607235089117, -2376.100581422236], "name": 2568624532}, {"position": [-1189.410723505091, -2582.4505814213694], "name": 2568624533}, {"position": [-1200.1607235063716, -2481.950581422865], "name": 2568624534}, {"position": [-1266.760723510174, -2394.4005814229286], "name": 2568624535}, {"position": [5211.33927649231, -6878.100581420909], "name": 1932196248}, {"position": [-1334.3107235073148, -2369.000581420977], "name": 2568624537}, {"position": [-1209.5607235096395, -2376.1505814228203], "name": 2568624538}, {"position": [4945.03927649248, 5137.5494185776915], "name": 2069036783}, {"position": [9720.839276489813, -929.7005814232762], "name": 2074057116}, {"position": [-4852.310723507003, 393.3494185766051], "name": 2217933213}, {"position": [9433.639276494432, -1212.950581422234], "name": 2074057118}, {"position": [-1334.4107235084834, -2164.4505814215618], "name": 2568624543}, {"position": [9648.489276493421, -1143.8505814211908], "name": 2074057120}, {"position": [5092.5392764895605, -6879.400581421891], "name": 1932196257}, {"position": [4972.389276488798, -6880.700581422871], "name": 1932196259}, {"position": [6452.439276493749, 4837.749418577176], "name": 4224850341}, {"position": [-1248.4607235094813, -1932.6005814228608], "name": 2568624550}, {"position": [-4709.760723507372, -187.10058142090702], "name": 2189326759}, {"position": [-2633.6607235109, -3567.6005814231357], "name": 2960628137}, {"position": [6544.089276488307, 4764.349418579172], "name": 4224850346}, {"position": [-934.4607235064473, -1928.0505814229798], "name": 2568624555}, {"position": [-3570.510723506004, -3577.850581422126], "name": 2960628140}, {"position": [-1332.9607235093022, -2250.250581422364], "name": 2568624541}, {"position": [7158.989276490502, 4696.1994185785725], "name": 4224850352}, {"position": [7698.539276489669, 4292.349418577146], "name": 4224850353}, {"position": [5277.189276490901, -6933.000581422988], "name": 1932196275}, {"position": [-4727.910723509865, -730.8005814223861], "name": 2189326772}, {"position": [9650.489276488372, -1630.0005814215979], "name": 2074057142}, {"position": [7643.6892764917275, 4332.349418579184], "name": 4224850360}, {"position": [7592.289276495023, 4460.449418576928], "name": 4224850363}, {"position": [7726.3392764947985, 4406.449418578262], "name": 4224850364}, {"position": [5195.289276493042, -6959.400581422415], "name": 1932196287}, {"position": [9646.889276488935, -783.5505814206556], "name": 2074057152}, {"position": [-1335.6607235053275, -2057.7005814210734], "name": 2568624544}, {"position": [9892.739276494922, -1332.5005814230906], "name": 2074057158}, {"position": [-1334.3107235073148, -2009.7005814214697], "name": 2568624545}, {"position": [-3053.0107235051673, -3850.9505814232625], "name": 2960628168}, {"position": [280.98927649011785, -2443.050581423023], "name": 2568600013}, {"position": [-2824.0607235048287, -3881.7505814208175], "name": 2960628174}, {"position": [2462.339276490866, 437.94941857910885], "name": 134994384}, {"position": [7262.139276491553, 4761.799418577794], "name": 4224850385}, {"position": [2449.739276492835, 2073.899418576275], "name": 134994387}, {"position": [-2742.9607235092135, -3976.2505814238125], "name": 2960628181}, {"position": [2448.139276488348, 3754.6994185788662], "name": 134994390}, {"position": [5094.039276492878, -7116.550581422132], "name": 1932196312}, {"position": [2430.6392764898987, 5964.39941857696], "name": 134994393}, {"position": [5246.339276489209, -6894.600581421883], "name": 1932196267}, {"position": [6301.889276493001, 4569.999418578163], "name": 4224850400}, {"position": [-360.31072350795057, -2958.3505814230193], "name": 2568600033}, {"position": [-348.26072350568893, -2371.50058142177], "name": 2568600035}, {"position": [7107.789276489029, 3142.799418576203], "name": 4224850405}, {"position": [-537.3107235087105, -2960.7505814226442], "name": 2568600038}, {"position": [-533.3607235087356, -2372.600581423967], "name": 2568600041}, {"position": [-3422.5607235072175, 4341.299418577193], "name": 2311059946}, {"position": [8202.189276488525, 1575.3494185766215], "name": 135012837}, {"position": [5758.489276495027, -7254.750581420666], "name": 1932196332}, {"position": [-534.5607235085481, -2551.6005814232303], "name": 2568600047}, {"position": [-10391.36072350999, -9844.85058142326], "name": 2638686252}, {"position": [9640.93927649401, 495.09941857905915], "name": 135076343}, {"position": [9632.289276488847, 1689.5494185789062], "name": 135076344}, {"position": [9630.33927649093, 2279.899418578424], "name": 135076347}, {"position": [-306.66072350982176, -2458.2505814230162], "name": 2568600060}, {"position": [9627.839276490136, 2656.899418578718], "name": 135076350}, {"position": [-570.4107235118272, -2458.3005814236003], "name": 2568600063}, {"position": [9616.839276489485, 4111.749418576948], "name": 135076353}, {"position": [5770.939276494857, -7292.950581422985], "name": 1932196355}, {"position": [5244.189276488953, -7295.750581423732], "name": 1932196357}, {"position": [-935.860723508597, -1847.1505814225964], "name": 2568624556}, {"position": [-11653.610723506346, -1544.200581420796], "name": 4615944714}, {"position": [9614.38927649283, 5914.549418577053], "name": 135076364}, {"position": [-140.86072350494305, -7169.350581420986], "name": 135027023}, {"position": [9614.839276494535, 5988.8994185790525], "name": 135076371}, {"position": [-11122.060723508297, -1988.2505814230456], "name": 4615944724}, {"position": [9.789276489868826, -2559.700581421964], "name": 2568600085}, {"position": [7328.9892764947235, -4744.250581421028], "name": 2086854404}, {"position": [5424.9892764914875, -907.9005814207619], "name": 3009796634}, {"position": [5295.589276492763, -7338.300581423596], "name": 1932196380}, {"position": [-1124.6607235051442, -5602.600581422479], "name": 134968410}, {"position": [5216.439276495066, -6931.85058142376], "name": 1932196272}, {"position": [19.18927649313673, -2504.0505814217795], "name": 2568600101}, {"position": [-81.41072351008916, -2405.800581421147], "name": 2568600103}, {"position": [-80.7607235060459, -2369.80058142322], "name": 2568600105}, {"position": [-359.66072351101275, -2911.3505814208906], "name": 2568600108}, {"position": [12.789276489399981, -5558.950581423971], "name": 885856813}, {"position": [214.7392764939582, -2908.3005814207754], "name": 2568600110}, {"position": [9685.18927648887, -6812.450581421103], "name": 134979336}, {"position": [-537.360723505742, -2911.850581423181], "name": 2568600116}, {"position": [-436.16072350971535, -2959.4005814210786], "name": 2568600119}, {"position": [-7587.310723508267, 6491.649418578049], "name": 2286590520}, {"position": [2847.339276492278, -3175.100581422896], "name": 134937145}, {"position": [-436.11072350557833, -2911.6005814238124], "name": 2568600122}, {"position": [-437.4607235106964, -2873.300581423877], "name": 2568600125}, {"position": [-3524.910723506025, 4006.849418576763], "name": 2311060035}, {"position": [-4247.810723505552, 4004.9994185764604], "name": 2311060037}, {"position": [207.93927649265243, -5927.650581423194], "name": 885856839}, {"position": [5300.589276494349, -7527.150581420728], "name": 1932196425}, {"position": [5768.239276491727, -7525.9005814238835], "name": 1932196426}, {"position": [-413.31072350914155, -2822.5505814205576], "name": 2568600140}, {"position": [-356.8607235067134, -2779.9505814236627], "name": 2568600143}, {"position": [-117.26072350626282, 5450.349418577361], "name": 2355676176}, {"position": [-3671.810723510305, 3988.8494185760237], "name": 2311060051}, {"position": [-3774.3607235114496, 3984.1494185779425], "name": 2311060052}, {"position": [1732.4892764918332, -4518.350581420805], "name": 3009796695}, {"position": [1838.4892764942151, -4518.600581423726], "name": 3009796696}, {"position": [-1784.6607235085798, -10087.60058142144], "name": 135084635}, {"position": [-1134.6607235083184, -10089.600581423496], "name": 135084637}, {"position": [-7085.110723508592, 6431.099418577446], "name": 2286590558}, {"position": [2650.6392764886755, -4579.750581420683], "name": 3009796703}, {"position": [-7523.760723508132, 6430.949418579246], "name": 2286590560}, {"position": [-473.6607235074075, -2822.05058142182], "name": 2568600161}, {"position": [182.38927648894787, -10091.4505814238], "name": 135084642}, {"position": [-9323.660723509875, -7479.150581421123], "name": 134968422}, {"position": [6102.239276494003, -2210.350581421494], "name": 2086854412}, {"position": [5774.539276494295, -7750.850581423663], "name": 1932196455}, {"position": [-535.660723507192, -2692.1005814237733], "name": 2568600170}, {"position": [-354.9607235058261, -2691.100581422745], "name": 2568600173}, {"position": [-7523.460723511733, 6416.749418576728], "name": 2286590574}, {"position": [3096.539276491228, -4973.450581420735], "name": 3009796720}, {"position": [-2622.710723507282, 6233.399418576369], "name": 2703728618}, {"position": [-4520.210723505614, 5094.099418577969], "name": 2069379699}, {"position": [-7587.310723508267, 6415.899418577454], "name": 2286590583}, {"position": [10027.239276489297, -3131.8005814213734], "name": 2086854420}, {"position": [-535.5607235060234, -2679.4505814216054], "name": 2568600187}, {"position": [-772.9607235091862, -2555.600581423789], "name": 2568600189}, {"position": [1515.4392764884506, -5887.050581421249], "name": 3009796734}, {"position": [5234.63927649459, -7776.400581423814], "name": 1932196479}, {"position": [-721.6107235095137, -2682.5005814217207], "name": 2568600193}, {"position": [-4175.160723505655, 4983.049418576968], "name": 2069379717}, {"position": [-643.0107235075866, -2628.2005814231015], "name": 2568600199}, {"position": [-1921.4107235114852, 383.4494185781523], "name": 135019146}, {"position": [-1921.660723510854, 424.59941857941885], "name": 135019148}, {"position": [-1932.0607235115972, 2057.9494185781755], "name": 135019155}, {"position": [-580.1107235114955, -2680.1505814226803], "name": 2568600212}, {"position": [-1935.6107235068976, 2617.149418576048], "name": 135019157}, {"position": [-3419.5107235106548, 3861.9994185786763], "name": 2311060119}, {"position": [-3523.610723505044, 3861.9994185786763], "name": 2311060120}, {"position": [-1950.9107235080592, 4287.699418576096], "name": 135019161}, {"position": [-4647.010723509482, -442.90058142237854], "name": 3146411802}, {"position": [-4939.96072351166, 5867.049418576187], "name": 2069379693}, {"position": [4728.48927649494, -7306.800581421413], "name": 1933540002}, {"position": [-5605.410723511284, 4634.249418579373], "name": 2069376795}, {"position": [-5095.510723506891, 5266.649418576463], "name": 2069376796}, {"position": [-435.1607235051347, -2458.3005814236003], "name": 2568600235}, {"position": [-4824.160723508441, 6010.949418577383], "name": 2703728620}, {"position": [-12360.460723506605, -1214.6505814207842], "name": 2214680848}, {"position": [-7980.910723510704, 6491.249418576927], "name": 2289072815}, {"position": [-7998.460723506185, 6440.399418575993], "name": 2289072817}, {"position": [-8525.860723509028, 6438.349418576905], "name": 2289072820}, {"position": [-7997.51072350574, 6407.749418578134], "name": 2289072822}, {"position": [-461.8607235116201, -2458.3005814236003], "name": 2568600249}, {"position": [-7997.110723508172, 6393.1994185786325], "name": 2289072826}, {"position": [6042.4392764915065, -7325.500581423228], "name": 1933540027}, {"position": [-3523.1607235104434, 3788.7494185788737], "name": 2311060158}, {"position": [-3774.010723510912, 3788.0994185783834], "name": 2311060159}, {"position": [-7976.810723505423, 6363.74941857909], "name": 2289072832}, {"position": [-4167.560723509212, 3787.099418577355], "name": 2311060161}, {"position": [-4247.410723507983, 3786.7494185768182], "name": 2311060162}, {"position": [-9368.460723507611, 2189.2494185777878], "name": 2282973643}, {"position": [-3773.4607235080375, 3730.9994185790174], "name": 2311060164}, {"position": [-3520.5107235114497, 3729.8994185768206], "name": 2311060165}, {"position": [-4246.060723509971, 3728.9994185769615], "name": 2311060166}, {"position": [-4362.31072350779, 3728.8494185787613], "name": 2311060167}, {"position": [-4458.360723511134, 3728.7494185775927], "name": 2311060168}, {"position": [-9292.210723508277, 2188.4494185790973], "name": 2282973644}, {"position": [-3517.4607235077815, 3671.8494185770114], "name": 2311060171}, {"position": [-3323.010723505604, 3670.1494185784613], "name": 2311060173}, {"position": [8254.339276490442, -124.15058142067892], "name": 135019215}, {"position": [-4166.810723511106, 3668.69941857928], "name": 2311060177}, {"position": [-4362.160723509589, 3668.6494185786955], "name": 2311060178}, {"position": [-4245.410723505927, 3668.599418578111], "name": 2311060179}, {"position": [-4458.360723511134, 3668.1994185769895], "name": 2311060180}, {"position": [8270.339276492678, -2859.600581423649], "name": 135019221}, {"position": [-1160.5107235084233, -3092.6505814221628], "name": 4719909591}, {"position": [6817.48927649295, -1490.5005814220829], "name": 2086854436}, {"position": [6487.589276488848, 2377.499418578566], "name": 1962191311}, {"position": [-7986.110723507522, 6261.949418576051], "name": 2289072861}, {"position": [7514.289276493002, 5708.149418577335], "name": 2069036837}, {"position": [-4362.010723511389, 3626.9994185786913], "name": 2311060194}, {"position": [-8525.010723509751, 6212.999418576004], "name": 2289072869}, {"position": [-2789.6607235078363, -3918.1005814228342], "name": 2960628177}, {"position": [-9381.660723505547, -10629.100581422079], "name": 134986474}, {"position": [-9299.66072350652, -10631.100581420582], "name": 134986475}, {"position": [7533.5892764911705, -396.3505814219559], "name": 2086854440}, {"position": [-2773.9107235049687, 6190.149418578983], "name": 2316883458}, {"position": [-3253.11072350587, -2386.7505814223478], "name": 2573122294}, {"position": [-9028.16072350987, -11476.100581422344], "name": 135065386}, {"position": [2448.839276489423, 2633.0994185777], "name": 134994389}, {"position": [-4249.910723508776, 4279.29941857741], "name": 2310516523}, {"position": [-2657.960723510655, -784.4505814205149], "name": 2573122310}, {"position": [-2656.0107235056307, -711.5005814206654], "name": 2573122312}, {"position": [-1914.4607235048738, -708.8005814210874], "name": 2573122314}, {"position": [271.48927649278676, -700.8505814205535], "name": 2573122316}, {"position": [-5017.110723507301, 3454.999418575966], "name": 2311060239}, {"position": [-4244.710723504852, 3454.9494185789345], "name": 2311060240}, {"position": [-2887.8107235073003, -3999.100581420834], "name": 2960628184}, {"position": [-8009.360723505665, 6211.799418576192], "name": 2091809557}, {"position": [7111.589276490804, 4004.8994185788442], "name": 4224850393}, {"position": [1753.8392764890887, -695.4005814208131], "name": 2573122333}, {"position": [4867.4392764951335, -1244.8005814214014], "name": 2573122335}, {"position": [9830.089276491093, 5705.449418577757], "name": 134961952}, {"position": [-5650.960723507125, 3117.3494185772197], "name": 3758384262}, {"position": [5827.689276493686, -1496.6005814223138], "name": 2573122344}, {"position": [5837.189276491017, -2923.5505814213525], "name": 2573122345}, {"position": [5836.889276494617, -3220.8005814240437], "name": 2573122347}, {"position": [-9301.660723508576, -10569.100581420798], "name": 134986541}, {"position": [4737.339276488228, -7383.85058142299], "name": 1933540143}, {"position": [7322.189276493418, -3196.7005814230733], "name": 2573122354}, {"position": [-888.7107235082681, 4231.149418576052], "name": 2310516531}, {"position": [7327.339276493205, -4078.1005814238824], "name": 2573122356}, {"position": [6761.839276492765, -4082.100581420889], "name": 2573122358}, {"position": [5840.839276494591, -4088.6005814222417], "name": 2573122359}, {"position": [8506.839276492428, -3191.850581423239], "name": 135019326}, {"position": [8509.98927649016, -3613.6005814206837], "name": 135019329}, {"position": [8516.939276489666, -4981.050581420732], "name": 135019331}, {"position": [8522.939276488727, -5891.700581422299], "name": 135019334}, {"position": [8530.939276489846, -6801.650581422791], "name": 135019337}, {"position": [8536.339276489001, -7712.500581423143], "name": 135019340}, {"position": [-3409.9607235091867, 2609.4494185784356], "name": 135035725}, {"position": [-3418.6607235113797, 3726.3994185785523], "name": 135035727}, {"position": [6001.439276488441, -7398.25058142074], "name": 1933540176}, {"position": [-3422.1607235096485, 4282.349418577524], "name": 135035730}, {"position": [6042.789276492044, -7398.350581421909], "name": 1933540179}, {"position": [-9869.710723506842, -187.50058142202874], "name": 2282822484}, {"position": [-9934.06072350922, -187.75058142139756], "name": 2282822485}, {"position": [-8523.4607235094, 5999.149418578043], "name": 2289072986}, {"position": [-3515.4607235057256, 3243.699418579382], "name": 2311060316}, {"position": [-8279.71072350664, -4818.9505814235645], "name": 1959915322}, {"position": [-9147.710723510727, 5849.499418577153], "name": 2289072992}, {"position": [-2038.8607235091172, 4561.849418578845], "name": 2703728626}, {"position": [-4086.210723507122, 3240.9994185762516], "name": 2311060323}, {"position": [-4243.4607235080075, 3240.149418576976], "name": 2311060325}, {"position": [-3430.910723508873, 5654.149418578669], "name": 2068877116}, {"position": [-5203.510723511328, 3237.8994185791043], "name": 2311060331}, {"position": [-4811.660723511579, 3237.7994185779357], "name": 2311060332}, {"position": [-4998.810723506608, 3237.4494185773983], "name": 2311060333}, {"position": [-1865.7607235113005, 6451.749418577179], "name": 2703719278}, {"position": [-1290.8107235105604, 5878.499418578542], "name": 2703719279}, {"position": [-1283.8607235110544, 4780.499418576056], "name": 2703719280}, {"position": [-4243.210723508639, 3167.399418579464], "name": 2311060342}, {"position": [-4810.310723506462, 3165.0494185768707], "name": 2311060343}, {"position": [-4997.210723509226, 3164.2494185781798], "name": 2311060344}, {"position": [-3516.560723511475, 3158.699418577271], "name": 2311060345}, {"position": [-3720.360723505678, 3158.1494185779493], "name": 2311060346}, {"position": [-9905.510723505984, -234.6005814217733], "name": 2282822524}, {"position": [9685.03927649067, -5424.900581420644], "name": 134979324}, {"position": [-5667.2107235087315, 3117.2994185766356], "name": 2311060354}, {"position": [-3512.6607235085316, 3095.2494185783053], "name": 2311060359}, {"position": [-3719.310723511171, 3095.099418576552], "name": 2311060360}, {"position": [-351.9607235062949, -2550.600581422202], "name": 2568600044}, {"position": [9619.889276493155, 4353.049418575949], "name": 4253571980}, {"position": [-477.2107235098133, 2898.3994185765027], "name": 2068877122}, {"position": [-4242.160723507027, 3092.249418578774], "name": 2311060366}, {"position": [-4825.3607235082545, 3090.099418578518], "name": 2311060373}, {"position": [7811.939276493263, -10450.650581422138], "name": 2573122455}, {"position": [-4962.460723511696, 3090.0494185779335], "name": 2311060377}, {"position": [7928.13927649405, -5665.700581420907], "name": 2086854470}, {"position": [-1216.2607235097767, 6022.549418577938], "name": 2355654862}, {"position": [10307.289276489939, -7697.100581420813], "name": 134983496}, {"position": [-9237.160723507997, 2086.299418579074], "name": 2282973727}, {"position": [-6102.910723505773, 504.0494185770683], "name": 2495519674}, {"position": [9729.639276493173, -3922.2005814210092], "name": 2086854475}, {"position": [-2614.5607235079638, 4891.7994185764255], "name": 2356771781}, {"position": [-8521.110723506808, 5636.899418576036], "name": 2289073095}, {"position": [185.03927649504703, -11052.800581420996], "name": 2573122506}, {"position": [-2613.8107235098573, 4341.699418578315], "name": 2356771788}, {"position": [-2615.01072350967, 4225.299418578743], "name": 2356771790}, {"position": [2463.789276490047, 403.99941857671706], "name": 134994382}, {"position": [7528.839276488952, 422.89941857731606], "name": 135016270}, {"position": [-3718.3607235107274, 3038.1494185789393], "name": 2311060442}, {"position": [438.2392764910037, -8204.300581422074], "name": 2573122523}, {"position": [196.93927649200305, -7946.100581420978], "name": 2573122525}, {"position": [197.28927649254047, -7347.750581423896], "name": 2573122529}, {"position": [6161.239276494257, -5003.700581422521], "name": 134962146}, {"position": [464.33927649047746, -2274.650581423288], "name": 2568599553}, {"position": [6163.3392764903765, -5460.950581422708], "name": 134962148}, {"position": [9533.739276491815, 6376.249418575952], "name": 4614339557}, {"position": [1363.839276493195, -7342.850581423477], "name": 2573122535}, {"position": [9191.48927648905, 6080.549418577164], "name": 4614339564}, {"position": [-4825.3607235082545, 2987.499418576789], "name": 2311060463}, {"position": [8949.339276490775, 6004.649418578367], "name": 4614339568}, {"position": [1518.689276494456, -7051.200581422279], "name": 2573122545}, {"position": [10392.439276493804, -8643.80058142089], "name": 2087861299}, {"position": [9145.83927649204, 6122.699418579458], "name": 4614339575}, {"position": [9211.039276493693, 6127.599418576324], "name": 4614339579}, {"position": [6999.8392764887285, 4928.899418576549], "name": 135109629}, {"position": [-4170.3607235064055, 4225.549418578112], "name": 2310516565}, {"position": [9182.089276492889, 6110.04941857729], "name": 4614339587}, {"position": [1538.389276490193, -6293.350581422885], "name": 2573122565}, {"position": [-3716.9607235085778, 2957.099418576803], "name": 2311060486}, {"position": [1582.039276492253, -6220.5005814206515], "name": 2573122567}, {"position": [4064.5892764885616, -5937.20058142111], "name": 135035912}, {"position": [-8520.210723510501, 5422.699418577537], "name": 2289073161}, {"position": [-8585.410723505049, 5422.549418579337], "name": 2289073162}, {"position": [5252.939276488178, -5926.200581424013], "name": 135035915}, {"position": [5848.839276488605, -5918.600581424016], "name": 135035917}, {"position": [-9138.410723508627, 5420.399418579081], "name": 2289073166}, {"position": [-7994.160723505673, 5365.949418578708], "name": 2289073167}, {"position": [-8520.010723508165, 5362.549418578055], "name": 2289073168}, {"position": [-8649.41072350689, 5362.149418576933], "name": 2289073169}, {"position": [-7940.460723510512, 5304.199418578292], "name": 2289073170}, {"position": [-7993.860723509271, 5303.8994185783395], "name": 2289073171}, {"position": [7955.639276488569, 4162.8994185778365], "name": 135109653}, {"position": [-8519.610723510596, 5301.949418576868], "name": 2289073174}, {"position": [-3716.0607235051657, 2901.549418577787], "name": 2311060503}, {"position": [-8585.060723511617, 5301.899418576284], "name": 2289073176}, {"position": [-8649.16072350752, 5301.8494185792515], "name": 2289073178}, {"position": [-9216.360723506512, 5299.549418577243], "name": 2289073180}, {"position": [-4387.410723509788, 5266.149418577726], "name": 2069376858}, {"position": [179.43927649355373, -2689.6005814229793], "name": 2568600069}, {"position": [-9171.410723510577, 4601.249418577425], "name": 2292322139}, {"position": [7339.03927649493, -6585.600581423989], "name": 1937710117}, {"position": [-2696.560723506991, 5657.399418577569], "name": 2068877148}, {"position": [-3411.4607235053995, 2810.599418577198], "name": 2311060525}, {"position": [10060.93927649232, -8569.300581420692], "name": 2087861294}, {"position": [7536.989276488271, 3224.9494185769836], "name": 1942314035}, {"position": [7591.139276492242, 3547.9494185786107], "name": 1942314036}, {"position": [-4394.460723510463, -3189.55058142123], "name": 1667837790}, {"position": [10063.689276492481, -8608.55058142107], "name": 2087861313}, {"position": [-4543.0107235091555, 5210.849418578078], "name": 2069379707}, {"position": [-9374.460723506672, 3133.299418578872], "name": 1959915361}, {"position": [-8772.660723508352, 2568.5994185771224], "name": 2282973329}, {"position": [7503.289276492353, 2764.199418578528], "name": 1942314064}, {"position": [10061.439276491057, -7698.900581420531], "name": 2087861329}, {"position": [-3308.710723509023, -6355.250581421501], "name": 2074272062}, {"position": [8447.839276492175, -10869.60058142239], "name": 135019608}, {"position": [2443.3892764932352, 4302.949418576673], "name": 2068020324}, {"position": [-9211.910723507799, -733.0005814232265], "name": 2282822761}, {"position": [-8946.76072351075, -753.2005814212539], "name": 2282822762}, {"position": [9673.089276489576, -4305.75058142324], "name": 2086854503}, {"position": [-8946.410723510213, -774.9505814231838], "name": 2282822765}, {"position": [-3421.810723509111, -2588.0005814222786], "name": 1567538287}, {"position": [1023.189276494918, -1249.8505814235727], "name": 1887485040}, {"position": [2429.939276488824, 5678.199418579055], "name": 2068020337}, {"position": [-3389.6107235094064, -2862.5005814220117], "name": 1567538290}, {"position": [-11055.560723505663, -2033.8505814230246], "name": 4615944723}, {"position": [2229.0392764929834, -1999.250581423695], "name": 4720000116}, {"position": [2229.389276493521, -1834.75058142335], "name": 4720000117}, {"position": [2449.1392764929287, 2902.0494185765247], "name": 2068020343}, {"position": [-8920.010723507232, -818.1505814235379], "name": 2282822780}, {"position": [-8945.76072350617, -818.6505814222755], "name": 2282822781}, {"position": [-11644.760723505953, -1217.4005814209465], "name": 4615944725}, {"position": [7927.339276491807, -4982.600581421082], "name": 135016299}, {"position": [-8851.41072350848, -838.7005814221027], "name": 2282822788}, {"position": [4664.3392764949, 135.49941857604608], "name": 2086723436}, {"position": [10351.839276488306, -2353.100581423462], "name": 134983399}, {"position": [-3510.0607235065695, 2671.9494185769577], "name": 2311060625}, {"position": [-8729.960723506736, -994.4005814226387], "name": 2282822802}, {"position": [9794.889276491858, -9334.250581421344], "name": 134937748}, {"position": [7284.939276495095, 978.0494185775979], "name": 2086776686}, {"position": [-4958.660723509922, 2671.4994185788046], "name": 2311060631}, {"position": [-2034.7607235109422, 2671.44941857822], "name": 2311060633}, {"position": [9882.939276494086, -10414.700581421243], "name": 134937758}, {"position": [10442.089276494926, -3653.6005814227224], "name": 2086854431}, {"position": [-4063.1107235071795, 2670.199418577823], "name": 2311060643}, {"position": [-7350.160723511579, -11440.100581420864], "name": 135052452}, {"position": [-9379.160723504754, -11095.100581421491], "name": 134967039}, {"position": [-3510.0607235065695, 2667.4994185782452], "name": 2311060652}, {"position": [9638.839276490784, 829.2494185759836], "name": 2074050020}, {"position": [-2751.8107235096068, 2666.7494185765863], "name": 2311060654}, {"position": [-5056.010723507143, 4818.999418578329], "name": 2069376790}, {"position": [9732.039276492798, -4060.700581423049], "name": 2074098866}, {"position": [-9313.6607235067, 6215.399418579182], "name": 2091809971}, {"position": [3157.739276488769, 5680.2994185787265], "name": 2068020404}, {"position": [3780.0392764921753, 1260.0994185767433], "name": 2086723444}, {"position": [-7952.260723506299, 4874.599418577929], "name": 2289073338}, {"position": [-4391.4607235109315, 5036.249418576944], "name": 2069379711}, {"position": [-8546.260723505839, -1490.3505814238827], "name": 2282822844}, {"position": [-8080.26072350998, 4863.149418579127], "name": 2289073341}, {"position": [6379.839276490884, -2686.6005814234486], "name": 134995134}, {"position": [-5055.610723509573, 4759.0994185782165], "name": 2069376885}, {"position": [6377.339276490091, -2209.1005814210976], "name": 134995137}, {"position": [6374.839276489297, -1732.1005814210366], "name": 134995139}, {"position": [-8516.510723509895, 4814.449418578448], "name": 2289073348}, {"position": [-8646.860723509064, 4814.199418579079], "name": 2289073349}, {"position": [-3508.1107235086506, 2610.9494185782014], "name": 2311060688}, {"position": [-6017.210723506139, 122.4494185763092], "name": 2442181843}, {"position": [-4088.9607235072845, 2503.2994185778534], "name": 1808366820}, {"position": [4595.489276489672, -1193.20058142236], "name": 1942240487}, {"position": [10355.039276490174, -2860.850581424046], "name": 134983402}, {"position": [-4106.610723511039, 2159.7994185782454], "name": 1808366831}, {"position": [6035.43927649497, -728.3505814221769], "name": 1942240496}, {"position": [4869.939276488822, -1293.3005814232956], "name": 1942240501}, {"position": [2564.139276493904, -2960.400581422107], "name": 134937129}, {"position": [5478.589276492585, -1147.4505814206282], "name": 1942240504}, {"position": [4136.489276490352, -1237.1505814208206], "name": 1942240505}, {"position": [-2910.4107235085053, -3820.200581422739], "name": 4847713530}, {"position": [-2892.060723510781, -3825.9505814224326], "name": 4847713531}, {"position": [-9304.31072350757, 4811.049418577795], "name": 134954236}, {"position": [5559.139276492431, -815.5005814209915], "name": 1942240514}, {"position": [-8582.810723510192, 4814.249418576111], "name": 134954243}, {"position": [-3408.160723509468, 378.3494185789493], "name": 135027978}, {"position": [-7634.01072350689, 4816.599418578704], "name": 134954251}, {"position": [-3408.410723508837, 420.94941857939716], "name": 135027982}, {"position": [-7079.210723510698, 4819.749418576435], "name": 134954257}, {"position": [-6399.610723505589, 4820.899418579216], "name": 134954259}, {"position": [-8045.560723509481, 5641.799418576455], "name": 2091810071}, {"position": [-6354.310723509116, 4821.099418578001], "name": 134954264}, {"position": [-5652.660723505676, 4823.749418576995], "name": 134954265}, {"position": [-4174.210723505212, 4828.499418579213], "name": 134954268}, {"position": [9041.039276489471, 5585.799418579285], "name": 2069036317}, {"position": [-3425.6607235079173, 4831.249418579375], "name": 134954271}, {"position": [-2691.310723506035, 4833.899418578369], "name": 134954274}, {"position": [1013.9892764939873, 5125.449418578399], "name": 2069036323}, {"position": [5459.089276492079, -867.1005814235855], "name": 1942240548}, {"position": [-1954.410723506328, 4836.599418577947], "name": 134954277}, {"position": [-1210.0107235113455, 4839.299418577525], "name": 134954280}, {"position": [-104.46072350589475, 3471.2494185775713], "name": 2069036329}, {"position": [-5513.61072351142, 5342.049418576522], "name": 2069036333}, {"position": [-5648.060723508763, 3161.599418579186], "name": 134959945}, {"position": [215.2392764926958, -2950.6505814218544], "name": 1667939632}, {"position": [-489.56072350847535, 4841.949418576519], "name": 134954289}, {"position": [5277.28927649207, 5694.449418577107], "name": 2069036339}, {"position": [238.0892764932696, 4844.599418579065], "name": 134954292}, {"position": [-12959.560723508901, -10538.850581422565], "name": 135036213}, {"position": [948.1392764882912, 4847.199418577475], "name": 134954298}, {"position": [-3829.9607235074973, 5377.799418578633], "name": 2069036347}, {"position": [7153.889276494851, 3189.699418577163], "name": 1279884604}, {"position": [2436.4392764937293, 4849.349418577731], "name": 134954304}, {"position": [-1945.7107235112403, 3464.549418577434], "name": 2069036353}, {"position": [3164.4892764930432, 4854.3994185763495], "name": 134954306}, {"position": [-6148.46072350872, 502.4994185767184], "name": 2442181955}, {"position": [-6020.21072350567, 504.64941857697454], "name": 2442181956}, {"position": [3889.339276490489, 4856.399418578405], "name": 134954309}, {"position": [5891.78927648959, -294.10058142076423], "name": 1279884614}, {"position": [4610.789276490834, 4858.399418576909], "name": 134954311}, {"position": [4945.839276494724, 4859.399418577937], "name": 134954315}, {"position": [5507.489276489252, 4861.899418578731], "name": 134954318}, {"position": [-3406.9607235096555, 190.29941857695576], "name": 2086776717}, {"position": [-136.56072351153625, -6092.80058142403], "name": 1916976464}, {"position": [-4852.760723508709, 264.04941857904873], "name": 3146595665}, {"position": [-137.5607235090115, -6350.600581424004], "name": 1916976466}, {"position": [5832.5892764941045, -762.2505814239844], "name": 1279884627}, {"position": [-138.46072350531813, -6587.050581423171], "name": 1916976468}, {"position": [-1945.1607235083657, 2892.199418578656], "name": 2069036373}, {"position": [2075.139276492166, -6190.15058142125], "name": 1279884630}, {"position": [6862.339276494822, 6234.999418577303], "name": 2069036377}, {"position": [-7132.110723510721, 6218.399418578712], "name": 1965661530}, {"position": [-1122.360723506688, -6844.00058142387], "name": 1916976477}, {"position": [9646.889276488935, 4791.39941857909], "name": 134954334}, {"position": [7526.889276491033, 3140.199418577794], "name": 1279884639}, {"position": [-7125.460723507615, 6492.749418576694], "name": 1965661536}, {"position": [-141.16072350844888, -6917.650581421241], "name": 1916976481}, {"position": [-1122.4607235078565, -6929.450581420582], "name": 1916976483}, {"position": [-3033.7107235069993, -11458.400581421558], "name": 134946705}, {"position": [-3420.4107235069614, 4007.5994185784225], "name": 2069036395}, {"position": [5844.139276490523, -1095.750581423971], "name": 1279884652}, {"position": [-1204.8107235074212, 4020.9494185781123], "name": 2069036397}, {"position": [-9913.910723511777, 308.19941857629374], "name": 2139774318}, {"position": [-1138.2607235077558, 5388.499418579329], "name": 2358476143}, {"position": [-9914.860723505115, 350.74941857615727], "name": 2139774320}, {"position": [-1859.96072350747, 5385.14941857926], "name": 2358476145}, {"position": [-2049.11072351166, 5384.249418579401], "name": 2358476146}, {"position": [-2616.5607235100197, 5381.649418577439], "name": 2358476147}, {"position": [-1213.160723509077, 5330.59941857772], "name": 2358476148}, {"position": [-1957.5607235111647, 5329.549418576107], "name": 2358476149}, {"position": [7589.239276491355, 3141.3994185776064], "name": 1279884662}, {"position": [-7126.810723505628, 5370.8994185761585], "name": 1965661559}, {"position": [5847.689276492929, 289.44941857744766], "name": 1279884665}, {"position": [260.3392764939372, -4577.450581422227], "name": 1933539479}, {"position": [-7130.81072350974, 5931.799418576134], "name": 1965661565}, {"position": [-7129.460723511727, 5092.29941857825], "name": 1965661566}, {"position": [-7124.110723509602, 3758.7994185770413], "name": 1965661573}, {"position": [950.3892764897159, 4572.999418577694], "name": 2069036425}, {"position": [2450.989276489679, 1529.3494185790735], "name": 134994385}, {"position": [6865.039276490847, 5704.099418576192], "name": 2069036439}, {"position": [5849.839276493185, -6148.100581423677], "name": 2658901914}, {"position": [-7148.21072350702, 3160.9994185792802], "name": 1965661599}, {"position": [-7130.81072350974, 6003.349418577386], "name": 1965661601}, {"position": [9960.589276488463, -4178.0505814230655], "name": 2086854555}, {"position": [-7126.810723505628, 4819.049418578914], "name": 1965661606}, {"position": [-7134.8107235067455, 4545.59941857724], "name": 1965661608}, {"position": [-9280.31072351132, 950.9994185776804], "name": 134959131}, {"position": [-2648.7607235097244, -949.5505814207661], "name": 4719844793}, {"position": [-5708.910723505767, 4273.999418579422], "name": 2286663816}, {"position": [3887.339276488433, 5129.499418575989], "name": 2069036476}, {"position": [-9244.910723509747, 6424.599418576094], "name": 2291095714}, {"position": [-7136.160723504759, 5646.649418576289], "name": 1965661641}, {"position": [-7129.460723511727, 3997.449418577048], "name": 1965661642}, {"position": [9466.239276491706, 3727.799418577149], "name": 2074049995}, {"position": [3162.2392764916185, 5129.499418575989], "name": 2069036496}, {"position": [-1917.5607235055736, -222.50058142248008], "name": 3148258771}, {"position": [-2700.4607235099343, 6232.849418577047], "name": 2068973820}, {"position": [9703.489276489563, 1149.9994185761864], "name": 2074050009}, {"position": [4962.589276495066, 6225.849418576956], "name": 2069036508}, {"position": [6212.839276493298, 6233.999418576275], "name": 2069036510}, {"position": [6142.639276490058, -7717.3005814223925], "name": 1933540833}, {"position": [-2658.8607235069617, -263.100581420872], "name": 3148258786}, {"position": [-3333.5107235075156, 4282.649418577477], "name": 3715980772}, {"position": [7648.939276492683, -7721.300581422952], "name": 1933540837}, {"position": [9637.089276495204, 1101.2994185790603], "name": 2074050025}, {"position": [6448.739276493143, -7740.050581421798], "name": 1933540845}, {"position": [-12967.660723511188, -11100.600581421815], "name": 134967053}, {"position": [-4104.710723510152, 5434.79941857683], "name": 2069376936}, {"position": [6143.089276491764, -7746.000581423828], "name": 1933540850}, {"position": [214.33927648928375, -4148.600581423523], "name": 134975773}, {"position": [6045.339276489869, -7747.550581420626], "name": 1933540854}, {"position": [7941.439276493156, -7752.300581422844], "name": 1933540857}, {"position": [9482.389276492142, 994.4994185779876], "name": 2074050043}, {"position": [7647.389276492333, -7759.90058142284], "name": 1933540860}, {"position": [-5070.06072351146, 5707.249418577476], "name": 2069376938}, {"position": [6143.589276490502, -7781.600581420634], "name": 1933540864}, {"position": [-5396.510723507219, -3406.350581421691], "name": 3146325505}, {"position": [6095.989276488467, -7782.300581421709], "name": 1933540866}, {"position": [9467.589276489718, 4110.84941857709], "name": 2074050051}, {"position": [6045.889276492744, -7783.000581422783], "name": 1933540868}, {"position": [9816.339276490282, 1089.849418576705], "name": 2074050053}, {"position": [9638.239276490878, 937.8994185773593], "name": 2074050054}, {"position": [-1136.5107235050687, 5113.349418579105], "name": 2358476297}, {"position": [-1285.9607235071735, 5112.549418576862], "name": 2358476298}, {"position": [-1862.0107235065575, 5111.349418577049], "name": 2358476300}, {"position": [-2047.5607235113102, 5110.749418577143], "name": 2358476301}, {"position": [-2689.5607235104535, 4560.099418576157], "name": 2069036973}, {"position": [9637.639276490972, 1030.2494185765454], "name": 2074050067}, {"position": [9704.489276494143, 1009.9494185773494], "name": 2074050069}, {"position": [-4094.3607235064405, 4003.6494185784477], "name": 2069036566}, {"position": [8951.239276491662, -1494.5505814232263], "name": 2086854575}, {"position": [9280.58927649289, 1003.0994185790121], "name": 2074050077}, {"position": [2450.339276492741, 1806.1994185778474], "name": 2086723504}, {"position": [6885.239276492428, 3627.3994185762604], "name": 4224950695}, {"position": [-2013.6107235089185, -1485.0005814217582], "name": 2585900621}, {"position": [4594.289276489861, -1241.9005814230388], "name": 135010418}, {"position": [508.6392764894754, -2390.4505814229537], "name": 2568679346}, {"position": [-1707.110723508265, -2369.80058142322], "name": 4719820337}, {"position": [-8588.560723509887, 5924.34941857789], "name": 134982238}, {"position": [-3312.960723505398, -2588.200581421063], "name": 2573122290}, {"position": [-469.1607235116635, -10091.600581422], "name": 135084639}, {"position": [-4172.410723505493, 4552.299418577377], "name": 2069036606}, {"position": [5744.739276494215, -1523.800581423984], "name": 1942224447}, {"position": [9965.489276488881, -3104.500581422087], "name": 885378115}, {"position": [239.7392764947881, -11059.900581422255], "name": 3688816196}, {"position": [-4135.4107235065385, -1263.5005814232159], "name": 135016374}, {"position": [711.3892764891716, -4145.600581423992], "name": 2587024973}, {"position": [529.0892764904243, -11425.600581421946], "name": 3688816206}, {"position": [1276.739276491412, -4238.650581420699], "name": 2587024976}, {"position": [391.83927648878125, -8070.900581422791], "name": 2140986962}, {"position": [638.7892764934122, -11477.000581422202], "name": 3688816211}, {"position": [1277.3392764913183, -4143.65058142252], "name": 2587024981}, {"position": [-323.1107235066588, -7933.30058142061], "name": 2140986966}, {"position": [-4151.310723507606, 1235.0494185788818], "name": 2086776761}, {"position": [-555.860723508772, -1586.7505814206595], "name": 844922460}, {"position": [-2693.0607235087223, 5108.199418579317], "name": 2069036640}, {"position": [1277.3392764913183, -4423.800581420778], "name": 2587024998}, {"position": [155.9892764930737, -4935.80058142129], "name": 1932195840}, {"position": [3153.439276488257, 6256.349418578111], "name": 2069036648}, {"position": [1641.7392764935812, -4478.550581421104], "name": 2587025002}, {"position": [-536.3107235112352, -2774.350581422169], "name": 2568600167}, {"position": [1773.4892764948995, -4477.500581423044], "name": 2587025004}, {"position": [-104.51072351003177, 3209.549418578206], "name": 2069036653}, {"position": [-2615.0607235067014, 4776.999418577788], "name": 2358476398}, {"position": [246.93927649366287, 3457.6994185790963], "name": 2069036655}, {"position": [-4909.810723511044, 4000.499418577164], "name": 2069036656}, {"position": [-6493.510723508678, 4330.599418576498], "name": 2285540627}, {"position": [-4922.810723506644, 6439.899418577255], "name": 2293562998}, {"position": [-5020.660723509707, 6439.449418579102], "name": 2293563000}, {"position": [-5135.8607235059135, 6439.249418576765], "name": 2293563001}, {"position": [4962.639276492098, 6262.399418577757], "name": 2069036666}, {"position": [-5356.510723508734, 6438.149418578121], "name": 2293563003}, {"position": [1007.8892764937564, 6252.299418576968], "name": 2069036668}, {"position": [6559.339276492437, 3346.349418578143], "name": 4224843390}, {"position": [-108.51072350703816, 3743.0994185783106], "name": 2069036672}, {"position": [229.53927648927674, 6248.199418578793], "name": 2069036673}, {"position": [-1516.9607235065996, -2542.2505814205465], "name": 4719820419}, {"position": [5501.689276492527, 5696.099418578626], "name": 2069036676}, {"position": [5563.589276491143, 6227.899418576044], "name": 2069036677}, {"position": [1019.3392764890064, 4573.249418577063], "name": 2069036679}, {"position": [-5355.060723509552, 6396.749418577485], "name": 2293563019}, {"position": [-5135.760723504745, 6391.149418575992], "name": 2293563021}, {"position": [-489.96072350604436, 4899.549418578175], "name": 2358476430}, {"position": [9715.539276491825, -599.250581423405], "name": 134979215}, {"position": [-566.3107235065468, 4899.299418578807], "name": 2358476432}, {"position": [9720.78927649278, -1847.0505814214278], "name": 134979219}, {"position": [9714.889276494887, -2353.450581423999], "name": 134979220}, {"position": [9722.539276488362, -3131.4005814238044], "name": 134979221}, {"position": [9722.139276490794, -3182.4505814235235], "name": 134979222}, {"position": [9725.139276490325, -3661.6005814238406], "name": 134979223}, {"position": [9746.489276494685, -4737.550581420891], "name": 134979224}, {"position": [9747.139276491624, -4971.350581421064], "name": 134979225}, {"position": [9751.089276491599, -5424.350581421322], "name": 134979226}, {"position": [9753.239276491855, -5874.5505814208345], "name": 134979227}, {"position": [2439.8392764908294, 4581.299418578766], "name": 2069036700}, {"position": [-103.16072350491368, 3160.849418577527], "name": 2069036701}, {"position": [9756.439276493722, -6757.500581421993], "name": 134979230}, {"position": [-416.91072350857894, 4783.649418577341], "name": 2358476447}, {"position": [9755.839276493816, -6811.050581422506], "name": 134979232}, {"position": [-489.2107235079379, 4783.399418577972], "name": 2358476449}, {"position": [-566.4107235077154, 4783.099418578018], "name": 2358476450}, {"position": [9760.639276493066, -7698.0005814206725], "name": 134979236}, {"position": [277.33927649364887, -1251.5505814221228], "name": 135016390}, {"position": [9790.13927648964, -8610.60058142371], "name": 134979238}, {"position": [7511.589276489872, 6238.049418577419], "name": 2069036712}, {"position": [-11724.310723508324, 613.7994185770879], "name": 2293202887}, {"position": [9794.63927649249, -9510.900581421567], "name": 134979246}, {"position": [-11657.410723508121, 613.699418579472], "name": 2293202888}, {"position": [-1952.6607235107463, 4562.099418578214], "name": 2069036722}, {"position": [-3427.4107235106044, 5104.5994185763275], "name": 2069036723}, {"position": [4255.989276494176, 5682.249418576646], "name": 2068009814}, {"position": [6981.489276491004, 3261.9494185794906], "name": 3357236917}, {"position": [7007.289276494077, 3256.799418576151], "name": 3357236918}, {"position": [473.68927648960835, -1902.4005814216594], "name": 2586992585}, {"position": [7110.039276490454, 3242.79941857597], "name": 3357236920}, {"position": [-1766.9607235077933, -1850.350581420912], "name": 2585900320}, {"position": [9753.139276490685, -6098.000581420848], "name": 2086862795}, {"position": [-5020.310723509169, 6225.649418578172], "name": 2293563076}, {"position": [-5204.460723511773, 6222.549418577472], "name": 2293563079}, {"position": [-6657.110723509163, -3680.1005814233176], "name": 3357236936}, {"position": [9704.039276492438, 1074.8994185760807], "name": 2074050038}, {"position": [-1114.560723507907, -2564.400581423598], "name": 2568600183}, {"position": [-3832.7107235076596, 4829.749418576057], "name": 2069036749}, {"position": [936.3392764925038, 6251.949418576431], "name": 2069036751}, {"position": [-9275.360723506765, -11309.150581421789], "name": 2184814290}, {"position": [-9275.360723506765, -11354.200581422447], "name": 2184814291}, {"position": [7517.239276488397, 5145.749418577594], "name": 2069036756}, {"position": [-2686.0607235050793, 4010.7994185767384], "name": 2069036759}, {"position": [9641.339276491579, 424.39941857708163], "name": 134979288}, {"position": [9643.839276492372, -118.15058142161661], "name": 134979290}, {"position": [6867.78927649101, 5143.699418578507], "name": 2069036764}, {"position": [9646.339276493165, -663.6005814222301], "name": 134979293}, {"position": [6099.539276490873, -1733.1005814220646], "name": 2086854369}, {"position": [9650.83927648891, -1727.60058142174], "name": 134979299}, {"position": [6937.039276493806, 3913.749418579471], "name": 4224843493}, {"position": [-484.3607235116565, 4020.9494185781123], "name": 2069036774}, {"position": [8268.58927648999, -2590.6505814212724], "name": 2086854375}, {"position": [9657.639276490216, -3131.4005814238044], "name": 134979305}, {"position": [-3423.91072350523, 4555.3494185774925], "name": 2069036778}, {"position": [10344.839276491768, -1589.9505814225279], "name": 2086854379}, {"position": [426.3392764940477, -1933.3005814239357], "name": 2586992594}, {"position": [8975.08927648971, -394.3505814234527], "name": 2086854382}, {"position": [9657.739276491384, -3183.1005814240143], "name": 134979311}, {"position": [-1956.160723509015, 5111.249418579433], "name": 2069036787}, {"position": [9671.03927649049, -4178.550581421803], "name": 134979316}, {"position": [-8588.26072350638, 5998.749418576921], "name": 2139774710}, {"position": [-1954.7107235098338, -1815.850581422751], "name": 2585900329}, {"position": [9682.389276491676, -4971.900581423938], "name": 134979322}, {"position": [8945.839276492507, -2586.6005814236814], "name": 2086854395}, {"position": [7195.789276494224, -2321.100581422542], "name": 2086854396}, {"position": [8508.689276489178, -3437.1005814222144], "name": 2086854397}, {"position": [9685.839276492914, -5875.000581422541], "name": 134979326}, {"position": [9683.689276492658, -6758.800581422975], "name": 134979331}, {"position": [6104.789276491829, -8167.100581420783], "name": 1933541124}, {"position": [407.23927649111147, -1945.9505814225508], "name": 2586992598}, {"position": [7327.939276493112, -4320.050581423374], "name": 2086854406}, {"position": [10050.439276490408, -1332.9005814206596], "name": 2086854408}, {"position": [-2019.0607235051061, -1817.8505814212542], "name": 2585900332}, {"position": [-2682.6107235109475, 3461.849418577856], "name": 2069036811}, {"position": [-5018.460723505314, 5866.499418576865], "name": 2293563148}, {"position": [7545.839276488664, -2592.7005814239124], "name": 2086854413}, {"position": [7329.939276495168, -5223.2505814231445], "name": 2086854414}, {"position": [6824.689276491825, -2923.5505814213525], "name": 2086854415}, {"position": [9717.839276490282, -8614.5005814231], "name": 134979345}, {"position": [8812.989276492544, 5712.199418578479], "name": 2069036820}, {"position": [8258.989276491491, -944.4505814215631], "name": 2086854421}, {"position": [7536.8892764942075, -950.550581421794], "name": 2086854422}, {"position": [10416.589276488252, -390.250581421725], "name": 2086854423}, {"position": [-12988.910723507273, -2346.2005814209874], "name": 2214680673}, {"position": [8515.93927649219, -4730.050581422063], "name": 2086854428}, {"position": [-1211.7607235069272, 5112.999418578567], "name": 2069036831}, {"position": [8947.639276492226, -3063.0005814238357], "name": 2086854432}, {"position": [8512.789276494459, -3814.65058142183], "name": 2086854433}, {"position": [-563.660723507553, 4567.449418576785], "name": 2358476580}, {"position": [-1282.4607235089047, 4565.04941857716], "name": 2358476581}, {"position": [8255.539276490254, -394.5505814222372], "name": 2086854438}, {"position": [-1133.060723510937, 4565.399418577698], "name": 2358476583}, {"position": [-1201.3107235091525, 3467.249418577012], "name": 2069036840}, {"position": [9406.689276488578, -4972.800581423798], "name": 2086854442}, {"position": [6042.23927648917, -7289.500581421748], "name": 1933539975}, {"position": [9414.839276495002, -6761.650581420753], "name": 2086854447}, {"position": [-1208.2607235086584, 4565.099418577745], "name": 2069036849}, {"position": [3878.7892764915455, 6258.399418577199], "name": 2069036850}, {"position": [10028.18927648974, -3660.4505814210597], "name": 2086854452}, {"position": [6823.339276493812, -2596.750581421503], "name": 2086854454}, {"position": [-3418.110723508505, 3457.1994185768062], "name": 2069036856}, {"position": [10353.389276488655, -2602.850581421734], "name": 2086854457}, {"position": [-10577.360723509344, 5353.999418577615], "name": 134995770}, {"position": [-2622.710723507282, 6449.0494185776015], "name": 2351111997}, {"position": [7899.339276491446, -1218.1005814220214], "name": 2086854462}, {"position": [9116.18927649016, -4309.900581421999], "name": 2086854465}, {"position": [6814.439276489282, -952.6005814208816], "name": 2086854466}, {"position": [-4165.460723505987, 3454.5494185778125], "name": 2069036868}, {"position": [-1949.210723509509, 4016.9494185775534], "name": 2069036870}, {"position": [7928.089276489914, -4315.950581421646], "name": 2086854472}, {"position": [-9256.910723507872, -10569.200581421966], "name": 2080739054}, {"position": [5562.339276494299, 6489.899418578915], "name": 135018884}, {"position": [6095.789276493235, 5143.699418578507], "name": 2069036875}, {"position": [10349.589276493987, -2099.4505814222466], "name": 2086854478}, {"position": [7904.689276493571, -2318.350581422379], "name": 2086854480}, {"position": [8626.189276490948, -2858.000581422715], "name": 2086854482}, {"position": [-10166.760723507196, 4530.2494185790465], "name": 2293563363}, {"position": [9408.589276489465, -5426.800581421531], "name": 2086854484}, {"position": [6162.289276488764, -5235.450581423606], "name": 2086854485}, {"position": [4272.989276493889, 968.149418579145], "name": 2086723556}, {"position": [6824.489276489487, -3002.7005814226013], "name": 2086854491}, {"position": [-4104.010723509077, 5940.79941857828], "name": 2068973833}, {"position": [2486.7392764917895, -958.0505814206219], "name": 2086715230}, {"position": [887.8392764941623, -698.6005814226814], "name": 2086715232}, {"position": [7927.489276490007, -5215.100581423826], "name": 2086854498}, {"position": [9959.23927649045, -3921.1505814229495], "name": 2086854499}, {"position": [7335.9392764942295, -5671.700581423522], "name": 2086854500}, {"position": [7926.3892764913635, -4736.10058142171], "name": 2086854501}, {"position": [3783.8892764909815, 716.0494185782795], "name": 2086723430}, {"position": [5088.339276490216, 2366.4994185779165], "name": 2086723431}, {"position": [6811.339276488581, -402.4505814221868], "name": 2086854507}, {"position": [9645.089276489216, -394.3505814234527], "name": 2086854508}, {"position": [1754.3892764919633, -963.6505814221152], "name": 2086715245}, {"position": [269.73927649009966, -424.30058142173266], "name": 2086715247}, {"position": [7545.5392764922635, -3002.7005814226013], "name": 2086854513}, {"position": [-4851.910723509434, 109.0994185766192], "name": 2086776712}, {"position": [9959.23927649045, -3660.7505814210126], "name": 2086854515}, {"position": [4588.289276490797, 2912.499418577852], "name": 2069036916}, {"position": [259.0892764899877, 1247.1994185787594], "name": 2086723445}, {"position": [1004.4892764895508, 707.5494185784237], "name": 2086723447}, {"position": [2449.439276489329, 2354.499418576239], "name": 2086723449}, {"position": [10047.789276491414, -929.0005814222013], "name": 2086854523}, {"position": [9615.739276490842, 5750.449418577829], "name": 2074042346}, {"position": [7899.839276490184, -1488.9005814211487], "name": 2086854526}, {"position": [3912.839276495106, 718.099418577367], "name": 2086723455}, {"position": [1730.9892764885149, 2359.399418576658], "name": 2086723457}, {"position": [5508.539276490865, 2918.599418578083], "name": 2069036930}, {"position": [-10214.11072350986, 5356.39941857724], "name": 134967275}, {"position": [8508.389276492779, -3400.550581421413], "name": 2086854532}, {"position": [3185.2392764903925, 1258.0994185782401], "name": 2086723461}, {"position": [6141.83927649492, -5679.900581423425], "name": 2086854534}, {"position": [10031.689276495115, -3401.1505814213197], "name": 2086854535}, {"position": [4265.989276490245, 1572.0494185771372], "name": 2086723464}, {"position": [7323.4892764944, -3404.6005814225564], "name": 2086854537}, {"position": [1741.4892764904266, 707.9494185759927], "name": 2086723466}, {"position": [-1947.4107235097904, 3736.3994185781735], "name": 135019159}, {"position": [8161.089276491395, 6237.04941857639], "name": 2069036941}, {"position": [9647.589276490009, -938.3505814213322], "name": 2086854544}, {"position": [8163.789276494526, 5708.149418577335], "name": 2069036945}, {"position": [2455.4392764883914, 1254.0494185770967], "name": 2086723474}, {"position": [10023.63927648986, -1846.6005814232744], "name": 2086854548}, {"position": [-10218.460723507405, 5674.999418577187], "name": 134967278}, {"position": [8226.839276488818, 3723.3994185790207], "name": 135036822}, {"position": [8953.839276493625, 3725.8994185762617], "name": 135036824}, {"position": [4608.689276494715, 5134.599418578745], "name": 2069036953}, {"position": [4028.889276490588, 2364.499418579413], "name": 2086723482}, {"position": [9621.839276491073, 3728.3994185770553], "name": 135036827}, {"position": [6088.639276491393, -404.5005814212743], "name": 2086854556}, {"position": [1720.4892764937085, 4573.199418576479], "name": 2069036959}, {"position": [10419.889276491289, -928.2005814235106], "name": 2086854560}, {"position": [3187.989276490555, 709.9994185786329], "name": 2086723490}, {"position": [-7074.160723504974, 3758.8494185776253], "name": 135036835}, {"position": [8631.539276493073, -2588.5005814210162], "name": 2086854564}, {"position": [-491.31072351116245, 5116.049418578683], "name": 2069036966}, {"position": [9120.639276488873, -3430.600581420862], "name": 2086854567}, {"position": [8973.839276492869, -940.4005814239724], "name": 2086854568}, {"position": [9723.489276488806, -3400.550581421413], "name": 2086854569}, {"position": [5360.18927649451, 137.2994185793175], "name": 2086723498}, {"position": [255.58927649171892, 1798.9994185789726], "name": 2086723499}, {"position": [10012.889276488579, -1332.8005814230437], "name": 2086854572}, {"position": [676.5892764946102, -1984.450581421271], "name": 2586992557}, {"position": [677.9392764926229, -1847.5005814231338], "name": 2586992558}, {"position": [896.2892764898811, -1846.4505814215215], "name": 2586992559}, {"position": [677.9392764926229, -1888.1005814215257], "name": 2586992560}, {"position": [895.1892764912373, -1888.1005814215257], "name": 2586992561}, {"position": [-2125.6607235073943, -11168.600581420662], "name": 134946738}, {"position": [677.3892764897482, -1928.7005814234703], "name": 2586992563}, {"position": [262.5392764912249, 704.8494185788456], "name": 2086723508}, {"position": [484.8392764884579, -1895.2005814227846], "name": 2586992567}, {"position": [9623.139276492055, 3476.999418577265], "name": 2086776820}, {"position": [-4168.960723511362, 4004.449418577138], "name": 2069036987}, {"position": [5515.839276490908, 724.0494185793978], "name": 2086723516}, {"position": [-2577.510723504872, -3610.600581421153], "name": 1428266943}, {"position": [9752.13927649321, -5647.450581420799], "name": 2086862784}, {"position": [348.939276491933, -1932.3005814229077], "name": 2586992577}, {"position": [499.5892764938503, -1811.8005814216076], "name": 2586992578}, {"position": [411.08927648991767, -1811.9005814227762], "name": 2586992579}, {"position": [584.0392764895341, -1811.7005814239917], "name": 2586992580}, {"position": [545.3892764890611, -1848.4005814229931], "name": 2586992581}, {"position": [679.2892764906355, -1811.5505814222388], "name": 2586992582}, {"position": [645.7392764929182, -1848.500581420609], "name": 2586992583}, {"position": [618.9392764923696, -1811.6505814234074], "name": 2586992584}, {"position": [3580.6892764895792, 1807.1994185788753], "name": 2086723529}, {"position": [429.53927648881063, -1867.8005814223297], "name": 2586992587}, {"position": [-10578.060723510418, 5083.299418576104], "name": 2293563340}, {"position": [1734.5392764909207, 1802.149418576704], "name": 2086723533}, {"position": [4590.389276494023, 2366.4994185779165], "name": 2086723534}, {"position": [-11125.11072350486, 395.69941857919844], "name": 2293202896}, {"position": [-12586.160723508045, 335.8494185761174], "name": 2293202897}, {"position": [3182.539276494367, 1808.2494185769349], "name": 2086723538}, {"position": [6092.539276494335, 5699.999418578017], "name": 2069037011}, {"position": [345.3392764924956, -1865.9005814214424], "name": 2586992596}, {"position": [677.1392764903794, -1947.0005814206104], "name": 2586992597}, {"position": [-465.2607235087203, 1796.3494185764262], "name": 2086723542}, {"position": [-9302.560723504883, 4538.499418575981], "name": 2293563352}, {"position": [-9382.61072350599, 4538.299418577197], "name": 2293563353}, {"position": [239.83927648885128, 4570.399418579285], "name": 2069037023}, {"position": [-1218.4607235070644, 6240.299418578843], "name": 2069037025}, {"position": [-12329.610723504913, 192.29941857901167], "name": 2293202914}, {"position": [2432.08927648908, 5129.699418578326], "name": 2069037027}, {"position": [-12216.660723510131, 170.49941857649742], "name": 2293202916}, {"position": [4961.339276491117, 6487.399418578121], "name": 135064230}, {"position": [9837.889276489876, -8665.150581421698], "name": 1930503505}, {"position": [-461.7607235104515, 1244.5994185767972], "name": 2086723560}, {"position": [4271.039276488864, 2078.6994185790772], "name": 2086723561}, {"position": [-12105.8607235085, 145.0494185775142], "name": 2293202922}, {"position": [-2620.2107235064886, 6014.049418578083], "name": 2703728619}, {"position": [-11657.510723509291, 339.09941857857007], "name": 134971372}, {"position": [-5019.710723509263, 6005.649418579395], "name": 2703728621}, {"position": [-569.1607235078777, 5449.349418576332], "name": 2703728622}, {"position": [-566.6607235070842, 5115.74941857873], "name": 2703728623}, {"position": [-3832.410723511259, 4887.349418577714], "name": 2703728624}, {"position": [-1854.9107235088513, 4562.549418576367], "name": 2703728625}, {"position": [-11723.960723507787, 338.0494185769578], "name": 134971378}, {"position": [-3330.9607235096905, 3785.6994185787585], "name": 2703728628}, {"position": [3180.4392764911427, 2354.199418576286], "name": 2086723573}, {"position": [-11938.510723510375, 99.94941857627282], "name": 2293202934}, {"position": [-11948.860723506983, 90.24941857660451], "name": 2293202935}, {"position": [945.8392764898349, 5127.499418577486], "name": 2069037048}, {"position": [1737.9892764921578, 1256.0494185791526], "name": 2086723577}, {"position": [8425.589276491508, -11411.200581420644], "name": 1394286587}]}'); -const EIFFEL_TOWER_MAP = JSON.parse('{"edges": [{"length": 28.9464600819, "destination": 3422228449, "source": 3422228418, "path": [[-20.59999999981521, -80.70624999945153], [-14.049999999876661, -85.15625000171667], [17.850000000096955, -106.7062500013094], [69.2500000001317, -143.60624999909533], [134.35000000017183, -152.95625000177893]]}, {"length": 26.9593712925, "destination": 3422228451, "source": 3422228418, "path": [[-20.59999999981521, -80.70624999945153], [-106.24999999975238, -135.2562500009924], [-117.04999999984089, -142.15624999991405], [-152.64999999975436, -165.25624999985666]]}, {"length": 17.8616733144, "destination": 3422228409, "source": 3422228418, "path": [[-20.59999999981521, -80.70624999945153], [35.55000000021735, -47.40625000110299], [68.75000000006182, -26.006249999710462]]}, {"length": 13.7312214545, "destination": 653598360, "source": 3422228483, "path": [[-228.0999999997313, -257.2062500014738], [-292.5999999998652, -302.05624999979364]]}, {"length": 47.4757848643, "destination": 3422228426, "source": 3422228483, "path": [[-228.0999999997313, -257.2062500014738], [-452.09999999973326, -102.75625000133459]]}, {"length": 28.2538049363, "destination": 3422228451, "source": 3422228483, "path": [[-228.0999999997313, -257.2062500014738], [-206.24999999974136, -242.0062500014808], [-123.749999999756, -185.2062499985152], [-152.64999999975436, -165.25624999985666]]}, {"length": 23.1296292072, "destination": 3134287620, "source": 3134287620, "path": [[152.30000000010511, -5.156250001192575], [134.60000000020676, -4.906250001823764], [135.6000000001245, 23.74374999902784], [171.05000000006143, 23.24375000029022], [170.0500000001437, -5.4562500011456905], [152.30000000010511, -5.156250001192575]]}, {"length": 23.1296292072, "destination": 3134287620, "source": 3134287620, "path": [[152.30000000010511, -5.156250001192575], [170.0500000001437, -5.4562500011456905], [171.05000000006143, 23.24375000029022], [135.6000000001245, 23.74374999902784], [134.60000000020676, -4.906250001823764], [152.30000000010511, -5.156250001192575]]}, {"length": 13.0359173919, "destination": 3134287610, "source": 3134287620, "path": [[152.30000000010511, -5.156250001192575], [154.5500000001976, 53.44375000149171]]}, {"length": 28.6549356532, "destination": 3134287628, "source": 3134287620, "path": [[152.30000000010511, -5.156250001192575], [152.75000000025685, -134.00625000059563]]}, {"length": 12.5666688032, "destination": 653598360, "source": 177215574, "path": [[-352.0999999997443, -261.3062499996488], [-292.5999999998652, -302.05624999979364]]}, {"length": 11.0345850362, "destination": 205086385, "source": 177215574, "path": [[-352.0999999997443, -261.3062499996488], [-406.4499999998361, -295.7062500001939]]}, {"length": 22.5581050218, "destination": 177215574, "source": 281774796, "path": [[-458.7499999997302, -188.05624999984616], [-352.0999999997443, -261.3062499996488]]}, {"length": 47.4757848643, "destination": 3422228483, "source": 3422228426, "path": [[-452.09999999973326, -102.75625000133459], [-228.0999999997313, -257.2062500014738]]}, {"length": 13.5515133511, "destination": 653598358, "source": 3422228426, "path": [[-452.09999999973326, -102.75625000133459], [-519.3499999998074, -144.6562500007076]]}, {"length": 97.177070865, "destination": 654054735, "source": 3422228426, "path": [[-452.09999999973326, -102.75625000133459], [-430.99999999984817, -89.6562500010134], [-171.3499999997925, 75.44374999923775], [-127.99999999990597, 102.9937500014455], [24.150000000222605, 201.79375000139999]]}, {"length": 6.86748449182, "destination": 3422228449, "source": 3134287628, "path": [[152.75000000025685, -134.00625000059563], [135.00000000021828, -133.75625000122682], [134.35000000017183, -152.95625000177893]]}, {"length": 15.8967922447, "destination": 3422228449, "source": 3134287628, "path": [[152.75000000025685, -134.00625000059563], [170.4500000001552, -134.25624999996444], [169.50000000015564, -162.1062499985726], [134.05000000021872, -161.60624999983497], [134.35000000017183, -152.95625000177893]]}, {"length": 28.6549356532, "destination": 3134287620, "source": 3134287628, "path": [[152.75000000025685, -134.00625000059563], [152.30000000010511, -5.156250001192575]]}, {"length": 46.0985578152, "destination": 654054737, "source": 654054735, "path": [[24.150000000222605, 201.79375000139999], [244.20000000024976, 53.44375000149171]]}, {"length": 97.177070865, "destination": 3422228426, "source": 654054735, "path": [[24.150000000222605, 201.79375000139999], [-127.99999999990597, 102.9937500014455], [-171.3499999997925, 75.44374999923775], [-430.99999999984817, -89.6562500010134], [-452.09999999973326, -102.75625000133459]]}, {"length": 75.9299823755, "destination": 133129379, "source": 654054735, "path": [[24.150000000222605, 201.79375000139999], [216.9500000002156, 322.3437499997317], [257.00000000017377, 347.1937499988087], [367.70000000019286, 415.443750000577], [401.40000000010724, 436.24374999851057]]}, {"length": 60.4983420376, "destination": 133129946, "source": 654054735, "path": [[24.150000000222605, 201.79375000139999], [-80.89999999993935, 204.84375000151545], [-205.34999999988202, 225.49375000124883], [-289.74999999986653, 248.49375000002283], [-345.2499999998526, 251.5437500001383], [-377.84999999979084, 248.49375000002283]]}, {"length": 82.7081429789, "destination": 133129946, "source": 654054735, "path": [[24.150000000222605, 201.79375000139999], [-18.89999999993286, 244.49374999946372], [-104.94999999988153, 286.84375000054274], [-147.4499999998269, 300.8437500007233], [-192.6999999999346, 327.29375000073446], [-225.09999999975605, 346.24374999836505], [-238.69999999992507, 343.2937499994182], [-259.84999999972837, 309.4937499987793], [-301.7999999999077, 285.24374999960855], [-350.29999999980356, 278.4437499983028], [-377.84999999979084, 248.49375000002283]]}, {"length": 75.3516663044, "destination": 368288, "source": 654054737, "path": [[244.20000000024976, 53.44375000149171], [437.35000000011405, 173.19375000113268], [475.2500000002602, 196.5437500004441], [586.2500000002324, 265.89375000085624], [618.6000000001357, 286.0937499988836]]}, {"length": 63.3612206976, "destination": 133130095, "source": 654054737, "path": [[244.20000000024976, 53.44375000149171], [263.5500000001123, -15.65624999955162], [251.40000000023477, -119.60624999929337], [304.95000000008156, -158.3062500003507], [328.800000000129, -214.20624999990423]]}, {"length": 83.737738503, "destination": 3422228451, "source": 654054737, "path": [[244.20000000024976, 53.44375000149171], [34.300000000264674, -6.8562499997426585], [11.100000000263677, -21.65624999861393], [-181.49999999983459, -145.30625000119812], [-152.64999999975436, -165.25624999985666]]}, {"length": 46.0985578152, "destination": 654054735, "source": 654054737, "path": [[244.20000000024976, 53.44375000149171], [24.150000000222605, 201.79375000139999]]}, {"length": 83.737738503, "destination": 654054737, "source": 3422228451, "path": [[-152.64999999975436, -165.25624999985666], [-181.49999999983459, -145.30625000119812], [11.100000000263677, -21.65624999861393], [34.300000000264674, -6.8562499997426585], [244.20000000024976, 53.44375000149171]]}, {"length": 26.9593712925, "destination": 3422228418, "source": 3422228451, "path": [[-152.64999999975436, -165.25624999985666], [-117.04999999984089, -142.15624999991405], [-106.24999999975238, -135.2562500009924], [-20.59999999981521, -80.70624999945153]]}, {"length": 28.2538049363, "destination": 3422228483, "source": 3422228451, "path": [[-152.64999999975436, -165.25624999985666], [-123.749999999756, -185.2062499985152], [-206.24999999974136, -242.0062500014808], [-228.0999999997313, -257.2062500014738]]}, {"length": 8.24299816152, "destination": 133129379, "source": 133052180, "path": [[441.8500000000769, 462.0437499980312], [401.40000000010724, 436.24374999851057]]}, {"length": 46.0402589245, "destination": 133129373, "source": 133052180, "path": [[441.8500000000769, 462.0437499980312], [658.8000000000704, 312.09375000074147]]}, {"length": 10.6514000998, "destination": 133129405, "source": 133052180, "path": [[441.8500000000769, 462.0437499980312], [393.7500000001926, 497.9937499989262]]}, {"length": 13.5515133511, "destination": 3422228426, "source": 653598358, "path": [[-519.3499999998074, -144.6562500007076], [-452.09999999973326, -102.75625000133459]]}, {"length": 13.1059043072, "destination": 281774796, "source": 653598358, "path": [[-519.3499999998074, -144.6562500007076], [-458.7499999997302, -188.05624999984616]]}, {"length": 13.7312214545, "destination": 3422228483, "source": 653598360, "path": [[-292.5999999998652, -302.05624999979364], [-228.0999999997313, -257.2062500014738]]}, {"length": 82.7081429789, "destination": 654054735, "source": 133129946, "path": [[-377.84999999979084, 248.49375000002283], [-350.29999999980356, 278.4437499983028], [-301.7999999999077, 285.24374999960855], [-259.84999999972837, 309.4937499987793], [-238.69999999992507, 343.2937499994182], [-225.09999999975605, 346.24374999836505], [-192.6999999999346, 327.29375000073446], [-147.4499999998269, 300.8437500007233], [-104.94999999988153, 286.84375000054274], [-18.89999999993286, 244.49374999946372], [24.150000000222605, 201.79375000139999]]}, {"length": 60.4983420376, "destination": 654054735, "source": 133129946, "path": [[-377.84999999979084, 248.49375000002283], [-345.2499999998526, 251.5437500001383], [-289.74999999986653, 248.49375000002283], [-205.34999999988202, 225.49375000124883], [-80.89999999993935, 204.84375000151545], [24.150000000222605, 201.79375000139999]]}, {"length": 8.24791690776, "destination": 368288, "source": 133129373, "path": [[658.8000000000704, 312.09375000074147], [618.6000000001357, 286.0937499988836]]}, {"length": 46.0402589245, "destination": 133052180, "source": 133129373, "path": [[658.8000000000704, 312.09375000074147], [441.8500000000769, 462.0437499980312]]}, {"length": 75.3516663044, "destination": 654054737, "source": 368288, "path": [[618.6000000001357, 286.0937499988836], [586.2500000002324, 265.89375000085624], [475.2500000002602, 196.5437500004441], [437.35000000011405, 173.19375000113268], [244.20000000024976, 53.44375000149171]]}, {"length": 8.24791690776, "destination": 133129373, "source": 368288, "path": [[618.6000000001357, 286.0937499988836], [658.8000000000704, 312.09375000074147]]}, {"length": 28.9464600819, "destination": 3422228418, "source": 3422228449, "path": [[134.35000000017183, -152.95625000177893], [69.2500000001317, -143.60624999909533], [17.850000000096955, -106.7062500013094], [-14.049999999876661, -85.15625000171667], [-20.59999999981521, -80.70624999945153]]}, {"length": 6.86748449182, "destination": 3134287628, "source": 3422228449, "path": [[134.35000000017183, -152.95625000177893], [135.00000000021828, -133.75625000122682], [152.75000000025685, -134.00625000059563]]}, {"length": 15.8967922447, "destination": 3134287628, "source": 3422228449, "path": [[134.35000000017183, -152.95625000177893], [134.05000000021872, -161.60624999983497], [169.50000000015564, -162.1062499985726], [170.4500000001552, -134.25624999996444], [152.75000000025685, -134.00625000059563]]}, {"length": 46.0975802541, "destination": 368288, "source": 133129379, "path": [[401.40000000010724, 436.24374999851057], [618.6000000001357, 286.0937499988836]]}, {"length": 8.24299816152, "destination": 133052180, "source": 133129379, "path": [[401.40000000010724, 436.24374999851057], [441.8500000000769, 462.0437499980312]]}, {"length": 75.9299823755, "destination": 654054735, "source": 133129379, "path": [[401.40000000010724, 436.24374999851057], [367.70000000019286, 415.443750000577], [257.00000000017377, 347.1937499988087], [216.9500000002156, 322.3437499997317], [24.150000000222605, 201.79375000139999]]}, {"length": 10.9690486879, "destination": 281774796, "source": 281774765, "path": [[-513.6999999997282, -221.60625000111622], [-458.7499999997302, -188.05624999984616]]}, {"length": 63.3612206976, "destination": 654054737, "source": 133130095, "path": [[328.800000000129, -214.20624999990423], [304.95000000008156, -158.3062500003507], [251.40000000023477, -119.60624999929337], [263.5500000001123, -15.65624999955162], [244.20000000024976, 53.44375000149171]]}, {"length": 22.7552131129, "destination": 281774765, "source": 205086385, "path": [[-406.4499999998361, -295.7062500001939], [-513.6999999997282, -221.60625000111622]]}, {"length": 17.8616733144, "destination": 3422228418, "source": 3422228409, "path": [[68.75000000006182, -26.006249999710462], [35.55000000021735, -47.40625000110299], [-20.59999999981521, -80.70624999945153]]}, {"length": 23.1309233887, "destination": 3134287610, "source": 3134287610, "path": [[154.5500000001976, 53.44375000149171], [136.4500000000657, 53.64375000027621], [137.20000000017052, 82.34374999815941], [172.65000000010744, 81.8937500000061], [171.90000000022465, 53.24374999915449], [154.5500000001976, 53.44375000149171]]}, {"length": 23.1309233887, "destination": 3134287610, "source": 3134287610, "path": [[154.5500000001976, 53.44375000149171], [171.90000000022465, 53.24374999915449], [172.65000000010744, 81.8937500000061], [137.20000000017052, 82.34374999815941], [136.4500000000657, 53.64375000027621], [154.5500000001976, 53.44375000149171]]}, {"length": 13.0359173919, "destination": 3134287620, "source": 3134287610, "path": [[154.5500000001976, 53.44375000149171], [152.30000000010511, -5.156250001192575]]}, {"length": 10.6514000998, "destination": 133052180, "source": 133129405, "path": [[393.7500000001926, 497.9937499989262], [441.8500000000769, 462.0437499980312]]}], "vertices": [{"name": 3422228418, "position": [-20.59999999981521, -80.70624999945153]}, {"name": 3422228483, "position": [-228.0999999997313, -257.2062500014738]}, {"name": 3134287620, "position": [152.30000000010511, -5.156250001192575]}, {"name": 177215574, "position": [-352.0999999997443, -261.3062499996488]}, {"name": 3134287628, "position": [152.75000000025685, -134.00625000059563]}, {"name": 3422228426, "position": [-452.09999999973326, -102.75625000133459]}, {"name": 281774796, "position": [-458.7499999997302, -188.05624999984616]}, {"name": 654054735, "position": [24.150000000222605, 201.79375000139999]}, {"name": 654054737, "position": [244.20000000024976, 53.44375000149171]}, {"name": 133129379, "position": [401.40000000010724, 436.24374999851057]}, {"name": 133052180, "position": [441.8500000000769, 462.0437499980312]}, {"name": 653598358, "position": [-519.3499999998074, -144.6562500007076]}, {"name": 653598360, "position": [-292.5999999998652, -302.05624999979364]}, {"name": 133129946, "position": [-377.84999999979084, 248.49375000002283]}, {"name": 133129373, "position": [658.8000000000704, 312.09375000074147]}, {"name": 368288, "position": [618.6000000001357, 286.0937499988836]}, {"name": 3422228449, "position": [134.35000000017183, -152.95625000177893]}, {"name": 3422228451, "position": [-152.64999999975436, -165.25624999985666]}, {"name": 281774765, "position": [-513.6999999997282, -221.60625000111622]}, {"name": 133130095, "position": [328.800000000129, -214.20624999990423]}, {"name": 205086385, "position": [-406.4499999998361, -295.7062500001939]}, {"name": 3422228409, "position": [68.75000000006182, -26.006249999710462]}, {"name": 3134287610, "position": [154.5500000001976, 53.44375000149171]}, {"name": 133129405, "position": [393.7500000001926, 497.9937499989262]}]}'); -const EIFFEL_TOWER_MAP_LARGE = JSON.parse('{"edges": [{"length": 38.5379708804, "source": 160018434, "path": [[567.5020224737981, 1386.9508988513246], [713.5520224736957, 1484.4008988532664], [752.4020224736195, 1510.35089885454]], "destination": 21378257}, {"length": 61.6980983438, "source": 160018434, "path": [[567.5020224737981, 1386.9508988513246], [661.5020224736146, 1116.5008988527347]], "destination": 133129542}, {"length": 13.7312214545, "source": 3422228483, "path": [[-445.0479775262028, -494.54910114832273], [-509.54797752633675, -539.3991011466426]], "destination": 653598360}, {"length": 47.4757848643, "source": 3422228483, "path": [[-445.0479775262028, -494.54910114832273], [-669.0479775262048, -340.09910114818354]], "destination": 3422228426}, {"length": 28.2538049363, "source": 3422228483, "path": [[-445.0479775262028, -494.54910114832273], [-423.1979775262129, -479.34910114832974], [-340.69797752622753, -422.54910114536415], [-369.5979775262259, -402.5991011467056]], "destination": 3422228451}, {"length": 63.2546455829, "source": 3422228483, "path": [[-445.0479775262028, -494.54910114832273], [-146.54797752622352, -700.2991011475501]], "destination": 133130069}, {"length": 118.411991328, "source": 146696196, "path": [[-2921.347977526301, -1733.9491011476582], [-3012.797977526294, -1761.6491011480662], [-3082.5479775262734, -1721.0491011461215], [-2639.847977526255, -1439.6991011480509]], "destination": 654050361}, {"length": 33.7591250775, "source": 146696196, "path": [[-2921.347977526301, -1733.9491011476582], [-2759.1979775263285, -1841.9491011485434]], "destination": 305911690}, {"length": 182.693752624, "source": 146696196, "path": [[-2921.347977526301, -1733.9491011476582], [-2914.0979775263977, -1697.69910114681], [-2193.447977526297, -1233.0491011454114], [-2060.9979775263464, -1148.9491011467123]], "destination": 470187}, {"length": 104.436721474, "source": 21378261, "path": [[-1270.3479775262317, 2535.900898852361], [-1654.4979775263703, 2890.7508988531563], [-1684.3979775262862, 2918.4008988529795]], "destination": 21378262}, {"length": 53.8643339489, "source": 36487176, "path": [[3131.7020224737034, 846.9508988540042], [3080.4020224737274, 880.6508988534745], [2871.302022473765, 1018.1508988544863]], "destination": 204829757}, {"length": 87.6765463948, "source": 36487176, "path": [[3131.7020224737034, 846.9508988540042], [3091.802022473722, 822.0008988537586], [2781.102022473725, 605.3508988514977], [2714.4020224736387, 564.2008988537839]], "destination": 4389621615}, {"length": 15.7872799631, "source": 146724602, "path": [[-2963.297977526258, -1505.8491011465946], [-2886.3979775262114, -1555.6491011459173]], "destination": 654050360}, {"length": 29.268764611, "source": 146724602, "path": [[-2963.297977526258, -1505.8491011465946], [-2819.9479775263826, -1414.0491011467304]], "destination": 654050370}, {"length": 55.025464192, "source": 146724602, "path": [[-2963.297977526258, -1505.8491011465946], [-3232.847977526321, -1678.399101148642]], "destination": 146724604}, {"length": 23.4964714917, "source": 270731274, "path": [[-874.3979775263089, -3156.049101146863], [-724.5979775263312, -3194.149101148014]], "destination": 929534666}, {"length": 41.1849118586, "source": 270731274, "path": [[-874.3979775263089, -3156.049101146863], [-700.0479775263191, -3010.649101145901]], "destination": 270731367}, {"length": 32.6359793197, "source": 666950999, "path": [[4504.702022473773, -234.24910114755448], [4439.052022473744, -374.49910114872864]], "destination": 368273}, {"length": 42.433199176, "source": 133128985, "path": [[2216.652022473786, 1495.5008988515317], [2093.402022473656, 1548.100898851601], [1953.5520224736035, 1568.000898853228]], "destination": 133129161}, {"length": 24.0975226416, "source": 133128985, "path": [[2216.652022473786, 1495.5008988515317], [2334.8520224737435, 1570.9508988521748]], "destination": 133128739}, {"length": 32.2730205212, "source": 133128985, "path": [[2216.652022473786, 1495.5008988515317], [2058.352022473731, 1394.4508988537052]], "destination": 133128732}, {"length": 15.0009999343, "source": 311723687, "path": [[-3846.747977526377, -2212.3491011463157], [-3768.4479775264012, -2168.799101145424]], "destination": 34816380}, {"length": 13.671031852, "source": 311723687, "path": [[-3846.747977526377, -2212.3491011463157], [-3908.647977526325, -2166.2991011481836]], "destination": 311724134}, {"length": 44.6643200303, "source": 308768783, "path": [[-4358.197977526234, 404.8508988532262], [-4503.0979775262385, 518.9508988543423], [-4533.097977526212, 542.0508988542849], [-4554.597977526331, 558.6008988522906]], "destination": 185858641}, {"length": 28.4649609666, "source": 308768783, "path": [[-4358.197977526234, 404.8508988532262], [-4465.647977526243, 298.15089885332213]], "destination": 4069612195}, {"length": 7.90077283317, "source": 308768783, "path": [[-4358.197977526234, 404.8508988532262], [-4323.197977526227, 377.8008988533088]], "destination": 308768742}, {"length": 24.316817242, "source": 308768787, "path": [[-4297.397977526262, 357.45089885352854], [-4388.497977526385, 266.00089885420175]], "destination": 4069612201}, {"length": 234.565319797, "source": 308768787, "path": [[-4297.397977526262, 357.45089885352854], [-3838.5979775263922, 2.000898852827504], [-4012.7479775262655, -99.89910114782674], [-4461.147977526281, 135.5508988538645], [-4535.747977526316, 165.75089885151328]], "destination": 185858261}, {"length": 5.8936478992, "source": 308768787, "path": [[-4297.397977526262, 357.45089885352854], [-4323.197977526227, 377.8008988533088]], "destination": 308768742}, {"length": 2.68746008533, "source": 4958488596, "path": [[-3242.997977526363, 107.20089885296602], [-3247.547977526244, 101.55089885444113], [-3254.9479775263458, 98.60089885194157]], "destination": 241584504}, {"length": 21.3450660246, "source": 4958488596, "path": [[-3242.997977526363, 107.20089885296602], [-3183.547977526402, 19.55089885186112]], "destination": 4958500474}, {"length": 8.16058259264, "source": 4958488596, "path": [[-3242.997977526363, 107.20089885296602], [-3196.9979775263723, 127.95089885386801]], "destination": 1445537103}, {"length": 57.7532092049, "source": 1181466645, "path": [[5866.502022473741, 1611.1508988529977], [5786.352022473684, 1664.5008988511734], [5654.952022473792, 1752.000898854078], [5589.052022473728, 1795.85089885137]], "destination": 130097196}, {"length": 39.5258743374, "source": 1181466645, "path": [[5866.502022473741, 1611.1508988529977], [6058.152022473618, 1485.900898853032]], "destination": 1181550261}, {"length": 179.113679964, "source": 1181466645, "path": [[5866.502022473741, 1611.1508988529977], [5976.70202247369, 1616.1508988545847], [6753.002022473753, 1090.8008988543827]], "destination": 1181466558}, {"length": 5.41215233124, "source": 666951702, "path": [[4159.502022473615, -880.9491011483317], [4195.502022473763, -886.5491011462723]], "destination": 34845768}, {"length": 159.549934895, "source": 666951702, "path": [[4159.502022473615, -880.9491011483317], [4098.4020224736905, -913.9491011467271], [3870.5020224736318, -1388.2491011472098], [3808.352022473649, -1517.1491011471971], [3809.8520224736367, -1549.8991011462238]], "destination": 666952326}, {"length": 120.028448304, "source": 666951702, "path": [[4159.502022473615, -880.9491011483317], [4085.1020224736967, -873.3491011483352], [3423.1520224736746, -805.7491011470574], [3348.8520224735917, -798.149101147061]], "destination": 666941135}, {"length": 64.5842805232, "source": 160014360, "path": [[-294.84797752621364, 1245.7508988532595], [-253.8979775263961, 1218.250898851636], [-28.04797752631316, 1066.5008988546276], [13.952022473784353, 1038.250898851345]], "destination": 204834024}, {"length": 94.5672751309, "source": 160014360, "path": [[-294.84797752621364, 1245.7508988532595], [-332.1479775262315, 1221.8008988540419], [-757.5979775262808, 948.90089885169]], "destination": 36485460}, {"length": 136.606410046, "source": 160014360, "path": [[-294.84797752621364, 1245.7508988532595], [40.5520224737721, 1461.2508988527395], [343.7020224736909, 1654.1508988545672], [374.65202247366494, 1673.850898853857]], "destination": 470175}, {"length": 52.4677823986, "source": 204832795, "path": [[2624.7020224736684, 860.6008988536473], [2697.6020224736, 629.6008988542212]], "destination": 2705349832}, {"length": 50.2953547813, "source": 204832795, "path": [[2624.7020224736684, 860.6008988536473], [2871.302022473765, 1018.1508988544863]], "destination": 204829757}, {"length": 34.1900702854, "source": 204832795, "path": [[2624.7020224736684, 860.6008988536473], [2580.002022473771, 1011.5008988513807]], "destination": 133128894}, {"length": 71.0982726615, "source": 204832795, "path": [[2624.7020224736684, 860.6008988536473], [2276.1520224736655, 637.8508988547082]], "destination": 133129245}, {"length": 10.645898671, "source": 2561299802, "path": [[-3445.4979775262464, -2524.499101145494], [-3376.4979775263714, -2539.6991011454875]], "destination": 2561299804}, {"length": 4.72774639057, "source": 431171616, "path": [[-3971.897977526284, -2120.199101145914], [-3993.3479775262626, -2104.299101148399]], "destination": 2561299778}, {"length": 20.1049215921, "source": 431171616, "path": [[-3971.897977526284, -2120.199101145914], [-3931.4979775262327, -2098.449101147537], [-3927.547977526258, -2096.899101147187], [-3891.1479775263215, -2080.849101147919], [-3886.6979775262766, -2078.8991011464477], [-3860.197977526347, -2067.7491011475977]], "destination": 2561299770}, {"length": 9.9970386674, "source": 431171616, "path": [[-3971.897977526284, -2120.199101145914], [-3999.797977526365, -2136.1991011481505], [-4023.047977526284, -2149.9991011459942]], "destination": 2561299782}, {"length": 29.4188005092, "source": 431171618, "path": [[-4044.4979775262623, -1965.4991011464062], [-4029.7979775263393, -1920.3991011487176], [-3985.5979775262895, -1839.299101145997]], "destination": 431171619}, {"length": 17.1239415537, "source": 431171618, "path": [[-4044.4979775262623, -1965.4991011464062], [-3943.847977526227, -2004.7991011473698]], "destination": 311723525}, {"length": 134.403686147, "source": 431171619, "path": [[-3985.5979775262895, -1839.299101145997], [-3967.4979775263796, -1781.2491011461873], [-3977.7979775263984, -1709.9491011478563], [-4014.3979775262296, -1635.9991011469788], [-4210.247977526338, -1351.3491011458711], [-4291.0979775263595, -1287.2991011469992]], "destination": 34818512}, {"length": 37.3301241897, "source": 431171619, "path": [[-3985.5979775262895, -1839.299101145997], [-3964.4479775262644, -1939.89910114567], [-3943.847977526227, -2004.7991011473698]], "destination": 311723525}, {"length": 45.6559486052, "source": 146728999, "path": [[-3667.247977526378, -1159.8991011467774], [-3438.797977526331, -1299.7491011468298]], "destination": 146724616}, {"length": 199.578919285, "source": 146728999, "path": [[-3667.247977526378, -1159.8991011467774], [-3777.447977526327, -1139.8491011469503], [-3828.147977526397, -1165.3491011465178], [-3886.0979775263704, -1203.3991011470846], [-3935.6979775262425, -1249.2991011470167], [-3953.147977526328, -1283.6991011475618], [-3998.747977526307, -1367.4991011463078], [-4010.797977526348, -1414.249101145515], [-4002.7479775262, -1528.0991011472622], [-3958.247977526419, -1617.9991011462391], [-3898.1479775264115, -1729.2491011460243], [-3890.0979775262635, -1794.4991011482614], [-3892.7979775262856, -1836.8491011457877], [-3904.5979775262917, -1860.5991011462208], [-3916.647977526333, -1869.449101146614], [-3928.9979775263273, -1894.1991011480752]], "destination": 4453288654}, {"length": 80.1336788492, "source": 146728999, "path": [[-3667.247977526378, -1159.8991011467774], [-3573.447977526234, -1099.8491011484646], [-3268.297977526258, -913.0491011468678]], "destination": 146729063}, {"length": 14.7843407923, "source": 25666981, "path": [[6594.352022473604, -4149.649101147901], [6569.352022473662, -4147.249101148276], [6545.702022473732, -4141.3491011468295], [6524.5520224737065, -4132.2991011476515], [6506.902022473726, -4120.399101147143]], "destination": 25666980}, {"length": 32.3427615038, "source": 130097196, "path": [[5589.052022473728, 1795.85089885137], [5425.602022473663, 1893.750898851465]], "destination": 368272}, {"length": 29.9434395254, "source": 130097196, "path": [[5589.052022473728, 1795.85089885137], [5504.102022473756, 1740.1008988535693], [5446.152022473782, 1699.5008988516247]], "destination": 130097266}, {"length": 57.7532092049, "source": 130097196, "path": [[5589.052022473728, 1795.85089885137], [5654.952022473792, 1752.000898854078], [5786.352022473684, 1664.5008988511734], [5866.502022473741, 1611.1508988529977]], "destination": 1181466645}, {"length": 155.971540395, "source": 25624242, "path": [[-1372.6979775263715, -2211.099101145919], [-1586.447977526273, -1561.7491011461482], [-1598.3479775263377, -1525.649101147053]], "destination": 365925276}, {"length": 31.661500338, "source": 25624242, "path": [[-1372.6979775263715, -2211.099101145919], [-1303.7479775264148, -2346.0491011455533]], "destination": 925849988}, {"length": 15.7180337341, "source": 146729006, "path": [[-3352.147977526254, -1259.7991011453757], [-3404.3479775263118, -1290.9491011470209], [-3438.797977526331, -1299.7491011468298]], "destination": 146724616}, {"length": 25.7027851172, "source": 146729006, "path": [[-3352.147977526254, -1259.7991011453757], [-3296.697977526408, -1247.4491011467137], [-3243.6979775263276, -1243.0991011456172], [-3207.097977526274, -1245.5991011464107], [-3181.397977526368, -1250.899101147951]], "destination": 930735200}, {"length": 28.3633572696, "source": 146729006, "path": [[-3352.147977526254, -1259.7991011453757], [-3325.447977526208, -1177.6491011481482], [-3317.94797752627, -1134.3991011472099]], "destination": 146729061}, {"length": 154.23950451, "source": 256622941, "path": [[4625.552022473611, 4282.000898854221], [4710.302022473689, 4298.500898851643], [5310.00202247367, 3884.2508988530253], [5303.002022473802, 3821.1508988545975]], "destination": 116147905}, {"length": 142.590895705, "source": 256622941, "path": [[4625.552022473611, 4282.000898854221], [4661.4020224737815, 4257.600898853298], [5256.302022473625, 3852.9008988525957], [5303.002022473802, 3821.1508988545975]], "destination": 116147905}, {"length": 10.7377807307, "source": 256622941, "path": [[4625.552022473611, 4282.000898854221], [4574.452022473752, 4316.650898854135]], "destination": 470172}, {"length": 8.37795172014, "source": 2503919664, "path": [[-4549.447977526322, 3460.2008988535717], [-4555.247977526377, 3440.600898851898], [-4573.447977526346, 3427.5508988521606]], "destination": 2503919728}, {"length": 9.38885777116, "source": 2503919664, "path": [[-4549.447977526322, 3460.2008988535717], [-4520.097977526394, 3470.5008988531463], [-4493.597977526242, 3480.9508988544735]], "destination": 2533527475}, {"length": 6.13226924735, "source": 2503919664, "path": [[-4549.447977526322, 3460.2008988535717], [-4568.497977526231, 3457.20089885404], [-4590.797977526373, 3456.6508988547184]], "destination": 2503919668}, {"length": 17.8616733144, "source": 3422228409, "path": [[-148.19797752640972, -263.3491011465594], [-181.39797752625418, -284.74910114795193], [-237.54797752628676, -318.0491011463005]], "destination": 3422228418}, {"length": 10.6412413945, "source": 666941109, "path": [[3395.7520224736636, -722.7991011475865], [3328.1520224737183, -705.1491011473843]], "destination": 666941110}, {"length": 18.1076591408, "source": 666941109, "path": [[3395.7520224736636, -722.7991011475865], [3371.352022473628, -761.9991011473815], [3348.8520224735917, -798.149101147061]], "destination": 666941135}, {"length": 31.9153946286, "source": 652902152, "path": [[-3522.5979775264095, -2336.0491011459317], [-3385.447977526379, -2447.649101146254]], "destination": 25624248}, {"length": 14.5666348157, "source": 652902152, "path": [[-3522.5979775264095, -2336.0491011459317], [-3453.247977526219, -2289.049101147356]], "destination": 652907478}, {"length": 55.8985818302, "source": 2503919668, "path": [[-4590.797977526373, 3456.6508988547184], [-4682.197977526225, 3475.7008988535176], [-4762.847977526352, 3468.600898852259], [-4845.947977526243, 3461.0008988522623], [-4901.647977526347, 3447.300898852035], [-4957.697977526321, 3430.850898851645]], "destination": 2503919720}, {"length": 6.13226924735, "source": 2503919668, "path": [[-4590.797977526373, 3456.6508988547184], [-4568.497977526231, 3457.20089885404], [-4549.447977526322, 3460.2008988535717]], "destination": 2503919664}, {"length": 9.28524292191, "source": 2503919668, "path": [[-4590.797977526373, 3456.6508988547184], [-4600.747977526298, 3447.400898853203], [-4595.347977526254, 3432.7008988519483], [-4573.447977526346, 3427.5508988521606]], "destination": 2503919728}, {"length": 45.2768510069, "source": 130097205, "path": [[5786.752022473695, 1951.6008988524902], [5696.152022473644, 1867.4508988532068], [5654.1020224736285, 1838.6008988535707], [5589.052022473728, 1795.85089885137]], "destination": 130097196}, {"length": 35.7539461654, "source": 130097205, "path": [[5786.752022473695, 1951.6008988524902], [5966.402022473671, 1975.5508988517079], [6011.152022473709, 1978.15089885367], [6027.202022473643, 1979.0508988535294]], "destination": 36489621}, {"length": 28.8759868574, "source": 130097205, "path": [[5786.752022473695, 1951.6008988524902], [5877.502022473724, 1996.8508988519318], [5944.052022473612, 2030.0008988520801]], "destination": 259010103}, {"length": 43.3754160844, "source": 133128744, "path": [[3260.602022473691, 1890.200898852612], [3053.902022473798, 2030.0008988520801]], "destination": 133128748}, {"length": 76.8580161085, "source": 133128744, "path": [[3260.602022473691, 1890.200898852612], [2884.6520224736773, 1648.850898853027]], "destination": 133128773}, {"length": 60.2206508789, "source": 133128744, "path": [[3260.602022473691, 1890.200898852612], [3555.102022473777, 2079.3508988532494]], "destination": 133128750}, {"length": 21.1217658126, "source": 25666985, "path": [[6490.502022473699, -4044.1991011483933], [6501.752022473717, -4030.2491011487973], [6517.202022473744, -4018.0491011483355], [6536.052022473759, -4008.2491011474985], [6557.602022473797, -4001.199101146824], [6580.902022473633, -3997.199101146265], [6604.952022473798, -3996.4491011481587]], "destination": 25666984}, {"length": 45.7370103117, "source": 159936180, "path": [[2266.0520224737634, 4059.2508988517293], [2484.552022473663, 3912.2008988528023]], "destination": 94267986}, {"length": 63.9450568064, "source": 159936180, "path": [[2266.0520224737634, 4059.2508988517293], [1959.6520224736125, 4264.250898852851]], "destination": 159894355}, {"length": 24.8352887246, "source": 2561299807, "path": [[-3264.897977526271, -2566.6491011477888], [-3239.897977526329, -2538.0991011481055], [-3196.597977526361, -2471.899101145425], [-3191.6479775262464, -2466.0991011487]], "destination": 2561299795}, {"length": 17.3948497743, "source": 2561299807, "path": [[-3264.897977526271, -2566.6491011477888], [-3306.9479775262866, -2555.7991011453396], [-3376.4979775263714, -2539.6991011454875]], "destination": 2561299804}, {"length": 53.7771767432, "source": 2561299807, "path": [[-3264.897977526271, -2566.6491011477888], [-3282.0979775263213, -2586.299101146494], [-3309.797977526285, -2624.1991011453083], [-3438.8979775263897, -2717.2991011461536], [-3510.8979775262396, -2736.399101145537]], "destination": 2561299814}, {"length": 10.8266304706, "source": 506888255, "path": [[-4827.097977526229, -1950.9491011469038], [-4821.94797752622, -1926.4991011453958], [-4818.797977526268, -1911.6491011459402], [-4817.247977526362, -1902.699101147931]], "destination": 2561299760}, {"length": 53.9937334963, "source": 506888255, "path": [[-4827.097977526229, -1950.9491011469038], [-4865.1479775263515, -1959.2491011479751], [-4893.397977526303, -1979.3991011454182], [-4924.447977526336, -2167.299101145659]], "destination": 506888762}, {"length": 41.5294502356, "source": 506888255, "path": [[-4827.097977526229, -1950.9491011469038], [-4576.8979775262505, -2039.1491011473306]], "destination": 506888334}, {"length": 18.6143666465, "source": 666951745, "path": [[4154.752022473618, -972.4991011488271], [4204.45202247377, -1049.5491011468516]], "destination": 666951750}, {"length": 134.605014997, "source": 666951745, "path": [[4154.752022473618, -972.4991011488271], [3946.0520224736674, -1401.8491011462686], [3874.502022473747, -1548.9991011463644]], "destination": 34845775}, {"length": 26.8208977779, "source": 3772612357, "path": [[3437.5520224736442, 3077.8008988541214], [3567.50202247369, 2992.7508988514264]], "destination": 3772612364}, {"length": 68.1867675379, "source": 146724604, "path": [[-3232.847977526321, -1678.399101148642], [-3187.4479775262366, -1709.199101146197], [-3139.9979775263987, -1702.4491011454757], [-3126.6479775262646, -1709.449101145566], [-2886.3979775262114, -1555.6491011459173]], "destination": 654050360}, {"length": 31.126662981, "source": 146724604, "path": [[-3232.847977526321, -1678.399101148642], [-3379.0979775263354, -1780.0491011463748]], "destination": 146724600}, {"length": 35.4971080808, "source": 146724604, "path": [[-3232.847977526321, -1678.399101148642], [-3306.8979775263683, -1627.3991011459543], [-3331.4979775262987, -1599.0991011456401], [-3364.4979775262486, -1546.949101147277]], "destination": 146724610}, {"length": 55.025464192, "source": 146724604, "path": [[-3232.847977526321, -1678.399101148642], [-2963.297977526258, -1505.8491011465946]], "destination": 146724602}, {"length": 18.6143666465, "source": 666951750, "path": [[4204.45202247377, -1049.5491011468516], [4154.752022473618, -972.4991011488271]], "destination": 666951745}, {"length": 116.643884966, "source": 666951750, "path": [[4204.45202247377, -1049.5491011468516], [3986.9520224737885, -1505.2991011472727], [3957.102022473791, -1547.799101146552]], "destination": 666952322}, {"length": 21.1013085463, "source": 661227, "path": [[2591.7520224736368, -3557.0991011475426], [2615.852022473719, -3463.549101148544]], "destination": 25625757}, {"length": 24.1378820217, "source": 661227, "path": [[2591.7520224736368, -3557.0991011475426], [2427.802022473724, -3544.8991011470807]], "destination": 270922855}, {"length": 39.7527682883, "source": 929534666, "path": [[-724.5979775263312, -3194.149101148014], [-637.8479775264178, -3213.899101147888], [-617.8979775262051, -3218.2991011460163], [-467.19797752636794, -3251.449101146164]], "destination": 25624234}, {"length": 12.9762715568, "source": 929534666, "path": [[-724.5979775263312, -3194.149101148014], [-701.5479775263067, -3221.649101146085], [-706.4479775262811, -3248.399101146049]], "destination": 929536231}, {"length": 30.335565095, "source": 146729033, "path": [[-2652.9479775263544, -1079.549101145716], [-2701.897977526402, -1192.9991011463414], [-2712.5479775262916, -1210.0991011472217]], "destination": 930837353}, {"length": 18.453089735, "source": 146729033, "path": [[-2652.9479775263544, -1079.549101145716], [-2679.6479775264006, -1069.0491011473569], [-2730.397977526389, -1016.1991011479188]], "destination": 146729036}, {"length": 51.3183315531, "source": 146729033, "path": [[-2652.9479775263544, -1079.549101145716], [-2609.147977526316, -1079.6991011474688], [-2511.3479775262795, -1055.9491011470357], [-2430.5479775263984, -1055.3491011471294], [-2312.847977526289, -1076.1991011456473]], "destination": 653622710}, {"length": 50.2865734011, "source": 133129911, "path": [[-906.2979775262825, -176.49910114769796], [-669.0479775262048, -340.09910114818354]], "destination": 3422228426}, {"length": 48.4904895861, "source": 133129911, "path": [[-906.2979775262825, -176.49910114769796], [-921.8479775263688, -98.79910114563017], [-920.7979775263109, -38.24910114857971], [-918.3979775262419, 40.85089885208504]], "destination": 133129932}, {"length": 47.108499368, "source": 133129911, "path": [[-906.2979775262825, -176.49910114769796], [-1088.2979775264089, -52.09910114700733], [-1129.59797752632, -23.899101147861757]], "destination": 160008334}, {"length": 14.8997221331, "source": 146729036, "path": [[-2730.397977526389, -1016.1991011479188], [-2699.797977526286, -952.299101147247]], "destination": 653622568}, {"length": 18.453089735, "source": 146729036, "path": [[-2730.397977526389, -1016.1991011479188], [-2679.6479775264006, -1069.0491011473569], [-2652.9479775263544, -1079.549101145716]], "destination": 146729033}, {"length": 76.8209175833, "source": 146729036, "path": [[-2730.397977526389, -1016.1991011479188], [-2794.947977526219, -985.4491011473954], [-2928.597977526204, -957.5491011482029], [-3109.247977526319, -928.9991011485199], [-3170.8979775262324, -926.3991011465578], [-3203.1979775262175, -932.549101147373], [-3220.1979775263735, -943.6491011456383]], "destination": 146729049}, {"length": 107.230308598, "source": 3066566733, "path": [[-3820.2979775263657, -684.6491011458511], [-3895.1979775263544, -707.0991011453032], [-4484.497977526258, -888.4491011471596]], "destination": 4069612264}, {"length": 50.0689087828, "source": 158834766, "path": [[1377.902022473787, 2318.650898853747], [1348.052022473789, 2360.0508988543825], [1259.7020224736077, 2482.5508988541856], [1231.202022473621, 2522.0508988539336]], "destination": 94267360}, {"length": 44.1341988831, "source": 158834766, "path": [[1377.902022473787, 2318.650898853747], [1332.4520224737846, 2289.7008988529424], [1161.1520224736882, 2180.650898853997]], "destination": 158834936}, {"length": 55.8065362691, "source": 158834766, "path": [[1377.902022473787, 2318.650898853747], [1558.452022473622, 2434.0508988522915], [1651.4520224737428, 2493.5008988542504]], "destination": 158835218}, {"length": 41.7961189614, "source": 3066566737, "path": [[-3773.3479775263754, -651.149101148718], [-3831.1979775262907, -666.74910114628], [-3820.2979775263657, -684.6491011458511], [-3809.447977526359, -699.2491011459379], [-3747.1479775263992, -680.7491011464606], [-3669.5479775263884, -638.4491011459659]], "destination": 267659010}, {"length": 20.7168168614, "source": 306085973, "path": [[-2657.2479775262004, -863.4491011463297], [-2699.797977526286, -952.299101147247]], "destination": 653622568}, {"length": 3.56734966104, "source": 306085973, "path": [[-2657.2479775262004, -863.4491011463297], [-2633.0479775262816, -865.3991011478013]], "destination": 931139104}, {"length": 16.5536471316, "source": 306085973, "path": [[-2657.2479775262004, -863.4491011463297], [-2767.1979775263367, -845.899101147296]], "destination": 146724453}, {"length": 12.5666688032, "source": 177215574, "path": [[-569.0479775262158, -498.64910114649774], [-509.54797752633675, -539.3991011466426]], "destination": 653598360}, {"length": 11.0345850362, "source": 177215574, "path": [[-569.0479775262158, -498.64910114649774], [-623.3979775263076, -533.0491011470428]], "destination": 205086385}, {"length": 95.2552671724, "source": 277061719, "path": [[-5098.797977526326, 1436.050898853125], [-5363.447977526414, 1651.4508988514365], [-5452.147977526245, 1723.6508988531796], [-5509.59797752637, 1768.300898852715]], "destination": 185857346}, {"length": 85.8084324116, "source": 277061719, "path": [[-5098.797977526326, 1436.050898853125], [-5314.447977526226, 1313.0008988539998], [-5348.297977526339, 1293.7508988528634], [-5419.8979775264, 1253.0008988527186], [-5542.147977526391, 1183.5008988541063]], "destination": 2463833510}, {"length": 9.78986401471, "source": 146729049, "path": [[-3220.1979775263735, -943.6491011456383], [-3268.297977526258, -913.0491011468678]], "destination": 146729063}, {"length": 76.8209175833, "source": 146729049, "path": [[-3220.1979775263735, -943.6491011456383], [-3203.1979775262175, -932.549101147373], [-3170.8979775262324, -926.3991011465578], [-3109.247977526319, -928.9991011485199], [-2928.597977526204, -957.5491011482029], [-2794.947977526219, -985.4491011473954], [-2730.397977526389, -1016.1991011479188]], "destination": 146729036}, {"length": 46.2764877602, "source": 146729049, "path": [[-3220.1979775263735, -943.6491011456383], [-3253.8479775263695, -968.9991011470056], [-3279.147977526264, -995.4491011470168], [-3303.1479775262883, -1035.7491011454556], [-3317.897977526352, -1077.9491011483344], [-3320.7479775263505, -1116.9491011457922], [-3317.94797752627, -1134.3991011472099]], "destination": 146729061}, {"length": 9.12467301346, "source": 146729049, "path": [[-3220.1979775263735, -943.6491011456383], [-3177.2479775262764, -973.3991011486864]], "destination": 930837679}, {"length": 21.0793005228, "source": 3732222529, "path": [[3820.90202247376, 2385.70089885215], [3718.4020224736437, 2452.3008988523998]], "destination": 3732222528}, {"length": 47.0793835916, "source": 3732222529, "path": [[3820.90202247376, 2385.70089885215], [3766.95202247368, 2350.45089885233], [3723.102022473723, 2323.900898854703], [3721.80202247363, 2323.050898851875], [3720.6020224735958, 2322.2508988531845], [3719.1520224737483, 2321.300898852741], [3670.1020224736426, 2289.2008988542048], [3668.602022473655, 2288.250898853761], [3667.2520224736436, 2287.3508988539015], [3666.2020224735857, 2286.6508988528267], [3625.0520224736515, 2260.0508988546153], [3590.7020224736907, 2237.850898854532]], "destination": 1147407040}, {"length": 42.7551075303, "source": 3732222529, "path": [[3820.90202247376, 2385.70089885215], [4028.2520224736995, 2521.1508988540745]], "destination": 3732221819}, {"length": 20.1933711774, "source": 3732222529, "path": [[3820.90202247376, 2385.70089885215], [3921.1520224737837, 2323.300898851244]], "destination": 3732222527}, {"length": 29.7362864774, "source": 2556489826, "path": [[-1033.347977526411, 3803.8508988513795], [-1029.1979775263194, 3798.550898853392], [-1016.9479775263834, 3782.9008988516935], [-1010.0479775263516, 3774.650898851206], [-952.8979775264013, 3792.950898851899], [-933.097977526387, 3787.400898854543], [-870.4979775262523, 3769.9008988525406]], "destination": 2556489919}, {"length": 33.0267326471, "source": 146729061, "path": [[-3317.94797752627, -1134.3991011472099], [-3289.3479775262244, -1172.1991011484079], [-3256.2979775263566, -1201.6991011485345], [-3224.2479775264064, -1222.8991011475898], [-3181.397977526368, -1250.899101147951]], "destination": 930735200}, {"length": 46.2764877602, "source": 146729061, "path": [[-3317.94797752627, -1134.3991011472099], [-3320.7479775263505, -1116.9491011457922], [-3317.897977526352, -1077.9491011483344], [-3303.1479775262883, -1035.7491011454556], [-3279.147977526264, -995.4491011470168], [-3253.8479775263695, -968.9991011470056], [-3220.1979775263735, -943.6491011456383]], "destination": 146729049}, {"length": 28.3633572696, "source": 146729061, "path": [[-3317.94797752627, -1134.3991011472099], [-3325.447977526208, -1177.6491011481482], [-3352.147977526254, -1259.7991011453757]], "destination": 146729006}, {"length": 13.8107399348, "source": 311724134, "path": [[-3908.647977526325, -2166.2991011481836], [-3971.897977526284, -2120.199101145914]], "destination": 431171616}, {"length": 9.78986401471, "source": 146729063, "path": [[-3268.297977526258, -913.0491011468678], [-3220.1979775263735, -943.6491011456383]], "destination": 146729049}, {"length": 17.9231961057, "source": 146729063, "path": [[-3268.297977526258, -913.0491011468678], [-3175.9479775264053, -860.0991011462611]], "destination": 654047843}, {"length": 80.1336788492, "source": 146729063, "path": [[-3268.297977526258, -913.0491011468678], [-3573.447977526234, -1099.8491011484646], [-3667.247977526378, -1159.8991011467774]], "destination": 146728999}, {"length": 61.7368698769, "source": 2503919720, "path": [[-4957.697977526321, 3430.850898851645], [-4686.047977526364, 3218.450898852865]], "destination": 2503919825}, {"length": 55.8985818302, "source": 2503919720, "path": [[-4957.697977526321, 3430.850898851645], [-4901.647977526347, 3447.300898852035], [-4845.947977526243, 3461.0008988522623], [-4762.847977526352, 3468.600898852259], [-4682.197977526225, 3475.7008988535176], [-4590.797977526373, 3456.6508988547184]], "destination": 2503919668}, {"length": 119.362233961, "source": 25624252, "path": [[-494.24797752628535, -3371.1991011458053], [-596.6979775262615, -3464.349101147235], [-972.4979775262988, -3806.049101147124]], "destination": 25623937}, {"length": 150.016708509, "source": 25624252, "path": [[-494.24797752628535, -3371.1991011458053], [-686.5479775262085, -3395.449101148529], [-1514.447977526201, -3430.6491011477647]], "destination": 25623949}, {"length": 7.51430586888, "source": 25624252, "path": [[-494.24797752628535, -3371.1991011458053], [-516.4979775262868, -3340.7491011487878]], "destination": 25624233}, {"length": 16.3650343249, "source": 146729069, "path": [[-3083.7479775263077, -1286.7991011482616], [-3151.097977526218, -1262.249101145585], [-3181.397977526368, -1250.899101147951]], "destination": 930735200}, {"length": 38.0499595376, "source": 146729069, "path": [[-3083.7479775263077, -1286.7991011482616], [-3026.747977526334, -1302.9991011457298], [-2960.6979775262944, -1310.2491011487416], [-2899.4479775263926, -1307.4991011485793], [-2844.147977526301, -1293.3491011466458], [-2835.4479775263285, -1289.7491011472084]], "destination": 930837217}, {"length": 82.8976610418, "source": 146729069, "path": [[-3083.7479775263077, -1286.7991011482616], [-3092.89797752621, -1311.8991011467074], [-3093.147977526245, -1331.449101147797], [-3077.447977526404, -1360.849101146755], [-3077.797977526275, -1383.2491011456227], [-3091.597977526339, -1401.7991011456843], [-3111.597977526248, -1410.3991011467087], [-3141.2479775263514, -1411.7491011482741], [-3172.2479775262436, -1404.6991011475995], [-3212.047977526389, -1388.0991011454569], [-3245.7979775262215, -1368.8991011484575], [-3275.9479775263944, -1362.4491011476891], [-3306.497977526357, -1364.549101147361], [-3337.147977526378, -1373.099101147801], [-3361.5479775264134, -1386.7991011480285], [-3377.5979775263477, -1402.0991011456374], [-3395.9479775262926, -1433.149101146114]], "destination": 652952449}, {"length": 29.3601250283, "source": 94267503, "path": [[963.9520224737907, 3363.050898851583], [931.3020224737123, 3342.2508988536492], [822.4020224736339, 3269.500898852584]], "destination": 2463876741}, {"length": 42.2370178087, "source": 94267503, "path": [[963.9520224737907, 3363.050898851583], [999.1020224737746, 3342.350898851265], [1224.2520224736709, 3284.950898851946]], "destination": 94268063}, {"length": 8.37795172014, "source": 2503919728, "path": [[-4573.447977526346, 3427.5508988521606], [-4555.247977526377, 3440.600898851898], [-4549.447977526322, 3460.2008988535717]], "destination": 2503919664}, {"length": 49.8003182994, "source": 2503919728, "path": [[-4573.447977526346, 3427.5508988521606], [-4600.747977526298, 3383.1508988519945], [-4675.597977526369, 3269.9508988542902], [-4673.497977526253, 3250.9508988525226], [-4686.047977526364, 3218.450898852865]], "destination": 2503919825}, {"length": 9.28524292191, "source": 2503919728, "path": [[-4573.447977526346, 3427.5508988521606], [-4595.347977526254, 3432.7008988519483], [-4600.747977526298, 3447.400898853203], [-4590.797977526373, 3456.6508988547184]], "destination": 2503919668}, {"length": 15.6663599451, "source": 94267505, "path": [[2356.40202247378, 2945.300898854697], [2280.302022473757, 2895.7508988511904]], "destination": 249578857}, {"length": 95.9174774833, "source": 94267505, "path": [[2356.40202247378, 2945.300898854697], [2795.6520224736714, 3224.5508988530955], [2827.7020224736216, 3245.050898854629]], "destination": 94267106}, {"length": 50.6338102726, "source": 130097266, "path": [[5446.152022473782, 1699.5008988516247], [5494.202022473749, 1662.6008988538388], [5417.602022473656, 1490.7508988528662]], "destination": 666946248}, {"length": 33.7628624766, "source": 130097266, "path": [[5446.152022473782, 1699.5008988516247], [5302.202022473779, 1818.1508988526218]], "destination": 666887732}, {"length": 22.7563784074, "source": 130097266, "path": [[5446.152022473782, 1699.5008988516247], [5433.852022473707, 1674.9508988525008], [5397.5520224736065, 1602.3008988526044]], "destination": 666945453}, {"length": 23.1296292072, "source": 3134287620, "path": [[-64.64797752636642, -242.49910114804152], [-82.34797752626477, -242.2491011486727], [-81.34797752634704, -213.5991011478211], [-45.897977526410116, -214.09910114655872], [-46.89797752632785, -242.79910114799463], [-64.64797752636642, -242.49910114804152]], "destination": 3134287620}, {"length": 23.1296292072, "source": 3134287620, "path": [[-64.64797752636642, -242.49910114804152], [-46.89797752632785, -242.79910114799463], [-45.897977526410116, -214.09910114655872], [-81.34797752634704, -213.5991011478211], [-82.34797752626477, -242.2491011486727], [-64.64797752636642, -242.49910114804152]], "destination": 3134287620}, {"length": 13.0359173919, "source": 3134287620, "path": [[-64.64797752636642, -242.49910114804152], [-62.39797752627396, -183.89910114535724]], "destination": 3134287610}, {"length": 28.6549356532, "source": 3134287620, "path": [[-64.64797752636642, -242.49910114804152], [-64.1979775262147, -371.34910114744457]], "destination": 3134287628}, {"length": 92.2939638606, "source": 36486916, "path": [[1525.7020224737073, -584.6991011466685], [1693.3020224736417, -477.2991011456895], [1843.8520224737242, -380.8491011483284], [1977.6020224737679, -295.1491011486951]], "destination": 34845752}, {"length": 20.5942065419, "source": 36486916, "path": [[1525.7020224737073, -584.6991011466685], [1424.852022473777, -649.299101148415]], "destination": 34845749}, {"length": 230.376515104, "source": 36486916, "path": [[1525.7020224737073, -584.6991011466685], [1600.8020224735908, -598.5491011486488], [2998.802022473601, -885.099101147091], [3029.7520224737973, -891.1491011467376]], "destination": 1181634293}, {"length": 17.7689103995, "source": 2561299817, "path": [[-3854.94797752628, -2752.5491011459735], [-3834.3979775263824, -2673.799101145846]], "destination": 34816448}, {"length": 36.0775361782, "source": 2561299817, "path": [[-3854.94797752628, -2752.5491011459735], [-3895.7979775262606, -2747.099101146233], [-4033.6479775262555, -2692.5991011488295], [-4064.447977526253, -2671.8491011479273]], "destination": 1987166918}, {"length": 54.2824502229, "source": 2561299817, "path": [[-3854.94797752628, -2752.5491011459735], [-3813.447977526252, -2757.2491011476077], [-3798.697977526411, -2773.7991011456133], [-3753.947977526373, -2775.1491011471785], [-3686.0479775262525, -2772.799101148138], [-3595.9979775264105, -2765.3491011463416], [-3559.847977526287, -2749.799101145811], [-3510.8979775262396, -2736.399101145537]], "destination": 2561299814}, {"length": 169.627993632, "source": 2561299817, "path": [[-3854.94797752628, -2752.5491011459735], [-4051.147977526259, -3504.2991011486893]], "destination": 34816455}, {"length": 100.551854737, "source": 34845763, "path": [[992.8520224737891, -926.0991011466047], [624.6520224737484, -1161.9991011464492], [592.3520224737633, -1182.699101146767], [564.4520224736826, -1200.5491011457536], [500.50202247375887, -1241.54910114882]], "destination": 470180}, {"length": 88.2293394408, "source": 34845763, "path": [[992.8520224737891, -926.0991011466047], [1054.7520224737373, -886.4491011486564], [1366.7520224736052, -686.5491011467384], [1424.852022473777, -649.299101148415]], "destination": 34845749}, {"length": 51.9790347316, "source": 34845763, "path": [[992.8520224737891, -926.0991011466047], [739.2020224736839, -762.4491011455348]], "destination": 160028423}, {"length": 21.5700794331, "source": 4468710859, "path": [[437.1520224737413, -554.1491011484823], [381.50202247377865, -565.6491011478693], [300.7020224736756, -590.3491011487461]], "destination": 4468710866}, {"length": 11.1240671024, "source": 930672767, "path": [[-1882.5479775264052, -1878.0491011476386], [-1915.5979775262733, -1832.9991011469815]], "destination": 652939761}, {"length": 2.44999639827, "source": 1739548171, "path": [[-6069.497977526206, 868.5508988541812], [-6082.1979775262935, 861.3508988517538]], "destination": 1739548178}, {"length": 13.6407367493, "source": 1739548171, "path": [[-6069.497977526206, 868.5508988541812], [-6078.647977526331, 876.2008988512093], [-6032.547977526281, 903.8508988545857], [-6022.197977526344, 895.7508988522989]], "destination": 1739548159}, {"length": 12.5487820513, "source": 1739548171, "path": [[-6069.497977526206, 868.5508988541812], [-6061.547977526338, 862.5508988515662], [-6015.0479775262775, 890.8008988512961], [-6022.197977526344, 895.7508988522989]], "destination": 1739548159}, {"length": 68.5224486292, "source": 146724453, "path": [[-2767.1979775263367, -845.899101147296], [-2867.6479775262555, -842.3991011454746], [-2982.9479775262957, -835.5491011471372], [-3166.297977526211, -813.2991011464696], [-3228.2479775262996, -799.2491011457048]], "destination": 4069612257}, {"length": 60.0860013523, "source": 146724453, "path": [[-2767.1979775263367, -845.899101147296], [-2825.0479775262515, -815.4491011467258], [-2857.2479775264005, -790.6991011488174], [-2877.997977526414, -765.5491011462345], [-2891.4479775263844, -744.3991011477635], [-2896.1479775262424, -713.9491011471932], [-2892.7479775262555, -686.5991011473227], [-2879.347977526203, -645.9991011453781], [-2861.947977526258, -610.0491011480358]], "destination": 4069612236}, {"length": 16.5536471316, "source": 146724453, "path": [[-2767.1979775263367, -845.899101147296], [-2657.2479775262004, -863.4491011463297]], "destination": 306085973}, {"length": 12.6620521793, "source": 1181550725, "path": [[6232.652022473584, 1290.700898852748], [6260.752022473781, 1344.550898853214]], "destination": 29434737}, {"length": 55.4771507537, "source": 1181550725, "path": [[6232.652022473584, 1290.700898852748], [6036.852022473616, 1421.6508988518228], [6058.152022473618, 1485.900898853032]], "destination": 1181550261}, {"length": 361.188966811, "source": 2705350290, "path": [[4258.202022473733, -2181.2491011488078], [4256.452022473712, -2217.8491011466404], [4327.052022473632, -2236.1991011479176], [6663.002022473607, -2286.249101146609]], "destination": 4508646376}, {"length": 24.8351888698, "source": 2705350290, "path": [[4258.202022473733, -2181.2491011488078], [4088.4520224737653, -2180.949101145302]], "destination": 185886885}, {"length": 167.70680453, "source": 2705350290, "path": [[4258.202022473733, -2181.2491011488078], [4288.902022473673, -2181.2991011458394], [5404.152022473685, -2199.19910114541]], "destination": 25203159}, {"length": 6.29658850675, "source": 1893476491, "path": [[1295.6020224736965, -2778.0991011461256], [1308.052022473749, -2750.9991011456236]], "destination": 721638483}, {"length": 155.007223129, "source": 1893476491, "path": [[1295.6020224736965, -2778.0991011461256], [1288.4520224736295, -2793.5991011460715], [1264.302022473629, -2844.7991011475438], [1195.3520224736724, -2995.049101148339], [1189.352022473722, -3008.1491011486605], [1171.8520224737183, -3046.249101146259], [1225.902022473635, -3057.8491011468145], [1301.9520224737403, -3074.24910114662], [1344.6520224738024, -3083.399101146966], [1335.9020224736896, -3100.849101148384], [1284.0520224737252, -3204.2991011458353], [1212.852022473676, -3189.3991011457956], [1201.8520224736928, -3213.899101147888], [1193.0520224736617, -3233.4491011454247], [1179.752022473668, -3263.04910114672], [1176.6020224737163, -3306.8991011475646]], "destination": 721638470}, {"length": 71.3155319621, "source": 1893476491, "path": [[1295.6020224736965, -2778.0991011461256], [832.9520224736875, -2677.0991011453307]], "destination": 1893476494}, {"length": 64.6171188575, "source": 25624258, "path": [[-318.4479775262261, -3402.999101147941], [-234.89797752640484, -3525.6491011459448], [-224.29797752621107, -3538.8991011480184], [-146.79797752625845, -3670.549101148168]], "destination": 25625048}, {"length": 26.6736466595, "source": 25624258, "path": [[-318.4479775262261, -3402.999101147941], [-494.24797752628535, -3371.1991011458053]], "destination": 25624252}, {"length": 17.9563537454, "source": 160008334, "path": [[-1129.59797752632, -23.899101147861757], [-1040.247977526221, 31.450898852369846]], "destination": 3491466845}, {"length": 53.6105172585, "source": 160008334, "path": [[-1129.59797752632, -23.899101147861757], [-1171.8979775263706, 12.600898852355158], [-1351.747977526241, 167.8008988541535]], "destination": 160023534}, {"length": 47.108499368, "source": 160008334, "path": [[-1129.59797752632, -23.899101147861757], [-1088.2979775264089, -52.09910114700733], [-906.2979775262825, -176.49910114769796]], "destination": 133129911}, {"length": 49.1794860969, "source": 506888335, "path": [[-4653.847977526216, -2448.349101147329], [-4984.997977526273, -2486.3491011473116]], "destination": 506888656}, {"length": 17.1652082402, "source": 506888335, "path": [[-4653.847977526216, -2448.349101147329], [-4637.6979775262225, -2371.8991011456583]], "destination": 506888737}, {"length": 53.2522618198, "source": 506888335, "path": [[-4653.847977526216, -2448.349101147329], [-4295.447977526345, -2406.549101145572]], "destination": 506888666}, {"length": 98.7228192409, "source": 1181634707, "path": [[3020.5020224736145, -337.4991011462214], [3016.852022473593, -326.3491011473718], [2905.3520224737726, 34.250898853116496], [2863.052022473722, 37.75089885138527], [2810.1520224736996, 48.650898854418756]], "destination": 3702865864}, {"length": 33.756200369, "source": 1181634707, "path": [[3020.5020224736145, -337.4991011462214], [3052.8020224735997, -333.9991011479526], [3188.2520224737477, -316.0491011477973], [3244.2020224736634, -329.9491011468092]], "destination": 204843940}, {"length": 12.7298467398, "source": 1181634707, "path": [[3020.5020224736145, -337.4991011462214], [2935.4520224735834, -349.54910114848303]], "destination": 634433862}, {"length": 93.8685471169, "source": 4455425694, "path": [[-261.8479775262639, 502.1008988528308], [-234.3479775264168, 482.4508988541254], [123.95202247361681, 238.95089885428433], [184.45202247363568, 198.90089885166162]], "destination": 133129379}, {"length": 4.15769505297, "source": 4455425694, "path": [[-261.8479775262639, 502.1008988528308], [-281.89797752631307, 515.3508988513522]], "destination": 159973957}, {"length": 18.0701808189, "source": 256622742, "path": [[4489.152022473686, 4375.400898851467], [4574.452022473752, 4316.650898854135]], "destination": 470172}, {"length": 59.3806835496, "source": 661235, "path": [[-2984.4479775262835, 1820.300898852878], [-2935.6979775263526, 1871.00089885206], [-2793.2479775263364, 2019.1508988531837], [-2767.49797752629, 2045.9508988537323]], "destination": 141569001}, {"length": 107.168969059, "source": 661235, "path": [[-2984.4479775262835, 1820.300898852878], [-3047.4479775262075, 1866.3008988539787], [-3474.797977526256, 2178.2508988543723]], "destination": 141569260}, {"length": 26.9797077744, "source": 661235, "path": [[-2984.4479775262835, 1820.300898852878], [-2868.4479775262785, 1726.0008988522202]], "destination": 21346796}, {"length": 12.0279858041, "source": 174043290, "path": [[5791.902022473705, 3595.000898851453], [5858.002022473663, 3562.850898852332]], "destination": 3732186331}, {"length": 20.2497521413, "source": 174043290, "path": [[5791.902022473705, 3595.000898851453], [5768.552022473727, 3505.2508988542286]], "destination": 470171}, {"length": 18.3694023502, "source": 174043290, "path": [[5791.902022473705, 3595.000898851453], [5764.352022473718, 3606.0508988526863], [5723.802022473689, 3635.000898853491], [5703.8520224736985, 3652.6508988536934]], "destination": 1219826518}, {"length": 69.6738761592, "source": 241582236, "path": [[-5440.497977526215, 1816.8508988516407], [-5124.997977526302, 1582.200898852193]], "destination": 241582419}, {"length": 37.1763852764, "source": 4389621615, "path": [[2714.4020224736387, 564.2008988537839], [2618.5020224736013, 504.85089885299317], [2584.302022473617, 484.1008988520912], [2534.802022473581, 521.9508988538735]], "destination": 4389621616}, {"length": 61.91639423, "source": 4389621615, "path": [[2714.4020224736387, 564.2008988537839], [2722.7020224735998, 547.000898851735], [2780.302022473702, 348.10089885439766], [2789.8520224736158, 290.55089885332563]], "destination": 1223768436}, {"length": 36.5060992962, "source": 249169173, "path": [[345.4020224737952, 3383.000898853794], [172.4520224737347, 3501.300898854254]], "destination": 94266273}, {"length": 126.914297116, "source": 249169173, "path": [[345.4020224737952, 3383.000898853794], [320.10202247367835, 3367.8508988543854], [314.20202247378626, 3364.2508988513955], [148.50202247362887, 3258.200898851982], [132.65202247358943, 3246.800898853763], [-252.14797752637352, 2969.700898852068]], "destination": 249169172}, {"length": 33.9184128689, "source": 185886885, "path": [[4088.4520224737653, -2180.949101145302], [4068.752022473587, -2180.4491011465643], [3895.7020224736902, -2179.3491011479205], [3856.65202247365, -2178.999101147383]], "destination": 205088968}, {"length": 24.8351888698, "source": 185886885, "path": [[4088.4520224737653, -2180.949101145302], [4258.202022473733, -2181.2491011488078]], "destination": 2705350290}, {"length": 45.4539507149, "source": 185886885, "path": [[4088.4520224737653, -2180.949101145302], [4364.0520224736965, -2275.2991011465438]], "destination": 721620621}, {"length": 106.946523455, "source": 34816711, "path": [[-6396.497977526395, -3963.1991011468417], [-5745.197977526262, -3744.799101145446]], "destination": 34816441}, {"length": 36.2434585124, "source": 5059182770, "path": [[5984.202022473628, -3304.7991011478925], [6231.802022473643, -3310.249101147633]], "destination": 241886816}, {"length": 25.5931557392, "source": 5059182770, "path": [[5984.202022473628, -3304.7991011478925], [5811.452022473684, -3322.9491011468326]], "destination": 25625869}, {"length": 24.0029135309, "source": 34816179, "path": [[-3976.397977526247, -2614.6491011473927], [-4025.997977526341, -2577.4991011466855], [-4066.5479775263693, -2525.4491011459377]], "destination": 34816181}, {"length": 18.1040649292, "source": 34816179, "path": [[-3976.397977526247, -2614.6491011473927], [-4064.447977526253, -2671.8491011479273]], "destination": 1987166918}, {"length": 19.884721079, "source": 34816181, "path": [[-4066.5479775263693, -2525.4491011459377], [-4177.847977526294, -2537.3991011470307], [-4200.597977526366, -2540.1991011477776]], "destination": 1524853513}, {"length": 18.9618540439, "source": 34816181, "path": [[-4066.5479775263693, -2525.4491011459377], [-4079.4479775263517, -2484.699101145793], [-4087.6979775263944, -2441.399101147823]], "destination": 34816182}, {"length": 64.5661086307, "source": 34816182, "path": [[-4087.6979775263944, -2441.399101147823], [-4084.397977526244, -2408.7491011464126], [-4074.0979775262253, -2375.449101148064], [-4052.447977526352, -2344.949101146909], [-4023.6479775264124, -2319.9491011460796], [-3942.5979775262745, -2266.9991011454727], [-3846.747977526377, -2212.3491011463157]], "destination": 311723687}, {"length": 93.5064382711, "source": 2504736952, "path": [[-3655.797977526243, 3626.3508988518824], [-3653.7979775264075, 3606.5008988543923], [-3568.897977526353, 3544.3008988522706], [-3590.0979775262963, 3532.600898854099], [-3661.99797752631, 3593.400898854071], [-3668.7979775262834, 3589.3008988523434], [-3527.847977526255, 3469.6008988532867], [-3600.5479775262916, 3426.75089885347]], "destination": 2504736985}, {"length": 13.4728062536, "source": 2504736952, "path": [[-3655.797977526243, 3626.3508988518824], [-3734.8979775262414, 3657.350898851774]], "destination": 340393005}, {"length": 65.9632730841, "source": 3905020276, "path": [[-4767.897977526303, 3884.700898851179], [-4539.397977526338, 3701.8008988525253], [-4483.397977526282, 3654.6508988521964]], "destination": 3905020288}, {"length": 16.9582544787, "source": 3905020276, "path": [[-4767.897977526303, 3884.700898851179], [-4742.147977526257, 3897.700898853884], [-4735.297977526365, 3929.450898851883], [-4748.447977526383, 3930.8008988534484], [-4750.497977526358, 3916.8008988532674]], "destination": 3905020272}, {"length": 93.8960510383, "source": 3905020276, "path": [[-4767.897977526303, 3884.700898851179], [-4804.547977526275, 3914.1508988542737], [-4348.597977526403, 4154.050898854677]], "destination": 3905019754}, {"length": 121.715692837, "source": 249168058, "path": [[155.60202247377754, 2690.450898853669], [-388.39797752632245, 2336.0008988539957], [-434.1979775264182, 2304.550898852398]], "destination": 159883856}, {"length": 37.7314303059, "source": 249168058, "path": [[155.60202247377754, 2690.450898853669], [-20.54797752637505, 2814.3508988520693]], "destination": 249168967}, {"length": 37.3501333363, "source": 4389568699, "path": [[2333.8020224736856, 392.25089885164266], [2384.6520224737324, 361.45089885408765], [2376.602022473584, 357.0008988518225], [2327.6520224737583, 323.05089885298344], [2306.20202247378, 307.60089885362163], [2304.1520224735823, 291.30089885143207], [2302.5520224737584, 281.7508988535167], [2298.9020224737365, 260.0008988515867]], "destination": 2705349867}, {"length": 6.43533395645, "source": 4389568699, "path": [[2333.8020224736856, 392.25089885164266], [2365.152022473671, 412.55089885439133]], "destination": 2705349854}, {"length": 62.7300252671, "source": 36487357, "path": [[3429.4520224738003, 644.0008988519708], [3392.5020224736536, 669.1508988545536], [3176.1520224737883, 816.6508988516341], [3131.7020224737034, 846.9508988540042]], "destination": 36487176}, {"length": 99.0316449159, "source": 36487357, "path": [[3429.4520224738003, 644.0008988519708], [3659.752022473706, 788.4508988524885], [3799.2020224737466, 875.9008988512562], [3919.352022473621, 951.2508988542834]], "destination": 21378252}, {"length": 85.6557406532, "source": 2589554878, "path": [[-6401.147977526333, 4318.150898853901], [-6314.047977526327, 4259.450898853601], [-6134.49797752641, 4099.650898851337], [-6031.69797752634, 4020.150898853103]], "destination": 675140728}, {"length": 5.13574732416, "source": 2589554878, "path": [[-6401.147977526333, 4318.150898853901], [-6390.997977526292, 4324.400898852332], [-6375.4979775263455, 4333.900898853216]], "destination": 3905019749}, {"length": 10.310005407, "source": 2589554878, "path": [[-6401.147977526333, 4318.150898853901], [-6456.597977526401, 4289.550898853633]], "destination": 2589554901}, {"length": 70.6453569498, "source": 36487359, "path": [[4204.602022473747, 1136.3508988537774], [4499.902022473634, 1325.2508988514933], [4550.752022473681, 1357.8008988517354]], "destination": 36487372}, {"length": 134.13440493, "source": 36487359, "path": [[4204.602022473747, 1136.3508988537774], [4282.402022473652, 1108.1508988546318], [4962.602022473783, 955.3008988518741], [5065.852022473782, 932.1008988543156]], "destination": 36487637}, {"length": 16.2147939327, "source": 25624510, "path": [[-1956.4479775262544, -940.4491011473226], [-1887.1479775262046, -997.3491011479041]], "destination": 930613534}, {"length": 22.9222160918, "source": 25624510, "path": [[-1956.4479775262544, -940.4491011473226], [-1970.0979775263415, -962.7491011485745], [-1996.9479775263644, -982.1491011479111], [-2034.4479775262769, -995.8491011481385], [-2071.747977526295, -997.1491011455669]], "destination": 25624511}, {"length": 24.7816440327, "source": 2589554882, "path": [[-6604.297977526263, 4392.6508988541], [-6647.24797752636, 4371.80089885203], [-6570.7479775263255, 4314.450898853294]], "destination": 303197652}, {"length": 6.93093675376, "source": 371609795, "path": [[477.1020224736411, 3292.90089885248], [444.2520224736679, 3315.350898851932]], "destination": 2463876737}, {"length": 4.79212395494, "source": 371609795, "path": [[477.1020224736411, 3292.90089885248], [453.5020224736286, 3277.9508988518555]], "destination": 2463876740}, {"length": 17.2631841568, "source": 205088968, "path": [[3856.65202247365, -2178.999101147383], [3766.702022473645, -2199.19910114541], [3743.7520224736786, -2199.599101146532]], "destination": 2705350304}, {"length": 33.9184128689, "source": 205088968, "path": [[3856.65202247365, -2178.999101147383], [3895.7020224736902, -2179.3491011479205], [4068.752022473587, -2180.4491011465643], [4088.4520224737653, -2180.949101145302]], "destination": 185886885}, {"length": 25.278865215, "source": 1838021324, "path": [[4489.85202247365, -3008.5491011462295], [4317.152022473625, -3012.1991011462515]], "destination": 4418237888}, {"length": 101.191205878, "source": 1838021324, "path": [[4489.85202247365, -3008.5491011462295], [4412.102022473663, -3035.799101148484], [3915.9520224736343, -3025.64910114711], [3883.302022473778, -3027.949101145566], [3839.802022473693, -3048.149101147146], [3828.202022473581, -3059.749101147702]], "destination": 5056992116}, {"length": 150.238190738, "source": 36487372, "path": [[4550.752022473681, 1357.8008988517354], [4920.402022473791, 1584.2508988512805], [5233.052022473706, 1775.8008988515428], [5302.202022473779, 1818.1508988526218]], "destination": 666887732}, {"length": 47.2777612009, "source": 174002383, "path": [[1696.052022473582, 3826.350898851416], [1437.8020224736777, 3869.3508988529857], [1382.8520224736797, 3878.500898853332]], "destination": 159894354}, {"length": 33.1679455771, "source": 174002383, "path": [[1696.052022473582, 3826.350898851416], [1753.0520224737777, 3970.700898854318]], "destination": 174002654}, {"length": 49.8003182994, "source": 2503919825, "path": [[-4686.047977526364, 3218.450898852865], [-4673.497977526253, 3250.9508988525226], [-4675.597977526369, 3269.9508988542902], [-4600.747977526298, 3383.1508988519945], [-4573.447977526346, 3427.5508988521606]], "destination": 2503919728}, {"length": 12.7464738898, "source": 2503919825, "path": [[-4686.047977526364, 3218.450898852865], [-4631.247977526343, 3173.9008988544983]], "destination": 141567847}, {"length": 15.1302181443, "source": 2589554901, "path": [[-6456.597977526401, 4289.550898853633], [-6527.197977526323, 4339.2508988517875]], "destination": 14798299}, {"length": 24.4553478498, "source": 2589554901, "path": [[-6456.597977526401, 4289.550898853633], [-6508.097977526272, 4262.300898851379], [-6570.7479775263255, 4314.450898853294]], "destination": 303197652}, {"length": 10.310005407, "source": 2589554901, "path": [[-6456.597977526401, 4289.550898853633], [-6401.147977526333, 4318.150898853901]], "destination": 2589554878}, {"length": 11.976924078, "source": 94267985, "path": [[2158.452022473778, 3694.7508988518507], [2096.902022473701, 3730.2508988545924]], "destination": 94267105}, {"length": 67.9400641623, "source": 94267985, "path": [[2158.452022473778, 3694.7508988518507], [2185.452022473777, 3712.8008988531747], [2427.9020224737824, 3874.4008988516043], [2484.552022473663, 3912.2008988528023]], "destination": 94267986}, {"length": 93.5064382711, "source": 2504736985, "path": [[-3600.5479775262916, 3426.75089885347], [-3527.847977526255, 3469.6008988532867], [-3668.7979775262834, 3589.3008988523434], [-3661.99797752631, 3593.400898854071], [-3590.0979775262963, 3532.600898854099], [-3568.897977526353, 3544.3008988522706], [-3653.7979775264075, 3606.5008988543923], [-3655.797977526243, 3626.3508988518824]], "destination": 2504736952}, {"length": 16.6852099185, "source": 2504736985, "path": [[-3600.5479775262916, 3426.75089885347], [-3570.8979775264106, 3403.700898854112], [-3516.397977526342, 3430.6008988522763]], "destination": 3905020305}, {"length": 13.4020454035, "source": 2504736985, "path": [[-3600.5479775262916, 3426.75089885347], [-3672.897977526235, 3389.800898851547]], "destination": 3905020309}, {"length": 161.685305694, "source": 1435746523, "path": [[-3130.497977526403, 2908.100898853405], [-3390.49797752633, 3119.850898851695], [-3516.297977526284, 3056.5008988538975], [-3545.5979775262936, 3041.2508988533205], [-3852.7979775262456, 3297.0008988542077]], "destination": 3905020315}, {"length": 93.6327802875, "source": 1435746523, "path": [[-3130.497977526403, 2908.100898853405], [-3476.647977526337, 2790.150898853483], [-3627.7979775263257, 2731.500898853767], [-3693.097977526261, 2707.800898853918]], "destination": 141568877}, {"length": 12.6666779766, "source": 34818271, "path": [[-6404.347977526204, -2092.4491011484747], [-6353.397977526321, -2046.3991011467897]], "destination": 34818272}, {"length": 73.5587271725, "source": 34818271, "path": [[-6404.347977526204, -2092.4491011484747], [-6032.947977526293, -2315.3991011461985]], "destination": 34818300}, {"length": 66.548586733, "source": 34818272, "path": [[-6353.397977526321, -2046.3991011467897], [-6057.197977526352, -1819.299101146754]], "destination": 34818301}, {"length": 4.68946441324, "source": 1365433447, "path": [[1140.7020224736275, -1437.2491011478417], [1162.7520224737343, -1421.94910114668]], "destination": 1365436842}, {"length": 7.38302302055, "source": 1365433447, "path": [[1140.7020224736275, -1437.2491011478417], [1108.852022473794, -1462.999101146778]], "destination": 1365433451}, {"length": 15.5780915594, "source": 1365433447, "path": [[1140.7020224736275, -1437.2491011478417], [1227.9520224736107, -1477.3991011480803]], "destination": 1365433459}, {"length": 39.4346007815, "source": 1224713998, "path": [[1323.9020224737885, 118.2008988536154], [1201.402022473763, 62.65089885459929], [1135.1020224736885, 48.650898854418756], [1084.2520224736418, 45.250898853765875]], "destination": 133129700}, {"length": 4.68177045496, "source": 1224713998, "path": [[1323.9020224737885, 118.2008988536154], [1350.2520224737414, 130.15089885470843]], "destination": 133129820}, {"length": 16.4345270801, "source": 1224713998, "path": [[1323.9020224737885, 118.2008988536154], [1221.052022473801, 147.90089885252655]], "destination": 133129711}, {"length": 52.9064440852, "source": 36487395, "path": [[4243.702022473705, 1563.6508988521314], [4204.4020224736305, 1590.1008988521426], [3991.0020224736, 1733.800898854554]], "destination": 204831572}, {"length": 64.1435642297, "source": 36487395, "path": [[4243.702022473705, 1563.6508988521314], [4282.902022473722, 1537.350898853873], [4505.802022473748, 1387.9508988523526], [4550.752022473681, 1357.8008988517354]], "destination": 36487372}, {"length": 128.695734587, "source": 36487395, "path": [[4243.702022473705, 1563.6508988521314], [4206.402022473688, 1539.9008988516982], [3669.0020224736663, 1197.5008988542868], [3611.8520224737163, 1161.1008988516858]], "destination": 21378254}, {"length": 179.098599894, "source": 34818276, "path": [[-5009.697977526262, -1110.6491011467767], [-5046.04797752628, -1087.249101146881], [-5122.047977526245, -1038.3491011474177], [-5128.947977526277, -1027.9491011466746], [-4991.447977526375, -343.2991011464992]], "destination": 932824995}, {"length": 80.6498437222, "source": 34818276, "path": [[-5009.697977526262, -1110.6491011467767], [-4964.847977526388, -1097.349101147671], [-4555.99797752626, -976.1491011452961], [-4507.1479775262715, -961.6491011463779]], "destination": 34818277}, {"length": 13.3383437443, "source": 34818277, "path": [[-4507.1479775262715, -961.6491011463779], [-4546.347977526289, -907.4991011459588]], "destination": 34818473}, {"length": 63.1686923472, "source": 34818277, "path": [[-4507.1479775262715, -961.6491011463779], [-4492.547977526407, -983.1491011453863], [-4357.447977526352, -1182.1991011480293], [-4332.647977526305, -1221.4491011484085]], "destination": 4069612278}, {"length": 13.7426741416, "source": 929536231, "path": [[-706.4479775262811, -3248.399101146049], [-766.2479775263354, -3231.54910114809], [-792.9479775263815, -3224.299101148631]], "destination": 929535160}, {"length": 12.0652392105, "source": 929536231, "path": [[-706.4479775262811, -3248.399101146049], [-732.7479775263157, -3265.449101146345], [-776.3979775263774, -3273.999101146785]], "destination": 929535785}, {"length": 27.8149475343, "source": 311075048, "path": [[-2195.047977526343, 2406.000898851346], [-2298.797977526412, 2301.2008988523294]], "destination": 2557088547}, {"length": 26.3424868962, "source": 311075048, "path": [[-2195.047977526343, 2406.000898851346], [-2342.447977526252, 2474.0008988537456]], "destination": 311075068}, {"length": 28.6924771821, "source": 267696508, "path": [[-6585.447977526249, -117.39910114627605], [-6513.097977526305, -37.99910114565819], [-6497.147977526208, -3.0991011463754603]], "destination": 267696509}, {"length": 25.3912795242, "source": 4069611757, "path": [[-6410.797977526306, 2364.4008988519263], [-6541.497977526234, 2439.5008988520317]], "destination": 2503974234}, {"length": 7.85512044175, "source": 3905020285, "path": [[-4178.897977526352, 3696.3008988522006], [-4178.497977526341, 3701.650898854325], [-4177.047977526271, 3726.8508988539397], [-4181.3479775263395, 3730.700898852746]], "destination": 3905020280}, {"length": 18.3939696459, "source": 652939736, "path": [[-2327.247977526259, -2008.4491011473915], [-2417.397977526381, -2066.099101146079]], "destination": 1976883000}, {"length": 15.75083677, "source": 652939736, "path": [[-2327.247977526259, -2008.4491011473915], [-2297.8479775264127, -2034.0491011481276], [-2283.9979775262086, -2049.5491011480735], [-2278.1479775262346, -2066.5991011483698], [-2276.4979775262705, -2063.49910114767]], "destination": 652939740}, {"length": 11.1636963884, "source": 652939736, "path": [[-2327.247977526259, -2008.4491011473915], [-2272.5479775262957, -1973.4491011469402]], "destination": 1976882997}, {"length": 113.488137266, "source": 21389558, "path": [[-803.2479775264001, 3332.9008988545183], [-701.097977526377, 3347.750898853974], [-45.94797752632829, 3442.9008988539067]], "destination": 94266272}, {"length": 74.3415692331, "source": 21389558, "path": [[-803.2479775264001, 3332.9008988545183], [-764.1479775262194, 3307.100898851445], [-444.59797752627316, 3096.1508988518463]], "destination": 21378263}, {"length": 64.4759829347, "source": 158834936, "path": [[1161.1520224736882, 2180.650898853997], [1216.4020224736394, 2143.350898851537], [1427.0520224737293, 2001.1008988518597], [1468.6520224735932, 1973.0008988538827]], "destination": 204830556}, {"length": 44.1341988831, "source": 158834936, "path": [[1161.1520224736882, 2180.650898853997], [1332.4520224737846, 2289.7008988529424], [1377.902022473787, 2318.650898853747]], "destination": 158834766}, {"length": 32.4988870162, "source": 158834936, "path": [[1161.1520224736882, 2180.650898853997], [1127.5520224736101, 2158.7508988538675], [1003.3020224737843, 2077.850898853484]], "destination": 158834623}, {"length": 15.8962286918, "source": 146724610, "path": [[-3364.4979775262486, -1546.949101147277], [-3378.297977526312, -1476.0491011465149]], "destination": 146724612}, {"length": 34.7954598573, "source": 146724610, "path": [[-3364.4979775262486, -1546.949101147277], [-3398.547977526256, -1583.299101145741], [-3457.5479775262875, -1613.6491011486953], [-3544.4479775263994, -1643.4991011458067]], "destination": 146724619}, {"length": 35.4971080808, "source": 146724610, "path": [[-3364.4979775262486, -1546.949101147277], [-3331.4979775262987, -1599.0991011456401], [-3306.8979775263683, -1627.3991011459543], [-3232.847977526321, -1678.399101148642]], "destination": 146724604}, {"length": 16.1758387481, "source": 470180, "path": [[500.50202247375887, -1241.54910114882], [415.8020224735992, -1288.2991011480271]], "destination": 4955856170}, {"length": 100.551854737, "source": 470180, "path": [[500.50202247375887, -1241.54910114882], [564.4520224736826, -1200.5491011457536], [592.3520224737633, -1182.699101146767], [624.6520224737484, -1161.9991011464492], [992.8520224737891, -926.0991011466047]], "destination": 34845763}, {"length": 193.908617453, "source": 470180, "path": [[500.50202247375887, -1241.54910114882], [562.7520224738003, -1253.2491011469915], [661.352022473638, -1328.2491011459285], [702.9020224735838, -1357.7991011466395], [805.5020224737585, -1418.249101146074], [862.5020224737323, -1452.1991011484658], [1000.6520224736803, -1521.0491011465876], [1154.8520224737847, -1594.699101147512], [1245.4020224736962, -1634.8491011477506], [1357.3520224736678, -1682.0491011486638], [1556.7520224737398, -1754.8491011467604]], "destination": 4508646347}, {"length": 194.061463775, "source": 470180, "path": [[500.50202247375887, -1241.54910114882], [561.1520224737543, -1284.3491011480523], [814.952022473614, -1445.39910114716], [954.3520224737367, -1525.4491011482685], [1146.2020224737303, -1626.2491011467262], [1356.7020224736216, -1710.6991011459627], [1539.9520224737007, -1775.0491011483405]], "destination": 185883887}, {"length": 73.5587271725, "source": 34818300, "path": [[-6032.947977526293, -2315.3991011461985], [-6404.347977526204, -2092.4491011484747]], "destination": 34818271}, {"length": 61.4540820005, "source": 34818301, "path": [[-6057.197977526352, -1819.299101146754], [-6007.447977526282, -1781.1491011485714], [-5791.497977526205, -1605.2991011470397]], "destination": 295330628}, {"length": 91.7460007182, "source": 4069611774, "path": [[-5828.697977526387, 2140.800898853712], [-5473.34797752641, 1842.9508988546672], [-5440.497977526215, 1816.8508988516407]], "destination": 241582236}, {"length": 268.480742108, "source": 4069611774, "path": [[-5828.697977526387, 2140.800898853712], [-4608.247977526236, 1239.3508988530755]], "destination": 241583087}, {"length": 54.0005108937, "source": 3905020288, "path": [[-4483.397977526282, 3654.6508988521964], [-4297.997977526391, 3746.650898854398], [-4209.247977526198, 3755.600898852407], [-4181.3479775263395, 3730.700898852746]], "destination": 3905020280}, {"length": 65.9632730841, "source": 3905020288, "path": [[-4483.397977526282, 3654.6508988521964], [-4539.397977526338, 3701.8008988525253], [-4767.897977526303, 3884.700898851179]], "destination": 3905020276}, {"length": 7.37914094635, "source": 3905020288, "path": [[-4483.397977526282, 3654.6508988521964], [-4468.097977526231, 3642.1508988517817], [-4442.14797752629, 3640.8008988537686]], "destination": 3905020292}, {"length": 13.319012108, "source": 3905020288, "path": [[-4483.397977526282, 3654.6508988521964], [-4492.947977526418, 3649.9008988535306], [-4483.497977526341, 3634.150898854216], [-4447.697977526311, 3608.1508988523583]], "destination": 3905020294}, {"length": 51.4306110006, "source": 94267653, "path": [[2585.702022473768, 2687.9508988528755], [2626.502022473609, 2660.5008988518366], [2831.50202247362, 2522.65089885384]], "destination": 204830067}, {"length": 127.836617909, "source": 94267653, "path": [[2585.702022473768, 2687.9508988528755], [2548.9520224737385, 2664.5008988523955], [2011.4520224736586, 2321.050898853372], [1958.952022473648, 2287.5008988521017]], "destination": 158835639}, {"length": 12.0694072776, "source": 2504458034, "path": [[-3918.797977526367, 3613.2008988545294], [-3947.7479775262836, 3620.7508988539416], [-3998.197977526319, 3627.0008988523728]], "destination": 2503919613}, {"length": 150.051656382, "source": 2504458034, "path": [[-3918.797977526367, 3613.2008988545294], [-3958.197977526279, 3598.8008988532274], [-4195.947977526204, 3497.0008988537415], [-4311.8979775262915, 3447.900898851941], [-4397.2479775262755, 3411.0508988511865], [-4562.447977526363, 3322.900898851344], [-4626.047977526415, 3251.9008988529663], [-4628.54797752632, 3231.5008988526015], [-4631.1979775262025, 3211.7008988521434], [-4631.247977526343, 3173.9008988544983]], "destination": 141567847}, {"length": 4.48010754993, "source": 205094615, "path": [[5229.352022473766, -578.1491011482842], [5258.552022473717, -584.1991011479308]], "destination": 470185}, {"length": 74.3273665952, "source": 205094615, "path": [[5229.352022473766, -578.1491011482842], [5217.452022473701, -601.2991011488111], [5066.35202247363, -894.6991011455907]], "destination": 205094614}, {"length": 60.4418535203, "source": 310745357, "path": [[609.352022473697, 4230.400898851627], [665.1020224737181, 4248.0508988518295], [981.4520224737944, 4348.35089885155]], "destination": 3035151082}, {"length": 25.8897121637, "source": 310745357, "path": [[609.352022473697, 4230.400898851627], [689.60202247359, 4126.650898854223]], "destination": 173999126}, {"length": 68.2187545446, "source": 25625645, "path": [[4172.752022473692, -3611.5491011479153], [3804.402022473674, -3423.4491011453374]], "destination": 830630428}, {"length": 4.96758209691, "source": 25625645, "path": [[4172.752022473692, -3611.5491011479153], [4192.552022473706, -3593.3991011454227]], "destination": 2295302558}, {"length": 151.582248249, "source": 34817752, "path": [[-6635.2979775263775, -3337.649101148088], [-5741.247977526287, -3682.149101148724]], "destination": 34816443}, {"length": 59.6919413267, "source": 25624244, "path": [[-1030.4979775264123, -2238.249101147005], [-782.6479775263629, -2075.899101146916], [-741.3979775263701, -2048.8491011469987]], "destination": 146706953}, {"length": 17.1570679052, "source": 25624244, "path": [[-1030.4979775264123, -2238.249101147005], [-1116.4979775262207, -2290.6991011453215]], "destination": 925936540}, {"length": 42.7847735995, "source": 1096679700, "path": [[-5563.647977526287, 3647.0008988516156], [-5627.697977526269, 3611.550898853011], [-5659.797977526359, 3633.5008988537256], [-5717.747977526333, 3597.8508988527838], [-5684.997977526418, 3574.250898854103], [-5710.197977526254, 3558.750898854157]], "destination": 1229142922}, {"length": 193.641952318, "source": 1096679700, "path": [[-5563.647977526287, 3647.0008988516156], [-5683.797977526384, 3730.300898851624], [-6062.797977526291, 4003.7508988532977], [-6456.597977526401, 4289.550898853633]], "destination": 2589554901}, {"length": 51.5023625289, "source": 34818325, "path": [[-5979.697977526399, -2190.34910114857], [-5749.0479775264, -2015.3991011468975]], "destination": 34818302}, {"length": 98.9444017573, "source": 34818326, "path": [[-5484.697977526265, -1826.6491011473818], [-4812.747977526399, -1876.949101145442]], "destination": 34818328}, {"length": 57.0772787695, "source": 34818326, "path": [[-5484.697977526265, -1826.6491011473818], [-5749.0479775264, -2015.3991011468975]], "destination": 34818302}, {"length": 64.3187377163, "source": 34818326, "path": [[-5484.697977526265, -1826.6491011473818], [-5193.897977526341, -1609.749101145752]], "destination": 34818327}, {"length": 68.7788041146, "source": 34818327, "path": [[-5193.897977526341, -1609.749101145752], [-4775.847977526393, -1751.1991011467387]], "destination": 260588707}, {"length": 64.3187377163, "source": 34818327, "path": [[-5193.897977526341, -1609.749101145752], [-5484.697977526265, -1826.6491011473818]], "destination": 34818326}, {"length": 68.3842263549, "source": 34818327, "path": [[-5193.897977526341, -1609.749101145752], [-5613.547977526334, -1474.3491011479648]], "destination": 34818275}, {"length": 5.76376143394, "source": 34818328, "path": [[-4812.747977526399, -1876.949101145442], [-4817.247977526362, -1902.699101147931]], "destination": 2561299760}, {"length": 28.4820536188, "source": 34818328, "path": [[-4812.747977526399, -1876.949101145442], [-4775.847977526393, -1751.1991011467387]], "destination": 260588707}, {"length": 98.9444017573, "source": 34818328, "path": [[-4812.747977526399, -1876.949101145442], [-5484.697977526265, -1826.6491011473818]], "destination": 34818326}, {"length": 30.0335257792, "source": 925849988, "path": [[-1303.7479775264148, -2346.0491011455533], [-1116.4979775262207, -2290.6991011453215]], "destination": 925936540}, {"length": 13.4641069962, "source": 925849988, "path": [[-1303.7479775264148, -2346.0491011455533], [-1275.6479775262176, -2403.699101147794]], "destination": 925849973}, {"length": 115.759281354, "source": 597614875, "path": [[-3526.497977526244, 1239.5008988512757], [-3111.7479775262245, 1650.9508988526989], [-3089.0479775262934, 1673.2008988533664]], "destination": 695566727}, {"length": 49.0430976488, "source": 133129946, "path": [[-594.7979775262625, 11.150898853173885], [-689.9479775264173, 2.5508988521494302], [-751.3479775262955, 3.400898851424472], [-809.347977526409, 10.95089885438938], [-870.1979775262992, 23.950898853541958], [-918.3979775262419, 40.85089885208504]], "destination": 133129932}, {"length": 82.7081429789, "source": 133129946, "path": [[-594.7979775262625, 11.150898853173885], [-567.2479775262751, 41.10089885145385], [-518.7479775263793, 47.90089885275961], [-476.79797752619993, 72.15089885193038], [-455.64797752639663, 105.95089885256925], [-442.0479775262276, 108.9008988515161], [-409.6479775264061, 89.95089885388552], [-364.3979775262984, 63.50089885387433], [-321.8979775263531, 49.5008988536938], [-235.8479775264044, 7.150898852614773], [-192.79797752624893, -35.54910114544896]], "destination": 654054735}, {"length": 60.4983420376, "source": 133129946, "path": [[-594.7979775262625, 11.150898853173885], [-562.1979775263242, 14.200898853289345], [-506.69797752633804, 11.150898853173885], [-422.2979775263536, -11.849101145600116], [-297.8479775264109, -32.4991011453335], [-192.79797752624893, -35.54910114544896]], "destination": 654054735}, {"length": 546.479990857, "source": 930613534, "path": [[-1887.1479775262046, -997.3491011479041], [-1853.4479775262903, -977.0991011457397], [-1782.7979775262293, -1025.899101147587], [-1761.397977526391, -1012.1491011467754], [-1718.4979775262123, -1045.4991011457082], [-1556.7479775262516, -1170.7991011462582], [-451.44797752638686, -2048.09910114534], [-298.2479775262004, -2153.349101146063], [-91.8479775262604, -2251.549101146111], [801.102022473632, -2524.1491011485095], [806.9020224736878, -2537.8491011487367], [799.3520224736095, -2549.3491011481237], [796.3020224737161, -2553.899101148005]], "destination": 1445537099}, {"length": 35.7378630574, "source": 930613534, "path": [[-1887.1479775262046, -997.3491011479041], [-1734.3979775263917, -1122.74910114607]], "destination": 146706925}, {"length": 78.4402248141, "source": 258175263, "path": [[-3593.6479775262596, -3720.3991011480753], [-4122.24797752625, -3779.499101145944]], "destination": 258175257}, {"length": 19.8328729323, "source": 3905020309, "path": [[-3672.897977526235, 3389.800898851547], [-3779.997977526373, 3335.15089885239]], "destination": 3905020312}, {"length": 13.4020454035, "source": 3905020309, "path": [[-3672.897977526235, 3389.800898851547], [-3600.5479775262916, 3426.75089885347]], "destination": 2504736985}, {"length": 61.847396715, "source": 3905020309, "path": [[-3672.897977526235, 3389.800898851547], [-3822.4979775263178, 3453.6008988546027], [-3901.94797752641, 3523.1508988538], [-4012.9979775263005, 3533.40089885279]], "destination": 3905020299}, {"length": 22.2906453841, "source": 1179777317, "path": [[4298.902022473739, -335.2491011483494], [4351.902022473597, -349.1491011473613], [4439.052022473744, -374.49910114872864]], "destination": 368273}, {"length": 9.18227356081, "source": 1179777317, "path": [[4298.902022473739, -335.2491011483494], [4286.702022473721, -375.7491011455727]], "destination": 34845795}, {"length": 15.5160630017, "source": 932340008, "path": [[-3810.847977526288, -2104.849101147721], [-3768.4479775264012, -2168.799101145424]], "destination": 34816380}, {"length": 19.786010843, "source": 932340008, "path": [[-3810.847977526288, -2104.849101147721], [-3908.647977526325, -2166.2991011481836]], "destination": 311724134}, {"length": 8.14897789847, "source": 653601065, "path": [[1397.5520224736026, -1947.7991011456197], [1371.25202247379, -1980.099101146493]], "destination": 177220256}, {"length": 15.8072483428, "source": 653601065, "path": [[1397.5520224736026, -1947.7991011456197], [1493.602022473617, -1980.3491011458618]], "destination": 1503278666}, {"length": 27.6399093591, "source": 653601065, "path": [[1397.5520224736026, -1947.7991011456197], [1487.2020224736548, -1838.3991011461376]], "destination": 470181}, {"length": 19.4253762353, "source": 653601065, "path": [[1397.5520224736026, -1947.7991011456197], [1282.5020224735972, -1904.1991011476966]], "destination": 1503278630}, {"length": 15.4275188947, "source": 695566727, "path": [[-3089.0479775262934, 1673.2008988533664], [-3044.097977526361, 1735.9508988512573]], "destination": 920963605}, {"length": 8.46789995883, "source": 695566727, "path": [[-3089.0479775262934, 1673.2008988533664], [-3064.3979775262233, 1638.750898852237]], "destination": 277572134}, {"length": 70.8387379495, "source": 335690029, "path": [[-4501.997977526262, 3649.8008988523625], [-4221.397977526298, 3741.5008988546106], [-4178.547977526259, 3753.900898853857], [-4060.847977526372, 3779.5008988545933]], "destination": 141567836}, {"length": 82.4389468512, "source": 335690029, "path": [[-4501.997977526262, 3649.8008988523625], [-4857.147977526343, 3937.5508988541696]], "destination": 141566590}, {"length": 94.3261448525, "source": 335690031, "path": [[-4226.647977526365, 4213.050898851378], [-4172.44797752625, 4197.550898851432], [-3839.9479775264035, 3880.4508988512507]], "destination": 151347749}, {"length": 112.491582823, "source": 335690031, "path": [[-4226.647977526365, 4213.050898851378], [-4294.147977526252, 4211.4508988539965], [-4366.447977526278, 4186.050898852045], [-4857.147977526343, 3937.5508988541696]], "destination": 141566590}, {"length": 62.2978979641, "source": 25203763, "path": [[5418.052022473585, -1818.9491011462167], [5419.25202247362, -1792.7991011461586], [5429.50202247372, -1574.5491011465163], [5431.152022473684, -1538.9491011461587]], "destination": 25203875}, {"length": 66.6925284745, "source": 25203763, "path": [[5418.052022473585, -1818.9491011462167], [5416.852022473772, -1849.7491011473244], [5407.552022473672, -2093.1491011459966], [5406.552022473754, -2118.7491011467328]], "destination": 25203501}, {"length": 72.735164019, "source": 25623945, "path": [[-2135.5979775263822, -3930.6491011465996], [-1940.3979775263203, -4231.449101148144]], "destination": 25623938}, {"length": 47.8436965323, "source": 2463833500, "path": [[-6005.747977526399, 1192.8008988526528], [-5856.447977526269, 1081.150898851746], [-5791.047977526276, 1030.5508988537326]], "destination": 2463833647}, {"length": 7.92241726617, "source": 2463833500, "path": [[-6005.747977526399, 1192.8008988526528], [-6041.247977526254, 1219.70089885437]], "destination": 2463833459}, {"length": 12.0683809195, "source": 2463833500, "path": [[-6005.747977526399, 1192.8008988526528], [-5943.897977526369, 1228.7008988529635]], "destination": 2463833455}, {"length": 13.7063241641, "source": 1179777339, "path": [[4361.902022473662, -412.49910114871113], [4328.352022473725, -396.09910114535296], [4286.702022473721, -375.7491011455727]], "destination": 34845795}, {"length": 111.864726968, "source": 1179777339, "path": [[4361.902022473662, -412.49910114871113], [4319.102022473764, -432.39910114678537], [4136.502022473732, -836.2991011487964], [4159.502022473615, -880.9491011483317]], "destination": 666951702}, {"length": 30.3345041573, "source": 262314301, "path": [[6088.652022473661, 2109.4508988532825], [6105.9020224736305, 2049.450898852001], [6162.20202247364, 1983.8508988527792]], "destination": 36489622}, {"length": 27.5663225748, "source": 262314301, "path": [[6088.652022473661, 2109.4508988532825], [6015.75202247373, 2069.4008988542123], [5944.052022473612, 2030.0008988520801]], "destination": 259010103}, {"length": 120.516821633, "source": 1183501365, "path": [[3205.8020224736692, -1456.5491011460097], [3162.7020224735957, -1442.4991011487975], [3001.2520224735886, -1415.699101148249], [2926.202022473623, -1395.5491011472532], [2413.7520224736254, -1311.7491011485072]], "destination": 1298263464}, {"length": 70.9057737167, "source": 1183501365, "path": [[3205.8020224736692, -1456.5491011460097], [3108.5520224736206, -1144.1991011480468]], "destination": 1183500911}, {"length": 28.9464600819, "source": 3422228418, "path": [[-237.54797752628676, -318.0491011463005], [-230.99797752634822, -322.4991011485656], [-199.0979775263746, -344.04910114815834], [-147.69797752633986, -380.94910114594427], [-82.59797752629972, -390.29910114862787]], "destination": 3422228449}, {"length": 26.9593712925, "source": 3422228418, "path": [[-237.54797752628676, -318.0491011463005], [-323.1979775262239, -372.59910114784134], [-333.9979775263124, -379.499101146763], [-369.5979775262259, -402.5991011467056]], "destination": 3422228451}, {"length": 17.8616733144, "source": 3422228418, "path": [[-237.54797752628676, -318.0491011463005], [-181.39797752625418, -284.74910114795193], [-148.19797752640972, -263.3491011465594]], "destination": 3422228409}, {"length": 36.7392762727, "source": 925849923, "path": [[-1402.2979775263345, -2375.1491011481107], [-1372.6979775263715, -2211.099101145919]], "destination": 25624242}, {"length": 15.8038269838, "source": 925849923, "path": [[-1402.2979775263345, -2375.1491011481107], [-1303.7479775264148, -2346.0491011455533]], "destination": 925849988}, {"length": 50.6935650925, "source": 133128517, "path": [[858.7520224736522, 629.1508988525152], [610.0520224736616, 470.45089885244806]], "destination": 133052906}, {"length": 19.1372029845, "source": 133128517, "path": [[858.7520224736522, 629.1508988525152], [952.6520224736323, 689.0508988526278]], "destination": 133055563}, {"length": 23.7730900298, "source": 133128517, "path": [[858.7520224736522, 629.1508988525152], [806.5020224736763, 665.800898854485], [796.5020224736109, 698.8508988534647], [789.2520224737076, 721.3008988529168]], "destination": 133129620}, {"length": 90.43361101, "source": 634433862, "path": [[2935.4520224735834, -349.54910114848303], [2810.1520224736996, 48.650898854418756]], "destination": 3702865864}, {"length": 12.7298467398, "source": 634433862, "path": [[2935.4520224735834, -349.54910114848303], [3020.5020224736145, -337.4991011462214]], "destination": 1181634707}, {"length": 33.5948521258, "source": 4069612257, "path": [[-3228.2479775262996, -799.2491011457048], [-3318.5979775263163, -778.7491011477243], [-3452.597977526395, -780.8991011479804]], "destination": 185876056}, {"length": 45.9301553073, "source": 4069612257, "path": [[-3228.2479775262996, -799.2491011457048], [-3175.097977526242, -756.9491011487628], [-3123.4479775263944, -718.1491011465369], [-3002.74797752631, -657.2491011453963]], "destination": 4069612243}, {"length": 68.5224486292, "source": 4069612257, "path": [[-3228.2479775262996, -799.2491011457048], [-3166.297977526211, -813.2991011464696], [-2982.9479775262957, -835.5491011471372], [-2867.6479775262555, -842.3991011454746], [-2767.1979775263367, -845.899101147296]], "destination": 146724453}, {"length": 28.2512278062, "source": 1096679755, "path": [[-4876.447977526288, 2977.25089885148], [-4728.547977526309, 3058.9008988535224]], "destination": 4616562}, {"length": 22.0093081426, "source": 1096679755, "path": [[-4876.447977526288, 2977.25089885148], [-4812.547977526283, 2930.0008988535355], [-4834.897977526342, 2914.8508988541266], [-4856.247977526263, 2910.8508988535677]], "destination": 2645500891}, {"length": 95.8455822694, "source": 1096679755, "path": [[-4876.447977526288, 2977.25089885148], [-5320.597977526376, 3294.0008988546765]], "destination": 3920295909}, {"length": 19.7596482076, "source": 925849932, "path": [[-1237.647977526235, -2499.29910114588], [-1272.6979775263824, -2485.349101146284], [-1299.5979775263233, -2469.4491011487685], [-1328.847977526415, -2436.549101147989]], "destination": 25624238}, {"length": 138.268038585, "source": 925849932, "path": [[-1237.647977526235, -2499.29910114588], [-700.0479775263191, -3010.649101145901]], "destination": 270731367}, {"length": 44.9092761337, "source": 3734288098, "path": [[2902.3520224737977, 1933.2508988512132], [2682.0520224737356, 1792.6508988530543]], "destination": 133128776}, {"length": 31.9812748349, "source": 3734288098, "path": [[2902.3520224737977, 1933.2508988512132], [2824.952022473681, 1986.9008988528947], [2749.2520224736695, 2035.8508988529422]], "destination": 3734288099}, {"length": 30.8988216259, "source": 3734288098, "path": [[2902.3520224737977, 1933.2508988512132], [3053.902022473798, 2030.0008988520801]], "destination": 133128748}, {"length": 145.550700877, "source": 204840842, "path": [[2911.302022473583, -510.6991011487594], [2879.2520224736327, -504.0991011462381], [2055.3520224737554, -334.0991011455685], [2024.2020224736646, -318.3991011468379], [1977.6020224737679, -295.1491011486951]], "destination": 34845752}, {"length": 10.7188787608, "source": 204840842, "path": [[2911.302022473583, -510.6991011487594], [2983.302022473655, -501.7991011477818]], "destination": 34845754}, {"length": 140.85408366, "source": 204840842, "path": [[2911.302022473583, -510.6991011487594], [2900.102022473705, -474.5991011461115], [2743.8520224736253, 43.35089885287857], [2745.8520224736826, 68.15089885137127], [2768.5020224736954, 83.65089885131738], [2794.80202247373, 97.45089885271341]], "destination": 3702865861}, {"length": 43.4159109038, "source": 1365433501, "path": [[1826.0520224737675, -1673.9991011469613], [1814.4020224737378, -1706.4491011460348], [1723.9020224737444, -1737.74910114588], [1642.1020224737238, -1737.2491011471425], [1586.9520224736088, -1718.5991011459123]], "destination": 721620616}, {"length": 46.1938504858, "source": 1365433501, "path": [[1826.0520224737675, -1673.9991011469613], [1956.7020224737776, -1634.3491011454603], [2050.502022473699, -1634.899101148335], [2091.6020224737154, -1622.2991011467514], [2124.052022473677, -1624.949101145745]], "destination": 1365433480}, {"length": 28.5270772834, "source": 1365433501, "path": [[1826.0520224737675, -1673.9991011469613], [1787.6520224737735, -1626.5491011466793], [1739.6520224737255, -1609.0991011488143], [1683.0520224737634, -1599.5491011473462]], "destination": 1365433475}, {"length": 29.6222889497, "source": 654050360, "path": [[-2886.3979775262114, -1555.6491011459173], [-2741.8979775262196, -1462.3491011462875]], "destination": 654050369}, {"length": 15.7872799631, "source": 654050360, "path": [[-2886.3979775262114, -1555.6491011459173], [-2963.297977526258, -1505.8491011465946]], "destination": 146724602}, {"length": 68.1867675379, "source": 654050360, "path": [[-2886.3979775262114, -1555.6491011459173], [-3126.6479775262646, -1709.449101145566], [-3139.9979775263987, -1702.4491011454757], [-3187.4479775262366, -1709.199101146197], [-3232.847977526321, -1678.399101148642]], "destination": 146724604}, {"length": 48.5761516245, "source": 654057810, "path": [[-3038.297977526305, -2010.0991011453573], [-3267.9479775263862, -1852.3491011457338]], "destination": 654057811}, {"length": 48.7560688859, "source": 654057810, "path": [[-3038.297977526305, -2010.0991011453573], [-2808.6979775263644, -2168.9991011477614]], "destination": 654057812}, {"length": 86.8291521436, "source": 654057810, "path": [[-3038.297977526305, -2010.0991011453573], [-3372.647977526233, -2228.8491011472897], [-3453.247977526219, -2289.049101147356]], "destination": 652907478}, {"length": 22.879638536, "source": 654057811, "path": [[-3267.9479775263862, -1852.3491011457338], [-3327.7479775262186, -1811.2991011456359], [-3347.547977526233, -1798.699101147605], [-3379.0979775263354, -1780.0491011463748]], "destination": 146724600}, {"length": 48.5761516245, "source": 654057811, "path": [[-3267.9479775263862, -1852.3491011457338], [-3038.297977526305, -2010.0991011453573]], "destination": 654057810}, {"length": 80.2704446312, "source": 654057811, "path": [[-3267.9479775263862, -1852.3491011457338], [-3225.5479775262775, -1821.9491011457478], [-3148.7979775262074, -1774.699101147803], [-3118.6479775262565, -1756.0991011471572], [-3090.6479775263397, -1776.2991011487372], [-2994.1479775263956, -1845.9491011455498], [-2886.2979775263752, -1918.8991011453993]], "destination": 654057813}, {"length": 17.2730316178, "source": 36485460, "path": [[-757.5979775262808, 948.90089885169], [-842.447977526417, 894.9008988530238]], "destination": 36485568}, {"length": 94.5672751309, "source": 36485460, "path": [[-757.5979775262808, 948.90089885169], [-332.1479775262315, 1221.8008988540419], [-294.84797752621364, 1245.7508988532595]], "destination": 160014360}, {"length": 25.2734525656, "source": 654057813, "path": [[-2886.2979775263752, -1918.8991011453993], [-2849.947977526357, -1896.8991011476533], [-2836.0479775262347, -1888.4491011483817], [-2759.1979775263285, -1841.9491011485434]], "destination": 305911690}, {"length": 80.2704446312, "source": 654057813, "path": [[-2886.2979775263752, -1918.8991011453993], [-2994.1479775263956, -1845.9491011455498], [-3090.6479775263397, -1776.2991011487372], [-3118.6479775262565, -1756.0991011471572], [-3148.7979775262074, -1774.699101147803], [-3225.5479775262775, -1821.9491011457478], [-3267.9479775263862, -1852.3491011457338]], "destination": 654057811}, {"length": 79.0347153704, "source": 654057813, "path": [[-2886.2979775263752, -1918.8991011453993], [-2786.1479775264097, -1985.1491011486644], [-2688.4979775263496, -2050.749101147886], [-2655.6479775263765, -2072.7991011462163], [-2683.3479775263404, -2090.19910114705], [-2757.497977526224, -2136.8491011486412], [-2808.6979775263644, -2168.9991011477614]], "destination": 654057812}, {"length": 118.411991328, "source": 654050361, "path": [[-2639.847977526255, -1439.6991011480509], [-3082.5479775262734, -1721.0491011461215], [-3012.797977526294, -1761.6491011480662], [-2921.347977526301, -1733.9491011476582]], "destination": 146696196}, {"length": 93.1318869245, "source": 654050361, "path": [[-2639.847977526255, -1439.6991011480509], [-2293.997977526274, -1219.8991011480587], [-2394.3479775263563, -1141.5991011460846]], "destination": 654047845}, {"length": 22.0229920066, "source": 654050361, "path": [[-2639.847977526255, -1439.6991011480509], [-2664.097977526314, -1422.8491011465394], [-2593.0479775262415, -1378.6991011457417], [-2597.147977526415, -1367.4991011463078]], "destination": 654050365}, {"length": 90.7064766527, "source": 4616537, "path": [[2756.402022473736, -3066.2991011460863], [2748.852022473658, -3087.6491011468943], [2634.152022473746, -3411.7991011477498], [2615.852022473719, -3463.549101148544]], "destination": 25625757}, {"length": 50.6656445986, "source": 4616537, "path": [[2756.402022473736, -3066.2991011460863], [2421.0020224737505, -3009.5491011472577]], "destination": 583327934}, {"length": 30.220201283, "source": 277410140, "path": [[-4211.397977526232, -2767.3491011483975], [-4064.447977526253, -2671.8491011479273]], "destination": 1987166918}, {"length": 78.4991460864, "source": 277410140, "path": [[-4211.397977526232, -2767.3491011483975], [-4589.347977526303, -3017.8991011453604]], "destination": 277410159}, {"length": 92.1507637989, "source": 277410140, "path": [[-4211.397977526232, -2767.3491011483975], [-4202.847977526236, -2829.8991011475036], [-4202.497977526365, -2853.4991011461843], [-4296.847977526275, -2915.1991011460154], [-4325.197977526285, -2922.7991011460117], [-4489.897977526302, -3031.499101147972], [-4589.347977526303, -3017.8991011453604]], "destination": 277410159}, {"length": 128.305310449, "source": 4616541, "path": [[2141.352022473786, -2930.8491011477145], [1411.0520224737134, -2773.249101146291], [1308.052022473749, -2750.9991011456236]], "destination": 721638483}, {"length": 129.778281928, "source": 4616541, "path": [[2141.352022473786, -2930.8491011477145], [2072.502022473666, -2942.3491011471015], [1295.6020224736965, -2778.0991011461256]], "destination": 1893476491}, {"length": 105.268425512, "source": 4616541, "path": [[2141.352022473786, -2930.8491011477145], [2113.302022473729, -2964.7991011465538], [2058.552022473625, -3030.94910114865], [1797.352022473664, -3346.5991011460974]], "destination": 25625325}, {"length": 83.5505309995, "source": 4616542, "path": [[292.3020224736561, -2466.0991011487], [265.6520224737502, -2497.399101148545], [8.402022473763537, -2759.599101146648], [-14.497977526284345, -2782.8991011453754]], "destination": 25625024}, {"length": 109.863784202, "source": 4616542, "path": [[292.3020224736561, -2466.0991011487], [-149.1479775264093, -2331.249101146682], [-377.7979775263507, -2244.1491011484513]], "destination": 4616543}, {"length": 611.306598003, "source": 4616543, "path": [[-377.7979775263507, -2244.1491011484513], [-558.0979775263728, -2134.099101148479], [-1457.947977526297, -1433.8491011471888], [-2066.6479775262037, -945.8491011464787], [-2533.2979775263275, -559.8991011481758], [-2901.8979775263797, -252.49910114766294], [-3061.2979775264116, -139.64910114694362]], "destination": 146724409}, {"length": 69.1282151495, "source": 4616543, "path": [[-377.7979775263507, -2244.1491011484513], [-584.9479775263954, -2155.799101146272], [-741.3979775263701, -2048.8491011469987]], "destination": 146706953}, {"length": 39.0096973524, "source": 146724600, "path": [[-3379.0979775263354, -1780.0491011463748], [-3459.1479775263333, -1727.4491011463056], [-3544.4479775263994, -1643.4991011458067]], "destination": 146724619}, {"length": 22.879638536, "source": 146724600, "path": [[-3379.0979775263354, -1780.0491011463748], [-3347.547977526233, -1798.699101147605], [-3327.7479775262186, -1811.2991011456359], [-3267.9479775263862, -1852.3491011457338]], "destination": 654057811}, {"length": 31.126662981, "source": 146724600, "path": [[-3379.0979775263354, -1780.0491011463748], [-3232.847977526321, -1678.399101148642]], "destination": 146724604}, {"length": 47.0274759382, "source": 185858401, "path": [[-5327.547977526326, 738.100898853844], [-5354.247977526372, 758.6508988524088], [-5375.147977526362, 774.7508988522611], [-5439.597977526356, 824.3008988522149], [-5453.797977526209, 835.25089885228], [-5517.647977526297, 883.0008988525151], [-5537.747977526264, 898.0508988543079]], "destination": 2463833697}, {"length": 49.0417767522, "source": 185858401, "path": [[-5327.547977526326, 738.100898853844], [-5184.14797752631, 636.0008988544052], [-5094.647977526234, 579.6508988531457]], "destination": 276922155}, {"length": 125.695367462, "source": 185858401, "path": [[-5327.547977526326, 738.100898853844], [-4767.647977526268, 1073.4008988535493], [-4754.347977526274, 1081.3508988540832], [-4706.497977526203, 1126.750898851725]], "destination": 185857229}, {"length": 80.8085339243, "source": 270921350, "path": [[3392.402022473595, -3759.09910114558], [3472.6020224737917, -3763.5491011478452], [3481.702022473776, -3779.9491011476503], [3463.2020224736325, -4002.6491011460053], [3369.2020224735943, -4035.299101147416]], "destination": 25625680}, {"length": 34.5781378648, "source": 270921350, "path": [[3392.402022473595, -3759.09910114558], [3403.9020224736482, -3603.7991011461654]], "destination": 831956670}, {"length": 25.8682939012, "source": 270921350, "path": [[3392.402022473595, -3759.09910114558], [3382.8520224736812, -3875.2491011457832]], "destination": 831943759}, {"length": 14.2971626016, "source": 5057169763, "path": [[3746.1020224736076, -3343.5491011459817], [3648.402022473629, -3341.999101145632]], "destination": 5057169764}, {"length": 13.3805916229, "source": 5057169764, "path": [[3648.402022473629, -3341.999101145632], [3617.8020224737484, -3334.099101145682], [3562.9520224735866, -3320.5491011472077]], "destination": 25625636}, {"length": 97.3075293056, "source": 5057169764, "path": [[3648.402022473629, -3341.999101145632], [3815.1520224736223, -3413.0491011481467], [4192.552022473706, -3593.3991011454227]], "destination": 2295302558}, {"length": 112.59541213, "source": 1179777383, "path": [[5120.552022473746, 919.500898852732], [5124.302022473604, 881.4508988521652], [4923.6520224738015, 463.8008988528952], [4897.602022473801, 439.0008988544025]], "destination": 666949021}, {"length": 39.0919478706, "source": 1179777383, "path": [[5120.552022473746, 919.500898852732], [5186.952022473656, 904.2008988515704], [5372.702022473641, 861.4008988523381]], "destination": 913934862}, {"length": 4.03224208344, "source": 5057169769, "path": [[4725.10202247367, -3871.8991011457147], [4706.202022473738, -3885.0991011472047]], "destination": 5057169770}, {"length": 213.936246466, "source": 5057169769, "path": [[4725.10202247367, -3871.8991011457147], [5807.202022473756, -4428.9991011474685], [5876.602022473643, -4464.899101147779]], "destination": 830630348}, {"length": 4.03224208344, "source": 5057169770, "path": [[4706.202022473738, -3885.0991011472047], [4725.10202247367, -3871.8991011457147]], "destination": 5057169769}, {"length": 11.5462719009, "source": 5057169770, "path": [[4706.202022473738, -3885.0991011472047], [4652.102022473681, -3922.8991011484027]], "destination": 5057169771}, {"length": 45.3860873395, "source": 5057169770, "path": [[4706.202022473738, -3885.0991011472047], [4461.202022473687, -3759.8991011478233]], "destination": 370350031}, {"length": 93.6580259421, "source": 5057169771, "path": [[4652.102022473681, -3922.8991011484027], [4213.202022473661, -4229.499101146672]], "destination": 25625656}, {"length": 11.5462719009, "source": 5057169771, "path": [[4652.102022473681, -3922.8991011484027], [4706.202022473738, -3885.0991011472047]], "destination": 5057169770}, {"length": 52.6900082646, "source": 5057169771, "path": [[4652.102022473681, -3922.8991011484027], [4432.252022473771, -3809.5491011453933], [4461.202022473687, -3759.8991011478233]], "destination": 370350031}, {"length": 78.4991460864, "source": 277410159, "path": [[-4589.347977526303, -3017.8991011453604], [-4211.397977526232, -2767.3491011483975]], "destination": 277410140}, {"length": 92.4827390463, "source": 277410159, "path": [[-4589.347977526303, -3017.8991011453604], [-4614.997977526292, -2952.2991011461386], [-4458.3479775262, -2850.1991011467], [-4440.147977526232, -2825.5491011464073], [-4334.397977526328, -2761.599101148704], [-4308.547977526223, -2761.849101148073], [-4211.397977526232, -2767.3491011483975]], "destination": 277410140}, {"length": 192.441052346, "source": 277410159, "path": [[-4589.347977526303, -3017.8991011453604], [-5552.447977526409, -3607.299101147987]], "destination": 277951533}, {"length": 16.9582544787, "source": 3905020272, "path": [[-4750.497977526358, 3916.8008988532674], [-4748.447977526383, 3930.8008988534484], [-4735.297977526365, 3929.450898851883], [-4742.147977526257, 3897.700898853884], [-4767.897977526303, 3884.700898851179]], "destination": 3905020276}, {"length": 28.2512278062, "source": 4616562, "path": [[-4728.547977526309, 3058.9008988535224], [-4876.447977526288, 2977.25089885148]], "destination": 1096679755}, {"length": 164.313734634, "source": 4616562, "path": [[-4728.547977526309, 3058.9008988535224], [-5494.597977526272, 3599.1008988531803]], "destination": 141564678}, {"length": 26.8149617915, "source": 661237, "path": [[-1620.597977526339, 3201.0008988514473], [-1561.4479775263312, 3176.65089885466], [-1526.2979775263475, 3162.1508988521896], [-1465.2979775262586, 3137.0008988531595]], "destination": 34909161}, {"length": 100.936188574, "source": 661237, "path": [[-1620.597977526339, 3201.0008988514473], [-1562.0479775262374, 3259.9508988546686], [-1360.3479775263772, 3463.1008988519343], [-1243.2979775263143, 3580.95089885424]], "destination": 94268426}, {"length": 19.1896424734, "source": 1223768436, "path": [[2789.8520224736158, 290.55089885332563], [2760.5020224736877, 206.45089885462653]], "destination": 470184}, {"length": 22.1817212728, "source": 925849973, "path": [[-1275.6479775262176, -2403.699101147794], [-1255.3479775263554, -2441.4491011484074], [-1238.5479775263163, -2473.599101147528], [-1237.647977526235, -2499.29910114588]], "destination": 925849932}, {"length": 10.6750661504, "source": 925849973, "path": [[-1275.6479775262176, -2403.699101147794], [-1328.847977526415, -2436.549101147989]], "destination": 25624238}, {"length": 18.2927546311, "source": 3734288105, "path": [[2806.6520224736546, 2176.300898852901], [2849.8020224736465, 2099.1008988531235]], "destination": 3734288106}, {"length": 39.2757417235, "source": 3734288105, "path": [[2806.6520224736546, 2176.300898852901], [2612.002022473581, 2054.700898852957]], "destination": 3734288108}, {"length": 12.0099888077, "source": 3734288105, "path": [[2806.6520224736546, 2176.300898852901], [2866.152022473756, 2213.5008988541927]], "destination": 3734288103}, {"length": 54.0005108937, "source": 3905020280, "path": [[-4181.3479775263395, 3730.700898852746], [-4209.247977526198, 3755.600898852407], [-4297.997977526391, 3746.650898854398], [-4483.397977526282, 3654.6508988521964]], "destination": 3905020288}, {"length": 10.2995099797, "source": 3905020280, "path": [[-4181.3479775263395, 3730.700898852746], [-4236.347977526256, 3701.8008988525253]], "destination": 3905020283}, {"length": 7.85512044175, "source": 3905020280, "path": [[-4181.3479775263395, 3730.700898852746], [-4177.047977526271, 3726.8508988539397], [-4178.497977526341, 3701.650898854325], [-4178.897977526352, 3696.3008988522006]], "destination": 3905020285}, {"length": 20.2208013211, "source": 1219877241, "path": [[5272.35202247378, 3992.700898852064], [5367.952022473643, 3927.050898852258]], "destination": 1219877396}, {"length": 10.2995099797, "source": 3905020283, "path": [[-4236.347977526256, 3701.8008988525253], [-4181.3479775263395, 3730.700898852746]], "destination": 3905020280}, {"length": 16.6640359583, "source": 3905020283, "path": [[-4236.347977526256, 3701.8008988525253], [-4257.747977526316, 3702.900898851169], [-4299.647977526355, 3678.7008988525827], [-4330.0979775262595, 3665.250898851724]], "destination": 2533527464}, {"length": 52.5180047334, "source": 3905020283, "path": [[-4236.347977526256, 3701.8008988525253], [-4213.497977526348, 3700.650898853297], [-4178.5979775263995, 3692.650898852179], [-4040.047977526218, 3583.950898853772], [-4012.5979775262886, 3548.5508988521988], [-4012.9979775263005, 3533.40089885279]], "destination": 3905020299}, {"length": 51.7416394807, "source": 34816380, "path": [[-3768.4479775264012, -2168.799101145424], [-3522.5979775264095, -2336.0491011459317]], "destination": 652902152}, {"length": 72.6461453564, "source": 267696509, "path": [[-6497.147977526208, -3.0991011463754603], [-6109.197977526293, -66.29910114597237], [-6015.197977526254, -81.59910114713398]], "destination": 34818555}, {"length": 28.6924771821, "source": 267696509, "path": [[-6497.147977526208, -3.0991011463754603], [-6513.097977526305, -37.99910114565819], [-6585.447977526249, -117.39910114627605]], "destination": 267696508}, {"length": 9.52008801778, "source": 925860223, "path": [[966.152022473743, -2583.6491011475005], [906.8020224736184, -2566.0991011484666]], "destination": 721638495}, {"length": 160.302700688, "source": 133128576, "path": [[-860.6979775263035, 247.05089885301845], [-799.1979775263669, 237.95089885325638], [-769.8979775263571, 233.60089885215984], [-690.6479775263819, 273.65089885122984], [-639.6479775263585, 268.4008988538267], [-583.2979775262093, 271.70089885331095], [-534.44797752622, 264.05089885273014], [-486.94797752624197, 248.60089885336834], [-462.4479775263701, 232.00089885122566], [-422.84797752634165, 226.00089885216335], [-372.7479775263998, 225.0508988517197], [-337.347977526381, 229.25089885461603], [-291.34797752639054, 237.65089885330326], [-258.9979775262652, 236.600898851691], [-227.04797752637342, 225.30089885464122], [-205.9979775264065, 215.20089885385119], [-189.64797752629715, 193.10089885138382], [-178.147977526244, 143.60089885201432], [-196.49797752641086, 32.30089885164489], [-192.79797752624893, -35.54910114544896]], "destination": 654054735}, {"length": 41.1004740366, "source": 133128576, "path": [[-860.6979775263035, 247.05089885301845], [-819.1979775262758, 286.5008988521822], [-768.3979775263695, 324.1008988545957], [-703.2979775263293, 362.4508988515629], [-668.5479775263569, 380.35089885468665]], "destination": 639619459}, {"length": 43.9638515324, "source": 133128576, "path": [[-860.6979775263035, 247.05089885301845], [-900.047977526297, 193.65089885425846], [-941.7979775263597, 114.95089885471543], [-982.2979775262475, 66.85089885394291]], "destination": 133129935}, {"length": 41.1004740366, "source": 639619459, "path": [[-668.5479775263569, 380.35089885468665], [-703.2979775263293, 362.4508988515629], [-768.3979775263695, 324.1008988545957], [-819.1979775262758, 286.5008988521822], [-860.6979775263035, 247.05089885301845]], "destination": 133128576}, {"length": 65.2218742762, "source": 639619459, "path": [[-668.5479775263569, 380.35089885468665], [-614.2479775264054, 400.1008988545607], [-523.3979775263186, 419.3508988521444], [-416.69797752641455, 441.0008988529057], [-354.6479775262679, 468.55089885156076], [-281.89797752631307, 515.3508988513522]], "destination": 159973957}, {"length": 53.7339418183, "source": 639619459, "path": [[-668.5479775263569, 380.35089885468665], [-735.7479775262909, 397.2008988526454], [-806.94797752634, 403.9508988533669], [-878.697977526377, 400.3008988533452], [-947.4479775262168, 386.40089885433326], [-1024.9979775263096, 374.90089885139355]], "destination": 3491466823}, {"length": 18.8776262089, "source": 3905020292, "path": [[-4442.14797752629, 3640.8008988537686], [-4430.0979775262485, 3652.450898851356], [-4391.097977526348, 3668.9008988517458], [-4330.0979775262595, 3665.250898851724]], "destination": 2533527464}, {"length": 7.37914094635, "source": 3905020292, "path": [[-4442.14797752629, 3640.8008988537686], [-4468.097977526231, 3642.1508988517817], [-4483.397977526282, 3654.6508988521964]], "destination": 3905020288}, {"length": 7.30571174854, "source": 3905020292, "path": [[-4442.14797752629, 3640.8008988537686], [-4447.697977526311, 3608.1508988523583]], "destination": 3905020294}, {"length": 19.7832775911, "source": 36489622, "path": [[6162.20202247364, 1983.8508988527792], [6027.202022473643, 1979.0508988535294]], "destination": 36489621}, {"length": 19.7301318976, "source": 36489622, "path": [[6162.20202247364, 1983.8508988527792], [6296.502022473671, 1991.7508988527288]], "destination": 36489623}, {"length": 13.319012108, "source": 3905020294, "path": [[-4447.697977526311, 3608.1508988523583], [-4483.497977526341, 3634.150898854216], [-4492.947977526418, 3649.9008988535306], [-4483.397977526282, 3654.6508988521964]], "destination": 3905020288}, {"length": 7.30571174854, "source": 3905020294, "path": [[-4447.697977526311, 3608.1508988523583], [-4442.14797752629, 3640.8008988537686]], "destination": 3905020292}, {"length": 1.8748245632, "source": 3905020294, "path": [[-4447.697977526311, 3608.1508988523583], [-4456.797977526295, 3602.20089885388]], "destination": 3905020295}, {"length": 1.8748245632, "source": 3905020295, "path": [[-4456.797977526295, 3602.20089885388], [-4447.697977526311, 3608.1508988523583]], "destination": 3905020294}, {"length": 7.29453143609, "source": 34818440, "path": [[-5041.997977526247, -263.6991011470968], [-5038.2979775263075, -248.39910114593522], [-5028.647977526335, -232.29910114608288]], "destination": 34817817}, {"length": 10.0218727252, "source": 34818440, "path": [[-5041.997977526247, -263.6991011470968], [-5109.447977526216, -271.54910114646214]], "destination": 370134459}, {"length": 11.0174093857, "source": 34818441, "path": [[-4994.447977526351, -216.14910114564623], [-4976.447977526277, -212.49910114562454], [-4957.647977526402, -211.7491011475181], [-4939.14797752626, -213.94910114835852], [-4921.897977526291, -218.94910114639288]], "destination": 34818443}, {"length": 25.843337014, "source": 34818441, "path": [[-4994.447977526351, -216.14910114564623], [-5054.297977526323, -157.39910114831446], [-5092.747977526235, -119.59910114711647]], "destination": 370134462}, {"length": 13.702298209, "source": 34818443, "path": [[-4921.897977526291, -218.94910114639288], [-4903.747977526241, -228.64910114606118], [-4890.647977526363, -241.39910114584495], [-4883.6979775264135, -256.14910114768463], [-4883.497977526296, -271.54910114646214]], "destination": 34818448}, {"length": 102.526156404, "source": 34818443, "path": [[-4921.897977526291, -218.94910114639288], [-4901.647977526347, -198.69910114778122], [-4535.747977526316, 165.75089885151328]], "destination": 185858261}, {"length": 2.69883741693, "source": 3734288109, "path": [[3374.05202247365, 2875.100898851457], [3381.652022473647, 2880.2508988512445], [3387.402022473784, 2883.4508988531124]], "destination": 3732250544}, {"length": 6.75310635882, "source": 3734288109, "path": [[3374.05202247365, 2875.100898851457], [3341.8520224737235, 2853.35089885308]], "destination": 167918461}, {"length": 51.2723408753, "source": 3734288109, "path": [[3374.05202247365, 2875.100898851457], [3129.10202247374, 3039.9508988523394]], "destination": 3734288110}, {"length": 10.5408165624, "source": 34818448, "path": [[-4883.497977526296, -271.54910114646214], [-4887.997977526259, -283.04910114584914], [-4896.29797752622, -293.5491011477609], [-4907.94797752625, -302.59910114693866], [-4922.397977526361, -309.64910114761324]], "destination": 34818472}, {"length": 150.539263108, "source": 34818448, "path": [[-4883.497977526296, -271.54910114646214], [-4842.597977526397, -279.74910114636486], [-4038.0979775263004, -437.79910114594145], [-3945.3979775263547, -462.59910114798686], [-3906.747977526326, -479.54910114711424]], "destination": 304991211}, {"length": 16.6852099185, "source": 3905020305, "path": [[-3516.397977526342, 3430.6008988522763], [-3570.8979775264106, 3403.700898854112], [-3600.5479775262916, 3426.75089885347]], "destination": 2504736985}, {"length": 7.63979581159, "source": 1365433411, "path": [[1982.4020224736837, -1271.5991011482686], [1963.6020224735873, -1303.6491011462203]], "destination": 1365433420}, {"length": 35.7539461654, "source": 36489621, "path": [[6027.202022473643, 1979.0508988535294], [6011.152022473709, 1978.15089885367], [5966.402022473671, 1975.5508988517079], [5786.752022473695, 1951.6008988524902]], "destination": 130097205}, {"length": 19.7832775911, "source": 36489621, "path": [[6027.202022473643, 1979.0508988535294], [6162.20202247364, 1983.8508988527792]], "destination": 36489622}, {"length": 17.5602323026, "source": 3905020310, "path": [[-4309.747977526257, 3377.900898854591], [-4404.797977526354, 3329.70089885265]], "destination": 3905020313}, {"length": 96.3737914151, "source": 3905020310, "path": [[-4309.747977526257, 3377.900898854591], [-4242.997977526253, 3412.5008988539207], [-4003.9479775262344, 3217.8008988523743], [-3852.7979775262456, 3297.0008988542077]], "destination": 3905020315}, {"length": 30.8756310994, "source": 3905020310, "path": [[-4309.747977526257, 3377.900898854591], [-4281.447977526387, 3323.4008988536343], [-4272.947977526309, 3242.350898851498]], "destination": 3905020319}, {"length": 19.7301318976, "source": 36489623, "path": [[6296.502022473671, 1991.7508988527288], [6162.20202247364, 1983.8508988527792]], "destination": 36489622}, {"length": 14.6182070313, "source": 36489623, "path": [[6296.502022473671, 1991.7508988527288], [6347.302022473799, 1935.1508988521005]], "destination": 262313918}, {"length": 13.6191817781, "source": 3905020312, "path": [[-3779.997977526373, 3335.15089885239], [-3852.7979775262456, 3297.0008988542077]], "destination": 3905020315}, {"length": 55.7350228292, "source": 3905020312, "path": [[-3779.997977526373, 3335.15089885239], [-4012.9979775263005, 3533.40089885279]], "destination": 3905020299}, {"length": 19.8328729323, "source": 3905020312, "path": [[-3779.997977526373, 3335.15089885239], [-3672.897977526235, 3389.800898851547]], "destination": 3905020309}, {"length": 9.02286244318, "source": 25625668, "path": [[3341.4020224737937, -4336.849101147067], [3346.20202247371, -4296.399101146875]], "destination": 831943768}, {"length": 71.7451586351, "source": 25625668, "path": [[3341.4020224737937, -4336.849101147067], [3460.952022473762, -4431.199101148309], [3618.3520224737363, -4554.99910114554], [3655.802022473731, -4584.449101148635]], "destination": 25625661}, {"length": 9.7852598363, "source": 25625668, "path": [[3341.4020224737937, -4336.849101147067], [3336.902022473609, -4380.749101148495]], "destination": 831956663}, {"length": 13.6191817781, "source": 3905020315, "path": [[-3852.7979775262456, 3297.0008988542077], [-3779.997977526373, 3335.15089885239]], "destination": 3905020312}, {"length": 161.685305694, "source": 3905020315, "path": [[-3852.7979775262456, 3297.0008988542077], [-3545.5979775262936, 3041.2508988533205], [-3516.297977526284, 3056.5008988538975], [-3390.49797752633, 3119.850898851695], [-3130.497977526403, 2908.100898853405]], "destination": 1435746523}, {"length": 96.3737914151, "source": 3905020315, "path": [[-3852.7979775262456, 3297.0008988542077], [-4003.9479775262344, 3217.8008988523743], [-4242.997977526253, 3412.5008988539207], [-4309.747977526257, 3377.900898854591]], "destination": 3905020310}, {"length": 12.7617493768, "source": 932276637, "path": [[-3611.6479775263333, -2754.8491011479828], [-3646.9479775262935, -2758.5491011485883], [-3698.3479775263286, -2760.449101145923]], "destination": 272269976}, {"length": 6.26573851705, "source": 2295302558, "path": [[4192.552022473706, -3593.3991011454227], [4217.502022473729, -3570.499101147817]], "destination": 370349352}, {"length": 99.5282441785, "source": 2295302558, "path": [[4192.552022473706, -3593.3991011454227], [4725.10202247367, -3871.8991011457147]], "destination": 5057169769}, {"length": 28.0674614896, "source": 3905020319, "path": [[-4272.947977526309, 3242.350898851498], [-4320.3479775262285, 3256.3508988516787], [-4404.797977526354, 3329.70089885265]], "destination": 3905020313}, {"length": 30.8756310994, "source": 3905020319, "path": [[-4272.947977526309, 3242.350898851498], [-4281.447977526387, 3323.4008988536343], [-4309.747977526257, 3377.900898854591]], "destination": 3905020310}, {"length": 49.4861147662, "source": 3905020319, "path": [[-4272.947977526309, 3242.350898851498], [-4262.297977526419, 3208.350898852075], [-4229.047977526212, 3157.6008988523085], [-4111.54797752622, 3049.950898851961]], "destination": 3905020329}, {"length": 41.0233127813, "source": 36488944, "path": [[6701.7520224736945, 1049.900898852485], [6503.602022473798, 1180.4008988534065]], "destination": 36488945}, {"length": 11.788824928, "source": 36488944, "path": [[6701.7520224736945, 1049.900898852485], [6753.002022473753, 1090.8008988543827]], "destination": 1181466558}, {"length": 10.8832614586, "source": 36488944, "path": [[6701.7520224736945, 1049.900898852485], [6754.952022473671, 1015.700898854277]], "destination": 36488943}, {"length": 44.1322770655, "source": 3905020323, "path": [[-4473.74797752631, 3193.750898851988], [-4547.397977526346, 3257.3508988527065], [-4404.797977526354, 3329.70089885265]], "destination": 3905020313}, {"length": 11.9814382778, "source": 3905020323, "path": [[-4473.74797752631, 3193.750898851988], [-4538.34797752628, 3160.650898852424]], "destination": 3905020325}, {"length": 91.5293261711, "source": 3905020323, "path": [[-4473.74797752631, 3193.750898851988], [-4459.797977526269, 3181.650898852695], [-4513.447977526397, 3153.000898851843], [-4303.197977526319, 2981.1508988544233], [-4244.397977526404, 2975.55089885293], [-4167.6979775262525, 2914.450898853005], [-4157.09797752628, 2904.7508988533364]], "destination": 3905020334}, {"length": 24.316817242, "source": 4069612201, "path": [[-4388.497977526385, 266.00089885420175], [-4297.397977526262, 357.45089885352854]], "destination": 308768787}, {"length": 32.3932097554, "source": 4069612201, "path": [[-4388.497977526385, 266.00089885420175], [-4473.647977526251, 180.50089885335296], [-4535.747977526316, 165.75089885151328]], "destination": 185858261}, {"length": 2.34763724476, "source": 4069612201, "path": [[-4388.497977526385, 266.00089885420175], [-4392.197977526324, 267.75089885333614], [-4396.697977526287, 269.90089885359225], [-4401.497977526203, 272.15089885146426]], "destination": 4069612199}, {"length": 11.9814382778, "source": 3905020325, "path": [[-4538.34797752628, 3160.650898852424], [-4473.74797752631, 3193.750898851988]], "destination": 3905020323}, {"length": 53.0791757644, "source": 133128615, "path": [[1005.7020224736312, 1339.5008988545953], [856.2020224736067, 1440.3508988536373], [752.4020224736195, 1510.35089885454]], "destination": 21378257}, {"length": 25.6221919861, "source": 133128615, "path": [[1005.7020224736312, 1339.5008988545953], [1130.4520224737491, 1420.3508988543945]], "destination": 133128621}, {"length": 8.79216918243, "source": 133128615, "path": [[1005.7020224736312, 1339.5008988545953], [962.9020224737328, 1311.750898853603]], "destination": 133058023}, {"length": 25.9408413499, "source": 34818472, "path": [[-4922.397977526361, -309.64910114761324], [-4919.297977526327, -344.74910114568047], [-4912.14797752626, -426.09910114776994]], "destination": 337626813}, {"length": 9.99846162531, "source": 34818472, "path": [[-4922.397977526361, -309.64910114761324], [-4937.997977526365, -314.2491011480786], [-4954.747977526264, -316.4991011459506], [-4971.847977526256, -316.3491011477504], [-4988.497977526318, -313.84910114695685]], "destination": 34818437}, {"length": 9.99215153646, "source": 34818473, "path": [[-4546.347977526289, -907.4991011459588], [-4484.497977526258, -888.4491011471596]], "destination": 4069612264}, {"length": 13.3383437443, "source": 34818473, "path": [[-4546.347977526289, -907.4991011459588], [-4507.1479775262715, -961.6491011463779]], "destination": 34818277}, {"length": 119.691349646, "source": 34818473, "path": [[-4546.347977526289, -907.4991011459588], [-4585.047977526236, -856.5991011479923], [-4912.14797752626, -426.09910114776994]], "destination": 337626813}, {"length": 13.0735431503, "source": 1365436842, "path": [[1162.7520224737343, -1421.94910114668], [1238.152022473793, -1453.4991011458942]], "destination": 1365436849}, {"length": 16.9205226995, "source": 1365436842, "path": [[1162.7520224737343, -1421.94910114668], [1187.8020224735942, -1399.0991011461062], [1251.6020224737633, -1422.1991011460489]], "destination": 1365433442}, {"length": 4.68946441324, "source": 1365436842, "path": [[1162.7520224737343, -1421.94910114668], [1140.7020224736275, -1437.2491011478417]], "destination": 1365433447}, {"length": 6.09216282885, "source": 133128621, "path": [[1130.4520224737491, 1420.3508988543945], [1161.5020224737816, 1438.600898854503]], "destination": 133128690}, {"length": 28.3779141344, "source": 133128621, "path": [[1130.4520224737491, 1420.3508988543945], [1265.0020224735936, 1328.4508988533617]], "destination": 133128988}, {"length": 25.6221919861, "source": 133128621, "path": [[1130.4520224737491, 1420.3508988543945], [1005.7020224736312, 1339.5008988545953]], "destination": 133128615}, {"length": 91.5293261711, "source": 3905020334, "path": [[-4157.09797752628, 2904.7508988533364], [-4167.6979775262525, 2914.450898853005], [-4244.397977526404, 2975.55089885293], [-4303.197977526319, 2981.1508988544233], [-4513.447977526397, 3153.000898851843], [-4459.797977526269, 3181.650898852695], [-4473.74797752631, 3193.750898851988]], "destination": 3905020323}, {"length": 12.3318777295, "source": 3905020334, "path": [[-4157.09797752628, 2904.7508988533364], [-4148.547977526285, 2909.0008988532645], [-4134.047977526257, 2897.0008988515874], [-4149.047977526355, 2889.5008988527593], [-4163.547977526383, 2901.500898854437], [-4157.09797752628, 2904.7508988533364]], "destination": 3905020334}, {"length": 12.3318777295, "source": 3905020334, "path": [[-4157.09797752628, 2904.7508988533364], [-4163.547977526383, 2901.500898854437], [-4149.047977526355, 2889.5008988527593], [-4134.047977526257, 2897.0008988515874], [-4148.547977526285, 2909.0008988532645], [-4157.09797752628, 2904.7508988533364]], "destination": 3905020334}, {"length": 7.23380582723, "source": 1365436849, "path": [[1238.152022473793, -1453.4991011458942], [1251.6020224737633, -1422.1991011460489]], "destination": 1365433442}, {"length": 5.52096676709, "source": 1365436849, "path": [[1238.152022473793, -1453.4991011458942], [1227.9520224736107, -1477.3991011480803]], "destination": 1365433459}, {"length": 13.014813304, "source": 1365436849, "path": [[1238.152022473793, -1453.4991011458942], [1325.0020224737646, -1466.149101148062]], "destination": 1365436874}, {"length": 13.0735431503, "source": 1365436849, "path": [[1238.152022473793, -1453.4991011458942], [1162.7520224737343, -1421.94910114668]], "destination": 1365436842}, {"length": 338.174856332, "source": 34816434, "path": [[-6533.197977526273, -2715.4991011464344], [-6480.897977526379, -2709.599101148541], [-6136.547977526386, -2671.3991011462213], [-4417.047977526289, -2480.6991011487867], [-4311.49797752628, -2468.9991011470624], [-4254.097977526294, -2461.849101148772]], "destination": 1524853508}, {"length": 85.4463790827, "source": 34816434, "path": [[-6533.197977526273, -2715.4991011464344], [-6561.7479775264, -2682.549101148624], [-6822.147977526338, -2381.599101145326]], "destination": 34817772}, {"length": 138.930504194, "source": 34816435, "path": [[-5559.1979775262425, -3704.6491011487606], [-4626.6479775263215, -3586.5991011476694]], "destination": 34816549}, {"length": 18.7736544392, "source": 34816435, "path": [[-5559.1979775262425, -3704.6491011487606], [-5557.747977526395, -3716.2991011463473], [-5560.047977526406, -3729.749101147206], [-5566.9979775263555, -3743.3991011468493], [-5577.147977526398, -3754.599101146283], [-5593.847977526379, -3766.199101146839], [-5614.097977526322, -3774.6991011466944]], "destination": 34816437}, {"length": 34.437581948, "source": 34818484, "path": [[-4266.397977526371, -1913.8491011467806], [-4133.44797752635, -1944.9491011478415], [-4044.4979775262623, -1965.4991011464062]], "destination": 431171618}, {"length": 25.4933013155, "source": 34818484, "path": [[-4266.397977526371, -1913.8491011467806], [-4423.04797752624, -1863.6491011463363]], "destination": 952746620}, {"length": 53.6597809973, "source": 34818484, "path": [[-4266.397977526371, -1913.8491011467806], [-4241.4979775262655, -1870.6491011464266], [-4203.9479775262125, -1794.3991011470928], [-4118.647977526369, -1694.0991011473727]], "destination": 34818510}, {"length": 154.189755448, "source": 34816437, "path": [[-5614.097977526322, -3774.6991011466944], [-5164.547977526412, -4401.799101145798]], "destination": 34816662}, {"length": 13.9493503483, "source": 34816437, "path": [[-5614.097977526322, -3774.6991011466944], [-5636.397977526241, -3779.6491011476974], [-5657.697977526243, -3781.0491011462946], [-5682.297977526396, -3778.7991011484223], [-5705.897977526409, -3772.349101147654]], "destination": 34816439}, {"length": 8.49372362324, "source": 34816439, "path": [[-5705.897977526409, -3772.349101147654], [-5726.397977526387, -3762.0491011480794], [-5745.197977526262, -3744.799101145446]], "destination": 34816441}, {"length": 285.896190505, "source": 2386532792, "path": [[-2873.5479775263693, 1395.4008988541489], [-2937.1479775262, 1377.1508988540404], [-2789.7479775262914, 1162.7508988532043], [-2589.2979775263834, 655.1008988537887], [-2531.047977526235, 525.4508988521422], [-2288.897977526405, 237.05089885339703], [-2275.297977526236, 224.50089885239777]], "destination": 1503278392}, {"length": 272.206014441, "source": 2386532792, "path": [[-2873.5479775263693, 1395.4008988541489], [-2796.1979775263935, 1280.1008988532203], [-2674.2979775262743, 960.6008988534143], [-2523.7479775264137, 589.2508988516454], [-2248.4479775262134, 250.40089885308703]], "destination": 695568906}, {"length": 52.1924264218, "source": 2386532792, "path": [[-2873.5479775263693, 1395.4008988541489], [-2934.6479775262947, 1486.450898852354], [-3017.14797752628, 1585.5008988516772], [-3038.5979775262585, 1602.6508988531418]], "destination": 185877802}, {"length": 14.5065981716, "source": 34816441, "path": [[-5745.197977526262, -3744.799101145446], [-5753.047977526293, -3730.1991011453592], [-5755.397977526222, -3712.8991011456947], [-5751.497977526387, -3697.4991011469174], [-5741.247977526287, -3682.149101148724]], "destination": 34816443}, {"length": 106.946523455, "source": 34816441, "path": [[-5745.197977526262, -3744.799101145446], [-6396.497977526395, -3963.1991011468417]], "destination": 34816711}, {"length": 7.1694423858, "source": 34816443, "path": [[-5741.247977526287, -3682.149101148724], [-5726.347977526247, -3669.5991011477245], [-5706.74797752635, -3659.5991011481033]], "destination": 34816444}, {"length": 122.922066045, "source": 34816444, "path": [[-5706.74797752635, -3659.5991011481033], [-6126.147977526309, -3180.649101146571]], "destination": 34817753}, {"length": 12.8225336728, "source": 34816444, "path": [[-5706.74797752635, -3659.5991011481033], [-5686.597977526242, -3653.699101146657], [-5665.697977526252, -3650.89910114591], [-5642.347977526274, -3651.299101147032], [-5622.09797752633, -3654.699101147685]], "destination": 34816446}, {"length": 68.9948895016, "source": 34845770, "path": [[3078.9020224737396, -805.5991011453045], [3062.6520224736887, -753.9991011462632], [2992.5020224736977, -530.9991011479553], [2983.302022473655, -501.7991011477818]], "destination": 34845754}, {"length": 11.4128026567, "source": 34845770, "path": [[3078.9020224737396, -805.5991011453045], [3156.102022473739, -798.2491011482296]], "destination": 1183501407}, {"length": 15.0522196848, "source": 34816446, "path": [[-5622.09797752633, -3654.699101147685], [-5593.847977526379, -3665.449101145413], [-5576.447977526211, -3677.6491011458747], [-5565.39797752631, -3690.6491011485796], [-5559.1979775262425, -3704.6491011487606]], "destination": 34816435}, {"length": 14.660994071, "source": 34816446, "path": [[-5622.09797752633, -3654.699101147685], [-5552.447977526409, -3607.299101147987]], "destination": 277951533}, {"length": 377.107681623, "source": 567929279, "path": [[895.2020224737289, -2581.6991011460286], [1048.2020224737987, -2625.199101146336], [2026.6020224737335, -2846.3991011484777], [3122.9020224736723, -2991.8991011470553], [3140.7520224737696, -2988.5491011469867], [3376.2020224736843, -3017.1991011478385]], "destination": 2689489680}, {"length": 5.91882639181, "source": 567929279, "path": [[895.2020224737289, -2581.6991011460286], [877.4020224737721, -2605.5991011482147]], "destination": 1893477533}, {"length": 3.86096694882, "source": 567929279, "path": [[895.2020224737289, -2581.6991011460286], [906.8020224736184, -2566.0991011484666]], "destination": 721638495}, {"length": 191.863603699, "source": 25625024, "path": [[-14.497977526284345, -2782.8991011453754], [-62.797977526285464, -2753.499101146417], [-246.89797752630582, -2641.549101145557], [-977.5979775263899, -2265.4491011486753], [-1030.4979775264123, -2238.249101147005]], "destination": 25624244}, {"length": 120.78667519, "source": 25625026, "path": [[600.4520224736076, -3145.2991011455824], [-14.497977526284345, -2782.8991011453754]], "destination": 25625024}, {"length": 49.1752411478, "source": 25625026, "path": [[600.4520224736076, -3145.2991011455824], [590.952022473612, -3165.499101147162], [523.752022473678, -3308.8991011460676], [501.4020224736182, -3356.5991011457186]], "destination": 25625289}, {"length": 18.2231523169, "source": 133055563, "path": [[952.6520224736323, 689.0508988526278], [1042.0520224736497, 746.1008988514095]], "destination": 133129199}, {"length": 19.1372029845, "source": 133055563, "path": [[952.6520224736323, 689.0508988526278], [858.7520224736522, 629.1508988525152]], "destination": 133128517}, {"length": 45.0032000722, "source": 133055563, "path": [[952.6520224736323, 689.0508988526278], [1165.7020224737912, 543.1008988523445]], "destination": 133055565}, {"length": 158.018023314, "source": 929372127, "path": [[-2524.84797752639, -4178.849101148075], [-3469.897977526282, -4522.949101147588]], "destination": 34816563}, {"length": 30.6402071868, "source": 929372127, "path": [[-2524.84797752639, -4178.849101148075], [-2566.447977526254, -4152.799101145632], [-2593.2979775262766, -4115.399101145556], [-2542.5479775262884, -4067.1991011471673]], "destination": 929367046}, {"length": 6.29300906896, "source": 2006535622, "path": [[3698.302022473676, -1926.6491011471487], [3686.7020224737867, -1953.8991011458506]], "destination": 34845776}, {"length": 43.9192246927, "source": 2006535622, "path": [[3698.302022473676, -1926.6491011471487], [3673.5520224737693, -1933.8491011460235], [3650.952022473675, -1938.3491011453202], [3556.2020224737535, -1938.3991011459045], [3488.7520224737846, -1926.39910114778], [3420.952022473722, -1892.7991011459255]], "destination": 470183}, {"length": 62.0794252475, "source": 34816455, "path": [[-4051.147977526259, -3504.2991011486893], [-4122.24797752625, -3779.499101145944]], "destination": 258175257}, {"length": 150.061234314, "source": 34816455, "path": [[-4051.147977526259, -3504.2991011486893], [-4002.1479775262937, -3492.5491011463805], [-3098.6479775263474, -3471.0991011479564], [-3029.197977526321, -3469.449101146438]], "destination": 929440570}, {"length": 169.627993632, "source": 34816455, "path": [[-4051.147977526259, -3504.2991011486893], [-3854.94797752628, -2752.5491011459735]], "destination": 2561299817}, {"length": 20.6545118146, "source": 34816456, "path": [[-4185.347977526232, -4008.349101148667], [-4208.197977526363, -4099.999101146778]], "destination": 34816457}, {"length": 117.751353698, "source": 34816456, "path": [[-4185.347977526232, -4008.349101148667], [-4557.9479775264, -3765.199101145811], [-4626.6479775263215, -3586.5991011476694]], "destination": 34816549}, {"length": 51.7244791865, "source": 34816456, "path": [[-4185.347977526232, -4008.349101148667], [-4122.24797752625, -3779.499101145944]], "destination": 258175257}, {"length": 37.7857331268, "source": 270732364, "path": [[-2467.997977526393, -4046.5991011480182], [-2356.1479775262574, -4199.749101147177]], "destination": 270732626}, {"length": 6.35854817378, "source": 270732364, "path": [[-2467.997977526393, -4046.5991011480182], [-2427.7479775263178, -4035.7991011461536]], "destination": 270732395}, {"length": 13.014813304, "source": 1365436874, "path": [[1325.0020224737646, -1466.149101148062], [1238.152022473793, -1453.4991011458942]], "destination": 1365436849}, {"length": 18.2614025795, "source": 1365436874, "path": [[1325.0020224737646, -1466.149101148062], [1325.7520224736475, -1434.299101145342], [1251.6020224737633, -1422.1991011460489]], "destination": 1365433442}, {"length": 5.86067725612, "source": 1365436874, "path": [[1325.0020224737646, -1466.149101148062], [1324.352022473718, -1492.4991011469046]], "destination": 1365436879}, {"length": 22.0276390702, "source": 25203147, "path": [[6362.4520224736525, -794.0491011453332], [6411.652022473735, -801.5991011482981], [6509.05202247376, -816.5991011459539]], "destination": 205095932}, {"length": 4.7048145833, "source": 830630348, "path": [[5876.602022473643, -4464.899101147779], [5851.902022473654, -4478.449101146253]], "destination": 25625650}, {"length": 98.7051494191, "source": 34818510, "path": [[-4118.647977526369, -1694.0991011473727], [-4075.5479775262947, -1650.4491011453126], [-4270.797977526275, -1363.999101148039], [-4291.0979775263595, -1287.2991011469992]], "destination": 34818512}, {"length": 183.933581172, "source": 34818510, "path": [[-4118.647977526369, -1694.0991011473727], [-4968.097977526398, -1137.8991011454787], [-5009.697977526262, -1110.6491011467767]], "destination": 34818276}, {"length": 40.5265338025, "source": 249168335, "path": [[-609.6479775263841, 2445.5508988516785], [-434.1979775264182, 2304.550898852398]], "destination": 159883856}, {"length": 50.0491800487, "source": 249168335, "path": [[-609.6479775263841, 2445.5508988516785], [-719.0979775262285, 2536.600898853436], [-821.8479775263799, 2622.0508988537003]], "destination": 249169042}, {"length": 118.996938087, "source": 249168335, "path": [[-609.6479775263841, 2445.5508988516785], [-524.1479775262014, 2496.10089885266], [-479.99797752629195, 2523.350898851362], [-333.09797752623103, 2615.350898853563], [-20.54797752637505, 2814.3508988520693]], "destination": 249168967}, {"length": 134.403686147, "source": 34818512, "path": [[-4291.0979775263595, -1287.2991011469992], [-4210.247977526338, -1351.3491011458711], [-4014.3979775262296, -1635.9991011469788], [-3977.7979775263984, -1709.9491011478563], [-3967.4979775263796, -1781.2491011461873], [-3985.5979775262895, -1839.299101145997]], "destination": 431171619}, {"length": 15.855922492, "source": 34818512, "path": [[-4291.0979775263595, -1287.2991011469992], [-4332.647977526305, -1221.4491011484085]], "destination": 4069612278}, {"length": 79.3821842012, "source": 25203153, "path": [[5836.3520224737895, -707.5991011475935], [5970.70202247374, -734.949101147464], [6275.1520224737515, -780.8491011473961], [6334.402022473595, -789.7991011454053], [6362.4520224736525, -794.0491011453332]], "destination": 25203147}, {"length": 29.9606398489, "source": 1976882979, "path": [[-2201.997977526293, -1827.9991011453944], [-2154.497977526315, -1796.8991011478863], [-2119.647977526284, -1793.3991011460648], [-2044.547977526401, -1747.4991011461327]], "destination": 146739080}, {"length": 30.0335257792, "source": 1976882979, "path": [[-2201.997977526293, -1827.9991011453944], [-2347.5979775262613, -1923.1991011459115]], "destination": 1976883004}, {"length": 16.0114734805, "source": 1976882979, "path": [[-2201.997977526293, -1827.9991011453944], [-2124.597977526399, -1878.8991011469136]], "destination": 1976882932}, {"length": 11.9324434837, "source": 36487636, "path": [[5177.402022473742, 1162.3508988520825], [5254.302022473789, 1144.5008988530958]], "destination": 666946376}, {"length": 11.2224763999, "source": 36487636, "path": [[5177.402022473742, 1162.3508988520825], [5105.052022473799, 1179.1008988524254]], "destination": 666947232}, {"length": 39.4099836949, "source": 36487636, "path": [[5177.402022473742, 1162.3508988520825], [5096.852022473675, 993.2508988512723]], "destination": 666947356}, {"length": 110.938712891, "source": 36487637, "path": [[5065.852022473782, 932.1008988543156], [4969.102022473581, 899.5008988534892], [4790.6520224736405, 534.3008988525355], [4788.652022473583, 490.6008988534438]], "destination": 666949200}, {"length": 108.800371042, "source": 36487637, "path": [[5065.852022473782, 932.1008988543156], [4932.50202247375, 655.4008988537419], [4882.402022473587, 551.4008988534158], [4841.102022473676, 465.7508988543668]], "destination": 21378251}, {"length": 8.4795996315, "source": 36487637, "path": [[5065.852022473782, 932.1008988543156], [5120.552022473746, 919.500898852732]], "destination": 1179777383}, {"length": 167.70680453, "source": 25203159, "path": [[5404.152022473685, -2199.19910114541], [4288.902022473673, -2181.2991011458394], [4258.202022473733, -2181.2491011488078]], "destination": 2705350290}, {"length": 17.8947623467, "source": 25203159, "path": [[5404.152022473685, -2199.19910114541], [5406.552022473754, -2118.7491011467328]], "destination": 25203501}, {"length": 215.499235378, "source": 25625048, "path": [[-146.79797752625845, -3670.549101148168], [-48.7479775264088, -3688.4991011483235], [444.2520224736679, -4530.249101147632]], "destination": 270730345}, {"length": 64.6171188575, "source": 25625048, "path": [[-146.79797752625845, -3670.549101148168], [-224.29797752621107, -3538.8991011480184], [-234.89797752640484, -3525.6491011459448], [-318.4479775262261, -3402.999101147941]], "destination": 25624258}, {"length": 213.511538553, "source": 25625048, "path": [[-146.79797752625845, -3670.549101148168], [348.50202247360687, -4573.649101146771]], "destination": 925869772}, {"length": 40.0649697609, "source": 25625048, "path": [[-146.79797752625845, -3670.549101148168], [-86.44797752621614, -3637.999101147926], [12.052022473785229, -3574.549101145408], [53.50202247367264, -3547.8991011466123]], "destination": 25625053}, {"length": 53.2522618198, "source": 506888666, "path": [[-4295.447977526345, -2406.549101145572], [-4653.847977526216, -2448.349101147329]], "destination": 506888335}, {"length": 35.6494872407, "source": 831943759, "path": [[3382.8520224736812, -3875.2491011457832], [3369.2020224735943, -4035.299101147416]], "destination": 25625680}, {"length": 25.8682939012, "source": 831943759, "path": [[3382.8520224736812, -3875.2491011457832], [3392.402022473595, -3759.09910114558]], "destination": 270921350}, {"length": 26.8243926825, "source": 652939740, "path": [[-2276.4979775262705, -2063.49910114767], [-2294.0979775263327, -2096.2491011466964], [-2304.2479775263746, -2118.6991011461487], [-2307.497977526385, -2146.149101147188], [-2300.8479775263877, -2180.7991011471017]], "destination": 146739056}, {"length": 15.75083677, "source": 652939740, "path": [[-2276.4979775262705, -2063.49910114767], [-2278.1479775262346, -2066.5991011483698], [-2283.9979775262086, -2049.5491011480735], [-2297.8479775264127, -2034.0491011481276], [-2327.247977526259, -2008.4491011473915]], "destination": 652939736}, {"length": 35.4716652765, "source": 652939740, "path": [[-2276.4979775262705, -2063.49910114767], [-2255.4479775263035, -2045.3491011487301], [-2217.897977526251, -2025.849101148225], [-2172.647977526365, -2012.2991011461977], [-2139.0979775262053, -2007.8991011480696], [-2097.347977526365, -2007.6491011487008], [-2063.197977526299, -2006.0991011483509]], "destination": 652939743}, {"length": 40.0649697609, "source": 25625053, "path": [[53.50202247367264, -3547.8991011466123], [12.052022473785229, -3574.549101145408], [-86.44797752621614, -3637.999101147926], [-146.79797752625845, -3670.549101148168]], "destination": 25625048}, {"length": 30.7373703367, "source": 25625053, "path": [[53.50202247367264, -3547.8991011466123], [90.30202247362062, -3516.5491011461827], [127.50202247380216, -3458.1491011458356], [148.20202247367575, -3425.5991011455935]], "destination": 270730746}, {"length": 53.1001664712, "source": 25625053, "path": [[53.50202247367264, -3547.8991011466123], [-71.74797752629303, -3486.0491011485806], [-101.19797752627946, -3471.599101146694], [-237.04797752621687, -3404.7991011476597]], "destination": 25624259}, {"length": 99.2922508772, "source": 25625053, "path": [[53.50202247367264, -3547.8991011466123], [590.2020224737292, -3821.199101146533]], "destination": 25625054}, {"length": 17.4102368168, "source": 25625054, "path": [[590.2020224737292, -3821.199101146533], [682.152022473792, -3870.8991011482394]], "destination": 25625056}, {"length": 99.2922508772, "source": 25625054, "path": [[590.2020224737292, -3821.199101146533], [53.50202247367264, -3547.8991011466123]], "destination": 25625053}, {"length": 45.176572129, "source": 652939743, "path": [[-2063.197977526299, -2006.0991011483509], [-2048.2479775263405, -1970.6991011467778], [-2024.5479775262697, -1928.8991011485734], [-1997.947977526282, -1889.74910114581], [-1968.6479775262721, -1863.599101145752], [-1915.5979775262733, -1832.9991011469815]], "destination": 652939761}, {"length": 35.4716652765, "source": 652939743, "path": [[-2063.197977526299, -2006.0991011483509], [-2097.347977526365, -2007.6491011487008], [-2139.0979775262053, -2007.8991011480696], [-2172.647977526365, -2012.2991011461977], [-2217.897977526251, -2025.849101148225], [-2255.4479775263035, -2045.3491011487301], [-2276.4979775262705, -2063.49910114767]], "destination": 652939740}, {"length": 56.5330920928, "source": 652939743, "path": [[-2063.197977526299, -2006.0991011483509], [-2070.447977526202, -2025.4991011476875], [-2082.0479775263134, -2070.0991011466385], [-2085.497977526218, -2107.8491011472524], [-2082.6479775262196, -2154.7991011487966], [-2074.197977526282, -2210.5491011465974], [-2064.247977526357, -2258.249101146248]], "destination": 146739052}, {"length": 95.4881510859, "source": 25625056, "path": [[682.152022473792, -3870.8991011482394], [1022.2020224737172, -4237.399101146621]], "destination": 25625261}, {"length": 17.4102368168, "source": 25625056, "path": [[682.152022473792, -3870.8991011482394], [590.2020224737292, -3821.199101146533]], "destination": 25625054}, {"length": 55.1181743142, "source": 25625056, "path": [[682.152022473792, -3870.8991011482394], [982.2520224735954, -4020.7491011479133]], "destination": 25625239}, {"length": 31.7038493094, "source": 1365433424, "path": [[1054.952022473632, -1331.4991011483812], [1073.8020224736467, -1442.5491011458291], [1108.852022473794, -1462.999101146778]], "destination": 1365433451}, {"length": 109.352694208, "source": 1224778213, "path": [[2039.9020224737274, 640.2008988537489], [2003.0020224737211, 620.7008988532436], [1967.3520224736674, 606.2008988543255], [1907.3020224738002, 591.7008988518546], [1853.0520224737668, 583.1508988514145], [1786.5520224737975, 575.2008988544333], [1720.2020224735825, 574.1008988522367], [1664.2020224737487, 575.3008988520492], [1609.2020224736102, 578.1508988533801], [1545.7020224736161, 586.500898851483], [1487.9520224737596, 602.1508988531821], [1433.1520224737383, 620.5008988544591], [1351.002022473624, 663.0008988537384]], "destination": 133129768}, {"length": 51.3471692514, "source": 1224778213, "path": [[2039.9020224737274, 640.2008988537489], [1796.1520224736294, 806.3008988514753]], "destination": 24909773}, {"length": 54.1987371156, "source": 36487655, "path": [[5943.052022473694, 733.1008988522569], [6065.1020224737895, 963.2008988518237]], "destination": 36487657}, {"length": 45.6593043757, "source": 36487655, "path": [[5943.052022473694, 733.1008988522569], [6237.702022473757, 665.5008988545319]], "destination": 36487707}, {"length": 30.1012695334, "source": 36487657, "path": [[6065.1020224737895, 963.2008988518237], [6128.802022473678, 1091.9008988530265]], "destination": 204846404}, {"length": 18.7020391646, "source": 133052906, "path": [[610.0520224736616, 470.45089885244806], [518.3020224737156, 411.9008988539008]], "destination": 133129668}, {"length": 45.4931937673, "source": 133052906, "path": [[610.0520224736616, 470.45089885244806], [824.0520224735981, 322.0508988519555]], "destination": 133052908}, {"length": 50.6935650925, "source": 133052906, "path": [[610.0520224736616, 470.45089885244806], [858.7520224736522, 629.1508988525152]], "destination": 133128517}, {"length": 45.4931937673, "source": 133052908, "path": [[824.0520224735981, 322.0508988519555], [610.0520224736616, 470.45089885244806]], "destination": 133052906}, {"length": 53.6335620886, "source": 133052908, "path": [[824.0520224735981, 322.0508988519555], [1085.4020224737583, 491.15089885276575]], "destination": 133129314}, {"length": 15.3507981013, "source": 133052908, "path": [[824.0520224735981, 322.0508988519555], [749.2520224736676, 273.65089885122984]], "destination": 133129829}, {"length": 48.6657372061, "source": 34845778, "path": [[4289.652022473778, -1543.0991011484707], [4017.402022473693, -1546.949101147277], [3957.102022473791, -1547.799101146552]], "destination": 666952322}, {"length": 49.6509890717, "source": 21346799, "path": [[-225.94797752639727, 2128.300898853297], [-253.19797752620943, 2150.1008988522585], [-434.1979775264182, 2304.550898852398]], "destination": 159883856}, {"length": 134.10978509, "source": 21346799, "path": [[-225.94797752639727, 2128.300898853297], [-178.04797752640766, 2141.95089885294], [286.80202247377554, 2274.7508988523177], [593.3020224737628, 2358.5508988546167], [616.9520224736935, 2365.000898851832]], "destination": 158834602}, {"length": 45.411252097, "source": 21346799, "path": [[-225.94797752639727, 2128.300898853297], [-191.8479775262494, 2102.1008988526546], [-24.097977526338354, 1973.2008988526673]], "destination": 158834278}, {"length": 15.1843280752, "source": 652939761, "path": [[-1915.5979775262733, -1832.9991011469815], [-1953.3479775262208, -1769.3991011462629]], "destination": 652950792}, {"length": 39.4780533993, "source": 652939761, "path": [[-1915.5979775262733, -1832.9991011469815], [-1874.2979775263625, -1816.0991011484384], [-1790.0479775263545, -1786.8491011476806], [-1738.3979775262849, -1776.4991011475217], [-1666.5979775263295, -1773.4991011479906]], "destination": 652950778}, {"length": 11.1240671024, "source": 652939761, "path": [[-1915.5979775262733, -1832.9991011469815], [-1882.5479775264052, -1878.0491011476386]], "destination": 930672767}, {"length": 45.176572129, "source": 652939761, "path": [[-1915.5979775262733, -1832.9991011469815], [-1968.6479775262721, -1863.599101145752], [-1997.947977526282, -1889.74910114581], [-2024.5479775262697, -1928.8991011485734], [-2048.2479775263405, -1970.6991011467778], [-2063.197977526299, -2006.0991011483509]], "destination": 652939743}, {"length": 68.3385439407, "source": 21346802, "path": [[-1938.447977526403, 2662.750898853261], [-2195.047977526343, 2406.000898851346]], "destination": 311075048}, {"length": 209.427221215, "source": 21346802, "path": [[-1938.447977526403, 2662.750898853261], [-1904.4479775263135, 2628.200898854516], [-1605.9979775262523, 2325.200898852131], [-1180.6479775262612, 1899.75089885408], [-1155.3979775262846, 1874.5008988538814]], "destination": 21346801}, {"length": 33.092111791, "source": 21346802, "path": [[-1938.447977526403, 2662.750898853261], [-1948.1479775262933, 2707.9008988515343], [-1995.9979775263648, 2760.2508988522345], [-2019.1979775263658, 2799.500898852614]], "destination": 21346804}, {"length": 13.5853896965, "source": 1365433427, "path": [[2034.8520224737765, -1359.5491011457739], [1953.2520224736504, -1388.699101145363]], "destination": 1365433438}, {"length": 33.092111791, "source": 21346804, "path": [[-2019.1979775263658, 2799.500898852614], [-1995.9979775263648, 2760.2508988522345], [-1948.1479775262933, 2707.9008988515343], [-1938.447977526403, 2662.750898853261]], "destination": 21346802}, {"length": 106.653280268, "source": 21346804, "path": [[-2019.1979775263658, 2799.500898852614], [-1978.3479775263845, 2840.6508988538803], [-1649.0979775263258, 3172.350898854148], [-1620.597977526339, 3201.0008988514473]], "destination": 661237}, {"length": 27.5067120777, "source": 36487669, "path": [[5235.402022473634, 323.45089885410516], [5068.602022473723, 380.50089885288685]], "destination": 913935232}, {"length": 51.3451361029, "source": 36487669, "path": [[5235.402022473634, 323.45089885410516], [5218.102022473748, 297.3008988540471], [5095.552022473582, 111.70089885226275]], "destination": 36488710}, {"length": 21.8870479091, "source": 36487670, "path": [[5369.052022473619, 279.25089885272314], [5326.852022473627, 293.20089885231937], [5235.402022473634, 323.45089885410516]], "destination": 36487669}, {"length": 49.4861147662, "source": 3905020329, "path": [[-4111.54797752622, 3049.950898851961], [-4229.047977526212, 3157.6008988523085], [-4262.297977526419, 3208.350898852075], [-4272.947977526309, 3242.350898851498]], "destination": 3905020319}, {"length": 38.7383097054, "source": 34818552, "path": [[-6574.947977526335, -557.3491011467979], [-6367.6979775262325, -448.94910114834374]], "destination": 3035184757}, {"length": 39.2271714391, "source": 34818554, "path": [[-6210.847977526246, -338.19910114729623], [-6156.597977526212, -351.74910114577074], [-5960.197977526338, -400.7991011469869]], "destination": 34818576}, {"length": 63.8433527422, "source": 34818554, "path": [[-6210.847977526246, -338.19910114729623], [-6031.597977526282, -103.0991011461424], [-6015.197977526254, -81.59910114713398]], "destination": 34818555}, {"length": 38.5821146678, "source": 34818555, "path": [[-6015.197977526254, -81.59910114713398], [-5758.647977526232, -121.69910114678828]], "destination": 34818584}, {"length": 40.8567732645, "source": 34845781, "path": [[3414.4520224737016, -34.899101148511136], [3659.9020224736823, -122.49910114547902]], "destination": 3520025513}, {"length": 31.9502513317, "source": 506888704, "path": [[-5194.947977526398, -2186.5491011467952], [-5216.747977526248, -2329.4991011475477]], "destination": 506888735}, {"length": 170.834615214, "source": 654070275, "path": [[4492.602022473591, 2511.300898852653], [3683.9520224736243, 3065.350898854291]], "destination": 3772612360}, {"length": 24.7999624064, "source": 654070275, "path": [[4492.602022473591, 2511.300898852653], [4610.75202247363, 2431.3508988527133]], "destination": 654070789}, {"length": 28.8627091029, "source": 654070275, "path": [[4492.602022473591, 2511.300898852653], [4522.8520224736, 2414.45089885417], [4545.452022473695, 2387.3508988536687]], "destination": 3732222535}, {"length": 39.0096973524, "source": 146724619, "path": [[-3544.4479775263994, -1643.4991011458067], [-3459.1479775263333, -1727.4491011463056], [-3379.0979775263354, -1780.0491011463748]], "destination": 146724600}, {"length": 34.7954598573, "source": 146724619, "path": [[-3544.4479775263994, -1643.4991011458067], [-3457.5479775262875, -1613.6491011486953], [-3398.547977526256, -1583.299101145741], [-3364.4979775262486, -1546.949101147277]], "destination": 146724610}, {"length": 34.4370883431, "source": 146724619, "path": [[-3544.4479775263994, -1643.4991011458067], [-3592.297977526249, -1579.0991011463973], [-3632.047977526254, -1500.1491011474855]], "destination": 146724574}, {"length": 59.6919413267, "source": 146706953, "path": [[-741.3979775263701, -2048.8491011469987], [-782.6479775263629, -2075.899101146916], [-1030.4979775264123, -2238.249101147005]], "destination": 25624244}, {"length": 181.668201106, "source": 146706953, "path": [[-741.3979775263701, -2048.8491011469987], [-907.6979775262117, -1923.549101146449], [-1216.1479775263383, -1678.2991011474735], [-1444.9979775263967, -1501.9991011477885], [-1501.3479775263238, -1458.5991011486499], [-1512.1479775264124, -1450.2491011469942], [-1544.0979775263042, -1425.649101147286]], "destination": 146724486}, {"length": 6.97177787005, "source": 695568906, "path": [[-2248.4479775262134, 250.40089885308703], [-2275.297977526236, 224.50089885239777]], "destination": 1503278392}, {"length": 272.206014441, "source": 695568906, "path": [[-2248.4479775262134, 250.40089885308703], [-2523.7479775264137, 589.2508988516454], [-2674.2979775262743, 960.6008988534143], [-2796.1979775263935, 1280.1008988532203], [-2873.5479775263693, 1395.4008988541489]], "destination": 2386532792}, {"length": 198.956733186, "source": 695568906, "path": [[-2248.4479775262134, 250.40089885308703], [-1956.4479775262544, 8.350898852427235], [-1540.4479775262826, -311.0991011467945], [-1381.4979775264026, -438.6491011487692]], "destination": 4958548822}, {"length": 18.645086837, "source": 133128715, "path": [[2147.302022473596, 1175.3508988512351], [2238.5020224737764, 1233.900898853335]], "destination": 1223798073}, {"length": 111.233526907, "source": 133128715, "path": [[2147.302022473596, 1175.3508988512351], [2226.6020224737117, 1110.6508988518726], [2254.0020224737223, 1054.5008988529503], [2270.9020224735978, 1005.0008988535808], [2278.8520224736876, 956.2008988517334], [2279.8520224736053, 909.3508988513577], [2271.9020224737374, 863.9508988537159], [2257.102022473756, 820.7508988533618], [2230.9020224737797, 784.3508988543135], [2195.4020224737023, 750.2508988537215], [2155.002022473651, 720.600898851842]], "destination": 133128695}, {"length": 72.0645473619, "source": 133128715, "path": [[2147.302022473596, 1175.3508988512351], [1920.4520224735954, 1029.7008988544576], [1939.8520224735983, 950.1508988520868], [1894.3020224737595, 932.2008988519315]], "destination": 2705349799}, {"length": 120.046291146, "source": 2705350402, "path": [[4836.302022473759, -2346.5491011478434], [5356.652022473707, -2356.549101147465], [5656.552022473616, -2360.549101148024]], "destination": 2705350419}, {"length": 13.7148024346, "source": 2705350402, "path": [[4836.302022473759, -2346.5491011478434], [4742.602022473674, -2344.7491011481247]], "destination": 721620613}, {"length": 10.8857455598, "source": 2705350402, "path": [[4836.302022473759, -2346.5491011478434], [4836.152022473783, -2297.599101147796]], "destination": 2705350342}, {"length": 115.837678549, "source": 913934862, "path": [[5372.702022473641, 861.4008988523381], [5356.652022473707, 835.9008988527705], [5330.302022473754, 794.1008988545661], [5111.00202247361, 445.9008988533242], [5085.852022473691, 405.9508988518701], [5068.602022473723, 380.50089885288685]], "destination": 913935232}, {"length": 40.1701653963, "source": 913934862, "path": [[5372.702022473641, 861.4008988523381], [5582.252022473755, 813.7008988526873], [5632.152022473802, 802.3508988515005]], "destination": 36487706}, {"length": 47.8612670571, "source": 34818576, "path": [[-5960.197977526338, -400.7991011469869], [-5908.697977526245, -414.84910114775175], [-5754.597977526199, -561.7991011455103]], "destination": 34817816}, {"length": 83.2416684614, "source": 94269969, "path": [[-1670.0479775262345, 3775.550898854618], [-1237.5479775263987, 3689.5008988544478], [-1120.597977526394, 3691.6008988541194]], "destination": 661239}, {"length": 55.8065362691, "source": 158835218, "path": [[1651.4520224737428, 2493.5008988542504], [1558.452022473622, 2434.0508988522915], [1377.902022473787, 2318.650898853747]], "destination": 158834766}, {"length": 44.2239269336, "source": 158835218, "path": [[1651.4520224737428, 2493.5008988542504], [1801.652022473732, 2590.0508988527804], [1867.6520224736314, 2632.450898854444]], "destination": 158834270}, {"length": 64.2153144182, "source": 158835218, "path": [[1651.4520224737428, 2493.5008988542504], [1694.5520224735944, 2464.6508988546148], [1920.6520224737123, 2313.1508988534224], [1958.952022473648, 2287.5008988521017]], "destination": 158835639}, {"length": 12.5695994232, "source": 151351827, "path": [[-1533.4979775263325, 4169.750898853408], [-1560.2479775262968, 4201.550898851991], [-1575.0979775264184, 4219.200898852194]], "destination": 151351977}, {"length": 20.2208013211, "source": 1219877396, "path": [[5367.952022473643, 3927.050898852258], [5272.35202247378, 3992.700898852064]], "destination": 1219877241}, {"length": 14.1860984076, "source": 1219877396, "path": [[5367.952022473643, 3927.050898852258], [5381.10202247366, 3863.850898852661]], "destination": 1219877554}, {"length": 15.2151616378, "source": 1219877396, "path": [[5367.952022473643, 3927.050898852258], [5464.402022473669, 3901.500898852106]], "destination": 1219877311}, {"length": 20.6898265235, "source": 920963605, "path": [[-3044.097977526361, 1735.9508988512573], [-2984.4479775262835, 1820.300898852878]], "destination": 661235}, {"length": 27.0703058242, "source": 920963605, "path": [[-3044.097977526361, 1735.9508988512573], [-3002.847977526368, 1717.6508988541173], [-3027.547977526357, 1679.6008988535505], [-2986.597977526317, 1640.3508988531712]], "destination": 2386532740}, {"length": 30.1210243635, "source": 306086423, "path": [[-575.5979775263764, -3136.2991011469885], [-467.19797752636794, -3251.449101146164]], "destination": 25624234}, {"length": 33.3513996513, "source": 306086423, "path": [[-575.5979775263764, -3136.2991011469885], [-700.0479775263191, -3010.649101145901]], "destination": 270731367}, {"length": 90.3964727272, "source": 34818584, "path": [[-5758.647977526232, -121.69910114678828], [-5722.347977526354, -127.19910114711297], [-5156.597977526322, -212.94910114733057]], "destination": 370134456}, {"length": 68.7188062253, "source": 34818584, "path": [[-5758.647977526232, -121.69910114678828], [-5773.647977526331, -142.49910114827458], [-5960.197977526338, -400.7991011469869]], "destination": 34818576}, {"length": 94.5416639407, "source": 243647236, "path": [[-2328.9979775262814, 3192.0008988528534], [-2392.4979775262755, 3169.200898852864], [-2862.8479775263395, 3000.3508988514227], [-2896.1479775262424, 2988.4008988538826]], "destination": 94268492}, {"length": 98.358206341, "source": 243647236, "path": [[-2328.9979775262814, 3192.0008988528534], [-2307.347977526408, 3164.5508988518145], [-2051.1479775262574, 2840.00089885339], [-2019.1979775263658, 2799.500898852614]], "destination": 21346804}, {"length": 122.537722151, "source": 36487706, "path": [[5632.152022473802, 802.3508988515005], [5619.052022473703, 776.2508988520267], [5382.252022473777, 305.5508988545341], [5369.052022473619, 279.25089885272314]], "destination": 36487670}, {"length": 48.0273837715, "source": 36487706, "path": [[5632.152022473802, 802.3508988515005], [5943.052022473694, 733.1008988522569]], "destination": 36487655}, {"length": 120.93755225, "source": 36487707, "path": [[6237.702022473757, 665.5008988545319], [6464.002022473769, 1103.7008988523667], [6503.602022473798, 1180.4008988534065]], "destination": 36488945}, {"length": 6.68334653614, "source": 133128732, "path": [[2058.352022473731, 1394.4508988537052], [2025.6020224735937, 1373.5008988540187]], "destination": 133129080}, {"length": 32.2730205212, "source": 133128732, "path": [[2058.352022473731, 1394.4508988537052], [2216.652022473786, 1495.5008988515317]], "destination": 133128985}, {"length": 43.986465616, "source": 133128732, "path": [[2058.352022473731, 1394.4508988537052], [2260.902022473754, 1248.3008988546374]], "destination": 133128728}, {"length": 6.00874541579, "source": 1227145757, "path": [[2247.6520224736782, 657.3008988546292], [2276.1520224736655, 637.8508988547082]], "destination": 133129245}, {"length": 52.1678624053, "source": 1227145757, "path": [[2247.6520224736782, 657.3008988546292], [2304.052022473746, 695.9508988515495], [2342.5520224737984, 740.3008988546844], [2372.552022473773, 806.700898852597], [2394.5520224737393, 865.6008988516817]], "destination": 133128791}, {"length": 9.82753691421, "source": 929536542, "path": [[-2026.0979775263977, -2896.699101146538], [-2069.0979775264127, -2930.6491011453772]], "destination": 25624232}, {"length": 19.6425648609, "source": 929536542, "path": [[-2026.0979775263977, -2896.699101146538], [-2095.2979775263893, -2877.649101147739], [-2149.947977526212, -2862.5991011459464]], "destination": 1524897034}, {"length": 27.1201469071, "source": 929536542, "path": [[-2026.0979775263977, -2896.699101146538], [-1853.8979775262198, -2941.849101148364]], "destination": 929535527}, {"length": 9.98854295868, "source": 929536542, "path": [[-2026.0979775263977, -2896.699101146538], [-1986.8479775262404, -2859.9491011469527]], "destination": 25624231}, {"length": 36.4062204786, "source": 94265887, "path": [[-1336.0979775263181, 3276.900898853796], [-1426.5479775263934, 3178.950898853117], [-1465.2979775262586, 3137.0008988531595]], "destination": 34909161}, {"length": 80.274535382, "source": 94265887, "path": [[-1336.0979775263181, 3276.900898853796], [-1331.4979775262968, 3278.250898851809], [-1264.7979775262108, 3266.1508988525156], [-1250.497977526299, 3263.550898854106], [-803.2479775264001, 3332.9008988545183]], "destination": 21389558}, {"length": 25.3440266736, "source": 133128736, "path": [[2538.0520224735915, 1426.2508988522882], [2414.1020224737185, 1346.6508988528858]], "destination": 133128841}, {"length": 43.8132933173, "source": 133128736, "path": [[2538.0520224735915, 1426.2508988522882], [2334.8520224737435, 1570.9508988521748]], "destination": 133128739}, {"length": 70.8717004151, "source": 133128736, "path": [[2538.0520224735915, 1426.2508988522882], [2884.6520224736773, 1648.850898853027]], "destination": 133128773}, {"length": 47.5790396947, "source": 506888737, "path": [[-4637.6979775262225, -2371.8991011456583], [-4960.997977526249, -2348.7491011486836]], "destination": 506888736}, {"length": 30.7365098965, "source": 506888737, "path": [[-4637.6979775262225, -2371.8991011456583], [-4430.04797752633, -2392.899101145929]], "destination": 506888738}, {"length": 40.5128544475, "source": 506888737, "path": [[-4637.6979775262225, -2371.8991011456583], [-4603.797977526414, -2191.0991011466763]], "destination": 506888740}, {"length": 17.1652082402, "source": 506888737, "path": [[-4637.6979775262225, -2371.8991011456583], [-4653.847977526216, -2448.349101147329]], "destination": 506888335}, {"length": 30.7365098965, "source": 506888738, "path": [[-4430.04797752633, -2392.899101145929], [-4637.6979775262225, -2371.8991011456583]], "destination": 506888737}, {"length": 43.8132933173, "source": 133128739, "path": [[2334.8520224737435, 1570.9508988521748], [2538.0520224735915, 1426.2508988522882]], "destination": 133128736}, {"length": 70.7952301411, "source": 133128739, "path": [[2334.8520224737435, 1570.9508988521748], [2682.0520224737356, 1792.6508988530543]], "destination": 133128776}, {"length": 24.0975226416, "source": 133128739, "path": [[2334.8520224737435, 1570.9508988521748], [2216.652022473786, 1495.5008988515317]], "destination": 133128985}, {"length": 7.78470543027, "source": 151347748, "path": [[-3890.74797752631, 3870.0508988540605], [-3839.9479775264035, 3880.4508988512507]], "destination": 151347749}, {"length": 91.0624981025, "source": 151347748, "path": [[-3890.74797752631, 3870.0508988540605], [-4212.2479775263955, 4181.350898853963], [-4226.647977526365, 4213.050898851378]], "destination": 335690031}, {"length": 86.1595927023, "source": 34816549, "path": [[-4626.6479775263215, -3586.5991011476694], [-4051.147977526259, -3504.2991011486893]], "destination": 34816455}, {"length": 33.7784547453, "source": 4958548518, "path": [[-1172.1979775263235, -490.79910114713243], [-1338.447977526247, -466.74910114674617], [-1381.4979775264026, -438.6491011487692]], "destination": 4958548822}, {"length": 43.2575709091, "source": 4958548518, "path": [[-1172.1979775263235, -490.79910114713243], [-1302.2979775263454, -396.3991011453061], [-1381.4979775264026, -438.6491011487692]], "destination": 4958548822}, {"length": 180.107476225, "source": 4958548518, "path": [[-1172.1979775263235, -490.79910114713243], [-356.7979775263019, -1054.4991011478544], [-392.69797752639056, -1075.6491011463254]], "destination": 4955856167}, {"length": 43.4810497345, "source": 3732221821, "path": [[3950.9020224737233, 2574.050898854097], [3718.4020224736437, 2452.3008988523998]], "destination": 3732222528}, {"length": 16.3255822801, "source": 3732221821, "path": [[3950.9020224737233, 2574.050898854097], [4028.2520224736995, 2521.1508988540745]], "destination": 3732221819}, {"length": 19.8545051484, "source": 3732221821, "path": [[3950.9020224737233, 2574.050898854097], [4043.8020224737857, 2622.200898851901], [4056.352022473675, 2630.1508988524347]], "destination": 3422342732}, {"length": 58.0614578251, "source": 3732221821, "path": [[3950.9020224737233, 2574.050898854097], [3672.002022473642, 2759.750898853497]], "destination": 3732221822}, {"length": 40.322574464, "source": 277572136, "path": [[-3991.397977526345, 708.8008988525019], [-4015.4979775262054, 682.1008988531219], [-4115.547977526335, 582.7508988538455], [-4139.347977526242, 555.9008988527125]], "destination": 308768760}, {"length": 21.826227246, "source": 277572136, "path": [[-3991.397977526345, 708.8008988525019], [-4000.5479775262475, 708.7008988513332], [-4053.8479775262813, 655.2008988514046], [-4077.447977526294, 631.700898853893]], "destination": 4843850892}, {"length": 247.325290785, "source": 277572136, "path": [[-3991.397977526345, 708.8008988525019], [-3952.0479775263516, 748.8008988545403], [-3064.3979775262233, 1638.750898852237]], "destination": 277572134}, {"length": 10.8914614254, "source": 277572136, "path": [[-3991.397977526345, 708.8008988525019], [-4023.297977526319, 730.2508988544787], [-4034.197977526244, 747.8008988535123]], "destination": 241583359}, {"length": 112.362260869, "source": 141569116, "path": [[-3174.247977526301, 2335.3508988535054], [-3208.397977526367, 2359.8508988520452], [-3656.6979775263244, 2681.65089885386], [-3693.097977526261, 2707.800898853918]], "destination": 141568877}, {"length": 18.5255114585, "source": 277572138, "path": [[-4063.2479775262186, 621.8008988518875], [-4117.397977526416, 568.3508988525432], [-4139.347977526242, 555.9008988527125]], "destination": 308768760}, {"length": 3.0275324573, "source": 277572138, "path": [[-4063.2479775262186, 621.8008988518875], [-4077.447977526294, 631.700898853893]], "destination": 4843850892}, {"length": 21.8422549408, "source": 277572138, "path": [[-4063.2479775262186, 621.8008988518875], [-4036.6979775263712, 648.9508988529735], [-3982.847977526349, 704.5508988525739]], "destination": 4843850894}, {"length": 43.3754160844, "source": 133128748, "path": [[3053.902022473798, 2030.0008988520801], [3260.602022473691, 1890.200898852612]], "destination": 133128744}, {"length": 51.9864900426, "source": 133128748, "path": [[3053.902022473798, 2030.0008988520801], [3308.852022473774, 2192.800898853875]], "destination": 3734288089}, {"length": 30.8988216259, "source": 133128748, "path": [[3053.902022473798, 2030.0008988520801], [2902.3520224737977, 1933.2508988512132]], "destination": 3734288098}, {"length": 27.9532861857, "source": 133128750, "path": [[3555.102022473777, 2079.3508988532494], [3691.802022473656, 2167.1508988525547]], "destination": 133128760}, {"length": 60.2206508789, "source": 133128750, "path": [[3555.102022473777, 2079.3508988532494], [3260.602022473691, 1890.200898852612]], "destination": 133128744}, {"length": 43.2038624562, "source": 133128750, "path": [[3555.102022473777, 2079.3508988532494], [3348.602022473779, 2218.200898852274]], "destination": 133128755}, {"length": 22.1283067856, "source": 270185008, "path": [[3582.552022473706, -3070.6991011477667], [3575.7520224737327, -3170.0991011476276]], "destination": 25625561}, {"length": 32.8121839306, "source": 270185008, "path": [[3582.552022473706, -3070.6991011477667], [3675.6520224736632, -3081.649101147832], [3801.0520224736056, -3103.4491011467935]], "destination": 25625563}, {"length": 42.4738194829, "source": 3772612360, "path": [[3683.9520224736243, 3065.350898854291], [3482.9020224735887, 3203.100898854672]], "destination": 2704171953}, {"length": 170.834615214, "source": 3772612360, "path": [[3683.9520224736243, 3065.350898854291], [4492.602022473591, 2511.300898852653]], "destination": 654070275}, {"length": 28.2246975342, "source": 141567836, "path": [[-4060.847977526372, 3779.5008988545933], [-3921.697977526284, 3762.6008988524973], [-3914.2979775264043, 3762.3008988525444], [-3896.7979775264007, 3765.000898852122], [-3873.397977526283, 3772.4508988539183]], "destination": 310350370}, {"length": 13.2277459085, "source": 141567836, "path": [[-4060.847977526372, 3779.5008988545933], [-3976.2479775262705, 3758.550898851354]], "destination": 2503919579}, {"length": 32.8677872981, "source": 141567836, "path": [[-4060.847977526372, 3779.5008988545933], [-3920.8479775263427, 3835.0508988536094], [-3904.397977526397, 3853.8008988524552], [-3890.74797752631, 3870.0508988540605]], "destination": 151347748}, {"length": 8.10795278145, "source": 133128755, "path": [[3348.602022473779, 2218.200898852274], [3308.852022473774, 2192.800898853875]], "destination": 3734288089}, {"length": 28.584237242, "source": 133128755, "path": [[3348.602022473779, 2218.200898852274], [3488.8020224737024, 2307.700898853682]], "destination": 133128764}, {"length": 43.2038624562, "source": 133128755, "path": [[3348.602022473779, 2218.200898852274], [3555.102022473777, 2079.3508988532494]], "destination": 133128750}, {"length": 150.375010894, "source": 34845790, "path": [[3708.5020224736363, 380.25089885351804], [3953.9020224736987, 300.00089885362513], [4271.652022473704, 749.6508988538153]], "destination": 34845785}, {"length": 101.858804217, "source": 34845790, "path": [[3708.5020224736363, 380.25089885351804], [3431.7020224736707, -10.599101148756063], [3414.4520224737016, -34.899101148511136]], "destination": 34845781}, {"length": 21.5885760916, "source": 133128760, "path": [[3691.802022473656, 2167.1508988525547], [3590.7020224736907, 2237.850898854532]], "destination": 1147407040}, {"length": 27.9532861857, "source": 133128760, "path": [[3691.802022473656, 2167.1508988525547], [3555.102022473777, 2079.3508988532494]], "destination": 133128750}, {"length": 48.3044917544, "source": 133128760, "path": [[3691.802022473656, 2167.1508988525547], [3866.8520224736103, 2283.4008988539267], [3921.1520224737837, 2323.300898851244]], "destination": 3732222527}, {"length": 84.7542013378, "source": 310350260, "path": [[-3279.4979775263578, 3340.050898852809], [-3402.3479775262545, 3414.200898852471], [-3627.8979775263842, 3615.450898852401], [-3655.797977526243, 3626.3508988518824]], "destination": 2504736952}, {"length": 72.7317791118, "source": 310350260, "path": [[-3279.4979775263578, 3340.050898852809], [-3016.7479775262686, 3099.30089885313], [-2989.5979775262927, 3074.400898853469]], "destination": 310754378}, {"length": 84.3051699327, "source": 34818618, "path": [[-6498.697977526335, 925.900898852916], [-6825.697977526302, 1207.4008988527396], [-6848.547977526209, 1227.1008988520293]], "destination": 34818603}, {"length": 11.4128026567, "source": 1183501407, "path": [[3156.102022473739, -798.2491011482296], [3078.9020224737396, -805.5991011453045]], "destination": 34845770}, {"length": 104.429899402, "source": 1183501407, "path": [[3156.102022473739, -798.2491011482296], [3143.00202247364, -722.5491011482177], [3078.552022473646, -520.4491011454593], [3057.8520224737726, -455.5491011473123], [3032.2520224737027, -375.3491011480037], [3020.5020224736145, -337.4991011462214]], "destination": 1181634707}, {"length": 17.3896126439, "source": 1183501407, "path": [[3156.102022473739, -798.2491011482296], [3195.1520224737797, -791.8491011480455], [3273.65202247365, -789.0491011472989]], "destination": 34845764}, {"length": 4.0489711364, "source": 34818620, "path": [[-6273.547977526217, 749.5008988520624], [-6291.147977526279, 763.5508988528272]], "destination": 975956753}, {"length": 16.2921482837, "source": 34818620, "path": [[-6273.547977526217, 749.5008988520624], [-6191.047977526232, 798.7008988514788]], "destination": 1739548189}, {"length": 54.6333409635, "source": 3732222525, "path": [[4370.952022473729, 2286.550898851658], [4112.202022473754, 2463.6508988535866]], "destination": 3732221820}, {"length": 19.7200797235, "source": 3732222525, "path": [[4370.952022473729, 2286.550898851658], [4275.202022473668, 2224.1508988543046]], "destination": 3732222534}, {"length": 34.6578114953, "source": 3732222525, "path": [[4370.952022473729, 2286.550898851658], [4458.602022473723, 2357.3008988542197], [4545.452022473695, 2387.3508988536687]], "destination": 3732222535}, {"length": 136.011492862, "source": 3732222526, "path": [[4171.4020224736805, 2156.5008988524423], [4146.702022473692, 2140.40089885259], [3991.802022473623, 2042.5508988530794], [3523.002022473687, 1718.450898852808]], "destination": 3732221779}, {"length": 21.378818522, "source": 3732222526, "path": [[4171.4020224736805, 2156.5008988524423], [4275.202022473668, 2224.1508988543046]], "destination": 3732222534}, {"length": 52.1244803192, "source": 3732222526, "path": [[4171.4020224736805, 2156.5008988524423], [3921.1520224737837, 2323.300898851244]], "destination": 3732222527}, {"length": 48.3044917544, "source": 3732222527, "path": [[3921.1520224737837, 2323.300898851244], [3866.8520224736103, 2283.4008988539267], [3691.802022473656, 2167.1508988525547]], "destination": 133128760}, {"length": 20.1933711774, "source": 3732222527, "path": [[3921.1520224737837, 2323.300898851244], [3820.90202247376, 2385.70089885215]], "destination": 3732222529}, {"length": 41.9020305504, "source": 3732222527, "path": [[3921.1520224737837, 2323.300898851244], [4112.202022473754, 2463.6508988535866]], "destination": 3732221820}, {"length": 52.1244803192, "source": 3732222527, "path": [[3921.1520224737837, 2323.300898851244], [4171.4020224736805, 2156.5008988524423]], "destination": 3732222526}, {"length": 21.0793005228, "source": 3732222528, "path": [[3718.4020224736437, 2452.3008988523998], [3820.90202247376, 2385.70089885215]], "destination": 3732222529}, {"length": 52.7793190971, "source": 3732222528, "path": [[3718.4020224736437, 2452.3008988523998], [3459.1520224735996, 2617.300898851482]], "destination": 3732222530}, {"length": 46.5652047732, "source": 3732222528, "path": [[3718.4020224736437, 2452.3008988523998], [3660.7020224737053, 2422.050898854167], [3488.8020224737024, 2307.700898853682]], "destination": 133128764}, {"length": 43.4810497345, "source": 3732222528, "path": [[3718.4020224736437, 2452.3008988523998], [3950.9020224737233, 2574.050898854097]], "destination": 3732221821}, {"length": 41.6282938918, "source": 34818625, "path": [[-6769.0979775263395, 51.90089885331872], [-6497.147977526208, -3.0991011463754603]], "destination": 267696509}, {"length": 52.7793190971, "source": 3732222530, "path": [[3459.1520224735996, 2617.300898851482], [3718.4020224736437, 2452.3008988523998]], "destination": 3732222528}, {"length": 80.9047714803, "source": 3732222530, "path": [[3459.1520224735996, 2617.300898851482], [3435.5020224736686, 2602.9008988537325], [3269.45202247364, 2515.400898854381], [3053.202022473611, 2371.1508988526475]], "destination": 3734288088}, {"length": 25.2251500083, "source": 3732222530, "path": [[3459.1520224735996, 2617.300898851482], [3579.2020224736375, 2698.700898854156]], "destination": 167918462}, {"length": 13.6496606989, "source": 1524853515, "path": [[-4230.497977526282, -2543.6991011460464], [-4242.597977526241, -2521.2991011471786], [-4258.8979775262105, -2509.3491011460856], [-4291.597977526207, -2507.9491011474884]], "destination": 305339473}, {"length": 55.093951343, "source": 1524853515, "path": [[-4230.497977526282, -2543.6991011460464], [-4352.097977526226, -2557.99910114618], [-4601.197977526228, -2587.2991011475224]], "destination": 34817757}, {"length": 122.038437296, "source": 185858628, "path": [[-4454.347977526308, 931.3008988520721], [-4492.897977526278, 910.1508988536011], [-5064.247977526248, 596.3508988529043], [-5094.647977526234, 579.6508988531457]], "destination": 276922155}, {"length": 57.0139207964, "source": 185858628, "path": [[-4454.347977526308, 931.3008988520721], [-4599.147977526252, 1042.800898851226], [-4611.997977526316, 1052.7008988532316], [-4706.497977526203, 1126.750898851725]], "destination": 185857229}, {"length": 65.2218742762, "source": 159973957, "path": [[-281.89797752631307, 515.3508988513522], [-354.6479775262679, 468.55089885156076], [-416.69797752641455, 441.0008988529057], [-523.3979775263186, 419.3508988521444], [-614.2479775264054, 400.1008988545607], [-668.5479775263569, 380.35089885468665]], "destination": 639619459}, {"length": 52.7864096647, "source": 159973957, "path": [[-281.89797752631307, 515.3508988513522], [-334.34797752640577, 549.3508988543283], [-486.3979775262539, 658.3008988521044], [-528.5479775263279, 688.5008988533059]], "destination": 21378260}, {"length": 4.15769505297, "source": 159973957, "path": [[-281.89797752631307, 515.3508988513522], [-261.8479775262639, 502.1008988528308]], "destination": 4455425694}, {"length": 9.67736237383, "source": 159973957, "path": [[-281.89797752631307, 515.3508988513522], [-228.2479775264079, 540.8008988538882]], "destination": 4455425695}, {"length": 49.2903065643, "source": 3732222534, "path": [[4275.202022473668, 2224.1508988543046], [4300.152022473691, 2205.850898853612], [4498.652022473681, 2058.3008988523943]], "destination": 167919126}, {"length": 19.7200797235, "source": 3732222534, "path": [[4275.202022473668, 2224.1508988543046], [4370.952022473729, 2286.550898851658]], "destination": 3732222525}, {"length": 21.378818522, "source": 3732222534, "path": [[4275.202022473668, 2224.1508988543046], [4171.4020224736805, 2156.5008988524423]], "destination": 3732222526}, {"length": 9.29204032518, "source": 34816583, "path": [[-2386.8479775264186, -4384.499101146133], [-2325.0479775263066, -4374.849101147049]], "destination": 368307}, {"length": 50.7774406357, "source": 34816583, "path": [[-2386.8479775264186, -4384.499101146133], [-2420.9479775263444, -4355.599101145913], [-2522.3479775262626, -4214.299101146679], [-2524.84797752639, -4178.849101148075]], "destination": 929372127}, {"length": 9.68899689963, "source": 3732222536, "path": [[3434.6020224735876, 3173.3008988545917], [3482.9020224735887, 3203.100898854672]], "destination": 2704171953}, {"length": 9.9795158055, "source": 3732222536, "path": [[3434.6020224735876, 3173.3008988545917], [3388.302022473644, 3206.250898852403]], "destination": 654070636}, {"length": 131.350352311, "source": 3732222536, "path": [[3434.6020224735876, 3173.3008988545917], [3868.702022473691, 2870.9508988526977], [3796.8520224735958, 2805.750898854598], [3672.002022473642, 2759.750898853497]], "destination": 3732221822}, {"length": 23.4745973475, "source": 3772612364, "path": [[3567.50202247369, 2992.7508988514264], [3683.9520224736243, 3065.350898854291]], "destination": 3772612360}, {"length": 11.3220204856, "source": 2386532740, "path": [[-2986.597977526317, 1640.3508988531712], [-3038.5979775262585, 1602.6508988531418]], "destination": 185877802}, {"length": 27.0703058242, "source": 2386532740, "path": [[-2986.597977526317, 1640.3508988531712], [-3027.547977526357, 1679.6008988535505], [-3002.847977526368, 1717.6508988541173], [-3044.097977526361, 1735.9508988512573]], "destination": 920963605}, {"length": 44.8294318225, "source": 133128779, "path": [[2207.502022473662, 2118.2508988530913], [2418.502022473623, 1972.1008988540234]], "destination": 133128970}, {"length": 95.9834778569, "source": 133128779, "path": [[2207.502022473662, 2118.2508988530913], [1740.1520224737953, 1815.4008988524595]], "destination": 1223798291}, {"length": 128.162903628, "source": 133128779, "path": [[2207.502022473662, 2118.2508988530913], [2831.50202247362, 2522.65089885384]], "destination": 204830067}, {"length": 52.340667484, "source": 133128779, "path": [[2207.502022473662, 2118.2508988530913], [1998.6020224735946, 2260.500898852769], [1958.952022473648, 2287.5008988521017]], "destination": 158835639}, {"length": 51.4031313819, "source": 4050195020, "path": [[2458.1020224736517, -4224.499101148638], [2523.502022473645, -3997.3991011486023]], "destination": 25624010}, {"length": 30.7933503635, "source": 4050195020, "path": [[2458.1020224736517, -4224.499101148638], [2419.902022473774, -4212.099101145839], [2289.2020224736243, -4169.6491011471435], [2269.3520224736917, -4163.199101146375]], "destination": 25625339}, {"length": 7.23380582723, "source": 1365433442, "path": [[1251.6020224737633, -1422.1991011460489], [1238.152022473793, -1453.4991011458942]], "destination": 1365436849}, {"length": 16.9205226995, "source": 1365433442, "path": [[1251.6020224737633, -1422.1991011460489], [1187.8020224735942, -1399.0991011461062], [1162.7520224737343, -1421.94910114668]], "destination": 1365436842}, {"length": 18.2614025795, "source": 1365433442, "path": [[1251.6020224737633, -1422.1991011460489], [1325.7520224736475, -1434.299101145342], [1325.0020224737646, -1466.149101148062]], "destination": 1365436874}, {"length": 11.0822631742, "source": 3702865864, "path": [[2810.1520224736996, 48.650898854418756], [2794.80202247373, 97.45089885271341]], "destination": 3702865861}, {"length": 49.6509890717, "source": 159883856, "path": [[-434.1979775264182, 2304.550898852398], [-253.19797752620943, 2150.1008988522585], [-225.94797752639727, 2128.300898853297]], "destination": 21346799}, {"length": 40.5265338025, "source": 159883856, "path": [[-434.1979775264182, 2304.550898852398], [-609.6479775263841, 2445.5508988516785]], "destination": 249168335}, {"length": 127.627214193, "source": 691196497, "path": [[6651.952022473706, -3423.399101148306], [6651.002022473706, -3435.099101146477], [6604.952022473798, -3996.4491011481587]], "destination": 25666984}, {"length": 340.89193016, "source": 691196497, "path": [[6651.952022473706, -3423.399101148306], [4384.752022473793, -3373.849101148352], [4336.702022473604, -3348.3991011458156]], "destination": 25625641}, {"length": 67.9400641623, "source": 94267986, "path": [[2484.552022473663, 3912.2008988528023], [2427.9020224737824, 3874.4008988516043], [2185.452022473777, 3712.8008988531747], [2158.452022473778, 3694.7508988518507]], "destination": 94267985}, {"length": 45.7370103117, "source": 94267986, "path": [[2484.552022473663, 3912.2008988528023], [2266.0520224737634, 4059.2508988517293]], "destination": 159936180}, {"length": 41.9590982649, "source": 94267986, "path": [[2484.552022473663, 3912.2008988528023], [2683.6020224736412, 3776.4008988538935]], "destination": 94266789}, {"length": 90.7537720905, "source": 21305939, "path": [[854.9020224737358, -2637.999101146704], [694.8020224737395, -2589.0991011472406], [292.3020224736561, -2466.0991011487]], "destination": 4616542}, {"length": 9.26921867259, "source": 21305939, "path": [[854.9020224737358, -2637.999101146704], [832.9520224736875, -2677.0991011453307]], "destination": 1893476494}, {"length": 11.4348929908, "source": 1183500885, "path": [[3693.0020224736904, -1753.7991011487009], [3767.8520224737613, -1768.5991011475721]], "destination": 1183501073}, {"length": 43.1618292978, "source": 1183500885, "path": [[3693.0020224736904, -1753.7991011487009], [3633.2520224737764, -1872.6491011484825], [3698.302022473676, -1926.6491011471487]], "destination": 2006535622}, {"length": 750.906789396, "source": 5057415766, "path": [[-6574.097977526394, 2665.450898852839], [-5992.247977526288, 2277.8508988530175], [-5443.047977526261, 1865.5008988517352], [-5240.5479775263775, 1715.5008988538611], [-4690.6979775263035, 1314.9008988513344], [-3597.8479775262695, 501.4508988523403], [-3399.8979775262674, 308.35089885172806], [-3196.9979775263723, 127.95089885386801]], "destination": 1445537103}, {"length": 74.6589823845, "source": 948791895, "path": [[-5780.09797752621, -3307.8491011480082], [-5748.197977526237, -3371.7991011457116], [-5552.447977526409, -3607.299101147987]], "destination": 277951533}, {"length": 190.016899822, "source": 5056992120, "path": [[-1708.1479775262753, -1107.6491011472456], [-1698.2479775262682, -1101.9491011481364], [-1686.3479775262035, -1095.0991011462463], [-919.7979775263932, -611.5491011478014], [-787.0479775262673, -506.39910114824715]], "destination": 653598377}, {"length": 12.5996165238, "source": 5056992120, "path": [[-1708.1479775262753, -1107.6491011472456], [-1652.6979775262073, -1150.9991011457998]], "destination": 5056992119}, {"length": 52.4677823986, "source": 2705349832, "path": [[2697.6020224736, 629.6008988542212], [2624.7020224736684, 860.6008988536473]], "destination": 204832795}, {"length": 7.03931985187, "source": 2705349832, "path": [[2697.6020224736, 629.6008988542212], [2706.5520224736074, 598.5008988531604]], "destination": 21378255}, {"length": 63.3897168495, "source": 94270046, "path": [[-1323.8979775263006, 3924.650898852633], [-1368.9979775262095, 3909.5508988538086], [-1660.347977526344, 3811.300898853176], [-1670.0479775262345, 3775.550898854618]], "destination": 94269969}, {"length": 62.5455449357, "source": 94270046, "path": [[-1323.8979775263006, 3924.650898852633], [-1337.4479775263292, 3940.5008988531163], [-1533.4979775263325, 4169.750898853408]], "destination": 151351827}, {"length": 57.6526183078, "source": 94270047, "path": [[-2.547977526301537, 4327.6008988542], [21.75202247367558, 4304.700898853042], [169.5520224735958, 4132.900898852654], [195.95202247368883, 4103.800898853649]], "destination": 94269403}, {"length": 87.12179184, "source": 94270047, "path": [[-2.547977526301537, 4327.6008988542], [-40.14797752627253, 4316.500898852382], [-511.3479775262775, 4176.750898853498], [-545.347977526367, 4166.7008988532925]], "destination": 151352087}, {"length": 42.0555980399, "source": 133128800, "path": [[2371.2020224737616, 1068.0008988543932], [2320.952022473621, 1157.450898851664], [2238.5020224737764, 1233.900898853335]], "destination": 1223798073}, {"length": 33.2752854436, "source": 133128800, "path": [[2371.2020224737616, 1068.0008988543932], [2433.902022473733, 1042.6008988524416], [2480.5020224736295, 1030.0008988544107], [2580.002022473771, 1011.5008988513807]], "destination": 133128894}, {"length": 45.3462934157, "source": 133128800, "path": [[2371.2020224737616, 1068.0008988543932], [2391.002022473776, 1002.8508988533247], [2398.1020224737026, 941.7008988528153], [2394.5520224737393, 865.6008988516817]], "destination": 133128791}, {"length": 24.9161654214, "source": 3772612368, "path": [[3687.4020224737515, 2913.200898852608], [3567.50202247369, 2992.7508988514264]], "destination": 3772612364}, {"length": 72.6208275855, "source": 654047843, "path": [[-3175.9479775264053, -860.0991011462611], [-2699.797977526286, -952.299101147247]], "destination": 653622568}, {"length": 44.3760805595, "source": 654047843, "path": [[-3175.9479775264053, -860.0991011462611], [-3283.9479775264026, -838.7991011460372], [-3366.247977526271, -814.5991011474507], [-3452.597977526395, -780.8991011479804]], "destination": 185876056}, {"length": 17.9231961057, "source": 654047843, "path": [[-3175.9479775264053, -860.0991011462611], [-3268.297977526258, -913.0491011468678]], "destination": 146729063}, {"length": 93.1318869245, "source": 654047845, "path": [[-2394.3479775263563, -1141.5991011460846], [-2293.997977526274, -1219.8991011480587], [-2639.847977526255, -1439.6991011480509]], "destination": 654050361}, {"length": 5.88599678874, "source": 654047845, "path": [[-2394.3479775263563, -1141.5991011460846], [-2423.197977526215, -1160.0491011485303]], "destination": 654050379}, {"length": 18.8072817653, "source": 654047845, "path": [[-2394.3479775263563, -1141.5991011460846], [-2312.847977526289, -1076.1991011456473]], "destination": 653622710}, {"length": 21.3387314878, "source": 29588071, "path": [[-6680.197977526392, 4251.050898851361], [-6570.7479775263255, 4314.450898853294]], "destination": 303197652}, {"length": 114.567204549, "source": 29588071, "path": [[-6680.197977526392, 4251.050898851361], [-6452.847977526321, 4093.45089885349], [-6150.797977526378, 3871.6008988544104]], "destination": 277578909}, {"length": 8.51036712568, "source": 1223805577, "path": [[1750.8020224736854, 852.6008988525291], [1716.7020224737594, 821.6008988526369]], "destination": 2705349815}, {"length": 54.2168328828, "source": 930776663, "path": [[-3998.8479775263654, -2156.0491011456406], [-3984.397977526255, -2175.9491011472674], [-3978.2479775263278, -2184.2991011453705], [-3739.047977526333, -2041.5491011469555]], "destination": 272269064}, {"length": 13.2529319135, "source": 4791973991, "path": [[502.95202247374607, 1756.950898851528], [567.202022473623, 1798.9508988520697]], "destination": 21346784}, {"length": 12.2738700761, "source": 4791973991, "path": [[502.95202247374607, 1756.950898851528], [443.4520224736449, 1718.0508988516863]], "destination": 21346783}, {"length": 15.5586979951, "source": 158843500, "path": [[-820.84797752624, 4348.150898852765], [-726.697977526225, 4380.650898852423]], "destination": 151352533}, {"length": 10.8832614586, "source": 36488943, "path": [[6754.952022473671, 1015.700898854277], [6701.7520224736945, 1049.900898852485]], "destination": 36488944}, {"length": 57.4446446991, "source": 1183500911, "path": [[3108.5520224736206, -1144.1991011480468], [3029.7520224737973, -891.1491011467376]], "destination": 1181634293}, {"length": 195.90627106, "source": 1183500911, "path": [[3108.5520224736206, -1144.1991011480468], [3065.002022473617, -1149.1991011460811], [2995.4020224736146, -1157.7991011471056], [2165.7520224735995, -1017.2491011459783], [2032.5520224737659, -1208.0991011487185], [2014.0020224737043, -1237.2491011483078]], "destination": 34845759}, {"length": 30.8016835296, "source": 506888656, "path": [[-4984.997977526273, -2486.3491011473116], [-4960.997977526249, -2348.7491011486836]], "destination": 506888736}, {"length": 79.2695672939, "source": 506888656, "path": [[-4984.997977526273, -2486.3491011473116], [-5239.347977526343, -2514.6491011476255], [-5245.447977526352, -2500.0991011481233], [-5216.747977526248, -2329.4991011475477]], "destination": 506888735}, {"length": 49.1794860969, "source": 506888656, "path": [[-4984.997977526273, -2486.3491011473116], [-4653.847977526216, -2448.349101147329]], "destination": 506888335}, {"length": 52.4152547479, "source": 25623998, "path": [[-2476.4979775262486, -4161.249101148456], [-2408.4979775262914, -4257.19910114708], [-2354.797977526246, -4332.899101147092], [-2325.0479775263066, -4374.849101147049]], "destination": 368307}, {"length": 23.0399903035, "source": 25623998, "path": [[-2476.4979775262486, -4161.249101148456], [-2542.5479775262884, -4067.1991011471673]], "destination": 929367046}, {"length": 8.08401822406, "source": 25623998, "path": [[-2476.4979775262486, -4161.249101148456], [-2524.84797752639, -4178.849101148075]], "destination": 929372127}, {"length": 17.0104055725, "source": 270730345, "path": [[444.2520224736679, -4530.249101147632], [348.50202247360687, -4573.649101146771]], "destination": 925869772}, {"length": 63.981762445, "source": 133128980, "path": [[1471.6520224737906, 1641.4008988512307], [1161.5020224737816, 1438.600898854503]], "destination": 133128690}, {"length": 20.8231299674, "source": 133128980, "path": [[1471.6520224737906, 1641.4008988512307], [1610.4020224736448, 1620.6008988532972]], "destination": 133129092}, {"length": 63.1598944056, "source": 133128980, "path": [[1471.6520224737906, 1641.4008988512307], [1051.1520224736337, 1705.5008988542397]], "destination": 160020757}, {"length": 50.6407343592, "source": 133128980, "path": [[1471.6520224737906, 1641.4008988512307], [1718.202022473747, 1801.2008988534944]], "destination": 204830550}, {"length": 597.023914992, "source": 185848442, "path": [[-2959.597977526318, -151.89910114798977], [-2505.197977526352, -548.9491011481107], [-2034.7979775263702, -928.5491011468139], [-1430.447977526228, -1418.1491011484582], [-530.7979775261983, -2112.09910114718], [-347.29797752630634, -2209.349101146785]], "destination": 241885960}, {"length": 228.788910563, "source": 185848442, "path": [[-2959.597977526318, -151.89910114798977], [-2462.3479775263136, -518.3991011463718], [-1981.1979775263833, -919.7991011475892], [-1956.4479775262544, -940.4491011473226]], "destination": 25624510}, {"length": 14.7886124492, "source": 1219877311, "path": [[5464.402022473669, 3901.500898852106], [5381.10202247366, 3863.850898852661]], "destination": 1219877554}, {"length": 15.2151616378, "source": 1219877311, "path": [[5464.402022473669, 3901.500898852106], [5367.952022473643, 3927.050898852258]], "destination": 1219877396}, {"length": 13.6786112172, "source": 1219877311, "path": [[5464.402022473669, 3901.500898852106], [5549.602022473677, 3926.800898852889]], "destination": 116147990}, {"length": 59.5187715735, "source": 952746620, "path": [[-4423.04797752624, -1863.6491011463363], [-4527.697977526391, -1901.39910114695], [-4812.747977526399, -1876.949101145442]], "destination": 34818328}, {"length": 57.3556952222, "source": 952746620, "path": [[-4423.04797752624, -1863.6491011463363], [-4775.847977526393, -1751.1991011467387]], "destination": 260588707}, {"length": 25.4933013155, "source": 952746620, "path": [[-4423.04797752624, -1863.6491011463363], [-4266.397977526371, -1913.8491011467806]], "destination": 34818484}, {"length": 7.64156517027, "source": 1223805565, "path": [[1847.502022473746, 916.9508988513542], [1894.3020224737595, 932.2008988519315]], "destination": 2705349799}, {"length": 82.4389468512, "source": 141566590, "path": [[-4857.147977526343, 3937.5508988541696], [-4501.997977526262, 3649.8008988523625]], "destination": 335690029}, {"length": 121.871460516, "source": 141566590, "path": [[-4857.147977526343, 3937.5508988541696], [-4882.197977526203, 3957.950898854534], [-4928.397977526311, 3995.5508988533948], [-5380.647977526242, 4363.750898853879]], "destination": 141566589}, {"length": 84.1787878778, "source": 141566590, "path": [[-4857.147977526343, 3937.5508988541696], [-5274.247977526292, 3719.250898853943], [-5307.897977526288, 3702.4008988524315]], "destination": 141567054}, {"length": 112.491582823, "source": 141566590, "path": [[-4857.147977526343, 3937.5508988541696], [-4366.447977526278, 4186.050898852045], [-4294.147977526252, 4211.4508988539965], [-4226.647977526365, 4213.050898851378]], "destination": 335690031}, {"length": 9.82386786913, "source": 1223805567, "path": [[1526.5520224736483, 1127.5008988533841], [1574.0020224737084, 1158.7508988526452]], "destination": 2705349773}, {"length": 8.07899969183, "source": 1223805568, "path": [[1435.8020224736201, 1058.6508988517096], [1388.552022473677, 1039.8508988522792]], "destination": 2705349788}, {"length": 64.939366705, "source": 36485568, "path": [[-842.447977526417, 894.9008988530238], [-794.1979775263342, 861.3008988511694], [-528.5479775263279, 688.5008988533059]], "destination": 21378260}, {"length": 17.2730316178, "source": 36485568, "path": [[-842.447977526417, 894.9008988530238], [-757.5979775262808, 948.90089885169]], "destination": 36485460}, {"length": 103.646411945, "source": 36485568, "path": [[-842.447977526417, 894.9008988530238], [-892.3479775262422, 863.2008988520568], [-1260.9979775262125, 628.8008988519778], [-1351.8479775262992, 571.0508988521212]], "destination": 160025687}, {"length": 72.0187353053, "source": 666952322, "path": [[3957.102022473791, -1547.799101146552], [3945.152022473586, -1588.149101145575], [3853.5520224736165, -1790.9491011458556], [3748.602022473735, -1808.1991011484888]], "destination": 666952683}, {"length": 12.087782274, "source": 666952322, "path": [[3957.102022473791, -1547.799101146552], [3874.502022473747, -1548.9991011463644]], "destination": 34845775}, {"length": 45.9381559343, "source": 272270443, "path": [[-3641.897977526343, -2557.2491011480734], [-3698.3479775263286, -2760.449101145923]], "destination": 272269976}, {"length": 22.2748548094, "source": 272270443, "path": [[-3641.897977526343, -2557.2491011480734], [-3564.7479775262614, -2470.8991011479498]], "destination": 272270324}, {"length": 77.6009602648, "source": 272270443, "path": [[-3641.897977526343, -2557.2491011480734], [-4111.697977526418, -2621.5991011468986], [-4121.697977526262, -2613.2491011487955], [-4139.397977526382, -2593.8491011459064]], "destination": 930776805}, {"length": 12.0612811421, "source": 932276868, "path": [[-3780.647977526419, -2760.6491011482603], [-3744.7979775262484, -2762.1491011480257], [-3698.3479775263286, -2760.449101145923]], "destination": 272269976}, {"length": 87.2240961895, "source": 34817814, "path": [[-6771.647977526385, -1086.4491011481903], [-6716.447977526352, -1105.4491011464052], [-6243.397977526266, -1268.2491011482]], "destination": 295330571}, {"length": 69.1385495402, "source": 666952326, "path": [[3809.8520224736367, -1549.8991011462238], [3404.102022473765, -1482.5491011478675], [3351.6520224736723, -1473.8491011456745]], "destination": 1183501163}, {"length": 48.7472589117, "source": 666952326, "path": [[3809.8520224736367, -1549.8991011462238], [3777.3020224736165, -1581.349101147822], [3693.0020224736904, -1753.7991011487009]], "destination": 1183500885}, {"length": 19.6706581808, "source": 34816647, "path": [[-4073.8979775263306, -4095.649101145682], [-4208.197977526363, -4099.999101146778]], "destination": 34816457}, {"length": 40.2253127407, "source": 159885961, "path": [[1008.5520224736299, 2825.6008988520875], [925.6520224736331, 2939.200898854466], [889.5520224736497, 2988.6508988532514]], "destination": 371608226}, {"length": 72.822272711, "source": 34817815, "path": [[-6264.497977526373, -813.2991011464696], [-6545.5479775262675, -581.5991011459687], [-6574.947977526335, -557.3491011467979]], "destination": 34818552}, {"length": 95.8955973085, "source": 34817815, "path": [[-6264.497977526373, -813.2991011464696], [-6692.547977526387, -1043.8491011477424], [-6771.647977526385, -1086.4491011481903]], "destination": 34817814}, {"length": 55.2726445608, "source": 925427454, "path": [[2174.0520224737825, -3365.649101148449], [1797.352022473664, -3346.5991011460974]], "destination": 25625325}, {"length": 82.0424717962, "source": 133128846, "path": [[2510.2520224737914, 1236.6008988529131], [2604.052022473713, 1214.700898852783], [2677.152022473761, 1202.5008988523211], [2722.3020224735883, 1202.5008988523211], [2789.3020224736274, 1213.0508988512645], [2836.302022473758, 1229.350898853454], [2891.3020224736742, 1256.3008988522029], [2934.0520224736542, 1288.0508988537542], [2979.1520224737856, 1335.8508988545736]], "destination": 133128865}, {"length": 51.0898183258, "source": 133128846, "path": [[2510.2520224737914, 1236.6008988529131], [2580.002022473771, 1011.5008988513807]], "destination": 133128894}, {"length": 28.8341403526, "source": 133128846, "path": [[2510.2520224737914, 1236.6008988529131], [2498.752022473738, 1273.7508988536206], [2414.1020224737185, 1346.6508988528858]], "destination": 133128841}, {"length": 55.6180669016, "source": 34816662, "path": [[-5164.547977526412, -4401.799101145798], [-5508.147977526301, -4508.849101146239]], "destination": 34816822}, {"length": 55.1181743142, "source": 25625239, "path": [[982.2520224735954, -4020.7491011479133], [682.152022473792, -3870.8991011482394]], "destination": 25625056}, {"length": 41.9172992068, "source": 25625239, "path": [[982.2520224735954, -4020.7491011479133], [1208.8020224736429, -4136.149101146458]], "destination": 25625242}, {"length": 77.5966936699, "source": 25625239, "path": [[982.2520224735954, -4020.7491011479133], [1445.2020224737794, -3850.449101147291]], "destination": 25625246}, {"length": 45.9381559343, "source": 272269976, "path": [[-3698.3479775263286, -2760.449101145923], [-3641.897977526343, -2557.2491011480734]], "destination": 272270443}, {"length": 12.0612811421, "source": 272269976, "path": [[-3698.3479775263286, -2760.449101145923], [-3744.7979775262484, -2762.1491011480257], [-3780.647977526419, -2760.6491011482603]], "destination": 932276868}, {"length": 12.7617493768, "source": 272269976, "path": [[-3698.3479775263286, -2760.449101145923], [-3646.9479775262935, -2758.5491011485883], [-3611.6479775263333, -2754.8491011479828]], "destination": 932276637}, {"length": 67.5293285784, "source": 25625242, "path": [[1208.8020224736429, -4136.149101146458], [1540.9020224737003, -3925.249101147443]], "destination": 25625250}, {"length": 35.3863465974, "source": 25625242, "path": [[1208.8020224736429, -4136.149101146458], [1022.2020224737172, -4237.399101146621]], "destination": 25625261}, {"length": 117.062306692, "source": 25625242, "path": [[1208.8020224736429, -4136.149101146458], [1791.0520224737602, -4430.349101145481], [1843.4020224737947, -4456.799101145492]], "destination": 25624054}, {"length": 41.9172992068, "source": 25625242, "path": [[1208.8020224736429, -4136.149101146458], [982.2520224735954, -4020.7491011479133]], "destination": 25625239}, {"length": 12.9899449357, "source": 1739548189, "path": [[-6191.047977526232, 798.7008988514788], [-6199.147977526298, 804.7508988546781], [-6152.947977526413, 832.6508988538706], [-6143.69797752623, 825.9008988531491]], "destination": 1739548185}, {"length": 12.4917931264, "source": 1739548189, "path": [[-6191.047977526232, 798.7008988514788], [-6181.497977526318, 793.3008988523227], [-6135.997977526397, 820.2508988546242], [-6143.69797752623, 825.9008988531491]], "destination": 1739548185}, {"length": 16.2921482837, "source": 1739548189, "path": [[-6191.047977526232, 798.7008988514788], [-6273.547977526217, 749.5008988520624]], "destination": 34818620}, {"length": 79.8669395912, "source": 25625246, "path": [[1445.2020224737794, -3850.449101147291], [1491.2520224736882, -3492.599101146965]], "destination": 25625286}, {"length": 30.4455740576, "source": 94268063, "path": [[1224.2520224736709, 3284.950898851946], [1266.0520224736515, 3272.4008988544992], [1413.5520224736188, 3228.150898852533]], "destination": 94267807}, {"length": 8.14897789847, "source": 177220256, "path": [[1371.25202247379, -1980.099101146493], [1397.5520224736026, -1947.7991011456197]], "destination": 653601065}, {"length": 24.1469265373, "source": 177220256, "path": [[1371.25202247379, -1980.099101146493], [1466.5020224737812, -2013.4491011454259], [1493.602022473617, -1980.3491011458618]], "destination": 1503278666}, {"length": 368.077022568, "source": 177220256, "path": [[1371.25202247379, -1980.099101146493], [1316.052022473757, -1966.2991011486497], [1250.5520224737054, -2040.04910114719], [880.7020224737006, -1914.1491011467338], [501.0520224737469, -1743.3991011479577], [-21.547977526292783, -1433.999101145389], [-462.3979775262299, -1112.7491011464485], [-392.69797752639056, -1075.6491011463254]], "destination": 4955856167}, {"length": 27.6335162535, "source": 177220256, "path": [[1371.25202247379, -1980.099101146493], [1257.7520224736904, -1940.3991011479604], [1282.5020224735972, -1904.1991011476966]], "destination": 1503278630}, {"length": 146.976088105, "source": 177220256, "path": [[1371.25202247379, -1980.099101146493], [937.6020224736159, -2524.4491011484624], [906.8020224736184, -2566.0991011484666]], "destination": 721638495}, {"length": 40.9792350229, "source": 133128865, "path": [[2979.1520224737856, 1335.8508988545736], [3020.652022473591, 1377.9008988521468], [3067.502022473745, 1399.0008988535862], [3137.752022473794, 1410.7008988517578], [3191.652022473734, 1444.6508988541495]], "destination": 133128875}, {"length": 71.3230148936, "source": 133128865, "path": [[2979.1520224737856, 1335.8508988545736], [2978.752022473774, 1385.4008988545274], [2939.4020224737806, 1532.500898854039], [2884.6520224736773, 1648.850898853027]], "destination": 133128773}, {"length": 82.0424717962, "source": 133128865, "path": [[2979.1520224737856, 1335.8508988545736], [2934.0520224736542, 1288.0508988537542], [2891.3020224736742, 1256.3008988522029], [2836.302022473758, 1229.350898853454], [2789.3020224736274, 1213.0508988512645], [2722.3020224735883, 1202.5008988523211], [2677.152022473761, 1202.5008988523211], [2604.052022473713, 1214.700898852783], [2510.2520224737914, 1236.6008988529131]], "destination": 133128846}, {"length": 102.185014996, "source": 133128865, "path": [[2979.1520224737856, 1335.8508988545736], [2980.102022473785, 1283.20089885392], [2960.002022473596, 1221.550898854673], [2922.6520224736596, 1166.400898853226], [2874.9020224736464, 1121.6008988519377], [2814.202022473733, 1079.8008988537333], [2745.7520224736245, 1050.0008988536536], [2648.052022473646, 1018.6508988532239], [2580.002022473771, 1011.5008988513807]], "destination": 133128894}, {"length": 11.0178284945, "source": 305339475, "path": [[-6493.497977526408, -2757.5991011481447], [-6533.197977526273, -2715.4991011464344]], "destination": 34816434}, {"length": 33.0716692651, "source": 4069612195, "path": [[-4465.647977526243, 298.15089885332213], [-4545.8479775262185, 218.50089885333546], [-4535.747977526316, 165.75089885151328]], "destination": 185858261}, {"length": 3.53290464789, "source": 4069612195, "path": [[-4465.647977526243, 298.15089885332213], [-4456.297977526225, 293.9008988533942], [-4450.297977526274, 290.80089885269444], [-4446.247977526241, 288.70089885302264]], "destination": 4069612197}, {"length": 28.4649609666, "source": 4069612195, "path": [[-4465.647977526243, 298.15089885332213], [-4358.197977526234, 404.8508988532262]], "destination": 308768783}, {"length": 42.5029268511, "source": 2386533028, "path": [[-1822.1479775262228, 424.9008988530534], [-1850.2979775263384, 358.9008988527098], [-1873.5979775263977, 350.4508988534383], [-1935.1479775262526, 309.65089885270913], [-1964.847977526274, 290.95089885444736], [-1988.29797752631, 277.40089885242014]], "destination": 4155927601}, {"length": 9.70397170011, "source": 2386533028, "path": [[-1822.1479775262228, 424.9008988530534], [-1803.4479775264067, 412.80089885376015], [-1776.6979775262205, 393.150898851502]], "destination": 2386533045}, {"length": 15.74841772, "source": 2386533028, "path": [[-1822.1479775262228, 424.9008988530534], [-1840.9479775263194, 439.85089885367756], [-1871.7479775263168, 462.80089885186726], [-1878.1479775262787, 466.40089885130465], [-1898.2979775263864, 458.85089885189245]], "destination": 2484772385}, {"length": 3.53290464789, "source": 4069612197, "path": [[-4446.247977526241, 288.70089885302264], [-4450.297977526274, 290.80089885269444], [-4456.297977526225, 293.9008988533942], [-4465.647977526243, 298.15089885332213]], "destination": 4069612195}, {"length": 26.4467966782, "source": 3730881190, "path": [[1249.352022473671, 232.40089885234738], [1250.402022473729, 246.3508988519436], [1194.9020224737428, 344.7508988543291]], "destination": 133129723}, {"length": 19.330442061, "source": 3730881190, "path": [[1249.352022473671, 232.40089885234738], [1248.0520224738002, 215.7508988531731], [1232.4520224737955, 169.25089885333477], [1221.052022473801, 147.90089885252655]], "destination": 133129711}, {"length": 5.8936478992, "source": 3730881190, "path": [[1249.352022473671, 232.40089885234738], [1289.052022473758, 236.90089885164411]], "destination": 3730881191}, {"length": 5.8936478992, "source": 3730881191, "path": [[1289.052022473758, 236.90089885164411], [1249.352022473671, 232.40089885234738]], "destination": 3730881190}, {"length": 7.74407819547, "source": 3730881192, "path": [[1355.4020224737505, 190.8008988529275], [1394.8020224736624, 167.55089885123198]], "destination": 3730881193}, {"length": 9.32157660038, "source": 133128875, "path": [[3191.652022473734, 1444.6508988541495], [3147.552022473743, 1474.9008988523826]], "destination": 133128921}, {"length": 40.9792350229, "source": 133128875, "path": [[3191.652022473734, 1444.6508988541495], [3137.752022473794, 1410.7008988517578], [3067.502022473745, 1399.0008988535862], [3020.652022473591, 1377.9008988521468], [2979.1520224737856, 1335.8508988545736]], "destination": 133128865}, {"length": 3.12855103558, "source": 133128875, "path": [[3191.652022473734, 1444.6508988541495], [3207.9520224737034, 1435.5508988543875]], "destination": 3732221785}, {"length": 106.724063397, "source": 25625261, "path": [[1022.2020224737172, -4237.399101146621], [444.2520224736679, -4530.249101147632]], "destination": 270730345}, {"length": 129.763541051, "source": 185856687, "path": [[-6614.947977526375, 1781.1508988536673], [-6370.447977526394, 1772.8008988520116], [-5755.797977526234, 1757.0508988526967], [-5728.947977526211, 1756.4008988522062]], "destination": 277062589}, {"length": 15.9847137313, "source": 133130131, "path": [[676.8020224736659, -703.4491011452815], [739.2020224736839, -762.4491011455348]], "destination": 160028423}, {"length": 63.9807169717, "source": 133130131, "path": [[676.8020224736659, -703.4491011452815], [704.1520224737585, -672.9491011476796], [727.2520224737011, -634.0491011478377], [743.0520224736003, -586.6491011481401], [745.5020224735875, -545.299101148089], [733.35202247371, -424.9491011485418]], "destination": 133130150}, {"length": 8.99735500684, "source": 133130131, "path": [[676.8020224736659, -703.4491011452815], [629.0020224737348, -728.8991011478174]], "destination": 133130127}, {"length": 29.3342804156, "source": 666946225, "path": [[5315.302022473656, 1270.1508988541832], [5254.302022473789, 1144.5008988530958]], "destination": 666946376}, {"length": 125.463549944, "source": 666946225, "path": [[5315.302022473656, 1270.1508988541832], [5353.902022473767, 1262.2008988536493], [5418.30202247362, 1249.0008988521595], [6026.152022473585, 1114.6008988518474], [6087.052022473616, 1101.1508988545415], [6128.802022473678, 1091.9008988530265]], "destination": 204846404}, {"length": 14.8591390391, "source": 1219877554, "path": [[5381.10202247366, 3863.850898852661], [5303.002022473802, 3821.1508988545975]], "destination": 116147905}, {"length": 14.1860984076, "source": 1219877554, "path": [[5381.10202247366, 3863.850898852661], [5367.952022473643, 3927.050898852258]], "destination": 1219877396}, {"length": 8.9335200013, "source": 1219877554, "path": [[5381.10202247366, 3863.850898852661], [5418.2020224737835, 3831.9508988529096]], "destination": 3732186333}, {"length": 14.7886124492, "source": 1219877554, "path": [[5381.10202247366, 3863.850898852661], [5464.402022473669, 3901.500898852106]], "destination": 1219877311}, {"length": 132.221187416, "source": 24909759, "path": [[1355.1020224737974, 1103.8008988535353], [1365.6520224736291, 1181.4008988544344], [814.3020224737895, 1549.2508988543818]], "destination": 4804746712}, {"length": 25.1702459843, "source": 24909759, "path": [[1355.1020224737974, 1103.8008988535353], [1475.4020224736487, 1184.7008988539187]], "destination": 24909781}, {"length": 43.6938198976, "source": 24909759, "path": [[1355.1020224737974, 1103.8008988535353], [1146.6020224737417, 1244.4508988522784]], "destination": 1224777982}, {"length": 23.987499271, "source": 2386533045, "path": [[-1776.6979775262205, 393.150898851502], [-1796.1479775263633, 286.0508988540289]], "destination": 470177}, {"length": 9.70397170011, "source": 2386533045, "path": [[-1776.6979775262205, 393.150898851502], [-1803.4479775264067, 412.80089885376015], [-1822.1479775262228, 424.9008988530534]], "destination": 2386533028}, {"length": 3.46436839234, "source": 2386533045, "path": [[-1776.6979775262205, 393.150898851502], [-1766.447977526342, 387.1008988518554], [-1760.2479775262748, 382.05089885323673]], "destination": 2484772391}, {"length": 20.6545118146, "source": 34816457, "path": [[-4208.197977526363, -4099.999101146778], [-4185.347977526232, -4008.349101148667]], "destination": 34816456}, {"length": 155.172188801, "source": 34816457, "path": [[-4208.197977526363, -4099.999101146778], [-5164.547977526412, -4401.799101145798]], "destination": 34816662}, {"length": 3.56734966104, "source": 1224697290, "path": [[2244.002022473657, 268.00089885270495], [2220.2020224737494, 271.45089885394214]], "destination": 204834533}, {"length": 33.2752854436, "source": 133128894, "path": [[2580.002022473771, 1011.5008988513807], [2480.5020224736295, 1030.0008988544107], [2433.902022473733, 1042.6008988524416], [2371.2020224737616, 1068.0008988543932]], "destination": 133128800}, {"length": 102.185014996, "source": 133128894, "path": [[2580.002022473771, 1011.5008988513807], [2648.052022473646, 1018.6508988532239], [2745.7520224736245, 1050.0008988536536], [2814.202022473733, 1079.8008988537333], [2874.9020224736464, 1121.6008988519377], [2922.6520224736596, 1166.400898853226], [2960.002022473596, 1221.550898854673], [2980.102022473785, 1283.20089885392], [2979.1520224737856, 1335.8508988545736]], "destination": 133128865}, {"length": 34.1900702854, "source": 133128894, "path": [[2580.002022473771, 1011.5008988513807], [2624.7020224736684, 860.6008988536473]], "destination": 204832795}, {"length": 51.0898183258, "source": 133128894, "path": [[2580.002022473771, 1011.5008988513807], [2510.2520224737914, 1236.6008988529131]], "destination": 133128846}, {"length": 42.4640724718, "source": 133128894, "path": [[2580.002022473771, 1011.5008988513807], [2524.6020224736208, 973.9508988531043], [2473.1520224736682, 939.5008988519749], [2430.9520224736757, 903.7508988534171], [2394.5520224737393, 865.6008988516817]], "destination": 133128791}, {"length": 48.10925414, "source": 4069612223, "path": [[-2849.947977526357, -398.4991011485306], [-2830.397977526378, -462.49910114681825], [-2826.397977526263, -510.14910114588474], [-2829.0479775263666, -536.1491011477426], [-2843.1479775263833, -578.949101146975], [-2861.947977526258, -610.0491011480358]], "destination": 4069612236}, {"length": 57.1800257226, "source": 4069612223, "path": [[-2849.947977526357, -398.4991011485306], [-3084.897977526202, -546.4991011479015], [-3132.2479775262036, -576.2991011479812]], "destination": 185876212}, {"length": 4.96485988531, "source": 4069612223, "path": [[-2849.947977526357, -398.4991011485306], [-2825.447977526263, -383.0491011456161]], "destination": 185876213}, {"length": 21.5885760916, "source": 1147407040, "path": [[3590.7020224736907, 2237.850898854532], [3691.802022473656, 2167.1508988525547]], "destination": 133128760}, {"length": 47.0793835916, "source": 1147407040, "path": [[3590.7020224736907, 2237.850898854532], [3625.0520224736515, 2260.0508988546153], [3666.2020224735857, 2286.6508988528267], [3667.2520224736436, 2287.3508988539015], [3668.602022473655, 2288.250898853761], [3670.1020224736426, 2289.2008988542048], [3719.1520224737483, 2321.300898852741], [3720.6020224735958, 2322.2508988531845], [3721.80202247363, 2323.050898851875], [3723.102022473723, 2323.900898854703], [3766.95202247368, 2350.45089885233], [3820.90202247376, 2385.70089885215]], "destination": 3732222529}, {"length": 21.5323522079, "source": 1147407040, "path": [[3590.7020224736907, 2237.850898854532], [3488.8020224737024, 2307.700898853682]], "destination": 133128764}, {"length": 64.4689177313, "source": 133129675, "path": [[755.3520224736765, -128.94910114624736], [441.8520224735989, 74.75089885389252]], "destination": 133129373}, {"length": 49.3594612392, "source": 133129675, "path": [[755.3520224736765, -128.94910114624736], [769.2020224736584, -93.2491011482739], [792.4520224737996, -64.29910114746917], [844.6020224737172, -21.699101147021338], [891.0020224737192, 0.15089885252450586], [972.3520224735882, 27.550898852979344]], "destination": 133129694}, {"length": 32.7212013405, "source": 133129675, "path": [[755.3520224736765, -128.94910114624736], [912.552022473756, -233.59910114706395]], "destination": 133129375}, {"length": 71.9645506488, "source": 25625284, "path": [[638.402022473672, -3452.549101147895], [261.9020224736701, -3431.849101147577], [148.20202247367575, -3425.5991011455935]], "destination": 270730746}, {"length": 82.2868431228, "source": 25625284, "path": [[638.402022473672, -3452.549101147895], [590.2020224737292, -3821.199101146533]], "destination": 25625054}, {"length": 37.6577245751, "source": 1987166918, "path": [[-4064.447977526253, -2671.8491011479273], [-4096.947977526355, -2651.29910114581], [-4153.197977526224, -2630.2991011455388], [-4201.897977526237, -2560.599101148142], [-4200.597977526366, -2540.1991011477776]], "destination": 1524853513}, {"length": 18.1040649292, "source": 1987166918, "path": [[-4064.447977526253, -2671.8491011479273], [-3976.397977526247, -2614.6491011473927]], "destination": 34816179}, {"length": 30.220201283, "source": 1987166918, "path": [[-4064.447977526253, -2671.8491011479273], [-4211.397977526232, -2767.3491011483975]], "destination": 277410140}, {"length": 36.0775361782, "source": 1987166918, "path": [[-4064.447977526253, -2671.8491011479273], [-4033.6479775262555, -2692.5991011488295], [-3895.7979775262606, -2747.099101146233], [-3854.94797752628, -2752.5491011459735]], "destination": 2561299817}, {"length": 76.7555186573, "source": 4453288647, "path": [[-4276.347977526296, -1205.149101146219], [-4298.8979775262505, -1164.3991011460741], [-4316.2979775264175, -1140.649101145641], [-4484.497977526258, -888.4491011471596]], "destination": 4069612264}, {"length": 163.955540977, "source": 4453288647, "path": [[-4276.347977526296, -1205.149101146219], [-4081.8979775263388, -1478.6991011455086], [-3974.5979775263063, -1624.249101148223], [-3941.0479775263684, -1694.8491011454792], [-3937.0479775262534, -1738.0491011458332], [-3931.6979775263494, -1856.249101148677], [-3928.9979775263273, -1894.1991011480752]], "destination": 4453288654}, {"length": 8.99985893225, "source": 4453288647, "path": [[-4276.347977526296, -1205.149101146219], [-4332.647977526305, -1221.4491011484085]], "destination": 4069612278}, {"length": 51.2921124979, "source": 666946248, "path": [[5417.602022473656, 1490.7508988528662], [5315.302022473656, 1270.1508988541832]], "destination": 666946225}, {"length": 12.688005956, "source": 666946248, "path": [[5417.602022473656, 1490.7508988528662], [5364.202022473785, 1535.7008988523546]], "destination": 666946250}, {"length": 49.1752411478, "source": 25625289, "path": [[501.4020224736182, -3356.5991011457186], [523.752022473678, -3308.8991011460676], [590.952022473612, -3165.499101147162], [600.4520224736076, -3145.2991011455824]], "destination": 25625026}, {"length": 27.3824134797, "source": 25625289, "path": [[501.4020224736182, -3356.5991011457186], [688.0020224737659, -3366.199101147771]], "destination": 925761731}, {"length": 12.688005956, "source": 666946250, "path": [[5364.202022473785, 1535.7008988523546], [5417.602022473656, 1490.7508988528662]], "destination": 666946248}, {"length": 58.5101170167, "source": 666946250, "path": [[5364.202022473785, 1535.7008988523546], [5239.152022473714, 1285.8008988523295]], "destination": 666891842}, {"length": 76.7961788207, "source": 638583333, "path": [[-5002.547977526417, 400.2008988521766], [-5052.747977526417, 391.70089885232073], [-5387.097977526345, 171.5508988517911]], "destination": 308767716}, {"length": 22.5581050218, "source": 281774796, "path": [[-675.6979775262017, -425.3991011466951], [-569.0479775262158, -498.64910114649774]], "destination": 177215574}, {"length": 38.5591120052, "source": 4453288654, "path": [[-3928.9979775263273, -1894.1991011480752], [-3919.59797752639, -1942.6991011464168], [-3866.547977526391, -1986.499101146677], [-3801.6479775262455, -2040.04910114719]], "destination": 2561299768}, {"length": 163.955540977, "source": 4453288654, "path": [[-3928.9979775263273, -1894.1991011480752], [-3931.6979775263494, -1856.249101148677], [-3937.0479775262534, -1738.0491011458332], [-3941.0479775263684, -1694.8491011454792], [-3974.5979775263063, -1624.249101148223], [-4081.8979775263388, -1478.6991011455086], [-4276.347977526296, -1205.149101146219]], "destination": 4453288647}, {"length": 199.578919285, "source": 4453288654, "path": [[-3928.9979775263273, -1894.1991011480752], [-3916.647977526333, -1869.449101146614], [-3904.5979775262917, -1860.5991011462208], [-3892.7979775262856, -1836.8491011457877], [-3890.0979775262635, -1794.4991011482614], [-3898.1479775264115, -1729.2491011460243], [-3958.247977526419, -1617.9991011462391], [-4002.7479775262, -1528.0991011472622], [-4010.797977526348, -1414.249101145515], [-3998.747977526307, -1367.4991011463078], [-3953.147977526328, -1283.6991011475618], [-3935.6979775262425, -1249.2991011470167], [-3886.0979775263704, -1203.3991011470846], [-3828.147977526397, -1165.3491011465178], [-3777.447977526327, -1139.8491011469503], [-3667.247977526378, -1159.8991011467774]], "destination": 146728999}, {"length": 3.77957497316, "source": 1365433464, "path": [[1323.502022473777, -1529.9491011475652], [1349.3020224737418, -1529.0991011482902]], "destination": 1365433463}, {"length": 16.630238272, "source": 1365433464, "path": [[1323.502022473777, -1529.9491011475652], [1214.1020224736287, -1509.6491011483693]], "destination": 1365433460}, {"length": 8.32946839581, "source": 1365433464, "path": [[1323.502022473777, -1529.9491011475652], [1324.352022473718, -1492.4991011469046]], "destination": 1365436879}, {"length": 45.9301553073, "source": 4069612243, "path": [[-3002.74797752631, -657.2491011453963], [-3123.4479775263944, -718.1491011465369], [-3175.097977526242, -756.9491011487628], [-3228.2479775262996, -799.2491011457048]], "destination": 4069612257}, {"length": 23.193048176, "source": 4069612243, "path": [[-3002.74797752631, -657.2491011453963], [-2972.597977526359, -643.5991011457531], [-2911.547977526352, -623.4991011453417], [-2861.947977526258, -610.0491011480358]], "destination": 4069612236}, {"length": 26.1360537742, "source": 4069612243, "path": [[-3002.74797752631, -657.2491011453963], [-3132.2479775262036, -576.2991011479812]], "destination": 185876212}, {"length": 11.9150586076, "source": 25624259, "path": [[-237.04797752621687, -3404.7991011476597], [-318.4479775262261, -3402.999101147941]], "destination": 25624258}, {"length": 53.1001664712, "source": 25624259, "path": [[-237.04797752621687, -3404.7991011476597], [-101.19797752627946, -3471.599101146694], [-71.74797752629303, -3486.0491011485806], [53.50202247367264, -3547.8991011466123]], "destination": 25625053}, {"length": 9.32157660038, "source": 133128921, "path": [[3147.552022473743, 1474.9008988523826], [3191.652022473734, 1444.6508988541495]], "destination": 133128875}, {"length": 54.0717230368, "source": 133128921, "path": [[3147.552022473743, 1474.9008988523826], [3347.1520224737096, 1596.8008988522797], [3417.902022473607, 1640.6508988531243]], "destination": 3732221780}, {"length": 54.5560814547, "source": 133128921, "path": [[3147.552022473743, 1474.9008988523826], [2884.6520224736773, 1648.850898853027]], "destination": 133128773}, {"length": 27.2763886641, "source": 506888922, "path": [[-4264.897977526383, -2011.8491011480444], [-4410.197977526398, -2088.6991011472846]], "destination": 2561299773}, {"length": 8.32946839581, "source": 1365436879, "path": [[1324.352022473718, -1492.4991011469046], [1323.502022473777, -1529.9491011475652]], "destination": 1365433464}, {"length": 5.86067725612, "source": 1365436879, "path": [[1324.352022473718, -1492.4991011469046], [1325.0020224737646, -1466.149101148062]], "destination": 1365436874}, {"length": 14.4981045361, "source": 1365436879, "path": [[1324.352022473718, -1492.4991011469046], [1227.9520224736107, -1477.3991011480803]], "destination": 1365433459}, {"length": 58.0841250349, "source": 506888925, "path": [[-4277.497977526412, -2338.1491011456037], [-4523.147977526287, -2239.6991011461864], [-4603.797977526414, -2191.0991011466763]], "destination": 506888740}, {"length": 28.4940756352, "source": 666946271, "path": [[5163.352022473644, 1301.35089885286], [5105.052022473799, 1179.1008988524254]], "destination": 666947232}, {"length": 11.6182507728, "source": 666946271, "path": [[5163.352022473644, 1301.35089885286], [5239.152022473714, 1285.8008988523295]], "destination": 666891842}, {"length": 13.8720684233, "source": 930837217, "path": [[-2835.4479775263285, -1289.7491011472084], [-2762.447977526339, -1259.3991011478067], [-2757.447977526306, -1254.89910114851]], "destination": 5044108724}, {"length": 38.0499595376, "source": 930837217, "path": [[-2835.4479775263285, -1289.7491011472084], [-2844.147977526301, -1293.3491011466458], [-2899.4479775263926, -1307.4991011485793], [-2960.6979775262944, -1310.2491011487416], [-3026.747977526334, -1302.9991011457298], [-3083.7479775263077, -1286.7991011482616]], "destination": 146729069}, {"length": 91.0737682545, "source": 930837217, "path": [[-2835.4479775263285, -1289.7491011472084], [-3085.747977526365, -1102.1991011475052], [-3181.647977526403, -1038.3491011474177], [-3195.7479775261977, -1018.5491011469594], [-3196.947977526232, -1001.1991011467103], [-3189.8979775262237, -986.4991011454549], [-3177.2479775262764, -973.3991011486864]], "destination": 930837679}, {"length": 94.8571730253, "source": 277578909, "path": [[-6150.797977526378, 3871.6008988544104], [-5710.197977526254, 3558.750898854157]], "destination": 1229142922}, {"length": 114.567204549, "source": 277578909, "path": [[-6150.797977526378, 3871.6008988544104], [-6452.847977526321, 4093.45089885349], [-6680.197977526392, 4251.050898851361]], "destination": 29588071}, {"length": 16.5684147248, "source": 4069612260, "path": [[-2526.6479775263306, -844.5491011457307], [-2583.647977526304, -848.0491011475522], [-2633.0479775262816, -865.3991011478013]], "destination": 931139104}, {"length": 15.8836727237, "source": 4069612260, "path": [[-2526.6479775263306, -844.5491011457307], [-2487.0979775262203, -864.3991011467733], [-2459.4479775263967, -898.5491011479496]], "destination": 146724450}, {"length": 91.7945457031, "source": 4069612260, "path": [[-2526.6479775263306, -844.5491011457307], [-2505.197977526352, -793.3491011478111], [-2501.147977526319, -743.4991011479042], [-2513.8979775263247, -693.6491011479973], [-2558.147977526293, -656.1491011467524], [-2603.0979775262253, -640.2991011462689], [-2700.347977526274, -614.0491011485949], [-2756.6479775262833, -604.7491011464956], [-2814.3479775262213, -600.7991011465208], [-2861.947977526258, -610.0491011480358]], "destination": 4069612236}, {"length": 315.03423489, "source": 830630294, "path": [[5910.252022473639, -4446.14910114538], [5829.552022473594, -4404.39910114776], [4217.502022473729, -3570.499101147817]], "destination": 370349352}, {"length": 6.45141969376, "source": 830630294, "path": [[5910.252022473639, -4446.14910114538], [5876.602022473643, -4464.899101147779]], "destination": 830630348}, {"length": 9.99215153646, "source": 4069612264, "path": [[-4484.497977526258, -888.4491011471596], [-4546.347977526289, -907.4991011459588]], "destination": 34818473}, {"length": 107.230308598, "source": 4069612264, "path": [[-4484.497977526258, -888.4491011471596], [-3895.1979775263544, -707.0991011453032], [-3820.2979775263657, -684.6491011458511]], "destination": 3066566733}, {"length": 76.7555186573, "source": 4069612264, "path": [[-4484.497977526258, -888.4491011471596], [-4316.2979775264175, -1140.649101145641], [-4298.8979775262505, -1164.3991011460741], [-4276.347977526296, -1205.149101146219]], "destination": 4453288647}, {"length": 55.2726445608, "source": 25625325, "path": [[1797.352022473664, -3346.5991011460974], [2174.0520224737825, -3365.649101148449]], "destination": 925427454}, {"length": 96.4307071217, "source": 158834602, "path": [[616.9520224736935, 2365.000898851832], [1181.652022473667, 2509.4008988517658], [1231.202022473621, 2522.0508988539336]], "destination": 94267360}, {"length": 85.2884287548, "source": 158834602, "path": [[616.9520224736935, 2365.000898851832], [656.3020224736871, 2335.750898854627], [955.3020224737363, 2113.500898854426], [1003.3020224737843, 2077.850898853484]], "destination": 158834623}, {"length": 21.5499248595, "source": 25625329, "path": [[2222.202022473585, -3441.249101147292], [2145.3020224737606, -3523.89910114681]], "destination": 25625331}, {"length": 57.8023576667, "source": 25625329, "path": [[2222.202022473585, -3441.249101147292], [2545.6520224735877, -3459.5491011479853], [2615.852022473719, -3463.549101148544]], "destination": 25625757}, {"length": 21.5499248595, "source": 25625331, "path": [[2145.3020224737606, -3523.89910114681], [2222.202022473585, -3441.249101147292]], "destination": 25625329}, {"length": 107.230904831, "source": 25625331, "path": [[2145.3020224737606, -3523.89910114681], [1630.4520224736941, -3867.099101146465]], "destination": 25625252}, {"length": 95.9374707969, "source": 25625331, "path": [[2145.3020224737606, -3523.89910114681], [2077.052022473769, -3520.64910114791], [1491.2520224736882, -3492.599101146965]], "destination": 25625286}, {"length": 15.855922492, "source": 4069612278, "path": [[-4332.647977526305, -1221.4491011484085], [-4291.0979775263595, -1287.2991011469992]], "destination": 34818512}, {"length": 63.1686923472, "source": 4069612278, "path": [[-4332.647977526305, -1221.4491011484085], [-4357.447977526352, -1182.1991011480293], [-4492.547977526407, -983.1491011453863], [-4507.1479775262715, -961.6491011463779]], "destination": 34818277}, {"length": 8.99985893225, "source": 4069612278, "path": [[-4332.647977526305, -1221.4491011484085], [-4276.347977526296, -1205.149101146219]], "destination": 4453288647}, {"length": 174.755798262, "source": 929535785, "path": [[-776.3979775263774, -3273.999101146785], [-1780.5479775263589, -3007.249101148801], [-1883.6979775262996, -2979.24910114844]], "destination": 929534719}, {"length": 175.566836053, "source": 25624231, "path": [[-1986.8479775262404, -2859.9491011469527], [-1894.197977526213, -2884.599101147245], [-1648.1479775263263, -2950.099101145298], [-874.3979775263089, -3156.049101146863]], "destination": 270731274}, {"length": 9.98854295868, "source": 25624231, "path": [[-1986.8479775262404, -2859.9491011469527], [-2026.0979775263977, -2896.699101146538]], "destination": 929536542}, {"length": 65.2224575176, "source": 25624231, "path": [[-1986.8479775262404, -2859.9491011469527], [-1925.2979775263857, -2819.149101146223], [-1677.147977526383, -2648.9991011473535]], "destination": 652950871}, {"length": 16.9320743131, "source": 2386533113, "path": [[-1854.697977526243, 322.1508988531241], [-1771.3979775262346, 375.00089885256216]], "destination": 2484772392}, {"length": 11.7409454965, "source": 2386533113, "path": [[-1854.697977526243, 322.1508988531241], [-1796.1479775263633, 286.0508988540289]], "destination": 470177}, {"length": 30.7629777469, "source": 2386533113, "path": [[-1854.697977526243, 322.1508988531241], [-1920.3979775264113, 287.30089885442567], [-1857.397977526265, 242.1008988520157], [-1880.297977526313, 226.8008988544068]], "destination": 4547131002}, {"length": 260.416605326, "source": 2386533113, "path": [[-1854.697977526243, 322.1508988531241], [-1941.4479775263783, 375.6008988524684], [-2042.4479775262848, 449.05089885460825], [-2131.247977526396, 537.5508988514355], [-2204.89797752621, 622.0508988512563], [-2308.7479775263373, 788.800898853026], [-2492.397977526206, 1263.3508988528774], [-2556.7479775263637, 1376.0508988518438]], "destination": 661233}, {"length": 138.884339908, "source": 159886074, "path": [[1492.852022473734, 3204.4008988521], [2356.40202247378, 2945.300898854697]], "destination": 94267505}, {"length": 110.087099421, "source": 159886074, "path": [[1492.852022473734, 3204.4008988521], [1056.3520224737833, 2863.2008988545012], [1008.5520224736299, 2825.6008988520875]], "destination": 159885961}, {"length": 52.3635823209, "source": 25625339, "path": [[2269.3520224736917, -4163.199101146375], [2523.502022473645, -3997.3991011486023]], "destination": 25624010}, {"length": 30.7933503635, "source": 25625339, "path": [[2269.3520224736917, -4163.199101146375], [2289.2020224736243, -4169.6491011471435], [2419.902022473774, -4212.099101145839], [2458.1020224736517, -4224.499101148638]], "destination": 4050195020}, {"length": 193.234270827, "source": 36489069, "path": [[6601.052022473741, 60.55089885137477], [6593.70202247378, 34.150898851947886], [6368.352022473767, -772.9991011480308], [6362.4520224736525, -794.0491011453332]], "destination": 25203147}, {"length": 41.8099781719, "source": 36489069, "path": [[6601.052022473741, 60.55089885137477], [6316.502022473802, 77.75089885342368]], "destination": 36489068}, {"length": 7.58236405253, "source": 2386533118, "path": [[-2022.947977526224, 302.7508988537875], [-1988.29797752631, 277.40089885242014]], "destination": 4155927601}, {"length": 29.1989302921, "source": 929534719, "path": [[-1883.6979775262996, -2979.24910114844], [-1983.4479775262537, -2953.499101145951], [-2069.0979775264127, -2930.6491011453772]], "destination": 25624232}, {"length": 34.5764312505, "source": 2386533122, "path": [[-2160.797977526219, 311.70089885179664], [-2130.0979775262795, 294.45089885271614], [-2050.497977526211, 241.50089885210946], [-1988.29797752631, 277.40089885242014]], "destination": 4155927601}, {"length": 111.400393577, "source": 276922155, "path": [[-5094.647977526234, 579.6508988531457], [-5052.497977526382, 546.600898854166], [-4928.447977526229, 449.40089885159296], [-4876.647977526405, 414.1008988511885], [-4846.4479775263135, 393.55089885262373], [-4803.247977526404, 418.0008988541317], [-4554.597977526331, 558.6008988522906]], "destination": 185858641}, {"length": 49.0417767522, "source": 276922155, "path": [[-5094.647977526234, 579.6508988531457], [-5184.14797752631, 636.0008988544052], [-5327.547977526326, 738.100898853844]], "destination": 185858401}, {"length": 20.555652144, "source": 1524853508, "path": [[-4254.097977526294, -2461.849101148772], [-4250.247977526378, -2487.149101146002], [-4198.797977526203, -2521.3491011477627], [-4200.597977526366, -2540.1991011477776]], "destination": 1524853513}, {"length": 78.4202448887, "source": 1524853508, "path": [[-4254.097977526294, -2461.849101148772], [-4257.447977526363, -2438.749101148829], [-4230.897977526293, -2414.999101148396], [-4211.847977526384, -2392.64910114656], [-4148.597977526203, -2305.349101145993], [-4058.047977526291, -2218.699101145916], [-4023.047977526284, -2149.9991011459942]], "destination": 2561299782}, {"length": 24.7657776164, "source": 1524853508, "path": [[-4254.097977526294, -2461.849101148772], [-4087.6979775263944, -2441.399101147823]], "destination": 34816182}, {"length": 26.3999033192, "source": 2557088517, "path": [[-2454.2479775262473, 2361.450898852979], [-2298.797977526412, 2301.2008988523294]], "destination": 2557088547}, {"length": 29.9022499483, "source": 2557088517, "path": [[-2454.2479775262473, 2361.450898852979], [-2342.447977526252, 2474.0008988537456]], "destination": 311075068}, {"length": 10.2054485576, "source": 141564678, "path": [[-5494.597977526272, 3599.1008988531803], [-5440.79797752639, 3628.300898853354]], "destination": 675140747}, {"length": 14.6830037467, "source": 141564678, "path": [[-5494.597977526272, 3599.1008988531803], [-5532.447977526278, 3625.350898854407], [-5563.647977526287, 3647.0008988516156]], "destination": 1096679700}, {"length": 184.367979835, "source": 241885960, "path": [[-347.29797752630634, -2209.349101146785], [-125.14797752638529, -2297.8491011471647], [437.8520224737059, -2470.6991011456125], [701.3520224736781, -2551.5491011454114], [720.6020224737042, -2557.449101146858], [781.5020224737345, -2576.1491011486723]], "destination": 1445537096}, {"length": 4.44273479032, "source": 1524853513, "path": [[-4200.597977526366, -2540.1991011477776], [-4230.497977526282, -2543.6991011460464]], "destination": 1524853515}, {"length": 20.555652144, "source": 1524853513, "path": [[-4200.597977526366, -2540.1991011477776], [-4198.797977526203, -2521.3491011477627], [-4250.247977526378, -2487.149101146002], [-4254.097977526294, -2461.849101148772]], "destination": 1524853508}, {"length": 37.6577245751, "source": 1524853513, "path": [[-4200.597977526366, -2540.1991011477776], [-4201.897977526237, -2560.599101148142], [-4153.197977526224, -2630.2991011455388], [-4096.947977526355, -2651.29910114581], [-4064.447977526253, -2671.8491011479273]], "destination": 1987166918}, {"length": 55.4965610371, "source": 133128970, "path": [[2418.502022473623, 1972.1008988540234], [2682.0520224737356, 1792.6508988530543]], "destination": 133128776}, {"length": 9.90108743212, "source": 133128970, "path": [[2418.502022473623, 1972.1008988540234], [2467.502022473589, 2002.8008988539625]], "destination": 3734288121}, {"length": 44.8294318225, "source": 133128970, "path": [[2418.502022473623, 1972.1008988540234], [2207.502022473662, 2118.2508988530913]], "destination": 133128779}, {"length": 102.921930677, "source": 295330571, "path": [[-6243.397977526266, -1268.2491011482], [-5651.297977526282, -1461.99910114575], [-5613.547977526334, -1474.3491011479648]], "destination": 34818275}, {"length": 100.549313105, "source": 295330571, "path": [[-6243.397977526266, -1268.2491011482], [-6188.297977526291, -1337.399101146275], [-5791.497977526205, -1605.2991011470397]], "destination": 295330628}, {"length": 87.2240961895, "source": 295330571, "path": [[-6243.397977526266, -1268.2491011482], [-6716.447977526352, -1105.4491011464052], [-6771.647977526385, -1086.4491011481903]], "destination": 34817814}, {"length": 7.77369903245, "source": 2689489679, "path": [[942.6520224737889, -2625.599101147458], [922.9020224736928, -2658.049101146531]], "destination": 1905705880}, {"length": 200.765678585, "source": 2689489679, "path": [[942.6520224737889, -2625.599101147458], [1033.65202247363, -2653.5491011472345], [2243.9520224737385, -2910.699101146719]], "destination": 270186307}, {"length": 14.0059795923, "source": 2689489680, "path": [[3376.2020224736843, -3017.1991011478385], [3395.2020224736757, -3019.6491011480475], [3471.102022473582, -3025.249101145988]], "destination": 5056992118}, {"length": 9.24634069219, "source": 1183501073, "path": [[3767.8520224737613, -1768.5991011475721], [3748.602022473735, -1808.1991011484888]], "destination": 666952683}, {"length": 11.4348929908, "source": 1183501073, "path": [[3767.8520224737613, -1768.5991011475721], [3693.0020224736904, -1753.7991011487009]], "destination": 1183500885}, {"length": 77.6009602648, "source": 930776805, "path": [[-4139.397977526382, -2593.8491011459064], [-4121.697977526262, -2613.2491011487955], [-4111.697977526418, -2621.5991011468986], [-3641.897977526343, -2557.2491011480734]], "destination": 272270443}, {"length": 35.4330523625, "source": 371608340, "path": [[719.0020224736581, 2875.550898853163], [889.5520224736497, 2988.6508988532514]], "destination": 371608226}, {"length": 34.1431787045, "source": 2689489685, "path": [[3203.7520224736936, -3158.6991011458567], [3255.8020224737747, -3123.8991011477424], [3339.352022473596, -3062.099101146742], [3355.252022473776, -3042.74910114799]], "destination": 2689489681}, {"length": 17.0437026153, "source": 2689489685, "path": [[3203.7520224736936, -3158.6991011458567], [3165.2520224736413, -3133.949101147948], [3150.95202247373, -3124.7491011470174], [3109.2520224735854, -3118.799101148539]], "destination": 25625572}, {"length": 54.4818360218, "source": 151352087, "path": [[-545.347977526367, 4166.7008988532925], [-558.3979775263259, 4182.050898851486], [-726.697977526225, 4380.650898852423]], "destination": 151352533}, {"length": 126.009232684, "source": 151352087, "path": [[-545.347977526367, 4166.7008988532925], [-1279.497977526356, 3938.450898854029], [-1323.8979775263006, 3924.650898852633]], "destination": 94270046}, {"length": 369.346167022, "source": 185885465, "path": [[3203.5020224736586, -2387.099101145651], [3432.65202247367, -2405.0991011463907], [3752.902022473581, -2417.349101147437], [5269.502022473782, -2432.5491011474296], [5513.602022473751, -2420.199101148768], [5723.852022473608, -2405.84910114805]], "destination": 185885472}, {"length": 129.642875911, "source": 185885465, "path": [[3203.5020224736586, -2387.099101145651], [2772.1520224737174, -2329.899101148669], [2584.602022473792, -2291.3991011463963], [2412.9520224736025, -2199.599101146532], [2391.7520224736586, -2187.1491011467015]], "destination": 1503278714}, {"length": 301.374561319, "source": 185885465, "path": [[3203.5020224736586, -2387.099101145651], [3152.102022473624, -2397.2991011476097], [3114.3520224736767, -2404.2491011471157], [3066.052022473675, -2402.2491011486127], [2812.552022473769, -2393.349101147635], [2438.252022473719, -2326.7991011479694], [2403.552022473665, -2304.9491011484233], [2385.4520224737553, -2282.149101148434], [2313.2520224737887, -2259.549101147229], [2156.4020224738024, -2219.499101148159], [1830.9020224736016, -2140.899101146232], [1557.7520224736575, -2069.299101147948], [1404.1020224737633, -2019.4491011480409], [1286.5520224736304, -1983.499101147146]], "destination": 4955856133}, {"length": 24.7557006931, "source": 3702865861, "path": [[2794.80202247373, 97.45089885271341], [2791.4020224737433, 108.30089885160987], [2760.5020224736877, 206.45089885462653]], "destination": 470184}, {"length": 110.056271691, "source": 133128988, "path": [[1265.0020224735936, 1328.4508988533617], [1321.1520224736262, 1362.7508988527381], [1386.5520224736194, 1389.5008988527024], [1452.5520224737409, 1404.500898853911], [1520.4520224736395, 1412.5008988514764], [1593.7520224735824, 1415.3508988528074], [1668.1520224737235, 1408.7508988538389], [1747.6520224737335, 1395.9008988528865], [1822.202022473629, 1375.950898854228], [1874.1520224736519, 1359.4008988526696], [1947.0520224735833, 1323.4008988511903]], "destination": 133129017}, {"length": 44.382289112, "source": 133128988, "path": [[1265.0020224735936, 1328.4508988533617], [1475.4020224736487, 1184.7008988539187]], "destination": 24909781}, {"length": 107.43801116, "source": 185885472, "path": [[5723.852022473608, -2405.84910114805], [6247.152022473612, -2418.1491011461276], [6456.702022473726, -2432.7491011462143]], "destination": 185885473}, {"length": 369.346167022, "source": 185885472, "path": [[5723.852022473608, -2405.84910114805], [5513.602022473751, -2420.199101148768], [5269.502022473782, -2432.5491011474296], [3752.902022473581, -2417.349101147437], [3432.65202247367, -2405.0991011463907], [3203.5020224736586, -2387.099101145651]], "destination": 185885465}, {"length": 9.88149708694, "source": 185885472, "path": [[5723.852022473608, -2405.84910114805], [5726.4520224737935, -2361.449101147883]], "destination": 721620637}, {"length": 204.331102881, "source": 185885472, "path": [[5723.852022473608, -2405.84910114805], [4749.152022473613, -2376.0991011485544], [4607.002022473772, -2361.9491011466207], [4491.652022473591, -2328.449101145935], [4364.0520224736965, -2275.2991011465438]], "destination": 721620621}, {"length": 107.43801116, "source": 185885473, "path": [[6456.702022473726, -2432.7491011462143], [6247.152022473612, -2418.1491011461276], [5723.852022473608, -2405.84910114805]], "destination": 185885472}, {"length": 152.680762732, "source": 2557088547, "path": [[-2298.797977526412, 2301.2008988523294], [-2868.4479775262785, 1726.0008988522202]], "destination": 21346796}, {"length": 26.3999033192, "source": 2557088547, "path": [[-2298.797977526412, 2301.2008988523294], [-2454.2479775262473, 2361.450898852979]], "destination": 2557088517}, {"length": 196.282912691, "source": 205095721, "path": [[6750.8520224737185, 51.5508988527813], [6743.402022473699, 24.70089885164839], [6731.252022473599, -18.89910114627469], [6527.452022473623, -750.4991011479945], [6516.052022473628, -791.4491011469238], [6509.05202247376, -816.5991011459539]], "destination": 205095932}, {"length": 22.0107221471, "source": 205095721, "path": [[6750.8520224737185, 51.5508988527813], [6627.352022473776, 58.950898853993294], [6601.052022473741, 60.55089885137477]], "destination": 36489069}, {"length": 54.5217087535, "source": 3734288089, "path": [[3308.852022473774, 2192.800898853875], [3053.202022473611, 2371.1508988526475]], "destination": 3734288088}, {"length": 8.10795278145, "source": 3734288089, "path": [[3308.852022473774, 2192.800898853875], [3348.602022473779, 2218.200898852274]], "destination": 133128755}, {"length": 51.9864900426, "source": 3734288089, "path": [[3308.852022473774, 2192.800898853875], [3053.902022473798, 2030.0008988520801]], "destination": 133128748}, {"length": 64.4661915792, "source": 25203501, "path": [[5406.552022473754, -2118.7491011467328], [5846.852022473703, -2129.999101146751]], "destination": 25203506}, {"length": 66.6925284745, "source": 25203501, "path": [[5406.552022473754, -2118.7491011467328], [5407.552022473672, -2093.1491011459966], [5416.852022473772, -1849.7491011473244], [5418.052022473585, -1818.9491011462167]], "destination": 25203763}, {"length": 17.8947623467, "source": 25203501, "path": [[5406.552022473754, -2118.7491011467328], [5404.152022473685, -2199.19910114541]], "destination": 25203159}, {"length": 10.4876800752, "source": 2705349422, "path": [[6048.402022473587, 3811.750898851329], [6092.352022473601, 3774.500898853006]], "destination": 3732186339}, {"length": 13.6092516406, "source": 2705349422, "path": [[6048.402022473587, 3811.750898851329], [5985.052022473791, 3856.5508988526176]], "destination": 3732186340}, {"length": 51.9414818505, "source": 2705349422, "path": [[6048.402022473587, 3811.750898851329], [5787.352022473602, 3653.500898852968]], "destination": 174042261}, {"length": 8.89459380306, "source": 2705349422, "path": [[6048.402022473587, 3811.750898851329], [6093.102022473707, 3838.850898851831]], "destination": 116147966}, {"length": 190.968135817, "source": 1179696264, "path": [[3934.8020224736492, -144.59910114794639], [3942.802022473657, -133.599101147297], [3963.7520224737877, -104.8491011488295], [3968.9520224737153, -97.69910114698632], [4164.4020224735905, 183.95089885459015], [4175.552022473772, 206.90089885277985], [4451.152022473703, 611.0508988541596], [4469.852022473741, 638.4508988546145]], "destination": 34845786}, {"length": 24.8586445499, "source": 1179696264, "path": [[3934.8020224736492, -144.59910114794639], [3872.352022473713, -124.19910114758181], [3827.85202247371, -183.2491011484194]], "destination": 1179696267}, {"length": 85.7702618767, "source": 25203506, "path": [[5846.852022473703, -2129.999101146751], [6432.8520224736785, -2141.199101146185]], "destination": 25203509}, {"length": 12.3218730352, "source": 1181634293, "path": [[3029.7520224737973, -891.1491011467376], [3110.6520224737365, -906.5491011455151]], "destination": 368274}, {"length": 86.3682326127, "source": 1181634293, "path": [[3029.7520224737973, -891.1491011467376], [3022.3520224736953, -863.6491011486669], [2919.1520224736146, -535.6991011460366], [2911.302022473583, -510.6991011487594]], "destination": 204840842}, {"length": 15.9038809886, "source": 160015156, "path": [[271.30202247360734, 863.6508988537628], [349.60202247358296, 814.0508988532247]], "destination": 133129448}, {"length": 54.0896361414, "source": 160015156, "path": [[271.30202247360734, 863.6508988537628], [58.452022473787224, 1008.0508988536963], [13.952022473784353, 1038.250898851345]], "destination": 204834024}, {"length": 80.136077353, "source": 160015156, "path": [[271.30202247360734, 863.6508988537628], [661.5020224736146, 1116.5008988527347]], "destination": 133129542}, {"length": 102.458952365, "source": 160015156, "path": [[271.30202247360734, 863.6508988537628], [-228.2479775264079, 540.8008988538882]], "destination": 4455425695}, {"length": 33.1679455771, "source": 174002654, "path": [[1753.0520224737777, 3970.700898854318], [1696.052022473582, 3826.350898851416]], "destination": 174002383}, {"length": 25.3194772937, "source": 1928784695, "path": [[1893.102022473725, 4310.700898852105], [1761.5520224736335, 4384.650898852982]], "destination": 157530497}, {"length": 14.1960953273, "source": 1928784695, "path": [[1893.102022473725, 4310.700898852105], [1945.952022473607, 4273.800898854319], [1959.6520224736125, 4264.250898852851]], "destination": 159894355}, {"length": 127.84493276, "source": 94257976, "path": [[-3098.2979775262543, 4052.0008988522704], [-2258.8479775262904, 3892.8008988534657]], "destination": 94258075}, {"length": 48.1439657263, "source": 94257976, "path": [[-3098.2979775262543, 4052.0008988522704], [-2939.0979775263395, 3862.55089885168]], "destination": 158845254}, {"length": 121.468317916, "source": 94257976, "path": [[-3098.2979775262543, 4052.0008988522704], [-2381.097977526281, 4326.95089885371]], "destination": 94269863}, {"length": 16.007814262, "source": 133129017, "path": [[1947.0520224735833, 1323.4008988511903], [2025.6020224735937, 1373.5008988540187]], "destination": 133129080}, {"length": 110.056271691, "source": 133129017, "path": [[1947.0520224735833, 1323.4008988511903], [1874.1520224736519, 1359.4008988526696], [1822.202022473629, 1375.950898854228], [1747.6520224737335, 1395.9008988528865], [1668.1520224737235, 1408.7508988538389], [1593.7520224735824, 1415.3508988528074], [1520.4520224736395, 1412.5008988514764], [1452.5520224737409, 1404.500898853911], [1386.5520224736194, 1389.5008988527024], [1321.1520224736262, 1362.7508988527381], [1265.0020224735936, 1328.4508988533617]], "destination": 133128988}, {"length": 70.8921640122, "source": 133129017, "path": [[1947.0520224735833, 1323.4008988511903], [1708.9020224736462, 1171.6008988535975], [1601.102022473766, 1181.600898853219], [1574.0020224737084, 1158.7508988526452]], "destination": 2705349773}, {"length": 167.415275249, "source": 929440570, "path": [[-3029.197977526321, -3469.449101146438], [-3089.747977526258, -3431.349101145287], [-3505.2479775263823, -2865.5491011484455], [-3463.347977526343, -2801.949101147727]], "destination": 270731910}, {"length": 7.88592925523, "source": 929440570, "path": [[-3029.197977526321, -3469.449101146438], [-2975.347977526299, -3467.899101146088]], "destination": 25624150}, {"length": 14.0703150201, "source": 21346783, "path": [[443.4520224736449, 1718.0508988516863], [374.65202247366494, 1673.850898853857]], "destination": 470175}, {"length": 12.2738700761, "source": 21346783, "path": [[443.4520224736449, 1718.0508988516863], [502.95202247374607, 1756.950898851528]], "destination": 4791973991}, {"length": 70.2516610546, "source": 25203509, "path": [[6432.8520224736785, -2141.199101146185], [6434.452022473724, -2110.849101146783], [6447.65202247366, -1860.3991011474363], [6449.502022473741, -1825.4991011481536]], "destination": 25203769}, {"length": 13.9513100585, "source": 21346784, "path": [[567.202022473623, 1798.9508988520697], [639.1020224736366, 1757.7508988537716]], "destination": 160019289}, {"length": 88.9896943259, "source": 21346784, "path": [[567.202022473623, 1798.9508988520697], [617.6020224737399, 1831.2008988523587], [642.9520224737751, 1847.4008988533797], [661.0520224736849, 1858.950898853351], [1003.3020224737843, 2077.850898853484]], "destination": 158834623}, {"length": 13.2529319135, "source": 21346784, "path": [[567.202022473623, 1798.9508988520697], [502.95202247374607, 1756.950898851528]], "destination": 4791973991}, {"length": 25.490448787, "source": 675140747, "path": [[-5440.79797752639, 3628.300898853354], [-5339.247977526274, 3684.900898853982], [-5307.897977526288, 3702.4008988524315]], "destination": 141567054}, {"length": 10.2054485576, "source": 675140747, "path": [[-5440.79797752639, 3628.300898853354], [-5494.597977526272, 3599.1008988531803]], "destination": 141564678}, {"length": 269.225969353, "source": 675140747, "path": [[-5440.79797752639, 3628.300898853354], [-5320.997977526387, 3541.000898852786], [-5175.847977526349, 3409.950898852543], [-4696.397977526301, 3076.000898854403], [-4260.247977526222, 2759.950898852281], [-4243.797977526276, 2748.0508988517727], [-4229.447977526224, 2721.250898851224]], "destination": 675140823}, {"length": 39.0631825466, "source": 295330628, "path": [[-5791.497977526205, -1605.2991011470397], [-5660.097977526313, -1508.599101146757], [-5613.547977526334, -1474.3491011479648]], "destination": 34818275}, {"length": 24.8825024939, "source": 2440229701, "path": [[-5977.74797752626, 4182.500898853192], [-6097.69797752624, 4261.800898852642]], "destination": 3906584172}, {"length": 23.515642585, "source": 2440229701, "path": [[-5977.74797752626, 4182.500898853192], [-5864.397977526359, 4107.550898851287]], "destination": 141567053}, {"length": 6.42902858172, "source": 2440229701, "path": [[-5977.74797752626, 4182.500898853192], [-5945.24797752638, 4201.950898853112]], "destination": 3906584173}, {"length": 125.303150953, "source": 666946376, "path": [[5254.302022473789, 1144.5008988530958], [5295.452022473723, 1135.3008988521651], [6065.1020224737895, 963.2008988518237]], "destination": 36487657}, {"length": 11.9324434837, "source": 666946376, "path": [[5254.302022473789, 1144.5008988530958], [5177.402022473742, 1162.3508988520825]], "destination": 36487636}, {"length": 54.3469111193, "source": 666946376, "path": [[5254.302022473789, 1144.5008988530958], [5156.4520224736125, 945.0508988528838], [5120.552022473746, 919.500898852732]], "destination": 1179777383}, {"length": 17.9709036649, "source": 3732250541, "path": [[3216.602022473758, 3096.6508988541364], [3129.10202247374, 3039.9508988523394]], "destination": 3734288110}, {"length": 125.08614138, "source": 25625286, "path": [[1491.2520224736882, -3492.599101146965], [638.402022473672, -3452.549101147895]], "destination": 25625284}, {"length": 66.3089190748, "source": 159894354, "path": [[1382.8520224736797, 3878.500898853332], [1326.5020224737523, 3887.600898853094], [1005.4520224735963, 3939.3508988538883], [942.7520224736252, 3949.4508988546786]], "destination": 94266276}, {"length": 54.6067747057, "source": 5056877395, "path": [[-6077.597977526272, 2323.75089885295], [-5828.697977526387, 2140.800898853712]], "destination": 4069611774}, {"length": 13.9438789228, "source": 2705349460, "path": [[5574.252022473747, 3727.950898852583], [5656.902022473709, 3696.7508988539066]], "destination": 3732186329}, {"length": 11.9690201315, "source": 2705349460, "path": [[5574.252022473747, 3727.950898852583], [5501.352022473593, 3752.350898853507]], "destination": 3732186332}, {"length": 22.4575980143, "source": 2705349460, "path": [[5574.252022473747, 3727.950898852583], [5586.7020224738, 3627.300898852326]], "destination": 116147982}, {"length": 44.3690875623, "source": 2705349460, "path": [[5574.252022473747, 3727.950898852583], [5549.602022473677, 3926.800898852889]], "destination": 116147990}, {"length": 109.53817017, "source": 1893476494, "path": [[832.9520224736875, -2677.0991011453307], [600.4520224736076, -3145.2991011455824]], "destination": 25625026}, {"length": 95.3247450189, "source": 1893476494, "path": [[832.9520224736875, -2677.0991011453307], [305.95202247374334, -2508.099101145689], [292.3020224736561, -2466.0991011487]], "destination": 4616542}, {"length": 11.9746663399, "source": 1219826518, "path": [[5703.8520224736985, 3652.6508988536934], [5656.902022473709, 3696.7508988539066]], "destination": 3732186329}, {"length": 18.3694023502, "source": 1219826518, "path": [[5703.8520224736985, 3652.6508988536934], [5723.802022473689, 3635.000898853491], [5764.352022473718, 3606.0508988526863], [5791.902022473705, 3595.000898851453]], "destination": 174043290}, {"length": 12.2205171694, "source": 1219826518, "path": [[5703.8520224736985, 3652.6508988536934], [5787.352022473602, 3653.500898852968]], "destination": 174042261}, {"length": 51.2511772215, "source": 160019289, "path": [[639.1020224736366, 1757.7508988537716], [832.6020224735942, 1617.8508988531348], [876.0520224737611, 1588.050898853055]], "destination": 21378258}, {"length": 61.4783216186, "source": 160019289, "path": [[639.1020224736366, 1757.7508988537716], [736.552022473802, 1751.250898852419], [984.8020224736409, 1714.9508988545392], [1051.1520224736337, 1705.5008988542397]], "destination": 160020757}, {"length": 13.060438221, "source": 270920539, "path": [[3332.602022473763, -4432.349101147537], [3250.6520224737656, -4409.04910114881]], "destination": 831929434}, {"length": 7.78702058435, "source": 270920539, "path": [[3332.602022473763, -4432.349101147537], [3329.402022473671, -4467.299101147404]], "destination": 831929183}, {"length": 11.4926781014, "source": 270920539, "path": [[3332.602022473763, -4432.349101147537], [3336.902022473609, -4380.749101148495]], "destination": 831956663}, {"length": 47.1793248153, "source": 975956753, "path": [[-6291.147977526279, 763.5508988528272], [-6438.097977526259, 877.9008988533121], [-6498.697977526335, 925.900898852916]], "destination": 34818618}, {"length": 7.78702058435, "source": 831929183, "path": [[3329.402022473671, -4467.299101147404], [3332.602022473763, -4432.349101147537]], "destination": 270920539}, {"length": 41.8382774493, "source": 174006224, "path": [[2357.102022473745, 3559.550898852848], [2208.8020224737547, 3663.7008988513744], [2158.452022473778, 3694.7508988518507]], "destination": 94267985}, {"length": 67.8862690302, "source": 174006224, "path": [[2357.102022473745, 3559.550898852848], [2683.6020224736412, 3776.4008988538935]], "destination": 94266789}, {"length": 30.335565095, "source": 930837353, "path": [[-2712.5479775262916, -1210.0991011472217], [-2701.897977526402, -1192.9991011463414], [-2652.9479775263544, -1079.549101145716]], "destination": 146729033}, {"length": 11.9886768581, "source": 930837353, "path": [[-2712.5479775262916, -1210.0991011472217], [-2718.8479775264173, -1220.1491011474275], [-2757.447977526306, -1254.89910114851]], "destination": 5044108724}, {"length": 91.0990812983, "source": 930837353, "path": [[-2712.5479775262916, -1210.0991011472217], [-3079.297977526263, -970.8991011478929], [-3105.447977526321, -961.6991011469622], [-3125.9479775263, -960.3991011459811], [-3152.9979775262173, -963.5491011472652], [-3177.2479775262764, -973.3991011486864]], "destination": 930837679}, {"length": 9.61897866104, "source": 1183501163, "path": [[3351.6520224736723, -1473.8491011456745], [3286.8520224735853, -1466.549101145631]], "destination": 34845761}, {"length": 86.5586138209, "source": 1183501163, "path": [[3351.6520224736723, -1473.8491011456745], [3356.9520224736584, -1418.249101146074], [3315.1520224736773, -1288.09910114569], [3253.2020224735893, -1091.799101146762]], "destination": 666940867}, {"length": 9.9795158055, "source": 654070636, "path": [[3388.302022473644, 3206.250898852403], [3434.6020224735876, 3173.3008988545917]], "destination": 3732222536}, {"length": 45.4464153442, "source": 654070636, "path": [[3388.302022473644, 3206.250898852403], [3174.952022473754, 3354.750898854064]], "destination": 3732250530}, {"length": 29.952091207, "source": 654070636, "path": [[3388.302022473644, 3206.250898852403], [3241.202022473688, 3112.600898852236]], "destination": 3732250533}, {"length": 57.0945424474, "source": 141568877, "path": [[-3693.097977526261, 2707.800898853918], [-3926.247977526387, 2613.9508988514135], [-3979.9479775262103, 2592.3508988512367], [-4025.9479775262007, 2573.8508988517597]], "destination": 94268321}, {"length": 50.944947011, "source": 29434737, "path": [[6260.752022473781, 1344.550898853214], [6346.602022473613, 1286.5508988539887], [6503.602022473798, 1180.4008988534065]], "destination": 36488945}, {"length": 43.2088687942, "source": 29434737, "path": [[6260.752022473781, 1344.550898853214], [6058.152022473618, 1485.900898853032]], "destination": 1181550261}, {"length": 47.8673733213, "source": 29434738, "path": [[5661.402022473671, 182.65089885360908], [5615.202022473786, 197.90089885418638], [5369.052022473619, 279.25089885272314]], "destination": 36487670}, {"length": 129.165298661, "source": 29434738, "path": [[5661.402022473671, 182.65089885360908], [5943.052022473694, 733.1008988522569]], "destination": 36487655}, {"length": 101.191205878, "source": 5056992116, "path": [[3828.202022473581, -3059.749101147702], [3839.802022473693, -3048.149101147146], [3883.302022473778, -3027.949101145566], [3915.9520224736343, -3025.64910114711], [4412.102022473663, -3035.799101148484], [4489.85202247365, -3008.5491011462295]], "destination": 1838021324}, {"length": 36.1079274937, "source": 5056992116, "path": [[3828.202022473581, -3059.749101147702], [3584.6020224736817, -3033.649101148228]], "destination": 5056992117}, {"length": 8.24518463322, "source": 5056992117, "path": [[3584.6020224736817, -3033.649101148228], [3582.552022473706, -3070.6991011477667]], "destination": 270185008}, {"length": 36.1079274937, "source": 5056992117, "path": [[3584.6020224736817, -3033.649101148228], [3828.202022473581, -3059.749101147702]], "destination": 5056992116}, {"length": 163.858606735, "source": 5056992118, "path": [[3471.102022473582, -3025.249101145988], [3476.302022473732, -3011.3991011475605], [3530.502022473625, -2377.9491011453047], [3523.8020224737097, -2296.3991011479834], [3522.552022473757, -2290.0491011483837]], "destination": 4956714225}, {"length": 16.7097148224, "source": 5056992118, "path": [[3471.102022473582, -3025.249101145988], [3584.6020224736817, -3033.649101148228]], "destination": 5056992117}, {"length": 5.1212364256, "source": 5056992119, "path": [[-1652.6979775262073, -1150.9991011457998], [-1677.4979775262543, -1167.249101147405]], "destination": 470186}, {"length": 484.229562211, "source": 5056992119, "path": [[-1652.6979775262073, -1150.9991011457998], [-478.2479775262693, -2069.6991011455166], [-320.1479775263305, -2178.3491011468923], [-107.54797752632328, -2273.449101146241], [796.3020224737161, -2553.899101148005]], "destination": 1445537099}, {"length": 16.007814262, "source": 133129080, "path": [[2025.6020224735937, 1373.5008988540187], [1947.0520224735833, 1323.4008988511903]], "destination": 133129017}, {"length": 6.68334653614, "source": 133129080, "path": [[2025.6020224735937, 1373.5008988540187], [2058.352022473731, 1394.4508988537052]], "destination": 133128732}, {"length": 16.0842028621, "source": 133129080, "path": [[2025.6020224735937, 1373.5008988540187], [1944.7520224737946, 1422.5008988546506]], "destination": 133129165}, {"length": 36.8433016286, "source": 1503278429, "path": [[-1147.9479775262646, -456.54910114834024], [-1132.4979775262368, -442.8991011486971], [-997.1979775262873, -530.8991011467867], [-963.4479775262328, -523.2491011462059]], "destination": 653602325}, {"length": 104.814048397, "source": 167918461, "path": [[3341.8520224737235, 2853.35089885308], [2831.50202247362, 2522.65089885384]], "destination": 204830067}, {"length": 6.75310635882, "source": 167918461, "path": [[3341.8520224737235, 2853.35089885308], [3374.05202247365, 2875.100898851457]], "destination": 3734288109}, {"length": 48.8791185543, "source": 167918461, "path": [[3341.8520224737235, 2853.35089885308], [3579.2020224736375, 2698.700898854156]], "destination": 167918462}, {"length": 25.2251500083, "source": 167918462, "path": [[3579.2020224736375, 2698.700898854156], [3459.1520224735996, 2617.300898851482]], "destination": 3732222530}, {"length": 48.8791185543, "source": 167918462, "path": [[3579.2020224736375, 2698.700898854156], [3341.8520224737235, 2853.35089885308]], "destination": 167918461}, {"length": 19.2023192874, "source": 167918462, "path": [[3579.2020224736375, 2698.700898854156], [3672.002022473642, 2759.750898853497]], "destination": 3732221822}, {"length": 28.200778799, "source": 913935232, "path": [[5068.602022473723, 380.50089885288685], [4954.80202247367, 419.450898853313], [4897.602022473801, 439.0008988544025]], "destination": 666949021}, {"length": 9.88332108273, "source": 652952449, "path": [[-3395.9479775262926, -1433.149101146114], [-3378.297977526312, -1476.0491011465149]], "destination": 146724612}, {"length": 25.6934643366, "source": 652952449, "path": [[-3395.9479775262926, -1433.149101146114], [-3424.847977526291, -1402.0991011456374], [-3510.3479775262513, -1346.4491011454527]], "destination": 146724613}, {"length": 82.8976610418, "source": 652952449, "path": [[-3395.9479775262926, -1433.149101146114], [-3377.5979775263477, -1402.0991011456374], [-3361.5479775264134, -1386.7991011480285], [-3337.147977526378, -1373.099101147801], [-3306.497977526357, -1364.549101147361], [-3275.9479775263944, -1362.4491011476891], [-3245.7979775262215, -1368.8991011484575], [-3212.047977526389, -1388.0991011454569], [-3172.2479775262436, -1404.6991011475995], [-3141.2479775263514, -1411.7491011482741], [-3111.597977526248, -1410.3991011467087], [-3091.597977526339, -1401.7991011456843], [-3077.797977526275, -1383.2491011456227], [-3077.447977526404, -1360.849101146755], [-3093.147977526245, -1331.449101147797], [-3092.89797752621, -1311.8991011467074], [-3083.7479775263077, -1286.7991011482616]], "destination": 146729069}, {"length": 26.4267227138, "source": 94269403, "path": [[195.95202247368883, 4103.800898853649], [215.5520224735863, 4077.700898854175], [257.90202247377715, 4021.2008988547154], [275.9020224736286, 3997.250898851945]], "destination": 94267384}, {"length": 66.727902465, "source": 94269403, "path": [[195.95202247368883, 4103.800898853649], [239.75202247372707, 4117.200898853924], [609.352022473697, 4230.400898851627]], "destination": 310745357}, {"length": 12.4071566195, "source": 3772612379, "path": [[4951.302022473625, 2015.2008988532089], [4890.452022473734, 1976.3508988539513]], "destination": 3732221776}, {"length": 51.556320702, "source": 133129092, "path": [[1610.4020224736448, 1620.6008988532972], [1953.5520224736035, 1568.000898853228]], "destination": 133129161}, {"length": 43.4696929804, "source": 133129092, "path": [[1610.4020224736448, 1620.6008988532972], [1700.7020224737435, 1657.800898854589], [1858.152022473636, 1728.400898851845]], "destination": 133129106}, {"length": 20.8231299674, "source": 133129092, "path": [[1610.4020224736448, 1620.6008988532972], [1471.6520224737906, 1641.4008988512307]], "destination": 133128980}, {"length": 19.0415960435, "source": 2705349513, "path": [[5938.352022473614, 3495.5008988539757], [5858.002022473663, 3562.850898852332]], "destination": 3732186331}, {"length": 24.9421958401, "source": 2705349513, "path": [[5938.352022473614, 3495.5008988539757], [5768.552022473727, 3505.2508988542286]], "destination": 470171}, {"length": 10.9278888854, "source": 2705349513, "path": [[5938.352022473614, 3495.5008988539757], [5989.102022473602, 3459.4508988519124]], "destination": 3732186334}, {"length": 23.6272645502, "source": 2705349513, "path": [[5938.352022473614, 3495.5008988539757], [5991.352022473695, 3492.4508988538605], [6099.202022473715, 3486.250898852461]], "destination": 3732186335}, {"length": 42.7847735995, "source": 1229142922, "path": [[-5710.197977526254, 3558.750898854157], [-5684.997977526418, 3574.250898854103], [-5717.747977526333, 3597.8508988527838], [-5659.797977526359, 3633.5008988537256], [-5627.697977526269, 3611.550898853011], [-5563.647977526287, 3647.0008988516156]], "destination": 1096679700}, {"length": 81.9574896398, "source": 1229142922, "path": [[-5710.197977526254, 3558.750898854157], [-5320.597977526376, 3294.0008988546765]], "destination": 3920295909}, {"length": 94.8571730253, "source": 1229142922, "path": [[-5710.197977526254, 3558.750898854157], [-6150.797977526378, 3871.6008988544104]], "destination": 277578909}, {"length": 19.1510910788, "source": 21346797, "path": [[-1023.6479775262985, 3583.0508988539123], [-1100.29797752631, 3513.250898851794]], "destination": 352968987}, {"length": 64.3046088529, "source": 21346797, "path": [[-1023.6479775262985, 3583.0508988539123], [-975.4479775263558, 3528.350898854171], [-827.4479775263188, 3360.350898852005], [-803.2479775264001, 3332.9008988545183]], "destination": 21389558}, {"length": 54.2024058286, "source": 133129106, "path": [[1858.152022473636, 1728.400898851845], [1958.0520224737886, 1778.5508988517051], [2055.802022473685, 1815.8508988541655], [2112.052022473776, 1831.0008988535742], [2181.602022473639, 1840.350898852705]], "destination": 133129122}, {"length": 26.2239998158, "source": 133129106, "path": [[1858.152022473636, 1728.400898851845], [1849.3020224736867, 1744.0008988529598], [1740.1520224737953, 1815.4008988524595]], "destination": 1223798291}, {"length": 43.4696929804, "source": 133129106, "path": [[1858.152022473636, 1728.400898851845], [1700.7020224737435, 1657.800898854589], [1610.4020224736448, 1620.6008988532972]], "destination": 133129092}, {"length": 26.9513820259, "source": 133129106, "path": [[1858.152022473636, 1728.400898851845], [1902.8520224737556, 1700.5008988526527], [1972.2020224737234, 1634.0008988535715]], "destination": 133129134}, {"length": 90.7892508909, "source": 3732221763, "path": [[6043.252022473799, 2764.2008988522093], [5615.652022473716, 3060.0008988521668]], "destination": 3732221762}, {"length": 148.038709893, "source": 3732221763, "path": [[6043.252022473799, 2764.2008988522093], [5297.552022473617, 2314.350898853235]], "destination": 3732221764}, {"length": 213.278157522, "source": 3732221763, "path": [[6043.252022473799, 2764.2008988522093], [6349.0520224736, 2552.7008988532884], [5605.502022473674, 2099.200898854292]], "destination": 3732221765}, {"length": 10.4187290815, "source": 2353689492, "path": [[6731.852022473728, 4116.100898851727], [6716.602022473595, 4130.800898852982], [6693.002022473582, 4155.350898852106]], "destination": 130096486}, {"length": 9.70665467085, "source": 1905705879, "path": [[858.2520224735823, -2536.349101145419], [906.8020224736184, -2566.0991011484666]], "destination": 721638495}, {"length": 10.9018784211, "source": 1905705880, "path": [[922.9020224736928, -2658.049101146531], [854.9020224737358, -2637.999101146704]], "destination": 21305939}, {"length": 7.77369903245, "source": 1905705880, "path": [[922.9020224736928, -2658.049101146531], [942.6520224737889, -2625.599101147458]], "destination": 2689489679}, {"length": 55.4778004689, "source": 160027545, "path": [[1163.6020224736753, -468.49910114588056], [1424.852022473777, -649.299101148415]], "destination": 34845749}, {"length": 90.1623745179, "source": 160027545, "path": [[1163.6020224736753, -468.49910114588056], [739.2020224736839, -762.4491011455348]], "destination": 160028423}, {"length": 90.0233212667, "source": 94258075, "path": [[-2258.8479775262904, 3892.8008988534657], [-1670.0479775262345, 3775.550898854618]], "destination": 94269969}, {"length": 122.722725755, "source": 94258075, "path": [[-2258.8479775262904, 3892.8008988534657], [-1566.1479775264108, 4157.300898853578], [-1533.4979775263325, 4169.750898853408]], "destination": 151351827}, {"length": 17.1570679052, "source": 925936540, "path": [[-1116.4979775262207, -2290.6991011453215], [-1030.4979775264123, -2238.249101147005]], "destination": 25624244}, {"length": 28.5889664171, "source": 925936540, "path": [[-1116.4979775262207, -2290.6991011453215], [-1251.2479775264042, -2383.799101146167]], "destination": 25624239}, {"length": 88.8542506288, "source": 34817772, "path": [[-6822.147977526338, -2381.599101145326], [-6555.347977526216, -2212.4491011474847], [-6404.347977526204, -2092.4491011484747]], "destination": 34818271}, {"length": 35.6473821274, "source": 94266272, "path": [[-45.94797752632829, 3442.9008988539067], [134.90202247368188, 3473.050898854524], [172.4520224737347, 3501.300898854254]], "destination": 94266273}, {"length": 140.494271861, "source": 94266272, "path": [[-45.94797752632829, 3442.9008988539067], [-98.84797752635066, 3507.7008988544376], [-852.8479775262721, 3574.7508988528407], [-866.0479775262075, 3586.2008988516436], [-905.647977526236, 3620.600898852189]], "destination": 310745283}, {"length": 31.9382604031, "source": 94266273, "path": [[172.4520224737347, 3501.300898854254], [335.2520224737532, 3596.950898852924]], "destination": 2463876696}, {"length": 97.3151843295, "source": 94266273, "path": [[172.4520224737347, 3501.300898854254], [-202.39797752630295, 3754.3508988520102], [-261.94797752632223, 3798.200898852855], [-285.64797752639316, 3818.250898852682]], "destination": 94267208}, {"length": 50.4183140856, "source": 94266274, "path": [[512.4020224736014, 3701.050898854419], [535.8020224737193, 3671.650898851908], [692.552022473647, 3558.000898852498], [733.4520224737684, 3528.350898854171]], "destination": 159892504}, {"length": 83.7724388419, "source": 94266274, "path": [[512.4020224736014, 3701.050898854419], [549.0020224736547, 3722.2008988528896], [889.0520224738019, 3918.4508988512334], [942.7520224736252, 3949.4508988546786]], "destination": 94266276}, {"length": 154.02899153, "source": 94266276, "path": [[942.7520224736252, 3949.4508988546786], [1001.902022473633, 3980.900898852724], [1761.5520224736335, 4384.650898852982]], "destination": 157530497}, {"length": 54.9025457834, "source": 94266276, "path": [[942.7520224736252, 3949.4508988546786], [894.7020224736591, 3962.1008988532935], [720.1520224737745, 4102.150898852131], [689.60202247359, 4126.650898854223]], "destination": 173999126}, {"length": 11.1636963884, "source": 1976882997, "path": [[-2272.5479775262957, -1973.4491011469402], [-2327.247977526259, -2008.4491011473915]], "destination": 652939736}, {"length": 15.6679606462, "source": 1976882997, "path": [[-2272.5479775262957, -1973.4491011469402], [-2317.647977526205, -1942.749101147001], [-2347.5979775262613, -1923.1991011459115]], "destination": 1976883004}, {"length": 30.1772248151, "source": 1976882997, "path": [[-2272.5479775262957, -1973.4491011469402], [-2124.597977526399, -1878.8991011469136]], "destination": 1976882932}, {"length": 209.427221215, "source": 21346801, "path": [[-1155.3979775262846, 1874.5008988538814], [-1180.6479775262612, 1899.75089885408], [-1605.9979775262523, 2325.200898852131], [-1904.4479775263135, 2628.200898854516], [-1938.447977526403, 2662.750898853261]], "destination": 21346802}, {"length": 93.0617024287, "source": 21346801, "path": [[-1155.3979775262846, 1874.5008988538814], [-1081.6979775263303, 1894.6008988542928], [-615.8479775262293, 2018.6008988538617], [-566.0979775263808, 2031.8508988523831]], "destination": 158834411}, {"length": 192.463564637, "source": 21346801, "path": [[-1155.3979775262846, 1874.5008988538814], [-1214.5479775262925, 1858.5508988522292], [-2370.947977526239, 1543.9008988522573]], "destination": 4547130999}, {"length": 6.25782223022, "source": 3520025512, "path": [[3680.2520224736845, -97.74910114757063], [3659.9020224736823, -122.49910114547902]], "destination": 3520025513}, {"length": 6.25782223022, "source": 3520025513, "path": [[3659.9020224736823, -122.49910114547902], [3680.2520224736845, -97.74910114757063]], "destination": 3520025512}, {"length": 6.88854530562, "source": 3520025513, "path": [[3659.9020224736823, -122.49910114547902], [3701.3020224736515, -137.2491011473187]], "destination": 34845766}, {"length": 65.9713514339, "source": 25625661, "path": [[3655.802022473731, -4584.449101148635], [3692.902022473632, -4562.349101146168], [3958.00202247365, -4404.449101148344], [3990.1020224737404, -4385.349101145408]], "destination": 25625657}, {"length": 75.6081367682, "source": 133128690, "path": [[1161.5020224737816, 1438.600898854503], [1379.552022473751, 1475.7508988516577], [1484.2520224735977, 1488.8508988519789], [1580.8020224736817, 1490.6508988516975], [1668.9020224736062, 1486.6508988546911]], "destination": 133129152}, {"length": 63.981762445, "source": 133128690, "path": [[1161.5020224737816, 1438.600898854503], [1471.6520224737906, 1641.4008988512307]], "destination": 133128980}, {"length": 6.09216282885, "source": 133128690, "path": [[1161.5020224737816, 1438.600898854503], [1130.4520224737491, 1420.3508988543945]], "destination": 133128621}, {"length": 14.9296343068, "source": 133129134, "path": [[1972.2020224737234, 1634.0008988535715], [1953.5520224736035, 1568.000898853228]], "destination": 133129161}, {"length": 55.9373139744, "source": 133129134, "path": [[1972.2020224737234, 1634.0008988535715], [2001.7020224736282, 1680.7008988521943], [2039.552022473634, 1732.3008988512356], [2083.0520224737193, 1776.400898851449], [2136.9520224736593, 1812.4008988529283], [2181.602022473639, 1840.350898852705]], "destination": 133129122}, {"length": 26.9513820259, "source": 133129134, "path": [[1972.2020224737234, 1634.0008988535715], [1902.8520224737556, 1700.5008988526527], [1858.152022473636, 1728.400898851845]], "destination": 133129106}, {"length": 30.8643926121, "source": 270185391, "path": [[3502.6020224737663, -2188.94910114642], [3337.9020224737487, -2171.199101148602], [3322.4020224735805, -2170.14910114699], [3294.0520224737925, -2168.2491011461025]], "destination": 270186256}, {"length": 21.323098251, "source": 270185391, "path": [[3502.6020224737663, -2188.94910114642], [3457.152022473764, -2097.849101147631]], "destination": 270185390}, {"length": 42.4738194829, "source": 2704171953, "path": [[3482.9020224735887, 3203.100898854672], [3683.9520224736243, 3065.350898854291]], "destination": 3772612360}, {"length": 9.68899689963, "source": 2704171953, "path": [[3482.9020224735887, 3203.100898854672], [3434.6020224735876, 3173.3008988545917]], "destination": 3732222536}, {"length": 10.1292146598, "source": 2704171953, "path": [[3482.9020224735887, 3203.100898854672], [3434.9520224736807, 3235.9508988513144]], "destination": 21378259}, {"length": 18.374605116, "source": 270185394, "path": [[3459.0020224736227, -3055.849101148311], [3582.552022473706, -3070.6991011477667]], "destination": 270185008}, {"length": 7.03163360406, "source": 270185394, "path": [[3459.0020224736227, -3055.849101148311], [3471.102022473582, -3025.249101145988]], "destination": 5056992118}, {"length": 21.5981759306, "source": 2705350389, "path": [[5799.302022473585, -2318.0991011457763], [5946.852022473692, -2321.199101146476]], "destination": 2705350391}, {"length": 20.7350806778, "source": 2705350389, "path": [[5799.302022473585, -2318.0991011457763], [5657.652022473591, -2315.0491011456606]], "destination": 2705350349}, {"length": 10.1532102008, "source": 2705350389, "path": [[5799.302022473585, -2318.0991011457763], [5798.102022473772, -2363.74910114634]], "destination": 2705350423}, {"length": 64.2153144182, "source": 158835639, "path": [[1958.952022473648, 2287.5008988521017], [1920.6520224737123, 2313.1508988534224], [1694.5520224735944, 2464.6508988546148], [1651.4520224737428, 2493.5008988542504]], "destination": 158835218}, {"length": 52.340667484, "source": 158835639, "path": [[1958.952022473648, 2287.5008988521017], [1998.6020224735946, 2260.500898852769], [2207.502022473662, 2118.2508988530913]], "destination": 133128779}, {"length": 100.195636124, "source": 158835639, "path": [[1958.952022473648, 2287.5008988521017], [1910.7020224737869, 2256.5508988527936], [1508.7520224736916, 1998.750898852819], [1468.6520224735932, 1973.0008988538827]], "destination": 204830556}, {"length": 13.6079270747, "source": 205086385, "path": [[-623.3979775263076, -533.0491011470428], [-699.8979775263425, -567.8491011487097]], "destination": 653598365}, {"length": 22.7552131129, "source": 205086385, "path": [[-623.3979775263076, -533.0491011470428], [-730.6479775261998, -458.94910114796517]], "destination": 281774765}, {"length": 136.606410046, "source": 470175, "path": [[374.65202247366494, 1673.850898853857], [343.7020224736909, 1654.1508988545672], [40.5520224737721, 1461.2508988527395], [-294.84797752621364, 1245.7508988532595]], "destination": 160014360}, {"length": 88.5229316915, "source": 470175, "path": [[374.65202247366494, 1673.850898853857], [326.7520224736753, 1709.8008988511992], [3.4020224737307814, 1952.5508988529339], [-24.097977526338354, 1973.2008988526673]], "destination": 158834278}, {"length": 14.0703150201, "source": 470175, "path": [[374.65202247366494, 1673.850898853857], [443.4520224736449, 1718.0508988516863]], "destination": 21346783}, {"length": 20.8666623744, "source": 277062589, "path": [[-5728.947977526211, 1756.4008988522062], [-5679.74797752635, 1733.7008988533853], [-5649.647977526318, 1683.1508988524035]], "destination": 277062812}, {"length": 32.4928169177, "source": 277062589, "path": [[-5728.947977526211, 1756.4008988522062], [-5693.697977526391, 1796.600898853029], [-5676.8979775263515, 1826.0508988525714], [-5675.597977526259, 1851.3008988527702], [-5673.397977526307, 1894.2508988537554]], "destination": 310348773}, {"length": 30.5151522253, "source": 277062589, "path": [[-5728.947977526211, 1756.4008988522062], [-5655.397977526233, 1753.0008988515533], [-5603.997977526198, 1771.3508988528304], [-5531.797977526232, 1787.6508988514672]], "destination": 185856415}, {"length": 5.50298045113, "source": 25667061, "path": [[6654.252022473716, -3398.699101147429], [6651.952022473706, -3423.399101148306]], "destination": 691196497}, {"length": 170.329774638, "source": 25667061, "path": [[6654.252022473716, -3398.699101147429], [5640.852022473775, -3376.949101145499], [5490.952022473739, -3369.3991011460867]], "destination": 25625871}, {"length": 46.1787051359, "source": 133129152, "path": [[1668.9020224736062, 1486.6508988546911], [1718.3020224735835, 1500.6008988542874], [1871.0520224736183, 1526.0508988532706], [1953.5520224736035, 1568.000898853228]], "destination": 133129161}, {"length": 75.6081367682, "source": 133129152, "path": [[1668.9020224736062, 1486.6508988546911], [1580.8020224736817, 1490.6508988516975], [1484.2520224735977, 1488.8508988519789], [1379.552022473751, 1475.7508988516577], [1161.5020224737816, 1438.600898854503]], "destination": 133128690}, {"length": 42.9713466827, "source": 133129152, "path": [[1668.9020224736062, 1486.6508988546911], [1777.8520224736028, 1468.5008988521986], [1913.102022473634, 1434.350898854575], [1944.7520224737946, 1422.5008988546506]], "destination": 133129165}, {"length": 4.85286305768, "source": 4508646339, "path": [[3295.9520224737917, -2076.8491011473598], [3297.352022473721, -2098.6491011463213]], "destination": 185883891}, {"length": 24.3811740183, "source": 4508646339, "path": [[3295.9520224737917, -2076.8491011473598], [3362.3020224737843, -2076.3991011456537], [3457.152022473764, -2097.849101147631]], "destination": 270185390}, {"length": 62.7757254312, "source": 3732186329, "path": [[5656.902022473709, 3696.7508988539066], [5748.90202247369, 3698.4008988518726], [5985.052022473791, 3856.5508988526176]], "destination": 3732186340}, {"length": 13.9438789228, "source": 3732186329, "path": [[5656.902022473709, 3696.7508988539066], [5574.252022473747, 3727.950898852583]], "destination": 2705349460}, {"length": 45.3933349043, "source": 3732186329, "path": [[5656.902022473709, 3696.7508988539066], [5626.002022473653, 3899.8508988541403]], "destination": 3732186342}, {"length": 11.9746663399, "source": 3732186329, "path": [[5656.902022473709, 3696.7508988539066], [5703.8520224736985, 3652.6508988536934]], "destination": 1219826518}, {"length": 11.7409454965, "source": 470177, "path": [[-1796.1479775263633, 286.0508988540289], [-1854.697977526243, 322.1508988531241]], "destination": 2386533113}, {"length": 65.9774057158, "source": 470177, "path": [[-1796.1479775263633, 286.0508988540289], [-1680.9479775263815, 258.80089885177426], [-1440.6979775263285, 111.40089885230964]], "destination": 36485756}, {"length": 23.987499271, "source": 470177, "path": [[-1796.1479775263633, 286.0508988540289], [-1776.6979775262205, 393.150898851502]], "destination": 2386533045}, {"length": 90.7932216425, "source": 470177, "path": [[-1796.1479775263633, 286.0508988540289], [-1351.8479775262992, 571.0508988521212]], "destination": 160025687}, {"length": 46.1787051359, "source": 133129161, "path": [[1953.5520224736035, 1568.000898853228], [1871.0520224736183, 1526.0508988532706], [1718.3020224735835, 1500.6008988542874], [1668.9020224736062, 1486.6508988546911]], "destination": 133129152}, {"length": 42.433199176, "source": 133129161, "path": [[1953.5520224736035, 1568.000898853228], [2093.402022473656, 1548.100898851601], [2216.652022473786, 1495.5008988515317]], "destination": 133128985}, {"length": 51.556320702, "source": 133129161, "path": [[1953.5520224736035, 1568.000898853228], [1610.4020224736448, 1620.6008988532972]], "destination": 133129092}, {"length": 32.3834207687, "source": 133129161, "path": [[1953.5520224736035, 1568.000898853228], [1944.7520224737946, 1422.5008988546506]], "destination": 133129165}, {"length": 14.9296343068, "source": 133129161, "path": [[1953.5520224736035, 1568.000898853228], [1972.2020224737234, 1634.0008988535715]], "destination": 133129134}, {"length": 111.233526907, "source": 133128695, "path": [[2155.002022473651, 720.600898851842], [2195.4020224737023, 750.2508988537215], [2230.9020224737797, 784.3508988543135], [2257.102022473756, 820.7508988533618], [2271.9020224737374, 863.9508988537159], [2279.8520224736053, 909.3508988513577], [2278.8520224736876, 956.2008988517334], [2270.9020224735978, 1005.0008988535808], [2254.0020224737223, 1054.5008988529503], [2226.6020224737117, 1110.6508988518726], [2147.302022473596, 1175.3508988512351]], "destination": 133128715}, {"length": 19.5437909027, "source": 133128695, "path": [[2155.002022473651, 720.600898851842], [2247.6520224736782, 657.3008988546292]], "destination": 1227145757}, {"length": 16.0842028621, "source": 133129165, "path": [[1944.7520224737946, 1422.5008988546506], [2025.6020224735937, 1373.5008988540187]], "destination": 133129080}, {"length": 32.3834207687, "source": 133129165, "path": [[1944.7520224737946, 1422.5008988546506], [1953.5520224736035, 1568.000898853228]], "destination": 133129161}, {"length": 42.9713466827, "source": 133129165, "path": [[1944.7520224737946, 1422.5008988546506], [1913.102022473634, 1434.350898854575], [1777.8520224736028, 1468.5008988521986], [1668.9020224736062, 1486.6508988546911]], "destination": 133129152}, {"length": 10.532040325, "source": 1893477533, "path": [[877.4020224737721, -2605.5991011482147], [926.152022473703, -2620.5491011452864], [942.6520224737889, -2625.599101147458]], "destination": 2689489679}, {"length": 5.91882639181, "source": 1893477533, "path": [[877.4020224737721, -2605.5991011482147], [895.2020224737289, -2581.6991011460286]], "destination": 567929279}, {"length": 194.155567142, "source": 25203875, "path": [[5431.152022473684, -1538.9491011461587], [5443.4020224736205, -1513.8491011477129], [5826.502022473701, -727.8491011462052], [5836.3520224737895, -707.5991011475935]], "destination": 25203153}, {"length": 167.012266009, "source": 25203875, "path": [[5431.152022473684, -1538.9491011461587], [5392.75202247369, -1539.0991011479116], [4453.10202247362, -1542.699101147349], [4342.6020224737185, -1542.9491011467178], [4289.652022473778, -1543.0991011484707]], "destination": 34845778}, {"length": 62.2978979641, "source": 25203875, "path": [[5431.152022473684, -1538.9491011461587], [5429.50202247372, -1574.5491011465163], [5419.25202247362, -1792.7991011461586], [5418.052022473585, -1818.9491011462167]], "destination": 25203763}, {"length": 19.5384868891, "source": 831929434, "path": [[3250.6520224737656, -4409.04910114881], [3257.252022473622, -4321.2991011465365]], "destination": 831929556}, {"length": 17.7477996416, "source": 25625557, "path": [[3351.752022473731, -3311.099101146908], [3344.5020224736054, -3293.1991011473374], [3320.4520224736634, -3233.9991011482994]], "destination": 123748604}, {"length": 80.2659305609, "source": 25625557, "path": [[3351.752022473731, -3311.099101146908], [3189.402022473642, -3368.449101145643], [3040.8520224736167, -3426.899101146574], [2876.7020224735875, -3491.4991011483207]], "destination": 833088749}, {"length": 14.5666348157, "source": 652907478, "path": [[-3453.247977526219, -2289.049101147356], [-3522.5979775264095, -2336.0491011459317]], "destination": 652902152}, {"length": 75.3152038867, "source": 652907478, "path": [[-3453.247977526219, -2289.049101147356], [-3571.34797752634, -2213.2991011467593], [-3801.6479775262455, -2040.04910114719]], "destination": 2561299768}, {"length": 86.8291521436, "source": 652907478, "path": [[-3453.247977526219, -2289.049101147356], [-3372.647977526233, -2228.8491011472897], [-3038.297977526305, -2010.0991011453573]], "destination": 654057810}, {"length": 54.9101155492, "source": 652907478, "path": [[-3453.247977526219, -2289.049101147356], [-3191.6479775262464, -2466.0991011487]], "destination": 2561299795}, {"length": 36.1408831646, "source": 25625561, "path": [[3575.7520224737327, -3170.0991011476276], [3677.952022473674, -3139.349101147104], [3801.0520224736056, -3103.4491011467935]], "destination": 25625563}, {"length": 33.5107751232, "source": 25625561, "path": [[3575.7520224737327, -3170.0991011476276], [3566.9520224737016, -3273.6491011462476], [3562.9520224735866, -3320.5491011472077]], "destination": 25625636}, {"length": 20.3088537736, "source": 930671578, "path": [[-1560.3979775262733, -2184.4991011477077], [-1517.097977526305, -2238.94910114808], [-1498.4979775263253, -2266.1991011467817]], "destination": 652950841}, {"length": 22.0093081426, "source": 2645500891, "path": [[-4856.247977526263, 2910.8508988535677], [-4834.897977526342, 2914.8508988541266], [-4812.547977526283, 2930.0008988535355], [-4876.447977526288, 2977.25089885148]], "destination": 1096679755}, {"length": 111.063378916, "source": 2645500891, "path": [[-4856.247977526263, 2910.8508988535677], [-5289.24797752639, 3210.8508988528683], [-5320.597977526376, 3294.0008988546765]], "destination": 3920295909}, {"length": 243.825783226, "source": 2645500891, "path": [[-4856.247977526263, 2910.8508988535677], [-4845.497977526314, 2819.7508988512254], [-4562.847977526374, 2708.1508988544556], [-4356.897977526364, 2557.4508988519538], [-3804.097977526233, 2170.6008988537915], [-3740.197977526227, 2136.0008988544623]], "destination": 277578917}, {"length": 30.4985857083, "source": 25625567, "path": [[3152.6520224736123, -3011.5491011457607], [3218.9020224737687, -3023.0491011487], [3294.7020224736166, -3036.199101146053], [3318.852022473617, -3040.399101145397], [3355.252022473776, -3042.74910114799]], "destination": 2689489681}, {"length": 29.1384282942, "source": 25625567, "path": [[3152.6520224736123, -3011.5491011457607], [3178.552022473635, -3047.6491011484086], [3178.552022473635, -3068.6491011486796], [3171.6020224736853, -3083.749101147504], [3153.5520224736933, -3097.8991011458847], [3109.2520224735854, -3118.799101148539]], "destination": 25625572}, {"length": 20.6666115608, "source": 133129723, "path": [[1194.9020224737428, 344.7508988543291], [1168.302022473755, 384.15089885290854], [1191.6020224735923, 431.5508988526062]], "destination": 133129316}, {"length": 74.6444718693, "source": 133129723, "path": [[1194.9020224737428, 344.7508988543291], [1147.0520224736713, 332.55089885386724], [1096.9020224735893, 314.7008988513278], [1027.1520224736098, 280.350898851367], [976.9020224736913, 252.20089885280572], [948.3520224737863, 242.2508988537686], [916.4020224736724, 234.00089885328157], [891.9020224738006, 232.6008988546846], [856.9020224737933, 235.65089885124735], [749.2520224736676, 273.65089885122984]], "destination": 133129829}, {"length": 26.4467966782, "source": 133129723, "path": [[1194.9020224737428, 344.7508988543291], [1250.402022473729, 246.3508988519436], [1249.352022473671, 232.40089885234738]], "destination": 3730881190}, {"length": 42.494605698, "source": 133129723, "path": [[1194.9020224737428, 344.7508988543291], [1247.9020224736014, 341.9008988529981], [1300.1020224736592, 334.60089885295474], [1330.8020224735983, 327.15089885471116], [1372.6520224737194, 311.1508988524747], [1453.6020224737988, 269.5008988524705]], "destination": 133129813}, {"length": 144.487776263, "source": 308767716, "path": [[-5387.097977526345, 171.5508988517911], [-5488.247977526228, 254.55089885184634], [-5708.247977526337, 407.35089885401976], [-5746.997977526203, 431.85089885255934], [-6030.3479775263295, 610.1508988543003], [-6076.247977526261, 635.6508988538678]], "destination": 34818626}, {"length": 76.7961788207, "source": 308767716, "path": [[-5387.097977526345, 171.5508988517911], [-5052.747977526417, 391.70089885232073], [-5002.547977526417, 400.2008988521766]], "destination": 638583333}, {"length": 80.1667549716, "source": 310348773, "path": [[-5673.397977526307, 1894.2508988537554], [-5764.747977526241, 1960.100898852346], [-5889.797977526312, 2050.2508988542445], [-6000.797977526285, 2130.250898851216], [-6031.6479775262, 2147.600898851465], [-6048.097977526368, 2156.85089885298]], "destination": 4069611768}, {"length": 170.142912197, "source": 185877479, "path": [[-3956.8479775262676, 695.750898852765], [-3954.9979775264087, 662.0008988527104], [-3950.1979775262707, 640.4508988531177], [-3915.647977526415, 605.550898853835], [-3640.697977526308, 401.45089885257335], [-3433.3479775263686, 238.6008988537469], [-3254.9479775263458, 98.60089885194157]], "destination": 241584504}, {"length": 4.27841879101, "source": 185877479, "path": [[-3956.8479775262676, 695.750898852765], [-3982.847977526349, 704.5508988525739]], "destination": 4843850894}, {"length": 361.188966811, "source": 4508646376, "path": [[6663.002022473607, -2286.249101146609], [4327.052022473632, -2236.1991011479176], [4256.452022473712, -2217.8491011466404], [4258.202022473733, -2181.2491011488078]], "destination": 2705350290}, {"length": 11.1539304983, "source": 4508646376, "path": [[6663.002022473607, -2286.249101146609], [6662.702022473654, -2297.8491011471647], [6662.352022473783, -2307.0991011486794], [6661.702022473737, -2336.399101146469]], "destination": 4508646379}, {"length": 113.061222025, "source": 34909161, "path": [[-1465.2979775262586, 3137.0008988531595], [-1431.747977526321, 3110.4508988519797], [-1018.2479775262543, 2783.900898851499], [-970.7479775262761, 2746.400898853807]], "destination": 21378264}, {"length": 26.8149617915, "source": 34909161, "path": [[-1465.2979775262586, 3137.0008988531595], [-1526.2979775263475, 3162.1508988521896], [-1561.4479775263312, 3176.65089885466], [-1620.597977526339, 3201.0008988514473]], "destination": 661237}, {"length": 58.2353636148, "source": 34909161, "path": [[-1465.2979775262586, 3137.0008988531595], [-1502.5979775262765, 3099.8008988518677], [-1684.3979775262862, 2918.4008988529795]], "destination": 21378262}, {"length": 27.3505137521, "source": 666952683, "path": [[3748.602022473735, -1808.1991011484888], [3722.9520224737466, -1868.599101147339], [3698.302022473676, -1926.6491011471487]], "destination": 2006535622}, {"length": 10.4143779553, "source": 304991212, "path": [[-3688.697977526356, -228.04910114615495], [-3642.9979775263187, -192.14910114584427]], "destination": 185876331}, {"length": 46.7734069811, "source": 304991212, "path": [[-3688.697977526356, -228.04910114615495], [-3884.897977526336, -394.09910114684976]], "destination": 270803125}, {"length": 66.389391625, "source": 304991212, "path": [[-3688.697977526356, -228.04910114615495], [-3680.947977526383, -266.4991011478435], [-3699.897977526234, -284.74910114795193], [-3839.6479775262283, -414.44910114663], [-3906.747977526326, -479.54910114711424]], "destination": 304991211}, {"length": 44.8195599154, "source": 1183501055, "path": [[3172.7520224738014, -1103.8991011460553], [3117.752022473663, -929.0491011455515], [3110.6520224737365, -906.5491011455151]], "destination": 368274}, {"length": 12.0739806635, "source": 1183501055, "path": [[3172.7520224738014, -1103.8991011460553], [3253.2020224735893, -1091.799101146762]], "destination": 666940867}, {"length": 18.2231523169, "source": 133129199, "path": [[1042.0520224736497, 746.1008988514095], [952.6520224736323, 689.0508988526278]], "destination": 133055563}, {"length": 28.2851831421, "source": 133129199, "path": [[1042.0520224736497, 746.1008988514095], [939.9520224737668, 854.1008988522947]], "destination": 133129204}, {"length": 18.3114674439, "source": 133129199, "path": [[1042.0520224736497, 746.1008988514095], [1131.8520224736783, 803.450898853697]], "destination": 133128533}, {"length": 69.8206423456, "source": 3732221768, "path": [[4965.252022473665, 2484.200898852151], [5132.852022473599, 2366.700898853935], [5179.252022473602, 2394.3508988537587], [5297.552022473617, 2314.350898853235]], "destination": 3732221764}, {"length": 120.35065624, "source": 159894355, "path": [[1959.6520224736125, 4264.250898852851], [1913.2020224736923, 4233.15089885179], [1419.6520224736275, 3903.1008988530402], [1382.8520224736797, 3878.500898853332]], "destination": 159894354}, {"length": 63.9450568064, "source": 159894355, "path": [[1959.6520224736125, 4264.250898852851], [2266.0520224737634, 4059.2508988517293]], "destination": 159936180}, {"length": 14.1960953273, "source": 159894355, "path": [[1959.6520224736125, 4264.250898852851], [1945.952022473607, 4273.800898854319], [1893.102022473725, 4310.700898852105]], "destination": 1928784695}, {"length": 98.8298366898, "source": 272270324, "path": [[-3564.7479775262614, -2470.8991011479498], [-3739.047977526333, -2041.5491011469555]], "destination": 272269064}, {"length": 94.3172868338, "source": 272270324, "path": [[-3564.7479775262614, -2470.8991011479498], [-3068.947977526326, -2505.0991011461574], [-3084.6479775263892, -2493.799101145555], [-3109.7979775263075, -2475.749101147784], [-3145.8479775263727, -2478.299101145609], [-3191.6479775262464, -2466.0991011487]], "destination": 2561299795}, {"length": 22.2748548094, "source": 272270324, "path": [[-3564.7479775262614, -2470.8991011479498], [-3641.897977526343, -2557.2491011480734]], "destination": 272270443}, {"length": 102.817899675, "source": 830630902, "path": [[4287.002022473674, -3670.449101147], [4207.952022473593, -3694.599101148555], [3790.002022473704, -3476.9491011488185], [3804.402022473674, -3423.4491011453374]], "destination": 830630428}, {"length": 21.2354243238, "source": 830630902, "path": [[4287.002022473674, -3670.449101147], [4172.752022473692, -3611.5491011479153]], "destination": 25625645}, {"length": 128.878197094, "source": 204831572, "path": [[3991.0020224736, 1733.800898854554], [3359.252022473669, 1330.0008988537115]], "destination": 133128769}, {"length": 52.9064440852, "source": 204831572, "path": [[3991.0020224736, 1733.800898854554], [4204.4020224736305, 1590.1008988521426], [4243.702022473705, 1563.6508988521314]], "destination": 36487395}, {"length": 103.565723805, "source": 204831572, "path": [[3991.0020224736, 1733.800898854554], [4498.652022473681, 2058.3008988523943]], "destination": 167919126}, {"length": 13.5926852904, "source": 205095932, "path": [[6509.05202247376, -816.5991011459539], [6599.152022473742, -831.4991011459938]], "destination": 470192}, {"length": 24.3297861133, "source": 929535146, "path": [[-3239.9479775262475, -2620.249101145333], [-3394.24797752641, -2579.449101148157]], "destination": 123759978}, {"length": 10.6115562891, "source": 675140607, "path": [[-6476.397977526416, 4373.300898851795], [-6527.197977526323, 4339.2508988517875]], "destination": 14798299}, {"length": 16.4832626443, "source": 675140607, "path": [[-6476.397977526416, 4373.300898851795], [-6401.147977526333, 4318.150898853901]], "destination": 2589554878}, {"length": 8.51671893683, "source": 94267358, "path": [[664.9520224737415, 3164.3508988530302], [624.6020224736081, 3191.9508988522693]], "destination": 159884486}, {"length": 31.8400691431, "source": 517915652, "path": [[2623.9020224736455, -3698.69910114673], [2602.0520224736556, -3602.449101148153], [2591.7520224736368, -3557.0991011475426]], "destination": 661227}, {"length": 24.7999624064, "source": 654070789, "path": [[4610.75202247363, 2431.3508988527133], [4492.602022473591, 2511.300898852653]], "destination": 654070275}, {"length": 83.4315572764, "source": 654070789, "path": [[4610.75202247363, 2431.3508988527133], [4743.752022473791, 2341.250898851399], [5008.102022473704, 2162.3008988527204]], "destination": 3772612374}, {"length": 13.6766343964, "source": 654070789, "path": [[4610.75202247363, 2431.3508988527133], [4545.452022473695, 2387.3508988536687]], "destination": 3732222535}, {"length": 11.8292748395, "source": 929367046, "path": [[-2542.5479775262884, -4067.1991011471673], [-2467.997977526393, -4046.5991011480182]], "destination": 270732364}, {"length": 23.0399903035, "source": 929367046, "path": [[-2542.5479775262884, -4067.1991011471673], [-2476.4979775262486, -4161.249101148456]], "destination": 25623998}, {"length": 6.06547520214, "source": 929367046, "path": [[-2542.5479775262884, -4067.1991011471673], [-2559.9479775262334, -4042.4491011457067]], "destination": 25623999}, {"length": 48.3708947303, "source": 133129223, "path": [[888.9520224737435, 1110.4008988525038], [853.0520224736549, 1058.450898852925], [789.0020224736727, 990.1008988535409], [724.302022473644, 922.20089885231]], "destination": 133129489}, {"length": 58.0407120373, "source": 133129223, "path": [[888.9520224737435, 1110.4008988525038], [885.7520224736514, 1055.3508988522253], [887.6020224737324, 989.6508988518349], [904.1520224737365, 927.4508988532659], [939.9520224737668, 854.1008988522947]], "destination": 133129204}, {"length": 46.1599094185, "source": 133129223, "path": [[888.9520224737435, 1110.4008988525038], [910.0520224736285, 1157.6508988540013], [945.7020224736823, 1237.9508988544785], [962.9020224737328, 1311.750898853603]], "destination": 133058023}, {"length": 180.899294797, "source": 94268426, "path": [[-1243.2979775263143, 3580.95089885424], [-1290.6479775263158, 3564.350898852098], [-1366.9979775263741, 3537.500898854518], [-2277.5479775263284, 3210.500898852331], [-2328.9979775262814, 3192.0008988528534]], "destination": 243647236}, {"length": 30.4619976401, "source": 94268426, "path": [[-1243.2979775263143, 3580.95089885424], [-1120.597977526394, 3691.6008988541194]], "destination": 661239}, {"length": 50.0330760517, "source": 1364890638, "path": [[1225.0020224737757, -1176.8491011459048], [1255.2020224736448, -1162.8991011463086], [1283.202022473784, -1153.6491011483463], [1312.552022473712, -1149.5991011472029], [1334.702022473655, -1150.6491011488151], [1352.5020224736118, -1154.0991011464996], [1363.2020224736418, -1156.4991011461245], [1385.2520224737486, -1161.7991011476647], [1539.802022473724, -1205.449101146172]], "destination": 1364890639}, {"length": 47.5128958082, "source": 1364890639, "path": [[1539.802022473724, -1205.449101146172], [1617.1520224737, -1260.7491011458194], [1702.452022473766, -1341.549101148587], [1696.852022473605, -1381.4991011464883]], "destination": 1365433436}, {"length": 22.0078269441, "source": 1364890639, "path": [[1539.802022473724, -1205.449101146172], [1605.102022473659, -1116.2991011453016]], "destination": 1298261907}, {"length": 68.5755260001, "source": 1364890639, "path": [[1539.802022473724, -1205.449101146172], [1693.102022473747, -1212.7491011462155], [1789.8520224737258, -1273.4491011485716], [1899.3020224737922, -1284.4991011462525], [1963.6020224735873, -1303.6491011462203]], "destination": 1365433420}, {"length": 25.9293810949, "source": 1364890639, "path": [[1539.802022473724, -1205.449101146172], [1512.4520224736316, -1242.7491011486325], [1525.602022473649, -1290.5491011458992], [1554.952022473799, -1308.849101146592]], "destination": 1365433422}, {"length": 50.0330760517, "source": 1364890639, "path": [[1539.802022473724, -1205.449101146172], [1385.2520224737486, -1161.7991011476647], [1363.2020224736418, -1156.4991011461245], [1352.5020224736118, -1154.0991011464996], [1334.702022473655, -1150.6491011488151], [1312.552022473712, -1149.5991011472029], [1283.202022473784, -1153.6491011483463], [1255.2020224736448, -1162.8991011463086], [1225.0020224737757, -1176.8491011459048]], "destination": 1364890638}, {"length": 13.7148024346, "source": 721620613, "path": [[4742.602022473674, -2344.7491011481247], [4836.302022473759, -2346.5491011478434]], "destination": 2705350402}, {"length": 40.8212077872, "source": 721620613, "path": [[4742.602022473674, -2344.7491011481247], [4605.952022473713, -2333.2991011457693], [4477.102022473645, -2295.199101148171]], "destination": 721620618}, {"length": 10.9221141353, "source": 721620613, "path": [[4742.602022473674, -2344.7491011481247], [4744.252022473638, -2295.649101146324]], "destination": 2705350335}, {"length": 67.0324230051, "source": 173999126, "path": [[689.60202247359, 4126.650898854223], [342.00202247358646, 4017.9008988516784], [275.9020224736286, 3997.250898851945]], "destination": 94267384}, {"length": 25.2511336129, "source": 3732221785, "path": [[3207.9520224737034, 1435.5508988543875], [3180.302022473658, 1416.8008988519887], [3252.4020224737883, 1371.0508988538095], [3275.1520224736373, 1386.5008988531713]], "destination": 3732221786}, {"length": 32.1791392435, "source": 3732221785, "path": [[3207.9520224737034, 1435.5508988543875], [3247.002022473744, 1462.3008988543518], [3319.102022473652, 1416.5008988520356], [3275.1520224736373, 1386.5008988531713]], "destination": 3732221786}, {"length": 3.12855103558, "source": 3732221785, "path": [[3207.9520224737034, 1435.5508988543875], [3191.652022473734, 1444.6508988541495]], "destination": 133128875}, {"length": 5.88752780627, "source": 159892504, "path": [[733.4520224737684, 3528.350898854171], [760.5020224736858, 3508.7508988524974]], "destination": 2463876709}, {"length": 85.1266421361, "source": 159892504, "path": [[733.4520224737684, 3528.350898854171], [777.602022473678, 3558.3508988530357], [1017.352022473661, 3706.8508988546964], [1054.5520224736204, 3712.60089885439], [1094.452022473602, 3710.8508988517033], [1149.652022473635, 3695.350898851757], [1196.3520224735903, 3682.2508988514355]], "destination": 159893055}, {"length": 26.0084968332, "source": 65311769, "path": [[6205.2520224737955, 3480.15089885223], [6112.102022473698, 3380.550898853585]], "destination": 116147962}, {"length": 10.2999475027, "source": 65311769, "path": [[6205.2520224737955, 3480.15089885223], [6226.752022473692, 3524.2508988524432]], "destination": 116147963}, {"length": 15.5780915594, "source": 65311769, "path": [[6205.2520224737955, 3480.15089885223], [6099.202022473715, 3486.250898852461]], "destination": 3732186335}, {"length": 9.68806665174, "source": 133129242, "path": [[2156.052022473709, 561.0508988524998], [2108.552022473731, 530.7008988530981]], "destination": 133058016}, {"length": 24.5056652629, "source": 133129242, "path": [[2156.052022473709, 561.0508988524998], [2276.1520224736655, 637.8508988547082]], "destination": 133129245}, {"length": 24.4679385941, "source": 133129242, "path": [[2156.052022473709, 561.0508988524998], [2039.9020224737274, 640.2008988537489]], "destination": 1224778213}, {"length": 45.0090074923, "source": 133129245, "path": [[2276.1520224736655, 637.8508988547082], [2491.452022473695, 493.30089885302186]], "destination": 2705349849}, {"length": 24.5056652629, "source": 133129245, "path": [[2276.1520224736655, 637.8508988547082], [2156.052022473709, 561.0508988524998]], "destination": 133129242}, {"length": 71.0982726615, "source": 133129245, "path": [[2276.1520224736655, 637.8508988547082], [2624.7020224736684, 860.6008988536473]], "destination": 204832795}, {"length": 43.1370407569, "source": 306086747, "path": [[-648.2479775262728, -2966.8991011462253], [-541.597977526287, -3076.599101145661], [-575.5979775263764, -3136.2991011469885]], "destination": 306086423}, {"length": 12.3324743846, "source": 306086747, "path": [[-648.2479775262728, -2966.8991011462253], [-700.0479775263191, -3010.649101145901]], "destination": 270731367}, {"length": 13.3805916229, "source": 25625636, "path": [[3562.9520224735866, -3320.5491011472077], [3617.8020224737484, -3334.099101145682], [3648.402022473629, -3341.999101145632]], "destination": 5057169764}, {"length": 30.9694745671, "source": 25625636, "path": [[3562.9520224735866, -3320.5491011472077], [3351.752022473731, -3311.099101146908]], "destination": 25625557}, {"length": 48.8564564405, "source": 25625636, "path": [[3562.9520224735866, -3320.5491011472077], [3468.552022473759, -3424.3491011487495], [3413.9020224737137, -3516.299101146814]], "destination": 25625686}, {"length": 20.4497179107, "source": 241584504, "path": [[-3254.9479775263458, 98.60089885194157], [-3183.547977526402, 19.55089885186112]], "destination": 4958500474}, {"length": 2.68746008533, "source": 241584504, "path": [[-3254.9479775263458, 98.60089885194157], [-3247.547977526244, 101.55089885444113], [-3242.997977526363, 107.20089885296602]], "destination": 4958488596}, {"length": 6.65293527627, "source": 241584504, "path": [[-3254.9479775263458, 98.60089885194157], [-3293.647977526293, 82.90089885321095]], "destination": 4958488598}, {"length": 75.1986211614, "source": 25625641, "path": [[4336.702022473604, -3348.3991011458156], [3987.502022473777, -3344.8991011475473], [3899.602022473747, -3343.9991011476877], [3878.302022473745, -3343.7991011453505], [3822.752022473619, -3343.349101147197]], "destination": 370351925}, {"length": 342.412271015, "source": 25625643, "path": [[4315.352022473684, -3475.6491011478374], [6490.502022473699, -4044.1991011483933]], "destination": 25666985}, {"length": 28.4709714903, "source": 25625643, "path": [[4315.352022473684, -3475.6491011478374], [4331.402022473619, -3382.2491011470393], [4336.702022473604, -3348.3991011458156]], "destination": 25625641}, {"length": 74.6589823845, "source": 277951533, "path": [[-5552.447977526409, -3607.299101147987], [-5748.197977526237, -3371.7991011457116], [-5780.09797752621, -3307.8491011480082]], "destination": 948791895}, {"length": 14.660994071, "source": 277951533, "path": [[-5552.447977526409, -3607.299101147987], [-5622.09797752633, -3654.699101147685]], "destination": 34816446}, {"length": 192.441052346, "source": 277951533, "path": [[-5552.447977526409, -3607.299101147987], [-4589.347977526303, -3017.8991011453604]], "destination": 277410159}, {"length": 17.1247310211, "source": 721620614, "path": [[1921.5020224736534, -1375.499101147426], [1963.6020224735873, -1303.6491011462203]], "destination": 1365433420}, {"length": 5.49478539006, "source": 721620614, "path": [[1921.5020224736534, -1375.499101147426], [1953.2520224736504, -1388.699101145363]], "destination": 1365433438}, {"length": 25.6792176729, "source": 721620614, "path": [[1921.5020224736534, -1375.499101147426], [1845.0520224737588, -1371.5991011480355], [1752.1520224736964, -1393.7991011481188]], "destination": 721620623}, {"length": 11.8330837312, "source": 833088559, "path": [[2423.1520224737847, -4342.199101145638], [2439.202022473719, -4290.049101147275]], "destination": 270922751}, {"length": 101.050729498, "source": 25625648, "path": [[5248.602022473791, -4166.449101148828], [4706.202022473738, -3885.0991011472047]], "destination": 5057169770}, {"length": 106.845447857, "source": 25625648, "path": [[5248.602022473791, -4166.449101148828], [5146.202022473733, -4176.599101146649], [4652.102022473681, -3922.8991011484027]], "destination": 5057169771}, {"length": 34.5764312505, "source": 4155927601, "path": [[-1988.29797752631, 277.40089885242014], [-2050.497977526211, 241.50089885210946], [-2130.0979775262795, 294.45089885271614], [-2160.797977526219, 311.70089885179664]], "destination": 2386533122}, {"length": 42.5029268511, "source": 4155927601, "path": [[-1988.29797752631, 277.40089885242014], [-1964.847977526274, 290.95089885444736], [-1935.1479775262526, 309.65089885270913], [-1873.5979775263977, 350.4508988534383], [-1850.2979775263384, 358.9008988527098], [-1822.1479775262228, 424.9008988530534]], "destination": 2386533028}, {"length": 7.58236405253, "source": 4155927601, "path": [[-1988.29797752631, 277.40089885242014], [-2022.947977526224, 302.7508988537875]], "destination": 2386533118}, {"length": 112.2667831, "source": 25625650, "path": [[5851.902022473654, -4478.449101146253], [5788.102022473707, -4445.4491011478585], [5248.602022473791, -4166.449101148828]], "destination": 25625648}, {"length": 37.8868339101, "source": 25625650, "path": [[5851.902022473654, -4478.449101146253], [5761.002022473649, -4535.799101148541], [5664.952022473635, -4596.349101145592]], "destination": 25625651}, {"length": 175.560278698, "source": 270177331, "path": [[4789.402022473688, -3256.5491011453673], [5242.65202247376, -3266.6491011461576], [5805.952022473582, -3277.649101146807], [5984.202022473628, -3304.7991011478925]], "destination": 5059182770}, {"length": 54.3708240437, "source": 270177331, "path": [[4789.402022473688, -3256.5491011453673], [5155.602022473671, -3214.8491011483316]], "destination": 25625847}, {"length": 4.8463584992, "source": 833088564, "path": [[2546.902022473763, -3832.299101148351], [2579.802022473654, -3829.749101146973]], "destination": 25624011}, {"length": 72.7531578066, "source": 833088564, "path": [[2546.902022473763, -3832.299101148351], [2500.4020224737023, -3794.299101148368], [2547.0520224737393, -3651.79910114577], [2427.802022473724, -3544.8991011470807]], "destination": 270922855}, {"length": 88.2293394408, "source": 34845749, "path": [[1424.852022473777, -649.299101148415], [1366.7520224736052, -686.5491011467384], [1054.7520224737373, -886.4491011486564], [992.8520224737891, -926.0991011466047]], "destination": 34845763}, {"length": 20.5942065419, "source": 34845749, "path": [[1424.852022473777, -649.299101148415], [1525.7020224737073, -584.6991011466685]], "destination": 36486916}, {"length": 75.6858630322, "source": 25203766, "path": [[6030.1520224737005, -1811.749101147342], [6014.252022473743, -1839.3991011471655], [5862.752022473661, -2102.399101147512], [5846.852022473703, -2129.999101146751]], "destination": 25203506}, {"length": 89.5679543446, "source": 25203766, "path": [[6030.1520224737005, -1811.749101147342], [5991.152022473801, -1812.1991011454952], [5468.50202247362, -1818.3491011463104], [5418.052022473585, -1818.9491011462167]], "destination": 25203763}, {"length": 109.454844596, "source": 25625655, "path": [[4730.052022473785, -4521.249101145486], [4759.252022473736, -4501.2991011468275], [5248.602022473791, -4166.449101148828]], "destination": 25625648}, {"length": 159.892099242, "source": 34845752, "path": [[1977.6020224737679, -295.1491011486951], [2021.402022473584, -267.0991011477497], [2653.90202247362, 138.15089885227394], [2760.5020224736877, 206.45089885462653]], "destination": 470184}, {"length": 92.2939638606, "source": 34845752, "path": [[1977.6020224737679, -295.1491011486951], [1843.8520224737242, -380.8491011483284], [1693.3020224736417, -477.2991011456895], [1525.7020224737073, -584.6991011466685]], "destination": 36486916}, {"length": 64.681308056, "source": 34845752, "path": [[1977.6020224737679, -295.1491011486951], [1937.2520224736345, -267.549101145903], [1720.7520224737927, -119.24910114657905], [1671.3520224735935, -85.39910114535587]], "destination": 204836246}, {"length": 61.429577548, "source": 25203769, "path": [[6449.502022473741, -1825.4991011481536], [6388.10202247364, -1823.4991011460977], [6087.402022473709, -1813.6491011482292], [6030.1520224737005, -1811.749101147342]], "destination": 25203766}, {"length": 10.7188787608, "source": 34845754, "path": [[2983.302022473655, -501.7991011477818], [2911.302022473583, -510.6991011487594]], "destination": 204840842}, {"length": 34.5752796773, "source": 34845754, "path": [[2983.302022473655, -501.7991011477818], [2972.4520224736484, -467.1991011484522], [2935.4520224735834, -349.54910114848303]], "destination": 634433862}, {"length": 11.014146817, "source": 34845756, "path": [[3181.952022473622, -1133.1991011473974], [3108.5520224736206, -1144.1991011480468]], "destination": 1183500911}, {"length": 6.65361259216, "source": 34845756, "path": [[3181.952022473622, -1133.1991011473974], [3172.7520224738014, -1103.8991011460553]], "destination": 1183501055}, {"length": 53.8643339489, "source": 204829757, "path": [[2871.302022473765, 1018.1508988544863], [3080.4020224737274, 880.6508988534745], [3131.7020224737034, 846.9508988540042]], "destination": 36487176}, {"length": 99.5363484816, "source": 204829757, "path": [[2871.302022473765, 1018.1508988544863], [3359.252022473669, 1330.0008988537115]], "destination": 133128769}, {"length": 50.2953547813, "source": 204829757, "path": [[2871.302022473765, 1018.1508988544863], [2624.7020224736684, 860.6008988536473]], "destination": 204832795}, {"length": 30.6311047804, "source": 654050366, "path": [[-2609.397977526351, -1362.3991011471048], [-2692.347977526266, -1415.8491011464491], [-2689.4979775262673, -1429.349101147892], [-2741.8979775262196, -1462.3491011462875]], "destination": 654050369}, {"length": 2.11857090022, "source": 654050366, "path": [[-2609.397977526351, -1362.3991011471048], [-2597.147977526415, -1367.4991011463078]], "destination": 654050365}, {"length": 13.2814635545, "source": 654050366, "path": [[-2609.397977526351, -1362.3991011471048], [-2677.147977526273, -1322.649101147988]], "destination": 654050367}, {"length": 65.6396621931, "source": 34845759, "path": [[2014.0020224737043, -1237.2491011483078], [1963.1020224737395, -1226.0991011459055], [1605.102022473659, -1116.2991011453016]], "destination": 1298261907}, {"length": 75.7062431842, "source": 34845761, "path": [[3286.8520224735853, -1466.549101145631], [3272.4020224736973, -1420.649101145699], [3181.952022473622, -1133.1991011473974]], "destination": 34845756}, {"length": 12.0650198256, "source": 34845761, "path": [[3286.8520224735853, -1466.549101145631], [3205.8020224736692, -1456.5491011460097]], "destination": 1183501365}, {"length": 15.6772866883, "source": 654050370, "path": [[-2819.9479775263826, -1414.0491011467304], [-2741.8979775262196, -1462.3491011462875]], "destination": 654050369}, {"length": 29.268764611, "source": 654050370, "path": [[-2819.9479775263826, -1414.0491011467304], [-2963.297977526258, -1505.8491011465946]], "destination": 146724602}, {"length": 29.1491974374, "source": 654050370, "path": [[-2819.9479775263826, -1414.0491011467304], [-2677.147977526273, -1322.649101147988]], "destination": 654050367}, {"length": 37.3963379202, "source": 654050371, "path": [[-2451.747977526342, -1278.7991011471433], [-2347.1479775263315, -1214.9991011476402], [-2423.197977526215, -1160.0491011485303]], "destination": 654050379}, {"length": 16.0140062958, "source": 654050371, "path": [[-2451.747977526342, -1278.7991011471433], [-2529.697977526224, -1228.2491011461616]], "destination": 654050372}, {"length": 29.0114354817, "source": 654050371, "path": [[-2451.747977526342, -1278.7991011471433], [-2597.147977526415, -1367.4991011463078]], "destination": 654050365}, {"length": 27.5947107511, "source": 654050372, "path": [[-2529.697977526224, -1228.2491011461616], [-2664.847977526419, -1314.7991011486226]], "destination": 5044108737}, {"length": 16.0140062958, "source": 654050372, "path": [[-2529.697977526224, -1228.2491011461616], [-2451.747977526342, -1278.7991011471433]], "destination": 654050371}, {"length": 21.7445664445, "source": 654050372, "path": [[-2529.697977526224, -1228.2491011461616], [-2423.197977526215, -1160.0491011485303]], "destination": 654050379}, {"length": 155.007223129, "source": 721638470, "path": [[1176.6020224737163, -3306.8991011475646], [1179.752022473668, -3263.04910114672], [1193.0520224736617, -3233.4491011454247], [1201.8520224736928, -3213.899101147888], [1212.852022473676, -3189.3991011457956], [1284.0520224737252, -3204.2991011458353], [1335.9020224736896, -3100.849101148384], [1344.6520224738024, -3083.399101146966], [1301.9520224737403, -3074.24910114662], [1225.902022473635, -3057.8491011468145], [1171.8520224737183, -3046.249101146259], [1189.352022473722, -3008.1491011486605], [1195.3520224736724, -2995.049101148339], [1264.302022473629, -2844.7991011475438], [1288.4520224736295, -2793.5991011460715], [1295.6020224736965, -2778.0991011461256]], "destination": 1893476491}, {"length": 30.7052647931, "source": 721638470, "path": [[1176.6020224737163, -3306.8991011475646], [1231.8520224736674, -3322.149101148142], [1276.7520224736818, -3344.8491011469628], [1308.9020224736903, -3373.9991011465518], [1321.2520224736845, -3398.0491011469385]], "destination": 260584799}, {"length": 37.7314303059, "source": 249168967, "path": [[-20.54797752637505, 2814.3508988520693], [155.60202247377754, 2690.450898853669]], "destination": 249168058}, {"length": 70.3095424831, "source": 249168967, "path": [[-20.54797752637505, 2814.3508988520693], [327.6520224737567, 3032.200898854143]], "destination": 2463876755}, {"length": 14.0617663714, "source": 249168967, "path": [[-20.54797752637505, 2814.3508988520693], [-36.94797752640255, 2824.400898852275], [-88.39797752635548, 2859.1008988527733]], "destination": 2463876764}, {"length": 118.996938087, "source": 249168967, "path": [[-20.54797752637505, 2814.3508988520693], [-333.09797752623103, 2615.350898853563], [-479.99797752629195, 2523.350898851362], [-524.1479775262014, 2496.10089885266], [-609.6479775263841, 2445.5508988516785]], "destination": 249168335}, {"length": 157.957295756, "source": 94266440, "path": [[3247.552022473732, 4075.9008988544565], [3174.952022473754, 4127.700898852282], [3007.602022473632, 4245.100898852883], [2542.0520224737065, 3948.800898854188], [2484.552022473663, 3912.2008988528023]], "destination": 94267986}, {"length": 96.6530229734, "source": 94266440, "path": [[3247.552022473732, 4075.9008988544565], [3302.6020224737886, 4038.850898851365], [3656.5020224736954, 3797.800898851733], [3706.8020224737543, 3763.550898852941]], "destination": 94266791}, {"length": 23.5114147922, "source": 310754378, "path": [[-2989.5979775262927, 3074.400898853469], [-2921.8979775262887, 3012.1008988537315], [-2896.1479775262424, 2988.4008988538826]], "destination": 94268492}, {"length": 72.7317791118, "source": 310754378, "path": [[-2989.5979775262927, 3074.400898853469], [-3016.7479775262686, 3099.30089885313], [-3279.4979775263578, 3340.050898852809]], "destination": 310350260}, {"length": 37.3963379202, "source": 654050379, "path": [[-2423.197977526215, -1160.0491011485303], [-2347.1479775263315, -1214.9991011476402], [-2451.747977526342, -1278.7991011471433]], "destination": 654050371}, {"length": 21.7445664445, "source": 654050379, "path": [[-2423.197977526215, -1160.0491011485303], [-2529.697977526224, -1228.2491011461616]], "destination": 654050372}, {"length": 5.88599678874, "source": 654050379, "path": [[-2423.197977526215, -1160.0491011485303], [-2394.3479775263563, -1141.5991011460846]], "destination": 654047845}, {"length": 23.5114147922, "source": 94268492, "path": [[-2896.1479775262424, 2988.4008988538826], [-2921.8979775262887, 3012.1008988537315], [-2989.5979775262927, 3074.400898853469]], "destination": 310754378}, {"length": 38.6646382773, "source": 94268492, "path": [[-2896.1479775262424, 2988.4008988538826], [-2945.9479775262307, 2971.3508988535864], [-3130.497977526403, 2908.100898853405]], "destination": 1435746523}, {"length": 16.4777939262, "source": 133055565, "path": [[1165.7020224737912, 543.1008988523445], [1085.4020224737583, 491.15089885276575]], "destination": 133129314}, {"length": 45.0032000722, "source": 133055565, "path": [[1165.7020224737912, 543.1008988523445], [952.6520224736323, 689.0508988526278]], "destination": 133055563}, {"length": 18.7590588093, "source": 133055565, "path": [[1165.7020224737912, 543.1008988523445], [1257.102022473644, 602.2508988543507]], "destination": 133129309}, {"length": 26.7386373938, "source": 1365433422, "path": [[1554.952022473799, -1308.849101146592], [1657.852022473705, -1372.8491011484323], [1696.852022473605, -1381.4991011464883]], "destination": 1365433436}, {"length": 51.514780826, "source": 1365433422, "path": [[1554.952022473799, -1308.849101146592], [1544.1520224737105, -1328.2991011465128], [1465.5520224737818, -1469.6991011469152], [1434.0020224736793, -1526.3991011487121]], "destination": 1365433462}, {"length": 25.9293810949, "source": 1365433422, "path": [[1554.952022473799, -1308.849101146592], [1525.602022473649, -1290.5491011458992], [1512.4520224736316, -1242.7491011486325], [1539.802022473724, -1205.449101146172]], "destination": 1364890639}, {"length": 51.2690009154, "source": 34845775, "path": [[3874.502022473747, -1548.9991011463644], [3767.8520224737613, -1768.5991011475721]], "destination": 1183501073}, {"length": 9.4612101007, "source": 34845775, "path": [[3874.502022473747, -1548.9991011463644], [3809.8520224736367, -1549.8991011462238]], "destination": 666952326}, {"length": 255.970085089, "source": 34845776, "path": [[3686.7020224737867, -1953.8991011458506], [3825.752022473594, -1916.1491011487897], [5366.452022473655, -1822.249101145701], [5418.052022473585, -1818.9491011462167]], "destination": 25203763}, {"length": 37.4156429838, "source": 34845776, "path": [[3686.7020224737867, -1953.8991011458506], [3679.252022473767, -2020.8991011472222], [3668.102022473585, -2121.69910114568]], "destination": 185883894}, {"length": 17.8483661989, "source": 305339474, "path": [[-6373.39797752623, -2743.4991011467955], [-6493.497977526408, -2757.5991011481447]], "destination": 305339475}, {"length": 60.0692015399, "source": 721638483, "path": [[1308.052022473749, -2750.9991011456236], [1019.4020224736366, -2686.499101148598], [944.1020224736362, -2664.299101148515], [922.9020224736928, -2658.049101146531]], "destination": 1905705880}, {"length": 6.29658850675, "source": 721638483, "path": [[1308.052022473749, -2750.9991011456236], [1295.6020224736965, -2778.0991011461256]], "destination": 1893476491}, {"length": 247.773060801, "source": 34845780, "path": [[4815.802022473781, -484.0991011469953], [4800.502022473729, -514.899101148103], [4304.202022473724, -1513.8491011477129], [4289.652022473778, -1543.0991011484707]], "destination": 34845778}, {"length": 64.0209107005, "source": 34845780, "path": [[4815.802022473781, -484.0991011469953], [5229.352022473766, -578.1491011482842]], "destination": 205094615}, {"length": 19.6569079229, "source": 1365433429, "path": [[2171.252022473702, -1375.6991011462105], [2191.302022473751, -1463.0991011479466]], "destination": 1365433458}, {"length": 46.5863001721, "source": 25625686, "path": [[3413.9020224737137, -3516.299101146814], [3394.302022473594, -3425.7991011479307], [3351.752022473731, -3311.099101146908]], "destination": 25625557}, {"length": 19.514023672, "source": 25625686, "path": [[3413.9020224737137, -3516.299101146814], [3403.9020224736482, -3603.7991011461654]], "destination": 831956670}, {"length": 27.8217971389, "source": 34845783, "path": [[4060.952022473696, 867.9008988536907], [3954.75202247364, 927.5008988538502], [3919.352022473621, 951.2508988542834]], "destination": 21378252}, {"length": 120.08579535, "source": 34845783, "path": [[4060.952022473696, 867.9008988536907], [4041.6020224736117, 841.1508988537264], [3708.5020224736363, 380.25089885351804]], "destination": 34845790}, {"length": 58.1634303748, "source": 831943768, "path": [[3346.20202247371, -4296.399101146875], [3369.2020224735943, -4035.299101147416]], "destination": 25625680}, {"length": 9.02286244318, "source": 831943768, "path": [[3346.20202247371, -4296.399101146875], [3341.4020224737937, -4336.849101147067]], "destination": 25625668}, {"length": 110.852287565, "source": 831943768, "path": [[3346.20202247371, -4296.399101146875], [3254.9520224736116, -4276.049101147095], [3291.30202247363, -3912.6491011458597], [3382.8520224736812, -3875.2491011457832]], "destination": 831943759}, {"length": 40.522196946, "source": 34845785, "path": [[4271.652022473704, 749.6508988538153], [4060.952022473696, 867.9008988536907]], "destination": 34845783}, {"length": 38.113117713, "source": 34845786, "path": [[4469.852022473741, 638.4508988546145], [4271.652022473704, 749.6508988538153]], "destination": 34845785}, {"length": 12.3324743846, "source": 270731367, "path": [[-700.0479775263191, -3010.649101145901], [-648.2479775262728, -2966.8991011462253]], "destination": 306086747}, {"length": 138.268038585, "source": 270731367, "path": [[-700.0479775263191, -3010.649101145901], [-1237.647977526235, -2499.29910114588]], "destination": 925849932}, {"length": 33.3513996513, "source": 270731367, "path": [[-700.0479775263191, -3010.649101145901], [-575.5979775263764, -3136.2991011469885]], "destination": 306086423}, {"length": 47.5128958082, "source": 1365433436, "path": [[1696.852022473605, -1381.4991011464883], [1702.452022473766, -1341.549101148587], [1617.1520224737, -1260.7491011458194], [1539.802022473724, -1205.449101146172]], "destination": 1364890639}, {"length": 26.7386373938, "source": 1365433436, "path": [[1696.852022473605, -1381.4991011464883], [1657.852022473705, -1372.8491011484323], [1554.952022473799, -1308.849101146592]], "destination": 1365433422}, {"length": 8.54049615543, "source": 1365433436, "path": [[1696.852022473605, -1381.4991011464883], [1752.1520224736964, -1393.7991011481188]], "destination": 721620623}, {"length": 19.2693203976, "source": 133129309, "path": [[1257.102022473644, 602.2508988543507], [1351.002022473624, 663.0008988537384]], "destination": 133129768}, {"length": 25.4630562593, "source": 133129309, "path": [[1257.102022473644, 602.2508988543507], [1394.402022473651, 531.9008988529106]], "destination": 133129305}, {"length": 18.7590588093, "source": 133129309, "path": [[1257.102022473644, 602.2508988543507], [1165.7020224737912, 543.1008988523445]], "destination": 133055565}, {"length": 38.8819126395, "source": 1365433438, "path": [[1953.2520224736504, -1388.699101145363], [2038.202022473623, -1423.9991011457676], [2149.2520224737355, -1458.0991011463595], [2191.302022473751, -1463.0991011479466]], "destination": 1365433458}, {"length": 13.5853896965, "source": 1365433438, "path": [[1953.2520224736504, -1388.699101145363], [2034.8520224737765, -1359.5491011457739]], "destination": 1365433427}, {"length": 5.49478539006, "source": 1365433438, "path": [[1953.2520224736504, -1388.699101145363], [1921.5020224736534, -1375.499101147426]], "destination": 721620614}, {"length": 146.976088105, "source": 721638495, "path": [[906.8020224736184, -2566.0991011484666], [937.6020224736159, -2524.4491011484624], [1371.25202247379, -1980.099101146493]], "destination": 177220256}, {"length": 3.86096694882, "source": 721638495, "path": [[906.8020224736184, -2566.0991011484666], [895.2020224737289, -2581.6991011460286]], "destination": 567929279}, {"length": 9.70665467085, "source": 721638495, "path": [[906.8020224736184, -2566.0991011484666], [858.2520224735823, -2536.349101145419]], "destination": 1905705879}, {"length": 9.52008801778, "source": 721638495, "path": [[906.8020224736184, -2566.0991011484666], [966.152022473743, -2583.6491011475005]], "destination": 925860223}, {"length": 16.3650343249, "source": 930735200, "path": [[-3181.397977526368, -1250.899101147951], [-3151.097977526218, -1262.249101145585], [-3083.7479775263077, -1286.7991011482616]], "destination": 146729069}, {"length": 25.7027851172, "source": 930735200, "path": [[-3181.397977526368, -1250.899101147951], [-3207.097977526274, -1245.5991011464107], [-3243.6979775263276, -1243.0991011456172], [-3296.697977526408, -1247.4491011467137], [-3352.147977526254, -1259.7991011453757]], "destination": 146729006}, {"length": 33.0267326471, "source": 930735200, "path": [[-3181.397977526368, -1250.899101147951], [-3224.2479775264064, -1222.8991011475898], [-3256.2979775263566, -1201.6991011485345], [-3289.3479775262244, -1172.1991011484079], [-3317.94797752627, -1134.3991011472099]], "destination": 146729061}, {"length": 53.6335620886, "source": 133129314, "path": [[1085.4020224737583, 491.15089885276575], [824.0520224735981, 322.0508988519555]], "destination": 133052908}, {"length": 20.4479005731, "source": 133129314, "path": [[1085.4020224737583, 491.15089885276575], [1150.152022473705, 457.65089885208], [1191.6020224735923, 431.5508988526062]], "destination": 133129316}, {"length": 16.4777939262, "source": 133129314, "path": [[1085.4020224737583, 491.15089885276575], [1165.7020224737912, 543.1008988523445]], "destination": 133055565}, {"length": 9.18227356081, "source": 34845795, "path": [[4286.702022473721, -375.7491011455727], [4298.902022473739, -335.2491011483494]], "destination": 1179777317}, {"length": 151.492850858, "source": 34845795, "path": [[4286.702022473721, -375.7491011455727], [4262.802022473755, -385.049101147672], [3456.952022473647, -698.9491011459847], [3395.7520224736636, -722.7991011475865]], "destination": 666941109}, {"length": 43.9392112579, "source": 133129316, "path": [[1191.6020224735923, 431.5508988526062], [1484.8020224735858, 388.8508988545425]], "destination": 133129777}, {"length": 20.4479005731, "source": 133129316, "path": [[1191.6020224735923, 431.5508988526062], [1150.152022473705, 457.65089885208], [1085.4020224737583, 491.15089885276575]], "destination": 133129314}, {"length": 20.6666115608, "source": 133129316, "path": [[1191.6020224735923, 431.5508988526062], [1168.302022473755, 384.15089885290854], [1194.9020224737428, 344.7508988543291]], "destination": 133129723}, {"length": 166.718961781, "source": 929442917, "path": [[-3441.5479775262716, -2831.699101147223], [-3334.147977526403, -2849.2991011468403], [-2947.547977526277, -3400.949101145301], [-2975.347977526299, -3467.899101146088]], "destination": 25624150}, {"length": 157.065993917, "source": 929442917, "path": [[-3441.5479775262716, -2831.699101147223], [-3374.2979775264193, -2922.999101148349], [-3020.84797752622, -3405.7991011486874], [-2975.347977526299, -3467.899101146088]], "destination": 25624150}, {"length": 7.34508265941, "source": 929442917, "path": [[-3441.5479775262716, -2831.699101147223], [-3463.347977526343, -2801.949101147727]], "destination": 270731910}, {"length": 41.5914717462, "source": 270922855, "path": [[2427.802022473724, -3544.8991011470807], [2145.3020224737606, -3523.89910114681]], "destination": 25625331}, {"length": 41.5847415959, "source": 133129321, "path": [[863.202022473697, -265.0991011456938], [766.8520224737297, -335.09910114659647], [755.2020224736999, -372.0491011485194], [733.35202247371, -424.9491011485418]], "destination": 133130150}, {"length": 53.9201830719, "source": 133129321, "path": [[863.202022473697, -265.0991011456938], [1080.1520224736905, -408.0991011470303], [1123.5520224737172, -436.6991011472976]], "destination": 368286}, {"length": 10.0600206512, "source": 133129321, "path": [[863.202022473697, -265.0991011456938], [912.552022473756, -233.59910114706395]], "destination": 133129375}, {"length": 9.05676060932, "source": 654070890, "path": [[3221.352022473756, 3381.700898852813], [3174.952022473754, 3354.750898854064]], "destination": 3732250530}, {"length": 45.0292523935, "source": 654070890, "path": [[3221.352022473756, 3381.700898852813], [3346.502022473663, 3296.300898853133], [3434.9520224736807, 3235.9508988513144]], "destination": 21378259}, {"length": 15.9542376049, "source": 654070890, "path": [[3221.352022473756, 3381.700898852813], [3155.752022473646, 3439.000898854516]], "destination": 470173}, {"length": 31.7038493094, "source": 1365433451, "path": [[1108.852022473794, -1462.999101146778], [1073.8020224736467, -1442.5491011458291], [1054.952022473632, -1331.4991011483812]], "destination": 1365433424}, {"length": 18.567584322, "source": 1365433451, "path": [[1108.852022473794, -1462.999101146778], [1214.1020224736287, -1509.6491011483693]], "destination": 1365433460}, {"length": 7.38302302055, "source": 1365433451, "path": [[1108.852022473794, -1462.999101146778], [1140.7020224736275, -1437.2491011478417]], "destination": 1365433447}, {"length": 3.08941543064, "source": 94268946, "path": [[-3753.197977526268, 3798.950898854514], [-3739.9979775263328, 3788.100898852065]], "destination": 151348664}, {"length": 111.137786088, "source": 94268946, "path": [[-3753.197977526268, 3798.950898854514], [-3714.997977526391, 3813.8008988539696], [-3098.2979775262543, 4052.0008988522704]], "destination": 94257976}, {"length": 17.8070883252, "source": 94268946, "path": [[-3753.197977526268, 3798.950898854514], [-3802.6479775263856, 3780.300898853284], [-3829.4979775264082, 3771.7508988528434], [-3863.597977526334, 3767.000898854178]], "destination": 310350368}, {"length": 17.5139791593, "source": 1365433458, "path": [[2191.302022473751, -1463.0991011479466], [2309.1020224736967, -1477.0991011481271]], "destination": 721620626}, {"length": 19.6569079229, "source": 1365433458, "path": [[2191.302022473751, -1463.0991011479466], [2171.252022473702, -1375.6991011462105]], "destination": 1365433429}, {"length": 38.8819126395, "source": 1365433458, "path": [[2191.302022473751, -1463.0991011479466], [2149.2520224737355, -1458.0991011463595], [2038.202022473623, -1423.9991011457676], [1953.2520224736504, -1388.699101145363]], "destination": 1365433438}, {"length": 5.52096676709, "source": 1365433459, "path": [[1227.9520224736107, -1477.3991011480803], [1238.152022473793, -1453.4991011458942]], "destination": 1365436849}, {"length": 14.4981045361, "source": 1365433459, "path": [[1227.9520224736107, -1477.3991011480803], [1324.352022473718, -1492.4991011469046]], "destination": 1365436879}, {"length": 7.45288491741, "source": 1365433459, "path": [[1227.9520224736107, -1477.3991011480803], [1214.1020224736287, -1509.6491011483693]], "destination": 1365433460}, {"length": 15.5780915594, "source": 1365433459, "path": [[1227.9520224736107, -1477.3991011480803], [1140.7020224736275, -1437.2491011478417]], "destination": 1365433447}, {"length": 16.630238272, "source": 1365433460, "path": [[1214.1020224736287, -1509.6491011483693], [1323.502022473777, -1529.9491011475652]], "destination": 1365433464}, {"length": 18.567584322, "source": 1365433460, "path": [[1214.1020224736287, -1509.6491011483693], [1108.852022473794, -1462.999101146778]], "destination": 1365433451}, {"length": 7.45288491741, "source": 1365433460, "path": [[1214.1020224736287, -1509.6491011483693], [1227.9520224736107, -1477.3991011480803]], "destination": 1365433459}, {"length": 100.314432315, "source": 583327934, "path": [[2421.0020224737505, -3009.5491011472577], [2411.852022473626, -3029.3991011483004], [2222.202022473585, -3441.249101147292]], "destination": 25625329}, {"length": 44.4991040247, "source": 583327934, "path": [[2421.0020224737505, -3009.5491011472577], [2141.352022473786, -2930.8491011477145]], "destination": 4616541}, {"length": 30.4380165049, "source": 1365433462, "path": [[1434.0020224736793, -1526.3991011487121], [1533.602022473657, -1523.249101147428], [1638.152022473749, -1541.8991011486582]], "destination": 1365433469}, {"length": 51.514780826, "source": 1365433462, "path": [[1434.0020224736793, -1526.3991011487121], [1465.5520224737818, -1469.6991011469152], [1544.1520224737105, -1328.2991011465128], [1554.952022473799, -1308.849101146592]], "destination": 1365433422}, {"length": 12.4064301839, "source": 1365433462, "path": [[1434.0020224736793, -1526.3991011487121], [1349.3020224737418, -1529.0991011482902]], "destination": 1365433463}, {"length": 3.77957497316, "source": 1365433463, "path": [[1349.3020224737418, -1529.0991011482902], [1323.502022473777, -1529.9491011475652]], "destination": 1365433464}, {"length": 36.3909605093, "source": 1365433463, "path": [[1349.3020224737418, -1529.0991011482902], [1379.6020224736694, -1568.8991011479914], [1528.002022473718, -1637.149101146207]], "destination": 1365433494}, {"length": 12.4064301839, "source": 1365433463, "path": [[1349.3020224737418, -1529.0991011482902], [1434.0020224736793, -1526.3991011487121]], "destination": 1365433462}, {"length": 123.267644599, "source": 675140728, "path": [[-6031.69797752634, 4020.150898853103], [-5681.14797752628, 3768.050898852238], [-5562.397977526334, 3715.8508988532903], [-5479.647977526314, 3656.250898853131], [-5440.79797752639, 3628.300898853354]], "destination": 675140747}, {"length": 31.2600599246, "source": 675140728, "path": [[-6031.69797752634, 4020.150898853103], [-5900.047977526412, 4088.9508988541934], [-5864.397977526359, 4107.550898851287]], "destination": 141567053}, {"length": 29.7362864774, "source": 2556489919, "path": [[-870.4979775262523, 3769.9008988525406], [-933.097977526387, 3787.400898854543], [-952.8979775264013, 3792.950898851899], [-1010.0479775263516, 3774.650898851206], [-1016.9479775263834, 3782.9008988516935], [-1029.1979775263194, 3798.550898853392], [-1033.347977526411, 3803.8508988513795]], "destination": 2556489826}, {"length": 172.829234077, "source": 2556489919, "path": [[-870.4979775262523, 3769.9008988525406], [150.8020224736395, 4089.6508988517153], [195.95202247368883, 4103.800898853649]], "destination": 94269403}, {"length": 15.2513728297, "source": 1365433469, "path": [[1638.152022473749, -1541.8991011486582], [1659.6020224737274, -1549.1491011481173], [1683.0520224737634, -1599.5491011473462]], "destination": 1365433475}, {"length": 26.6161435183, "source": 1365433469, "path": [[1638.152022473749, -1541.8991011486582], [1528.002022473718, -1637.149101146207]], "destination": 1365433494}, {"length": 30.4380165049, "source": 1365433469, "path": [[1638.152022473749, -1541.8991011486582], [1533.602022473657, -1523.249101147428], [1434.0020224736793, -1526.3991011487121]], "destination": 1365433462}, {"length": 36.9193876678, "source": 1365433469, "path": [[1638.152022473749, -1541.8991011486582], [1653.152022473625, -1522.399101148153], [1724.902022473662, -1429.1491011455548], [1752.1520224736964, -1393.7991011481188]], "destination": 721620623}, {"length": 21.4318709154, "source": 653602325, "path": [[-963.4479775262328, -523.2491011462059], [-856.9979775263637, -457.04910114707786]], "destination": 653598402}, {"length": 36.8433016286, "source": 653602325, "path": [[-963.4479775262328, -523.2491011462059], [-997.1979775262873, -530.8991011467867], [-1132.4979775262368, -442.8991011486971], [-1147.9479775262646, -456.54910114834024]], "destination": 1503278429}, {"length": 148.547433172, "source": 653602325, "path": [[-963.4479775262328, -523.2491011462059], [-1122.3479775264168, -406.84910114663353], [-1243.247977526396, -344.44910114572735], [-1669.2479775262113, -44.64910114876375]], "destination": 3422228394}, {"length": 28.5270772834, "source": 1365433475, "path": [[1683.0520224737634, -1599.5491011473462], [1739.6520224737255, -1609.0991011488143], [1787.6520224737735, -1626.5491011466793], [1826.0520224737675, -1673.9991011469613]], "destination": 1365433501}, {"length": 24.1770557163, "source": 1365433475, "path": [[1683.0520224737634, -1599.5491011473462], [1528.002022473718, -1637.149101146207]], "destination": 1365433494}, {"length": 15.2513728297, "source": 1365433475, "path": [[1683.0520224737634, -1599.5491011473462], [1659.6020224737274, -1549.1491011481173], [1638.152022473749, -1541.8991011486582]], "destination": 1365433469}, {"length": 54.1991410449, "source": 158834411, "path": [[-566.0979775263808, 2031.8508988523831], [-267.19797752639, 2117.0008988526943], [-225.94797752639727, 2128.300898853297]], "destination": 21346799}, {"length": 21.3616937794, "source": 1365433480, "path": [[2124.052022473677, -1624.949101145745], [2138.4020224737287, -1598.7491011486554], [2238.902022473788, -1615.4991011454456]], "destination": 2916316459}, {"length": 55.9134255764, "source": 1365433480, "path": [[2124.052022473677, -1624.949101145745], [2110.4020224735896, -1671.4491011455834], [2114.3520224737867, -1719.8991011468934], [2114.702022473658, -1764.049101147691], [2081.60202247365, -1803.6991011456394], [2034.8020224736363, -1827.9491011483628], [2033.5020224737655, -1854.8991011471117]], "destination": 1365433523}, {"length": 46.1938504858, "source": 1365433480, "path": [[2124.052022473677, -1624.949101145745], [2091.6020224737154, -1622.2991011467514], [2050.502022473699, -1634.899101148335], [1956.7020224737776, -1634.3491011454603], [1826.0520224737675, -1673.9991011469613]], "destination": 1365433501}, {"length": 62.9880803555, "source": 185858641, "path": [[-4554.597977526331, 558.6008988522906], [-4269.897977526416, 720.8008988541792], [-4229.147977526271, 744.0008988517377]], "destination": 185858517}, {"length": 44.6643200303, "source": 185858641, "path": [[-4554.597977526331, 558.6008988522906], [-4533.097977526212, 542.0508988542849], [-4503.0979775262385, 518.9508988543423], [-4358.197977526234, 404.8508988532262]], "destination": 308768783}, {"length": 24.8586445499, "source": 1179696267, "path": [[3827.85202247371, -183.2491011484194], [3872.352022473713, -124.19910114758181], [3934.8020224736492, -144.59910114794639]], "destination": 1179696264}, {"length": 10.4143779553, "source": 1179696267, "path": [[3827.85202247371, -183.2491011484194], [3890.1520224736696, -205.899101146656]], "destination": 277743794}, {"length": 19.2923416907, "source": 4843850892, "path": [[-4077.447977526294, 631.700898853893], [-4128.79797752641, 579.250898852024], [-4139.347977526242, 555.9008988527125]], "destination": 308768760}, {"length": 21.826227246, "source": 4843850892, "path": [[-4077.447977526294, 631.700898853893], [-4053.8479775262813, 655.2008988514046], [-4000.5479775262475, 708.7008988513332], [-3991.397977526345, 708.8008988525019]], "destination": 277572136}, {"length": 33.4146784255, "source": 4843850892, "path": [[-4077.447977526294, 631.700898853893], [-4094.3479775263913, 645.0008988529987], [-4105.397977526292, 653.1008988517328], [-4119.997977526379, 663.8008988524291], [-4229.147977526271, 744.0008988517377]], "destination": 185858517}, {"length": 70.8921640122, "source": 2705349773, "path": [[1574.0020224737084, 1158.7508988526452], [1601.102022473766, 1181.600898853219], [1708.9020224736462, 1171.6008988535975], [1947.0520224735833, 1323.4008988511903]], "destination": 133129017}, {"length": 70.4863024374, "source": 2705349773, "path": [[1574.0020224737084, 1158.7508988526452], [1619.7020224737457, 1146.7008988539362], [1878.5020224736381, 969.8508988513765], [1894.3020224737595, 932.2008988519315]], "destination": 2705349799}, {"length": 9.82386786913, "source": 2705349773, "path": [[1574.0020224737084, 1158.7508988526452], [1526.5520224736483, 1127.5008988533841]], "destination": 1223805567}, {"length": 1.56571525626, "source": 4843850894, "path": [[-3982.847977526349, 704.5508988525739], [-3991.397977526345, 708.8008988525019]], "destination": 277572136}, {"length": 21.8422549408, "source": 4843850894, "path": [[-3982.847977526349, 704.5508988525739], [-4036.6979775263712, 648.9508988529735], [-4063.2479775262186, 621.8008988518875]], "destination": 277572138}, {"length": 11.5521247333, "source": 133129359, "path": [[284.25202247372994, -706.9991011476873], [206.45202247360217, -715.8491011480805]], "destination": 133129360}, {"length": 94.627185398, "source": 133129359, "path": [[284.25202247372994, -706.9991011476873], [358.1520224738011, -688.3991011470414], [431.5520224738023, -665.8491011464207], [504.4520224737337, -637.2991011467377], [569.7520224736685, -595.849101145518], [648.302022473679, -540.3491011470862], [685.852022473732, -499.5491011463571], [715.4020224737767, -460.89910114588406], [733.35202247371, -424.9491011485418]], "destination": 133130150}, {"length": 9.18178277946, "source": 133129359, "path": [[284.25202247372994, -706.9991011476873], [243.5020224735851, -675.5991011466733]], "destination": 4468710871}, {"length": 31.4720229208, "source": 133129360, "path": [[206.45202247360217, -715.8491011480805], [164.25202247360994, -724.1491011455992], [105.15202247374233, -759.5991011477565], [47.15202247362882, -805.7991011476417]], "destination": 133130099}, {"length": 62.3846871904, "source": 133129360, "path": [[206.45202247360217, -715.8491011480805], [328.20202247374476, -730.0491011470456], [402.7020224737221, -737.5991011464578], [513.0020224737298, -739.0991011462233], [629.0020224737348, -728.8991011478174]], "destination": 133130127}, {"length": 51.8181005825, "source": 133129360, "path": [[206.45202247360217, -715.8491011480805], [86.15202247375109, -714.0991011453934], [7.70202247379892, -710.3991011483402], [-54.74797752635929, -703.9991011481561], [-146.54797752622352, -700.2991011475501]], "destination": 133130069}, {"length": 11.5521247333, "source": 133129360, "path": [[206.45202247360217, -715.8491011480805], [284.25202247372994, -706.9991011476873]], "destination": 133129359}, {"length": 31.3194853722, "source": 133128728, "path": [[2260.902022473754, 1248.3008988546374], [2414.1020224737185, 1346.6508988528858]], "destination": 133128841}, {"length": 43.986465616, "source": 133128728, "path": [[2260.902022473754, 1248.3008988546374], [2058.352022473731, 1394.4508988537052]], "destination": 133128732}, {"length": 4.58254028832, "source": 133128728, "path": [[2260.902022473754, 1248.3008988546374], [2238.5020224737764, 1233.900898853335]], "destination": 1223798073}, {"length": 35.2067125076, "source": 249169042, "path": [[-821.8479775263799, 2622.0508988537003], [-970.7479775262761, 2746.400898853807]], "destination": 21378264}, {"length": 116.504832909, "source": 249169042, "path": [[-821.8479775263799, 2622.0508988537003], [-760.797977526373, 2660.050898853683], [-585.9479775263133, 2775.000898854074], [-561.897977526371, 2766.3508988524654], [-252.14797752637352, 2969.700898852068]], "destination": 249169172}, {"length": 50.0491800487, "source": 249169042, "path": [[-821.8479775263799, 2622.0508988537003], [-719.0979775262285, 2536.600898853436], [-609.6479775263841, 2445.5508988516785]], "destination": 249168335}, {"length": 19.181500841, "source": 310745283, "path": [[-905.647977526236, 3620.600898852189], [-979.9979775262368, 3596.950898852924], [-1023.6479775262985, 3583.0508988539123]], "destination": 21346797}, {"length": 13.0265804557, "source": 174042261, "path": [[5787.352022473602, 3653.500898852968], [5791.902022473705, 3595.000898851453]], "destination": 174043290}, {"length": 51.9414818505, "source": 174042261, "path": [[5787.352022473602, 3653.500898852968], [6048.402022473587, 3811.750898851329]], "destination": 2705349422}, {"length": 26.5079341208, "source": 1365433494, "path": [[1528.002022473718, -1637.149101146207], [1502.7520224737411, -1667.149101148624], [1505.1020224736699, -1691.8991011465323], [1586.9520224736088, -1718.5991011459123]], "destination": 721620616}, {"length": 24.1770557163, "source": 1365433494, "path": [[1528.002022473718, -1637.149101146207], [1683.0520224737634, -1599.5491011473462]], "destination": 1365433475}, {"length": 26.6161435183, "source": 1365433494, "path": [[1528.002022473718, -1637.149101146207], [1638.152022473749, -1541.8991011486582]], "destination": 1365433469}, {"length": 36.3909605093, "source": 1365433494, "path": [[1528.002022473718, -1637.149101146207], [1379.6020224736694, -1568.8991011479914], [1349.3020224737418, -1529.0991011482902]], "destination": 1365433463}, {"length": 31.378422297, "source": 654070255, "path": [[4693.852022473743, 2285.5008988535983], [4545.452022473695, 2387.3508988536687]], "destination": 3732222535}, {"length": 14.0138332794, "source": 470170, "path": [[6648.152022473708, 4201.950898853112], [6596.95202247379, 4255.200898853673]], "destination": 130096418}, {"length": 114.53492566, "source": 470170, "path": [[6648.152022473708, 4201.950898853112], [6597.952022473708, 4169.100898852917], [6153.902022473679, 3878.7008988521166], [6093.102022473707, 3838.850898851831]], "destination": 116147966}, {"length": 12.2668922167, "source": 470170, "path": [[6648.152022473708, 4201.950898853112], [6693.002022473582, 4155.350898852106]], "destination": 130096486}, {"length": 53.5104133456, "source": 470171, "path": [[5768.552022473727, 3505.2508988542286], [6021.752022473681, 3331.650898854122]], "destination": 116147961}, {"length": 38.0116538292, "source": 470171, "path": [[5768.552022473727, 3505.2508988542286], [5586.7020224738, 3627.300898852326]], "destination": 116147982}, {"length": 24.9421958401, "source": 470171, "path": [[5768.552022473727, 3505.2508988542286], [5938.352022473614, 3495.5008988539757]], "destination": 2705349513}, {"length": 10.7377807307, "source": 470172, "path": [[4574.452022473752, 4316.650898854135], [4625.552022473611, 4282.000898854221]], "destination": 256622941}, {"length": 18.0701808189, "source": 470172, "path": [[4574.452022473752, 4316.650898854135], [4489.152022473686, 4375.400898851467]], "destination": 256622742}, {"length": 176.823993407, "source": 470172, "path": [[4574.452022473752, 4316.650898854135], [4567.302022473685, 4309.60089885346], [4495.602022473788, 4264.10089885465], [3745.7520224737364, 3788.2508988538175], [3706.8020224737543, 3763.550898852941]], "destination": 94266791}, {"length": 117.062320346, "source": 25625757, "path": [[2615.852022473719, -3463.549101148544], [2823.5020224736118, -3443.599101146333], [3020.452022473696, -3360.2991011463246], [3138.752022473712, -3310.2991011482172], [3320.4520224736634, -3233.9991011482994]], "destination": 123748604}, {"length": 10.0600206512, "source": 133129375, "path": [[912.552022473756, -233.59910114706395], [863.202022473697, -265.0991011456938]], "destination": 133129321}, {"length": 32.7212013405, "source": 133129375, "path": [[912.552022473756, -233.59910114706395], [755.3520224736765, -128.94910114624736]], "destination": 133129675}, {"length": 101.80425305, "source": 133129375, "path": [[912.552022473756, -233.59910114706395], [1411.6520224736196, 85.35089885342018]], "destination": 204836247}, {"length": 13.0037286105, "source": 281774765, "path": [[-730.6479775261998, -458.94910114796517], [-792.7979775264049, -417.14910114620807]], "destination": 653598371}, {"length": 10.9690486879, "source": 281774765, "path": [[-730.6479775261998, -458.94910114796517], [-675.6979775262017, -425.3991011466951]], "destination": 281774796}, {"length": 57.3556952222, "source": 260588707, "path": [[-4775.847977526393, -1751.1991011467387], [-4423.04797752624, -1863.6491011463363]], "destination": 952746620}, {"length": 68.7788041146, "source": 260588707, "path": [[-4775.847977526393, -1751.1991011467387], [-5193.897977526341, -1609.749101145752]], "destination": 34818327}, {"length": 60.7062565374, "source": 2543955108, "path": [[394.2020224736442, 3557.400898852592], [485.602022473719, 3606.9008988519613], [691.9020224736006, 3466.80089885254]], "destination": 2543955200}, {"length": 12.3190811409, "source": 2543955108, "path": [[394.2020224736442, 3557.400898852592], [382.3520224737198, 3565.3508988531257], [374.0520224737587, 3570.9008988540345], [335.2520224737532, 3596.950898852924]], "destination": 2463876696}, {"length": 63.3390632329, "source": 2543955108, "path": [[394.2020224736442, 3557.400898852592], [299.75202247367605, 3502.8008988540196], [512.4020224736014, 3357.000898851936]], "destination": 2543955241}, {"length": 6.60876084702, "source": 2543955108, "path": [[394.2020224736442, 3557.400898852592], [425.8520224735829, 3536.2008988535363]], "destination": 2463876703}, {"length": 243.825783226, "source": 277578917, "path": [[-3740.197977526227, 2136.0008988544623], [-3804.097977526233, 2170.6008988537915], [-4356.897977526364, 2557.4508988519538], [-4562.847977526374, 2708.1508988544556], [-4845.497977526314, 2819.7508988512254], [-4856.247977526263, 2910.8508988535677]], "destination": 2645500891}, {"length": 140.261439961, "source": 277578917, "path": [[-3740.197977526227, 2136.0008988544623], [-3133.7979775263316, 1707.2008988527898], [-3089.0479775262934, 1673.2008988533664]], "destination": 695566727}, {"length": 22.4608083637, "source": 470182, "path": [[3672.6520224736882, -2200.8491011469287], [3655.302022473661, -2301.1991011472333]], "destination": 4956714224}, {"length": 25.0194041586, "source": 470182, "path": [[3672.6520224736882, -2200.8491011469287], [3502.6020224737663, -2188.94910114642]], "destination": 270185391}, {"length": 96.8028350773, "source": 470183, "path": [[3420.952022473722, -1892.7991011459255], [3300.352022473696, -1509.449101146032], [3286.8520224735853, -1466.549101145631]], "destination": 34845761}, {"length": 99.9800451993, "source": 470183, "path": [[3420.952022473722, -1892.7991011459255], [3491.352022473748, -1840.049101147656], [3393.352022473595, -1527.6491011455562], [3351.6520224736723, -1473.8491011456745]], "destination": 1183501163}, {"length": 106.879604547, "source": 470183, "path": [[3420.952022473722, -1892.7991011459255], [3335.9520224736093, -1866.4991011476673], [3221.2520224736973, -1506.199101147132], [3205.8020224736692, -1456.5491011460097]], "destination": 1183501365}, {"length": 159.892099242, "source": 470184, "path": [[2760.5020224736877, 206.45089885462653], [2653.90202247362, 138.15089885227394], [2021.402022473584, -267.0991011477497], [1977.6020224737679, -295.1491011486951]], "destination": 34845752}, {"length": 15.8015456663, "source": 470184, "path": [[2760.5020224736877, 206.45089885462653], [2652.5520224736088, 208.50089885371403]], "destination": 666885557}, {"length": 138.018107162, "source": 470184, "path": [[2760.5020224736877, 206.45089885462653], [2835.4520224735948, 255.50089885229], [2936.352022473665, 321.50089885263355], [3386.9020224737146, 616.1508988533626], [3429.4520224738003, 644.0008988519708]], "destination": 36487357}, {"length": 109.710070049, "source": 470184, "path": [[2760.5020224736877, 206.45089885462653], [2897.0520224735897, 156.05089885184498], [3372.352022473768, -19.34910114798072], [3414.4520224737016, -34.899101148511136]], "destination": 34845781}, {"length": 88.8821797103, "source": 470185, "path": [[5258.552022473717, -584.1991011479308], [5836.3520224737895, -707.5991011475935]], "destination": 25203153}, {"length": 180.438358602, "source": 470185, "path": [[5258.552022473717, -584.1991011479308], [5271.702022473734, -559.0991011459323], [5646.552022473772, 154.3508988532949], [5661.402022473671, 182.65089885360908]], "destination": 29434738}, {"length": 55.7314134373, "source": 470186, "path": [[-1677.4979775262543, -1167.249101147405], [-1496.8979775262792, -1309.9491011487885], [-1478.9479775263458, -1324.1991011483378], [-1433.3479775263668, -1359.5991011463582]], "destination": 25624512}, {"length": 56.1288083761, "source": 470186, "path": [[-1677.4979775262543, -1167.249101147405], [-1633.4979775263214, -1334.0491011462063], [-1649.1979775263844, -1416.4991011469397]], "destination": 25624516}, {"length": 39.1709807958, "source": 470186, "path": [[-1677.4979775262543, -1167.249101147405], [-1748.5479775263268, -1245.9491011469481], [-1875.9479775263267, -1257.4491011463351]], "destination": 470188}, {"length": 12.7771947108, "source": 470187, "path": [[-2060.9979775263464, -1148.9491011467123], [-2077.2479775263973, -1092.4991011478369]], "destination": 25624514}, {"length": 182.693752624, "source": 470187, "path": [[-2060.9979775263464, -1148.9491011467123], [-2193.447977526297, -1233.0491011454114], [-2914.0979775263977, -1697.69910114681], [-2921.347977526301, -1733.9491011476582]], "destination": 146696196}, {"length": 36.2663291279, "source": 470188, "path": [[-1875.9479775263267, -1257.4491011463351], [-2060.9979775263464, -1148.9491011467123]], "destination": 470187}, {"length": 39.3759511521, "source": 470188, "path": [[-1875.9479775263267, -1257.4491011463351], [-1862.5479775262743, -1186.8491011455262], [-1821.0479775262468, -1166.099101148177], [-1734.3979775263917, -1122.74910114607]], "destination": 146706925}, {"length": 39.9177199847, "source": 470189, "path": [[-1720.1479775263983, -1404.7991011487682], [-1805.1979775262073, -1324.349101146538], [-1875.9479775263267, -1257.4491011463351]], "destination": 470188}, {"length": 176.328375311, "source": 470189, "path": [[-1720.1479775263983, -1404.7991011487682], [-2587.797977526396, -1955.099101145663]], "destination": 470190}, {"length": 35.5251380506, "source": 470190, "path": [[-2587.797977526396, -1955.099101145663], [-2759.1979775263285, -1841.9491011485434]], "destination": 305911690}, {"length": 114.714546885, "source": 470190, "path": [[-2587.797977526396, -1955.099101145663], [-2649.347977526251, -2014.8491011475755], [-2608.197977526316, -2043.5491011454587], [-2167.8979775263674, -1761.6491011480662]], "destination": 146739092}, {"length": 176.328375311, "source": 470190, "path": [[-2587.797977526396, -1955.099101145663], [-1720.1479775263983, -1404.7991011487682]], "destination": 470189}, {"length": 91.0990812983, "source": 930837679, "path": [[-3177.2479775262764, -973.3991011486864], [-3152.9979775262173, -963.5491011472652], [-3125.9479775263, -960.3991011459811], [-3105.447977526321, -961.6991011469622], [-3079.297977526263, -970.8991011478929], [-2712.5479775262916, -1210.0991011472217]], "destination": 930837353}, {"length": 91.0737682545, "source": 930837679, "path": [[-3177.2479775262764, -973.3991011486864], [-3189.8979775262237, -986.4991011454549], [-3196.947977526232, -1001.1991011467103], [-3195.7479775261977, -1018.5491011469594], [-3181.647977526403, -1038.3491011474177], [-3085.747977526365, -1102.1991011475052], [-2835.4479775263285, -1289.7491011472084]], "destination": 930837217}, {"length": 9.12467301346, "source": 930837679, "path": [[-3177.2479775262764, -973.3991011486864], [-3220.1979775263735, -943.6491011456383]], "destination": 146729049}, {"length": 168.398156373, "source": 470192, "path": [[6599.152022473742, -831.4991011459938], [6587.702022473607, -851.0991011476676], [6209.20202247377, -1499.249101147626], [6186.35202247364, -1538.3491011462525]], "destination": 25203906}, {"length": 16.9033184366, "source": 929534840, "path": [[-3143.047977526292, -2597.349101147728], [-3164.9479775262002, -2591.099101145744], [-3196.147977526209, -2592.949101146047], [-3239.9479775262475, -2620.249101145333]], "destination": 929535146}, {"length": 55.9134255764, "source": 1365433523, "path": [[2033.5020224737655, -1854.8991011471117], [2034.8020224736363, -1827.9491011483628], [2081.60202247365, -1803.6991011456394], [2114.702022473658, -1764.049101147691], [2114.3520224737867, -1719.8991011468934], [2110.4020224735896, -1671.4491011455834], [2124.052022473677, -1624.949101145745]], "destination": 1365433480}, {"length": 43.1367423633, "source": 506888734, "path": [[-5509.997977526382, -2309.3491011465517], [-5216.747977526248, -2329.4991011475477]], "destination": 506888735}, {"length": 70.5837228233, "source": 2705349815, "path": [[1716.7020224737594, 821.6008988526369], [1688.8520224735971, 790.4508988545444], [1569.152022473652, 804.1508988512192], [1351.002022473624, 663.0008988537384]], "destination": 133129768}, {"length": 8.51036712568, "source": 2705349815, "path": [[1716.7020224737594, 821.6008988526369], [1750.8020224736854, 852.6008988525291]], "destination": 1223805577}, {"length": 70.034414477, "source": 2705349815, "path": [[1716.7020224737594, 821.6008988526369], [1660.7520224736215, 832.3508988539174], [1403.7020224737516, 1010.8508988544429], [1388.552022473677, 1039.8508988522792]], "destination": 2705349788}, {"length": 31.9502513317, "source": 506888735, "path": [[-5216.747977526248, -2329.4991011475477], [-5194.947977526398, -2186.5491011467952]], "destination": 506888704}, {"length": 37.6610187232, "source": 506888735, "path": [[-5216.747977526248, -2329.4991011475477], [-4960.997977526249, -2348.7491011486836]], "destination": 506888736}, {"length": 79.2695672939, "source": 506888735, "path": [[-5216.747977526248, -2329.4991011475477], [-5245.447977526352, -2500.0991011481233], [-5239.347977526343, -2514.6491011476255], [-4984.997977526273, -2486.3491011473116]], "destination": 506888656}, {"length": 43.1367423633, "source": 506888735, "path": [[-5216.747977526248, -2329.4991011475477], [-5509.997977526382, -2309.3491011465517]], "destination": 506888734}, {"length": 10.6514000998, "source": 133129405, "path": [[176.80202247372102, 260.65089885207726], [224.90202247360537, 224.70089885118227]], "destination": 133052180}, {"length": 36.4980474457, "source": 133129405, "path": [[176.80202247372102, 260.65089885207726], [158.95202247362406, 351.4008988538819], [154.4520224736612, 423.9508988526097]], "destination": 133129414}, {"length": 85.9890744956, "source": 133129405, "path": [[176.80202247372102, 260.65089885207726], [-228.2479775264079, 540.8008988538882]], "destination": 4455425695}, {"length": 11.70288598, "source": 838040829, "path": [[-5106.647977526357, -220.64910114849567], [-5028.647977526335, -232.29910114608288]], "destination": 34817817}, {"length": 11.3267956948, "source": 838040829, "path": [[-5106.647977526357, -220.64910114849567], [-5109.447977526216, -271.54910114646214]], "destination": 370134459}, {"length": 26.3325630574, "source": 270922944, "path": [[2767.2520224737427, -3530.7991011457316], [2591.7520224736368, -3557.0991011475426]], "destination": 661227}, {"length": 42.8254565387, "source": 270922944, "path": [[2767.2520224737427, -3530.7991011457316], [2623.9020224736455, -3698.69910114673]], "destination": 517915652}, {"length": 30.8016835296, "source": 506888736, "path": [[-4960.997977526249, -2348.7491011486836], [-4984.997977526273, -2486.3491011473116]], "destination": 506888656}, {"length": 47.5790396947, "source": 506888736, "path": [[-4960.997977526249, -2348.7491011486836], [-4637.6979775262225, -2371.8991011456583]], "destination": 506888737}, {"length": 40.7054969954, "source": 506888736, "path": [[-4960.997977526249, -2348.7491011486836], [-4924.447977526336, -2167.299101145659]], "destination": 506888762}, {"length": 37.6610187232, "source": 506888736, "path": [[-4960.997977526249, -2348.7491011486836], [-5216.747977526248, -2329.4991011475477]], "destination": 506888735}, {"length": 110.491805088, "source": 25203906, "path": [[6186.35202247364, -1538.3491011462525], [6133.752022473793, -1538.3991011468368], [5486.752022473729, -1538.8991011455744], [5431.152022473684, -1538.9491011461587]], "destination": 25203875}, {"length": 64.9546185694, "source": 25203906, "path": [[6186.35202247364, -1538.3491011462525], [6167.902022473637, -1570.6491011471257], [6056.452022473735, -1765.7491011462412], [6030.1520224737005, -1811.749101147342]], "destination": 25203766}, {"length": 96.6530229734, "source": 94266791, "path": [[3706.8020224737543, 3763.550898852941], [3656.5020224736954, 3797.800898851733], [3302.6020224737886, 4038.850898851365], [3247.552022473732, 4075.9008988544565]], "destination": 94266440}, {"length": 176.823993407, "source": 94266791, "path": [[3706.8020224737543, 3763.550898852941], [3745.7520224737364, 3788.2508988538175], [4495.602022473788, 4264.10089885465], [4567.302022473685, 4309.60089885346], [4574.452022473752, 4316.650898854135]], "destination": 470172}, {"length": 108.807904504, "source": 94266791, "path": [[3706.8020224737543, 3763.550898852941], [3304.602022473624, 3497.950898854185], [3155.752022473646, 3439.000898854516]], "destination": 470173}, {"length": 47.7782781849, "source": 159884486, "path": [[624.6020224736081, 3191.9508988522693], [389.75202247359954, 3042.7008988525017]], "destination": 159884488}, {"length": 31.1431629779, "source": 159884486, "path": [[624.6020224736081, 3191.9508988522693], [477.1020224736411, 3292.90089885248]], "destination": 371609795}, {"length": 217.127266901, "source": 2484772385, "path": [[-1898.2979775263864, 458.85089885189245], [-1917.647977526249, 456.1008988517301], [-1935.3979775262876, 461.6008988520548], [-1960.9979775263575, 481.55089885426605], [-2043.547977526261, 554.7508988534844], [-2142.2979775262975, 678.8508988542219], [-2194.5479775262734, 754.8508988541869], [-2221.1979775264012, 818.4508988513528], [-2331.4479775262685, 1104.8008988545632], [-2419.24797752624, 1309.050898854025], [-2419.797977526228, 1317.300898854512], [-2414.0479775263125, 1330.0008988537115], [-2401.4979775262013, 1341.9008988542203]], "destination": 2477903488}, {"length": 26.4212810415, "source": 2484772385, "path": [[-1898.2979775263864, 458.85089885189245], [-1816.2479775263307, 397.65089885435145], [-1771.3979775262346, 375.00089885256216]], "destination": 2484772392}, {"length": 15.74841772, "source": 2484772385, "path": [[-1898.2979775263864, 458.85089885189245], [-1878.1479775262787, 466.40089885130465], [-1871.7479775263168, 462.80089885186726], [-1840.9479775263194, 439.85089885367756], [-1822.1479775262228, 424.9008988530534]], "destination": 2386533028}, {"length": 109.485668134, "source": 159884488, "path": [[389.75202247359954, 3042.7008988525017], [533.9020224737201, 2938.6508988515916], [155.60202247377754, 2690.450898853669]], "destination": 249168058}, {"length": 11.7663066551, "source": 159884488, "path": [[389.75202247359954, 3042.7008988525017], [365.4520224736224, 3054.2008988518887], [327.6520224737567, 3032.200898854143]], "destination": 2463876755}, {"length": 23.1309233887, "source": 3134287610, "path": [[-62.39797752627396, -183.89910114535724], [-80.49797752640586, -183.69910114657273], [-79.74797752630103, -154.99910114868953], [-44.29797752636411, -155.44910114684285], [-45.047977526246896, -184.09910114769445], [-62.39797752627396, -183.89910114535724]], "destination": 3134287610}, {"length": 23.1309233887, "source": 3134287610, "path": [[-62.39797752627396, -183.89910114535724], [-45.047977526246896, -184.09910114769445], [-44.29797752636411, -155.44910114684285], [-79.74797752630103, -154.99910114868953], [-80.49797752640586, -183.69910114657273], [-62.39797752627396, -183.89910114535724]], "destination": 3134287610}, {"length": 13.0359173919, "source": 3134287610, "path": [[-62.39797752627396, -183.89910114535724], [-64.64797752636642, -242.49910114804152]], "destination": 3134287620}, {"length": 9.45739893837, "source": 21378251, "path": [[4841.102022473676, 465.7508988543668], [4788.652022473583, 490.6008988534438]], "destination": 666949200}, {"length": 163.269033077, "source": 21378251, "path": [[4841.102022473676, 465.7508988543668], [4519.8020224737065, -202.79910114595623], [4504.702022473773, -234.24910114755448]], "destination": 666950999}, {"length": 64.8280431213, "source": 21378252, "path": [[3919.352022473621, 951.2508988542834], [3874.30202247363, 982.2008988535913], [3842.6020224737736, 1004.0008988525528], [3655.0020224737077, 1131.7008988527277], [3611.8520224737163, 1161.1008988516858]], "destination": 21378254}, {"length": 58.6225616964, "source": 21378252, "path": [[3919.352022473621, 951.2508988542834], [4119.152022473704, 1080.9008988523772], [4204.602022473747, 1136.3508988537774]], "destination": 36487359}, {"length": 18.5551387167, "source": 310350370, "path": [[-3873.397977526283, 3772.4508988539183], [-3810.0979775264054, 3787.400898854543], [-3753.197977526268, 3798.950898854514]], "destination": 94268946}, {"length": 22.0533617408, "source": 310350370, "path": [[-3873.397977526283, 3772.4508988539183], [-3891.547977526333, 3817.450898853991], [-3891.1479775263215, 3851.050898852293], [-3890.74797752631, 3870.0508988540605]], "destination": 151347748}, {"length": 99.080917488, "source": 21378254, "path": [[3611.8520224737163, 1161.1008988516858], [3560.202022473646, 1127.3008988545996], [3170.1020224736976, 872.1008988530343], [3131.7020224737034, 846.9508988540042]], "destination": 36487176}, {"length": 52.7121879028, "source": 21378254, "path": [[3611.8520224737163, 1161.1008988516858], [3571.052022473653, 1189.000898854431], [3410.6520224737037, 1298.7508988544505], [3359.252022473669, 1330.0008988537115]], "destination": 133128769}, {"length": 45.889443719, "source": 21378253, "path": [[5960.202022473604, 119.95089885274979], [5847.652022473726, 143.55089885143002], [5704.552022473664, 173.6008988544313], [5661.402022473671, 182.65089885360908]], "destination": 29434738}, {"length": 127.939606764, "source": 21378253, "path": [[5960.202022473604, 119.95089885274979], [5972.1020224736685, 143.3008988520612], [6237.702022473757, 665.5008988545319]], "destination": 36487707}, {"length": 28.763933541, "source": 21378256, "path": [[5092.40202247363, 2105.2508988539385], [5022.552022473592, 2060.650898851435], [4951.302022473625, 2015.2008988532089]], "destination": 3772612379}, {"length": 17.7128069919, "source": 21378256, "path": [[5092.40202247363, 2105.2508988539385], [5022.702022473791, 2154.150898853402], [5008.102022473704, 2162.3008988527204]], "destination": 3772612374}, {"length": 52.5921247396, "source": 21378256, "path": [[5092.40202247363, 2105.2508988539385], [5183.452022473612, 2047.4508988534978], [5313.052022473786, 1965.200898851549], [5351.0520224737675, 1941.0508988535469]], "destination": 3732221759}, {"length": 12.5253622758, "source": 21378257, "path": [[752.4020224736195, 1510.35089885454], [814.3020224737895, 1549.2508988543818]], "destination": 4804746712}, {"length": 38.5643307709, "source": 21378257, "path": [[752.4020224736195, 1510.35089885454], [707.2520224737922, 1540.8508988521419], [568.4020224736574, 1634.500898852309]], "destination": 160018100}, {"length": 12.7496553385, "source": 94267807, "path": [[1413.5520224736188, 3228.150898852533], [1492.852022473734, 3204.4008988521]], "destination": 159886074}, {"length": 10.1292146598, "source": 21378259, "path": [[3434.9520224736807, 3235.9508988513144], [3482.9020224735887, 3203.100898854672]], "destination": 2704171953}, {"length": 45.0292523935, "source": 21378259, "path": [[3434.9520224736807, 3235.9508988513144], [3346.502022473663, 3296.300898853133], [3221.352022473756, 3381.700898852813]], "destination": 654070890}, {"length": 9.4987632213, "source": 21378259, "path": [[3434.9520224736807, 3235.9508988513144], [3388.302022473644, 3206.250898852403]], "destination": 654070636}, {"length": 111.13730966, "source": 21378260, "path": [[-528.5479775263279, 688.5008988533059], [-479.747977526257, 721.0008988529637], [-25.147977526396303, 1013.1508988528992], [13.952022473784353, 1038.250898851345]], "destination": 204834024}, {"length": 52.7864096647, "source": 21378260, "path": [[-528.5479775263279, 688.5008988533059], [-486.3979775262539, 658.3008988521044], [-334.34797752640577, 549.3508988543283], [-281.89797752631307, 515.3508988513522]], "destination": 159973957}, {"length": 100.700049416, "source": 21378260, "path": [[-528.5479775263279, 688.5008988533059], [-1024.9979775263096, 374.90089885139355]], "destination": 3491466823}, {"length": 15.5586979951, "source": 151352533, "path": [[-726.697977526225, 4380.650898852423], [-820.84797752624, 4348.150898852765]], "destination": 158843500}, {"length": 54.4818360218, "source": 151352533, "path": [[-726.697977526225, 4380.650898852423], [-558.3979775263259, 4182.050898851486], [-545.347977526367, 4166.7008988532925]], "destination": 151352087}, {"length": 67.9296020864, "source": 21378262, "path": [[-1684.3979775262862, 2918.4008988529795], [-1938.447977526403, 2662.750898853261]], "destination": 21346802}, {"length": 104.436721474, "source": 21378262, "path": [[-1684.3979775262862, 2918.4008988529795], [-1654.4979775263703, 2890.7508988531563], [-1270.3479775262317, 2535.900898852361]], "destination": 21378261}, {"length": 44.2867431037, "source": 675140823, "path": [[-4229.447977526224, 2721.250898851224], [-4025.9479775262007, 2573.8508988517597]], "destination": 94268321}, {"length": 105.303598135, "source": 675140823, "path": [[-4229.447977526224, 2721.250898851224], [-4271.747977526275, 2733.1508988517326], [-4286.147977526244, 2743.4008988542755], [-4728.547977526309, 3058.9008988535224]], "destination": 4616562}, {"length": 113.061222025, "source": 21378264, "path": [[-970.7479775262761, 2746.400898853807], [-1018.2479775262543, 2783.900898851499], [-1431.747977526321, 3110.4508988519797], [-1465.2979775262586, 3137.0008988531595]], "destination": 34909161}, {"length": 35.2067125076, "source": 21378264, "path": [[-970.7479775262761, 2746.400898853807], [-821.8479775263799, 2622.0508988537003]], "destination": 249169042}, {"length": 40.5128544475, "source": 506888740, "path": [[-4603.797977526414, -2191.0991011466763], [-4637.6979775262225, -2371.8991011456583]], "destination": 506888737}, {"length": 47.2098354515, "source": 506888740, "path": [[-4603.797977526414, -2191.0991011466763], [-4924.447977526336, -2167.299101145659]], "destination": 506888762}, {"length": 36.3437831801, "source": 506888740, "path": [[-4603.797977526414, -2191.0991011466763], [-4410.197977526398, -2088.6991011472846]], "destination": 2561299773}, {"length": 34.0205462257, "source": 506888740, "path": [[-4603.797977526414, -2191.0991011466763], [-4576.8979775262505, -2039.1491011473306]], "destination": 506888334}, {"length": 58.0841250349, "source": 506888740, "path": [[-4603.797977526414, -2191.0991011466763], [-4523.147977526287, -2239.6991011461864], [-4277.497977526412, -2338.1491011456037]], "destination": 506888925}, {"length": 7.03931985187, "source": 21378255, "path": [[2706.5520224736074, 598.5008988531604], [2697.6020224736, 629.6008988542212]], "destination": 2705349832}, {"length": 5.66757373514, "source": 21378255, "path": [[2706.5520224736074, 598.5008988531604], [2712.802022473593, 573.3508988541303]], "destination": 1224697328}, {"length": 142.644624358, "source": 470173, "path": [[3155.752022473646, 3439.000898854516], [3147.7020224737194, 3577.6508988512032], [3239.0520224736542, 4006.9508988516136], [3247.552022473732, 4075.9008988544565]], "destination": 94266440}, {"length": 15.9542376049, "source": 470173, "path": [[3155.752022473646, 3439.000898854516], [3221.352022473756, 3381.700898852813]], "destination": 654070890}, {"length": 12.0829631738, "source": 470173, "path": [[3155.752022473646, 3439.000898854516], [3142.9520224737216, 3434.150898854682], [3090.5520224737693, 3405.850898854368]], "destination": 2705349524}, {"length": 102.154312354, "source": 470173, "path": [[3155.752022473646, 3439.000898854516], [3058.952022473749, 3523.80089885429], [2922.9020224736946, 3615.0508988512797], [2718.9520224737416, 3751.800898854185], [2683.6020224736412, 3776.4008988538935]], "destination": 94266789}, {"length": 108.807904504, "source": 470173, "path": [[3155.752022473646, 3439.000898854516], [3304.602022473624, 3497.950898854185], [3706.8020224737543, 3763.550898852941]], "destination": 94266791}, {"length": 8.9335200013, "source": 3732186333, "path": [[5418.2020224737835, 3831.9508988529096], [5381.10202247366, 3863.850898852661]], "destination": 1219877554}, {"length": 25.1848723864, "source": 3732186333, "path": [[5418.2020224737835, 3831.9508988529096], [5398.652022473582, 3821.250898852213], [5501.352022473593, 3752.350898853507]], "destination": 3732186332}, {"length": 11.8147898521, "source": 3732186333, "path": [[5418.2020224737835, 3831.9508988529096], [5487.502022473612, 3859.2008988516113]], "destination": 3732186343}, {"length": 25.7682815003, "source": 2705349854, "path": [[2365.152022473671, 412.55089885439133], [2491.452022473695, 493.30089885302186]], "destination": 2705349849}, {"length": 45.0191186253, "source": 2705349854, "path": [[2365.152022473671, 412.55089885439133], [2156.052022473709, 561.0508988524998]], "destination": 133129242}, {"length": 6.43533395645, "source": 2705349854, "path": [[2365.152022473671, 412.55089885439133], [2333.8020224736856, 392.25089885164266]], "destination": 4389568699}, {"length": 22.1283067856, "source": 151347749, "path": [[-3839.9479775264035, 3880.4508988512507], [-3753.197977526268, 3798.950898854514]], "destination": 94268946}, {"length": 7.16360739878, "source": 3732186336, "path": [[6092.352022473601, 3440.900898851851], [6083.552022473793, 3427.3008988527918], [6064.802022473615, 3415.0008988547143]], "destination": 3732186353}, {"length": 16.8008220222, "source": 3732186336, "path": [[6092.352022473601, 3440.900898851851], [6072.952022473599, 3455.700898854275], [6002.952022473584, 3462.100898854459], [5989.102022473602, 3459.4508988519124]], "destination": 3732186334}, {"length": 10.1345519121, "source": 3732186336, "path": [[6092.352022473601, 3440.900898851851], [6099.202022473715, 3486.250898852461]], "destination": 3732186335}, {"length": 7.50410395548, "source": 3732186337, "path": [[6108.402022473758, 3535.3508988542617], [6159.4020224737815, 3531.800898851856]], "destination": 3732186338}, {"length": 37.1496065367, "source": 3732186337, "path": [[6108.402022473758, 3535.3508988542617], [5858.002022473663, 3562.850898852332]], "destination": 3732186331}, {"length": 11.0018656609, "source": 3732186337, "path": [[6108.402022473758, 3535.3508988542617], [6099.202022473715, 3486.250898852461]], "destination": 3732186335}, {"length": 7.50410395548, "source": 3732186338, "path": [[6159.4020224737815, 3531.800898851856], [6108.402022473758, 3535.3508988542617]], "destination": 3732186337}, {"length": 9.99756196093, "source": 3732186338, "path": [[6159.4020224737815, 3531.800898851856], [6226.752022473692, 3524.2508988524432]], "destination": 116147963}, {"length": 57.5811722134, "source": 3732186338, "path": [[6159.4020224737815, 3531.800898851856], [6179.502022473748, 3582.1008988534686], [6178.152022473738, 3652.7008988542775], [6137.952022473581, 3736.5508988536076], [6092.352022473601, 3774.500898853006]], "destination": 3732186339}, {"length": 57.5811722134, "source": 3732186339, "path": [[6092.352022473601, 3774.500898853006], [6137.952022473581, 3736.5508988536076], [6178.152022473738, 3652.7008988542775], [6179.502022473748, 3582.1008988534686], [6159.4020224737815, 3531.800898851856]], "destination": 3732186338}, {"length": 60.7535257374, "source": 3732186339, "path": [[6092.352022473601, 3774.500898853006], [5866.152022473648, 3624.4508988545476], [5858.002022473663, 3562.850898852332]], "destination": 3732186331}, {"length": 9.83120458999, "source": 3732186339, "path": [[6092.352022473601, 3774.500898853006], [6149.352022473798, 3797.9008988529017]], "destination": 116147965}, {"length": 10.4876800752, "source": 3732186339, "path": [[6092.352022473601, 3774.500898853006], [6048.402022473587, 3811.750898851329]], "destination": 2705349422}, {"length": 62.7757254312, "source": 3732186340, "path": [[5985.052022473791, 3856.5508988526176], [5748.90202247369, 3698.4008988518726], [5656.902022473709, 3696.7508988539066]], "destination": 3732186329}, {"length": 54.9127041987, "source": 3732186340, "path": [[5985.052022473791, 3856.5508988526176], [5907.252022473664, 3883.9008988524884], [5822.752022473621, 3903.350898852409], [5714.152022473718, 3906.8508988542308], [5626.002022473653, 3899.8508988541403]], "destination": 3732186342}, {"length": 13.6092516406, "source": 3732186340, "path": [[5985.052022473791, 3856.5508988526176], [6048.402022473587, 3811.750898851329]], "destination": 2705349422}, {"length": 8.4064775645, "source": 3732186340, "path": [[5985.052022473791, 3856.5508988526176], [6029.802022473607, 3880.2508988524664]], "destination": 116147967}, {"length": 247.325290785, "source": 277572134, "path": [[-3064.3979775262233, 1638.750898852237], [-3952.0479775263516, 748.8008988545403], [-3991.397977526345, 708.8008988525019]], "destination": 277572136}, {"length": 8.87125769287, "source": 277572134, "path": [[-3064.3979775262233, 1638.750898852237], [-3038.5979775262585, 1602.6508988531418]], "destination": 185877802}, {"length": 8.46789995883, "source": 277572134, "path": [[-3064.3979775262233, 1638.750898852237], [-3089.0479775262934, 1673.2008988533664]], "destination": 695566727}, {"length": 45.3933349043, "source": 3732186342, "path": [[5626.002022473653, 3899.8508988541403], [5656.902022473709, 3696.7508988539066]], "destination": 3732186329}, {"length": 54.9127041987, "source": 3732186342, "path": [[5626.002022473653, 3899.8508988541403], [5714.152022473718, 3906.8508988542308], [5822.752022473621, 3903.350898852409], [5907.252022473664, 3883.9008988524884], [5985.052022473791, 3856.5508988526176]], "destination": 3732186340}, {"length": 22.1929721158, "source": 3732186342, "path": [[5626.002022473653, 3899.8508988541403], [5487.502022473612, 3859.2008988516113]], "destination": 3732186343}, {"length": 23.8490201082, "source": 3732186343, "path": [[5487.502022473612, 3859.2008988516113], [5501.352022473593, 3752.350898853507]], "destination": 3732186332}, {"length": 11.8147898521, "source": 3732186343, "path": [[5487.502022473612, 3859.2008988516113], [5418.2020224737835, 3831.9508988529096]], "destination": 3732186333}, {"length": 22.1929721158, "source": 3732186343, "path": [[5487.502022473612, 3859.2008988516113], [5626.002022473653, 3899.8508988541403]], "destination": 3732186342}, {"length": 60.593591413, "source": 133129448, "path": [[349.60202247358296, 814.0508988532247], [479.85202247358137, 872.9008988517251], [594.5520224737155, 901.1508988514549], [724.302022473644, 922.20089885231]], "destination": 133129489}, {"length": 15.9038809886, "source": 133129448, "path": [[349.60202247358296, 814.0508988532247], [271.30202247360734, 863.6508988537628]], "destination": 160015156}, {"length": 73.8917074522, "source": 133129448, "path": [[349.60202247358296, 814.0508988532247], [284.002022473695, 759.3008988528993], [222.55202247367657, 691.7008988516216], [187.10202247373962, 625.4008988513249], [169.85202247377094, 575.8008988543395], [160.35202247377532, 513.5008988546019]], "destination": 133129422}, {"length": 8.22822428059, "source": 2705349867, "path": [[2298.9020224737365, 260.0008988515867], [2244.002022473657, 268.00089885270495]], "destination": 1224697290}, {"length": 339.646602573, "source": 25625836, "path": [[4401.452022473773, -3278.6491011478347], [4039.652022473694, -3215.1991011453165], [3093.5020224736045, -3078.1491011460103], [2430.052022473594, -2982.0991011462183], [2141.352022473786, -2930.8491011477145]], "destination": 4616541}, {"length": 12.494022254, "source": 21378258, "path": [[876.0520224737611, 1588.050898853055], [814.3020224737895, 1549.2508988543818]], "destination": 4804746712}, {"length": 52.6964353154, "source": 21378258, "path": [[876.0520224737611, 1588.050898853055], [1017.1520224737662, 1496.7508988519285], [1130.4520224737491, 1420.3508988543945]], "destination": 133128621}, {"length": 63.3028578365, "source": 25625838, "path": [[4769.3520224736385, -3352.799101147497], [4336.702022473604, -3348.3991011458156]], "destination": 25625641}, {"length": 56.2921483725, "source": 25625838, "path": [[4769.3520224736385, -3352.799101147497], [4401.452022473773, -3278.6491011478347]], "destination": 25625836}, {"length": 86.875557184, "source": 185883887, "path": [[1539.9520224737007, -1775.0491011483405], [1789.8520224737258, -1855.4491011464336], [2084.302022473672, -1930.1991011460018]], "destination": 185883888}, {"length": 5.1212364256, "source": 185883887, "path": [[1539.9520224737007, -1775.0491011483405], [1556.7520224737398, -1754.8491011467604]], "destination": 4508646347}, {"length": 16.063737173, "source": 185883887, "path": [[1539.9520224737007, -1775.0491011483405], [1487.2020224736548, -1838.3991011461376]], "destination": 470181}, {"length": 19.5792677144, "source": 4956714224, "path": [[3655.302022473661, -2301.1991011472333], [3522.552022473757, -2290.0491011483837]], "destination": 4956714225}, {"length": 19.5792677144, "source": 4956714224, "path": [[3655.302022473661, -2301.1991011472333], [3522.552022473757, -2290.0491011483837]], "destination": 4956714225}, {"length": 105.316767289, "source": 4956714224, "path": [[3655.302022473661, -2301.1991011472333], [4181.702022473699, -2304.8991011478392], [4202.552022473771, -2305.849101148283], [4257.052022473617, -2306.3491011470205], [4268.652022473729, -2306.2991011464364], [4364.0520224736965, -2275.2991011465438]], "destination": 721620621}, {"length": 163.224614964, "source": 4956714224, "path": [[3655.302022473661, -2301.1991011472333], [3652.952022473732, -2317.049101147717], [3648.7520224737223, -2361.449101147883], [3646.8020224735833, -2380.149101146145], [3587.802022473774, -2986.899101145468], [3585.1020224737517, -3014.8491011487977], [3584.6020224736817, -3033.649101148228]], "destination": 5056992117}, {"length": 7.16360739878, "source": 3732186353, "path": [[6064.802022473615, 3415.0008988547143], [6083.552022473793, 3427.3008988527918], [6092.352022473601, 3440.900898851851]], "destination": 3732186336}, {"length": 10.3248556661, "source": 3732186353, "path": [[6064.802022473615, 3415.0008988547143], [6112.102022473698, 3380.550898853585]], "destination": 116147962}, {"length": 29.2437923279, "source": 3732186353, "path": [[6064.802022473615, 3415.0008988547143], [6026.5520224735965, 3387.650898851291], [5966.302022473613, 3426.75089885347], [5969.552022473623, 3448.200898851894], [5989.102022473602, 3459.4508988519124]], "destination": 3732186334}, {"length": 39.0267058818, "source": 652950772, "path": [[-1712.047977526332, -1615.1491011484609], [-1677.0479775263248, -1640.2491011469067], [-1658.2979775263684, -1655.9491011456373], [-1647.9479775262096, -1675.8491011472643], [-1641.397977526271, -1703.0491011453819], [-1646.447977526222, -1733.8491011464896], [-1658.8979775262746, -1762.4991011473412], [-1666.5979775263295, -1773.4991011479906]], "destination": 652950778}, {"length": 2.02504197485, "source": 652950772, "path": [[-1712.047977526332, -1615.1491011484609], [-1702.5979775262545, -1608.4991011453553]], "destination": 930672228}, {"length": 4.72202387923, "source": 652950772, "path": [[-1712.047977526332, -1615.1491011484609], [-1735.197977526415, -1629.9491011473322]], "destination": 1976882994}, {"length": 131.350352311, "source": 3732221822, "path": [[3672.002022473642, 2759.750898853497], [3796.8520224735958, 2805.750898854598], [3868.702022473691, 2870.9508988526977], [3434.6020224735876, 3173.3008988545917]], "destination": 3732222536}, {"length": 58.0614578251, "source": 3732221822, "path": [[3672.002022473642, 2759.750898853497], [3950.9020224737233, 2574.050898854097]], "destination": 3732221821}, {"length": 19.2023192874, "source": 3732221822, "path": [[3672.002022473642, 2759.750898853497], [3579.2020224736375, 2698.700898854156]], "destination": 167918462}, {"length": 12.3984365833, "source": 185883894, "path": [[3668.102022473585, -2121.69910114568], [3745.5020224737013, -2144.3991011480534]], "destination": 2705350276}, {"length": 256.776886922, "source": 185883894, "path": [[3668.102022473585, -2121.69910114568], [3787.3520224736003, -2080.2991011485974], [5406.552022473754, -2118.7491011467328]], "destination": 25203501}, {"length": 17.6150641237, "source": 185883894, "path": [[3668.102022473585, -2121.69910114568], [3672.6520224736882, -2200.8491011469287]], "destination": 470182}, {"length": 117.398323761, "source": 25625847, "path": [[5155.602022473671, -3214.8491011483316], [5957.852022473675, -3226.999101148209]], "destination": 370354998}, {"length": 12.112362317, "source": 24909773, "path": [[1796.1520224736294, 806.3008988514753], [1716.7020224737594, 821.6008988526369]], "destination": 2705349815}, {"length": 39.4780533993, "source": 652950778, "path": [[-1666.5979775263295, -1773.4991011479906], [-1738.3979775262849, -1776.4991011475217], [-1790.0479775263545, -1786.8491011476806], [-1874.2979775263625, -1816.0991011484384], [-1915.5979775262733, -1832.9991011469815]], "destination": 652939761}, {"length": 39.0267058818, "source": 652950778, "path": [[-1666.5979775263295, -1773.4991011479906], [-1658.8979775262746, -1762.4991011473412], [-1646.447977526222, -1733.8491011464896], [-1641.397977526271, -1703.0491011453819], [-1647.9479775262096, -1675.8491011472643], [-1658.2979775263684, -1655.9491011456373], [-1677.0479775263248, -1640.2491011469067], [-1712.047977526332, -1615.1491011484609]], "destination": 652950772}, {"length": 48.7262244892, "source": 652950778, "path": [[-1666.5979775263295, -1773.4991011479906], [-1679.1979775263587, -1782.8491011471215], [-1682.497977526287, -1795.8991011468584], [-1686.497977526402, -1817.5491011476197], [-1682.2479775262523, -1845.9491011455498], [-1677.0979775262429, -1874.7991011487386], [-1666.197977526318, -1896.699101145316], [-1652.6979775262073, -1915.4491011477148], [-1624.4479775262555, -1943.9991011473978], [-1591.9979775262939, -1973.149101146987]], "destination": 652950821}, {"length": 55.2980461322, "source": 652950778, "path": [[-1666.5979775263295, -1773.4991011479906], [-1609.4979775262975, -1778.0491011478716], [-1594.5979775262576, -1788.049101147493], [-1594.7979775263743, -1804.099101146761], [-1608.547977526298, -1833.7491011486406], [-1590.2979775264114, -1853.3491011467618], [-1582.3979775262399, -1868.2491011468016], [-1581.4979775263805, -1886.5991011480787], [-1573.2979775262556, -1918.6991011466148], [-1566.1479775264108, -1945.0491011454574], [-1572.0979775262213, -1956.8491011483502], [-1591.9979775262939, -1973.149101146987]], "destination": 652950821}, {"length": 63.8418016982, "source": 94268669, "path": [[-3513.69797752632, 3582.250898851669], [-3279.4979775263578, 3340.050898852809]], "destination": 310350260}, {"length": 172.23068514, "source": 94268670, "path": [[-3022.2979775262893, 3819.9008988542005], [-3015.0979775263045, 3773.950898853684], [-2911.64797752641, 3113.950898853801], [-2947.097977526347, 3095.9508988530615], [-2989.5979775262927, 3074.400898853469]], "destination": 310754378}, {"length": 89.2426435542, "source": 94268670, "path": [[-3022.2979775262893, 3819.9008988542005], [-3082.2979775262384, 3790.900898852811], [-3491.84797752633, 3592.800898854165], [-3513.69797752632, 3582.250898851669]], "destination": 94268669}, {"length": 32.3932097554, "source": 185858261, "path": [[-4535.747977526316, 165.75089885151328], [-4473.647977526251, 180.50089885335296], [-4388.497977526385, 266.00089885420175]], "destination": 4069612201}, {"length": 234.565319797, "source": 185858261, "path": [[-4535.747977526316, 165.75089885151328], [-4461.147977526281, 135.5508988538645], [-4012.7479775262655, -99.89910114782674], [-3838.5979775263922, 2.000898852827504], [-4297.397977526262, 357.45089885352854]], "destination": 308768787}, {"length": 102.526156404, "source": 185858261, "path": [[-4535.747977526316, 165.75089885151328], [-4901.647977526347, -198.69910114778122], [-4921.897977526291, -218.94910114639288]], "destination": 34818443}, {"length": 33.0716692651, "source": 185858261, "path": [[-4535.747977526316, 165.75089885151328], [-4545.8479775262185, 218.50089885333546], [-4465.647977526243, 298.15089885332213]], "destination": 4069612195}, {"length": 60.7062565374, "source": 2543955200, "path": [[691.9020224736006, 3466.80089885254], [485.602022473719, 3606.9008988519613], [394.2020224736442, 3557.400898852592]], "destination": 2543955108}, {"length": 8.88851202881, "source": 2543955200, "path": [[691.9020224736006, 3466.80089885254], [647.4020224735976, 3439.6008988544227]], "destination": 2463876717}, {"length": 52.0800722571, "source": 2543955200, "path": [[691.9020224736006, 3466.80089885254], [857.7520224737345, 3353.950898851821], [771.9520224735987, 3301.30089885472]], "destination": 2543955254}, {"length": 13.7060966887, "source": 2543955200, "path": [[691.9020224736006, 3466.80089885254], [708.9020224737563, 3477.2008988532834], [760.5020224736858, 3508.7508988524974]], "destination": 2463876709}, {"length": 25.4410445142, "source": 1224697305, "path": [[2344.602022473774, 358.2508988522193], [2268.552022473669, 309.5508988515405], [2244.002022473657, 268.00089885270495]], "destination": 1224697290}, {"length": 301.374561319, "source": 4955856133, "path": [[1286.5520224736304, -1983.499101147146], [1404.1020224737633, -2019.4491011480409], [1557.7520224736575, -2069.299101147948], [1830.9020224736016, -2140.899101146232], [2156.4020224738024, -2219.499101148159], [2313.2520224737887, -2259.549101147229], [2385.4520224737553, -2282.149101148434], [2403.552022473665, -2304.9491011484233], [2438.252022473719, -2326.7991011479694], [2812.552022473769, -2393.349101147635], [3066.052022473675, -2402.2491011486127], [3114.3520224736767, -2404.2491011471157], [3152.102022473624, -2397.2991011476097], [3203.5020224736586, -2387.099101145651]], "destination": 185885465}, {"length": 39.6839409255, "source": 4955856133, "path": [[1286.5520224736304, -1983.499101147146], [1205.4020224736562, -2003.3491011481885], [1039.202022473651, -1950.3991011475819]], "destination": 4955856147}, {"length": 89.6627045147, "source": 4955856133, "path": [[1286.5520224736304, -1983.499101147146], [1231.3520224735973, -1928.2991011486672], [1136.802022473793, -1890.7991011474223], [801.2520224736086, -1745.149101147092]], "destination": 4955856150}, {"length": 34.0205462257, "source": 506888334, "path": [[-4576.8979775262505, -2039.1491011473306], [-4603.797977526414, -2191.0991011466763]], "destination": 506888740}, {"length": 27.3918220377, "source": 506888334, "path": [[-4576.8979775262505, -2039.1491011473306], [-4541.59797752629, -2038.5491011474244], [-4410.197977526398, -2088.6991011472846]], "destination": 2561299773}, {"length": 41.5294502356, "source": 506888334, "path": [[-4576.8979775262505, -2039.1491011473306], [-4827.097977526229, -1950.9491011469038]], "destination": 506888255}, {"length": 6.55810776441, "source": 652950792, "path": [[-1953.3479775262208, -1769.3991011462629], [-1985.4979775262293, -1789.9491011483804]], "destination": 1976882985}, {"length": 24.9262915922, "source": 652950792, "path": [[-1953.3479775262208, -1769.3991011462629], [-1831.1479775263706, -1691.299101146626]], "destination": 1976882990}, {"length": 15.1843280752, "source": 652950792, "path": [[-1953.3479775262208, -1769.3991011462629], [-1915.5979775262733, -1832.9991011469815]], "destination": 652939761}, {"length": 109.443859535, "source": 21378263, "path": [[-444.59797752627316, 3096.1508988518463], [-482.39797752636093, 3071.000898852816], [-931.0979775263295, 2772.7508988526497], [-970.7479775262761, 2746.400898853807]], "destination": 21378264}, {"length": 39.7982194446, "source": 21378263, "path": [[-444.59797752627316, 3096.1508988518463], [-252.14797752637352, 2969.700898852068]], "destination": 249169172}, {"length": 206.623710557, "source": 25625869, "path": [[5811.452022473684, -3322.9491011468326], [4535.952022473699, -3291.79910114874], [4401.452022473773, -3278.6491011478347]], "destination": 25625836}, {"length": 48.0125564786, "source": 25625869, "path": [[5811.452022473684, -3322.9491011468326], [5490.952022473739, -3369.3991011460867]], "destination": 25625871}, {"length": 105.632296578, "source": 25625871, "path": [[5490.952022473739, -3369.3991011460867], [4769.3520224736385, -3352.799101147497]], "destination": 25625838}, {"length": 4.29838450354, "source": 4955856145, "path": [[398.2520224736774, -1303.7991011479733], [415.8020224735992, -1288.2991011480271]], "destination": 4955856170}, {"length": 412.289123263, "source": 4955856145, "path": [[398.2520224736774, -1303.7991011479733], [348.10202247359535, -1292.7491011467396], [-27.947977526254775, -1053.599101147995], [-561.6979775262542, -677.7491011469294], [-934.0979775263047, -413.24910114681757], [-1568.6979775262344, 17.800898852726732]], "destination": 3422228285}, {"length": 141.053615224, "source": 4955856145, "path": [[398.2520224736774, -1303.7991011479733], [266.8520224737847, -1402.4991011467591], [260.9520224736706, -1422.499101146002], [271.30202247360734, -1439.0491011475604], [509.30202247378986, -1595.0491011480494], [801.2520224736086, -1745.149101147092]], "destination": 4955856150}, {"length": 65.154623462, "source": 4955856147, "path": [[1039.202022473651, -1950.3991011475819], [670.9520224736921, -1785.6491011478681]], "destination": 4955856149}, {"length": 6.21659320238, "source": 249169172, "path": [[-252.14797752637352, 2969.700898852068], [-248.0479775262001, 2966.9508988519055], [-222.49797752627032, 2949.700898852825]], "destination": 2463876760}, {"length": 116.504832909, "source": 249169172, "path": [[-252.14797752637352, 2969.700898852068], [-561.897977526371, 2766.3508988524654], [-585.9479775263133, 2775.000898854074], [-760.797977526373, 2660.050898853683], [-821.8479775263799, 2622.0508988537003]], "destination": 249169042}, {"length": 126.914297116, "source": 249169172, "path": [[-252.14797752637352, 2969.700898852068], [132.65202247358943, 3246.800898853763], [148.50202247362887, 3258.200898851982], [314.20202247378626, 3364.2508988513955], [320.10202247367835, 3367.8508988543854], [345.4020224737952, 3383.000898853794]], "destination": 249169173}, {"length": 39.7982194446, "source": 249169172, "path": [[-252.14797752637352, 2969.700898852068], [-444.59797752627316, 3096.1508988518463]], "destination": 21378263}, {"length": 65.154623462, "source": 4955856149, "path": [[670.9520224736921, -1785.6491011478681], [1039.202022473651, -1950.3991011475819]], "destination": 4955856147}, {"length": 23.4835896775, "source": 4955856149, "path": [[670.9520224736921, -1785.6491011478681], [732.7520224735817, -1788.8491011461838], [780.9520224737465, -1769.1991011474784], [801.2520224736086, -1745.149101147092]], "destination": 4955856150}, {"length": 224.247029526, "source": 4955856149, "path": [[670.9520224736921, -1785.6491011478681], [581.5020224737566, -1743.7991011455267], [382.8520224737897, -1640.0991011487065], [18.952022473595065, -1421.3491011467738], [12.352022473738344, -1384.5491011466038], [-392.69797752639056, -1075.6491011463254]], "destination": 4955856167}, {"length": 141.053615224, "source": 4955856150, "path": [[801.2520224736086, -1745.149101147092], [509.30202247378986, -1595.0491011480494], [271.30202247360734, -1439.0491011475604], [260.9520224736706, -1422.499101146002], [266.8520224737847, -1402.4991011467591], [398.2520224736774, -1303.7991011479733]], "destination": 4955856145}, {"length": 89.6627045147, "source": 4955856150, "path": [[801.2520224736086, -1745.149101147092], [1136.802022473793, -1890.7991011474223], [1231.3520224735973, -1928.2991011486672], [1286.5520224736304, -1983.499101147146]], "destination": 4955856133}, {"length": 8.99034030565, "source": 2705349849, "path": [[2491.452022473695, 493.30089885302186], [2534.802022473581, 521.9508988538735]], "destination": 4389621616}, {"length": 62.7706575977, "source": 2705349849, "path": [[2491.452022473695, 493.30089885302186], [2664.9520224737435, 378.20089885443053], [2789.8520224736158, 290.55089885332563]], "destination": 1223768436}, {"length": 25.7682815003, "source": 2705349849, "path": [[2491.452022473695, 493.30089885302186], [2365.152022473671, 412.55089885439133]], "destination": 2705349854}, {"length": 59.7839401621, "source": 2463833369, "path": [[-6062.6979775262325, 1431.8008988531972], [-6319.647977526266, 1274.8508988522644], [-6348.447977526206, 1241.7508988527004]], "destination": 185857345}, {"length": 13.3884226164, "source": 2463833369, "path": [[-6062.6979775262325, 1431.8008988531972], [-6028.747977526283, 1406.8008988523673], [-6001.747977526284, 1386.900898854293]], "destination": 2463833372}, {"length": 13.3884226164, "source": 2463833372, "path": [[-6001.747977526284, 1386.900898854293], [-6028.747977526283, 1406.8008988523673], [-6062.6979775262325, 1431.8008988531972]], "destination": 2463833369}, {"length": 8.5669069193, "source": 2463833372, "path": [[-6001.747977526284, 1386.900898854293], [-5997.547977526274, 1383.8008988535933], [-5970.1979775264035, 1363.6508988525975], [-5966.047977526312, 1360.600898852482], [-5962.747977526384, 1358.1508988522728]], "destination": 2463833381}, {"length": 48.856600933, "source": 2463833372, "path": [[-6001.747977526284, 1386.900898854293], [-6088.247977526385, 1336.4508988544799], [-5943.897977526369, 1228.7008988529635]], "destination": 2463833455}, {"length": 12.3998903486, "source": 652950813, "path": [[-1662.5479775262963, -2004.0491011457107], [-1591.9979775262939, -1973.149101146987]], "destination": 652950821}, {"length": 14.0138332794, "source": 130096418, "path": [[6596.95202247379, 4255.200898853673], [6648.152022473708, 4201.950898853112]], "destination": 470170}, {"length": 37.1496065367, "source": 3732186331, "path": [[5858.002022473663, 3562.850898852332], [6108.402022473758, 3535.3508988542617]], "destination": 3732186337}, {"length": 12.0279858041, "source": 3732186331, "path": [[5858.002022473663, 3562.850898852332], [5791.902022473705, 3595.000898851453]], "destination": 174043290}, {"length": 60.7535257374, "source": 3732186331, "path": [[5858.002022473663, 3562.850898852332], [5866.152022473648, 3624.4508988545476], [6092.352022473601, 3774.500898853006]], "destination": 3732186339}, {"length": 19.0415960435, "source": 3732186331, "path": [[5858.002022473663, 3562.850898852332], [5938.352022473614, 3495.5008988539757]], "destination": 2705349513}, {"length": 63.768830588, "source": 1181549860, "path": [[6721.652022473768, 948.500898854121], [6512.602022473724, 1094.3008988526515], [6503.602022473798, 1180.4008988534065]], "destination": 36488945}, {"length": 15.7189110521, "source": 1181549860, "path": [[6721.652022473768, 948.500898854121], [6754.952022473671, 1015.700898854277]], "destination": 36488943}, {"length": 71.2153166666, "source": 652950821, "path": [[-1591.9979775262939, -1973.149101146987], [-1553.1479775263701, -2005.4991011484447], [-1528.547977526218, -2035.5491011478932], [-1505.4979775264155, -2072.04910114811], [-1476.9979775262066, -2119.5491011454237], [-1461.4479775263424, -2163.2991011486524], [-1461.3479775262838, -2189.199101145789], [-1463.9479775262475, -2209.9491011466907], [-1469.8479775263618, -2236.1991011479176], [-1482.6479775262858, -2255.9491011477917], [-1498.4979775263253, -2266.1991011467817]], "destination": 652950841}, {"length": 55.2980461322, "source": 652950821, "path": [[-1591.9979775262939, -1973.149101146987], [-1572.0979775262213, -1956.8491011483502], [-1566.1479775264108, -1945.0491011454574], [-1573.2979775262556, -1918.6991011466148], [-1581.4979775263805, -1886.5991011480787], [-1582.3979775262399, -1868.2491011468016], [-1590.2979775264114, -1853.3491011467618], [-1608.547977526298, -1833.7491011486406], [-1594.7979775263743, -1804.099101146761], [-1594.5979775262576, -1788.049101147493], [-1609.4979775262975, -1778.0491011478716], [-1666.5979775263295, -1773.4991011479906]], "destination": 652950778}, {"length": 48.7262244892, "source": 652950821, "path": [[-1591.9979775262939, -1973.149101146987], [-1624.4479775262555, -1943.9991011473978], [-1652.6979775262073, -1915.4491011477148], [-1666.197977526318, -1896.699101145316], [-1677.0979775262429, -1874.7991011487386], [-1682.2479775262523, -1845.9491011455498], [-1686.497977526402, -1817.5491011476197], [-1682.497977526287, -1795.8991011468584], [-1679.1979775263587, -1782.8491011471215], [-1666.5979775263295, -1773.4991011479906]], "destination": 652950778}, {"length": 12.3998903486, "source": 652950821, "path": [[-1591.9979775262939, -1973.149101146987], [-1662.5479775262963, -2004.0491011457107]], "destination": 652950813}, {"length": 15.1171075507, "source": 277743794, "path": [[3890.1520224736696, -205.899101146656], [3934.8020224736492, -144.59910114794639]], "destination": 1179696264}, {"length": 66.4149178674, "source": 277743794, "path": [[3890.1520224736696, -205.899101146656], [4008.1520224737324, -249.14910114759437], [4270.45202247367, -326.7991011455251], [4298.902022473739, -335.2491011483494]], "destination": 1179777317}, {"length": 25.4925942387, "source": 370349352, "path": [[4217.502022473729, -3570.499101147817], [4315.352022473684, -3475.6491011478374]], "destination": 25625643}, {"length": 85.4599774287, "source": 370349352, "path": [[4217.502022473729, -3570.499101147817], [3746.1020224736076, -3343.5491011459817]], "destination": 5057169763}, {"length": 13.6096831952, "source": 2543955241, "path": [[512.4020224736014, 3357.000898851936], [474.95202247360703, 3334.100898854331], [444.2520224736679, 3315.350898851932]], "destination": 2463876737}, {"length": 8.75713552402, "source": 2543955241, "path": [[512.4020224736014, 3357.000898851936], [532.2520224737559, 3369.1508988518135], [556.2520224737799, 3383.800898852485]], "destination": 2463876722}, {"length": 63.3390632329, "source": 2543955241, "path": [[512.4020224736014, 3357.000898851936], [299.75202247367605, 3502.8008988540196], [394.2020224736442, 3557.400898852592]], "destination": 2543955108}, {"length": 51.8821156746, "source": 2543955241, "path": [[512.4020224736014, 3357.000898851936], [680.9020224736173, 3249.75089885271], [771.9520224735987, 3301.30089885472]], "destination": 2543955254}, {"length": 52.1924264218, "source": 185877802, "path": [[-3038.5979775262585, 1602.6508988531418], [-3017.14797752628, 1585.5008988516772], [-2934.6479775262947, 1486.450898852354], [-2873.5479775263693, 1395.4008988541489]], "destination": 2386532792}, {"length": 8.87125769287, "source": 185877802, "path": [[-3038.5979775262585, 1602.6508988531418], [-3064.3979775262233, 1638.750898852237]], "destination": 277572134}, {"length": 242.344093998, "source": 185877802, "path": [[-3038.5979775262585, 1602.6508988531418], [-3934.6479775264065, 716.900898851236], [-3956.8479775262676, 695.750898852765]], "destination": 185877479}, {"length": 21.3616937794, "source": 2916316459, "path": [[2238.902022473788, -1615.4991011454456], [2138.4020224737287, -1598.7491011486554], [2124.052022473677, -1624.949101145745]], "destination": 1365433480}, {"length": 68.6725422111, "source": 2916316459, "path": [[2238.902022473788, -1615.4991011454456], [2200.352022473595, -1691.3991011477947], [2098.702022473642, -1895.5491011460879], [2093.102022473703, -1908.9991011469465]], "destination": 4508646345}, {"length": 32.4473696833, "source": 2916316459, "path": [[2238.902022473788, -1615.4991011454456], [2309.1020224736967, -1477.0991011481271]], "destination": 721620626}, {"length": 74.5626207458, "source": 116147990, "path": [[5549.602022473677, 3926.800898852889], [5617.952022473727, 3943.550898853232], [5735.102022473626, 3950.1508988522005], [5834.502022473709, 3942.800898851573], [5952.652022473748, 3915.0508988541333], [6029.802022473607, 3880.2508988524664]], "destination": 116147967}, {"length": 44.3690875623, "source": 116147990, "path": [[5549.602022473677, 3926.800898852889], [5574.252022473747, 3727.950898852583]], "destination": 2705349460}, {"length": 13.6786112172, "source": 116147990, "path": [[5549.602022473677, 3926.800898852889], [5464.402022473669, 3901.500898852106]], "destination": 1219877311}, {"length": 28.6481547839, "source": 340393005, "path": [[-3734.8979775262414, 3657.350898851774], [-3836.9979775263464, 3633.6508988519254], [-3918.797977526367, 3613.2008988545294]], "destination": 2504458034}, {"length": 18.1439146489, "source": 340393005, "path": [[-3734.8979775262414, 3657.350898851774], [-3797.2979775262593, 3709.0008988514], [-3810.74797752623, 3721.8508988523527]], "destination": 151348663}, {"length": 5.76376143394, "source": 2561299760, "path": [[-4817.247977526362, -1902.699101147931], [-4812.747977526399, -1876.949101145442]], "destination": 34818328}, {"length": 135.00887549, "source": 2561299760, "path": [[-4817.247977526362, -1902.699101147931], [-4495.797977526417, -1927.1991011464706], [-4410.497977526351, -1941.899101147726], [-4330.197977526318, -1964.4991011453783], [-4242.747977526218, -1995.9991011475609], [-4156.7979775263275, -2038.2991011480556], [-4084.2979775264075, -2091.0991011469096], [-4023.047977526284, -2149.9991011459942]], "destination": 2561299782}, {"length": 10.8266304706, "source": 2561299760, "path": [[-4817.247977526362, -1902.699101147931], [-4818.797977526268, -1911.6491011459402], [-4821.94797752622, -1926.4991011453958], [-4827.097977526229, -1950.9491011469038]], "destination": 506888255}, {"length": 8.07899969183, "source": 2705349788, "path": [[1388.552022473677, 1039.8508988522792], [1435.8020224736201, 1058.6508988517096]], "destination": 1223805568}, {"length": 69.6644895722, "source": 2705349788, "path": [[1388.552022473677, 1039.8508988522792], [1353.8020224737047, 1023.3508988513051], [1364.5520224736529, 951.9008988512212], [1131.8520224736783, 803.450898853697]], "destination": 133128533}, {"length": 15.040601059, "source": 2705349788, "path": [[1388.552022473677, 1039.8508988522792], [1355.1020224737974, 1103.8008988535353]], "destination": 24909759}, {"length": 129.877502216, "source": 34816563, "path": [[-3469.897977526282, -4522.949101147588], [-3526.4479775263258, -4471.599101147916], [-4073.8979775263306, -4095.649101145682]], "destination": 34816647}, {"length": 118.982391818, "source": 25625250, "path": [[1540.9020224737003, -3925.249101147443], [2269.3520224736917, -4163.199101146375]], "destination": 25625339}, {"length": 18.4081736747, "source": 25625250, "path": [[1540.9020224737003, -3925.249101147443], [1630.4520224736941, -3867.099101146465]], "destination": 25625252}, {"length": 21.7422866727, "source": 25625250, "path": [[1540.9020224737003, -3925.249101147443], [1445.2020224737794, -3850.449101147291]], "destination": 25625246}, {"length": 16.8008220222, "source": 3732186334, "path": [[5989.102022473602, 3459.4508988519124], [6002.952022473584, 3462.100898854459], [6072.952022473599, 3455.700898854275], [6092.352022473601, 3440.900898851851]], "destination": 3732186336}, {"length": 10.9278888854, "source": 3732186334, "path": [[5989.102022473602, 3459.4508988519124], [5938.352022473614, 3495.5008988539757]], "destination": 2705349513}, {"length": 29.2437923279, "source": 3732186334, "path": [[5989.102022473602, 3459.4508988519124], [5969.552022473623, 3448.200898851894], [5966.302022473613, 3426.75089885347], [6026.5520224735965, 3387.650898851291], [6064.802022473615, 3415.0008988547143]], "destination": 3732186353}, {"length": 52.0800722571, "source": 2543955254, "path": [[771.9520224735987, 3301.30089885472], [857.7520224737345, 3353.950898851821], [691.9020224736006, 3466.80089885254]], "destination": 2543955200}, {"length": 51.8821156746, "source": 2543955254, "path": [[771.9520224735987, 3301.30089885472], [680.9020224736173, 3249.75089885271], [512.4020224736014, 3357.000898851936]], "destination": 2543955241}, {"length": 11.5490591608, "source": 2543955254, "path": [[771.9520224735987, 3301.30089885472], [755.9520224735827, 3311.400898851957], [715.0020224737652, 3337.250898852062]], "destination": 2463876732}, {"length": 10.2234377648, "source": 2543955254, "path": [[771.9520224735987, 3301.30089885472], [795.6020224737515, 3286.3508988540957], [822.4020224736339, 3269.500898852584]], "destination": 2463876741}, {"length": 64.5140960735, "source": 133129711, "path": [[1221.052022473801, 147.90089885252655], [1155.3020224737143, 164.95089885282255], [1119.3520224737074, 163.40089885247266], [1083.8020224737122, 155.45089885193875], [1059.0020224736652, 143.1008988532767], [1046.1020224736828, 134.75089885162106], [1028.1520224737494, 147.15089885442012], [1002.4520224736211, 135.3508988515273], [984.0020224736179, 119.55089885162806], [1001.5020224736215, 107.10089885179741], [974.152022473751, 90.80089885316056], [967.7020224736488, 72.20089885251468], [968.1020224736603, 48.050898854512525], [972.3520224735882, 27.550898852979344]], "destination": 133129694}, {"length": 30.5190107612, "source": 133129711, "path": [[1221.052022473801, 147.90089885252655], [1179.7020224737498, 106.7008988542284], [1123.9020224735884, 70.6008988515805], [1084.2520224736418, 45.250898853765875]], "destination": 133129700}, {"length": 19.330442061, "source": 133129711, "path": [[1221.052022473801, 147.90089885252655], [1232.4520224737955, 169.25089885333477], [1248.0520224738002, 215.7508988531731], [1249.352022473671, 232.40089885234738]], "destination": 3730881190}, {"length": 16.4345270801, "source": 133129711, "path": [[1221.052022473801, 147.90089885252655], [1323.9020224737885, 118.2008988536154]], "destination": 1224713998}, {"length": 285.896190505, "source": 1503278392, "path": [[-2275.297977526236, 224.50089885239777], [-2288.897977526405, 237.05089885339703], [-2531.047977526235, 525.4508988521422], [-2589.2979775263834, 655.1008988537887], [-2789.7479775262914, 1162.7508988532043], [-2937.1479775262, 1377.1508988540404], [-2873.5479775263693, 1395.4008988541489]], "destination": 2386532792}, {"length": 6.97177787005, "source": 1503278392, "path": [[-2275.297977526236, 224.50089885239777], [-2248.4479775262134, 250.40089885308703]], "destination": 695568906}, {"length": 200.94832678, "source": 1503278392, "path": [[-2275.297977526236, 224.50089885239777], [-2122.2979775263884, 83.45089885253287], [-1574.0479775263605, -330.0491011479778], [-1401.5479775262297, -449.29910114532845], [-1381.4979775264026, -438.6491011487692]], "destination": 4958548822}, {"length": 20.3088537736, "source": 652950841, "path": [[-1498.4979775263253, -2266.1991011467817], [-1517.097977526305, -2238.94910114808], [-1560.3979775262733, -2184.4991011477077]], "destination": 930671578}, {"length": 65.9583438296, "source": 652950841, "path": [[-1498.4979775263253, -2266.1991011467817], [-1500.6479775263592, -2286.949101147684], [-1489.6979775262942, -2297.999101145365], [-1486.8479775262954, -2323.3991011473163], [-1493.6979775264092, -2348.9991011480524], [-1501.4479775263821, -2373.649101148345], [-1515.5979775263172, -2395.8491011484284], [-1530.6979775262519, -2416.4991011481616], [-1554.6479775263579, -2441.399101147823], [-1574.2979775263955, -2457.149101147138], [-1605.0479775262527, -2470.399101145659], [-1634.8979775262505, -2474.7991011473405], [-1674.0979775262676, -2486.0991011479427], [-1698.7979775262563, -2489.749101147964]], "destination": 652912947}, {"length": 71.2153166666, "source": 652950841, "path": [[-1498.4979775263253, -2266.1991011467817], [-1482.6479775262858, -2255.9491011477917], [-1469.8479775263618, -2236.1991011479176], [-1463.9479775262475, -2209.9491011466907], [-1461.3479775262838, -2189.199101145789], [-1461.4479775263424, -2163.2991011486524], [-1476.9979775262066, -2119.5491011454237], [-1505.4979775264155, -2072.04910114811], [-1528.547977526218, -2035.5491011478932], [-1553.1479775263701, -2005.4991011484447], [-1591.9979775262939, -1973.149101146987]], "destination": 652950821}, {"length": 10.9641176701, "source": 2561299770, "path": [[-3860.197977526347, -2067.7491011475977], [-3810.847977526288, -2104.849101147721]], "destination": 932340008}, {"length": 20.1049215921, "source": 2561299770, "path": [[-3860.197977526347, -2067.7491011475977], [-3886.6979775262766, -2078.8991011464477], [-3891.1479775263215, -2080.849101147919], [-3927.547977526258, -2096.899101147187], [-3931.4979775262327, -2098.449101147537], [-3971.897977526284, -2120.199101145914]], "destination": 431171616}, {"length": 10.616278627, "source": 2561299770, "path": [[-3860.197977526347, -2067.7491011475977], [-3824.9479775263053, -2047.9491011471396], [-3801.6479775262455, -2040.04910114719]], "destination": 2561299768}, {"length": 10.1345519121, "source": 3732186335, "path": [[6099.202022473715, 3486.250898852461], [6092.352022473601, 3440.900898851851]], "destination": 3732186336}, {"length": 15.5780915594, "source": 3732186335, "path": [[6099.202022473715, 3486.250898852461], [6205.2520224737955, 3480.15089885223]], "destination": 65311769}, {"length": 23.6272645502, "source": 3732186335, "path": [[6099.202022473715, 3486.250898852461], [5991.352022473695, 3492.4508988538605], [5938.352022473614, 3495.5008988539757]], "destination": 2705349513}, {"length": 11.0018656609, "source": 3732186335, "path": [[6099.202022473715, 3486.250898852461], [6108.402022473758, 3535.3508988542617]], "destination": 3732186337}, {"length": 132.050906902, "source": 185857344, "path": [[-5968.247977526265, 925.8508988523317], [-5577.997977526339, 636.9008988542646], [-5545.147977526366, 628.5008988520246], [-5505.597977526255, 632.5008988525838], [-5327.547977526326, 738.100898853844]], "destination": 185858401}, {"length": 34.8499485017, "source": 185857344, "path": [[-5968.247977526265, 925.8508988523317], [-5927.997977526411, 950.0008988538866], [-5873.497977526343, 982.3508988517915], [-5791.047977526276, 1030.5508988537326]], "destination": 2463833647}, {"length": 10.3501392855, "source": 185857344, "path": [[-5968.247977526265, 925.8508988523317], [-6022.197977526344, 895.7508988522989]], "destination": 1739548159}, {"length": 89.9628348935, "source": 185857345, "path": [[-6348.447977526206, 1241.7508988527004], [-6326.997977526227, 1208.6508988531364], [-6229.097977526354, 1124.4008988526843], [-6188.197977526233, 1090.4508988538453], [-5968.247977526265, 925.8508988523317]], "destination": 185857344}, {"length": 27.918879775, "source": 185857346, "path": [[-5509.59797752637, 1768.300898852715], [-5560.4979775263355, 1734.500898852076], [-5649.647977526318, 1683.1508988524035]], "destination": 277062812}, {"length": 5.3921319704, "source": 185857346, "path": [[-5509.59797752637, 1768.300898852715], [-5531.797977526232, 1787.6508988514672]], "destination": 185856415}, {"length": 24.940380486, "source": 776293699, "path": [[-2884.097977526201, 2127.750898853975], [-2802.9479775262266, 2070.800898852809], [-2767.49797752629, 2045.9508988537323]], "destination": 141569001}, {"length": 62.7226552448, "source": 776293699, "path": [[-2884.097977526201, 2127.750898853975], [-3174.247977526301, 2335.3508988535054]], "destination": 141569116}, {"length": 46.7497001862, "source": 204846404, "path": [[6128.802022473678, 1091.9008988530265], [6232.652022473584, 1290.700898852748]], "destination": 1181550725}, {"length": 45.2335605227, "source": 141567301, "path": [[-5156.747977526299, 3586.450898854565], [-5028.347977526381, 3487.500898852858], [-4957.697977526321, 3430.850898851645]], "destination": 2503919720}, {"length": 102.806616609, "source": 141567301, "path": [[-5156.747977526299, 3586.450898854565], [-5045.797977526245, 3554.0508988525235], [-4921.097977526268, 3541.3008988527395], [-4761.747977526376, 3561.150898853782], [-4530.947977526401, 3637.6508988524847], [-4501.997977526262, 3649.8008988523625]], "destination": 335690029}, {"length": 44.1767117333, "source": 133129542, "path": [[661.5020224736146, 1116.5008988527347], [724.302022473644, 922.20089885231]], "destination": 133129489}, {"length": 61.6980983438, "source": 133129542, "path": [[661.5020224736146, 1116.5008988527347], [567.5020224737981, 1386.9508988513246]], "destination": 160018434}, {"length": 80.136077353, "source": 133129542, "path": [[661.5020224736146, 1116.5008988527347], [271.30202247360734, 863.6508988537628]], "destination": 160015156}, {"length": 61.8904025255, "source": 133129542, "path": [[661.5020224736146, 1116.5008988527347], [962.9020224737328, 1311.750898853603]], "destination": 133058023}, {"length": 5.40048280701, "source": 1445537096, "path": [[781.5020224737345, -2576.1491011486723], [796.3020224737161, -2553.899101148005]], "destination": 1445537099}, {"length": 15.4837914397, "source": 1445537096, "path": [[781.5020224737345, -2576.1491011486723], [877.4020224737721, -2605.5991011482147]], "destination": 1893477533}, {"length": 27.1201469071, "source": 929535527, "path": [[-1853.8979775262198, -2941.849101148364], [-2026.0979775263977, -2896.699101146538]], "destination": 929536542}, {"length": 9.39045321603, "source": 929535527, "path": [[-1853.8979775262198, -2941.849101148364], [-1883.6979775262996, -2979.24910114844]], "destination": 929534719}, {"length": 44.1477320196, "source": 370354998, "path": [[5957.852022473675, -3226.999101148209], [6231.802022473643, -3310.249101147633]], "destination": 241886816}, {"length": 5.40048280701, "source": 1445537099, "path": [[796.3020224737161, -2553.899101148005], [781.5020224737345, -2576.1491011486723]], "destination": 1445537096}, {"length": 546.479990857, "source": 1445537099, "path": [[796.3020224737161, -2553.899101148005], [799.3520224736095, -2549.3491011481237], [806.9020224736878, -2537.8491011487367], [801.102022473632, -2524.1491011485095], [-91.8479775262604, -2251.549101146111], [-298.2479775262004, -2153.349101146063], [-451.44797752638686, -2048.09910114534], [-1556.7479775262516, -1170.7991011462582], [-1718.4979775262123, -1045.4991011457082], [-1761.397977526391, -1012.1491011467754], [-1782.7979775262293, -1025.899101147587], [-1853.4479775262903, -977.0991011457397], [-1887.1479775262046, -997.3491011479041]], "destination": 930613534}, {"length": 15.7346707992, "source": 1445537099, "path": [[796.3020224737161, -2553.899101148005], [895.2020224737289, -2581.6991011460286]], "destination": 567929279}, {"length": 8.12128093201, "source": 270732620, "path": [[-2305.4979775263273, -4184.799101146553], [-2356.1479775262574, -4199.749101147177]], "destination": 270732626}, {"length": 350.688484308, "source": 1445537103, "path": [[-3196.9979775263723, 127.95089885386801], [-1867.9979775262368, -985.1991011480266], [-1708.1479775262753, -1107.6491011472456]], "destination": 5056992120}, {"length": 8.16058259264, "source": 1445537103, "path": [[-3196.9979775263723, 127.95089885386801], [-3242.997977526363, 107.20089885296602]], "destination": 4958488596}, {"length": 750.906789396, "source": 1445537103, "path": [[-3196.9979775263723, 127.95089885386801], [-3399.8979775262674, 308.35089885172806], [-3597.8479775262695, 501.4508988523403], [-4690.6979775263035, 1314.9008988513344], [-5240.5479775263775, 1715.5008988538611], [-5443.047977526261, 1865.5008988517352], [-5992.247977526288, 2277.8508988530175], [-6574.097977526394, 2665.450898852839]], "destination": 5057415766}, {"length": 10.2415928759, "source": 2705350391, "path": [[5946.852022473692, -2321.199101146476], [5947.702022473633, -2367.249101148161]], "destination": 2705350425}, {"length": 98.220695368, "source": 2705350391, "path": [[5946.852022473692, -2321.199101146476], [6617.85202247378, -2335.49910114661]], "destination": 2705350396}, {"length": 21.5981759306, "source": 2705350391, "path": [[5946.852022473692, -2321.199101146476], [5799.302022473585, -2318.0991011457763]], "destination": 2705350389}, {"length": 75.3516663044, "source": 654054737, "path": [[27.252022473778226, -183.89910114535724], [220.4020224736425, -64.14910114571626], [258.3020224737886, -40.79910114640484], [369.30202247376087, 28.5508988540073], [401.65202247366415, 48.75089885203465]], "destination": 368288}, {"length": 63.3612206976, "source": 654054737, "path": [[27.252022473778226, -183.89910114535724], [46.60202247364076, -252.99910114640056], [34.45202247376322, -356.9491011461423], [88.00202247361, -395.64910114719964], [111.85202247365744, -451.5491011467532]], "destination": 133130095}, {"length": 83.737738503, "source": 654054737, "path": [[27.252022473778226, -183.89910114535724], [-182.6479775262069, -244.1991011465916], [-205.84797752620787, -258.9991011454629], [-398.4479775263061, -382.64910114804707], [-369.5979775262259, -402.5991011467056]], "destination": 3422228451}, {"length": 129.807202209, "source": 654054737, "path": [[27.252022473778226, -183.89910114535724], [160.30202247363513, -180.24910114533554], [347.70202247358384, -188.9991011481129], [456.45202247368564, -211.39910114698068], [559.9520224737198, -247.19910114612276], [675.752022473608, -308.14910114784766], [710.4520224736622, -366.94910114576373], [733.35202247371, -424.9491011485418]], "destination": 133130150}, {"length": 46.0985578152, "source": 654054737, "path": [[27.252022473778226, -183.89910114535724], [-192.79797752624893, -35.54910114544896]], "destination": 654054735}, {"length": 43.4908471531, "source": 270732626, "path": [[-2356.1479775262574, -4199.749101147177], [-2274.5479775263534, -4314.149101148246], [-2325.0479775263066, -4374.849101147049]], "destination": 368307}, {"length": 102.921930677, "source": 34818275, "path": [[-5613.547977526334, -1474.3491011479648], [-5651.297977526282, -1461.99910114575], [-6243.397977526266, -1268.2491011482]], "destination": 295330571}, {"length": 119.780033642, "source": 34818275, "path": [[-5613.547977526334, -1474.3491011479648], [-5546.247977526342, -1433.7991011466045], [-5034.497977526309, -1125.599101147401], [-5009.697977526262, -1110.6491011467767]], "destination": 34818276}, {"length": 68.3842263549, "source": 34818275, "path": [[-5613.547977526334, -1474.3491011479648], [-5193.897977526341, -1609.749101145752]], "destination": 34818327}, {"length": 17.1385243673, "source": 2503974230, "path": [[-6699.447977526418, 2531.100898853111], [-6713.24797752626, 2539.3508988535987], [-6727.897977526265, 2547.400898851748], [-6787.097977526413, 2582.2008988534153]], "destination": 185857158}, {"length": 34.8013763943, "source": 2503974230, "path": [[-6699.447977526418, 2531.100898853111], [-6719.797977526198, 2507.000898852141], [-6721.14797752621, 2491.400898854579], [-6714.897977526224, 2476.5008988545387], [-6707.247977526309, 2461.850898853868], [-6680.447977526205, 2440.6508988512596], [-6630.2479775262045, 2417.5508988513175], [-6609.597977526249, 2412.550898853283]], "destination": 2503974238}, {"length": 39.3240991416, "source": 652950871, "path": [[-1677.147977526383, -2648.9991011473535], [-1730.6479775263117, -2616.7491011470647], [-1714.5479775262374, -2525.299101147738], [-1698.7979775262563, -2489.749101147964]], "destination": 652912947}, {"length": 30.7491160188, "source": 652950871, "path": [[-1677.147977526383, -2648.9991011473535], [-1526.8479775263354, -2552.3491011476553]], "destination": 25624237}, {"length": 65.2224575176, "source": 652950871, "path": [[-1677.147977526383, -2648.9991011473535], [-1925.2979775263857, -2819.149101146223], [-1986.8479775262404, -2859.9491011469527]], "destination": 25624231}, {"length": 12.0317445358, "source": 2503974234, "path": [[-6541.497977526234, 2439.5008988520317], [-6566.697977526293, 2422.9008988534415], [-6587.047977526295, 2414.850898851739], [-6609.597977526249, 2412.550898853283]], "destination": 2503974238}, {"length": 30.8094638877, "source": 2503974234, "path": [[-6541.497977526234, 2439.5008988520317], [-6625.147977526335, 2488.0008988539257], [-6699.447977526418, 2531.100898853111]], "destination": 2503974230}, {"length": 9.21362919084, "source": 2561299804, "path": [[-3376.4979775263714, -2539.6991011454875], [-3394.24797752641, -2579.449101148157]], "destination": 123759978}, {"length": 10.645898671, "source": 2561299804, "path": [[-3376.4979775263714, -2539.6991011454875], [-3445.4979775262464, -2524.499101145494]], "destination": 2561299802}, {"length": 17.3948497743, "source": 2561299804, "path": [[-3376.4979775263714, -2539.6991011454875], [-3306.9479775262866, -2555.7991011453396], [-3264.897977526271, -2566.6491011477888]], "destination": 2561299807}, {"length": 40.7054969954, "source": 506888762, "path": [[-4924.447977526336, -2167.299101145659], [-4960.997977526249, -2348.7491011486836]], "destination": 506888736}, {"length": 47.2098354515, "source": 506888762, "path": [[-4924.447977526336, -2167.299101145659], [-4603.797977526414, -2191.0991011466763]], "destination": 506888740}, {"length": 53.9937334963, "source": 506888762, "path": [[-4924.447977526336, -2167.299101145659], [-4893.397977526303, -1979.3991011454182], [-4865.1479775263515, -1959.2491011479751], [-4827.097977526229, -1950.9491011469038]], "destination": 506888255}, {"length": 12.0317445358, "source": 2503974238, "path": [[-6609.597977526249, 2412.550898853283], [-6587.047977526295, 2414.850898851739], [-6566.697977526293, 2422.9008988534415], [-6541.497977526234, 2439.5008988520317]], "destination": 2503974234}, {"length": 34.8013763943, "source": 2503974238, "path": [[-6609.597977526249, 2412.550898853283], [-6630.2479775262045, 2417.5508988513175], [-6680.447977526205, 2440.6508988512596], [-6707.247977526309, 2461.850898853868], [-6714.897977526224, 2476.5008988545387], [-6721.14797752621, 2491.400898854579], [-6719.797977526198, 2507.000898852141], [-6699.447977526418, 2531.100898853111]], "destination": 2503974230}, {"length": 12.9138793242, "source": 2503974238, "path": [[-6609.597977526249, 2412.550898853283], [-6612.247977526353, 2368.3508988519006], [-6619.797977526209, 2355.450898853917]], "destination": 976164662}, {"length": 132.154838176, "source": 260584799, "path": [[1321.2520224736845, -3398.0491011469385], [2170.002022473749, -3438.749101146499], [2222.202022473585, -3441.249101147292]], "destination": 25625329}, {"length": 39.2757417235, "source": 3734288108, "path": [[2612.002022473581, 2054.700898852957], [2806.6520224736546, 2176.300898852901]], "destination": 3734288105}, {"length": 24.0436864166, "source": 3734288108, "path": [[2612.002022473581, 2054.700898852957], [2719.2020224737767, 2016.3008988518527], [2749.2520224736695, 2035.8508988529422]], "destination": 3734288099}, {"length": 25.9709997405, "source": 3734288108, "path": [[2612.002022473581, 2054.700898852957], [2525.2520224736672, 2000.5008988519535], [2467.502022473589, 2002.8008988539625]], "destination": 3734288121}, {"length": 12.2668922167, "source": 130096486, "path": [[6693.002022473582, 4155.350898852106], [6648.152022473708, 4201.950898853112]], "destination": 470170}, {"length": 10.4187290815, "source": 130096486, "path": [[6693.002022473582, 4155.350898852106], [6716.602022473595, 4130.800898852982], [6731.852022473728, 4116.100898851727]], "destination": 2353689492}, {"length": 15.6663599451, "source": 249578857, "path": [[2280.302022473757, 2895.7508988511904], [2356.40202247378, 2945.300898854697]], "destination": 94267505}, {"length": 64.2868720627, "source": 249578857, "path": [[2280.302022473757, 2895.7508988511904], [2545.2020224736584, 2715.5008988515306], [2585.702022473768, 2687.9508988528755]], "destination": 94267653}, {"length": 84.1127928203, "source": 249578857, "path": [[2280.302022473757, 2895.7508988511904], [1867.6520224736314, 2632.450898854444]], "destination": 158834270}, {"length": 31.4154881774, "source": 123759978, "path": [[-3394.24797752641, -2579.449101148157], [-3467.9479775263644, -2627.749101147714], [-3561.197977526298, -2666.9991011480934]], "destination": 368305}, {"length": 17.0983957995, "source": 2561299814, "path": [[-3510.8979775262396, -2736.399101145537], [-3561.197977526298, -2666.9991011480934]], "destination": 368305}, {"length": 54.2824502229, "source": 2561299814, "path": [[-3510.8979775262396, -2736.399101145537], [-3559.847977526287, -2749.799101145811], [-3595.9979775264105, -2765.3491011463416], [-3686.0479775262525, -2772.799101148138], [-3753.947977526373, -2775.1491011471785], [-3798.697977526411, -2773.7991011456133], [-3813.447977526252, -2757.2491011476077], [-3854.94797752628, -2752.5491011459735]], "destination": 2561299817}, {"length": 16.1524205417, "source": 2561299814, "path": [[-3510.8979775262396, -2736.399101145537], [-3463.347977526343, -2801.949101147727]], "destination": 270731910}, {"length": 53.7771767432, "source": 2561299814, "path": [[-3510.8979775262396, -2736.399101145537], [-3438.8979775263897, -2717.2991011461536], [-3309.797977526285, -2624.1991011453083], [-3282.0979775263213, -2586.299101146494], [-3264.897977526271, -2566.6491011477888]], "destination": 2561299807}, {"length": 12.0683809195, "source": 2463833455, "path": [[-5943.897977526369, 1228.7008988529635], [-6005.747977526399, 1192.8008988526528]], "destination": 2463833500}, {"length": 48.856600933, "source": 2463833455, "path": [[-5943.897977526369, 1228.7008988529635], [-6088.247977526385, 1336.4508988544799], [-6001.747977526284, 1386.900898854293]], "destination": 2463833372}, {"length": 34.042552469, "source": 2463833455, "path": [[-5943.897977526369, 1228.7008988529635], [-5934.99797752628, 1233.5508988527977], [-5924.647977526342, 1239.55089885186], [-5922.847977526402, 1249.5008988544498], [-5933.747977526327, 1266.25089885124], [-5947.0979775262385, 1282.2508988534764], [-5961.647977526408, 1295.400898854382], [-5971.997977526345, 1307.4008988525065], [-5983.497977526397, 1318.5508988513561], [-5988.94797752636, 1326.950898853596], [-5988.347977526231, 1335.300898851699], [-5981.697977526234, 1344.100898851508], [-5973.797977526285, 1352.4508988531636], [-5962.747977526384, 1358.1508988522728]], "destination": 2463833381}, {"length": 112.134465545, "source": 204834024, "path": [[13.952022473784353, 1038.250898851345], [54.50202247359037, 1063.8008988514969], [567.5020224737981, 1386.9508988513246]], "destination": 160018434}, {"length": 54.0896361414, "source": 204834024, "path": [[13.952022473784353, 1038.250898851345], [58.452022473787224, 1008.0508988536963], [271.30202247360734, 863.6508988537628]], "destination": 160015156}, {"length": 4.88802248713, "source": 4508646345, "path": [[2093.102022473703, -1908.9991011469465], [2084.302022473672, -1930.1991011460018]], "destination": 185883888}, {"length": 68.6725422111, "source": 4508646345, "path": [[2093.102022473703, -1908.9991011469465], [2098.702022473642, -1895.5491011460879], [2200.352022473595, -1691.3991011477947], [2238.902022473788, -1615.4991011454456]], "destination": 2916316459}, {"length": 180.717223954, "source": 4508646345, "path": [[2093.102022473703, -1908.9991011469465], [2286.1020224735908, -1956.8491011483502], [2410.1520224737437, -1981.5991011462586], [2698.502022473681, -2025.2491011483187], [2887.552022473594, -2050.399101147349], [3069.3020224736856, -2066.2991011484164], [3295.9520224737917, -2076.8491011473598]], "destination": 4508646339}, {"length": 46.7718654411, "source": 204830067, "path": [[2831.50202247362, 2522.65089885384], [3053.202022473611, 2371.1508988526475]], "destination": 3734288088}, {"length": 128.162903628, "source": 204830067, "path": [[2831.50202247362, 2522.65089885384], [2207.502022473662, 2118.2508988530913]], "destination": 133128779}, {"length": 104.814048397, "source": 204830067, "path": [[2831.50202247362, 2522.65089885384], [3341.8520224737235, 2853.35089885308]], "destination": 167918461}, {"length": 51.4306110006, "source": 204830067, "path": [[2831.50202247362, 2522.65089885384], [2626.502022473609, 2660.5008988518366], [2585.702022473768, 2687.9508988528755]], "destination": 94267653}, {"length": 103.646411945, "source": 160025687, "path": [[-1351.8479775262992, 571.0508988521212], [-1260.9979775262125, 628.8008988519778], [-892.3479775262422, 863.2008988520568], [-842.447977526417, 894.9008988530238]], "destination": 36485568}, {"length": 90.7932216425, "source": 160025687, "path": [[-1351.8479775262992, 571.0508988521212], [-1796.1479775263633, 286.0508988540289]], "destination": 470177}, {"length": 64.5965682938, "source": 160025687, "path": [[-1351.8479775262992, 571.0508988521212], [-1042.2979775264184, 363.9508988513285]], "destination": 160026291}, {"length": 8.30237357288, "source": 929535353, "path": [[-2123.747977526236, -3007.799101148123], [-2164.097977526369, -2981.5491011468966]], "destination": 25624151}, {"length": 263.631517039, "source": 34817757, "path": [[-4601.197977526228, -2587.2991011475224], [-4780.297977526216, -2750.049101148733], [-6126.147977526309, -3180.649101146571]], "destination": 34817753}, {"length": 275.998857259, "source": 34817757, "path": [[-4601.197977526228, -2587.2991011475224], [-6406.347977526261, -2791.249101147031], [-6460.497977526236, -2797.3491011472615]], "destination": 34817771}, {"length": 135.905901318, "source": 25623937, "path": [[-972.4979775262988, -3806.049101147124], [-1313.7479775262584, -3956.049101148551], [-1744.9479775262234, -4145.549101146173]], "destination": 25623939}, {"length": 119.362233961, "source": 25623937, "path": [[-972.4979775262988, -3806.049101147124], [-596.6979775262615, -3464.349101147235], [-494.24797752628535, -3371.1991011458053]], "destination": 25624252}, {"length": 72.735164019, "source": 25623938, "path": [[-1940.3979775263203, -4231.449101148144], [-2135.5979775263822, -3930.6491011465996]], "destination": 25623945}, {"length": 34.387338124, "source": 25623938, "path": [[-1940.3979775263203, -4231.449101148144], [-1744.9479775262234, -4145.549101146173]], "destination": 25623939}, {"length": 65.2102824802, "source": 25623938, "path": [[-1940.3979775263203, -4231.449101148144], [-2219.9479775262266, -4354.099101146147], [-2325.0479775263066, -4374.849101147049]], "destination": 368307}, {"length": 135.905901318, "source": 25623939, "path": [[-1744.9479775262234, -4145.549101146173], [-1313.7479775262584, -3956.049101148551], [-972.4979775262988, -3806.049101147124]], "destination": 25623937}, {"length": 34.387338124, "source": 25623939, "path": [[-1744.9479775262234, -4145.549101146173], [-1940.3979775263203, -4231.449101148144]], "destination": 25623938}, {"length": 164.553906522, "source": 25623942, "path": [[-2152.597977526316, -3460.949101146582], [-2055.947977526396, -3733.7991011483496], [-1744.9479775262234, -4145.549101146173]], "destination": 25623939}, {"length": 93.601810599, "source": 25623942, "path": [[-2152.597977526316, -3460.949101146582], [-1514.447977526201, -3430.6491011477647]], "destination": 25623949}, {"length": 17.5874133563, "source": 133128769, "path": [[3359.252022473669, 1330.0008988537115], [3275.1520224736373, 1386.5008988531713]], "destination": 3732221786}, {"length": 128.878197094, "source": 133128769, "path": [[3359.252022473669, 1330.0008988537115], [3991.0020224736, 1733.800898854554]], "destination": 204831572}, {"length": 99.5363484816, "source": 133128769, "path": [[3359.252022473669, 1330.0008988537115], [2871.302022473765, 1018.1508988544863]], "destination": 204829757}, {"length": 52.7121879028, "source": 133128769, "path": [[3359.252022473669, 1330.0008988537115], [3410.6520224737037, 1298.7508988544505], [3571.052022473653, 1189.000898854431], [3611.8520224737163, 1161.1008988516858]], "destination": 21378254}, {"length": 119.350188252, "source": 141569260, "path": [[-3474.797977526256, 2178.2508988543723], [-4025.9479775262007, 2573.8508988517597]], "destination": 94268321}, {"length": 107.168969059, "source": 141569260, "path": [[-3474.797977526256, 2178.2508988543723], [-3047.4479775262075, 1866.3008988539787], [-2984.4479775262835, 1820.300898852878]], "destination": 661235}, {"length": 56.1686725313, "source": 141569260, "path": [[-3474.797977526256, 2178.2508988543723], [-3430.5979775262063, 2201.3508988543153], [-3210.397977526203, 2316.4508988529064], [-3174.247977526301, 2335.3508988535054]], "destination": 141569116}, {"length": 88.7546272094, "source": 25623946, "path": [[-2593.2979775262766, -3481.0491011469935], [-2393.147977526322, -3857.7991011479185]], "destination": 25623948}, {"length": 64.627395621, "source": 25623946, "path": [[-2593.2979775262766, -3481.0491011469935], [-2152.597977526316, -3460.949101146582]], "destination": 25623942}, {"length": 88.7546272094, "source": 25623948, "path": [[-2393.147977526322, -3857.7991011479185], [-2593.2979775262766, -3481.0491011469935]], "destination": 25623946}, {"length": 115.134058307, "source": 25623949, "path": [[-1514.447977526201, -3430.6491011477647], [-972.4979775262988, -3806.049101147124]], "destination": 25623937}, {"length": 129.571875945, "source": 25623949, "path": [[-1514.447977526201, -3430.6491011477647], [-2123.747977526236, -3007.799101148123]], "destination": 929535353}, {"length": 18.2419365289, "source": 833088749, "path": [[2876.7020224735875, -3491.4991011483207], [2767.2520224737427, -3530.7991011457316]], "destination": 270922944}, {"length": 8.24791690776, "source": 133129373, "path": [[441.8520224735989, 74.75089885389252], [401.65202247366415, 48.75089885203465]], "destination": 368288}, {"length": 64.4689177313, "source": 133129373, "path": [[441.8520224735989, 74.75089885389252], [755.3520224736765, -128.94910114624736]], "destination": 133129675}, {"length": 46.0402589245, "source": 133129373, "path": [[441.8520224735989, 74.75089885389252], [224.90202247360537, 224.70089885118227]], "destination": 133052180}, {"length": 63.0841481526, "source": 133129373, "path": [[441.8520224735989, 74.75089885389252], [749.2520224736676, 273.65089885122984]], "destination": 133129829}, {"length": 79.6307515146, "source": 133129373, "path": [[441.8520224735989, 74.75089885389252], [578.6520224737579, 36.300898852204], [729.7020224736883, 24.050898854710567], [867.8520224736363, 20.60089885347338], [972.3520224735882, 27.550898852979344]], "destination": 133129694}, {"length": 45.6778553622, "source": 133129620, "path": [[789.2520224737076, 721.3008988529168], [724.302022473644, 922.20089885231]], "destination": 133129489}, {"length": 23.7730900298, "source": 133129620, "path": [[789.2520224737076, 721.3008988529168], [796.5020224736109, 698.8508988534647], [806.5020224736763, 665.800898854485], [858.7520224736522, 629.1508988525152]], "destination": 133128517}, {"length": 115.48048437, "source": 133129620, "path": [[789.2520224737076, 721.3008988529168], [651.4520224736309, 741.9508988526502], [568.0520224737861, 742.1008988544031], [496.9520224737955, 735.7008988542191], [426.6020224736877, 716.6008988512829], [344.8520224735852, 686.0508988530967], [269.70202247378336, 634.950898852793], [211.65202247375169, 571.0008988515369], [160.35202247377532, 513.5008988546019]], "destination": 133129422}, {"length": 111.928156388, "source": 204836246, "path": [[1671.3520224735935, -85.39910114535587], [1635.4520224737269, -108.44910114826689], [1176.6020224737163, -402.6491011472899], [1123.5520224737172, -436.6991011472976]], "destination": 368286}, {"length": 53.7198407101, "source": 204836246, "path": [[1671.3520224735935, -85.39910114535587], [1626.452022473801, -55.89910114878194], [1411.6520224736196, 85.35089885342018]], "destination": 204836247}, {"length": 13.4151525415, "source": 204836247, "path": [[1411.6520224736196, 85.35089885342018], [1350.2520224737414, 130.15089885470843]], "destination": 133129820}, {"length": 53.7198407101, "source": 204836247, "path": [[1411.6520224736196, 85.35089885342018], [1626.452022473801, -55.89910114878194], [1671.3520224735935, -85.39910114535587]], "destination": 204836246}, {"length": 81.9182215039, "source": 204836247, "path": [[1411.6520224736196, 85.35089885342018], [1813.2520224736215, 342.00089885416673]], "destination": 133129310}, {"length": 101.80425305, "source": 204836247, "path": [[1411.6520224736196, 85.35089885342018], [912.552022473756, -233.59910114706395]], "destination": 133129375}, {"length": 1.87722664563, "source": 310350368, "path": [[-3863.597977526334, 3767.000898854178], [-3873.397977526283, 3772.4508988539183]], "destination": 310350370}, {"length": 81.5075948655, "source": 159893060, "path": [[911.3520224737215, 3399.350898853015], [953.0520224736439, 3427.7008988539137], [1169.4520224736493, 3563.6508988545756], [1215.4020224737217, 3601.4008988516366], [1204.4020224737385, 3647.6508988521064], [1196.3520224735903, 3682.2508988514355]], "destination": 159893055}, {"length": 11.1574152045, "source": 159893060, "path": [[911.3520224737215, 3399.350898853015], [940.9520224736845, 3377.900898854591], [963.9520224737907, 3363.050898851583]], "destination": 94267503}, {"length": 36.7103086302, "source": 4956714223, "path": [[3440.952022473631, -2288.1491011474964], [3302.1020224737185, -2217.649101147856], [3294.0520224737925, -2168.2491011461025]], "destination": 270186256}, {"length": 11.9456541579, "source": 4956714223, "path": [[3440.952022473631, -2288.1491011474964], [3522.552022473757, -2290.0491011483837]], "destination": 4956714225}, {"length": 11.9456541579, "source": 4956714223, "path": [[3440.952022473631, -2288.1491011474964], [3522.552022473757, -2290.0491011483837]], "destination": 4956714225}, {"length": 31.522137623, "source": 4956714223, "path": [[3440.952022473631, -2288.1491011474964], [3232.902022473727, -2251.299101146742]], "destination": 1215367557}, {"length": 39.7410760183, "source": 1503278492, "path": [[-628.8479775262701, -807.699101148529], [-613.7979775262536, -798.1991011476453], [-723.8979775263665, -725.5991011483331], [-739.3479775263945, -692.7991011487222], [-736.047977526244, -681.099101146998], [-716.547977526405, -671.2491011455768]], "destination": 653601046}, {"length": 10.1851163171, "source": 666949021, "path": [[4897.602022473801, 439.0008988544025], [4841.102022473676, 465.7508988543668]], "destination": 21378251}, {"length": 167.807291657, "source": 666949021, "path": [[4897.602022473801, 439.0008988544025], [4898.852022473754, 402.7008988529701], [4608.202022473584, -216.24910114681484], [4504.702022473773, -234.24910114755448]], "destination": 666950999}, {"length": 70.8717004151, "source": 133128773, "path": [[2884.6520224736773, 1648.850898853027], [2538.0520224735915, 1426.2508988522882]], "destination": 133128736}, {"length": 76.8580161085, "source": 133128773, "path": [[2884.6520224736773, 1648.850898853027], [3260.602022473691, 1890.200898852612]], "destination": 133128744}, {"length": 43.6069969849, "source": 133128773, "path": [[2884.6520224736773, 1648.850898853027], [2682.0520224737356, 1792.6508988530543]], "destination": 133128776}, {"length": 71.3230148936, "source": 133128773, "path": [[2884.6520224736773, 1648.850898853027], [2939.4020224737806, 1532.500898854039], [2978.752022473774, 1385.4008988545274], [2979.1520224737856, 1335.8508988545736]], "destination": 133128865}, {"length": 54.5560814547, "source": 133128773, "path": [[2884.6520224736773, 1648.850898853027], [3147.552022473743, 1474.9008988523826]], "destination": 133128921}, {"length": 17.3896126439, "source": 34845764, "path": [[3273.65202247365, -789.0491011472989], [3195.1520224737797, -791.8491011480455], [3156.102022473739, -798.2491011482296]], "destination": 1183501407}, {"length": 20.2916824248, "source": 34845764, "path": [[3273.65202247365, -789.0491011472989], [3299.502022473755, -750.1991011480413], [3328.1520224737183, -705.1491011473843]], "destination": 666941110}, {"length": 11.1870843277, "source": 34845764, "path": [[3273.65202247365, -789.0491011472989], [3348.8520224735917, -798.149101147061]], "destination": 666941135}, {"length": 4.88802248713, "source": 185883888, "path": [[2084.302022473672, -1930.1991011460018], [2093.102022473703, -1908.9991011469465]], "destination": 4508646345}, {"length": 182.159644215, "source": 185883888, "path": [[2084.302022473672, -1930.1991011460018], [2192.852022473657, -1956.1991011478597], [2276.7520224737937, -1976.2491011476868], [2583.6520224737924, -2031.3991011455812], [2845.0020224737304, -2065.099101148604], [2992.5020224736977, -2081.7491011477787], [3162.302022473584, -2095.0991011474684], [3297.352022473721, -2098.6491011463213]], "destination": 185883891}, {"length": 17.8959932621, "source": 25666980, "path": [[6506.902022473726, -4120.399101147143], [6493.852022473768, -4106.799101148084], [6485.452022473748, -4091.6491011486755], [6482.052022473761, -4075.7491011476077], [6483.702022473725, -4059.6991011483397], [6490.502022473699, -4044.1991011483933]], "destination": 25666985}, {"length": 113.432709907, "source": 25666980, "path": [[6506.902022473726, -4120.399101147143], [5938.552022473731, -4430.699101146019], [5910.252022473639, -4446.14910114538]], "destination": 830630294}, {"length": 67.8862690302, "source": 94266789, "path": [[2683.6020224736412, 3776.4008988538935], [2357.102022473745, 3559.550898852848]], "destination": 174006224}, {"length": 109.354474117, "source": 94266789, "path": [[2683.6020224736412, 3776.4008988538935], [2745.3520224736126, 3815.6008988536882], [3154.3520224737167, 4075.2008988533817], [3247.552022473732, 4075.9008988544565]], "destination": 94266440}, {"length": 41.9590982649, "source": 94266789, "path": [[2683.6020224736412, 3776.4008988538935], [2484.552022473663, 3912.2008988528023]], "destination": 94267986}, {"length": 102.154312354, "source": 94266789, "path": [[2683.6020224736412, 3776.4008988538935], [2718.9520224737416, 3751.800898854185], [2922.9020224736946, 3615.0508988512797], [3058.952022473749, 3523.80089885429], [3155.752022473646, 3439.000898854516]], "destination": 470173}, {"length": 43.3501750689, "source": 2463833510, "path": [[-5542.147977526391, 1183.5008988541063], [-5531.197977526325, 1174.0008988532225], [-5506.597977526395, 1154.2508988533484], [-5486.597977526264, 1140.3008988537522], [-5474.147977526211, 1129.3008988531028], [-5461.447977526346, 1117.1508988532253], [-5449.897977526374, 1102.200898852601], [-5440.497977526215, 1091.800898851858], [-5429.2979775263375, 1077.050898853571], [-5421.697977526341, 1067.4508988515186], [-5411.997977526228, 1054.3008988541658], [-5402.297977526338, 1040.3508988545696], [-5394.397977526389, 1028.750898854014], [-5387.747977526392, 1018.6508988532239]], "destination": 2463833656}, {"length": 82.25166014, "source": 2463833510, "path": [[-5542.147977526391, 1183.5008988541063], [-5548.747977526247, 1189.2008988532154], [-5571.197977526365, 1204.5508988514086], [-5588.197977526299, 1217.3008988511924], [-5607.597977526302, 1230.7008988514667], [-5640.347977526217, 1251.650898854706], [-5674.297977526388, 1273.0008988519614], [-5696.747977526285, 1288.1508988513701], [-5720.097977526261, 1302.3008988533036], [-5744.647977526274, 1316.3008988534841], [-5764.697977526323, 1326.8508988524275], [-5792.297977526228, 1341.2508988537297], [-5823.797977526413, 1356.600898851923], [-5846.847977526215, 1368.1508988518942], [-5874.14797752639, 1379.350898851328], [-5899.047977526273, 1389.5008988527024], [-5904.197977526282, 1392.5008988522336], [-5921.447977526251, 1383.5508988542244], [-5937.247977526372, 1373.550898854603], [-5956.0479775262465, 1362.0008988546317], [-5962.747977526384, 1358.1508988522728]], "destination": 2463833381}, {"length": 85.8084324116, "source": 2463833510, "path": [[-5542.147977526391, 1183.5008988541063], [-5419.8979775264, 1253.0008988527186], [-5348.297977526339, 1293.7508988528634], [-5314.447977526226, 1313.0008988539998], [-5098.797977526326, 1436.050898853125]], "destination": 277061719}, {"length": 19.5792677144, "source": 4956714225, "path": [[3522.552022473757, -2290.0491011483837], [3655.302022473661, -2301.1991011472333]], "destination": 4956714224}, {"length": 19.5792677144, "source": 4956714225, "path": [[3522.552022473757, -2290.0491011483837], [3655.302022473661, -2301.1991011472333]], "destination": 4956714224}, {"length": 11.9456541579, "source": 4956714225, "path": [[3522.552022473757, -2290.0491011483837], [3440.952022473631, -2288.1491011474964]], "destination": 4956714223}, {"length": 11.9456541579, "source": 4956714225, "path": [[3522.552022473757, -2290.0491011483837], [3440.952022473631, -2288.1491011474964]], "destination": 4956714223}, {"length": 22.6722826388, "source": 4956714225, "path": [[3522.552022473757, -2290.0491011483837], [3502.6020224737663, -2188.94910114642]], "destination": 270185391}, {"length": 39.8325134789, "source": 1298263464, "path": [[2413.7520224736254, -1311.7491011485072], [2309.1020224736967, -1477.0991011481271]], "destination": 721620626}, {"length": 60.7884848763, "source": 1298263464, "path": [[2413.7520224736254, -1311.7491011485072], [2014.0020224737043, -1237.2491011483078]], "destination": 34845759}, {"length": 24.0189838327, "source": 365925276, "path": [[-1598.3479775263377, -1525.649101147053], [-1658.2979775263684, -1580.7491011479158], [-1702.5979775262545, -1608.4991011453553]], "destination": 930672228}, {"length": 155.971540395, "source": 365925276, "path": [[-1598.3479775263377, -1525.649101147053], [-1586.447977526273, -1561.7491011461482], [-1372.6979775263715, -2211.099101145919]], "destination": 25624242}, {"length": 25.3884397334, "source": 365925276, "path": [[-1598.3479775263377, -1525.649101147053], [-1649.1979775263844, -1416.4991011469397]], "destination": 25624516}, {"length": 28.8627091029, "source": 3732222535, "path": [[4545.452022473695, 2387.3508988536687], [4522.8520224736, 2414.45089885417], [4492.602022473591, 2511.300898852653]], "destination": 654070275}, {"length": 13.6766343964, "source": 3732222535, "path": [[4545.452022473695, 2387.3508988536687], [4610.75202247363, 2431.3508988527133]], "destination": 654070789}, {"length": 34.6578114953, "source": 3732222535, "path": [[4545.452022473695, 2387.3508988536687], [4458.602022473723, 2357.3008988542197], [4370.952022473729, 2286.550898851658]], "destination": 3732222525}, {"length": 31.378422297, "source": 3732222535, "path": [[4545.452022473695, 2387.3508988536687], [4693.852022473743, 2285.5008988535983]], "destination": 654070255}, {"length": 29.1393052735, "source": 830630428, "path": [[3804.402022473674, -3423.4491011453374], [3790.3020224736574, -3416.5991011469996], [3648.402022473629, -3341.999101145632]], "destination": 5057169764}, {"length": 15.48582857, "source": 185883891, "path": [[3297.352022473721, -2098.6491011463213], [3294.0520224737925, -2168.2491011461025]], "destination": 270186256}, {"length": 4.85286305768, "source": 185883891, "path": [[3297.352022473721, -2098.6491011463213], [3295.9520224737917, -2076.8491011473598]], "destination": 4508646339}, {"length": 23.3980532876, "source": 185883891, "path": [[3297.352022473721, -2098.6491011463213], [3320.5520224737215, -2097.099101145972], [3457.152022473764, -2097.849101147631]], "destination": 270185390}, {"length": 11.9886768581, "source": 5044108724, "path": [[-2757.447977526306, -1254.89910114851], [-2718.8479775264173, -1220.1491011474275], [-2712.5479775262916, -1210.0991011472217]], "destination": 930837353}, {"length": 19.00031496, "source": 5044108724, "path": [[-2757.447977526306, -1254.89910114851], [-2712.297977526257, -1283.549101145809], [-2664.847977526419, -1314.7991011486226]], "destination": 5044108737}, {"length": 13.8720684233, "source": 5044108724, "path": [[-2757.447977526306, -1254.89910114851], [-2762.447977526339, -1259.3991011478067], [-2835.4479775263285, -1289.7491011472084]], "destination": 930837217}, {"length": 52.9974436913, "source": 666885557, "path": [[2652.5520224736088, 208.50089885371403], [2490.8520224737886, 232.05089885180996], [2298.9020224737365, 260.0008988515867]], "destination": 2705349867}, {"length": 61.867462473, "source": 666885557, "path": [[2652.5520224736088, 208.50089885371403], [2365.152022473671, 412.55089885439133]], "destination": 2705349854}, {"length": 51.3183315531, "source": 653622710, "path": [[-2312.847977526289, -1076.1991011456473], [-2430.5479775263984, -1055.3491011471294], [-2511.3479775262795, -1055.9491011470357], [-2609.147977526316, -1079.6991011474688], [-2652.9479775263544, -1079.549101145716]], "destination": 146729033}, {"length": 18.8072817653, "source": 653622710, "path": [[-2312.847977526289, -1076.1991011456473], [-2394.3479775263563, -1141.5991011460846]], "destination": 654047845}, {"length": 12.6712086536, "source": 653622710, "path": [[-2312.847977526289, -1076.1991011456473], [-2284.5979775263368, -1070.2491011471693], [-2243.8979775263324, -1044.049101146527]], "destination": 146724462}, {"length": 58.1634303748, "source": 25625680, "path": [[3369.2020224735943, -4035.299101147416], [3346.20202247371, -4296.399101146875]], "destination": 831943768}, {"length": 119.628258145, "source": 25625680, "path": [[3369.2020224735943, -4035.299101147416], [3956.952022473592, -4366.649101147146], [3990.1020224737404, -4385.349101145408]], "destination": 25625657}, {"length": 84.5370207775, "source": 25625680, "path": [[3369.2020224735943, -4035.299101147416], [3460.152022473739, -4149.849101146685], [3436.902022473598, -4337.299101148773], [3341.4020224737937, -4336.849101147067]], "destination": 25625668}, {"length": 35.6494872407, "source": 25625680, "path": [[3369.2020224735943, -4035.299101147416], [3382.8520224736812, -3875.2491011457832]], "destination": 831943759}, {"length": 56.5046083751, "source": 151348664, "path": [[-3739.9979775263328, 3788.100898852065], [-3729.447977526279, 3778.4008988523965], [-3721.197977526236, 3769.950898853125], [-3513.69797752632, 3582.250898851669]], "destination": 94268669}, {"length": 18.0069688241, "source": 151348664, "path": [[-3739.9979775263328, 3788.100898852065], [-3777.8479775263386, 3752.5508988522915], [-3810.74797752623, 3721.8508988523527]], "destination": 151348663}, {"length": 114.354801885, "source": 370134459, "path": [[-5109.447977526216, -271.54910114646214], [-5120.047977526409, -276.2991011486804], [-5754.597977526199, -561.7991011455103]], "destination": 34817816}, {"length": 9.14342067175, "source": 25623997, "path": [[-2201.1979775262703, -4544.099101146059], [-2149.597977526341, -4567.299101147171]], "destination": 928560010}, {"length": 41.77283083, "source": 25623997, "path": [[-2201.1979775262703, -4544.099101146059], [-2291.4479775262284, -4420.749101146981], [-2325.0479775263066, -4374.849101147049]], "destination": 368307}, {"length": 77.7643470769, "source": 370134462, "path": [[-5092.747977526235, -119.59910114711647], [-5387.097977526345, 171.5508988517911]], "destination": 308767716}, {"length": 149.713516691, "source": 25623999, "path": [[-2559.9479775262334, -4042.4491011457067], [-2678.3479775263077, -4001.79910114673], [-3032.7979775262024, -3514.7491011464635], [-3029.197977526321, -3469.449101146438]], "destination": 929440570}, {"length": 141.489656012, "source": 25623999, "path": [[-2559.9479775262334, -4042.4491011457067], [-2908.7479775262714, -3559.999101145905], [-2975.347977526299, -3467.899101146088]], "destination": 25624150}, {"length": 6.06547520214, "source": 25623999, "path": [[-2559.9479775262334, -4042.4491011457067], [-2542.5479775262884, -4067.1991011471673]], "destination": 929367046}, {"length": 221.795522925, "source": 25623999, "path": [[-2559.9479775262334, -4042.4491011457067], [-4073.8979775263306, -4095.649101145682]], "destination": 34816647}, {"length": 25.278865215, "source": 4418237888, "path": [[4317.152022473625, -3012.1991011462515], [4489.85202247365, -3008.5491011462295]], "destination": 1838021324}, {"length": 19.00031496, "source": 5044108737, "path": [[-2664.847977526419, -1314.7991011486226], [-2712.297977526257, -1283.549101145809], [-2757.447977526306, -1254.89910114851]], "destination": 5044108724}, {"length": 27.5947107511, "source": 5044108737, "path": [[-2664.847977526419, -1314.7991011486226], [-2529.697977526224, -1228.2491011461616]], "destination": 654050372}, {"length": 2.50456871326, "source": 5044108737, "path": [[-2664.847977526419, -1314.7991011486226], [-2677.147977526273, -1322.649101147988]], "destination": 654050367}, {"length": 66.8497744677, "source": 666940867, "path": [[3253.2020224735893, -1091.799101146762], [3164.5520224736765, -840.6991011469245], [3156.102022473739, -798.2491011482296]], "destination": 1183501407}, {"length": 12.0739806635, "source": 666940867, "path": [[3253.2020224735893, -1091.799101146762], [3172.7520224738014, -1103.8991011460553]], "destination": 1183501055}, {"length": 18.7020391646, "source": 133129668, "path": [[518.3020224737156, 411.9008988539008], [610.0520224736616, 470.45089885244806]], "destination": 133052906}, {"length": 59.8008829079, "source": 133129668, "path": [[518.3020224737156, 411.9008988539008], [224.90202247360537, 224.70089885118227]], "destination": 133052180}, {"length": 59.9442701254, "source": 133129668, "path": [[518.3020224737156, 411.9008988539008], [443.35202247358654, 461.5508988514705], [416.2020224736107, 468.9008988520982], [394.952022473749, 470.5508988536167], [353.60202247369796, 469.4008988543885], [290.9020224737269, 456.60089885402044], [217.00202247365576, 435.50089885258103], [154.4520224736612, 423.9508988526097]], "destination": 133129414}, {"length": 28.1364691607, "source": 925761926, "path": [[-45.4479775262584, -3415.6991011471405], [-87.1479775264028, -3413.8491011468377], [-237.04797752621687, -3404.7991011476597]], "destination": 25624259}, {"length": 20.1247442089, "source": 925761926, "path": [[-45.4479775262584, -3415.6991011471405], [-30.39797752624196, -3325.7491011475795]], "destination": 25625309}, {"length": 119.350188252, "source": 94268321, "path": [[-4025.9479775262007, 2573.8508988517597], [-3474.797977526256, 2178.2508988543723]], "destination": 141569260}, {"length": 44.2867431037, "source": 94268321, "path": [[-4025.9479775262007, 2573.8508988517597], [-4229.447977526224, 2721.250898851224]], "destination": 675140823}, {"length": 38.1826956024, "source": 25624010, "path": [[2523.502022473645, -3997.3991011486023], [2579.802022473654, -3829.749101146973]], "destination": 25624011}, {"length": 47.1619771481, "source": 25624010, "path": [[2523.502022473645, -3997.3991011486023], [2454.3020224736533, -3960.299101148479], [2483.9520224737566, -3856.999101145675], [2546.902022473763, -3832.299101148351]], "destination": 833088564}, {"length": 128.75519573, "source": 25624010, "path": [[2523.502022473645, -3997.3991011486023], [2633.402022473641, -3931.0991011483056], [2715.852022473708, -3683.8491011472743], [2882.502022473643, -3530.7491011487], [2876.7020224735875, -3491.4991011483207]], "destination": 833088749}, {"length": 29.8497591238, "source": 25624011, "path": [[2579.802022473654, -3829.749101146973], [2623.9020224736455, -3698.69910114673]], "destination": 517915652}, {"length": 4.8463584992, "source": 25624011, "path": [[2579.802022473654, -3829.749101146973], [2546.902022473763, -3832.299101148351]], "destination": 833088564}, {"length": 23.6579222452, "source": 4468710860, "path": [[148.60202247368727, -557.8491011455355], [171.45202247359492, -564.5491011456727], [201.30202247359284, -575.7991011456909], [232.45202247368368, -583.2991011480715], [263.3020224735993, -585.9491011470652], [300.7020224736756, -590.3491011487461]], "destination": 4468710866}, {"length": 29.9977550347, "source": 4468710860, "path": [[148.60202247368727, -557.8491011455355], [156.55202247377707, -573.1491011466971], [177.40202247362726, -614.5991011479168], [218.20202247369025, -656.0991011461681], [243.5020224735851, -675.5991011466733]], "destination": 4468710871}, {"length": 24.2707771838, "source": 4468710860, "path": [[148.60202247368727, -557.8491011455355], [139.75202247373807, -540.749101148208], [111.85202247365744, -451.5491011467532]], "destination": 133130095}, {"length": 75.6613675266, "source": 133129122, "path": [[2181.602022473639, 1840.350898852705], [2272.302022473749, 1851.2008988516016], [2373.102022473761, 1854.6508988528387], [2507.9520224737807, 1836.0008988516086], [2682.0520224737356, 1792.6508988530543]], "destination": 133128776}, {"length": 54.2024058286, "source": 133129122, "path": [[2181.602022473639, 1840.350898852705], [2112.052022473776, 1831.0008988535742], [2055.802022473685, 1815.8508988541655], [1958.0520224737886, 1778.5508988517051], [1858.152022473636, 1728.400898851845]], "destination": 133129106}, {"length": 55.9373139744, "source": 133129122, "path": [[2181.602022473639, 1840.350898852705], [2136.9520224736593, 1812.4008988529283], [2083.0520224737193, 1776.400898851449], [2039.552022473634, 1732.3008988512356], [2001.7020224736282, 1680.7008988521943], [1972.2020224737234, 1634.0008988535715]], "destination": 133129134}, {"length": 70.3372519724, "source": 4069611768, "path": [[-6048.097977526368, 2156.85089885298], [-6118.197977526219, 2196.250898851559], [-6410.797977526306, 2364.4008988519263]], "destination": 4069611757}, {"length": 87.8003629849, "source": 4069611768, "path": [[-6048.097977526368, 2156.85089885298], [-6170.74797752637, 2133.700898852453], [-6430.9479775264135, 2281.9508988511925], [-6432.947977526249, 2309.300898854616], [-6410.797977526306, 2364.4008988519263]], "destination": 4069611757}, {"length": 21.5700794331, "source": 4468710866, "path": [[300.7020224736756, -590.3491011487461], [381.50202247377865, -565.6491011478693], [437.1520224737413, -554.1491011484823]], "destination": 4468710859}, {"length": 23.6579222452, "source": 4468710866, "path": [[300.7020224736756, -590.3491011487461], [263.3020224735993, -585.9491011470652], [232.45202247368368, -583.2991011480715], [201.30202247359284, -575.7991011456909], [171.45202247359492, -564.5491011456727], [148.60202247368727, -557.8491011455355]], "destination": 4468710860}, {"length": 20.9236097133, "source": 4468710866, "path": [[300.7020224736756, -590.3491011487461], [293.00202247362074, -600.6991011453522], [272.20202247368877, -620.5491011463948], [256.2520224735909, -642.8491011476467], [243.5020224735851, -675.5991011466733]], "destination": 4468710871}, {"length": 24.7816440327, "source": 303197652, "path": [[-6570.7479775263255, 4314.450898853294], [-6647.24797752636, 4371.80089885203], [-6604.297977526263, 4392.6508988541]], "destination": 2589554882}, {"length": 8.42842732835, "source": 303197652, "path": [[-6570.7479775263255, 4314.450898853294], [-6527.197977526323, 4339.2508988517875]], "destination": 14798299}, {"length": 24.4553478498, "source": 303197652, "path": [[-6570.7479775263255, 4314.450898853294], [-6508.097977526272, 4262.300898851379], [-6456.597977526401, 4289.550898853633]], "destination": 2589554901}, {"length": 21.3387314878, "source": 303197652, "path": [[-6570.7479775263255, 4314.450898853294], [-6680.197977526392, 4251.050898851361]], "destination": 29588071}, {"length": 20.9236097133, "source": 4468710871, "path": [[243.5020224735851, -675.5991011466733], [256.2520224735909, -642.8491011476467], [272.20202247368877, -620.5491011463948], [293.00202247362074, -600.6991011453522], [300.7020224736756, -590.3491011487461]], "destination": 4468710866}, {"length": 29.9977550347, "source": 4468710871, "path": [[243.5020224735851, -675.5991011466733], [218.20202247369025, -656.0991011461681], [177.40202247362726, -614.5991011479168], [156.55202247377707, -573.1491011466971], [148.60202247368727, -557.8491011455355]], "destination": 4468710860}, {"length": 9.18178277946, "source": 4468710871, "path": [[243.5020224735851, -675.5991011466733], [284.25202247372994, -706.9991011476873]], "destination": 133129359}, {"length": 12.5253622758, "source": 4804746712, "path": [[814.3020224737895, 1549.2508988543818], [752.4020224736195, 1510.35089885454]], "destination": 21378257}, {"length": 12.494022254, "source": 4804746712, "path": [[814.3020224737895, 1549.2508988543818], [876.0520224737611, 1588.050898853055]], "destination": 21378258}, {"length": 64.8779324217, "source": 4804746712, "path": [[814.3020224737895, 1549.2508988543818], [502.95202247374607, 1756.950898851528]], "destination": 4791973991}, {"length": 33.756200369, "source": 204843940, "path": [[3244.2020224736634, -329.9491011468092], [3188.2520224737477, -316.0491011477973], [3052.8020224735997, -333.9991011479526], [3020.5020224736145, -337.4991011462214]], "destination": 1181634707}, {"length": 368.077022568, "source": 4955856167, "path": [[-392.69797752639056, -1075.6491011463254], [-462.3979775262299, -1112.7491011464485], [-21.547977526292783, -1433.999101145389], [501.0520224737469, -1743.3991011479577], [880.7020224737006, -1914.1491011467338], [1250.5520224737054, -2040.04910114719], [1316.052022473757, -1966.2991011486497], [1371.25202247379, -1980.099101146493]], "destination": 177220256}, {"length": 224.247029526, "source": 4955856167, "path": [[-392.69797752639056, -1075.6491011463254], [12.352022473738344, -1384.5491011466038], [18.952022473595065, -1421.3491011467738], [382.8520224737897, -1640.0991011487065], [581.5020224737566, -1743.7991011455267], [670.9520224736921, -1785.6491011478681]], "destination": 4955856149}, {"length": 180.107476225, "source": 4955856167, "path": [[-392.69797752639056, -1075.6491011463254], [-356.7979775263019, -1054.4991011478544], [-1172.1979775263235, -490.79910114713243]], "destination": 4958548518}, {"length": 16.3806954687, "source": 14798299, "path": [[-6527.197977526323, 4339.2508988517875], [-6604.297977526263, 4392.6508988541]], "destination": 2589554882}, {"length": 8.42842732835, "source": 14798299, "path": [[-6527.197977526323, 4339.2508988517875], [-6570.7479775263255, 4314.450898853294]], "destination": 303197652}, {"length": 10.6115562891, "source": 14798299, "path": [[-6527.197977526323, 4339.2508988517875], [-6476.397977526416, 4373.300898851795]], "destination": 675140607}, {"length": 21.1537443557, "source": 34845766, "path": [[3701.3020224736515, -137.2491011473187], [3807.1520224736146, -175.7491011460388], [3827.85202247371, -183.2491011484194]], "destination": 1179696267}, {"length": 49.3594612392, "source": 133129694, "path": [[972.3520224735882, 27.550898852979344], [891.0020224737192, 0.15089885252450586], [844.6020224737172, -21.699101147021338], [792.4520224737996, -64.29910114746917], [769.2020224736584, -93.2491011482739], [755.3520224736765, -128.94910114624736]], "destination": 133129675}, {"length": 16.8392015346, "source": 133129694, "path": [[972.3520224735882, 27.550898852979344], [1084.2520224736418, 45.250898853765875]], "destination": 133129700}, {"length": 79.6307515146, "source": 133129694, "path": [[972.3520224735882, 27.550898852979344], [867.8520224736363, 20.60089885347338], [729.7020224736883, 24.050898854710567], [578.6520224737579, 36.300898852204], [441.8520224735989, 74.75089885389252]], "destination": 133129373}, {"length": 64.5140960735, "source": 133129694, "path": [[972.3520224735882, 27.550898852979344], [968.1020224736603, 48.050898854512525], [967.7020224736488, 72.20089885251468], [974.152022473751, 90.80089885316056], [1001.5020224736215, 107.10089885179741], [984.0020224736179, 119.55089885162806], [1002.4520224736211, 135.3508988515273], [1028.1520224737494, 147.15089885442012], [1046.1020224736828, 134.75089885162106], [1059.0020224736652, 143.1008988532767], [1083.8020224737122, 155.45089885193875], [1119.3520224737074, 163.40089885247266], [1155.3020224737143, 164.95089885282255], [1221.052022473801, 147.90089885252655]], "destination": 133129711}, {"length": 5.0539187341, "source": 3732250533, "path": [[3241.202022473688, 3112.600898852236], [3216.602022473758, 3096.6508988541364]], "destination": 3732250541}, {"length": 19.5089660788, "source": 3732250533, "path": [[3241.202022473688, 3112.600898852236], [3294.452022473582, 3072.7508988519503], [3330.452022473729, 3047.45089885472]], "destination": 3732250534}, {"length": 47.164028952, "source": 133058016, "path": [[2108.552022473731, 530.7008988530981], [1996.2020224737475, 522.5008988531954], [1889.5020224736213, 499.7008988532059], [1794.7020224737819, 485.85089885122557]], "destination": 133129793}, {"length": 9.68806665174, "source": 133058016, "path": [[2108.552022473731, 530.7008988530981], [2156.052022473709, 561.0508988524998]], "destination": 133129242}, {"length": 60.2328470877, "source": 133058016, "path": [[2108.552022473731, 530.7008988530981], [1813.2520224736215, 342.00089885416673]], "destination": 133129310}, {"length": 39.4346007815, "source": 133129700, "path": [[1084.2520224736418, 45.250898853765875], [1135.1020224736885, 48.650898854418756], [1201.402022473763, 62.65089885459929], [1323.9020224737885, 118.2008988536154]], "destination": 1224713998}, {"length": 16.8392015346, "source": 133129700, "path": [[1084.2520224736418, 45.250898853765875], [972.3520224735882, 27.550898852979344]], "destination": 133129694}, {"length": 30.5190107612, "source": 133129700, "path": [[1084.2520224736418, 45.250898853765875], [1123.9020224735884, 70.6008988515805], [1179.7020224737498, 106.7008988542284], [1221.052022473801, 147.90089885252655]], "destination": 133129711}, {"length": 82.4026017853, "source": 3732250534, "path": [[3330.452022473729, 3047.45089885472], [3371.602022473663, 3074.400898853469], [3666.2020224735857, 2879.550898853722], [3604.302022473638, 2839.000898852362]], "destination": 3732250537}, {"length": 4.29103952282, "source": 3732250534, "path": [[3330.452022473729, 3047.45089885472], [3309.652022473797, 3033.8508988521085]], "destination": 3732250538}, {"length": 46.1599094185, "source": 133058023, "path": [[962.9020224737328, 1311.750898853603], [945.7020224736823, 1237.9508988544785], [910.0520224736285, 1157.6508988540013], [888.9520224737435, 1110.4008988525038]], "destination": 133129223}, {"length": 61.8904025255, "source": 133058023, "path": [[962.9020224737328, 1311.750898853603], [661.5020224736146, 1116.5008988527347]], "destination": 133129542}, {"length": 8.79216918243, "source": 133058023, "path": [[962.9020224737328, 1311.750898853603], [1005.7020224736312, 1339.5008988545953]], "destination": 133128615}, {"length": 133.557345826, "source": 1215367557, "path": [[3232.902022473727, -2251.299101146742], [3233.502022473633, -2233.4491011477553], [3182.2520224737973, -2207.249101147113], [2993.452022473697, -2199.3991011477474], [2507.9520224737807, -2138.79910114656], [2417.0020224736354, -2176.649101148342], [2391.7520224736586, -2187.1491011467015]], "destination": 1503278714}, {"length": 8.83800463725, "source": 1215367557, "path": [[3232.902022473727, -2251.299101146742], [3190.752022473653, -2249.2491011476545], [3172.602022473603, -2249.19910114707]], "destination": 2386548220}, {"length": 31.522137623, "source": 1215367557, "path": [[3232.902022473727, -2251.299101146742], [3440.952022473631, -2288.1491011474964]], "destination": 4956714223}, {"length": 26.3424868962, "source": 311075068, "path": [[-2342.447977526252, 2474.0008988537456], [-2195.047977526343, 2406.000898851346]], "destination": 311075048}, {"length": 86.4723724328, "source": 311075068, "path": [[-2342.447977526252, 2474.0008988537456], [-2071.1979775263067, 2747.1508988519136], [-2019.1979775263658, 2799.500898852614]], "destination": 21346804}, {"length": 27.2763886641, "source": 2561299773, "path": [[-4410.197977526398, -2088.6991011472846], [-4264.897977526383, -2011.8491011480444]], "destination": 506888922}, {"length": 36.3437831801, "source": 2561299773, "path": [[-4410.197977526398, -2088.6991011472846], [-4603.797977526414, -2191.0991011466763]], "destination": 506888740}, {"length": 27.3918220377, "source": 2561299773, "path": [[-4410.197977526398, -2088.6991011472846], [-4541.59797752629, -2038.5491011474244], [-4576.8979775262505, -2039.1491011473306]], "destination": 506888334}, {"length": 8.88851202881, "source": 2463876717, "path": [[647.4020224735976, 3439.6008988544227], [691.9020224736006, 3466.80089885254]], "destination": 2543955200}, {"length": 18.2184532378, "source": 2463876717, "path": [[647.4020224735976, 3439.6008988544227], [556.2520224737799, 3383.800898852485]], "destination": 2463876722}, {"length": 28.6596765376, "source": 2463876717, "path": [[647.4020224735976, 3439.6008988544227], [680.2020224736527, 3420.000898852749], [700.4020224736785, 3405.300898851493], [712.00202247379, 3399.450898854184], [727.8520224736073, 3386.8508988526], [734.5020224736043, 3367.7508988532168], [730.8020224736645, 3350.7008988529205], [715.5520224737533, 3337.6008988525996], [715.0020224737652, 3337.250898852062]], "destination": 2463876732}, {"length": 41.1202963291, "source": 2463876717, "path": [[647.4020224735976, 3439.6008988544227], [580.6520224735934, 3479.7008988540765], [512.2020224737067, 3524.3508988536123], [485.9020224736721, 3536.450898852905], [469.8520224737379, 3539.3508988512676], [452.002022473641, 3540.650898852249], [433.30202247360285, 3539.1508988524834], [425.8520224735829, 3536.2008988535363]], "destination": 2463876703}, {"length": 14.8405613038, "source": 241583357, "path": [[-4574.347977526205, 1131.1008988528215], [-4626.74797752638, 1129.350898853687], [-4675.647977526287, 1127.750898852753]], "destination": 4958500472}, {"length": 118.198356578, "source": 241583357, "path": [[-4574.347977526205, 1131.1008988528215], [-4164.5479775263, 800.8008988547033], [-4099.647977526377, 760.3508988545116], [-4065.0479775263816, 747.8008988535123], [-4034.197977526244, 747.8008988535123]], "destination": 241583359}, {"length": 2.04937431886, "source": 1224697328, "path": [[2712.802022473593, 573.3508988541303], [2714.4020224736387, 564.2008988537839]], "destination": 4389621615}, {"length": 73.8917074522, "source": 133129422, "path": [[160.35202247377532, 513.5008988546019], [169.85202247377094, 575.8008988543395], [187.10202247373962, 625.4008988513249], [222.55202247367657, 691.7008988516216], [284.002022473695, 759.3008988528993], [349.60202247358296, 814.0508988532247]], "destination": 133129448}, {"length": 115.48048437, "source": 133129422, "path": [[160.35202247377532, 513.5008988546019], [211.65202247375169, 571.0008988515369], [269.70202247378336, 634.950898852793], [344.8520224735852, 686.0508988530967], [426.6020224736877, 716.6008988512829], [496.9520224737955, 735.7008988542191], [568.0520224737861, 742.1008988544031], [651.4520224736309, 741.9508988526502], [789.2520224737076, 721.3008988529168]], "destination": 133129620}, {"length": 19.9337281106, "source": 133129422, "path": [[160.35202247377532, 513.5008988546019], [154.4520224736612, 423.9508988526097]], "destination": 133129414}, {"length": 7.92241726617, "source": 2463833459, "path": [[-6041.247977526254, 1219.70089885437], [-6005.747977526399, 1192.8008988526528]], "destination": 2463833500}, {"length": 45.7647867238, "source": 925761731, "path": [[688.0020224737659, -3366.199101147771], [999.9520224737157, -3381.5491011459644]], "destination": 260584768}, {"length": 20.528675918, "source": 925761731, "path": [[688.0020224737659, -3366.199101147771], [638.402022473672, -3452.549101147895]], "destination": 25625284}, {"length": 51.5023625289, "source": 34818302, "path": [[-5749.0479775264, -2015.3991011468975], [-5979.697977526399, -2190.34910114857]], "destination": 34818325}, {"length": 57.0772787695, "source": 34818302, "path": [[-5749.0479775264, -2015.3991011468975], [-5484.697977526265, -1826.6491011473818]], "destination": 34818326}, {"length": 62.7252416453, "source": 34818302, "path": [[-5749.0479775264, -2015.3991011468975], [-6057.197977526352, -1819.299101146754]], "destination": 34818301}, {"length": 117.062306692, "source": 25624054, "path": [[1843.4020224737947, -4456.799101145492], [1791.0520224737602, -4430.349101145481], [1208.8020224736429, -4136.149101146458]], "destination": 25625242}, {"length": 90.2564814494, "source": 25624054, "path": [[1843.4020224737947, -4456.799101145492], [1892.8020224737718, -4422.749101145484], [2269.3520224736917, -4163.199101146375]], "destination": 25625339}, {"length": 30.7373703367, "source": 270730746, "path": [[148.20202247367575, -3425.5991011455935], [127.50202247380216, -3458.1491011458356], [90.30202247362062, -3516.5491011461827], [53.50202247367264, -3547.8991011466123]], "destination": 25625053}, {"length": 28.4156830263, "source": 270730746, "path": [[148.20202247367575, -3425.5991011455935], [-45.4479775262584, -3415.6991011471405]], "destination": 925761926}, {"length": 8.13787394876, "source": 2463833595, "path": [[-5690.047977526369, 1090.4508988538453], [-5710.997977526277, 1078.5008988527522], [-5732.097977526385, 1066.5008988546276]], "destination": 2463833615}, {"length": 8.83800463725, "source": 2386548220, "path": [[3172.602022473603, -2249.19910114707], [3190.752022473653, -2249.2491011476545], [3232.902022473727, -2251.299101146742]], "destination": 1215367557}, {"length": 52.7805144221, "source": 3422228394, "path": [[-1669.2479775262113, -44.64910114876375], [-1915.547977526355, 128.75089885255875]], "destination": 3422228281}, {"length": 20.2319443432, "source": 3422228394, "path": [[-1669.2479775262113, -44.64910114876375], [-1601.2479775262545, -2.4491011458849243], [-1577.7979775262186, 12.150898854201841], [-1568.6979775262344, 17.800898852726732]], "destination": 3422228285}, {"length": 148.547433172, "source": 3422228394, "path": [[-1669.2479775262113, -44.64910114876375], [-1243.247977526396, -344.44910114572735], [-1122.3479775264168, -406.84910114663353], [-963.4479775262328, -523.2491011462059]], "destination": 653602325}, {"length": 10.3501392855, "source": 1739548159, "path": [[-6022.197977526344, 895.7508988522989], [-5968.247977526265, 925.8508988523317]], "destination": 185857344}, {"length": 12.5487820513, "source": 1739548159, "path": [[-6022.197977526344, 895.7508988522989], [-6015.0479775262775, 890.8008988512961], [-6061.547977526338, 862.5508988515662], [-6069.497977526206, 868.5508988541812]], "destination": 1739548171}, {"length": 13.6407367493, "source": 1739548159, "path": [[-6022.197977526344, 895.7508988522989], [-6032.547977526281, 903.8508988545857], [-6078.647977526331, 876.2008988512093], [-6069.497977526206, 868.5508988541812]], "destination": 1739548171}, {"length": 31.4868878117, "source": 185856415, "path": [[-5531.797977526232, 1787.6508988514672], [-5588.047977526323, 1828.8008988527338], [-5603.94797752628, 1841.0008988531956], [-5673.397977526307, 1894.2508988537554]], "destination": 310348773}, {"length": 3.36987354244, "source": 185856415, "path": [[-5531.797977526232, 1787.6508988514672], [-5511.097977526358, 1794.3008988545728]], "destination": 4958500471}, {"length": 78.1026708646, "source": 25625309, "path": [[-30.39797752624196, -3325.7491011475795], [501.4020224736182, -3356.5991011457186]], "destination": 25625289}, {"length": 20.1247442089, "source": 25625309, "path": [[-30.39797752624196, -3325.7491011475795], [-45.4479775262584, -3415.6991011471405]], "destination": 925761926}, {"length": 7.50650565308, "source": 370134456, "path": [[-5156.597977526322, -212.94910114733057], [-5106.647977526357, -220.64910114849567]], "destination": 838040829}, {"length": 22.7655733676, "source": 370134456, "path": [[-5156.597977526322, -212.94910114733057], [-5116.897977526236, -154.84910114693662], [-5092.747977526235, -119.59910114711647]], "destination": 370134462}, {"length": 18.5947469468, "source": 311723525, "path": [[-3943.847977526227, -2004.7991011473698], [-3860.197977526347, -2067.7491011475977]], "destination": 2561299770}, {"length": 51.3451361029, "source": 36488710, "path": [[5095.552022473582, 111.70089885226275], [5218.102022473748, 297.3008988540471], [5235.402022473634, 323.45089885410516]], "destination": 36487669}, {"length": 47.164028952, "source": 133129793, "path": [[1794.7020224737819, 485.85089885122557], [1889.5020224736213, 499.7008988532059], [1996.2020224737475, 522.5008988531954], [2108.552022473731, 530.7008988530981]], "destination": 133058016}, {"length": 50.3794469847, "source": 133129793, "path": [[1794.7020224737819, 485.85089885122557], [1745.5520224736176, 470.7508988524012], [1636.1520224736914, 444.5508988517588], [1569.0020224736757, 423.150898853919], [1484.8020224735858, 388.8508988545425]], "destination": 133129777}, {"length": 59.8510400381, "source": 133129793, "path": [[1794.7020224737819, 485.85089885122557], [1743.1520224737706, 488.050898852066], [1683.0020224736231, 487.40089885157545], [1602.5020224736952, 494.55089885341863], [1512.3520224737952, 507.5008988519869], [1433.8020224737847, 525.1008988516048], [1394.402022473651, 531.9008988529106]], "destination": 133129305}, {"length": 45.3462934157, "source": 133128791, "path": [[2394.5520224737393, 865.6008988516817], [2398.1020224737026, 941.7008988528153], [2391.002022473776, 1002.8508988533247], [2371.2020224737616, 1068.0008988543932]], "destination": 133128800}, {"length": 52.1678624053, "source": 133128791, "path": [[2394.5520224737393, 865.6008988516817], [2372.552022473773, 806.700898852597], [2342.5520224737984, 740.3008988546844], [2304.052022473746, 695.9508988515495], [2247.6520224736782, 657.3008988546292]], "destination": 1227145757}, {"length": 42.4640724718, "source": 133128791, "path": [[2394.5520224737393, 865.6008988516817], [2430.9520224736757, 903.7508988534171], [2473.1520224736682, 939.5008988519749], [2524.6020224736208, 973.9508988531043], [2580.002022473771, 1011.5008988513807]], "destination": 133128894}, {"length": 10.8793339459, "source": 2463833615, "path": [[-5732.097977526385, 1066.5008988546276], [-5737.647977526405, 1069.5508988511904], [-5743.297977526263, 1071.2008988527089], [-5753.297977526328, 1071.6008988538306], [-5763.5479775262065, 1068.9008988542525], [-5768.997977526391, 1065.3008988512624], [-5772.4979775262145, 1060.4508988514283], [-5773.297977526237, 1055.1008988528565], [-5770.497977526379, 1048.8508988544254], [-5766.7979775262165, 1045.80089885431]], "destination": 2463833634}, {"length": 10.6297916862, "source": 2463833615, "path": [[-5732.097977526385, 1066.5008988546276], [-5728.647977526258, 1063.0508988533904], [-5726.397977526387, 1057.7508988518503], [-5727.447977526223, 1051.4008988522505], [-5731.397977526198, 1046.650898853585], [-5737.5479775263475, 1043.0508988541476], [-5744.497977526297, 1041.2008988538446], [-5755.597977526339, 1041.250898854429], [-5765.497977526346, 1044.7008988521134], [-5766.7979775262165, 1045.80089885431]], "destination": 2463833634}, {"length": 8.13787394876, "source": 2463833615, "path": [[-5732.097977526385, 1066.5008988546276], [-5710.997977526277, 1078.5008988527522], [-5690.047977526369, 1090.4508988538453]], "destination": 2463833595}, {"length": 34.763832839, "source": 2463876696, "path": [[335.2520224737532, 3596.950898852924], [468.95202247365654, 3673.650898853964], [512.4020224736014, 3701.050898854419]], "destination": 94266274}, {"length": 12.3190811409, "source": 2463876696, "path": [[335.2520224737532, 3596.950898852924], [374.0520224737587, 3570.9008988540345], [382.3520224737198, 3565.3508988531257], [394.2020224736442, 3557.400898852592]], "destination": 2543955108}, {"length": 2.44999639827, "source": 1739548178, "path": [[-6082.1979775262935, 861.3508988517538], [-6069.497977526206, 868.5508988541812]], "destination": 1739548171}, {"length": 21.2381205639, "source": 1739548178, "path": [[-6082.1979775262935, 861.3508988517538], [-6110.247977526351, 881.4508988521652], [-6157.247977526259, 853.0508988542351], [-6130.597977526353, 833.5508988537299]], "destination": 1739548183}, {"length": 20.2142644164, "source": 1739548178, "path": [[-6082.1979775262935, 861.3508988517538], [-6058.847977526316, 843.1508988522296], [-6105.947977526283, 814.6008988525466], [-6130.597977526353, 833.5508988537299]], "destination": 1739548183}, {"length": 26.2239998158, "source": 1223798291, "path": [[1740.1520224737953, 1815.4008988524595], [1849.3020224736867, 1744.0008988529598], [1858.152022473636, 1728.400898851845]], "destination": 133129106}, {"length": 95.9834778569, "source": 1223798291, "path": [[1740.1520224737953, 1815.4008988524595], [2207.502022473662, 2118.2508988530913]], "destination": 133128779}, {"length": 4.50418353636, "source": 1223798291, "path": [[1740.1520224737953, 1815.4008988524595], [1718.202022473747, 1801.2008988534944]], "destination": 204830550}, {"length": 164.717343327, "source": 34818626, "path": [[-6076.247977526261, 635.6508988538678], [-6099.5979775262385, 614.5008988518441], [-6718.6979775262225, 94.25089885439775], [-6769.0979775263395, 51.90089885331872]], "destination": 34818625}, {"length": 38.3990507086, "source": 34818626, "path": [[-6076.247977526261, 635.6508988538678], [-6117.897977526265, 660.1508988524074], [-6273.547977526217, 749.5008988520624]], "destination": 34818620}, {"length": 48.0986258515, "source": 270185390, "path": [[3457.152022473764, -2097.849101147631], [3495.302022473723, -2038.0991011457184], [3686.7020224737867, -1953.8991011458506]], "destination": 34845776}, {"length": 31.3151685592, "source": 270185390, "path": [[3457.152022473764, -2097.849101147631], [3668.102022473585, -2121.69910114568]], "destination": 185883894}, {"length": 45.9077359756, "source": 270185390, "path": [[3457.152022473764, -2097.849101147631], [3420.952022473722, -1892.7991011459255]], "destination": 470183}, {"length": 12.0425073301, "source": 167919126, "path": [[4498.652022473681, 2058.3008988523943], [4542.052022473708, 2085.250898854696], [4558.752022473689, 2095.300898851349]], "destination": 3732250532}, {"length": 103.565723805, "source": 167919126, "path": [[4498.652022473681, 2058.3008988523943], [3991.0020224736, 1733.800898854554]], "destination": 204831572}, {"length": 49.2903065643, "source": 167919126, "path": [[4498.652022473681, 2058.3008988523943], [4300.152022473691, 2205.850898853612], [4275.202022473668, 2224.1508988543046]], "destination": 3732222534}, {"length": 2.56325666606, "source": 1739548183, "path": [[-6130.597977526353, 833.5508988537299], [-6143.69797752623, 825.9008988531491]], "destination": 1739548185}, {"length": 20.2142644164, "source": 1739548183, "path": [[-6130.597977526353, 833.5508988537299], [-6105.947977526283, 814.6008988525466], [-6058.847977526316, 843.1508988522296], [-6082.1979775262935, 861.3508988517538]], "destination": 1739548178}, {"length": 21.2381205639, "source": 1739548183, "path": [[-6130.597977526353, 833.5508988537299], [-6157.247977526259, 853.0508988542351], [-6110.247977526351, 881.4508988521652], [-6082.1979775262935, 861.3508988517538]], "destination": 1739548178}, {"length": 20.0226005922, "source": 34845768, "path": [[4195.502022473763, -886.5491011462723], [4154.752022473618, -972.4991011488271]], "destination": 666951745}, {"length": 5.41215233124, "source": 34845768, "path": [[4195.502022473763, -886.5491011462723], [4159.502022473615, -880.9491011483317]], "destination": 666951702}, {"length": 12.9899449357, "source": 1739548185, "path": [[-6143.69797752623, 825.9008988531491], [-6152.947977526413, 832.6508988538706], [-6199.147977526298, 804.7508988546781], [-6191.047977526232, 798.7008988514788]], "destination": 1739548189}, {"length": 12.4917931264, "source": 1739548185, "path": [[-6143.69797752623, 825.9008988531491], [-6135.997977526397, 820.2508988546242], [-6181.497977526318, 793.3008988523227], [-6191.047977526232, 798.7008988514788]], "destination": 1739548189}, {"length": 2.56325666606, "source": 1739548185, "path": [[-6143.69797752623, 825.9008988531491], [-6130.597977526353, 833.5508988537299]], "destination": 1739548183}, {"length": 24.9609596618, "source": 2463833626, "path": [[-5263.697977526238, 1055.9008988515473], [-5276.747977526419, 1060.9508988537186], [-5300.39797752635, 1064.9508988542777], [-5321.647977526211, 1066.5508988516592], [-5346.497977526399, 1064.550898853156], [-5358.04797752637, 1058.5508988540937], [-5372.597977526317, 1049.0008988526256], [-5379.847977526219, 1042.6008988524416], [-5384.0979775263695, 1032.2508988522827], [-5387.747977526392, 1018.6508988532239]], "destination": 2463833656}, {"length": 21.3732978121, "source": 2463833626, "path": [[-5263.697977526238, 1055.9008988515473], [-5310.497977526252, 1028.200898854692], [-5373.1979775262225, 992.3008988543813]], "destination": 2463833669}, {"length": 90.3293776648, "source": 2463833626, "path": [[-5263.697977526238, 1055.9008988515473], [-5124.347977526256, 1138.5008988540335], [-5111.497977526414, 1135.7008988532868], [-5087.047977526237, 1131.750898853312], [-5069.047977526387, 1132.0508988532652], [-5039.897977526353, 1135.4008988533337], [-5020.997977526198, 1141.6008988511805], [-4949.747977526231, 1136.00089885324], [-4793.247977526338, 1111.6008988523163], [-4706.497977526203, 1126.750898851725]], "destination": 185857229}, {"length": 35.1429119871, "source": 2705349864, "path": [[2162.5520224737293, 281.45089885356356], [2333.8020224736856, 392.25089885164266]], "destination": 4389568699}, {"length": 8.72373457926, "source": 2705349864, "path": [[2162.5520224737293, 281.45089885356356], [2220.2020224737494, 271.45089885394214]], "destination": 204834533}, {"length": 52.8532076033, "source": 2705349864, "path": [[2162.5520224737293, 281.45089885356356], [1813.2520224736215, 342.00089885416673]], "destination": 133129310}, {"length": 132.48042598, "source": 241583359, "path": [[-4034.197977526244, 747.8008988535123], [-4006.847977526373, 761.2508988543709], [-3526.497977526244, 1239.5008988512757]], "destination": 597614875}, {"length": 118.198356578, "source": 241583359, "path": [[-4034.197977526244, 747.8008988535123], [-4065.0479775263816, 747.8008988535123], [-4099.647977526377, 760.3508988545116], [-4164.5479775263, 800.8008988547033], [-4574.347977526205, 1131.1008988528215]], "destination": 241583357}, {"length": 21.5323522079, "source": 133128764, "path": [[3488.8020224737024, 2307.700898853682], [3590.7020224736907, 2237.850898854532]], "destination": 1147407040}, {"length": 46.5652047732, "source": 133128764, "path": [[3488.8020224737024, 2307.700898853682], [3660.7020224737053, 2422.050898854167], [3718.4020224736437, 2452.3008988523998]], "destination": 3732222528}, {"length": 28.584237242, "source": 133128764, "path": [[3488.8020224737024, 2307.700898853682], [3348.602022473779, 2218.200898852274]], "destination": 133128755}, {"length": 26.9376884427, "source": 931139104, "path": [[-2633.0479775262816, -865.3991011478013], [-2548.797977526274, -893.4491011487466], [-2459.4479775263967, -898.5491011479496]], "destination": 146724450}, {"length": 16.5684147248, "source": 931139104, "path": [[-2633.0479775262816, -865.3991011478013], [-2583.647977526304, -848.0491011475522], [-2526.6479775263306, -844.5491011457307]], "destination": 4069612260}, {"length": 3.56734966104, "source": 931139104, "path": [[-2633.0479775262816, -865.3991011478013], [-2657.2479775262004, -863.4491011463297]], "destination": 306085973}, {"length": 4.91230314371, "source": 2463833634, "path": [[-5766.7979775262165, 1045.80089885431], [-5775.947977526341, 1040.6508988545227], [-5791.047977526276, 1030.5508988537326]], "destination": 2463833647}, {"length": 10.8793339459, "source": 2463833634, "path": [[-5766.7979775262165, 1045.80089885431], [-5770.497977526379, 1048.8508988544254], [-5773.297977526237, 1055.1008988528565], [-5772.4979775262145, 1060.4508988514283], [-5768.997977526391, 1065.3008988512624], [-5763.5479775262065, 1068.9008988542525], [-5753.297977526328, 1071.6008988538306], [-5743.297977526263, 1071.2008988527089], [-5737.647977526405, 1069.5508988511904], [-5732.097977526385, 1066.5008988546276]], "destination": 2463833615}, {"length": 10.6297916862, "source": 2463833634, "path": [[-5766.7979775262165, 1045.80089885431], [-5765.497977526346, 1044.7008988521134], [-5755.597977526339, 1041.250898854429], [-5744.497977526297, 1041.2008988538446], [-5737.5479775263475, 1043.0508988541476], [-5731.397977526198, 1046.650898853585], [-5727.447977526223, 1051.4008988522505], [-5726.397977526387, 1057.7508988518503], [-5728.647977526258, 1063.0508988533904], [-5732.097977526385, 1066.5008988546276]], "destination": 2463833615}, {"length": 27.6335162535, "source": 1503278630, "path": [[1282.5020224735972, -1904.1991011476966], [1257.7520224736904, -1940.3991011479604], [1371.25202247379, -1980.099101146493]], "destination": 177220256}, {"length": 19.4253762353, "source": 1503278630, "path": [[1282.5020224735972, -1904.1991011476966], [1397.5520224736026, -1947.7991011456197]], "destination": 653601065}, {"length": 402.892048625, "source": 1503278630, "path": [[1282.5020224735972, -1904.1991011476966], [1120.052022473672, -1842.3991011466967], [816.9520224736715, -1701.2491011456632], [540.7020224736935, -1556.5491011457766], [-716.547977526405, -671.2491011455768]], "destination": 653601046}, {"length": 2.26257247347, "source": 2484772391, "path": [[-1760.2479775262748, 382.05089885323673], [-1771.3979775262346, 375.00089885256216]], "destination": 2484772392}, {"length": 434.748962374, "source": 2484772391, "path": [[-1760.2479775262748, 382.05089885323673], [-1446.2979775262675, 581.2008988534956], [-934.4979775263163, 912.1508988521043], [-929.4979775262835, 921.6008988524038], [-922.8979775262047, 948.1008988529993], [-916.2479775262078, 995.3508988544968], [-920.1479775262644, 1006.600898854515], [-1171.8979775263706, 1228.200898854226], [-1219.9479775263367, 1250.3508988537249], [-1282.8979775263426, 1266.0008988518712], [-1351.8979775262173, 1273.2508988513302], [-2363.9479775263703, 1344.100898851508], [-2401.4979775262013, 1341.9008988542203]], "destination": 2477903488}, {"length": 3.46436839234, "source": 2484772391, "path": [[-1760.2479775262748, 382.05089885323673], [-1766.447977526342, 387.1008988518554], [-1776.6979775262205, 393.150898851502]], "destination": 2386533045}, {"length": 16.9320743131, "source": 2484772392, "path": [[-1771.3979775262346, 375.00089885256216], [-1854.697977526243, 322.1508988531241]], "destination": 2386533113}, {"length": 26.4212810415, "source": 2484772392, "path": [[-1771.3979775262346, 375.00089885256216], [-1816.2479775263307, 397.65089885435145], [-1898.2979775263864, 458.85089885189245]], "destination": 2484772385}, {"length": 2.26257247347, "source": 2484772392, "path": [[-1771.3979775262346, 375.00089885256216], [-1760.2479775262748, 382.05089885323673]], "destination": 2484772391}, {"length": 23.193048176, "source": 4069612236, "path": [[-2861.947977526258, -610.0491011480358], [-2911.547977526352, -623.4991011453417], [-2972.597977526359, -643.5991011457531], [-3002.74797752631, -657.2491011453963]], "destination": 4069612243}, {"length": 91.7945457031, "source": 4069612236, "path": [[-2861.947977526258, -610.0491011480358], [-2814.3479775262213, -600.7991011465208], [-2756.6479775262833, -604.7491011464956], [-2700.347977526274, -614.0491011485949], [-2603.0979775262253, -640.2991011462689], [-2558.147977526293, -656.1491011467524], [-2513.8979775263247, -693.6491011479973], [-2501.147977526319, -743.4991011479042], [-2505.197977526352, -793.3491011478111], [-2526.6479775263306, -844.5491011457307]], "destination": 4069612260}, {"length": 60.0860013523, "source": 4069612236, "path": [[-2861.947977526258, -610.0491011480358], [-2879.347977526203, -645.9991011453781], [-2892.7479775262555, -686.5991011473227], [-2896.1479775262424, -713.9491011471932], [-2891.4479775263844, -744.3991011477635], [-2877.997977526414, -765.5491011462345], [-2857.2479775264005, -790.6991011488174], [-2825.0479775262515, -815.4491011467258], [-2767.1979775263367, -845.899101147296]], "destination": 146724453}, {"length": 48.10925414, "source": 4069612236, "path": [[-2861.947977526258, -610.0491011480358], [-2843.1479775263833, -578.949101146975], [-2829.0479775263666, -536.1491011477426], [-2826.397977526263, -510.14910114588474], [-2830.397977526378, -462.49910114681825], [-2849.947977526357, -398.4991011485306]], "destination": 4069612223}, {"length": 52.8532076033, "source": 133129310, "path": [[1813.2520224736215, 342.00089885416673], [2162.5520224737293, 281.45089885356356]], "destination": 2705349864}, {"length": 49.1747210512, "source": 133129310, "path": [[1813.2520224736215, 342.00089885416673], [1484.8020224735858, 388.8508988545425]], "destination": 133129777}, {"length": 60.2328470877, "source": 133129310, "path": [[1813.2520224736215, 342.00089885416673], [2108.552022473731, 530.7008988530981]], "destination": 133058016}, {"length": 81.9182215039, "source": 133129310, "path": [[1813.2520224736215, 342.00089885416673], [1411.6520224736196, 85.35089885342018]], "destination": 204836247}, {"length": 34.8499485017, "source": 2463833647, "path": [[-5791.047977526276, 1030.5508988537326], [-5873.497977526343, 982.3508988517915], [-5927.997977526411, 950.0008988538866], [-5968.247977526265, 925.8508988523317]], "destination": 185857344}, {"length": 46.5973330201, "source": 2463833647, "path": [[-5791.047977526276, 1030.5508988537326], [-5675.247977526387, 945.5008988545899], [-5578.6979775263035, 874.4008988514906]], "destination": 2463833700}, {"length": 4.91230314371, "source": 2463833647, "path": [[-5791.047977526276, 1030.5508988537326], [-5775.947977526341, 1040.6508988545227], [-5766.7979775262165, 1045.80089885431]], "destination": 2463833634}, {"length": 47.8436965323, "source": 2463833647, "path": [[-5791.047977526276, 1030.5508988537326], [-5856.447977526269, 1081.150898851746], [-6005.747977526399, 1192.8008988526528]], "destination": 2463833500}, {"length": 10.8857455598, "source": 2705350342, "path": [[4836.152022473783, -2297.599101147796], [4836.302022473759, -2346.5491011478434]], "destination": 2705350402}, {"length": 120.250518827, "source": 2705350342, "path": [[4836.152022473783, -2297.599101147796], [5657.652022473591, -2315.0491011456606]], "destination": 2705350349}, {"length": 13.4520525831, "source": 2705350342, "path": [[4836.152022473783, -2297.599101147796], [4744.252022473638, -2295.649101146324]], "destination": 2705350335}, {"length": 50.3794469847, "source": 133129777, "path": [[1484.8020224735858, 388.8508988545425], [1569.0020224736757, 423.150898853919], [1636.1520224736914, 444.5508988517588], [1745.5520224736176, 470.7508988524012], [1794.7020224737819, 485.85089885122557]], "destination": 133129793}, {"length": 43.9392112579, "source": 133129777, "path": [[1484.8020224735858, 388.8508988545425], [1191.6020224735923, 431.5508988526062]], "destination": 133129316}, {"length": 26.9320627089, "source": 133129777, "path": [[1484.8020224735858, 388.8508988545425], [1453.6020224737988, 269.5008988524705]], "destination": 133129813}, {"length": 49.1747210512, "source": 133129777, "path": [[1484.8020224735858, 388.8508988545425], [1813.2520224736215, 342.00089885416673]], "destination": 133129310}, {"length": 34.7686849813, "source": 133129777, "path": [[1484.8020224735858, 388.8508988545425], [1448.8020224736608, 470.15089885249495], [1426.952022473671, 501.3508988511717], [1394.402022473651, 531.9008988529106]], "destination": 133129305}, {"length": 9.38885777116, "source": 2533527475, "path": [[-4493.597977526242, 3480.9508988544735], [-4520.097977526394, 3470.5008988531463], [-4549.447977526322, 3460.2008988535717]], "destination": 2503919664}, {"length": 13.8393524297, "source": 2533527475, "path": [[-4493.597977526242, 3480.9508988544735], [-4493.647977526382, 3486.850898852367], [-4523.347977526404, 3539.7008988518055]], "destination": 2533527473}, {"length": 71.8009799321, "source": 2533527475, "path": [[-4493.597977526242, 3480.9508988544735], [-4398.94797752638, 3518.4008988515816], [-4355.097977526201, 3537.4508988539333], [-4262.447977526395, 3581.000898851272], [-4203.1479775264115, 3606.8508988513768], [-4131.797977526386, 3624.800898851532], [-4065.5979775263695, 3627.0008988523728]], "destination": 2503919612}, {"length": 24.6719497678, "source": 666887732, "path": [[5302.202022473779, 1818.1508988526218], [5355.552022473731, 1850.8508988546168], [5425.602022473663, 1893.750898851465]], "destination": 368272}, {"length": 12.9216853397, "source": 653598371, "path": [[-792.7979775264049, -417.14910114620807], [-856.9979775263637, -457.04910114707786]], "destination": 653598402}, {"length": 170.678073361, "source": 653598371, "path": [[-792.7979775264049, -417.14910114620807], [-1417.7979775262806, 10.200898852730234], [-1614.747977526365, 126.95089885284006]], "destination": 205086386}, {"length": 11.3772104761, "source": 653598371, "path": [[-792.7979775264049, -417.14910114620807], [-736.297977526279, -381.99910114755653]], "destination": 653598358}, {"length": 28.8759868574, "source": 259010103, "path": [[5944.052022473612, 2030.0008988520801], [5877.502022473724, 1996.8508988519318], [5786.752022473695, 1951.6008988524902]], "destination": 130097205}, {"length": 27.5663225748, "source": 259010103, "path": [[5944.052022473612, 2030.0008988520801], [6015.75202247373, 2069.4008988542123], [6088.652022473661, 2109.4508988532825]], "destination": 262314301}, {"length": 24.9609596618, "source": 2463833656, "path": [[-5387.747977526392, 1018.6508988532239], [-5384.0979775263695, 1032.2508988522827], [-5379.847977526219, 1042.6008988524416], [-5372.597977526317, 1049.0008988526256], [-5358.04797752637, 1058.5508988540937], [-5346.497977526399, 1064.550898853156], [-5321.647977526211, 1066.5508988516592], [-5300.39797752635, 1064.9508988542777], [-5276.747977526419, 1060.9508988537186], [-5263.697977526238, 1055.9008988515473]], "destination": 2463833626}, {"length": 6.29307271019, "source": 2463833656, "path": [[-5387.747977526392, 1018.6508988532239], [-5384.697977526276, 1008.3008988530651], [-5378.647977526407, 998.3008988534436], [-5373.1979775262225, 992.3008988543813]], "destination": 2463833669}, {"length": 43.3501750689, "source": 2463833656, "path": [[-5387.747977526392, 1018.6508988532239], [-5394.397977526389, 1028.750898854014], [-5402.297977526338, 1040.3508988545696], [-5411.997977526228, 1054.3008988541658], [-5421.697977526341, 1067.4508988515186], [-5429.2979775263375, 1077.050898853571], [-5440.497977526215, 1091.800898851858], [-5449.897977526374, 1102.200898852601], [-5461.447977526346, 1117.1508988532253], [-5474.147977526211, 1129.3008988531028], [-5486.597977526264, 1140.3008988537522], [-5506.597977526395, 1154.2508988533484], [-5531.197977526325, 1174.0008988532225], [-5542.147977526391, 1183.5008988541063]], "destination": 2463833510}, {"length": 60.4985254127, "source": 146724409, "path": [[-3061.2979775264116, -139.64910114694362], [-3206.797977526321, -32.44910114830191], [-3334.9979775263437, 64.25089885198076]], "destination": 185876467}, {"length": 16.7834459865, "source": 2705349524, "path": [[3090.5520224737693, 3405.850898854368], [3174.952022473754, 3354.750898854064]], "destination": 3732250530}, {"length": 52.5190824922, "source": 2705349524, "path": [[3090.5520224737693, 3405.850898854368], [2869.4520224736843, 3270.600898851228], [2827.7020224736216, 3245.050898854629]], "destination": 94267106}, {"length": 12.0829631738, "source": 2705349524, "path": [[3090.5520224737693, 3405.850898854368], [3142.9520224737216, 3434.150898854682], [3155.752022473646, 3439.000898854516]], "destination": 470173}, {"length": 8.97629445796, "source": 2463833701, "path": [[-5537.997977526299, 844.2008988538419], [-5578.6979775263035, 874.4008988514906]], "destination": 2463833700}, {"length": 26.0379352616, "source": 2705350304, "path": [[3743.7520224736786, -2199.599101146532], [3655.302022473661, -2301.1991011472333]], "destination": 4956714224}, {"length": 10.4057202283, "source": 2705350304, "path": [[3743.7520224736786, -2199.599101146532], [3672.6520224736882, -2200.8491011469287]], "destination": 470182}, {"length": 108.465243905, "source": 1224777982, "path": [[1146.6020224737417, 1244.4508988522784], [1100.9520224736225, 1216.1508988519643], [1066.5020224736033, 1189.850898853706], [1038.3020224737916, 1156.750898854142], [1023.4520224736698, 1117.400898852594], [1014.702022473779, 1078.1008988516305], [1008.2520224736768, 1031.2008988542232], [1013.0520224735928, 984.2508988526788], [1022.9020224736818, 942.950898853212], [1042.3520224736028, 905.700898851336], [1075.002022473681, 861.8508988540441], [1131.8520224736783, 803.450898853697]], "destination": 133128533}, {"length": 29.5278191903, "source": 1224777982, "path": [[1146.6020224737417, 1244.4508988522784], [1005.7020224736312, 1339.5008988545953]], "destination": 133128615}, {"length": 51.4864526063, "source": 159893055, "path": [[1196.3520224735903, 3682.2508988514355], [1217.4520224736973, 3704.850898852641], [1352.7020224737284, 3850.250898853602], [1382.8520224736797, 3878.500898853332]], "destination": 159894354}, {"length": 81.5075948655, "source": 159893055, "path": [[1196.3520224735903, 3682.2508988514355], [1204.4020224737385, 3647.6508988521064], [1215.4020224737217, 3601.4008988516366], [1169.4520224736493, 3563.6508988545756], [953.0520224736439, 3427.7008988539137], [911.3520224737215, 3399.350898853015]], "destination": 159893060}, {"length": 46.7734069811, "source": 270803125, "path": [[-3884.897977526336, -394.09910114684976], [-3688.697977526356, -228.04910114615495]], "destination": 304991212}, {"length": 11.6735843812, "source": 666891842, "path": [[5239.152022473714, 1285.8008988523295], [5315.302022473656, 1270.1508988541832]], "destination": 666946225}, {"length": 28.9026553462, "source": 666891842, "path": [[5239.152022473714, 1285.8008988523295], [5177.402022473742, 1162.3508988520825]], "destination": 36487636}, {"length": 11.6182507728, "source": 666891842, "path": [[5239.152022473714, 1285.8008988523295], [5163.352022473644, 1301.35089885286]], "destination": 666946271}, {"length": 13.0759557836, "source": 4955856139, "path": [[480.50202247362785, -1326.7991011467473], [398.2520224736774, -1303.7991011479733]], "destination": 4955856145}, {"length": 12.7637855161, "source": 4955856139, "path": [[480.50202247362785, -1326.7991011467473], [415.8020224735992, -1288.2991011480271]], "destination": 4955856170}, {"length": 87.244577391, "source": 25624132, "path": [[-561.3979775263011, -4090.249101146526], [-972.4979775262988, -3806.049101147124]], "destination": 25623937}, {"length": 6.29307271019, "source": 2463833669, "path": [[-5373.1979775262225, 992.3008988543813], [-5378.647977526407, 998.3008988534436], [-5384.697977526276, 1008.3008988530651], [-5387.747977526392, 1018.6508988532239]], "destination": 2463833656}, {"length": 21.3732978121, "source": 2463833669, "path": [[-5373.1979775262225, 992.3008988543813], [-5310.497977526252, 1028.200898854692], [-5263.697977526238, 1055.9008988515473]], "destination": 2463833626}, {"length": 21.239880265, "source": 2463833669, "path": [[-5373.1979775262225, 992.3008988543813], [-5482.697977526207, 929.600898853522]], "destination": 2463833684}, {"length": 31.2882719898, "source": 2463833669, "path": [[-5373.1979775262225, 992.3008988543813], [-5365.547977526308, 980.6508988532414], [-5362.497977526415, 968.6508988515641], [-5361.597977526333, 962.9008988518706], [-5362.847977526286, 956.5008988516865], [-5365.3979775263315, 949.1508988546116], [-5369.347977526307, 944.1508988530245], [-5373.597977526234, 937.7508988528405], [-5379.347977526372, 932.2008988519315], [-5382.547977526242, 929.3008988535689], [-5387.397977526298, 926.0008988540847], [-5393.597977526365, 923.200898853338], [-5400.897977526409, 920.6008988513759], [-5408.297977526288, 918.100898854135], [-5420.597977526365, 917.2008988542757], [-5430.897977526383, 916.4008988520322], [-5439.097977526286, 916.7008988519854], [-5449.397977526304, 917.4008988530602], [-5462.297977526287, 919.8008988526851], [-5471.3979775262715, 923.200898853338], [-5477.597977526339, 926.5008988528223], [-5482.697977526207, 929.600898853522]], "destination": 2463833684}, {"length": 53.7339418183, "source": 3491466823, "path": [[-1024.9979775263096, 374.90089885139355], [-947.4479775262168, 386.40089885433326], [-878.697977526377, 400.3008988533452], [-806.94797752634, 403.9508988533669], [-735.7479775262909, 397.2008988526454], [-668.5479775263569, 380.35089885468665]], "destination": 639619459}, {"length": 100.700049416, "source": 3491466823, "path": [[-1024.9979775263096, 374.90089885139355], [-528.5479775263279, 688.5008988533059]], "destination": 21378260}, {"length": 3.51261098683, "source": 3491466823, "path": [[-1024.9979775263096, 374.90089885139355], [-1042.2979775264184, 363.9508988513285]], "destination": 160026291}, {"length": 24.1469265373, "source": 1503278666, "path": [[1493.602022473617, -1980.3491011458618], [1466.5020224737812, -2013.4491011454259], [1371.25202247379, -1980.099101146493]], "destination": 177220256}, {"length": 15.8072483428, "source": 1503278666, "path": [[1493.602022473617, -1980.3491011458618], [1397.5520224736026, -1947.7991011456197]], "destination": 653601065}, {"length": 141.04677335, "source": 1503278666, "path": [[1493.602022473617, -1980.3491011458618], [1645.352022473734, -2031.7491011461186], [2137.0020224737996, -2155.399101148703], [2363.552022473625, -2196.8991011469543], [2391.7520224736586, -2187.1491011467015]], "destination": 1503278714}, {"length": 7.26178489615, "source": 3491466827, "path": [[-1078.0479775263086, 341.3008988530919], [-1042.2979775264184, 363.9508988513285]], "destination": 160026291}, {"length": 74.7168241347, "source": 3491466827, "path": [[-1078.0479775263086, 341.3008988530919], [-1104.3979775262615, 292.30089885246], [-1131.8479775264123, 248.55089885278403], [-1144.0479775262081, 201.90089885119278], [-1140.3979775264083, 154.650898853248], [-1121.1979775263003, 109.05089885326902], [-1087.247977526351, 67.30089885209622], [-1040.247977526221, 31.450898852369846]], "destination": 3491466845}, {"length": 55.6107743122, "source": 3491466827, "path": [[-1078.0479775263086, 341.3008988530919], [-1351.747977526241, 167.8008988541535]], "destination": 160023534}, {"length": 19.8545051484, "source": 3422342732, "path": [[4056.352022473675, 2630.1508988524347], [4043.8020224737857, 2622.200898851901], [3950.9020224737233, 2574.050898854097]], "destination": 3732221821}, {"length": 204.383751211, "source": 666949200, "path": [[4788.652022473583, 490.6008988534438], [4758.10202247362, 470.15089885249495], [4752.4520224737635, 458.2008988514019], [4387.702022473627, -312.8991011465132], [4439.052022473744, -374.49910114872864]], "destination": 368273}, {"length": 57.0701048554, "source": 666949200, "path": [[4788.652022473583, 490.6008988534438], [4754.752022473774, 506.30089885217444], [4469.852022473741, 638.4508988546145]], "destination": 34845786}, {"length": 72.6208275855, "source": 653622568, "path": [[-2699.797977526286, -952.299101147247], [-3175.9479775264053, -860.0991011462611]], "destination": 654047843}, {"length": 14.8997221331, "source": 653622568, "path": [[-2699.797977526286, -952.299101147247], [-2730.397977526389, -1016.1991011479188]], "destination": 146729036}, {"length": 20.7168168614, "source": 653622568, "path": [[-2699.797977526286, -952.299101147247], [-2657.2479775262004, -863.4491011463297]], "destination": 306085973}, {"length": 69.7540953977, "source": 653622568, "path": [[-2699.797977526286, -952.299101147247], [-2243.8979775263324, -1044.049101146527]], "destination": 146724462}, {"length": 10.6818182486, "source": 2463833684, "path": [[-5482.697977526207, 929.600898853522], [-5537.747977526264, 898.0508988543079]], "destination": 2463833697}, {"length": 21.239880265, "source": 2463833684, "path": [[-5482.697977526207, 929.600898853522], [-5373.1979775262225, 992.3008988543813]], "destination": 2463833669}, {"length": 31.2882719898, "source": 2463833684, "path": [[-5482.697977526207, 929.600898853522], [-5477.597977526339, 926.5008988528223], [-5471.3979775262715, 923.200898853338], [-5462.297977526287, 919.8008988526851], [-5449.397977526304, 917.4008988530602], [-5439.097977526286, 916.7008988519854], [-5430.897977526383, 916.4008988520322], [-5420.597977526365, 917.2008988542757], [-5408.297977526288, 918.100898854135], [-5400.897977526409, 920.6008988513759], [-5393.597977526365, 923.200898853338], [-5387.397977526298, 926.0008988540847], [-5382.547977526242, 929.3008988535689], [-5379.347977526372, 932.2008988519315], [-5373.597977526234, 937.7508988528405], [-5369.347977526307, 944.1508988530245], [-5365.3979775263315, 949.1508988546116], [-5362.847977526286, 956.5008988516865], [-5361.597977526333, 962.9008988518706], [-5362.497977526415, 968.6508988515641], [-5365.547977526308, 980.6508988532414], [-5373.1979775262225, 992.3008988543813]], "destination": 2463833669}, {"length": 26.9320627089, "source": 133129813, "path": [[1453.6020224737988, 269.5008988524705], [1484.8020224735858, 388.8508988545425]], "destination": 133129777}, {"length": 42.494605698, "source": 133129813, "path": [[1453.6020224737988, 269.5008988524705], [1372.6520224737194, 311.1508988524747], [1330.8020224735983, 327.15089885471116], [1300.1020224736592, 334.60089885295474], [1247.9020224736014, 341.9008988529981], [1194.9020224737428, 344.7508988543291]], "destination": 133129723}, {"length": 24.4780830148, "source": 133129813, "path": [[1453.6020224737988, 269.5008988524705], [1443.25202247364, 232.7508988528848], [1417.602022473652, 193.55089885308985], [1394.8020224736624, 167.55089885123198]], "destination": 3730881193}, {"length": 56.92326667, "source": 25624150, "path": [[-2975.347977526299, -3467.899101146088], [-2857.3479775262367, -3493.6991011456084], [-2593.2979775262766, -3481.0491011469935]], "destination": 25623946}, {"length": 150.543854923, "source": 25624150, "path": [[-2975.347977526299, -3467.899101146088], [-2823.1479775262524, -3555.24910114724], [-2467.997977526393, -4046.5991011480182]], "destination": 270732364}, {"length": 157.065993917, "source": 25624150, "path": [[-2975.347977526299, -3467.899101146088], [-3020.84797752622, -3405.7991011486874], [-3374.2979775264193, -2922.999101148349], [-3441.5479775262716, -2831.699101147223]], "destination": 929442917}, {"length": 141.489656012, "source": 25624150, "path": [[-2975.347977526299, -3467.899101146088], [-2908.7479775262714, -3559.999101145905], [-2559.9479775262334, -4042.4491011457067]], "destination": 25623999}, {"length": 18.2766064596, "source": 25624151, "path": [[-2164.097977526369, -2981.5491011468966], [-2126.2479775263632, -2954.3491011487786], [-2108.897977526336, -2942.1491011483167], [-2069.0979775264127, -2930.6491011453772]], "destination": 25624232}, {"length": 160.575116953, "source": 25624151, "path": [[-2164.097977526369, -2981.5491011468966], [-2906.2979775262843, -3426.4991011454526], [-2975.347977526299, -3467.899101146088]], "destination": 25624150}, {"length": 33.5948521258, "source": 185876056, "path": [[-3452.597977526395, -780.8991011479804], [-3318.5979775263163, -778.7491011477243], [-3228.2479775262996, -799.2491011457048]], "destination": 4069612257}, {"length": 44.8814160121, "source": 185876056, "path": [[-3452.597977526395, -780.8991011479804], [-3537.4979775262273, -730.5991011463675], [-3669.5479775263884, -638.4491011459659]], "destination": 267659010}, {"length": 44.3760805595, "source": 185876056, "path": [[-3452.597977526395, -780.8991011479804], [-3366.247977526271, -814.5991011474507], [-3283.9479775264026, -838.7991011460372], [-3175.9479775264053, -860.0991011462611]], "destination": 654047843}, {"length": 7.97231560655, "source": 2463833700, "path": [[-5578.6979775263035, 874.4008988514906], [-5537.747977526264, 898.0508988543079]], "destination": 2463833697}, {"length": 8.97629445796, "source": 2463833700, "path": [[-5578.6979775263035, 874.4008988514906], [-5537.997977526299, 844.2008988538419]], "destination": 2463833701}, {"length": 46.5973330201, "source": 2463833700, "path": [[-5578.6979775263035, 874.4008988514906], [-5675.247977526387, 945.5008988545899], [-5791.047977526276, 1030.5508988537326]], "destination": 2463833647}, {"length": 14.746195707, "source": 146724613, "path": [[-3510.3479775262513, -1346.4491011454527], [-3438.797977526331, -1299.7491011468298]], "destination": 146724616}, {"length": 25.6934643366, "source": 146724613, "path": [[-3510.3479775262513, -1346.4491011454527], [-3424.847977526291, -1402.0991011456374], [-3395.9479775262926, -1433.149101146114]], "destination": 652952449}, {"length": 41.0469575936, "source": 146724613, "path": [[-3510.3479775262513, -1346.4491011454527], [-3620.8979775262937, -1422.3491011478018], [-3637.2979775263216, -1460.2991011472], [-3632.047977526254, -1500.1491011474855]], "destination": 146724574}, {"length": 11.4808947994, "source": 3422342747, "path": [[4085.8520224738013, 2556.200898851557], [4073.3520224736085, 2548.250898854576], [4028.2520224736995, 2521.1508988540745]], "destination": 3732221819}, {"length": 10.5740176257, "source": 133129820, "path": [[1350.2520224737414, 130.15089885470843], [1391.6520224737105, 163.9508988517946], [1394.8020224736624, 167.55089885123198]], "destination": 3730881193}, {"length": 4.68177045496, "source": 133129820, "path": [[1350.2520224737414, 130.15089885470843], [1323.9020224737885, 118.2008988536154]], "destination": 1224713998}, {"length": 13.4151525415, "source": 133129820, "path": [[1350.2520224737414, 130.15089885470843], [1411.6520224736196, 85.35089885342018]], "destination": 204836247}, {"length": 74.7168241347, "source": 3491466845, "path": [[-1040.247977526221, 31.450898852369846], [-1087.247977526351, 67.30089885209622], [-1121.1979775263003, 109.05089885326902], [-1140.3979775264083, 154.650898853248], [-1144.0479775262081, 201.90089885119278], [-1131.8479775264123, 248.55089885278403], [-1104.3979775262615, 292.30089885246], [-1078.0479775263086, 341.3008988530919]], "destination": 3491466827}, {"length": 17.9563537454, "source": 3491466845, "path": [[-1040.247977526221, 31.450898852369846], [-1129.59797752632, -23.899101147861757]], "destination": 160008334}, {"length": 11.5704444365, "source": 3491466845, "path": [[-1040.247977526221, 31.450898852369846], [-982.2979775262475, 66.85089885394291]], "destination": 133129935}, {"length": 84.1127928203, "source": 158834270, "path": [[1867.6520224736314, 2632.450898854444], [2280.302022473757, 2895.7508988511904]], "destination": 249578857}, {"length": 44.2239269336, "source": 158834270, "path": [[1867.6520224736314, 2632.450898854444], [1801.652022473732, 2590.0508988527804], [1651.4520224737428, 2493.5008988542504]], "destination": 158835218}, {"length": 42.4919672202, "source": 2463876703, "path": [[425.8520224735829, 3536.2008988535363], [418.7020224737381, 3533.3508988522053], [415.0520224737164, 3529.0008988546615], [412.55202247358903, 3523.9508988524904], [412.2520224736359, 3512.2008988537345], [412.55202247358903, 3500.8508988525477], [416.95202247371554, 3491.050898851711], [425.40202247365323, 3478.5508988512956], [439.1520224737988, 3465.850898852096], [460.20202247376574, 3447.600898851988], [556.2520224737799, 3383.800898852485]], "destination": 2463876722}, {"length": 6.60876084702, "source": 2463876703, "path": [[425.8520224735829, 3536.2008988535363], [394.2020224736442, 3557.400898852592]], "destination": 2543955108}, {"length": 41.1202963291, "source": 2463876703, "path": [[425.8520224735829, 3536.2008988535363], [433.30202247360285, 3539.1508988524834], [452.002022473641, 3540.650898852249], [469.8520224737379, 3539.3508988512676], [485.9020224736721, 3536.450898852905], [512.2020224737067, 3524.3508988536123], [580.6520224735934, 3479.7008988540765], [647.4020224735976, 3439.6008988544227]], "destination": 2463876717}, {"length": 36.2434585124, "source": 241886816, "path": [[6231.802022473643, -3310.249101147633], [5984.202022473628, -3304.7991011478925]], "destination": 5059182770}, {"length": 7.97231560655, "source": 2463833697, "path": [[-5537.747977526264, 898.0508988543079], [-5578.6979775263035, 874.4008988514906]], "destination": 2463833700}, {"length": 10.6818182486, "source": 2463833697, "path": [[-5537.747977526264, 898.0508988543079], [-5482.697977526207, 929.600898853522]], "destination": 2463833684}, {"length": 47.0274759382, "source": 2463833697, "path": [[-5537.747977526264, 898.0508988543079], [-5517.647977526297, 883.0008988525151], [-5453.797977526209, 835.25089885228], [-5439.597977526356, 824.3008988522149], [-5375.147977526362, 774.7508988522611], [-5354.247977526372, 758.6508988524088], [-5327.547977526326, 738.100898853844]], "destination": 185858401}, {"length": 26.9376884427, "source": 146724450, "path": [[-2459.4479775263967, -898.5491011479496], [-2548.797977526274, -893.4491011487466], [-2633.0479775262816, -865.3991011478013]], "destination": 931139104}, {"length": 15.8836727237, "source": 146724450, "path": [[-2459.4479775263967, -898.5491011479496], [-2487.0979775262203, -864.3991011467733], [-2526.6479775263306, -844.5491011457307]], "destination": 4069612260}, {"length": 47.3578203795, "source": 146724450, "path": [[-2459.4479775263967, -898.5491011479496], [-2407.4479775262334, -935.799101146273], [-2352.7979775264107, -961.6991011469622], [-2271.44797752632, -988.9491011456641], [-2243.8979775263324, -1044.049101146527]], "destination": 146724462}, {"length": 24.0189838327, "source": 930672228, "path": [[-1702.5979775262545, -1608.4991011453553], [-1658.2979775263684, -1580.7491011479158], [-1598.3479775263377, -1525.649101147053]], "destination": 365925276}, {"length": 94.551086945, "source": 930672228, "path": [[-1702.5979775262545, -1608.4991011453553], [-1813.8479775262617, -1537.5491011475617], [-2167.8979775263674, -1761.6491011480662]], "destination": 146739092}, {"length": 2.02504197485, "source": 930672228, "path": [[-1702.5979775262545, -1608.4991011453553], [-1712.047977526332, -1615.1491011484609]], "destination": 652950772}, {"length": 74.6444718693, "source": 133129829, "path": [[749.2520224736676, 273.65089885122984], [856.9020224737933, 235.65089885124735], [891.9020224738006, 232.6008988546846], [916.4020224736724, 234.00089885328157], [948.3520224737863, 242.2508988537686], [976.9020224736913, 252.20089885280572], [1027.1520224736098, 280.350898851367], [1096.9020224735893, 314.7008988513278], [1147.0520224736713, 332.55089885386724], [1194.9020224737428, 344.7508988543291]], "destination": 133129723}, {"length": 15.3507981013, "source": 133129829, "path": [[749.2520224736676, 273.65089885122984], [824.0520224735981, 322.0508988519555]], "destination": 133052908}, {"length": 63.0841481526, "source": 133129829, "path": [[749.2520224736676, 273.65089885122984], [441.8520224735989, 74.75089885389252]], "destination": 133129373}, {"length": 19.8724097971, "source": 3422342758, "path": [[4205.502022473606, 2528.5508988517336], [4192.952022473717, 2520.6008988511994], [4112.202022473754, 2463.6508988535866]], "destination": 3732221820}, {"length": 60.593591413, "source": 133129489, "path": [[724.302022473644, 922.20089885231], [594.5520224737155, 901.1508988514549], [479.85202247358137, 872.9008988517251], [349.60202247358296, 814.0508988532247]], "destination": 133129448}, {"length": 45.6778553622, "source": 133129489, "path": [[724.302022473644, 922.20089885231], [789.2520224737076, 721.3008988529168]], "destination": 133129620}, {"length": 36.3834819625, "source": 133129489, "path": [[724.302022473644, 922.20089885231], [803.2520224736661, 920.2008988538068], [907.4020224737467, 869.3008988522877], [939.9520224737668, 854.1008988522947]], "destination": 133129204}, {"length": 44.1767117333, "source": 133129489, "path": [[724.302022473644, 922.20089885231], [661.5020224736146, 1116.5008988527347]], "destination": 133129542}, {"length": 48.3708947303, "source": 133129489, "path": [[724.302022473644, 922.20089885231], [789.0020224736727, 990.1008988535409], [853.0520224736549, 1058.450898852925], [888.9520224737435, 1110.4008988525038]], "destination": 133129223}, {"length": 5.44038839509, "source": 932339306, "path": [[-3764.1479775263333, -2023.4991011456316], [-3739.047977526333, -2041.5491011469555]], "destination": 272269064}, {"length": 24.8825024939, "source": 3906584172, "path": [[-6097.69797752624, 4261.800898852642], [-5977.74797752626, 4182.500898853192]], "destination": 2440229701}, {"length": 49.447019206, "source": 3906584172, "path": [[-6097.69797752624, 4261.800898852642], [-6123.197977526252, 4167.900898853105], [-5965.997977526394, 4094.3008988527654]], "destination": 3906584175}, {"length": 6.42902858172, "source": 3906584173, "path": [[-5945.24797752638, 4201.950898853112], [-5977.74797752626, 4182.500898853192]], "destination": 2440229701}, {"length": 69.7540953977, "source": 146724462, "path": [[-2243.8979775263324, -1044.049101146527], [-2699.797977526286, -952.299101147247]], "destination": 653622568}, {"length": 26.6572539977, "source": 146724462, "path": [[-2243.8979775263324, -1044.049101146527], [-2077.2479775263973, -1092.4991011478369]], "destination": 25624514}, {"length": 47.3578203795, "source": 146724462, "path": [[-2243.8979775263324, -1044.049101146527], [-2271.44797752632, -988.9491011456641], [-2352.7979775264107, -961.6991011469622], [-2407.4479775262334, -935.799101146273], [-2459.4479775263967, -898.5491011479496]], "destination": 146724450}, {"length": 12.6712086536, "source": 146724462, "path": [[-2243.8979775263324, -1044.049101146527], [-2284.5979775263368, -1070.2491011471693], [-2312.847977526289, -1076.1991011456473]], "destination": 653622710}, {"length": 49.447019206, "source": 3906584175, "path": [[-5965.997977526394, 4094.3008988527654], [-6123.197977526252, 4167.900898853105], [-6097.69797752624, 4261.800898852642]], "destination": 3906584172}, {"length": 6.98985288004, "source": 4547130993, "path": [[-2704.2479775263305, 1565.600898853603], [-2729.697977526202, 1592.2008988518144]], "destination": 3422228216}, {"length": 31.9980141115, "source": 4547130993, "path": [[-2704.2479775263305, 1565.600898853603], [-2633.897977526223, 1486.450898852354], [-2596.9979775262163, 1440.2508988524687]], "destination": 4547130996}, {"length": 49.081290488, "source": 4547130993, "path": [[-2704.2479775263305, 1565.600898853603], [-2608.297977526375, 1564.600898852575], [-2486.947977526244, 1555.3508988546128], [-2370.947977526239, 1543.9008988522573]], "destination": 4547130999}, {"length": 8.75713552402, "source": 2463876722, "path": [[556.2520224737799, 3383.800898852485], [532.2520224737559, 3369.1508988518135], [512.4020224736014, 3357.000898851936]], "destination": 2543955241}, {"length": 29.0193509546, "source": 2463876722, "path": [[556.2520224737799, 3383.800898852485], [576.7020224736186, 3370.350898851626], [603.4020224736647, 3352.600898853808], [623.8520224737254, 3337.6008988525996], [645.4520224736804, 3328.0008988541], [669.7020224737394, 3325.1008988521844], [690.4520224737531, 3326.850898851319], [715.0020224737652, 3337.250898852062]], "destination": 2463876732}, {"length": 18.2184532378, "source": 2463876722, "path": [[556.2520224737799, 3383.800898852485], [647.4020224735976, 3439.6008988544227]], "destination": 2463876717}, {"length": 42.4919672202, "source": 2463876722, "path": [[556.2520224737799, 3383.800898852485], [460.20202247376574, 3447.600898851988], [439.1520224737988, 3465.850898852096], [425.40202247365323, 3478.5508988512956], [416.95202247371554, 3491.050898851711], [412.55202247358903, 3500.8508988525477], [412.2520224736359, 3512.2008988537345], [412.55202247358903, 3523.9508988524904], [415.0520224737164, 3529.0008988546615], [418.7020224737381, 3533.3508988522053], [425.8520224735829, 3536.2008988535363]], "destination": 2463876703}, {"length": 15.4444513645, "source": 4547130996, "path": [[-2596.9979775262163, 1440.2508988524687], [-2556.7479775263637, 1376.0508988518438]], "destination": 661233}, {"length": 31.9980141115, "source": 4547130996, "path": [[-2596.9979775262163, 1440.2508988524687], [-2633.897977526223, 1486.450898852354], [-2704.2479775263305, 1565.600898853603]], "destination": 4547130993}, {"length": 34.2165278654, "source": 3035184757, "path": [[-6367.6979775262325, -448.94910114834374], [-6259.297977526224, -392.24910114654676], [-6210.847977526246, -338.19910114729623]], "destination": 34818554}, {"length": 28.994033218, "source": 3035184757, "path": [[-6367.6979775262325, -448.94910114834374], [-6240.097977526338, -548.6991011487419]], "destination": 3035184758}, {"length": 28.994033218, "source": 3035184758, "path": [[-6240.097977526338, -548.6991011487419], [-6367.6979775262325, -448.94910114834374]], "destination": 3035184757}, {"length": 192.152773763, "source": 4958500471, "path": [[-5511.097977526358, 1794.3008988545728], [-5360.34797752638, 1680.0008988546722], [-4675.647977526287, 1127.750898852753]], "destination": 4958500472}, {"length": 11.4831976016, "source": 4958500471, "path": [[-5511.097977526358, 1794.3008988545728], [-5482.897977526324, 1803.3508988537506], [-5440.497977526215, 1816.8508988516407]], "destination": 241582236}, {"length": 4.52016295165, "source": 4958500472, "path": [[-4675.647977526287, 1127.750898852753], [-4706.497977526203, 1126.750898851725]], "destination": 185857229}, {"length": 308.10826999, "source": 4958500472, "path": [[-4675.647977526287, 1127.750898852753], [-4097.047977526414, 667.0508988513291], [-3293.647977526293, 82.90089885321095]], "destination": 4958488598}, {"length": 7.9047644187, "source": 2477903481, "path": [[-2405.447977526398, 1377.350898852825], [-2401.4979775262013, 1341.9008988542203]], "destination": 2477903488}, {"length": 278.585104948, "source": 2477903481, "path": [[-2405.447977526398, 1377.350898852825], [-1283.5979775263074, 1309.0008988534407], [-1202.7479775262861, 1295.2008988520447], [-1157.9979775262484, 1278.9508988539922], [-1115.6979775261977, 1253.5008988514562], [-757.5979775262808, 948.90089885169]], "destination": 36485460}, {"length": 50.2743844546, "source": 4958500474, "path": [[-3183.547977526402, 19.55089885186112], [-2959.597977526318, -151.89910114798977]], "destination": 185848442}, {"length": 32.4988870162, "source": 158834623, "path": [[1003.3020224737843, 2077.850898853484], [1127.5520224736101, 2158.7508988538675], [1161.1520224736882, 2180.650898853997]], "destination": 158834936}, {"length": 88.9896943259, "source": 158834623, "path": [[1003.3020224737843, 2077.850898853484], [661.0520224736849, 1858.950898853351], [642.9520224737751, 1847.4008988533797], [617.6020224737399, 1831.2008988523587], [567.202022473623, 1798.9508988520697]], "destination": 21346784}, {"length": 29.0193509546, "source": 2463876732, "path": [[715.0020224737652, 3337.250898852062], [690.4520224737531, 3326.850898851319], [669.7020224737394, 3325.1008988521844], [645.4520224736804, 3328.0008988541], [623.8520224737254, 3337.6008988525996], [603.4020224736647, 3352.600898853808], [576.7020224736186, 3370.350898851626], [556.2520224737799, 3383.800898852485]], "destination": 2463876722}, {"length": 28.6596765376, "source": 2463876732, "path": [[715.0020224737652, 3337.250898852062], [715.5520224737533, 3337.6008988525996], [730.8020224736645, 3350.7008988529205], [734.5020224736043, 3367.7508988532168], [727.8520224736073, 3386.8508988526], [712.00202247379, 3399.450898854184], [700.4020224736785, 3405.300898851493], [680.2020224736527, 3420.000898852749], [647.4020224735976, 3439.6008988544227]], "destination": 2463876717}, {"length": 11.5490591608, "source": 2463876732, "path": [[715.0020224737652, 3337.250898852062], [755.9520224735827, 3311.400898851957], [771.9520224735987, 3301.30089885472]], "destination": 2543955254}, {"length": 72.0645473619, "source": 2705349799, "path": [[1894.3020224737595, 932.2008988519315], [1939.8520224735983, 950.1508988520868], [1920.4520224735954, 1029.7008988544576], [2147.302022473596, 1175.3508988512351]], "destination": 133128715}, {"length": 10.8405289604, "source": 2705349799, "path": [[1894.3020224737595, 932.2008988519315], [1913.9520224737971, 885.2008988533555]], "destination": 24909788}, {"length": 7.64156517027, "source": 2705349799, "path": [[1894.3020224737595, 932.2008988519315], [1847.502022473746, 916.9508988513542]], "destination": 1223805565}, {"length": 344.680833755, "source": 4547131006, "path": [[-2037.647977526369, 213.3508988535482], [-2152.1479775263865, 292.65089885299744], [-2291.8479775262404, 424.30089885314715], [-2397.0979775262967, 570.4008988516307], [-2473.1979775263203, 700.7008988537677], [-2551.3979775262374, 870.750898851469], [-2704.5979775262017, 1235.6008988518852], [-2779.1479775263197, 1361.7508988517102], [-2873.147977526358, 1514.8508988538367], [-2729.697977526202, 1592.2008988518144]], "destination": 3422228216}, {"length": 25.9451779487, "source": 4547131006, "path": [[-2037.647977526369, 213.3508988535482], [-1915.547977526355, 128.75089885255875]], "destination": 3422228281}, {"length": 32.1067090931, "source": 4547131006, "path": [[-2037.647977526369, 213.3508988535482], [-1965.7479775263553, 259.3008988540646], [-1947.8979775262583, 270.35089885174557], [-1900.347977526362, 241.45089885152515], [-1880.297977526313, 226.8008988544068]], "destination": 4547131002}, {"length": 36.5887515786, "source": 160020757, "path": [[1051.1520224736337, 1705.5008988542397], [923.502022473599, 1619.9008988522223], [876.0520224737611, 1588.050898853055]], "destination": 21378258}, {"length": 63.1598944056, "source": 160020757, "path": [[1051.1520224736337, 1705.5008988542397], [1471.6520224737906, 1641.4008988512307]], "destination": 133128980}, {"length": 7.9047644187, "source": 2477903488, "path": [[-2401.4979775262013, 1341.9008988542203], [-2405.447977526398, 1377.350898852825]], "destination": 2477903481}, {"length": 434.748962374, "source": 2477903488, "path": [[-2401.4979775262013, 1341.9008988542203], [-2363.9479775263703, 1344.100898851508], [-1351.8979775262173, 1273.2508988513302], [-1282.8979775263426, 1266.0008988518712], [-1219.9479775263367, 1250.3508988537249], [-1171.8979775263706, 1228.200898854226], [-920.1479775262644, 1006.600898854515], [-916.2479775262078, 995.3508988544968], [-922.8979775262047, 948.1008988529993], [-929.4979775262835, 921.6008988524038], [-934.4979775263163, 912.1508988521043], [-1446.2979775262675, 581.2008988534956], [-1760.2479775262748, 382.05089885323673]], "destination": 2484772391}, {"length": 217.127266901, "source": 2477903488, "path": [[-2401.4979775262013, 1341.9008988542203], [-2414.0479775263125, 1330.0008988537115], [-2419.797977526228, 1317.300898854512], [-2419.24797752624, 1309.050898854025], [-2331.4479775262685, 1104.8008988545632], [-2221.1979775264012, 818.4508988513528], [-2194.5479775262734, 754.8508988541869], [-2142.2979775262975, 678.8508988542219], [-2043.547977526261, 554.7508988534844], [-1960.9979775263575, 481.55089885426605], [-1935.3979775262876, 461.6008988520548], [-1917.647977526249, 456.1008988517301], [-1898.2979775263864, 458.85089885189245]], "destination": 2484772385}, {"length": 13.6096831952, "source": 2463876737, "path": [[444.2520224736679, 3315.350898851932], [474.95202247360703, 3334.100898854331], [512.4020224736014, 3357.000898851936]], "destination": 2543955241}, {"length": 20.8706862278, "source": 2463876737, "path": [[444.2520224736679, 3315.350898851932], [345.4020224737952, 3383.000898853794]], "destination": 249169173}, {"length": 12.2786421162, "source": 2705350276, "path": [[3745.5020224737013, -2144.3991011480534], [3743.7520224736786, -2199.599101146532]], "destination": 2705350304}, {"length": 17.9930819408, "source": 2705350276, "path": [[3745.5020224737013, -2144.3991011480534], [3770.952022473795, -2151.849101146297], [3856.65202247365, -2178.999101147383]], "destination": 205088968}, {"length": 39.7410760183, "source": 653601046, "path": [[-716.547977526405, -671.2491011455768], [-736.047977526244, -681.099101146998], [-739.3479775263945, -692.7991011487222], [-723.8979775263665, -725.5991011483331], [-613.7979775262536, -798.1991011476453], [-628.8479775262701, -807.699101148529]], "destination": 1503278492}, {"length": 17.4730203722, "source": 653601046, "path": [[-716.547977526405, -671.2491011455768], [-630.7479775262692, -616.59910114642]], "destination": 653598396}, {"length": 402.892048625, "source": 653601046, "path": [[-716.547977526405, -671.2491011455768], [540.7020224736935, -1556.5491011457766], [816.9520224736715, -1701.2491011456632], [1120.052022473672, -1842.3991011466967], [1282.5020224735972, -1904.1991011476966]], "destination": 1503278630}, {"length": 24.8199268182, "source": 146724486, "path": [[-1544.0979775263042, -1425.649101147286], [-1546.0479775262215, -1402.9991011454968], [-1503.7979775263111, -1377.0991011483602], [-1488.6479775262362, -1367.799101146261], [-1433.3479775263668, -1359.5991011463582]], "destination": 25624512}, {"length": 15.5114153865, "source": 146724486, "path": [[-1544.0979775263042, -1425.649101147286], [-1649.1979775263844, -1416.4991011469397]], "destination": 25624516}, {"length": 9.19355430068, "source": 721620616, "path": [[1586.9520224736088, -1718.5991011459123], [1556.7520224737398, -1754.8491011467604]], "destination": 4508646347}, {"length": 43.4159109038, "source": 721620616, "path": [[1586.9520224736088, -1718.5991011459123], [1642.1020224737238, -1737.2491011471425], [1723.9020224737444, -1737.74910114588], [1814.4020224737378, -1706.4491011460348], [1826.0520224737675, -1673.9991011469613]], "destination": 1365433501}, {"length": 26.5079341208, "source": 721620616, "path": [[1586.9520224736088, -1718.5991011459123], [1505.1020224736699, -1691.8991011465323], [1502.7520224737411, -1667.149101148624], [1528.002022473718, -1637.149101146207]], "destination": 1365433494}, {"length": 45.411252097, "source": 158834278, "path": [[-24.097977526338354, 1973.2008988526673], [-191.8479775262494, 2102.1008988526546], [-225.94797752639727, 2128.300898853297]], "destination": 21346799}, {"length": 115.286428329, "source": 158834278, "path": [[-24.097977526338354, 1973.2008988526673], [-55.04797752631241, 1953.850898853915], [-260.04797752632317, 1825.8008988532026], [-292.19797752633167, 1819.4008988530186], [-326.0479775262226, 1830.700898853621], [-503.2979775263513, 1958.5508988519962], [-543.8979775262975, 2003.0508988533313], [-566.0979775263808, 2031.8508988523831]], "destination": 158834411}, {"length": 88.5229316915, "source": 158834278, "path": [[-24.097977526338354, 1973.2008988526673], [3.4020224737307814, 1952.5508988529339], [326.7520224736753, 1709.8008988511992], [374.65202247366494, 1673.850898853857]], "destination": 470175}, {"length": 17.4298604317, "source": 721620618, "path": [[4477.102022473645, -2295.199101148171], [4432.052022473654, -2279.749101148809], [4364.0520224736965, -2275.2991011465438]], "destination": 721620621}, {"length": 40.8212077872, "source": 721620618, "path": [[4477.102022473645, -2295.199101148171], [4605.952022473713, -2333.2991011457693], [4742.602022473674, -2344.7491011481247]], "destination": 721620613}, {"length": 39.1408762408, "source": 721620618, "path": [[4477.102022473645, -2295.199101148171], [4539.9520224735925, -2291.29910114878], [4744.252022473638, -2295.649101146324]], "destination": 2705350335}, {"length": 204.331102881, "source": 721620621, "path": [[4364.0520224736965, -2275.2991011465438], [4491.652022473591, -2328.449101145935], [4607.002022473772, -2361.9491011466207], [4749.152022473613, -2376.0991011485544], [5723.852022473608, -2405.84910114805]], "destination": 185885472}, {"length": 105.316767289, "source": 721620621, "path": [[4364.0520224736965, -2275.2991011465438], [4268.652022473729, -2306.2991011464364], [4257.052022473617, -2306.3491011470205], [4202.552022473771, -2305.849101148283], [4181.702022473699, -2304.8991011478392], [3655.302022473661, -2301.1991011472333]], "destination": 4956714224}, {"length": 17.4298604317, "source": 721620621, "path": [[4364.0520224736965, -2275.2991011465438], [4432.052022473654, -2279.749101148809], [4477.102022473645, -2295.199101148171]], "destination": 721620618}, {"length": 45.4539507149, "source": 721620621, "path": [[4364.0520224736965, -2275.2991011465438], [4088.4520224737653, -2180.949101145302]], "destination": 185886885}, {"length": 35.891327864, "source": 2463876751, "path": [[189.75202247362154, 3074.450898854053], [143.90202247360762, 3105.0508988528236], [106.05202247360168, 3130.3008988530223], [16.902022473619382, 3071.6508988533064]], "destination": 2463876752}, {"length": 27.0115997427, "source": 2463876751, "path": [[189.75202247362154, 3074.450898854053], [206.3020224736256, 3083.7508988525997], [219.95202247371282, 3091.3508988525964], [235.10202247378766, 3091.950898852502], [258.8020224736365, 3079.10089885155], [327.6520224737567, 3032.200898854143]], "destination": 2463876755}, {"length": 18.3378115211, "source": 2463876751, "path": [[189.75202247362154, 3074.450898854053], [164.20202247369176, 3057.800898851326], [100.75202247361581, 3016.4008988542437]], "destination": 2463876756}, {"length": 50.2045133293, "source": 2463876752, "path": [[16.902022473619382, 3071.6508988533064], [-9.84797752634492, 3091.500898854349], [-222.49797752627032, 2949.700898852825]], "destination": 2463876760}, {"length": 44.0222011236, "source": 2463876752, "path": [[16.902022473619382, 3071.6508988533064], [-23.997977526279968, 3044.750898851589], [-195.69797752638783, 2931.6008988544695]], "destination": 2463876761}, {"length": 35.891327864, "source": 2463876752, "path": [[16.902022473619382, 3071.6508988533064], [106.05202247360168, 3130.3008988530223], [143.90202247360762, 3105.0508988528236], [189.75202247362154, 3074.450898854053]], "destination": 2463876751}, {"length": 119.320181716, "source": 368273, "path": [[4439.052022473744, -374.49910114872864], [4350.002022473598, -561.6991011478945], [4195.502022473763, -886.5491011462723]], "destination": 34845768}, {"length": 14.1010278862, "source": 368273, "path": [[4439.052022473744, -374.49910114872864], [4361.902022473662, -412.49910114871113]], "destination": 1179777339}, {"length": 60.2725191988, "source": 368273, "path": [[4439.052022473744, -374.49910114872864], [4553.102022473609, -407.64910114532427], [4646.752022473776, -434.8991011475789], [4815.802022473781, -484.0991011469953]], "destination": 34845780}, {"length": 158.813503197, "source": 368273, "path": [[4439.052022473744, -374.49910114872864], [4497.252022473752, -454.99910114799036], [4204.45202247377, -1049.5491011468516]], "destination": 666951750}, {"length": 22.9260714781, "source": 368274, "path": [[3110.6520224737365, -906.5491011455151], [3078.9020224737396, -805.5991011453045]], "destination": 34845770}, {"length": 12.3218730352, "source": 368274, "path": [[3110.6520224737365, -906.5491011455151], [3029.7520224737973, -891.1491011467376]], "destination": 1181634293}, {"length": 11.7663066551, "source": 2463876755, "path": [[327.6520224737567, 3032.200898854143], [365.4520224736224, 3054.2008988518887], [389.75202247359954, 3042.7008988525017]], "destination": 159884488}, {"length": 27.0115997427, "source": 2463876755, "path": [[327.6520224737567, 3032.200898854143], [258.8020224736365, 3079.10089885155], [235.10202247378766, 3091.950898852502], [219.95202247371282, 3091.3508988525964], [206.3020224736256, 3083.7508988525997], [189.75202247362154, 3074.450898854053]], "destination": 2463876751}, {"length": 70.3095424831, "source": 2463876755, "path": [[327.6520224737567, 3032.200898854143], [-20.54797752637505, 2814.3508988520693]], "destination": 249168967}, {"length": 17.7689103995, "source": 34816448, "path": [[-3834.3979775263824, -2673.799101145846], [-3854.94797752628, -2752.5491011459735]], "destination": 2561299817}, {"length": 25.0150555967, "source": 34816448, "path": [[-3834.3979775263824, -2673.799101145846], [-3913.6979775262757, -2652.9991011479124], [-3976.397977526247, -2614.6491011473927]], "destination": 34816179}, {"length": 13.5515133511, "source": 653598358, "path": [[-736.297977526279, -381.99910114755653], [-669.0479775262048, -340.09910114818354]], "destination": 3422228426}, {"length": 11.3772104761, "source": 653598358, "path": [[-736.297977526279, -381.99910114755653], [-792.7979775264049, -417.14910114620807]], "destination": 653598371}, {"length": 13.1059043072, "source": 653598358, "path": [[-736.297977526279, -381.99910114755653], [-675.6979775262017, -425.3991011466951]], "destination": 281774796}, {"length": 51.7244791865, "source": 258175257, "path": [[-4122.24797752625, -3779.499101145944], [-4185.347977526232, -4008.349101148667]], "destination": 34816456}, {"length": 62.0794252475, "source": 258175257, "path": [[-4122.24797752625, -3779.499101145944], [-4051.147977526259, -3504.2991011486893]], "destination": 34816455}, {"length": 78.4402248141, "source": 258175257, "path": [[-4122.24797752625, -3779.499101145944], [-3593.6479775262596, -3720.3991011480753]], "destination": 258175263}, {"length": 11.382754347, "source": 653598360, "path": [[-509.54797752633675, -539.3991011466426], [-565.4479775263344, -574.9991011470001]], "destination": 653598369}, {"length": 13.7312214545, "source": 653598360, "path": [[-509.54797752633675, -539.3991011466426], [-445.0479775262028, -494.54910114832273]], "destination": 3422228483}, {"length": 214.994507118, "source": 653598360, "path": [[-509.54797752633675, -539.3991011466426], [500.50202247375887, -1241.54910114882]], "destination": 470180}, {"length": 44.0222011236, "source": 2463876761, "path": [[-195.69797752638783, 2931.6008988544695], [-23.997977526279968, 3044.750898851589], [16.902022473619382, 3071.6508988533064]], "destination": 2463876752}, {"length": 5.619664391, "source": 2463876761, "path": [[-195.69797752638783, 2931.6008988544695], [-222.49797752627032, 2949.700898852825]], "destination": 2463876760}, {"length": 17.166783343, "source": 2463876761, "path": [[-195.69797752638783, 2931.6008988544695], [-113.84797752622688, 2876.3008988512693]], "destination": 2463876763}, {"length": 36.7094724133, "source": 2463876761, "path": [[-195.69797752638783, 2931.6008988544695], [-208.89797752632333, 2923.1008988546137], [-373.19797752632945, 2814.9508988519756]], "destination": 2463876766}, {"length": 5.10184107251, "source": 146706925, "path": [[-1734.3979775263917, -1122.74910114607], [-1708.1479775262753, -1107.6491011472456]], "destination": 5056992120}, {"length": 12.9321434459, "source": 146706925, "path": [[-1734.3979775263917, -1122.74910114607], [-1677.4979775262543, -1167.249101147405]], "destination": 470186}, {"length": 17.166783343, "source": 2463876763, "path": [[-113.84797752622688, 2876.3008988512693], [-195.69797752638783, 2931.6008988544695]], "destination": 2463876761}, {"length": 44.237144763, "source": 2463876763, "path": [[-113.84797752622688, 2876.3008988512693], [-1.297977526348859, 2949.8008988539937], [100.75202247361581, 3016.4008988542437]], "destination": 2463876756}, {"length": 36.0637202636, "source": 2463876763, "path": [[-113.84797752622688, 2876.3008988512693], [-288.89797752640334, 2762.150898853122]], "destination": 2463876771}, {"length": 5.33837728765, "source": 2463876763, "path": [[-113.84797752622688, 2876.3008988512693], [-88.39797752635548, 2859.1008988527733]], "destination": 2463876764}, {"length": 5.33837728765, "source": 2463876764, "path": [[-88.39797752635548, 2859.1008988527733], [-113.84797752622688, 2876.3008988512693]], "destination": 2463876763}, {"length": 49.7403412493, "source": 2463876764, "path": [[-88.39797752635548, 2859.1008988527733], [126.95202247359205, 3001.150898853666], [100.75202247361581, 3016.4008988542437]], "destination": 2463876756}, {"length": 50.3372671879, "source": 2463876764, "path": [[-88.39797752635548, 2859.1008988527733], [-306.84797752633665, 2716.6508988543114], [-332.547977526243, 2733.650898854023]], "destination": 2463876773}, {"length": 14.0617663714, "source": 2463876764, "path": [[-88.39797752635548, 2859.1008988527733], [-36.94797752640255, 2824.400898852275], [-20.54797752637505, 2814.3508988520693]], "destination": 249168967}, {"length": 18.6909519032, "source": 653598365, "path": [[-699.8979775263425, -567.8491011487097], [-787.0479775262673, -506.39910114824715]], "destination": 653598377}, {"length": 14.8290846681, "source": 653598365, "path": [[-699.8979775263425, -567.8491011487097], [-630.7479775262692, -616.59910114642]], "destination": 653598396}, {"length": 190.544881704, "source": 653598365, "path": [[-699.8979775263425, -567.8491011487097], [-860.9979775262566, -649.849101147737], [-1627.797977526324, -1134.699101147163], [-1640.3979775263533, -1142.94910114765], [-1652.6979775262073, -1150.9991011457998]], "destination": 5056992119}, {"length": 8.46683555056, "source": 2463876766, "path": [[-373.19797752632945, 2814.9508988519756], [-414.147977526369, 2788.0508988538113]], "destination": 2463876769}, {"length": 17.0317759782, "source": 2463876766, "path": [[-373.19797752632945, 2814.9508988519756], [-334.6479775263589, 2790.800898853973], [-288.89797752640334, 2762.150898853122]], "destination": 2463876771}, {"length": 36.7094724133, "source": 2463876766, "path": [[-373.19797752632945, 2814.9508988519756], [-208.89797752632333, 2923.1008988546137], [-195.69797752638783, 2931.6008988544695]], "destination": 2463876761}, {"length": 102.458952365, "source": 4455425695, "path": [[-228.2479775264079, 540.8008988538882], [271.30202247360734, 863.6508988537628]], "destination": 160015156}, {"length": 85.9890744956, "source": 4455425695, "path": [[-228.2479775264079, 540.8008988538882], [176.80202247372102, 260.65089885207726]], "destination": 133129405}, {"length": 9.67736237383, "source": 4455425695, "path": [[-228.2479775264079, 540.8008988538882], [-281.89797752631307, 515.3508988513522]], "destination": 159973957}, {"length": 11.2224763999, "source": 666947232, "path": [[5105.052022473799, 1179.1008988524254], [5177.402022473742, 1162.3508988520825]], "destination": 36487636}, {"length": 51.1179240399, "source": 666947232, "path": [[5105.052022473799, 1179.1008988524254], [5021.3520224737795, 1010.6508988521057], [5096.852022473675, 993.2508988512723]], "destination": 666947356}, {"length": 11.382754347, "source": 653598369, "path": [[-565.4479775263344, -574.9991011470001], [-509.54797752633675, -539.3991011466426]], "destination": 653598360}, {"length": 12.6067676774, "source": 653598369, "path": [[-565.4479775263344, -574.9991011470001], [-623.3979775263076, -533.0491011470428]], "destination": 205086385}, {"length": 13.299095324, "source": 653598369, "path": [[-565.4479775263344, -574.9991011470001], [-630.7479775262692, -616.59910114642]], "destination": 653598396}, {"length": 25.7794714182, "source": 352968987, "path": [[-1100.29797752631, 3513.250898851794], [-1243.2979775263143, 3580.95089885424]], "destination": 94268426}, {"length": 62.8752866391, "source": 352968987, "path": [[-1100.29797752631, 3513.250898851794], [-1129.947977526413, 3483.5008988522986], [-1336.0979775263181, 3276.900898853796]], "destination": 94265887}, {"length": 12.674146852, "source": 151348663, "path": [[-3810.74797752623, 3721.8508988523527], [-3863.597977526334, 3767.000898854178]], "destination": 310350368}, {"length": 16.4306878139, "source": 151348663, "path": [[-3810.74797752623, 3721.8508988523527], [-3866.4479775263326, 3657.700898852312]], "destination": 2504458036}, {"length": 19.6040350748, "source": 2463876775, "path": [[-508.8979775262903, 2725.700898853489], [-503.54797752638626, 2729.2508988523423], [-422.7979775262014, 2782.350898854702], [-414.147977526369, 2788.0508988538113]], "destination": 2463876769}, {"length": 20.7620866071, "source": 25624232, "path": [[-2069.0979775264127, -2930.6491011453772], [-2058.6979775263358, -2955.499101148007], [-2089.697977526228, -2981.499101146312], [-2123.747977526236, -3007.799101148123]], "destination": 929535353}, {"length": 184.682440669, "source": 25624232, "path": [[-2069.0979775264127, -2930.6491011453772], [-2139.047977526287, -2911.5491011459935], [-3111.347977526213, -2654.299101145341], [-3239.9479775262475, -2620.249101145333]], "destination": 929535146}, {"length": 9.82753691421, "source": 25624232, "path": [[-2069.0979775264127, -2930.6491011453772], [-2026.0979775263977, -2896.699101146538]], "destination": 929536542}, {"length": 15.0064062414, "source": 653598377, "path": [[-787.0479775262673, -506.39910114824715], [-856.9979775263637, -457.04910114707786]], "destination": 653598402}, {"length": 18.6909519032, "source": 653598377, "path": [[-787.0479775262673, -506.39910114824715], [-699.8979775263425, -567.8491011487097]], "destination": 653598365}, {"length": 13.3959916297, "source": 653598377, "path": [[-787.0479775262673, -506.39910114824715], [-730.6479775261998, -458.94910114796517]], "destination": 281774765}, {"length": 19.2699194876, "source": 2463876778, "path": [[-426.0479775262116, 2672.650898851714], [-420.94797752634247, 2676.0008988517825], [-332.547977526243, 2733.650898854023]], "destination": 2463876773}, {"length": 43.5729953086, "source": 25624237, "path": [[-1526.8479775263354, -2552.3491011476553], [-1503.0979775263465, -2515.74910114627], [-1469.8479775263618, -2477.2991011481336], [-1432.897977526215, -2434.5991011465176], [-1402.2979775263345, -2375.1491011481107]], "destination": 925849923}, {"length": 30.7491160188, "source": 25624237, "path": [[-1526.8479775263354, -2552.3491011476553], [-1677.147977526383, -2648.9991011473535]], "destination": 652950871}, {"length": 17.3760370864, "source": 25624238, "path": [[-1328.847977526415, -2436.549101147989], [-1402.2979775263345, -2375.1491011481107]], "destination": 925849923}, {"length": 39.2724940948, "source": 25624238, "path": [[-1328.847977526415, -2436.549101147989], [-1423.8979775262894, -2502.7991011477015], [-1470.5979775262444, -2535.3991011485277], [-1526.8479775263354, -2552.3491011476553]], "destination": 25624237}, {"length": 156.838835395, "source": 25624239, "path": [[-1251.2479775264042, -2383.799101146167], [-1216.04797752628, -2417.79910114559], [-648.2479775262728, -2966.8991011462253]], "destination": 306086747}, {"length": 5.68503933505, "source": 25624239, "path": [[-1251.2479775264042, -2383.799101146167], [-1275.6479775262176, -2403.699101147794]], "destination": 925849973}, {"length": 40.9576587752, "source": 368305, "path": [[-3561.197977526298, -2666.9991011480934], [-3624.947977526327, -2683.3491011473143], [-3696.147977526376, -2688.149101146564], [-3834.3979775263824, -2673.799101145846]], "destination": 34816448}, {"length": 17.0983957995, "source": 368305, "path": [[-3561.197977526298, -2666.9991011480934], [-3510.8979775262396, -2736.399101145537]], "destination": 2561299814}, {"length": 44.2309465789, "source": 205086386, "path": [[-1614.747977526365, 126.95089885284006], [-1796.1479775263633, 286.0508988540289]], "destination": 470177}, {"length": 64.5965682938, "source": 160026291, "path": [[-1042.2979775264184, 363.9508988513285], [-1351.8479775262992, 571.0508988521212]], "destination": 160025687}, {"length": 7.26178489615, "source": 160026291, "path": [[-1042.2979775264184, 363.9508988513285], [-1078.0479775263086, 341.3008988530919]], "destination": 3491466827}, {"length": 3.51261098683, "source": 160026291, "path": [[-1042.2979775264184, 363.9508988513285], [-1024.9979775263096, 374.90089885139355]], "destination": 3491466823}, {"length": 57.3207176228, "source": 160018100, "path": [[568.4020224736574, 1634.500898852309], [524.6020224736192, 1588.1508988542237], [567.5020224737981, 1386.9508988513246]], "destination": 160018434}, {"length": 26.0677908167, "source": 160018100, "path": [[568.4020224736574, 1634.500898852309], [528.9020224736873, 1660.900898851736], [443.4520224736449, 1718.0508988516863]], "destination": 21346783}, {"length": 43.2088687942, "source": 1181550261, "path": [[6058.152022473618, 1485.900898853032], [6260.752022473781, 1344.550898853214]], "destination": 29434737}, {"length": 39.5258743374, "source": 1181550261, "path": [[6058.152022473618, 1485.900898853032], [5866.502022473741, 1611.1508988529977]], "destination": 1181466645}, {"length": 137.592096448, "source": 666941110, "path": [[3328.1520224737183, -705.1491011473843], [3364.952022473666, -649.1491011466621], [3685.6520224737287, -161.09910114536774], [3701.3020224736515, -137.2491011473187]], "destination": 34845766}, {"length": 47.6074786867, "source": 25625656, "path": [[4213.202022473661, -4229.499101146672], [4027.252022473782, -4359.399101147687], [3990.1020224737404, -4385.349101145408]], "destination": 25625657}, {"length": 93.6580259421, "source": 25625656, "path": [[4213.202022473661, -4229.499101146672], [4652.102022473681, -3922.8991011484027]], "destination": 5057169771}, {"length": 99.6334216517, "source": 25625656, "path": [[4213.202022473661, -4229.499101146672], [4692.802022473686, -4500.249101148767], [4730.052022473785, -4521.249101145486]], "destination": 25625655}, {"length": 20.5870477808, "source": 25624248, "path": [[-3385.447977526379, -2447.649101146254], [-3374.9479775262434, -2494.34910114843], [-3376.4979775263714, -2539.6991011454875]], "destination": 2561299804}, {"length": 224.929178909, "source": 25624248, "path": [[-3385.447977526379, -2447.649101146254], [-3254.6979775263108, -2493.0491011474487], [-3220.1979775263735, -2510.1991011453606], [-3114.5979775262235, -2559.999101148236], [-3029.3479775262977, -2582.6491011464723], [-2047.1979775262828, -2843.7491011459315], [-1986.8479775262404, -2859.9491011469527]], "destination": 25624231}, {"length": 13.299095324, "source": 653598396, "path": [[-630.7479775262692, -616.59910114642], [-565.4479775263344, -574.9991011470001]], "destination": 653598369}, {"length": 14.8290846681, "source": 653598396, "path": [[-630.7479775262692, -616.59910114642], [-699.8979775263425, -567.8491011487097]], "destination": 653598365}, {"length": 17.4730203722, "source": 653598396, "path": [[-630.7479775262692, -616.59910114642], [-716.547977526405, -671.2491011455768]], "destination": 653601046}, {"length": 119.691349646, "source": 337626813, "path": [[-4912.14797752626, -426.09910114776994], [-4585.047977526236, -856.5991011479923], [-4546.347977526289, -907.4991011459588]], "destination": 34818473}, {"length": 21.764452498, "source": 337626813, "path": [[-4912.14797752626, -426.09910114776994], [-4991.447977526375, -343.2991011464992]], "destination": 932824995}, {"length": 34.5781378648, "source": 831956670, "path": [[3403.9020224736482, -3603.7991011461654], [3392.402022473595, -3759.09910114558]], "destination": 270921350}, {"length": 19.514023672, "source": 831956670, "path": [[3403.9020224736482, -3603.7991011461654], [3413.9020224737137, -3516.299101146814]], "destination": 25625686}, {"length": 32.8941895641, "source": 831956670, "path": [[3403.9020224736482, -3603.7991011461654], [3471.802022473769, -3632.849101148139], [3481.0520224737297, -3650.9491011464943], [3475.852022473802, -3726.3991011471376]], "destination": 831956629}, {"length": 39.1408762408, "source": 2705350335, "path": [[4744.252022473638, -2295.649101146324], [4539.9520224735925, -2291.29910114878], [4477.102022473645, -2295.199101148171]], "destination": 721620618}, {"length": 10.9221141353, "source": 2705350335, "path": [[4744.252022473638, -2295.649101146324], [4742.602022473674, -2344.7491011481247]], "destination": 721620613}, {"length": 13.4520525831, "source": 2705350335, "path": [[4744.252022473638, -2295.649101146324], [4836.152022473783, -2297.599101147796]], "destination": 2705350342}, {"length": 160.302700688, "source": 654054735, "path": [[-192.79797752624893, -35.54910114544896], [-196.49797752641086, 32.30089885164489], [-178.147977526244, 143.60089885201432], [-189.64797752629715, 193.10089885138382], [-205.9979775264065, 215.20089885385119], [-227.04797752637342, 225.30089885464122], [-258.9979775262652, 236.600898851691], [-291.34797752639054, 237.65089885330326], [-337.347977526381, 229.25089885461603], [-372.7479775263998, 225.0508988517197], [-422.84797752634165, 226.00089885216335], [-462.4479775263701, 232.00089885122566], [-486.94797752624197, 248.60089885336834], [-534.44797752622, 264.05089885273014], [-583.2979775262093, 271.70089885331095], [-639.6479775263585, 268.4008988538267], [-690.6479775263819, 273.65089885122984], [-769.8979775263571, 233.60089885215984], [-799.1979775263669, 237.95089885325638], [-860.6979775263035, 247.05089885301845]], "destination": 133128576}, {"length": 46.0985578152, "source": 654054735, "path": [[-192.79797752624893, -35.54910114544896], [27.252022473778226, -183.89910114535724]], "destination": 654054737}, {"length": 97.177070865, "source": 654054735, "path": [[-192.79797752624893, -35.54910114544896], [-344.9479775263775, -134.34910114540344], [-388.29797752626405, -161.8991011476112], [-647.9479775263197, -326.99910114786235], [-669.0479775262048, -340.09910114818354]], "destination": 3422228426}, {"length": 75.9299823755, "source": 654054735, "path": [[-192.79797752624893, -35.54910114544896], [0.0020224737440344143, 85.00089885288276], [40.05202247370221, 109.85089885195976], [150.75202247372133, 178.10089885372804], [184.45202247363568, 198.90089885166162]], "destination": 133129379}, {"length": 60.4983420376, "source": 654054735, "path": [[-192.79797752624893, -35.54910114544896], [-297.8479775264109, -32.4991011453335], [-422.2979775263536, -11.849101145600116], [-506.69797752633804, 11.150898853173885], [-562.1979775263242, 14.200898853289345], [-594.7979775262625, 11.150898853173885]], "destination": 133129946}, {"length": 82.7081429789, "source": 654054735, "path": [[-192.79797752624893, -35.54910114544896], [-235.8479775264044, 7.150898852614773], [-321.8979775263531, 49.5008988536938], [-364.3979775262984, 63.50089885387433], [-409.6479775264061, 89.95089885388552], [-442.0479775262276, 108.9008988515161], [-455.64797752639663, 105.95089885256925], [-476.79797752619993, 72.15089885193038], [-518.7479775263793, 47.90089885275961], [-567.2479775262751, 41.10089885145385], [-594.7979775262625, 11.150898853173885]], "destination": 133129946}, {"length": 14.8591390391, "source": 116147905, "path": [[5303.002022473802, 3821.1508988545975], [5381.10202247366, 3863.850898852661]], "destination": 1219877554}, {"length": 142.590895705, "source": 116147905, "path": [[5303.002022473802, 3821.1508988545975], [5256.302022473625, 3852.9008988525957], [4661.4020224737815, 4257.600898853298], [4625.552022473611, 4282.000898854221]], "destination": 256622941}, {"length": 59.8505973445, "source": 116147905, "path": [[5303.002022473802, 3821.1508988545975], [5586.7020224738, 3627.300898852326]], "destination": 116147982}, {"length": 15.0064062414, "source": 653598402, "path": [[-856.9979775263637, -457.04910114707786], [-787.0479775262673, -506.39910114824715]], "destination": 653598377}, {"length": 12.9216853397, "source": 653598402, "path": [[-856.9979775263637, -457.04910114707786], [-792.7979775264049, -417.14910114620807]], "destination": 653598371}, {"length": 21.4318709154, "source": 653598402, "path": [[-856.9979775263637, -457.04910114707786], [-963.4479775262328, -523.2491011462059]], "destination": 653602325}, {"length": 9.19355430068, "source": 4508646347, "path": [[1556.7520224737398, -1754.8491011467604], [1586.9520224736088, -1718.5991011459123]], "destination": 721620616}, {"length": 85.720785009, "source": 4508646347, "path": [[1556.7520224737398, -1754.8491011467604], [1852.2520224737439, -1849.2491011485868], [2093.102022473703, -1908.9991011469465]], "destination": 4508646345}, {"length": 5.1212364256, "source": 4508646347, "path": [[1556.7520224737398, -1754.8491011467604], [1539.9520224737007, -1775.0491011483405]], "destination": 185883887}, {"length": 19.7753034484, "source": 25624260, "path": [[-226.49797752638534, -3316.149101145527], [-237.04797752621687, -3404.7991011476597]], "destination": 25624259}, {"length": 28.7686935243, "source": 25624260, "path": [[-226.49797752638534, -3316.149101145527], [-204.04797752626712, -3317.249101147723], [-30.39797752624196, -3325.7491011475795]], "destination": 25625309}, {"length": 17.7815584555, "source": 25666983, "path": [[6687.802022473655, -4023.6991011468604], [6699.452022473684, -4034.599101146341], [6708.052022473598, -4046.6991011456344], [6713.3020224736665, -4059.5491011465865], [6715.102022473607, -4072.8491011456927], [6713.402022473724, -4086.149101148351], [6708.202022473797, -4098.9991011457505]], "destination": 25666982}, {"length": 73.0675358687, "source": 1224672966, "path": [[2001.5520224736515, -1988.6491011469332], [2057.6020224736258, -2037.2991011470276], [2120.052022473784, -2061.5991011467827], [2273.402022473725, -2117.6491011480894], [2391.7520224736586, -2187.1491011467015]], "destination": 1503278714}, {"length": 82.38330023, "source": 1224672966, "path": [[2001.5520224736515, -1988.6491011469332], [1766.8520224736194, -1926.8491011459332], [1487.2020224736548, -1838.3991011461376]], "destination": 470181}, {"length": 53.1113320991, "source": 185858517, "path": [[-4229.147977526271, 744.0008988517377], [-4334.297977526269, 831.4508988540581], [-4454.347977526308, 931.3008988520721]], "destination": 185858628}, {"length": 192.463564637, "source": 4547130999, "path": [[-2370.947977526239, 1543.9008988522573], [-1214.5479775262925, 1858.5508988522292], [-1155.3979775262846, 1874.5008988538814]], "destination": 21346801}, {"length": 40.9244639267, "source": 4547130999, "path": [[-2370.947977526239, 1543.9008988522573], [-2516.4479775263703, 1493.150898852491], [-2553.347977526377, 1476.4008988521482], [-2596.9979775262163, 1440.2508988524687]], "destination": 4547130996}, {"length": 213.511538553, "source": 925869772, "path": [[348.50202247360687, -4573.649101146771], [-146.79797752625845, -3670.549101148168]], "destination": 25625048}, {"length": 10.119422386, "source": 2705350349, "path": [[5657.652022473591, -2315.0491011456606], [5656.552022473616, -2360.549101148024]], "destination": 2705350419}, {"length": 20.7350806778, "source": 2705350349, "path": [[5657.652022473591, -2315.0491011456606], [5799.302022473585, -2318.0991011457763]], "destination": 2705350389}, {"length": 120.250518827, "source": 2705350349, "path": [[5657.652022473591, -2315.0491011456606], [4836.152022473783, -2297.599101147796]], "destination": 2705350342}, {"length": 21.4633801727, "source": 25666982, "path": [[6708.202022473797, -4098.9991011457505], [6697.552022473685, -4113.499101148222], [6682.5520224735865, -4126.199101147421], [6663.80202247363, -4136.54910114758], [6642.252022473594, -4144.099101146992], [6618.75202247364, -4148.549101145704], [6594.352022473604, -4149.649101147901]], "destination": 25666981}, {"length": 11.1870843277, "source": 666941135, "path": [[3348.8520224735917, -798.149101147061], [3273.65202247365, -789.0491011472989]], "destination": 34845764}, {"length": 120.028448304, "source": 666941135, "path": [[3348.8520224735917, -798.149101147061], [3423.1520224736746, -805.7491011470574], [4085.1020224736967, -873.3491011483352], [4159.502022473615, -880.9491011483317]], "destination": 666951702}, {"length": 63.7757318163, "source": 116147965, "path": [[6149.352022473798, 3797.9008988529017], [6210.702022473757, 3726.200898853449], [6236.55202247364, 3648.850898851919], [6240.152022473744, 3583.8508988526028], [6226.752022473692, 3524.2508988524432]], "destination": 116147963}, {"length": 12.2753385937, "source": 116147965, "path": [[6149.352022473798, 3797.9008988529017], [6093.102022473707, 3838.850898851831]], "destination": 116147966}, {"length": 9.83120458999, "source": 116147965, "path": [[6149.352022473798, 3797.9008988529017], [6092.352022473601, 3774.500898853006]], "destination": 3732186339}, {"length": 5.44038839509, "source": 272269064, "path": [[-3739.047977526333, -2041.5491011469555], [-3764.1479775263333, -2023.4991011456316]], "destination": 932339306}, {"length": 98.8298366898, "source": 272269064, "path": [[-3739.047977526333, -2041.5491011469555], [-3564.7479775262614, -2470.8991011479498]], "destination": 272270324}, {"length": 54.2168328828, "source": 272269064, "path": [[-3739.047977526333, -2041.5491011469555], [-3978.2479775263278, -2184.2991011453705], [-3984.397977526255, -2175.9491011472674], [-3998.8479775263654, -2156.0491011456406]], "destination": 930776663}, {"length": 119.628258145, "source": 25625657, "path": [[3990.1020224737404, -4385.349101145408], [3956.952022473592, -4366.649101147146], [3369.2020224735943, -4035.299101147416]], "destination": 25625680}, {"length": 47.6074786867, "source": 25625657, "path": [[3990.1020224737404, -4385.349101145408], [4027.252022473782, -4359.399101147687], [4213.202022473661, -4229.499101146672]], "destination": 25625656}, {"length": 50.3714207875, "source": 25625657, "path": [[3990.1020224737404, -4385.349101145408], [4024.2520224735845, -4404.799101145329], [4250.552022473597, -4533.499101146532]], "destination": 25625658}, {"length": 65.9713514339, "source": 25625657, "path": [[3990.1020224737404, -4385.349101145408], [3958.00202247365, -4404.449101148344], [3692.902022473632, -4562.349101146168], [3655.802022473731, -4584.449101148635]], "destination": 25625661}, {"length": 74.3273665952, "source": 205094614, "path": [[5066.35202247363, -894.6991011455907], [5217.452022473701, -601.2991011488111], [5229.352022473766, -578.1491011482842]], "destination": 205094615}, {"length": 63.3871043521, "source": 831956695, "path": [[3300.052022473743, -3855.09910114834], [3317.3020224737115, -3637.5991011468045], [3348.8520224735917, -3618.6991011462055], [3403.9020224736482, -3603.7991011461654]], "destination": 831956670}, {"length": 54.5217087535, "source": 3734288088, "path": [[3053.202022473611, 2371.1508988526475], [3308.852022473774, 2192.800898853875]], "destination": 3734288089}, {"length": 80.9047714803, "source": 3734288088, "path": [[3053.202022473611, 2371.1508988526475], [3269.45202247364, 2515.400898854381], [3435.5020224736686, 2602.9008988537325], [3459.1520224735996, 2617.300898851482]], "destination": 3732222530}, {"length": 46.7718654411, "source": 3734288088, "path": [[3053.202022473611, 2371.1508988526475], [2831.50202247362, 2522.65089885384]], "destination": 204830067}, {"length": 41.544204999, "source": 3734288088, "path": [[3053.202022473611, 2371.1508988526475], [2851.5520224736692, 2239.650898854251]], "destination": 3734288102}, {"length": 82.2643867615, "source": 34817753, "path": [[-6126.147977526309, -3180.649101146571], [-6635.2979775263775, -3337.649101148088]], "destination": 34817752}, {"length": 98.2798795224, "source": 34817753, "path": [[-6126.147977526309, -3180.649101146571], [-6432.947977526249, -2828.899101146476], [-6460.497977526236, -2797.3491011472615]], "destination": 34817771}, {"length": 6.65293527627, "source": 4958488598, "path": [[-3293.647977526293, 82.90089885321095], [-3254.9479775263458, 98.60089885194157]], "destination": 241584504}, {"length": 21.4009396687, "source": 4958488598, "path": [[-3293.647977526293, 82.90089885321095], [-3183.547977526402, 19.55089885186112]], "destination": 4958500474}, {"length": 7.33525974273, "source": 4958488598, "path": [[-3293.647977526293, 82.90089885321095], [-3334.9979775263437, 64.25089885198076]], "destination": 185876467}, {"length": 6.45630739811, "source": 2689489681, "path": [[3355.252022473776, -3042.74910114799], [3376.2020224736843, -3017.1991011478385]], "destination": 2689489680}, {"length": 15.4555349933, "source": 2689489681, "path": [[3355.252022473776, -3042.74910114799], [3459.0020224736227, -3055.849101148311]], "destination": 270185394}, {"length": 30.9697708476, "source": 4547131002, "path": [[-1880.297977526313, 226.8008988544068], [-1864.3979775263554, 215.20089885385119], [-1822.8479775264095, 186.50089885241528], [-1841.2979775264128, 175.5008988517659], [-1915.547977526355, 128.75089885255875]], "destination": 3422228281}, {"length": 32.1067090931, "source": 4547131002, "path": [[-1880.297977526313, 226.8008988544068], [-1900.347977526362, 241.45089885152515], [-1947.8979775262583, 270.35089885174557], [-1965.7479775263553, 259.3008988540646], [-2037.647977526369, 213.3508988535482]], "destination": 4547131006}, {"length": 30.7629777469, "source": 4547131002, "path": [[-1880.297977526313, 226.8008988544068], [-1857.397977526265, 242.1008988520157], [-1920.3979775264113, 287.30089885442567], [-1854.697977526243, 322.1508988531241]], "destination": 2386533113}, {"length": 34.4370883431, "source": 146724574, "path": [[-3632.047977526254, -1500.1491011474855], [-3592.297977526249, -1579.0991011463973], [-3544.4479775263994, -1643.4991011458067]], "destination": 146724619}, {"length": 37.5117970322, "source": 146724574, "path": [[-3632.047977526254, -1500.1491011474855], [-3444.3479775263518, -1482.9491011454365], [-3378.297977526312, -1476.0491011465149]], "destination": 146724612}, {"length": 41.0469575936, "source": 146724574, "path": [[-3632.047977526254, -1500.1491011474855], [-3637.2979775263216, -1460.2991011472], [-3620.8979775262937, -1422.3491011478018], [-3510.3479775262513, -1346.4491011454527]], "destination": 146724613}, {"length": 8.5669069193, "source": 2463833381, "path": [[-5962.747977526384, 1358.1508988522728], [-5966.047977526312, 1360.600898852482], [-5970.1979775264035, 1363.6508988525975], [-5997.547977526274, 1383.8008988535933], [-6001.747977526284, 1386.900898854293]], "destination": 2463833372}, {"length": 82.25166014, "source": 2463833381, "path": [[-5962.747977526384, 1358.1508988522728], [-5956.0479775262465, 1362.0008988546317], [-5937.247977526372, 1373.550898854603], [-5921.447977526251, 1383.5508988542244], [-5904.197977526282, 1392.5008988522336], [-5899.047977526273, 1389.5008988527024], [-5874.14797752639, 1379.350898851328], [-5846.847977526215, 1368.1508988518942], [-5823.797977526413, 1356.600898851923], [-5792.297977526228, 1341.2508988537297], [-5764.697977526323, 1326.8508988524275], [-5744.647977526274, 1316.3008988534841], [-5720.097977526261, 1302.3008988533036], [-5696.747977526285, 1288.1508988513701], [-5674.297977526388, 1273.0008988519614], [-5640.347977526217, 1251.650898854706], [-5607.597977526302, 1230.7008988514667], [-5588.197977526299, 1217.3008988511924], [-5571.197977526365, 1204.5508988514086], [-5548.747977526247, 1189.2008988532154], [-5542.147977526391, 1183.5008988541063]], "destination": 2463833510}, {"length": 34.042552469, "source": 2463833381, "path": [[-5962.747977526384, 1358.1508988522728], [-5973.797977526285, 1352.4508988531636], [-5981.697977526234, 1344.100898851508], [-5988.347977526231, 1335.300898851699], [-5988.94797752636, 1326.950898853596], [-5983.497977526397, 1318.5508988513561], [-5971.997977526345, 1307.4008988525065], [-5961.647977526408, 1295.400898854382], [-5947.0979775262385, 1282.2508988534764], [-5933.747977526327, 1266.25089885124], [-5922.847977526402, 1249.5008988544498], [-5924.647977526342, 1239.55089885186], [-5934.99797752628, 1233.5508988527977], [-5943.897977526369, 1228.7008988529635]], "destination": 2463833455}, {"length": 30.3320922991, "source": 94267105, "path": [[2096.902022473701, 3730.2508988545924], [2064.402022473599, 3751.2508988513105], [2037.2520224736236, 3769.500898851419], [1918.1020224736667, 3789.350898852462]], "destination": 159935928}, {"length": 149.952912771, "source": 94267105, "path": [[2096.902022473701, 3730.2508988545924], [2057.152022473696, 3700.8008988514975], [1431.6020224736103, 3237.200898851711], [1413.5520224736188, 3228.150898852533]], "destination": 94267807}, {"length": 98.1545964676, "source": 94267106, "path": [[2827.7020224736216, 3245.050898854629], [2774.4020224735877, 3280.7008988520183], [2357.102022473745, 3559.550898852848]], "destination": 174006224}, {"length": 95.9174774833, "source": 94267106, "path": [[2827.7020224736216, 3245.050898854629], [2795.6520224736714, 3224.5508988530955], [2356.40202247378, 2945.300898854697]], "destination": 94267505}, {"length": 52.5190824922, "source": 94267106, "path": [[2827.7020224736216, 3245.050898854629], [2869.4520224736843, 3270.600898851228], [3090.5520224737693, 3405.850898854368]], "destination": 2705349524}, {"length": 13.9176703631, "source": 25666984, "path": [[6604.952022473798, -3996.4491011481587], [6628.452022473752, -3998.8491011477836], [6650.652022473613, -4004.3991011486924], [6670.752022473581, -4012.7991011473796], [6687.802022473655, -4023.6991011468604]], "destination": 25666983}, {"length": 8.72373457926, "source": 204834533, "path": [[2220.2020224737494, 271.45089885394214], [2162.5520224737293, 281.45089885356356]], "destination": 2705349864}, {"length": 112.903649459, "source": 204834533, "path": [[2220.2020224737494, 271.45089885394214], [2176.652022473746, 243.15089885362795], [1709.0020224737045, -60.9491011474006], [1671.3520224735935, -85.39910114535587]], "destination": 204836246}, {"length": 41.544204999, "source": 3734288102, "path": [[2851.5520224736692, 2239.650898854251], [3053.202022473611, 2371.1508988526475]], "destination": 3734288088}, {"length": 83.6396189425, "source": 3734288102, "path": [[2851.5520224736692, 2239.650898854251], [2813.702022473663, 2251.600898851791], [2465.902022473765, 2038.650898853689], [2467.502022473589, 2002.8008988539625]], "destination": 3734288121}, {"length": 77.0247339189, "source": 3734288102, "path": [[2851.5520224736692, 2239.650898854251], [2586.152022473698, 2077.1008988518247], [2467.502022473589, 2002.8008988539625]], "destination": 3734288121}, {"length": 6.19558259944, "source": 3734288102, "path": [[2851.5520224736692, 2239.650898854251], [2866.152022473756, 2213.5008988541927]], "destination": 3734288103}, {"length": 12.0099888077, "source": 3734288103, "path": [[2866.152022473756, 2213.5008988541927], [2806.6520224736546, 2176.300898852901]], "destination": 3734288105}, {"length": 37.2283904915, "source": 3734288103, "path": [[2866.152022473756, 2213.5008988541927], [2915.5020224735927, 2198.1008988518624], [2944.352022473673, 2152.20089885193], [2849.8020224736465, 2099.1008988531235]], "destination": 3734288106}, {"length": 6.19558259944, "source": 3734288103, "path": [[2866.152022473756, 2213.5008988541927], [2851.5520224736692, 2239.650898854251]], "destination": 3734288102}, {"length": 150.540417107, "source": 36485756, "path": [[-1440.6979775263285, 111.40089885230964], [-736.297977526279, -381.99910114755653]], "destination": 653598358}, {"length": 18.07516776, "source": 36485756, "path": [[-1440.6979775263285, 111.40089885230964], [-1351.747977526241, 167.8008988541535]], "destination": 160023534}, {"length": 18.2927546311, "source": 3734288106, "path": [[2849.8020224736465, 2099.1008988531235], [2806.6520224736546, 2176.300898852901]], "destination": 3734288105}, {"length": 20.3551838977, "source": 3734288106, "path": [[2849.8020224736465, 2099.1008988531235], [2749.2520224736695, 2035.8508988529422]], "destination": 3734288099}, {"length": 37.2283904915, "source": 3734288106, "path": [[2849.8020224736465, 2099.1008988531235], [2944.352022473673, 2152.20089885193], [2915.5020224735927, 2198.1008988518624], [2866.152022473756, 2213.5008988541927]], "destination": 3734288103}, {"length": 15.6510206334, "source": 34817771, "path": [[-6460.497977526236, -2797.3491011472615], [-6502.097977526322, -2802.199101147096], [-6565.847977526351, -2809.599101148308]], "destination": 305339739}, {"length": 10.0730027725, "source": 34817771, "path": [[-6460.497977526236, -2797.3491011472615], [-6493.497977526408, -2757.5991011481447]], "destination": 305339475}, {"length": 36.2679853945, "source": 1976882949, "path": [[-1913.0479775262277, -1639.5491011458319], [-1817.397977526225, -1577.9491011471691], [-1735.197977526415, -1629.9491011473322]], "destination": 1976882994}, {"length": 30.3168083818, "source": 1976882949, "path": [[-1913.0479775262277, -1639.5491011458319], [-1915.2979775263202, -1640.9991011485658], [-2063.297977526357, -1733.3991011483363]], "destination": 146739084}, {"length": 16.6142430927, "source": 1976882949, "path": [[-1913.0479775262277, -1639.5491011458319], [-1831.1479775263706, -1691.299101146626]], "destination": 1976882990}, {"length": 2.7661910794, "source": 305340141, "path": [[-6600.647977526241, -2769.649101146854], [-6582.047977526262, -2767.399101145429]], "destination": 305340085}, {"length": 51.2723408753, "source": 3734288110, "path": [[3129.10202247374, 3039.9508988523394], [3374.05202247365, 2875.100898851457]], "destination": 3734288109}, {"length": 111.583843225, "source": 3734288110, "path": [[3129.10202247374, 3039.9508988523394], [2626.752022473644, 2714.55089885464], [2585.702022473768, 2687.9508988528755]], "destination": 94267653}, {"length": 90.8787904348, "source": 141566589, "path": [[-5380.647977526242, 4363.750898853879], [-5830.39797752627, 4126.750898851838], [-5840.297977526277, 4121.150898853898], [-5864.397977526359, 4107.550898851287]], "destination": 141567053}, {"length": 121.871460516, "source": 141566589, "path": [[-5380.647977526242, 4363.750898853879], [-4928.397977526311, 3995.5508988533948], [-4882.197977526203, 3957.950898854534], [-4857.147977526343, 3937.5508988541696]], "destination": 141566590}, {"length": 23.515642585, "source": 141567053, "path": [[-5864.397977526359, 4107.550898851287], [-5977.74797752626, 4182.500898853192]], "destination": 2440229701}, {"length": 121.450751286, "source": 141567053, "path": [[-5864.397977526359, 4107.550898851287], [-5829.94797752634, 4082.500898853425], [-5347.247977526282, 3731.050898853283], [-5307.897977526288, 3702.4008988524315]], "destination": 141567054}, {"length": 90.8787904348, "source": 141567053, "path": [[-5864.397977526359, 4107.550898851287], [-5840.297977526277, 4121.150898853898], [-5830.39797752627, 4126.750898851838], [-5380.647977526242, 4363.750898853879]], "destination": 141566589}, {"length": 22.1409293131, "source": 661233, "path": [[-2556.7479775263637, 1376.0508988518438], [-2405.447977526398, 1377.350898852825]], "destination": 2477903481}, {"length": 15.4444513645, "source": 661233, "path": [[-2556.7479775263637, 1376.0508988518438], [-2596.9979775262163, 1440.2508988524687]], "destination": 4547130996}, {"length": 260.416605326, "source": 661233, "path": [[-2556.7479775263637, 1376.0508988518438], [-2492.397977526206, 1263.3508988528774], [-2308.7479775263373, 788.800898853026], [-2204.89797752621, 622.0508988512563], [-2131.247977526396, 537.5508988514355], [-2042.4479775262848, 449.05089885460825], [-1941.4479775263783, 375.6008988524684], [-1854.697977526243, 322.1508988531241]], "destination": 2386533113}, {"length": 50.3714207875, "source": 25625658, "path": [[4250.552022473597, -4533.499101146532], [4024.2520224735845, -4404.799101145329], [3990.1020224737404, -4385.349101145408]], "destination": 25625657}, {"length": 65.324231591, "source": 185876212, "path": [[-3132.2479775262036, -576.2991011479812], [-3172.7479775263137, -602.1491011480862], [-3365.947977526318, -725.5491011477488], [-3452.597977526395, -780.8991011479804]], "destination": 185876056}, {"length": 26.1360537742, "source": 185876212, "path": [[-3132.2479775262036, -576.2991011479812], [-3002.74797752631, -657.2491011453963]], "destination": 4069612243}, {"length": 57.1800257226, "source": 185876212, "path": [[-3132.2479775262036, -576.2991011479812], [-3084.897977526202, -546.4991011479015], [-2849.947977526357, -398.4991011485306]], "destination": 4069612223}, {"length": 64.1938099965, "source": 185876213, "path": [[-2825.447977526263, -383.0491011456161], [-2882.8979775263883, -323.74910114540967], [-3061.2979775264116, -139.64910114694362]], "destination": 146724409}, {"length": 4.96485988531, "source": 185876213, "path": [[-2825.447977526263, -383.0491011456161], [-2849.947977526357, -398.4991011485306]], "destination": 4069612223}, {"length": 28.0009638854, "source": 661239, "path": [[-1120.597977526394, 3691.6008988541194], [-1023.6479775262985, 3583.0508988539123]], "destination": 21346797}, {"length": 59.7599900364, "source": 661239, "path": [[-1120.597977526394, 3691.6008988541194], [-1302.7479775262752, 3900.4008988534624], [-1323.8979775263006, 3924.650898852633]], "destination": 94270046}, {"length": 40.5304254581, "source": 661239, "path": [[-1120.597977526394, 3691.6008988541194], [-870.4979775262523, 3769.9008988525406]], "destination": 2556489919}, {"length": 6.98985288004, "source": 3422228216, "path": [[-2729.697977526202, 1592.2008988518144], [-2704.2479775263305, 1565.600898853603]], "destination": 4547130993}, {"length": 36.0219208344, "source": 3422228216, "path": [[-2729.697977526202, 1592.2008988518144], [-2801.597977526216, 1661.5508988522265], [-2868.4479775262785, 1726.0008988522202]], "destination": 21346796}, {"length": 344.680833755, "source": 3422228216, "path": [[-2729.697977526202, 1592.2008988518144], [-2873.147977526358, 1514.8508988538367], [-2779.1479775263197, 1361.7508988517102], [-2704.5979775262017, 1235.6008988518852], [-2551.3979775262374, 870.750898851469], [-2473.1979775263203, 700.7008988537677], [-2397.0979775262967, 570.4008988516307], [-2291.8479775262404, 424.30089885314715], [-2152.1479775263865, 292.65089885299744], [-2037.647977526369, 213.3508988535482]], "destination": 4547131006}, {"length": 17.1192039851, "source": 116147961, "path": [[6021.752022473681, 3331.650898854122], [6112.102022473698, 3380.550898853585]], "destination": 116147962}, {"length": 53.5104133456, "source": 116147961, "path": [[6021.752022473681, 3331.650898854122], [5768.552022473727, 3505.2508988542286]], "destination": 470171}, {"length": 10.3248556661, "source": 116147962, "path": [[6112.102022473698, 3380.550898853585], [6064.802022473615, 3415.0008988547143]], "destination": 3732186353}, {"length": 26.0084968332, "source": 116147962, "path": [[6112.102022473698, 3380.550898853585], [6205.2520224737955, 3480.15089885223]], "destination": 65311769}, {"length": 17.1192039851, "source": 116147962, "path": [[6112.102022473698, 3380.550898853585], [6021.752022473681, 3331.650898854122]], "destination": 116147961}, {"length": 10.2999475027, "source": 116147963, "path": [[6226.752022473692, 3524.2508988524432], [6205.2520224737955, 3480.15089885223]], "destination": 65311769}, {"length": 9.99756196093, "source": 116147963, "path": [[6226.752022473692, 3524.2508988524432], [6159.4020224737815, 3531.800898851856]], "destination": 3732186338}, {"length": 63.7757318163, "source": 116147963, "path": [[6226.752022473692, 3524.2508988524432], [6240.152022473744, 3583.8508988526028], [6236.55202247364, 3648.850898851919], [6210.702022473757, 3726.200898853449], [6149.352022473798, 3797.9008988529017]], "destination": 116147965}, {"length": 10.0479187708, "source": 2705350396, "path": [[6617.85202247378, -2335.49910114661], [6615.202022473676, -2380.6491011484354]], "destination": 2705350427}, {"length": 6.41850585889, "source": 2705350396, "path": [[6617.85202247378, -2335.49910114661], [6661.702022473737, -2336.399101146469]], "destination": 4508646379}, {"length": 98.220695368, "source": 2705350396, "path": [[6617.85202247378, -2335.49910114661], [5946.852022473692, -2321.199101146476]], "destination": 2705350391}, {"length": 4.29838450354, "source": 4955856170, "path": [[415.8020224735992, -1288.2991011480271], [398.2520224736774, -1303.7991011479733]], "destination": 4955856145}, {"length": 433.386613798, "source": 4955856170, "path": [[415.8020224735992, -1288.2991011480271], [350.60202247372274, -1249.9491011475072], [-9.797977526204704, -1020.5491011454626], [-534.8479775262316, -658.3491011475928], [-912.1479775262565, -396.19910114652157], [-1457.947977526297, -21.599101145852728], [-1614.747977526365, 126.95089885284006]], "destination": 205086386}, {"length": 16.1758387481, "source": 4955856170, "path": [[415.8020224735992, -1288.2991011480271], [500.50202247375887, -1241.54910114882]], "destination": 470180}, {"length": 214.810667398, "source": 4955856170, "path": [[415.8020224735992, -1288.2991011480271], [380.10202247362736, -1231.3991011474457], [230.60202247360274, -1124.7991011487102], [-565.4479775263344, -574.9991011470001]], "destination": 653598369}, {"length": 114.53492566, "source": 116147966, "path": [[6093.102022473707, 3838.850898851831], [6153.902022473679, 3878.7008988521166], [6597.952022473708, 4169.100898852917], [6648.152022473708, 4201.950898853112]], "destination": 470170}, {"length": 12.2753385937, "source": 116147966, "path": [[6093.102022473707, 3838.850898851831], [6149.352022473798, 3797.9008988529017]], "destination": 116147965}, {"length": 8.89459380306, "source": 116147966, "path": [[6093.102022473707, 3838.850898851831], [6048.402022473587, 3811.750898851329]], "destination": 2705349422}, {"length": 13.060438221, "source": 116147966, "path": [[6093.102022473707, 3838.850898851831], [6029.802022473607, 3880.2508988524664]], "destination": 116147967}, {"length": 8.4064775645, "source": 116147967, "path": [[6029.802022473607, 3880.2508988524664], [5985.052022473791, 3856.5508988526176]], "destination": 3732186340}, {"length": 74.5626207458, "source": 116147967, "path": [[6029.802022473607, 3880.2508988524664], [5952.652022473748, 3915.0508988541333], [5834.502022473709, 3942.800898851573], [5735.102022473626, 3950.1508988522005], [5617.952022473727, 3943.550898853232], [5549.602022473677, 3926.800898852889]], "destination": 116147990}, {"length": 13.060438221, "source": 116147967, "path": [[6029.802022473607, 3880.2508988524664], [6093.102022473707, 3838.850898851831]], "destination": 116147966}, {"length": 44.1322770655, "source": 3905020313, "path": [[-4404.797977526354, 3329.70089885265], [-4547.397977526346, 3257.3508988527065], [-4473.74797752631, 3193.750898851988]], "destination": 3905020323}, {"length": 17.5602323026, "source": 3905020313, "path": [[-4404.797977526354, 3329.70089885265], [-4309.747977526257, 3377.900898854591]], "destination": 3905020310}, {"length": 28.0674614896, "source": 3905020313, "path": [[-4404.797977526354, 3329.70089885265], [-4320.3479775262285, 3256.3508988516787], [-4272.947977526309, 3242.350898851498]], "destination": 3905020319}, {"length": 15.3405200882, "source": 1976882945, "path": [[-2491.1979775263935, -2017.0991011454475], [-2417.397977526381, -2066.099101146079]], "destination": 1976883000}, {"length": 36.8462601891, "source": 1976882945, "path": [[-2491.1979775263935, -2017.0991011454475], [-2582.6479775263865, -2076.8991011479443], [-2586.0979775262917, -2116.449101148277], [-2542.44797752623, -2146.049101146019]], "destination": 146739060}, {"length": 29.6222889497, "source": 1976882945, "path": [[-2491.1979775263935, -2017.0991011454475], [-2347.5979775262613, -1923.1991011459115]], "destination": 1976883004}, {"length": 44.8814160121, "source": 267659010, "path": [[-3669.5479775263884, -638.4491011459659], [-3537.4979775262273, -730.5991011463675], [-3452.597977526395, -780.8991011479804]], "destination": 185876056}, {"length": 41.7961189614, "source": 267659010, "path": [[-3669.5479775263884, -638.4491011459659], [-3747.1479775263992, -680.7491011464606], [-3809.447977526359, -699.2491011459379], [-3820.2979775263657, -684.6491011458511], [-3831.1979775262907, -666.74910114628], [-3773.3479775263754, -651.149101148718]], "destination": 3066566737}, {"length": 49.5301905179, "source": 267659010, "path": [[-3669.5479775263884, -638.4491011459659], [-3906.747977526326, -479.54910114711424]], "destination": 304991211}, {"length": 78.711655614, "source": 159935928, "path": [[1918.1020224736667, 3789.350898852462], [1947.7020224736298, 3811.6508988537134], [2215.6520224736464, 4020.0508988519346], [2266.0520224737634, 4059.2508988517293]], "destination": 159936180}, {"length": 33.5201402817, "source": 159935928, "path": [[1918.1020224736667, 3789.350898852462], [1696.052022473582, 3826.350898851416]], "destination": 174002383}, {"length": 9.88332108273, "source": 146724612, "path": [[-3378.297977526312, -1476.0491011465149], [-3395.9479775262926, -1433.149101146114]], "destination": 652952449}, {"length": 15.8962286918, "source": 146724612, "path": [[-3378.297977526312, -1476.0491011465149], [-3364.4979775262486, -1546.949101147277]], "destination": 146724610}, {"length": 37.5117970322, "source": 146724612, "path": [[-3378.297977526312, -1476.0491011465149], [-3444.3479775263518, -1482.9491011454365], [-3632.047977526254, -1500.1491011474855]], "destination": 146724574}, {"length": 30.8528530804, "source": 930672389, "path": [[-2510.547977526256, -2174.399101146918], [-2458.1479775263037, -2171.3991011473863], [-2400.5979775263418, -2171.549101145587], [-2300.8479775263877, -2180.7991011471017]], "destination": 146739056}, {"length": 7.84467738071, "source": 930672389, "path": [[-2510.547977526256, -2174.399101146918], [-2542.44797752623, -2146.049101146019]], "destination": 146739060}, {"length": 43.8837010038, "source": 930672389, "path": [[-2510.547977526256, -2174.399101146918], [-2465.097977526254, -2214.0491011484187], [-2453.7979775263175, -2231.4991011462835], [-2443.447977526381, -2251.299101146742], [-2440.6979775262184, -2276.299101147572], [-2470.3479775263213, -2322.8991011485787], [-2491.847977526218, -2351.7991011487993]], "destination": 146739030}, {"length": 90.1623745179, "source": 160028423, "path": [[739.2020224736839, -762.4491011455348], [1163.6020224736753, -468.49910114588056]], "destination": 160027545}, {"length": 51.9790347316, "source": 160028423, "path": [[739.2020224736839, -762.4491011455348], [992.8520224737891, -926.0991011466047]], "destination": 34845763}, {"length": 142.278101001, "source": 160028423, "path": [[739.2020224736839, -762.4491011455348], [342.2020224737032, -1008.6991011455382], [47.15202247362882, -805.7991011476417]], "destination": 133130099}, {"length": 15.9847137313, "source": 160028423, "path": [[739.2020224736839, -762.4491011455348], [676.8020224736659, -703.4491011452815]], "destination": 133130131}, {"length": 14.746195707, "source": 146724616, "path": [[-3438.797977526331, -1299.7491011468298], [-3510.3479775262513, -1346.4491011454527]], "destination": 146724613}, {"length": 15.7180337341, "source": 146724616, "path": [[-3438.797977526331, -1299.7491011468298], [-3404.3479775263118, -1290.9491011470209], [-3352.147977526254, -1259.7991011453757]], "destination": 146729006}, {"length": 45.6559486052, "source": 146724616, "path": [[-3438.797977526331, -1299.7491011468298], [-3667.247977526378, -1159.8991011467774]], "destination": 146728999}, {"length": 9.9970386674, "source": 2561299782, "path": [[-4023.047977526284, -2149.9991011459942], [-3999.797977526365, -2136.1991011481505], [-3971.897977526284, -2120.199101145914]], "destination": 431171616}, {"length": 135.00887549, "source": 2561299782, "path": [[-4023.047977526284, -2149.9991011459942], [-4084.2979775264075, -2091.0991011469096], [-4156.7979775263275, -2038.2991011480556], [-4242.747977526218, -1995.9991011475609], [-4330.197977526318, -1964.4991011453783], [-4410.497977526351, -1941.899101147726], [-4495.797977526417, -1927.1991011464706], [-4817.247977526362, -1902.699101147931]], "destination": 2561299760}, {"length": 78.4202448887, "source": 2561299782, "path": [[-4023.047977526284, -2149.9991011459942], [-4058.047977526291, -2218.699101145916], [-4148.597977526203, -2305.349101145993], [-4211.847977526384, -2392.64910114656], [-4230.897977526293, -2414.999101148396], [-4257.447977526363, -2438.749101148829], [-4254.097977526294, -2461.849101148772]], "destination": 1524853508}, {"length": 14.1003887171, "source": 831956663, "path": [[3336.902022473609, -4380.749101148495], [3250.6520224737656, -4409.04910114881]], "destination": 831929434}, {"length": 11.4926781014, "source": 831956663, "path": [[3336.902022473609, -4380.749101148495], [3332.602022473763, -4432.349101147537]], "destination": 270920539}, {"length": 9.7852598363, "source": 831956663, "path": [[3336.902022473609, -4380.749101148495], [3341.4020224737937, -4336.849101147067]], "destination": 25625668}, {"length": 6.86748449182, "source": 3134287628, "path": [[-64.1979775262147, -371.34910114744457], [-81.94797752625327, -371.09910114807576], [-82.59797752629972, -390.29910114862787]], "destination": 3422228449}, {"length": 15.8967922447, "source": 3134287628, "path": [[-64.1979775262147, -371.34910114744457], [-46.49797752631635, -371.5991011468134], [-47.44797752631591, -399.44910114542154], [-82.89797752625283, -398.9491011466839], [-82.59797752629972, -390.29910114862787]], "destination": 3422228449}, {"length": 28.6549356532, "source": 3134287628, "path": [[-64.1979775262147, -371.34910114744457], [-64.64797752636642, -242.49910114804152]], "destination": 3134287620}, {"length": 59.8505973445, "source": 116147982, "path": [[5586.7020224738, 3627.300898852326], [5303.002022473802, 3821.1508988545975]], "destination": 116147905}, {"length": 38.0116538292, "source": 116147982, "path": [[5586.7020224738, 3627.300898852326], [5768.552022473727, 3505.2508988542286]], "destination": 470171}, {"length": 22.4575980143, "source": 116147982, "path": [[5586.7020224738, 3627.300898852326], [5574.252022473747, 3727.950898852583]], "destination": 2705349460}, {"length": 18.0464740291, "source": 116147982, "path": [[5586.7020224738, 3627.300898852326], [5703.8520224736985, 3652.6508988536934]], "destination": 1219826518}, {"length": 2.74328904421, "source": 185859373, "path": [[-6048.6979775262735, 1440.0008988531], [-6062.6979775262325, 1431.8008988531972]], "destination": 2463833369}, {"length": 112.533293228, "source": 185859373, "path": [[-6048.6979775262735, 1440.0008988531], [-6106.697977526387, 1466.1008988525737], [-6505.3979775262505, 1703.0508988540305], [-6556.797977526286, 1739.7008988524476], [-6614.947977526375, 1781.1508988536673]], "destination": 185856687}, {"length": 15.48582857, "source": 270186256, "path": [[3294.0520224737925, -2168.2491011461025], [3297.352022473721, -2098.6491011463213]], "destination": 185883891}, {"length": 194.070696307, "source": 270186256, "path": [[3294.0520224737925, -2168.2491011461025], [3032.5520224736556, -2153.199101147862], [2820.4020224738, -2134.649101147801], [2553.2520224735845, -2101.449101147068], [2234.802022473614, -2042.6991011461837], [2158.7020224735907, -2026.9491011468688], [2001.5520224736515, -1988.6491011469332]], "destination": 1224672966}, {"length": 36.7103086302, "source": 270186256, "path": [[3294.0520224737925, -2168.2491011461025], [3302.1020224737185, -2217.649101147856], [3440.952022473631, -2288.1491011474964]], "destination": 4956714223}, {"length": 120.046291146, "source": 2705350419, "path": [[5656.552022473616, -2360.549101148024], [5356.652022473707, -2356.549101147465], [4836.302022473759, -2346.5491011478434]], "destination": 2705350402}, {"length": 10.119422386, "source": 2705350419, "path": [[5656.552022473616, -2360.549101148024], [5657.652022473591, -2315.0491011456606]], "destination": 2705350349}, {"length": 10.2283841611, "source": 2705350419, "path": [[5656.552022473616, -2360.549101148024], [5726.4520224737935, -2361.449101147883]], "destination": 721620637}, {"length": 8.24299816152, "source": 133052180, "path": [[224.90202247360537, 224.70089885118227], [184.45202247363568, 198.90089885166162]], "destination": 133129379}, {"length": 59.8008829079, "source": 133052180, "path": [[224.90202247360537, 224.70089885118227], [518.3020224737156, 411.9008988539008]], "destination": 133129668}, {"length": 46.0402589245, "source": 133052180, "path": [[224.90202247360537, 224.70089885118227], [441.8520224735989, 74.75089885389252]], "destination": 133129373}, {"length": 10.6514000998, "source": 133052180, "path": [[224.90202247360537, 224.70089885118227], [176.80202247372102, 260.65089885207726]], "destination": 133129405}, {"length": 203.650076181, "source": 36489068, "path": [[6316.502022473802, 77.75089885342368], [6401.552022473611, 302.10089885329694], [6393.5020224736845, 351.5008988514978], [6716.452022473618, 939.0008988532372], [6721.652022473768, 948.500898854121]], "destination": 1181549860}, {"length": 53.2760741099, "source": 36489068, "path": [[6316.502022473802, 77.75089885342368], [6303.10202247375, 78.55089885211441], [6098.102022473739, 90.90089885432917], [6000.35202247362, 111.50089885347825], [5960.202022473604, 119.95089885274979]], "destination": 21378253}, {"length": 17.7128069919, "source": 3772612374, "path": [[5008.102022473704, 2162.3008988527204], [5022.702022473791, 2154.150898853402], [5092.40202247363, 2105.2508988539385]], "destination": 21378256}, {"length": 29.5737610284, "source": 3772612374, "path": [[5008.102022473704, 2162.3008988527204], [4880.602022473646, 2075.4008988532746], [4869.252022473791, 2065.7508988541904]], "destination": 3732221778}, {"length": 83.4315572764, "source": 3772612374, "path": [[5008.102022473704, 2162.3008988527204], [4743.752022473791, 2341.250898851399], [4610.75202247363, 2431.3508988527133]], "destination": 654070789}, {"length": 21.9013953732, "source": 2705350423, "path": [[5798.102022473772, -2363.74910114634], [5837.6520224736605, -2365.0491011473205], [5947.702022473633, -2367.249101148161]], "destination": 2705350425}, {"length": 10.1532102008, "source": 2705350423, "path": [[5798.102022473772, -2363.74910114634], [5799.302022473585, -2318.0991011457763]], "destination": 2705350389}, {"length": 10.4954115028, "source": 2705350423, "path": [[5798.102022473772, -2363.74910114634], [5726.4520224737935, -2361.449101147883]], "destination": 721620637}, {"length": 93.2424477492, "source": 34817816, "path": [[-5754.597977526199, -561.7991011455103], [-6264.497977526373, -813.2991011464696]], "destination": 34817815}, {"length": 4.79212395494, "source": 2463876740, "path": [[453.5020224736286, 3277.9508988518555], [477.1020224736411, 3292.90089885248]], "destination": 371609795}, {"length": 97.7024437352, "source": 2705350427, "path": [[6615.202022473676, -2380.6491011484354], [5947.702022473633, -2367.249101148161]], "destination": 2705350425}, {"length": 10.0479187708, "source": 2705350427, "path": [[6615.202022473676, -2380.6491011484354], [6617.85202247378, -2335.49910114661]], "destination": 2705350396}, {"length": 13.3177189087, "source": 2705350427, "path": [[6615.202022473676, -2380.6491011484354], [6706.1520224736, -2383.1491011456765]], "destination": 2705350429}, {"length": 14.3355645958, "source": 666947356, "path": [[5096.852022473675, 993.2508988512723], [5065.852022473782, 932.1008988543156]], "destination": 36487637}, {"length": 13.3177189087, "source": 2705350429, "path": [[6706.1520224736, -2383.1491011456765], [6615.202022473676, -2380.6491011484354]], "destination": 2705350427}, {"length": 10.1780347127, "source": 2705350429, "path": [[6706.1520224736, -2383.1491011456765], [6708.1020224737385, -2337.3991011474973]], "destination": 2705350398}, {"length": 150.539263108, "source": 304991211, "path": [[-3906.747977526326, -479.54910114711424], [-3945.3979775263547, -462.59910114798686], [-4038.0979775263004, -437.79910114594145], [-4842.597977526397, -279.74910114636486], [-4883.497977526296, -271.54910114646214]], "destination": 34818448}, {"length": 49.5301905179, "source": 304991211, "path": [[-3906.747977526326, -479.54910114711424], [-3669.5479775263884, -638.4491011459659]], "destination": 267659010}, {"length": 66.389391625, "source": 304991211, "path": [[-3906.747977526326, -479.54910114711424], [-3839.6479775262283, -414.44910114663], [-3699.897977526234, -284.74910114795193], [-3680.947977526383, -266.4991011478435], [-3688.697977526356, -228.04910114615495]], "destination": 304991212}, {"length": 10.2234377648, "source": 2463876741, "path": [[822.4020224736339, 3269.500898852584], [795.6020224737515, 3286.3508988540957], [771.9520224735987, 3301.30089885472]], "destination": 2543955254}, {"length": 32.8281727481, "source": 2463876741, "path": [[822.4020224736339, 3269.500898852584], [664.9520224737415, 3164.3508988530302]], "destination": 94267358}, {"length": 10.4988458653, "source": 25625563, "path": [[3801.0520224736056, -3103.4491011467935], [3828.202022473581, -3059.749101147702]], "destination": 5056992116}, {"length": 201.096356949, "source": 25625563, "path": [[3801.0520224736056, -3103.4491011467935], [3884.0020224737427, -3101.3491011471215], [4274.402022473644, -3101.2991011465374], [4511.152022473652, -3123.8991011477424], [4682.002022473597, -3161.499101146603], [4870.402022473685, -3194.199101148598], [5155.602022473671, -3214.8491011483316]], "destination": 25625847}, {"length": 49.0430976488, "source": 133129932, "path": [[-918.3979775262419, 40.85089885208504], [-870.1979775262992, 23.950898853541958], [-809.347977526409, 10.95089885438938], [-751.3479775262955, 3.400898851424472], [-689.9479775264173, 2.5508988521494302], [-594.7979775262625, 11.150898853173885]], "destination": 133129946}, {"length": 48.4904895861, "source": 133129932, "path": [[-918.3979775262419, 40.85089885208504], [-920.7979775263109, -38.24910114857971], [-921.8479775263688, -98.79910114563017], [-906.2979775262825, -176.49910114769796]], "destination": 133129911}, {"length": 10.9926877122, "source": 133129932, "path": [[-918.3979775262419, 40.85089885208504], [-930.8479775262946, 45.90089885425641], [-982.2979775262475, 66.85089885394291]], "destination": 133129935}, {"length": 7.34508265941, "source": 270731910, "path": [[-3463.347977526343, -2801.949101147727], [-3441.5479775262716, -2831.699101147223]], "destination": 929442917}, {"length": 16.1524205417, "source": 270731910, "path": [[-3463.347977526343, -2801.949101147727], [-3510.8979775262396, -2736.399101145537]], "destination": 2561299814}, {"length": 6.55810776441, "source": 1976882985, "path": [[-1985.4979775262293, -1789.9491011483804], [-1953.3479775262208, -1769.3991011462629]], "destination": 652950792}, {"length": 12.7969300189, "source": 1976882985, "path": [[-1985.4979775262293, -1789.9491011483804], [-2044.547977526401, -1747.4991011461327]], "destination": 146739080}, {"length": 28.3810899253, "source": 1976882985, "path": [[-1985.4979775262293, -1789.9491011483804], [-2124.597977526399, -1878.8991011469136]], "destination": 1976882932}, {"length": 57.0856151708, "source": 3772612395, "path": [[5225.402022473791, 1909.0008988520424], [5191.50202247376, 1888.3008988517247], [5163.952022473773, 1870.8008988532754], [4982.252022473599, 1994.1508988523537], [4951.302022473625, 2015.2008988532089]], "destination": 3772612379}, {"length": 31.96350665, "source": 3772612395, "path": [[5225.402022473791, 1909.0008988520424], [5073.0520224737675, 2012.0008988513405]], "destination": 3772612381}, {"length": 6.17591287724, "source": 34817817, "path": [[-5028.647977526335, -232.29910114608288], [-5013.197977526307, -223.74910114564273], [-4994.447977526351, -216.14910114564623]], "destination": 34818441}, {"length": 46.0975802541, "source": 133129379, "path": [[184.45202247363568, 198.90089885166162], [401.65202247366415, 48.75089885203465]], "destination": 368288}, {"length": 8.24299816152, "source": 133129379, "path": [[184.45202247363568, 198.90089885166162], [224.90202247360537, 224.70089885118227]], "destination": 133052180}, {"length": 75.9299823755, "source": 133129379, "path": [[184.45202247363568, 198.90089885166162], [150.75202247372133, 178.10089885372804], [40.05202247370221, 109.85089885195976], [0.0020224737440344143, 85.00089885288276], [-192.79797752624893, -35.54910114544896]], "destination": 654054735}, {"length": 24.9262915922, "source": 1976882990, "path": [[-1831.1479775263706, -1691.299101146626], [-1953.3479775262208, -1769.3991011462629]], "destination": 652950792}, {"length": 19.5755848049, "source": 1976882990, "path": [[-1831.1479775263706, -1691.299101146626], [-1735.197977526415, -1629.9491011473322]], "destination": 1976882994}, {"length": 16.6142430927, "source": 1976882990, "path": [[-1831.1479775263706, -1691.299101146626], [-1913.0479775262277, -1639.5491011458319]], "destination": 1976882949}, {"length": 50.615466984, "source": 368307, "path": [[-2325.0479775263066, -4374.849101147049], [-2265.947977526217, -4408.899101147057], [-2209.647977526208, -4485.749101146297], [-2149.597977526341, -4567.299101147171]], "destination": 928560010}, {"length": 65.2102824802, "source": 368307, "path": [[-2325.0479775263066, -4374.849101147049], [-2219.9479775262266, -4354.099101146147], [-1940.3979775263203, -4231.449101148144]], "destination": 25623938}, {"length": 52.4152547479, "source": 368307, "path": [[-2325.0479775263066, -4374.849101147049], [-2354.797977526246, -4332.899101147092], [-2408.4979775262914, -4257.19910114708], [-2476.4979775262486, -4161.249101148456]], "destination": 25623998}, {"length": 41.77283083, "source": 368307, "path": [[-2325.0479775263066, -4374.849101147049], [-2291.4479775262284, -4420.749101146981], [-2201.1979775262703, -4544.099101146059]], "destination": 25623997}, {"length": 4.72202387923, "source": 1976882994, "path": [[-1735.197977526415, -1629.9491011473322], [-1712.047977526332, -1615.1491011484609]], "destination": 652950772}, {"length": 36.2679853945, "source": 1976882994, "path": [[-1735.197977526415, -1629.9491011473322], [-1817.397977526225, -1577.9491011471691], [-1913.0479775262277, -1639.5491011458319]], "destination": 1976882949}, {"length": 19.5755848049, "source": 1976882994, "path": [[-1735.197977526415, -1629.9491011473322], [-1831.1479775263706, -1691.299101146626]], "destination": 1976882990}, {"length": 65.9583438296, "source": 652912947, "path": [[-1698.7979775262563, -2489.749101147964], [-1674.0979775262676, -2486.0991011479427], [-1634.8979775262505, -2474.7991011473405], [-1605.0479775262527, -2470.399101145659], [-1574.2979775263955, -2457.149101147138], [-1554.6479775263579, -2441.399101147823], [-1530.6979775262519, -2416.4991011481616], [-1515.5979775263172, -2395.8491011484284], [-1501.4479775263821, -2373.649101148345], [-1493.6979775264092, -2348.9991011480524], [-1486.8479775262954, -2323.3991011473163], [-1489.6979775262942, -2297.999101145365], [-1500.6479775263592, -2286.949101147684], [-1498.4979775263253, -2266.1991011467817]], "destination": 652950841}, {"length": 39.3240991416, "source": 652912947, "path": [[-1698.7979775262563, -2489.749101147964], [-1714.5479775262374, -2525.299101147738], [-1730.6479775263117, -2616.7491011470647], [-1677.147977526383, -2648.9991011473535]], "destination": 652950871}, {"length": 58.3036803489, "source": 652912947, "path": [[-1698.7979775262563, -2489.749101147964], [-1872.9979775262696, -2376.599101147292], [-1982.1479775263829, -2305.399101146577]], "destination": 146739049}, {"length": 12.5149243221, "source": 2504458036, "path": [[-3866.4479775263326, 3657.700898852312], [-3918.797977526367, 3613.2008988545294]], "destination": 2504458034}, {"length": 11.213638854, "source": 370351925, "path": [[3822.752022473619, -3343.349101147197], [3746.1020224736076, -3343.5491011459817]], "destination": 5057169763}, {"length": 54.4207126779, "source": 370351925, "path": [[3822.752022473619, -3343.349101147197], [3799.5020224736995, -3311.9991011467673], [3789.9020224736455, -3295.1991011458404], [3801.0520224736056, -3103.4491011467935]], "destination": 25625563}, {"length": 12.9138793242, "source": 976164662, "path": [[-6619.797977526209, 2355.450898853917], [-6612.247977526353, 2368.3508988519006], [-6609.597977526249, 2412.550898853283]], "destination": 2503974238}, {"length": 25.3440266736, "source": 133128841, "path": [[2414.1020224737185, 1346.6508988528858], [2538.0520224735915, 1426.2508988522882]], "destination": 133128736}, {"length": 31.3194853722, "source": 133128841, "path": [[2414.1020224737185, 1346.6508988528858], [2260.902022473754, 1248.3008988546374]], "destination": 133128728}, {"length": 28.8341403526, "source": 133128841, "path": [[2414.1020224737185, 1346.6508988528858], [2498.752022473738, 1273.7508988536206], [2510.2520224737914, 1236.6008988529131]], "destination": 133128846}, {"length": 18.3939696459, "source": 1976883000, "path": [[-2417.397977526381, -2066.099101146079], [-2327.247977526259, -2008.4491011473915]], "destination": 652939736}, {"length": 15.3405200882, "source": 1976883000, "path": [[-2417.397977526381, -2066.099101146079], [-2491.1979775263935, -2017.0991011454475]], "destination": 1976882945}, {"length": 25.5120317107, "source": 1976883000, "path": [[-2417.397977526381, -2066.099101146079], [-2542.44797752623, -2146.049101146019]], "destination": 146739060}, {"length": 52.7805144221, "source": 3422228281, "path": [[-1915.547977526355, 128.75089885255875], [-1669.2479775262113, -44.64910114876375]], "destination": 3422228394}, {"length": 30.9697708476, "source": 3422228281, "path": [[-1915.547977526355, 128.75089885255875], [-1841.2979775264128, 175.5008988517659], [-1822.8479775264095, 186.50089885241528], [-1864.3979775263554, 215.20089885385119], [-1880.297977526313, 226.8008988544068]], "destination": 4547131002}, {"length": 25.9451779487, "source": 3422228281, "path": [[-1915.547977526355, 128.75089885255875], [-2037.647977526369, 213.3508988535482]], "destination": 4547131006}, {"length": 8.57961461014, "source": 2503919583, "path": [[-3999.4479775262716, 3723.300898851534], [-3987.4479775263703, 3745.9008988527385], [-3976.2479775262705, 3758.550898851354]], "destination": 2503919579}, {"length": 30.3989790178, "source": 2503919583, "path": [[-3999.4479775262716, 3723.300898851534], [-4053.5979775262467, 3726.350898851649], [-4068.397977526228, 3694.050898854329], [-4063.6979775263703, 3649.8008988523625], [-4065.5979775263695, 3627.0008988523728]], "destination": 2503919612}, {"length": 29.3463976194, "source": 2503919583, "path": [[-3999.4479775262716, 3723.300898851534], [-3963.897977526276, 3710.2508988517966], [-3943.1979775264026, 3693.650898853207], [-3937.397977526347, 3679.250898851905], [-3945.697977526308, 3656.6508988542523], [-3972.147977526319, 3640.850898854353], [-3998.197977526319, 3627.0008988523728]], "destination": 2503919613}, {"length": 29.6222889497, "source": 1976883004, "path": [[-2347.5979775262613, -1923.1991011459115], [-2491.1979775263935, -2017.0991011454475]], "destination": 1976882945}, {"length": 30.0335257792, "source": 1976883004, "path": [[-2347.5979775262613, -1923.1991011459115], [-2201.997977526293, -1827.9991011453944]], "destination": 1976882979}, {"length": 15.6679606462, "source": 1976883004, "path": [[-2347.5979775262613, -1923.1991011459115], [-2317.647977526205, -1942.749101147001], [-2272.5479775262957, -1973.4491011469402]], "destination": 1976882997}, {"length": 71.9797627149, "source": 3422228285, "path": [[-1568.6979775262344, 17.800898852726732], [-1631.8979775262753, 61.650898853571334], [-1780.1979775262655, 166.50089885317243], [-1796.1479775263633, 286.0508988540289]], "destination": 470177}, {"length": 20.2319443432, "source": 3422228285, "path": [[-1568.6979775262344, 17.800898852726732], [-1577.7979775262186, 12.150898854201841], [-1601.2479775262545, -2.4491011458849243], [-1669.2479775262113, -44.64910114876375]], "destination": 3422228394}, {"length": 15.1540265275, "source": 3732221759, "path": [[5351.0520224737675, 1941.0508988535469], [5425.602022473663, 1893.750898851465]], "destination": 368272}, {"length": 52.5921247396, "source": 3732221759, "path": [[5351.0520224737675, 1941.0508988535469], [5313.052022473786, 1965.200898851549], [5183.452022473612, 2047.4508988534978], [5092.40202247363, 2105.2508988539385]], "destination": 21378256}, {"length": 51.2203431509, "source": 3732221759, "path": [[5351.0520224737675, 1941.0508988535469], [5472.052022473584, 2017.8008988516183], [5605.502022473674, 2099.200898854292]], "destination": 3732221765}, {"length": 90.7892508909, "source": 3732221762, "path": [[5615.652022473716, 3060.0008988521668], [6043.252022473799, 2764.2008988522093]], "destination": 3732221763}, {"length": 381.037029171, "source": 270186307, "path": [[2243.9520224737385, -2910.699101146719], [2437.652022473591, -2947.24910114752], [3104.2020224736343, -3042.0991011475], [4054.5520224737343, -3178.3991011486987], [4322.602022473588, -3225.2991011461063], [4410.252022473582, -3240.049101147946], [4494.252022473777, -3248.6491011454177], [4600.552022473669, -3254.199101146327], [4789.402022473688, -3256.5491011453673]], "destination": 270177331}, {"length": 134.907179454, "source": 270186307, "path": [[2243.9520224737385, -2910.699101146719], [2572.952022473762, -2936.649101147992], [3152.6520224736123, -3011.5491011457607]], "destination": 25625567}, {"length": 69.8206423456, "source": 3732221764, "path": [[5297.552022473617, 2314.350898853235], [5179.252022473602, 2394.3508988537587], [5132.852022473599, 2366.700898853935], [4965.252022473665, 2484.200898852151]], "destination": 3732221768}, {"length": 148.038709893, "source": 3732221764, "path": [[5297.552022473617, 2314.350898853235], [6043.252022473799, 2764.2008988522093]], "destination": 3732221763}, {"length": 65.7263166086, "source": 3732221764, "path": [[5297.552022473617, 2314.350898853235], [5605.502022473674, 2099.200898854292]], "destination": 3732221765}, {"length": 213.278157522, "source": 3732221765, "path": [[5605.502022473674, 2099.200898854292], [6349.0520224736, 2552.7008988532884], [6043.252022473799, 2764.2008988522093]], "destination": 3732221763}, {"length": 65.7263166086, "source": 3732221765, "path": [[5605.502022473674, 2099.200898854292], [5297.552022473617, 2314.350898853235]], "destination": 3732221764}, {"length": 51.2203431509, "source": 3732221765, "path": [[5605.502022473674, 2099.200898854292], [5472.052022473584, 2017.8008988516183], [5351.0520224737675, 1941.0508988535469]], "destination": 3732221759}, {"length": 100.816424382, "source": 94267208, "path": [[-285.64797752639316, 3818.250898852682], [-838.4479775263021, 3642.000898853581], [-905.647977526236, 3620.600898852189]], "destination": 310745283}, {"length": 39.9853840485, "source": 123748604, "path": [[3320.4520224736634, -3233.9991011482994], [3524.652022473651, -3185.4991011464053], [3575.7520224737327, -3170.0991011476276]], "destination": 25625561}, {"length": 44.5034086763, "source": 123748604, "path": [[3320.4520224736634, -3233.9991011482994], [3429.502022473718, -3092.9491011484342], [3459.0020224736227, -3055.849101148311]], "destination": 270185394}, {"length": 23.9144972685, "source": 123748604, "path": [[3320.4520224736634, -3233.9991011482994], [3203.7520224736936, -3158.6991011458567]], "destination": 2689489685}, {"length": 22.0229920066, "source": 654050365, "path": [[-2597.147977526415, -1367.4991011463078], [-2593.0479775262415, -1378.6991011457417], [-2664.097977526314, -1422.8491011465394], [-2639.847977526255, -1439.6991011480509]], "destination": 654050361}, {"length": 29.0114354817, "source": 654050365, "path": [[-2597.147977526415, -1367.4991011463078], [-2451.747977526342, -1278.7991011471433]], "destination": 654050371}, {"length": 2.11857090022, "source": 654050365, "path": [[-2597.147977526415, -1367.4991011463078], [-2609.397977526351, -1362.3991011471048]], "destination": 654050366}, {"length": 75.3155001911, "source": 3732221774, "path": [[4506.902022473724, 2234.550898851495], [4563.152022473593, 2270.4008988512214], [4869.252022473791, 2065.7508988541904]], "destination": 3732221778}, {"length": 44.2070115617, "source": 3732221774, "path": [[4506.902022473724, 2234.550898851495], [4425.102022473704, 2185.150898853294], [4558.752022473689, 2095.300898851349]], "destination": 3732250532}, {"length": 64.1254937271, "source": 3732221774, "path": [[4506.902022473724, 2234.550898851495], [4811.352022473736, 2027.1508988543019]], "destination": 3732221775}, {"length": 16.1745763159, "source": 3732221775, "path": [[4811.352022473736, 2027.1508988543019], [4845.002022473732, 2005.6508988517407], [4890.452022473734, 1976.3508988539513]], "destination": 3732221776}, {"length": 12.0609105499, "source": 3732221775, "path": [[4811.352022473736, 2027.1508988543019], [4869.252022473791, 2065.7508988541904]], "destination": 3732221778}, {"length": 52.3944474415, "source": 3732221775, "path": [[4811.352022473736, 2027.1508988543019], [4733.552022473608, 1977.7508988525483], [4558.752022473689, 2095.300898851349]], "destination": 3732250532}, {"length": 64.1254937271, "source": 3732221775, "path": [[4811.352022473736, 2027.1508988543019], [4506.902022473724, 2234.550898851495]], "destination": 3732221774}, {"length": 131.832567047, "source": 3732221776, "path": [[4890.452022473734, 1976.3508988539513], [4282.702022473605, 1588.5508988517927], [4243.702022473705, 1563.6508988521314]], "destination": 36487395}, {"length": 16.1745763159, "source": 3732221776, "path": [[4890.452022473734, 1976.3508988539513], [4845.002022473732, 2005.6508988517407], [4811.352022473736, 2027.1508988543019]], "destination": 3732221775}, {"length": 10.616278627, "source": 2561299768, "path": [[-3801.6479775262455, -2040.04910114719], [-3824.9479775263053, -2047.9491011471396], [-3860.197977526347, -2067.7491011475977]], "destination": 2561299770}, {"length": 75.3152038867, "source": 2561299768, "path": [[-3801.6479775262455, -2040.04910114719], [-3571.34797752634, -2213.2991011467593], [-3453.247977526219, -2289.049101147356]], "destination": 652907478}, {"length": 38.5591120052, "source": 2561299768, "path": [[-3801.6479775262455, -2040.04910114719], [-3866.547977526391, -1986.499101146677], [-3919.59797752639, -1942.6991011464168], [-3928.9979775263273, -1894.1991011480752]], "destination": 4453288654}, {"length": 75.3155001911, "source": 3732221778, "path": [[4869.252022473791, 2065.7508988541904], [4563.152022473593, 2270.4008988512214], [4506.902022473724, 2234.550898851495]], "destination": 3732221774}, {"length": 12.0609105499, "source": 3732221778, "path": [[4869.252022473791, 2065.7508988541904], [4811.352022473736, 2027.1508988543019]], "destination": 3732221775}, {"length": 48.198457942, "source": 3732221779, "path": [[3523.002022473687, 1718.450898852808], [3467.052022473771, 1756.2008988534217], [3354.0520224737415, 1683.7508988523098], [3417.902022473607, 1640.6508988531243]], "destination": 3732221780}, {"length": 42.9543365326, "source": 3732221779, "path": [[3523.002022473687, 1718.450898852808], [3574.352022473581, 1683.800898852894], [3461.3520224737736, 1611.3508988517822], [3417.902022473607, 1640.6508988531243]], "destination": 3732221780}, {"length": 136.011492862, "source": 3732221779, "path": [[3523.002022473687, 1718.450898852808], [3991.802022473623, 2042.5508988530794], [4146.702022473692, 2140.40089885259], [4171.4020224736805, 2156.5008988524423]], "destination": 3732222526}, {"length": 54.0717230368, "source": 3732221780, "path": [[3417.902022473607, 1640.6508988531243], [3347.1520224737096, 1596.8008988522797], [3147.552022473743, 1474.9008988523826]], "destination": 133128921}, {"length": 48.198457942, "source": 3732221780, "path": [[3417.902022473607, 1640.6508988531243], [3354.0520224737415, 1683.7508988523098], [3467.052022473771, 1756.2008988534217], [3523.002022473687, 1718.450898852808]], "destination": 3732221779}, {"length": 42.9543365326, "source": 3732221780, "path": [[3417.902022473607, 1640.6508988531243], [3461.3520224737736, 1611.3508988517822], [3574.352022473581, 1683.800898852894], [3523.002022473687, 1718.450898852808]], "destination": 3732221779}, {"length": 51.8181005825, "source": 133130069, "path": [[-146.54797752622352, -700.2991011475501], [-54.74797752635929, -703.9991011481561], [7.70202247379892, -710.3991011483402], [86.15202247375109, -714.0991011453934], [206.45202247360217, -715.8491011480805]], "destination": 133129360}, {"length": 36.7922263951, "source": 133130069, "path": [[-146.54797752622352, -700.2991011475501], [47.15202247362882, -805.7991011476417]], "destination": 133130099}, {"length": 63.2546455829, "source": 133130069, "path": [[-146.54797752622352, -700.2991011475501], [-445.0479775262028, -494.54910114832273]], "destination": 3422228483}, {"length": 73.6605140699, "source": 133130069, "path": [[-146.54797752622352, -700.2991011475501], [-109.64797752621713, -675.7991011454578], [-57.297977526404864, -662.649101148105], [-14.347977526307787, -652.8991011478524], [30.102022473776913, -633.2491011455943], [57.15202247369433, -603.8991011472206], [78.55202247375459, -577.549101148378], [107.9520224736008, -534.3991011486082], [115.40202247362075, -499.8491011463102], [111.85202247365744, -451.5491011467532]], "destination": 133130095}, {"length": 37.4546086075, "source": 146739030, "path": [[-2491.847977526218, -2351.7991011487993], [-2553.8979775263647, -2322.0991011463357], [-2620.847977526264, -2286.199101146025], [-2689.597977526326, -2245.0991011453425]], "destination": 529916921}, {"length": 43.8837010038, "source": 146739030, "path": [[-2491.847977526218, -2351.7991011487993], [-2470.3479775263213, -2322.8991011485787], [-2440.6979775262184, -2276.299101147572], [-2443.447977526381, -2251.299101146742], [-2453.7979775263175, -2231.4991011462835], [-2465.097977526254, -2214.0491011484187], [-2510.547977526256, -2174.399101146918]], "destination": 930672389}, {"length": 86.835305744, "source": 146739030, "path": [[-2491.847977526218, -2351.7991011487993], [-2328.0979775262, -2402.2491011486127], [-2211.447977526371, -2419.599101145309], [-2151.597977526398, -2408.699101145828], [-1982.1479775263829, -2305.399101146577]], "destination": 146739049}, {"length": 4.58254028832, "source": 1223798073, "path": [[2238.5020224737764, 1233.900898853335], [2260.902022473754, 1248.3008988546374]], "destination": 133128728}, {"length": 42.0555980399, "source": 1223798073, "path": [[2238.5020224737764, 1233.900898853335], [2320.952022473621, 1157.450898851664], [2371.2020224737616, 1068.0008988543932]], "destination": 133128800}, {"length": 18.645086837, "source": 1223798073, "path": [[2238.5020224737764, 1233.900898853335], [2147.302022473596, 1175.3508988512351]], "destination": 133128715}, {"length": 52.9252900685, "source": 25625572, "path": [[3109.2520224735854, -3118.799101148539], [2756.402022473736, -3066.2991011460863]], "destination": 4616537}, {"length": 17.5874133563, "source": 3732221786, "path": [[3275.1520224736373, 1386.5008988531713], [3359.252022473669, 1330.0008988537115]], "destination": 133128769}, {"length": 25.2511336129, "source": 3732221786, "path": [[3275.1520224736373, 1386.5008988531713], [3252.4020224737883, 1371.0508988538095], [3180.302022473658, 1416.8008988519887], [3207.9520224737034, 1435.5508988543875]], "destination": 3732221785}, {"length": 32.1791392435, "source": 3732221786, "path": [[3275.1520224736373, 1386.5008988531713], [3319.102022473652, 1416.5008988520356], [3247.002022473744, 1462.3008988543518], [3207.9520224737034, 1435.5508988543875]], "destination": 3732221785}, {"length": 8.54049615543, "source": 721620623, "path": [[1752.1520224736964, -1393.7991011481188], [1696.852022473605, -1381.4991011464883]], "destination": 1365433436}, {"length": 36.9193876678, "source": 721620623, "path": [[1752.1520224736964, -1393.7991011481188], [1724.902022473662, -1429.1491011455548], [1653.152022473625, -1522.399101148153], [1638.152022473749, -1541.8991011486582]], "destination": 1365433469}, {"length": 25.6792176729, "source": 721620623, "path": [[1752.1520224736964, -1393.7991011481188], [1845.0520224737588, -1371.5991011480355], [1921.5020224736534, -1375.499101147426]], "destination": 721620614}, {"length": 85.2710450245, "source": 204830556, "path": [[1468.6520224735932, 1973.0008988538827], [1434.5020224737493, 1951.150898854337], [1111.0520224737463, 1743.9008988517912], [1051.1520224736337, 1705.5008988542397]], "destination": 160020757}, {"length": 52.8508513014, "source": 204830556, "path": [[1468.6520224735932, 1973.0008988538827], [1514.7520224736422, 1941.3008988529157], [1718.202022473747, 1801.2008988534944]], "destination": 204830550}, {"length": 70.5837228233, "source": 133129768, "path": [[1351.002022473624, 663.0008988537384], [1569.152022473652, 804.1508988512192], [1688.8520224735971, 790.4508988545444], [1716.7020224737594, 821.6008988526369]], "destination": 2705349815}, {"length": 109.352694208, "source": 133129768, "path": [[1351.002022473624, 663.0008988537384], [1433.1520224737383, 620.5008988544591], [1487.9520224737596, 602.1508988531821], [1545.7020224736161, 586.500898851483], [1609.2020224736102, 578.1508988533801], [1664.2020224737487, 575.3008988520492], [1720.2020224735825, 574.1008988522367], [1786.5520224737975, 575.2008988544333], [1853.0520224737668, 583.1508988514145], [1907.3020224738002, 591.7008988518546], [1967.3520224736674, 606.2008988543255], [2003.0020224737211, 620.7008988532436], [2039.9020224737274, 640.2008988537489]], "destination": 1224778213}, {"length": 19.2693203976, "source": 133129768, "path": [[1351.002022473624, 663.0008988537384], [1257.102022473644, 602.2508988543507]], "destination": 133129309}, {"length": 30.181512752, "source": 368272, "path": [[5425.602022473663, 1893.750898851465], [5305.102022473696, 1917.1008988543292], [5225.402022473791, 1909.0008988520424]], "destination": 3772612395}, {"length": 32.3427615038, "source": 368272, "path": [[5425.602022473663, 1893.750898851465], [5589.052022473728, 1795.85089885137]], "destination": 130097196}, {"length": 54.3887706296, "source": 368272, "path": [[5425.602022473663, 1893.750898851465], [5543.252022473633, 1912.6008988514798], [5708.45202247372, 1939.050898851491], [5786.752022473695, 1951.6008988524902]], "destination": 130097205}, {"length": 15.1540265275, "source": 368272, "path": [[5425.602022473663, 1893.750898851465], [5351.0520224737675, 1941.0508988535469]], "destination": 3732221759}, {"length": 44.9092761337, "source": 133128776, "path": [[2682.0520224737356, 1792.6508988530543], [2902.3520224737977, 1933.2508988512132]], "destination": 3734288098}, {"length": 70.7952301411, "source": 133128776, "path": [[2682.0520224737356, 1792.6508988530543], [2334.8520224737435, 1570.9508988521748]], "destination": 133128739}, {"length": 43.6069969849, "source": 133128776, "path": [[2682.0520224737356, 1792.6508988530543], [2884.6520224736773, 1648.850898853027]], "destination": 133128773}, {"length": 55.4965610371, "source": 133128776, "path": [[2682.0520224737356, 1792.6508988530543], [2418.502022473623, 1972.1008988540234]], "destination": 133128970}, {"length": 75.6613675266, "source": 133128776, "path": [[2682.0520224737356, 1792.6508988530543], [2507.9520224737807, 1836.0008988516086], [2373.102022473761, 1854.6508988528387], [2272.302022473749, 1851.2008988516016], [2181.602022473639, 1840.350898852705]], "destination": 133129122}, {"length": 5.13574732416, "source": 3905019749, "path": [[-6375.4979775263455, 4333.900898853216], [-6390.997977526292, 4324.400898852332], [-6401.147977526333, 4318.150898853901]], "destination": 2589554878}, {"length": 128.927523072, "source": 141567847, "path": [[-4631.247977526343, 3173.9008988544983], [-4174.9979775262955, 2826.2008988519938], [-4161.897977526419, 2793.800898853505], [-4182.747977526269, 2754.8508988530784], [-4229.447977526224, 2721.250898851224]], "destination": 675140823}, {"length": 58.3036803489, "source": 146739049, "path": [[-1982.1479775263829, -2305.399101146577], [-1872.9979775262696, -2376.599101147292], [-1698.7979775262563, -2489.749101147964]], "destination": 652912947}, {"length": 15.944065951, "source": 146739049, "path": [[-1982.1479775263829, -2305.399101146577], [-2064.247977526357, -2258.249101146248]], "destination": 146739052}, {"length": 86.835305744, "source": 146739049, "path": [[-1982.1479775263829, -2305.399101146577], [-2151.597977526398, -2408.699101145828], [-2211.447977526371, -2419.599101145309], [-2328.0979775262, -2402.2491011486127], [-2491.847977526218, -2351.7991011487993]], "destination": 146739030}, {"length": 93.8960510383, "source": 3905019754, "path": [[-4348.597977526403, 4154.050898854677], [-4804.547977526275, 3914.1508988542737], [-4767.897977526303, 3884.700898851179]], "destination": 3905020276}, {"length": 10.4143779553, "source": 185876331, "path": [[-3642.9979775263187, -192.14910114584427], [-3688.697977526356, -228.04910114615495]], "destination": 304991212}, {"length": 113.503638253, "source": 185876331, "path": [[-3642.9979775263187, -192.14910114584427], [-3179.84797752624, -540.4991011452864], [-3132.2479775262036, -576.2991011479812]], "destination": 185876212}, {"length": 38.7185781636, "source": 146739052, "path": [[-2064.247977526357, -2258.249101146248], [-2179.047977526327, -2215.4991011476], [-2300.8479775263877, -2180.7991011471017]], "destination": 146739056}, {"length": 15.944065951, "source": 146739052, "path": [[-2064.247977526357, -2258.249101146248], [-1982.1479775263829, -2305.399101146577]], "destination": 146739049}, {"length": 56.5330920928, "source": 146739052, "path": [[-2064.247977526357, -2258.249101146248], [-2074.197977526282, -2210.5491011465974], [-2082.6479775262196, -2154.7991011487966], [-2085.497977526218, -2107.8491011472524], [-2082.0479775263134, -2070.0991011466385], [-2070.447977526202, -2025.4991011476875], [-2063.197977526299, -2006.0991011483509]], "destination": 652939743}, {"length": 39.8325134789, "source": 721620626, "path": [[2309.1020224736967, -1477.0991011481271], [2413.7520224736254, -1311.7491011485072]], "destination": 1298263464}, {"length": 17.5139791593, "source": 721620626, "path": [[2309.1020224736967, -1477.0991011481271], [2191.302022473751, -1463.0991011479466]], "destination": 1365433458}, {"length": 32.4473696833, "source": 721620626, "path": [[2309.1020224736967, -1477.0991011481271], [2238.902022473788, -1615.4991011454456]], "destination": 2916316459}, {"length": 63.3612206976, "source": 133130095, "path": [[111.85202247365744, -451.5491011467532], [88.00202247361, -395.64910114719964], [34.45202247376322, -356.9491011461423], [46.60202247364076, -252.99910114640056], [27.252022473778226, -183.89910114535724]], "destination": 654054737}, {"length": 24.2707771838, "source": 133130095, "path": [[111.85202247365744, -451.5491011467532], [139.75202247373807, -540.749101148208], [148.60202247368727, -557.8491011455355]], "destination": 4468710860}, {"length": 73.6605140699, "source": 133130095, "path": [[111.85202247365744, -451.5491011467532], [115.40202247362075, -499.8491011463102], [107.9520224736008, -534.3991011486082], [78.55202247375459, -577.549101148378], [57.15202247369433, -603.8991011472206], [30.102022473776913, -633.2491011455943], [-14.347977526307787, -652.8991011478524], [-57.297977526404864, -662.649101148105], [-109.64797752621713, -675.7991011454578], [-146.54797752622352, -700.2991011475501]], "destination": 133130069}, {"length": 33.7722041649, "source": 4389621616, "path": [[2534.802022473581, 521.9508988538735], [2697.6020224736, 629.6008988542212]], "destination": 2705349832}, {"length": 8.99034030565, "source": 4389621616, "path": [[2534.802022473581, 521.9508988538735], [2491.452022473695, 493.30089885302186]], "destination": 2705349849}, {"length": 79.5836711366, "source": 277062812, "path": [[-5649.647977526318, 1683.1508988524035], [-5680.347977526257, 1664.4508988541418], [-6048.6979775262735, 1440.0008988531]], "destination": 185859373}, {"length": 31.4720229208, "source": 133130099, "path": [[47.15202247362882, -805.7991011476417], [105.15202247374233, -759.5991011477565], [164.25202247360994, -724.1491011455992], [206.45202247360217, -715.8491011480805]], "destination": 133129360}, {"length": 142.278101001, "source": 133130099, "path": [[47.15202247362882, -805.7991011476417], [342.2020224737032, -1008.6991011455382], [739.2020224736839, -762.4491011455348]], "destination": 160028423}, {"length": 36.7922263951, "source": 133130099, "path": [[47.15202247362882, -805.7991011476417], [-146.54797752622352, -700.2991011475501]], "destination": 133130069}, {"length": 88.2020208509, "source": 133130099, "path": [[47.15202247362882, -805.7991011476417], [177.85202247377896, -804.4991011466607], [270.65202247378295, -800.4491011455173], [403.7520224737801, -781.5991011455026], [493.8020224736217, -772.1991011457874], [563.7020224737998, -757.3991011469161], [629.0020224737348, -728.8991011478174]], "destination": 133130127}, {"length": 25.5120317107, "source": 146739060, "path": [[-2542.44797752623, -2146.049101146019], [-2417.397977526381, -2066.099101146079]], "destination": 1976883000}, {"length": 36.8462601891, "source": 146739060, "path": [[-2542.44797752623, -2146.049101146019], [-2586.0979775262917, -2116.449101148277], [-2582.6479775263865, -2076.8991011479443], [-2491.1979775263935, -2017.0991011454475]], "destination": 1976882945}, {"length": 7.84467738071, "source": 146739060, "path": [[-2542.44797752623, -2146.049101146019], [-2510.547977526256, -2174.399101146918]], "destination": 930672389}, {"length": 30.8031047607, "source": 146739060, "path": [[-2542.44797752623, -2146.049101146019], [-2563.547977526337, -2159.5491011474624], [-2689.597977526326, -2245.0991011453425]], "destination": 529916921}, {"length": 24.940380486, "source": 141569001, "path": [[-2767.49797752629, 2045.9508988537323], [-2802.9479775262266, 2070.800898852809], [-2884.097977526201, 2127.750898853975]], "destination": 776293699}, {"length": 83.8100841743, "source": 141569001, "path": [[-2767.49797752629, 2045.9508988537323], [-2723.9479775262866, 2089.8508988516087], [-2454.2479775262473, 2361.450898852979]], "destination": 2557088517}, {"length": 44.237144763, "source": 2463876756, "path": [[100.75202247361581, 3016.4008988542437], [-1.297977526348859, 2949.8008988539937], [-113.84797752622688, 2876.3008988512693]], "destination": 2463876763}, {"length": 49.7403412493, "source": 2463876756, "path": [[100.75202247361581, 3016.4008988542437], [126.95202247359205, 3001.150898853666], [-88.39797752635548, 2859.1008988527733]], "destination": 2463876764}, {"length": 18.3378115211, "source": 2463876756, "path": [[100.75202247361581, 3016.4008988542437], [164.20202247369176, 3057.800898851326], [189.75202247362154, 3074.450898854053]], "destination": 2463876751}, {"length": 42.7551075303, "source": 3732221819, "path": [[4028.2520224736995, 2521.1508988540745], [3820.90202247376, 2385.70089885215]], "destination": 3732222529}, {"length": 11.4808947994, "source": 3732221819, "path": [[4028.2520224736995, 2521.1508988540745], [4073.3520224736085, 2548.250898854576], [4085.8520224738013, 2556.200898851557]], "destination": 3422342747}, {"length": 17.7320988613, "source": 3732221819, "path": [[4028.2520224736995, 2521.1508988540745], [4112.202022473754, 2463.6508988535866]], "destination": 3732221820}, {"length": 16.3255822801, "source": 3732221819, "path": [[4028.2520224736995, 2521.1508988540745], [3950.9020224737233, 2574.050898854097]], "destination": 3732221821}, {"length": 17.7320988613, "source": 3732221820, "path": [[4112.202022473754, 2463.6508988535866], [4028.2520224736995, 2521.1508988540745]], "destination": 3732221819}, {"length": 54.6333409635, "source": 3732221820, "path": [[4112.202022473754, 2463.6508988535866], [4370.952022473729, 2286.550898851658]], "destination": 3732222525}, {"length": 19.8724097971, "source": 3732221820, "path": [[4112.202022473754, 2463.6508988535866], [4192.952022473717, 2520.6008988511994], [4205.502022473606, 2528.5508988517336]], "destination": 3422342758}, {"length": 41.9020305504, "source": 3732221820, "path": [[4112.202022473754, 2463.6508988535866], [3921.1520224737837, 2323.300898851244]], "destination": 3732222527}, {"length": 36.0219208344, "source": 21346796, "path": [[-2868.4479775262785, 1726.0008988522202], [-2801.597977526216, 1661.5508988522265], [-2729.697977526202, 1592.2008988518144]], "destination": 3422228216}, {"length": 26.9797077744, "source": 21346796, "path": [[-2868.4479775262785, 1726.0008988522202], [-2984.4479775262835, 1820.300898852878]], "destination": 661235}, {"length": 25.7234731519, "source": 21346796, "path": [[-2868.4479775262785, 1726.0008988522202], [-2986.597977526317, 1640.3508988531712]], "destination": 2386532740}, {"length": 43.9638515324, "source": 133129935, "path": [[-982.2979775262475, 66.85089885394291], [-941.7979775263597, 114.95089885471543], [-900.047977526297, 193.65089885425846], [-860.6979775263035, 247.05089885301845]], "destination": 133128576}, {"length": 10.9926877122, "source": 133129935, "path": [[-982.2979775262475, 66.85089885394291], [-930.8479775262946, 45.90089885425641], [-918.3979775262419, 40.85089885208504]], "destination": 133129932}, {"length": 11.5704444365, "source": 133129935, "path": [[-982.2979775262475, 66.85089885394291], [-1040.247977526221, 31.450898852369846]], "destination": 3491466845}, {"length": 32.3576219582, "source": 260584768, "path": [[999.9520224737157, -3381.5491011459644], [1024.2020224737746, -3357.349101147378], [1060.1020224736412, -3332.199101148348], [1113.602022473792, -3312.899101146627], [1176.6020224737163, -3306.8991011475646]], "destination": 721638470}, {"length": 47.1481318371, "source": 260584768, "path": [[999.9520224737157, -3381.5491011459644], [1321.2520224736845, -3398.0491011469385]], "destination": 260584799}, {"length": 11.1539304983, "source": 4508646379, "path": [[6661.702022473737, -2336.399101146469], [6662.352022473783, -2307.0991011486794], [6662.702022473654, -2297.8491011471647], [6663.002022473607, -2286.249101146609]], "destination": 4508646376}, {"length": 6.41850585889, "source": 4508646379, "path": [[6661.702022473737, -2336.399101146469], [6617.85202247378, -2335.49910114661]], "destination": 2705350396}, {"length": 6.79169965449, "source": 4508646379, "path": [[6661.702022473737, -2336.399101146469], [6708.1020224737385, -2337.3991011474973]], "destination": 2705350398}, {"length": 25.490448787, "source": 141567054, "path": [[-5307.897977526288, 3702.4008988524315], [-5339.247977526274, 3684.900898853982], [-5440.79797752639, 3628.300898853354]], "destination": 675140747}, {"length": 33.9729070042, "source": 141567054, "path": [[-5307.897977526288, 3702.4008988524315], [-5268.097977526365, 3671.8508988542453], [-5156.747977526299, 3586.450898854565]], "destination": 141567301}, {"length": 84.1787878778, "source": 141567054, "path": [[-5307.897977526288, 3702.4008988524315], [-5274.247977526292, 3719.250898853943], [-4857.147977526343, 3937.5508988541696]], "destination": 141566590}, {"length": 12.7969300189, "source": 146739080, "path": [[-2044.547977526401, -1747.4991011461327], [-1985.4979775262293, -1789.9491011483804]], "destination": 1976882985}, {"length": 29.9606398489, "source": 146739080, "path": [[-2044.547977526401, -1747.4991011461327], [-2119.647977526284, -1793.3991011460648], [-2154.497977526315, -1796.8991011478863], [-2201.997977526293, -1827.9991011453944]], "destination": 1976882979}, {"length": 4.16635692705, "source": 146739080, "path": [[-2044.547977526401, -1747.4991011461327], [-2063.297977526357, -1733.3991011483363]], "destination": 146739084}, {"length": 2.50456871326, "source": 654050367, "path": [[-2677.147977526273, -1322.649101147988], [-2664.847977526419, -1314.7991011486226]], "destination": 5044108737}, {"length": 29.1491974374, "source": 654050367, "path": [[-2677.147977526273, -1322.649101147988], [-2819.9479775263826, -1414.0491011467304]], "destination": 654050370}, {"length": 13.2814635545, "source": 654050367, "path": [[-2677.147977526273, -1322.649101147988], [-2609.397977526351, -1362.3991011471048]], "destination": 654050366}, {"length": 33.7591250775, "source": 305911690, "path": [[-2759.1979775263285, -1841.9491011485434], [-2921.347977526301, -1733.9491011476582]], "destination": 146696196}, {"length": 25.2734525656, "source": 305911690, "path": [[-2759.1979775263285, -1841.9491011485434], [-2836.0479775262347, -1888.4491011483817], [-2849.947977526357, -1896.8991011476533], [-2886.2979775263752, -1918.8991011453993]], "destination": 654057813}, {"length": 35.5251380506, "source": 305911690, "path": [[-2759.1979775263285, -1841.9491011485434], [-2587.797977526396, -1955.099101145663]], "destination": 470190}, {"length": 163.48958306, "source": 185876467, "path": [[-3334.9979775263437, 64.25089885198076], [-3571.84797752641, 245.65089885442148], [-4045.54797752632, 608.8508988533192], [-4063.2479775262186, 621.8008988518875]], "destination": 277572138}, {"length": 73.1202661692, "source": 185876467, "path": [[-3334.9979775263437, 64.25089885198076], [-3390.797977526283, 37.70089885435368], [-3642.9979775263187, -192.14910114584427]], "destination": 185876331}, {"length": 7.33525974273, "source": 185876467, "path": [[-3334.9979775263437, 64.25089885198076], [-3293.647977526293, 82.90089885321095]], "destination": 4958488598}, {"length": 4.16635692705, "source": 146739084, "path": [[-2063.297977526357, -1733.3991011483363], [-2044.547977526401, -1747.4991011461327]], "destination": 146739080}, {"length": 21.3909226112, "source": 146739084, "path": [[-2063.297977526357, -1733.3991011483363], [-2133.0479775263366, -1781.0491011474028], [-2167.8979775263674, -1761.6491011480662]], "destination": 146739092}, {"length": 30.3168083818, "source": 146739084, "path": [[-2063.297977526357, -1733.3991011483363], [-1915.2979775263202, -1640.9991011485658], [-1913.0479775262277, -1639.5491011458319]], "destination": 1976882949}, {"length": 31.7626127038, "source": 2561299778, "path": [[-3993.3479775262626, -2104.299101148399], [-4017.5479775264034, -2036.649101146537], [-4044.4979775262623, -1965.4991011464062]], "destination": 431171618}, {"length": 58.2526331681, "source": 2561299778, "path": [[-3993.3479775262626, -2104.299101148399], [-4165.397977526241, -1990.3491011454832], [-4266.397977526371, -1913.8491011467806]], "destination": 34818484}, {"length": 28.3810899253, "source": 1976882932, "path": [[-2124.597977526399, -1878.8991011469136], [-1985.4979775262293, -1789.9491011483804]], "destination": 1976882985}, {"length": 16.0114734805, "source": 1976882932, "path": [[-2124.597977526399, -1878.8991011469136], [-2201.997977526293, -1827.9991011453944]], "destination": 1976882979}, {"length": 30.1772248151, "source": 1976882932, "path": [[-2124.597977526399, -1878.8991011469136], [-2272.5479775262957, -1973.4491011469402]], "destination": 1976882997}, {"length": 62.3846871904, "source": 133130127, "path": [[629.0020224737348, -728.8991011478174], [513.0020224737298, -739.0991011462233], [402.7020224737221, -737.5991011464578], [328.20202247374476, -730.0491011470456], [206.45202247360217, -715.8491011480805]], "destination": 133129360}, {"length": 88.2020208509, "source": 133130127, "path": [[629.0020224737348, -728.8991011478174], [563.7020224737998, -757.3991011469161], [493.8020224736217, -772.1991011457874], [403.7520224737801, -781.5991011455026], [270.65202247378295, -800.4491011455173], [177.85202247377896, -804.4991011466607], [47.15202247362882, -805.7991011476417]], "destination": 133130099}, {"length": 8.99735500684, "source": 133130127, "path": [[629.0020224737348, -728.8991011478174], [676.8020224736659, -703.4491011452815]], "destination": 133130131}, {"length": 50.2045133293, "source": 2463876760, "path": [[-222.49797752627032, 2949.700898852825], [-9.84797752634492, 3091.500898854349], [16.902022473619382, 3071.6508988533064]], "destination": 2463876752}, {"length": 50.8478968726, "source": 2463876760, "path": [[-222.49797752627032, 2949.700898852825], [-441.1979775262864, 2805.9008988527976], [-414.147977526369, 2788.0508988538113]], "destination": 2463876769}, {"length": 6.21659320238, "source": 2463876760, "path": [[-222.49797752627032, 2949.700898852825], [-248.0479775262001, 2966.9508988519055], [-252.14797752637352, 2969.700898852068]], "destination": 249169172}, {"length": 5.619664391, "source": 2463876760, "path": [[-222.49797752627032, 2949.700898852825], [-195.69797752638783, 2931.6008988544695]], "destination": 2463876761}, {"length": 99.0630649765, "source": 1298261907, "path": [[1605.102022473659, -1116.2991011453016], [992.8520224737891, -926.0991011466047]], "destination": 34845763}, {"length": 22.0078269441, "source": 1298261907, "path": [[1605.102022473659, -1116.2991011453016], [1539.802022473724, -1205.449101146172]], "destination": 1364890639}, {"length": 94.551086945, "source": 146739092, "path": [[-2167.8979775263674, -1761.6491011480662], [-1813.8479775262617, -1537.5491011475617], [-1702.5979775262545, -1608.4991011453553]], "destination": 930672228}, {"length": 21.3909226112, "source": 146739092, "path": [[-2167.8979775263674, -1761.6491011480662], [-2133.0479775263366, -1781.0491011474028], [-2063.297977526357, -1733.3991011483363]], "destination": 146739084}, {"length": 114.714546885, "source": 146739092, "path": [[-2167.8979775263674, -1761.6491011480662], [-2608.197977526316, -2043.5491011454587], [-2649.347977526251, -2014.8491011475755], [-2587.797977526396, -1955.099101145663]], "destination": 470190}, {"length": 55.6107743122, "source": 160023534, "path": [[-1351.747977526241, 167.8008988541535], [-1078.0479775263086, 341.3008988530919]], "destination": 3491466827}, {"length": 18.07516776, "source": 160023534, "path": [[-1351.747977526241, 167.8008988541535], [-1440.6979775263285, 111.40089885230964]], "destination": 36485756}, {"length": 53.6105172585, "source": 160023534, "path": [[-1351.747977526241, 167.8008988541535], [-1171.8979775263706, 12.600898852355158], [-1129.59797752632, -23.899101147861757]], "destination": 160008334}, {"length": 322.113258901, "source": 241583087, "path": [[-4608.247977526236, 1239.3508988530755], [-3622.99797752641, 494.45089885225], [-3242.997977526363, 107.20089885296602]], "destination": 4958488596}, {"length": 9.77966591874, "source": 305339717, "path": [[-6599.0479775264175, -2723.049101145847], [-6575.097977526312, -2720.2991011456843], [-6533.197977526273, -2715.4991011464344]], "destination": 34816434}, {"length": 38.7185781636, "source": 146739056, "path": [[-2300.8479775263877, -2180.7991011471017], [-2179.047977526327, -2215.4991011476], [-2064.247977526357, -2258.249101146248]], "destination": 146739052}, {"length": 26.8243926825, "source": 146739056, "path": [[-2300.8479775263877, -2180.7991011471017], [-2307.497977526385, -2146.149101147188], [-2304.2479775263746, -2118.6991011461487], [-2294.0979775263327, -2096.2491011466964], [-2276.4979775262705, -2063.49910114767]], "destination": 652939740}, {"length": 30.8528530804, "source": 146739056, "path": [[-2300.8479775263877, -2180.7991011471017], [-2400.5979775263418, -2171.549101145587], [-2458.1479775263037, -2171.3991011473863], [-2510.547977526256, -2174.399101146918]], "destination": 930672389}, {"length": 16.7834459865, "source": 3732250530, "path": [[3174.952022473754, 3354.750898854064], [3090.5520224737693, 3405.850898854368]], "destination": 2705349524}, {"length": 9.05676060932, "source": 3732250530, "path": [[3174.952022473754, 3354.750898854064], [3221.352022473756, 3381.700898852813]], "destination": 654070890}, {"length": 45.4464153442, "source": 3732250530, "path": [[3174.952022473754, 3354.750898854064], [3388.302022473644, 3206.250898852403]], "destination": 654070636}, {"length": 6.4848614022, "source": 932824995, "path": [[-4991.447977526375, -343.2991011464992], [-4991.397977526235, -342.9491011459618], [-4988.497977526318, -313.84910114695685]], "destination": 34818437}, {"length": 12.0425073301, "source": 3732250532, "path": [[4558.752022473689, 2095.300898851349], [4542.052022473708, 2085.250898854696], [4498.652022473681, 2058.3008988523943]], "destination": 167919126}, {"length": 44.2070115617, "source": 3732250532, "path": [[4558.752022473689, 2095.300898851349], [4425.102022473704, 2185.150898853294], [4506.902022473724, 2234.550898851495]], "destination": 3732221774}, {"length": 52.3944474415, "source": 3732250532, "path": [[4558.752022473689, 2095.300898851349], [4733.552022473608, 1977.7508988525483], [4811.352022473736, 2027.1508988543019]], "destination": 3732221775}, {"length": 173.808276116, "source": 158845254, "path": [[-2939.0979775263395, 3862.55089885168], [-2912.09797752634, 3831.750898854125], [-2354.69797752641, 3220.150898851415], [-2328.9979775262814, 3192.0008988528534]], "destination": 243647236}, {"length": 15.433889882, "source": 158845254, "path": [[-2939.0979775263395, 3862.55089885168], [-2982.5479775262843, 3840.0508988516435], [-3022.2979775262893, 3819.9008988542005]], "destination": 94268670}, {"length": 41.5847415959, "source": 133130150, "path": [[733.35202247371, -424.9491011485418], [755.2020224736999, -372.0491011485194], [766.8520224737297, -335.09910114659647], [863.202022473697, -265.0991011456938]], "destination": 133129321}, {"length": 63.9807169717, "source": 133130150, "path": [[733.35202247371, -424.9491011485418], [745.5020224735875, -545.299101148089], [743.0520224736003, -586.6491011481401], [727.2520224737011, -634.0491011478377], [704.1520224737585, -672.9491011476796], [676.8020224736659, -703.4491011452815]], "destination": 133130131}, {"length": 129.807202209, "source": 133130150, "path": [[733.35202247371, -424.9491011485418], [710.4520224736622, -366.94910114576373], [675.752022473608, -308.14910114784766], [559.9520224737198, -247.19910114612276], [456.45202247368564, -211.39910114698068], [347.70202247358384, -188.9991011481129], [160.30202247363513, -180.24910114533554], [27.252022473778226, -183.89910114535724]], "destination": 654054737}, {"length": 94.627185398, "source": 133130150, "path": [[733.35202247371, -424.9491011485418], [715.4020224737767, -460.89910114588406], [685.852022473732, -499.5491011463571], [648.302022473679, -540.3491011470862], [569.7520224736685, -595.849101145518], [504.4520224737337, -637.2991011467377], [431.5520224738023, -665.8491011464207], [358.1520224738011, -688.3991011470414], [284.25202247372994, -706.9991011476873]], "destination": 133129359}, {"length": 18.8776262089, "source": 2533527464, "path": [[-4330.0979775262595, 3665.250898851724], [-4391.097977526348, 3668.9008988517458], [-4430.0979775262485, 3652.450898851356], [-4442.14797752629, 3640.8008988537686]], "destination": 3905020292}, {"length": 16.6640359583, "source": 2533527464, "path": [[-4330.0979775262595, 3665.250898851724], [-4299.647977526355, 3678.7008988525827], [-4257.747977526316, 3702.900898851169], [-4236.347977526256, 3701.8008988525253]], "destination": 3905020283}, {"length": 10.9835015293, "source": 2533527464, "path": [[-4330.0979775262595, 3665.250898851724], [-4304.997977526259, 3664.550898854202], [-4272.84797752625, 3679.8008988512265], [-4263.497977526232, 3682.6008988519734]], "destination": 2533527460}, {"length": 44.8168072478, "source": 3732250537, "path": [[3604.302022473638, 2839.000898852362], [3526.9520224736616, 2790.1008988528984], [3387.402022473784, 2883.4508988531124]], "destination": 3732250544}, {"length": 61.1295727015, "source": 3732250537, "path": [[3604.302022473638, 2839.000898852362], [3309.652022473797, 3033.8508988521085]], "destination": 3732250538}, {"length": 82.4026017853, "source": 3732250537, "path": [[3604.302022473638, 2839.000898852362], [3666.2020224735857, 2879.550898853722], [3371.602022473663, 3074.400898853469], [3330.452022473729, 3047.45089885472]], "destination": 3732250534}, {"length": 47.3876524465, "source": 3732250538, "path": [[3309.652022473797, 3033.8508988521085], [3233.8520224737267, 2986.1508988524574], [3347.302022473686, 2910.3008988542456], [3387.402022473784, 2883.4508988531124]], "destination": 3732250544}, {"length": 61.1295727015, "source": 3732250538, "path": [[3309.652022473797, 3033.8508988521085], [3604.302022473638, 2839.000898852362]], "destination": 3732250537}, {"length": 19.5060663719, "source": 3732250538, "path": [[3309.652022473797, 3033.8508988521085], [3272.2020224738026, 3058.3508988542008], [3216.602022473758, 3096.6508988541364]], "destination": 3732250541}, {"length": 4.29103952282, "source": 3732250538, "path": [[3309.652022473797, 3033.8508988521085], [3330.452022473729, 3047.45089885472]], "destination": 3732250534}, {"length": 15.5942826017, "source": 666945453, "path": [[5397.5520224736065, 1602.3008988526044], [5364.202022473785, 1535.7008988523546]], "destination": 666946250}, {"length": 81.1368817318, "source": 666945453, "path": [[5397.5520224736065, 1602.3008988526044], [5297.452022473781, 1584.5508988512336], [5163.352022473644, 1301.35089885286]], "destination": 666946271}, {"length": 9.88149708694, "source": 721620637, "path": [[5726.4520224737935, -2361.449101147883], [5723.852022473608, -2405.84910114805]], "destination": 185885472}, {"length": 10.2283841611, "source": 721620637, "path": [[5726.4520224737935, -2361.449101147883], [5656.552022473616, -2360.549101148024]], "destination": 2705350419}, {"length": 10.4954115028, "source": 721620637, "path": [[5726.4520224737935, -2361.449101147883], [5798.102022473772, -2363.74910114634]], "destination": 2705350423}, {"length": 44.8168072478, "source": 3732250544, "path": [[3387.402022473784, 2883.4508988531124], [3526.9520224736616, 2790.1008988528984], [3604.302022473638, 2839.000898852362]], "destination": 3732250537}, {"length": 47.3876524465, "source": 3732250544, "path": [[3387.402022473784, 2883.4508988531124], [3347.302022473686, 2910.3008988542456], [3233.8520224737267, 2986.1508988524574], [3309.652022473797, 3033.8508988521085]], "destination": 3732250538}, {"length": 2.69883741693, "source": 3732250544, "path": [[3387.402022473784, 2883.4508988531124], [3381.652022473647, 2880.2508988512445], [3374.05202247365, 2875.100898851457]], "destination": 3734288109}, {"length": 5.98348444647, "source": 2533527473, "path": [[-4523.347977526404, 3539.7008988518055], [-4520.897977526417, 3546.250898853742], [-4530.047977526319, 3548.350898853414], [-4533.247977526411, 3541.7508988544455], [-4523.347977526404, 3539.7008988518055]], "destination": 2533527473}, {"length": 5.98348444647, "source": 2533527473, "path": [[-4523.347977526404, 3539.7008988518055], [-4533.247977526411, 3541.7508988544455], [-4530.047977526319, 3548.350898853414], [-4520.897977526417, 3546.250898853742], [-4523.347977526404, 3539.7008988518055]], "destination": 2533527473}, {"length": 13.8393524297, "source": 2533527473, "path": [[-4523.347977526404, 3539.7008988518055], [-4493.647977526382, 3486.850898852367], [-4493.597977526242, 3480.9508988544735]], "destination": 2533527475}, {"length": 90.3293776648, "source": 185857229, "path": [[-4706.497977526203, 1126.750898851725], [-4793.247977526338, 1111.6008988523163], [-4949.747977526231, 1136.00089885324], [-5020.997977526198, 1141.6008988511805], [-5039.897977526353, 1135.4008988533337], [-5069.047977526387, 1132.0508988532652], [-5087.047977526237, 1131.750898853312], [-5111.497977526414, 1135.7008988532868], [-5124.347977526256, 1138.5008988540335], [-5263.697977526238, 1055.9008988515473]], "destination": 2463833626}, {"length": 89.5911206603, "source": 185857229, "path": [[-4706.497977526203, 1126.750898851725], [-4778.047977526345, 1182.8008988530314], [-5098.797977526326, 1436.050898853125]], "destination": 277061719}, {"length": 128.779313218, "source": 241582419, "path": [[-5124.997977526302, 1582.200898852193], [-4923.847977526208, 1411.600898851617], [-4858.497977526355, 1347.6508988539138], [-4574.347977526205, 1131.1008988528215]], "destination": 241583357}, {"length": 107.413802948, "source": 241582419, "path": [[-5124.997977526302, 1582.200898852193], [-4844.497977526396, 1387.8008988541524], [-4608.247977526236, 1239.3508988530755]], "destination": 241583087}, {"length": 200.94832678, "source": 4958548822, "path": [[-1381.4979775264026, -438.6491011487692], [-1401.5479775262297, -449.29910114532845], [-1574.0479775263605, -330.0491011479778], [-2122.2979775263884, 83.45089885253287], [-2275.297977526236, 224.50089885239777]], "destination": 1503278392}, {"length": 198.956733186, "source": 4958548822, "path": [[-1381.4979775264026, -438.6491011487692], [-1540.4479775262826, -311.0991011467945], [-1956.4479775262544, 8.350898852427235], [-2248.4479775262134, 250.40089885308703]], "destination": 695568906}, {"length": 33.7784547453, "source": 4958548822, "path": [[-1381.4979775264026, -438.6491011487692], [-1338.447977526247, -466.74910114674617], [-1172.1979775263235, -490.79910114713243]], "destination": 4958548518}, {"length": 43.2575709091, "source": 4958548822, "path": [[-1381.4979775264026, -438.6491011487692], [-1302.2979775263454, -396.3991011453061], [-1172.1979775263235, -490.79910114713243]], "destination": 4958548518}, {"length": 9.18423642392, "source": 368286, "path": [[1123.5520224737172, -436.6991011472976], [1163.6020224736753, -468.49910114588056]], "destination": 160027545}, {"length": 36.3834819625, "source": 133129204, "path": [[939.9520224737668, 854.1008988522947], [907.4020224737467, 869.3008988522877], [803.2520224736661, 920.2008988538068], [724.302022473644, 922.20089885231]], "destination": 133129489}, {"length": 58.0407120373, "source": 133129204, "path": [[939.9520224737668, 854.1008988522947], [904.1520224737365, 927.4508988532659], [887.6020224737324, 989.6508988518349], [885.7520224736514, 1055.3508988522253], [888.9520224737435, 1110.4008988525038]], "destination": 133129223}, {"length": 28.2851831421, "source": 133129204, "path": [[939.9520224737668, 854.1008988522947], [1042.0520224736497, 746.1008988514095]], "destination": 133129199}, {"length": 59.9442701254, "source": 133129414, "path": [[154.4520224736612, 423.9508988526097], [217.00202247365576, 435.50089885258103], [290.9020224737269, 456.60089885402044], [353.60202247369796, 469.4008988543885], [394.952022473749, 470.5508988536167], [416.2020224736107, 468.9008988520982], [443.35202247358654, 461.5508988514705], [518.3020224737156, 411.9008988539008]], "destination": 133129668}, {"length": 36.4980474457, "source": 133129414, "path": [[154.4520224736612, 423.9508988526097], [158.95202247362406, 351.4008988538819], [176.80202247372102, 260.65089885207726]], "destination": 133129405}, {"length": 19.9337281106, "source": 133129414, "path": [[154.4520224736612, 423.9508988526097], [160.35202247377532, 513.5008988546019]], "destination": 133129422}, {"length": 13.1371567209, "source": 305340085, "path": [[-6582.047977526262, -2767.399101145429], [-6493.497977526408, -2757.5991011481447]], "destination": 305339475}, {"length": 9.67922483774, "source": 305340085, "path": [[-6582.047977526262, -2767.399101145429], [-6565.847977526351, -2809.599101148308]], "destination": 305339739}, {"length": 10.1718342646, "source": 305340085, "path": [[-6582.047977526262, -2767.399101145429], [-6599.0479775264175, -2723.049101145847]], "destination": 305339717}, {"length": 53.0833007221, "source": 262313918, "path": [[6347.302022473799, 1935.1508988521005], [6103.8020224737365, 1919.8508988544916], [6027.202022473643, 1979.0508988535294]], "destination": 36489621}, {"length": 175.5499998, "source": 25624511, "path": [[-2071.747977526295, -997.1491011455669], [-2090.1479775263797, -979.8991011464864], [-2576.547977526378, -580.799101147278], [-2825.447977526263, -383.0491011456161]], "destination": 185876213}, {"length": 246.909870223, "source": 25624512, "path": [[-1433.3479775263668, -1359.5991011463582], [-1312.0979775262942, -1453.7991011458473], [-504.84797752625707, -2091.1491011474936], [-347.29797752630634, -2209.349101146785]], "destination": 241885960}, {"length": 97.1194324692, "source": 368288, "path": [[401.65202247366415, 48.75089885203465], [458.05202247373165, 10.40089885151474], [863.202022473697, -265.0991011456938]], "destination": 133129321}, {"length": 8.24791690776, "source": 368288, "path": [[401.65202247366415, 48.75089885203465], [441.8520224735989, 74.75089885389252]], "destination": 133129373}, {"length": 75.3516663044, "source": 368288, "path": [[401.65202247366415, 48.75089885203465], [369.30202247376087, 28.5508988540073], [258.3020224737886, -40.79910114640484], [220.4020224736425, -64.14910114571626], [27.252022473778226, -183.89910114535724]], "destination": 654054737}, {"length": 50.6115381998, "source": 25624514, "path": [[-2077.2479775263973, -1092.4991011478369], [-1734.3979775263917, -1122.74910114607]], "destination": 146706925}, {"length": 26.6572539977, "source": 25624514, "path": [[-2077.2479775263973, -1092.4991011478369], [-2243.8979775263324, -1044.049101146527]], "destination": 146724462}, {"length": 21.2201397074, "source": 25624514, "path": [[-2077.2479775263973, -1092.4991011478369], [-2071.747977526295, -997.1491011455669]], "destination": 25624511}, {"length": 25.3884397334, "source": 25624516, "path": [[-1649.1979775263844, -1416.4991011469397], [-1598.3479775263377, -1525.649101147053]], "destination": 365925276}, {"length": 10.7020489831, "source": 25624516, "path": [[-1649.1979775263844, -1416.4991011469397], [-1720.1479775263983, -1404.7991011487682]], "destination": 470189}, {"length": 9.90108743212, "source": 3734288121, "path": [[2467.502022473589, 2002.8008988539625], [2418.502022473623, 1972.1008988540234]], "destination": 133128970}, {"length": 25.9709997405, "source": 3734288121, "path": [[2467.502022473589, 2002.8008988539625], [2525.2520224736672, 2000.5008988519535], [2612.002022473581, 2054.700898852957]], "destination": 3734288108}, {"length": 83.6396189425, "source": 3734288121, "path": [[2467.502022473589, 2002.8008988539625], [2465.902022473765, 2038.650898853689], [2813.702022473663, 2251.600898851791], [2851.5520224736692, 2239.650898854251]], "destination": 3734288102}, {"length": 77.0247339189, "source": 3734288121, "path": [[2467.502022473589, 2002.8008988539625], [2586.152022473698, 2077.1008988518247], [2851.5520224736692, 2239.650898854251]], "destination": 3734288102}, {"length": 29.6222889497, "source": 654050369, "path": [[-2741.8979775262196, -1462.3491011462875], [-2886.3979775262114, -1555.6491011459173]], "destination": 654050360}, {"length": 15.6772866883, "source": 654050369, "path": [[-2741.8979775262196, -1462.3491011462875], [-2819.9479775263826, -1414.0491011467304]], "destination": 654050370}, {"length": 30.6311047804, "source": 654050369, "path": [[-2741.8979775262196, -1462.3491011462875], [-2689.4979775262673, -1429.349101147892], [-2692.347977526266, -1415.8491011464491], [-2609.397977526351, -1362.3991011471048]], "destination": 654050366}, {"length": 50.8478968726, "source": 2463876769, "path": [[-414.147977526369, 2788.0508988538113], [-441.1979775262864, 2805.9008988527976], [-222.49797752627032, 2949.700898852825]], "destination": 2463876760}, {"length": 8.46683555056, "source": 2463876769, "path": [[-414.147977526369, 2788.0508988538113], [-373.19797752632945, 2814.9508988519756]], "destination": 2463876766}, {"length": 19.6040350748, "source": 2463876769, "path": [[-414.147977526369, 2788.0508988538113], [-422.7979775262014, 2782.350898854702], [-503.54797752638626, 2729.2508988523423], [-508.8979775262903, 2725.700898853489]], "destination": 2463876775}, {"length": 34.7686849813, "source": 133129305, "path": [[1394.402022473651, 531.9008988529106], [1426.952022473671, 501.3508988511717], [1448.8020224736608, 470.15089885249495], [1484.8020224735858, 388.8508988545425]], "destination": 133129777}, {"length": 25.4630562593, "source": 133129305, "path": [[1394.402022473651, 531.9008988529106], [1257.102022473644, 602.2508988543507]], "destination": 133129309}, {"length": 59.8510400381, "source": 133129305, "path": [[1394.402022473651, 531.9008988529106], [1433.8020224737847, 525.1008988516048], [1512.3520224737952, 507.5008988519869], [1602.5020224736952, 494.55089885341863], [1683.0020224736231, 487.40089885157545], [1743.1520224737706, 488.050898852066], [1794.7020224737819, 485.85089885122557]], "destination": 133129793}, {"length": 40.8217837977, "source": 25624233, "path": [[-516.4979775262868, -3340.7491011487878], [-657.5479775263738, -3306.0491011482895], [-672.8479775262031, -3301.8991011459775], [-776.3979775263774, -3273.999101146785]], "destination": 929535785}, {"length": 21.1286263776, "source": 25624233, "path": [[-516.4979775262868, -3340.7491011487878], [-467.19797752636794, -3251.449101146164]], "destination": 25624234}, {"length": 97.177070865, "source": 3422228426, "path": [[-669.0479775262048, -340.09910114818354], [-647.9479775263197, -326.99910114786235], [-388.29797752626405, -161.8991011476112], [-344.9479775263775, -134.34910114540344], [-192.79797752624893, -35.54910114544896]], "destination": 654054735}, {"length": 47.4757848643, "source": 3422228426, "path": [[-669.0479775262048, -340.09910114818354], [-445.0479775262028, -494.54910114832273]], "destination": 3422228483}, {"length": 13.5515133511, "source": 3422228426, "path": [[-669.0479775262048, -340.09910114818354], [-736.297977526279, -381.99910114755653]], "destination": 653598358}, {"length": 50.2865734011, "source": 3422228426, "path": [[-669.0479775262048, -340.09910114818354], [-906.2979775262825, -176.49910114769796]], "destination": 133129911}, {"length": 9.64611264629, "source": 371608226, "path": [[889.5520224736497, 2988.6508988532514], [863.7020224737669, 3028.550898854121]], "destination": 94268113}, {"length": 35.4330523625, "source": 371608226, "path": [[889.5520224736497, 2988.6508988532514], [719.0020224736581, 2875.550898853163]], "destination": 371608340}, {"length": 32.3293829049, "source": 370350031, "path": [[4461.202022473687, -3759.8991011478233], [4287.002022473674, -3670.449101147]], "destination": 830630902}, {"length": 7.63979581159, "source": 1365433420, "path": [[1963.6020224735873, -1303.6491011462203], [1982.4020224736837, -1271.5991011482686]], "destination": 1365433411}, {"length": 17.1247310211, "source": 1365433420, "path": [[1963.6020224735873, -1303.6491011462203], [1921.5020224736534, -1375.499101147426]], "destination": 721620614}, {"length": 68.5755260001, "source": 1365433420, "path": [[1963.6020224735873, -1303.6491011462203], [1899.3020224737922, -1284.4991011462525], [1789.8520224737258, -1273.4491011485716], [1693.102022473747, -1212.7491011462155], [1539.802022473724, -1205.449101146172]], "destination": 1364890639}, {"length": 91.3114431424, "source": 94267384, "path": [[275.9020224736286, 3997.250898851945], [231.35202247370756, 3983.05089885298], [-244.89797752624833, 3831.250898851835], [-285.64797752639316, 3818.250898852682]], "destination": 94267208}, {"length": 74.4093823111, "source": 94267384, "path": [[275.9020224736286, 3997.250898851945], [300.6520224737574, 3966.2008988514685], [492.552022473669, 3725.95089885408], [512.4020224736014, 3701.050898854419]], "destination": 94266274}, {"length": 26.4267227138, "source": 94267384, "path": [[275.9020224736286, 3997.250898851945], [257.90202247377715, 4021.2008988547154], [215.5520224735863, 4077.700898854175], [195.95202247368883, 4103.800898853649]], "destination": 94269403}, {"length": 24.9410168417, "source": 1224697281, "path": [[2578.952022473713, 507.5508988525712], [2654.1020224737367, 557.8508988541842], [2712.802022473593, 573.3508988541303]], "destination": 1224697328}, {"length": 36.0637202636, "source": 2463876771, "path": [[-288.89797752640334, 2762.150898853122], [-113.84797752622688, 2876.3008988512693]], "destination": 2463876763}, {"length": 9.00170579653, "source": 2463876771, "path": [[-288.89797752640334, 2762.150898853122], [-328.39797752637344, 2736.4008988541855], [-332.547977526243, 2733.650898854023]], "destination": 2463876773}, {"length": 17.0317759782, "source": 2463876771, "path": [[-288.89797752640334, 2762.150898853122], [-334.6479775263589, 2790.800898853973], [-373.19797752632945, 2814.9508988519756]], "destination": 2463876766}, {"length": 52.8508513014, "source": 204830550, "path": [[1718.202022473747, 1801.2008988534944], [1514.7520224736422, 1941.3008988529157], [1468.6520224735932, 1973.0008988538827]], "destination": 204830556}, {"length": 4.50418353636, "source": 204830550, "path": [[1718.202022473747, 1801.2008988534944], [1740.1520224737953, 1815.4008988524595]], "destination": 1223798291}, {"length": 50.6407343592, "source": 204830550, "path": [[1718.202022473747, 1801.2008988534944], [1471.6520224737906, 1641.4008988512307]], "destination": 133128980}, {"length": 15.5387002191, "source": 24909781, "path": [[1475.4020224736487, 1184.7008988539187], [1574.0020224737084, 1158.7508988526452]], "destination": 2705349773}, {"length": 41.0233127813, "source": 36488945, "path": [[6503.602022473798, 1180.4008988534065], [6701.7520224736945, 1049.900898852485]], "destination": 36488944}, {"length": 50.944947011, "source": 36488945, "path": [[6503.602022473798, 1180.4008988534065], [6346.602022473613, 1286.5508988539887], [6260.752022473781, 1344.550898853214]], "destination": 29434737}, {"length": 24.3046059, "source": 529916921, "path": [[-2689.597977526326, -2245.0991011453425], [-2727.49797752625, -2223.299101146381], [-2747.9979775262286, -2209.4991011485376], [-2808.6979775263644, -2168.9991011477614]], "destination": 654057812}, {"length": 30.8031047607, "source": 529916921, "path": [[-2689.597977526326, -2245.0991011453425], [-2563.547977526337, -2159.5491011474624], [-2542.44797752623, -2146.049101146019]], "destination": 146739060}, {"length": 37.4546086075, "source": 529916921, "path": [[-2689.597977526326, -2245.0991011453425], [-2620.847977526264, -2286.199101146025], [-2553.8979775263647, -2322.0991011463357], [-2491.847977526218, -2351.7991011487993]], "destination": 146739030}, {"length": 18.4081736747, "source": 25625252, "path": [[1630.4520224736941, -3867.099101146465], [1540.9020224737003, -3925.249101147443]], "destination": 25625250}, {"length": 134.294213951, "source": 25625252, "path": [[1630.4520224736941, -3867.099101146465], [2546.902022473763, -3832.299101148351]], "destination": 833088564}, {"length": 41.9279409664, "source": 94268113, "path": [[863.7020224737669, 3028.550898854121], [664.9520224737415, 3164.3508988530302]], "destination": 94267358}, {"length": 77.7240679685, "source": 94268113, "path": [[863.7020224737669, 3028.550898854121], [1177.4520224736573, 3246.050898852104], [1224.2520224736709, 3284.950898851946]], "destination": 94268063}, {"length": 30.1074383889, "source": 2503919579, "path": [[-3976.2479775262705, 3758.550898851354], [-3904.6979775263503, 3731.050898853283], [-3868.647977526285, 3697.20089885206], [-3866.4479775263326, 3657.700898852312]], "destination": 2504458036}, {"length": 8.57961461014, "source": 2503919579, "path": [[-3976.2479775262705, 3758.550898851354], [-3987.4479775263703, 3745.9008988527385], [-3999.4479775262716, 3723.300898851534]], "destination": 2503919583}, {"length": 24.5961563858, "source": 24909788, "path": [[1913.9520224737971, 885.2008988533555], [1796.1520224736294, 806.3008988514753]], "destination": 24909773}, {"length": 50.8327602265, "source": 24909788, "path": [[1913.9520224737971, 885.2008988533555], [2155.002022473651, 720.600898851842]], "destination": 133128695}, {"length": 6.79169965449, "source": 2705350398, "path": [[6708.1020224737385, -2337.3991011474973], [6661.702022473737, -2336.399101146469]], "destination": 4508646379}, {"length": 10.1780347127, "source": 2705350398, "path": [[6708.1020224737385, -2337.3991011474973], [6706.1520224736, -2383.1491011456765]], "destination": 2705350429}, {"length": 55.7350228292, "source": 3905020299, "path": [[-4012.9979775263005, 3533.40089885279], [-3779.997977526373, 3335.15089885239]], "destination": 3905020312}, {"length": 52.5180047334, "source": 3905020299, "path": [[-4012.9979775263005, 3533.40089885279], [-4012.5979775262886, 3548.5508988521988], [-4040.047977526218, 3583.950898853772], [-4178.5979775263995, 3692.650898852179], [-4213.497977526348, 3700.650898853297], [-4236.347977526256, 3701.8008988525253]], "destination": 3905020283}, {"length": 61.847396715, "source": 3905020299, "path": [[-4012.9979775263005, 3533.40089885279], [-3901.94797752641, 3523.1508988538], [-3822.4979775263178, 3453.6008988546027], [-3672.897977526235, 3389.800898851547]], "destination": 3905020309}, {"length": 19.2699194876, "source": 2463876773, "path": [[-332.547977526243, 2733.650898854023], [-420.94797752634247, 2676.0008988517825], [-426.0479775262116, 2672.650898851714]], "destination": 2463876778}, {"length": 9.00170579653, "source": 2463876773, "path": [[-332.547977526243, 2733.650898854023], [-328.39797752637344, 2736.4008988541855], [-288.89797752640334, 2762.150898853122]], "destination": 2463876771}, {"length": 50.3372671879, "source": 2463876773, "path": [[-332.547977526243, 2733.650898854023], [-306.84797752633665, 2716.6508988543114], [-88.39797752635548, 2859.1008988527733]], "destination": 2463876764}, {"length": 74.957654181, "source": 94267360, "path": [[1231.202022473621, 2522.0508988539336], [1206.402022473796, 2555.9008988516043], [1008.5520224736299, 2825.6008988520875]], "destination": 159885961}, {"length": 101.660580915, "source": 94267360, "path": [[1231.202022473621, 2522.0508988539336], [1281.102022473668, 2534.150898853227], [1730.8020224737763, 2659.000898852071], [1798.5520224736983, 2665.1008988523017], [1867.6520224736314, 2632.450898854444]], "destination": 158834270}, {"length": 28.9464600819, "source": 3422228449, "path": [[-82.59797752629972, -390.29910114862787], [-147.69797752633986, -380.94910114594427], [-199.0979775263746, -344.04910114815834], [-230.99797752634822, -322.4991011485656], [-237.54797752628676, -318.0491011463005]], "destination": 3422228418}, {"length": 6.86748449182, "source": 3422228449, "path": [[-82.59797752629972, -390.29910114862787], [-81.94797752625327, -371.09910114807576], [-64.1979775262147, -371.34910114744457]], "destination": 3134287628}, {"length": 15.8967922447, "source": 3422228449, "path": [[-82.59797752629972, -390.29910114862787], [-82.89797752625283, -398.9491011466839], [-47.44797752631591, -399.44910114542154], [-46.49797752631635, -371.5991011468134], [-64.1979775262147, -371.34910114744457]], "destination": 3134287628}, {"length": 10.9835015293, "source": 2533527460, "path": [[-4263.497977526232, 3682.6008988519734], [-4272.84797752625, 3679.8008988512265], [-4304.997977526259, 3664.550898854202], [-4330.0979775262595, 3665.250898851724]], "destination": 2533527464}, {"length": 83.737738503, "source": 3422228451, "path": [[-369.5979775262259, -402.5991011467056], [-398.4479775263061, -382.64910114804707], [-205.84797752620787, -258.9991011454629], [-182.6479775262069, -244.1991011465916], [27.252022473778226, -183.89910114535724]], "destination": 654054737}, {"length": 26.9593712925, "source": 3422228451, "path": [[-369.5979775262259, -402.5991011467056], [-333.9979775263124, -379.499101146763], [-323.1979775262239, -372.59910114784134], [-237.54797752628676, -318.0491011463005]], "destination": 3422228418}, {"length": 28.2538049363, "source": 3422228451, "path": [[-369.5979775262259, -402.5991011467056], [-340.69797752622753, -422.54910114536415], [-423.1979775262129, -479.34910114832974], [-445.0479775262028, -494.54910114832273]], "destination": 3422228483}, {"length": 27.6399093591, "source": 470181, "path": [[1487.2020224736548, -1838.3991011461376], [1397.5520224736026, -1947.7991011456197]], "destination": 653601065}, {"length": 187.17272882, "source": 470181, "path": [[1487.2020224736548, -1838.3991011461376], [1090.5520224737675, -1678.2991011474735], [752.6020224737362, -1514.1991011482503], [480.50202247362785, -1326.7991011467473]], "destination": 4955856139}, {"length": 16.063737173, "source": 470181, "path": [[1487.2020224736548, -1838.3991011461376], [1539.9520224737007, -1775.0491011483405]], "destination": 185883887}, {"length": 81.9574896398, "source": 3920295909, "path": [[-5320.597977526376, 3294.0008988546765], [-5710.197977526254, 3558.750898854157]], "destination": 1229142922}, {"length": 95.8455822694, "source": 3920295909, "path": [[-5320.597977526376, 3294.0008988546765], [-4876.447977526288, 2977.25089885148]], "destination": 1096679755}, {"length": 111.063378916, "source": 3920295909, "path": [[-5320.597977526376, 3294.0008988546765], [-5289.24797752639, 3210.8508988528683], [-4856.247977526263, 2910.8508988535677]], "destination": 2645500891}, {"length": 47.8790924529, "source": 308768742, "path": [[-4323.197977526227, 377.8008988533088], [-4139.347977526242, 555.9008988527125]], "destination": 308768760}, {"length": 5.8936478992, "source": 308768742, "path": [[-4323.197977526227, 377.8008988533088], [-4297.397977526262, 357.45089885352854]], "destination": 308768787}, {"length": 7.90077283317, "source": 308768742, "path": [[-4323.197977526227, 377.8008988533088], [-4358.197977526234, 404.8508988532262]], "destination": 308768783}, {"length": 14.4862724175, "source": 34818437, "path": [[-4988.497977526318, -313.84910114695685], [-5010.29797752639, -306.14910114579175], [-5027.447977526301, -294.44910114762024], [-5038.397977526365, -279.8491011475335], [-5041.997977526247, -263.6991011470968]], "destination": 34818440}, {"length": 13.7060966887, "source": 2463876709, "path": [[760.5020224736858, 3508.7508988524974], [708.9020224737563, 3477.2008988532834], [691.9020224736006, 3466.80089885254]], "destination": 2543955200}, {"length": 32.851834134, "source": 2463876709, "path": [[760.5020224736858, 3508.7508988524974], [882.0520224737116, 3420.6008988526546], [911.3520224737215, 3399.350898853015]], "destination": 159893060}, {"length": 2.34763724476, "source": 4069612199, "path": [[-4401.497977526203, 272.15089885146426], [-4396.697977526287, 269.90089885359225], [-4392.197977526324, 267.75089885333614], [-4388.497977526385, 266.00089885420175]], "destination": 4069612201}, {"length": 21.9013953732, "source": 2705350425, "path": [[5947.702022473633, -2367.249101148161], [5837.6520224736605, -2365.0491011473205], [5798.102022473772, -2363.74910114634]], "destination": 2705350423}, {"length": 97.7024437352, "source": 2705350425, "path": [[5947.702022473633, -2367.249101148161], [6615.202022473676, -2380.6491011484354]], "destination": 2705350427}, {"length": 10.2415928759, "source": 2705350425, "path": [[5947.702022473633, -2367.249101148161], [5946.852022473692, -2321.199101146476]], "destination": 2705350391}, {"length": 20.3551838977, "source": 3734288099, "path": [[2749.2520224736695, 2035.8508988529422], [2849.8020224736465, 2099.1008988531235]], "destination": 3734288106}, {"length": 24.0436864166, "source": 3734288099, "path": [[2749.2520224736695, 2035.8508988529422], [2719.2020224737767, 2016.3008988518527], [2612.002022473581, 2054.700898852957]], "destination": 3734288108}, {"length": 31.9812748349, "source": 3734288099, "path": [[2749.2520224736695, 2035.8508988529422], [2824.952022473681, 1986.9008988528947], [2902.3520224737977, 1933.2508988512132]], "destination": 3734288098}, {"length": 11.9690201315, "source": 3732186332, "path": [[5501.352022473593, 3752.350898853507], [5574.252022473747, 3727.950898852583]], "destination": 2705349460}, {"length": 25.1848723864, "source": 3732186332, "path": [[5501.352022473593, 3752.350898853507], [5398.652022473582, 3821.250898852213], [5418.2020224737835, 3831.9508988529096]], "destination": 3732186333}, {"length": 23.8490201082, "source": 3732186332, "path": [[5501.352022473593, 3752.350898853507], [5487.502022473612, 3859.2008988516113]], "destination": 3732186343}, {"length": 12.0694072776, "source": 2503919613, "path": [[-3998.197977526319, 3627.0008988523728], [-3947.7479775262836, 3620.7508988539416], [-3918.797977526367, 3613.2008988545294]], "destination": 2504458034}, {"length": 9.8632385771, "source": 2503919613, "path": [[-3998.197977526319, 3627.0008988523728], [-4065.5979775263695, 3627.0008988523728]], "destination": 2503919612}, {"length": 29.3463976194, "source": 2503919613, "path": [[-3998.197977526319, 3627.0008988523728], [-3972.147977526319, 3640.850898854353], [-3945.697977526308, 3656.6508988542523], [-3937.397977526347, 3679.250898851905], [-3943.1979775264026, 3693.650898853207], [-3963.897977526276, 3710.2508988517966], [-3999.4479775262716, 3723.300898851534]], "destination": 2503919583}, {"length": 129.642875911, "source": 1503278714, "path": [[2391.7520224736586, -2187.1491011467015], [2412.9520224736025, -2199.599101146532], [2584.602022473792, -2291.3991011463963], [2772.1520224737174, -2329.899101148669], [3203.5020224736586, -2387.099101145651]], "destination": 185885465}, {"length": 141.04677335, "source": 1503278714, "path": [[2391.7520224736586, -2187.1491011467015], [2363.552022473625, -2196.8991011469543], [2137.0020224737996, -2155.399101148703], [1645.352022473734, -2031.7491011461186], [1493.602022473617, -1980.3491011458618]], "destination": 1503278666}, {"length": 133.557345826, "source": 1503278714, "path": [[2391.7520224736586, -2187.1491011467015], [2417.0020224736354, -2176.649101148342], [2507.9520224737807, -2138.79910114656], [2993.452022473697, -2199.3991011477474], [3182.2520224737973, -2207.249101147113], [3233.502022473633, -2233.4491011477553], [3232.902022473727, -2251.299101146742]], "destination": 1215367557}, {"length": 73.0675358687, "source": 1503278714, "path": [[2391.7520224736586, -2187.1491011467015], [2273.402022473725, -2117.6491011480894], [2120.052022473784, -2061.5991011467827], [2057.6020224736258, -2037.2991011470276], [2001.5520224736515, -1988.6491011469332]], "destination": 1224672966}, {"length": 94.3172868338, "source": 2561299795, "path": [[-3191.6479775262464, -2466.0991011487], [-3145.8479775263727, -2478.299101145609], [-3109.7979775263075, -2475.749101147784], [-3084.6479775263892, -2493.799101145555], [-3068.947977526326, -2505.0991011461574], [-3564.7479775262614, -2470.8991011479498]], "destination": 272270324}, {"length": 54.9101155492, "source": 2561299795, "path": [[-3191.6479775262464, -2466.0991011487], [-3453.247977526219, -2289.049101147356]], "destination": 652907478}, {"length": 24.8352887246, "source": 2561299795, "path": [[-3191.6479775262464, -2466.0991011487], [-3196.597977526361, -2471.899101145425], [-3239.897977526329, -2538.0991011481055], [-3264.897977526271, -2566.6491011477888]], "destination": 2561299807}, {"length": 7.74407819547, "source": 3730881193, "path": [[1394.8020224736624, 167.55089885123198], [1355.4020224737505, 190.8008988529275]], "destination": 3730881192}, {"length": 10.5740176257, "source": 3730881193, "path": [[1394.8020224736624, 167.55089885123198], [1391.6520224737105, 163.9508988517946], [1350.2520224737414, 130.15089885470843]], "destination": 133129820}, {"length": 24.4780830148, "source": 3730881193, "path": [[1394.8020224736624, 167.55089885123198], [1417.602022473652, 193.55089885308985], [1443.25202247364, 232.7508988528848], [1453.6020224737988, 269.5008988524705]], "destination": 133129813}, {"length": 40.322574464, "source": 308768760, "path": [[-4139.347977526242, 555.9008988527125], [-4115.547977526335, 582.7508988538455], [-4015.4979775262054, 682.1008988531219], [-3991.397977526345, 708.8008988525019]], "destination": 277572136}, {"length": 18.5255114585, "source": 308768760, "path": [[-4139.347977526242, 555.9008988527125], [-4117.397977526416, 568.3508988525432], [-4063.2479775262186, 621.8008988518875]], "destination": 277572138}, {"length": 19.2923416907, "source": 308768760, "path": [[-4139.347977526242, 555.9008988527125], [-4128.79797752641, 579.250898852024], [-4077.447977526294, 631.700898853893]], "destination": 4843850892}, {"length": 47.8790924529, "source": 308768760, "path": [[-4139.347977526242, 555.9008988527125], [-4323.197977526227, 377.8008988533088]], "destination": 308768742}, {"length": 24.3046059, "source": 654057812, "path": [[-2808.6979775263644, -2168.9991011477614], [-2747.9979775262286, -2209.4991011485376], [-2727.49797752625, -2223.299101146381], [-2689.597977526326, -2245.0991011453425]], "destination": 529916921}, {"length": 48.7560688859, "source": 654057812, "path": [[-2808.6979775263644, -2168.9991011477614], [-3038.297977526305, -2010.0991011453573]], "destination": 654057810}, {"length": 79.0347153704, "source": 654057812, "path": [[-2808.6979775263644, -2168.9991011477614], [-2757.497977526224, -2136.8491011486412], [-2683.3479775263404, -2090.19910114705], [-2655.6479775263765, -2072.7991011462163], [-2688.4979775263496, -2050.749101147886], [-2786.1479775264097, -1985.1491011486644], [-2886.2979775263752, -1918.8991011453993]], "destination": 654057813}, {"length": 14.8375910683, "source": 270922751, "path": [[2439.202022473719, -4290.049101147275], [2458.1020224736517, -4224.499101148638]], "destination": 4050195020}, {"length": 71.8009799321, "source": 2503919612, "path": [[-4065.5979775263695, 3627.0008988523728], [-4131.797977526386, 3624.800898851532], [-4203.1479775264115, 3606.8508988513768], [-4262.447977526395, 3581.000898851272], [-4355.097977526201, 3537.4508988539333], [-4398.94797752638, 3518.4008988515816], [-4493.597977526242, 3480.9508988544735]], "destination": 2533527475}, {"length": 9.8632385771, "source": 2503919612, "path": [[-4065.5979775263695, 3627.0008988523728], [-3998.197977526319, 3627.0008988523728]], "destination": 2503919613}, {"length": 30.3989790178, "source": 2503919612, "path": [[-4065.5979775263695, 3627.0008988523728], [-4063.6979775263703, 3649.8008988523625], [-4068.397977526228, 3694.050898854329], [-4053.5979775262467, 3726.350898851649], [-3999.4479775262716, 3723.300898851534]], "destination": 2503919583}, {"length": 38.0398588071, "source": 25624234, "path": [[-467.19797752636794, -3251.449101146164], [-226.49797752638534, -3316.149101145527]], "destination": 25624260}, {"length": 30.1210243635, "source": 25624234, "path": [[-467.19797752636794, -3251.449101146164], [-575.5979775263764, -3136.2991011469885]], "destination": 306086423}, {"length": 69.6644895722, "source": 133128533, "path": [[1131.8520224736783, 803.450898853697], [1364.5520224736529, 951.9008988512212], [1353.8020224737047, 1023.3508988513051], [1388.552022473677, 1039.8508988522792]], "destination": 2705349788}, {"length": 108.465243905, "source": 133128533, "path": [[1131.8520224736783, 803.450898853697], [1075.002022473681, 861.8508988540441], [1042.3520224736028, 905.700898851336], [1022.9020224736818, 942.950898853212], [1013.0520224735928, 984.2508988526788], [1008.2520224736768, 1031.2008988542232], [1014.702022473779, 1078.1008988516305], [1023.4520224736698, 1117.400898852594], [1038.3020224737916, 1156.750898854142], [1066.5020224736033, 1189.850898853706], [1100.9520224736225, 1216.1508988519643], [1146.6020224737417, 1244.4508988522784]], "destination": 1224777982}, {"length": 18.3114674439, "source": 133128533, "path": [[1131.8520224736783, 803.450898853697], [1042.0520224736497, 746.1008988514095]], "destination": 133129199}], "vertices": [{"name": 160018434, "position": [567.5020224737981, 1386.9508988513246]}, {"name": 3422228483, "position": [-445.0479775262028, -494.54910114832273]}, {"name": 146696196, "position": [-2921.347977526301, -1733.9491011476582]}, {"name": 2503974230, "position": [-6699.447977526418, 2531.100898853111]}, {"name": 36487176, "position": [3131.7020224737034, 846.9508988540042]}, {"name": 270731274, "position": [-874.3979775263089, -3156.049101146863]}, {"name": 652950871, "position": [-1677.147977526383, -2648.9991011473535]}, {"name": 133128985, "position": [2216.652022473786, 1495.5008988515317]}, {"name": 308768783, "position": [-4358.197977526234, 404.8508988532262]}, {"name": 34818302, "position": [-5749.0479775264, -2015.3991011468975]}, {"name": 308768787, "position": [-4297.397977526262, 357.45089885352854]}, {"name": 4958488596, "position": [-3242.997977526363, 107.20089885296602]}, {"name": 1181466645, "position": [5866.502022473741, 1611.1508988529977]}, {"name": 666951702, "position": [4159.502022473615, -880.9491011483317]}, {"name": 160014360, "position": [-294.84797752621364, 1245.7508988532595]}, {"name": 204832795, "position": [2624.7020224736684, 860.6008988536473]}, {"name": 146724616, "position": [-3438.797977526331, -1299.7491011468298]}, {"name": 2503974234, "position": [-6541.497977526234, 2439.5008988520317]}, {"name": 431171616, "position": [-3971.897977526284, -2120.199101145914]}, {"name": 431171618, "position": [-4044.4979775262623, -1965.4991011464062]}, {"name": 431171619, "position": [-3985.5979775262895, -1839.299101145997]}, {"name": 146728999, "position": [-3667.247977526378, -1159.8991011467774]}, {"name": 2705350427, "position": [6615.202022473676, -2380.6491011484354]}, {"name": 130097196, "position": [5589.052022473728, 1795.85089885137]}, {"name": 205086386, "position": [-1614.747977526365, 126.95089885284006]}, {"name": 146729006, "position": [-3352.147977526254, -1259.7991011453757]}, {"name": 4616541, "position": [2141.352022473786, -2930.8491011477145]}, {"name": 2503919664, "position": [-4549.447977526322, 3460.2008988535717]}, {"name": 368307, "position": [-2325.0479775263066, -4374.849101147049]}, {"name": 2503919668, "position": [-4590.797977526373, 3456.6508988547184]}, {"name": 130097205, "position": [5786.752022473695, 1951.6008988524902]}, {"name": 352968987, "position": [-1100.29797752631, 3513.250898851794]}, {"name": 159936180, "position": [2266.0520224737634, 4059.2508988517293]}, {"name": 260584799, "position": [1321.2520224736845, -3398.0491011469385]}, {"name": 2484772391, "position": [-1760.2479775262748, 382.05089885323673]}, {"name": 506888255, "position": [-4827.097977526229, -1950.9491011469038]}, {"name": 666951745, "position": [4154.752022473618, -972.4991011488271]}, {"name": 666941110, "position": [3328.1520224737183, -705.1491011473843]}, {"name": 666951750, "position": [4204.45202247377, -1049.5491011468516]}, {"name": 929534666, "position": [-724.5979775263312, -3194.149101148014]}, {"name": 146729033, "position": [-2652.9479775263544, -1079.549101145716]}, {"name": 831956663, "position": [3336.902022473609, -4380.749101148495]}, {"name": 146729036, "position": [-2730.397977526389, -1016.1991011479188]}, {"name": 3066566733, "position": [-3820.2979775263657, -684.6491011458511]}, {"name": 158834766, "position": [1377.902022473787, 2318.650898853747]}, {"name": 3066566737, "position": [-3773.3479775263754, -651.149101148718]}, {"name": 306085973, "position": [-2657.2479775262004, -863.4491011463297]}, {"name": 177215574, "position": [-569.0479775262158, -498.64910114649774]}, {"name": 277061719, "position": [-5098.797977526326, 1436.050898853125]}, {"name": 146729049, "position": [-3220.1979775263735, -943.6491011456383]}, {"name": 925761926, "position": [-45.4479775262584, -3415.6991011471405]}, {"name": 36485756, "position": [-1440.6979775263285, 111.40089885230964]}, {"name": 2556489826, "position": [-1033.347977526411, 3803.8508988513795]}, {"name": 2705350429, "position": [6706.1520224736, -2383.1491011456765]}, {"name": 146729061, "position": [-3317.94797752627, -1134.3991011472099]}, {"name": 311724134, "position": [-3908.647977526325, -2166.2991011481836]}, {"name": 146729063, "position": [-3268.297977526258, -913.0491011468678]}, {"name": 2503919720, "position": [-4957.697977526321, 3430.850898851645]}, {"name": 653598396, "position": [-630.7479775262692, -616.59910114642]}, {"name": 146729069, "position": [-3083.7479775263077, -1286.7991011482616]}, {"name": 94267503, "position": [963.9520224737907, 3363.050898851583]}, {"name": 2503919728, "position": [-4573.447977526346, 3427.5508988521606]}, {"name": 94267505, "position": [2356.40202247378, 2945.300898854697]}, {"name": 130097266, "position": [5446.152022473782, 1699.5008988516247]}, {"name": 249578857, "position": [2280.302022473757, 2895.7508988511904]}, {"name": 1503278714, "position": [2391.7520224736586, -2187.1491011467015]}, {"name": 2463833697, "position": [-5537.747977526264, 898.0508988543079]}, {"name": 930672767, "position": [-1882.5479775264052, -1878.0491011476386]}, {"name": 1181550725, "position": [6232.652022473584, 1290.700898852748]}, {"name": 204830556, "position": [1468.6520224735932, 1973.0008988538827]}, {"name": 1893476491, "position": [1295.6020224736965, -2778.0991011461256]}, {"name": 25624258, "position": [-318.4479775262261, -3402.999101147941]}, {"name": 160008334, "position": [-1129.59797752632, -23.899101147861757]}, {"name": 506888335, "position": [-4653.847977526216, -2448.349101147329]}, {"name": 3772612374, "position": [5008.102022473704, 2162.3008988527204]}, {"name": 1181634707, "position": [3020.5020224736145, -337.4991011462214]}, {"name": 256622742, "position": [4489.152022473686, 4375.400898851467]}, {"name": 25624260, "position": [-226.49797752638534, -3316.149101145527]}, {"name": 174043290, "position": [5791.902022473705, 3595.000898851453]}, {"name": 241582236, "position": [-5440.497977526215, 1816.8508988516407]}, {"name": 930672389, "position": [-2510.547977526256, -2174.399101146918]}, {"name": 2543955108, "position": [394.2020224736442, 3557.400898852592]}, {"name": 185886885, "position": [4088.4520224737653, -2180.949101145302]}, {"name": 133129935, "position": [-982.2979775262475, 66.85089885394291]}, {"name": 34816711, "position": [-6396.497977526395, -3963.1991011468417]}, {"name": 34817771, "position": [-6460.497977526236, -2797.3491011472615]}, {"name": 5059182770, "position": [5984.202022473628, -3304.7991011478925]}, {"name": 34816179, "position": [-3976.397977526247, -2614.6491011473927]}, {"name": 34816181, "position": [-4066.5479775263693, -2525.4491011459377]}, {"name": 34816182, "position": [-4087.6979775263944, -2441.399101147823]}, {"name": 2504736952, "position": [-3655.797977526243, 3626.3508988518824]}, {"name": 1223768436, "position": [2789.8520224736158, 290.55089885332563]}, {"name": 249168058, "position": [155.60202247377754, 2690.450898853669]}, {"name": 4389568699, "position": [2333.8020224736856, 392.25089885164266]}, {"name": 36487357, "position": [3429.4520224738003, 644.0008988519708]}, {"name": 2589554878, "position": [-6401.147977526333, 4318.150898853901]}, {"name": 36487359, "position": [4204.602022473747, 1136.3508988537774]}, {"name": 25624514, "position": [-2077.2479775263973, -1092.4991011478369]}, {"name": 2589554882, "position": [-6604.297977526263, 4392.6508988541]}, {"name": 371609795, "position": [477.1020224736411, 3292.90089885248]}, {"name": 205088968, "position": [3856.65202247365, -2178.999101147383]}, {"name": 1838021324, "position": [4489.85202247365, -3008.5491011462295]}, {"name": 36487372, "position": [4550.752022473681, 1357.8008988517354]}, {"name": 25666984, "position": [6604.952022473798, -3996.4491011481587]}, {"name": 174002383, "position": [1696.052022473582, 3826.350898851416]}, {"name": 2503919825, "position": [-4686.047977526364, 3218.450898852865]}, {"name": 2589554901, "position": [-6456.597977526401, 4289.550898853633]}, {"name": 3734288110, "position": [3129.10202247374, 3039.9508988523394]}, {"name": 2504736985, "position": [-3600.5479775262916, 3426.75089885347]}, {"name": 1435746523, "position": [-3130.497977526403, 2908.100898853405]}, {"name": 34818271, "position": [-6404.347977526204, -2092.4491011484747]}, {"name": 34818272, "position": [-6353.397977526321, -2046.3991011467897]}, {"name": 36487395, "position": [4243.702022473705, 1563.6508988521314]}, {"name": 34818276, "position": [-5009.697977526262, -1110.6491011467767]}, {"name": 34818277, "position": [-4507.1479775262715, -961.6491011463779]}, {"name": 929536231, "position": [-706.4479775262811, -3248.399101146049]}, {"name": 311075048, "position": [-2195.047977526343, 2406.000898851346]}, {"name": 34816380, "position": [-3768.4479775264012, -2168.799101145424]}, {"name": 365925276, "position": [-1598.3479775263377, -1525.649101147053]}, {"name": 4508646379, "position": [6661.702022473737, -2336.399101146469]}, {"name": 4069611757, "position": [-6410.797977526306, 2364.4008988519263]}, {"name": 305911690, "position": [-2759.1979775263285, -1841.9491011485434]}, {"name": 267696509, "position": [-6497.147977526208, -3.0991011463754603]}, {"name": 21389558, "position": [-803.2479775264001, 3332.9008988545183]}, {"name": 158834936, "position": [1161.1520224736882, 2180.650898853997]}, {"name": 661233, "position": [-2556.7479775263637, 1376.0508988518438]}, {"name": 34818300, "position": [-6032.947977526293, -2315.3991011461985]}, {"name": 34818301, "position": [-6057.197977526352, -1819.299101146754]}, {"name": 4069611774, "position": [-5828.697977526387, 2140.800898853712]}, {"name": 133128576, "position": [-860.6979775263035, 247.05089885301845]}, {"name": 94267653, "position": [2585.702022473768, 2687.9508988528755]}, {"name": 831956695, "position": [3300.052022473743, -3855.09910114834]}, {"name": 310745357, "position": [609.352022473697, 4230.400898851627]}, {"name": 277951533, "position": [-5552.447977526409, -3607.299101147987]}, {"name": 3734288088, "position": [3053.202022473611, 2371.1508988526475]}, {"name": 1096679700, "position": [-5563.647977526287, 3647.0008988516156]}, {"name": 34818325, "position": [-5979.697977526399, -2190.34910114857]}, {"name": 34818326, "position": [-5484.697977526265, -1826.6491011473818]}, {"name": 34818327, "position": [-5193.897977526341, -1609.749101145752]}, {"name": 34818328, "position": [-4812.747977526399, -1876.949101145442]}, {"name": 3905020292, "position": [-4442.14797752629, 3640.8008988537686]}, {"name": 597614875, "position": [-3526.497977526244, 1239.5008988512757]}, {"name": 930613534, "position": [-1887.1479775262046, -997.3491011479041]}, {"name": 258175263, "position": [-3593.6479775262596, -3720.3991011480753]}, {"name": 1179777317, "position": [4298.902022473739, -335.2491011483494]}, {"name": 932340008, "position": [-3810.847977526288, -2104.849101147721]}, {"name": 653601065, "position": [1397.5520224736026, -1947.7991011456197]}, {"name": 3905020295, "position": [-4456.797977526295, 3602.20089885388]}, {"name": 335690029, "position": [-4501.997977526262, 3649.8008988523625]}, {"name": 335690031, "position": [-4226.647977526365, 4213.050898851378]}, {"name": 146739052, "position": [-2064.247977526357, -2258.249101146248]}, {"name": 270177331, "position": [4789.402022473688, -3256.5491011453673]}, {"name": 653598377, "position": [-787.0479775262673, -506.39910114824715]}, {"name": 146724612, "position": [-3378.297977526312, -1476.0491011465149]}, {"name": 1179777339, "position": [4361.902022473662, -412.49910114871113]}, {"name": 262314301, "position": [6088.652022473661, 2109.4508988532825]}, {"name": 34845749, "position": [1424.852022473777, -649.299101148415]}, {"name": 925849923, "position": [-1402.2979775263345, -2375.1491011481107]}, {"name": 133128517, "position": [858.7520224736522, 629.1508988525152]}, {"name": 634433862, "position": [2935.4520224735834, -349.54910114848303]}, {"name": 4069612257, "position": [-3228.2479775262996, -799.2491011457048]}, {"name": 133128791, "position": [2394.5520224737393, 865.6008988516817]}, {"name": 1096679755, "position": [-4876.447977526288, 2977.25089885148]}, {"name": 925849932, "position": [-1237.647977526235, -2499.29910114588]}, {"name": 94267106, "position": [2827.7020224736216, 3245.050898854629]}, {"name": 1365433501, "position": [1826.0520224737675, -1673.9991011469613]}, {"name": 34845752, "position": [1977.6020224737679, -295.1491011486951]}, {"name": 654057810, "position": [-3038.297977526305, -2010.0991011453573]}, {"name": 654057811, "position": [-3267.9479775263862, -1852.3491011457338]}, {"name": 36485460, "position": [-757.5979775262808, 948.90089885169]}, {"name": 654057813, "position": [-2886.2979775263752, -1918.8991011453993]}, {"name": 25203769, "position": [6449.502022473741, -1825.4991011481536]}, {"name": 4616537, "position": [2756.402022473736, -3066.2991011460863]}, {"name": 277410140, "position": [-4211.397977526232, -2767.3491011483975]}, {"name": 256622941, "position": [4625.552022473611, 4282.000898854221]}, {"name": 4616542, "position": [292.3020224736561, -2466.0991011487]}, {"name": 4616543, "position": [-377.7979775263507, -2244.1491011484513]}, {"name": 185858401, "position": [-5327.547977526326, 738.100898853844]}, {"name": 5057169763, "position": [3746.1020224736076, -3343.5491011459817]}, {"name": 5057169764, "position": [3648.402022473629, -3341.999101145632]}, {"name": 3734288102, "position": [2851.5520224736692, 2239.650898854251]}, {"name": 1179777383, "position": [5120.552022473746, 919.500898852732]}, {"name": 5057169769, "position": [4725.10202247367, -3871.8991011457147]}, {"name": 5057169770, "position": [4706.202022473738, -3885.0991011472047]}, {"name": 5057169771, "position": [4652.102022473681, -3922.8991011484027]}, {"name": 277410159, "position": [-4589.347977526303, -3017.8991011453604]}, {"name": 3905020272, "position": [-4750.497977526358, 3916.8008988532674]}, {"name": 1181550261, "position": [6058.152022473618, 1485.900898853032]}, {"name": 4616562, "position": [-4728.547977526309, 3058.9008988535224]}, {"name": 3905020276, "position": [-4767.897977526303, 3884.700898851179]}, {"name": 925849973, "position": [-1275.6479775262176, -2403.699101147794]}, {"name": 2463876775, "position": [-508.8979775262903, 2725.700898853489]}, {"name": 3905020280, "position": [-4181.3479775263395, 3730.700898852746]}, {"name": 1219877241, "position": [5272.35202247378, 3992.700898852064]}, {"name": 3905020283, "position": [-4236.347977526256, 3701.8008988525253]}, {"name": 267696508, "position": [-6585.447977526249, -117.39910114627605]}, {"name": 3905020285, "position": [-4178.897977526352, 3696.3008988522006]}, {"name": 925860223, "position": [966.152022473743, -2583.6491011475005]}, {"name": 3905020288, "position": [-4483.397977526282, 3654.6508988521964]}, {"name": 157530497, "position": [1761.5520224736335, 4384.650898852982]}, {"name": 639619459, "position": [-668.5479775263569, 380.35089885468665]}, {"name": 925849988, "position": [-1303.7479775264148, -2346.0491011455533]}, {"name": 3905020310, "position": [-4309.747977526257, 3377.900898854591]}, {"name": 3905020294, "position": [-4447.697977526311, 3608.1508988523583]}, {"name": 695566727, "position": [-3089.0479775262934, 1673.2008988533664]}, {"name": 34818440, "position": [-5041.997977526247, -263.6991011470968]}, {"name": 34818441, "position": [-4994.447977526351, -216.14910114564623]}, {"name": 34818443, "position": [-4921.897977526291, -218.94910114639288]}, {"name": 3422228216, "position": [-2729.697977526202, 1592.2008988518144]}, {"name": 305340141, "position": [-6600.647977526241, -2769.649101146854]}, {"name": 34818448, "position": [-4883.497977526296, -271.54910114646214]}, {"name": 3905020305, "position": [-3516.397977526342, 3430.6008988522763]}, {"name": 654050371, "position": [-2451.747977526342, -1278.7991011471433]}, {"name": 36489621, "position": [6027.202022473643, 1979.0508988535294]}, {"name": 36489622, "position": [6162.20202247364, 1983.8508988527792]}, {"name": 36489623, "position": [6296.502022473671, 1991.7508988527288]}, {"name": 3905020312, "position": [-3779.997977526373, 3335.15089885239]}, {"name": 654050372, "position": [-2529.697977526224, -1228.2491011461616]}, {"name": 3905020315, "position": [-3852.7979775262456, 3297.0008988542077]}, {"name": 932276637, "position": [-3611.6479775263333, -2754.8491011479828]}, {"name": 2295302558, "position": [4192.552022473706, -3593.3991011454227]}, {"name": 3905020319, "position": [-4272.947977526309, 3242.350898851498]}, {"name": 3905020323, "position": [-4473.74797752631, 3193.750898851988]}, {"name": 3905020325, "position": [-4538.34797752628, 3160.650898852424]}, {"name": 133128615, "position": [1005.7020224736312, 1339.5008988545953]}, {"name": 34818472, "position": [-4922.397977526361, -309.64910114761324]}, {"name": 34818473, "position": [-4546.347977526289, -907.4991011459588]}, {"name": 1365436842, "position": [1162.7520224737343, -1421.94910114668]}, {"name": 133128621, "position": [1130.4520224737491, 1420.3508988543945]}, {"name": 3905020334, "position": [-4157.09797752628, 2904.7508988533364]}, {"name": 661239, "position": [-1120.597977526394, 3691.6008988541194]}, {"name": 1365436849, "position": [1238.152022473793, -1453.4991011458942]}, {"name": 34816434, "position": [-6533.197977526273, -2715.4991011464344]}, {"name": 34816435, "position": [-5559.1979775262425, -3704.6491011487606]}, {"name": 34818484, "position": [-4266.397977526371, -1913.8491011467806]}, {"name": 34816437, "position": [-5614.097977526322, -3774.6991011466944]}, {"name": 34816439, "position": [-5705.897977526409, -3772.349101147654]}, {"name": 2386532792, "position": [-2873.5479775263693, 1395.4008988541489]}, {"name": 34816441, "position": [-5745.197977526262, -3744.799101145446]}, {"name": 34816443, "position": [-5741.247977526287, -3682.149101148724]}, {"name": 34816444, "position": [-5706.74797752635, -3659.5991011481033]}, {"name": 310754378, "position": [-2989.5979775262927, 3074.400898853469]}, {"name": 34816446, "position": [-5622.09797752633, -3654.699101147685]}, {"name": 567929279, "position": [895.2020224737289, -2581.6991011460286]}, {"name": 25625024, "position": [-14.497977526284345, -2782.8991011453754]}, {"name": 25625026, "position": [600.4520224736076, -3145.2991011455824]}, {"name": 654050379, "position": [-2423.197977526215, -1160.0491011485303]}, {"name": 34816455, "position": [-4051.147977526259, -3504.2991011486893]}, {"name": 34816456, "position": [-4185.347977526232, -4008.349101148667]}, {"name": 270732364, "position": [-2467.997977526393, -4046.5991011480182]}, {"name": 1365436874, "position": [1325.0020224737646, -1466.149101148062]}, {"name": 25203147, "position": [6362.4520224736525, -794.0491011453332]}, {"name": 830630348, "position": [5876.602022473643, -4464.899101147779]}, {"name": 34818510, "position": [-4118.647977526369, -1694.0991011473727]}, {"name": 249168335, "position": [-609.6479775263841, 2445.5508988516785]}, {"name": 34818512, "position": [-4291.0979775263595, -1287.2991011469992]}, {"name": 25203153, "position": [5836.3520224737895, -707.5991011475935]}, {"name": 36487636, "position": [5177.402022473742, 1162.3508988520825]}, {"name": 36487637, "position": [5065.852022473782, 932.1008988543156]}, {"name": 25203159, "position": [5404.152022473685, -2199.19910114541]}, {"name": 25625048, "position": [-146.79797752625845, -3670.549101148168]}, {"name": 506888666, "position": [-4295.447977526345, -2406.549101145572]}, {"name": 34845775, "position": [3874.502022473747, -1548.9991011463644]}, {"name": 652939740, "position": [-2276.4979775262705, -2063.49910114767]}, {"name": 25625053, "position": [53.50202247367264, -3547.8991011466123]}, {"name": 25625054, "position": [590.2020224737292, -3821.199101146533]}, {"name": 652939743, "position": [-2063.197977526299, -2006.0991011483509]}, {"name": 25625056, "position": [682.152022473792, -3870.8991011482394]}, {"name": 34845776, "position": [3686.7020224737867, -1953.8991011458506]}, {"name": 653601046, "position": [-716.547977526405, -671.2491011455768]}, {"name": 1224778213, "position": [2039.9020224737274, 640.2008988537489]}, {"name": 36487655, "position": [5943.052022473694, 733.1008988522569]}, {"name": 36487657, "position": [6065.1020224737895, 963.2008988518237]}, {"name": 133052906, "position": [610.0520224736616, 470.45089885244806]}, {"name": 94269863, "position": [-2381.097977526281, 4326.95089885371]}, {"name": 133052908, "position": [824.0520224735981, 322.0508988519555]}, {"name": 305339474, "position": [-6373.39797752623, -2743.4991011467955]}, {"name": 2503919579, "position": [-3976.2479775262705, 3758.550898851354]}, {"name": 21346799, "position": [-225.94797752639727, 2128.300898853297]}, {"name": 652939761, "position": [-1915.5979775262733, -1832.9991011469815]}, {"name": 133128690, "position": [1161.5020224737816, 1438.600898854503]}, {"name": 721638483, "position": [1308.052022473749, -2750.9991011456236]}, {"name": 21346804, "position": [-2019.1979775263658, 2799.500898852614]}, {"name": 36487669, "position": [5235.402022473634, 323.45089885410516]}, {"name": 36487670, "position": [5369.052022473619, 279.25089885272314]}, {"name": 3905020329, "position": [-4111.54797752622, 3049.950898851961]}, {"name": 34818552, "position": [-6574.947977526335, -557.3491011467979]}, {"name": 133128533, "position": [1131.8520224736783, 803.450898853697]}, {"name": 34818554, "position": [-6210.847977526246, -338.19910114729623]}, {"name": 34818555, "position": [-6015.197977526254, -81.59910114713398]}, {"name": 34845781, "position": [3414.4520224737016, -34.899101148511136]}, {"name": 506888704, "position": [-5194.947977526398, -2186.5491011467952]}, {"name": 654070275, "position": [4492.602022473591, 2511.300898852653]}, {"name": 4547131002, "position": [-1880.297977526313, 226.8008988544068]}, {"name": 281774765, "position": [-730.6479775261998, -458.94910114796517]}, {"name": 146706953, "position": [-741.3979775263701, -2048.8491011469987]}, {"name": 695568906, "position": [-2248.4479775262134, 250.40089885308703]}, {"name": 133128715, "position": [2147.302022473596, 1175.3508988512351]}, {"name": 2705350402, "position": [4836.302022473759, -2346.5491011478434]}, {"name": 913934862, "position": [5372.702022473641, 861.4008988523381]}, {"name": 34818576, "position": [-5960.197977526338, -400.7991011469869]}, {"name": 94269969, "position": [-1670.0479775262345, 3775.550898854618]}, {"name": 158835218, "position": [1651.4520224737428, 2493.5008988542504]}, {"name": 151351827, "position": [-1533.4979775263325, 4169.750898853408]}, {"name": 1219877396, "position": [5367.952022473643, 3927.050898852258]}, {"name": 920963605, "position": [-3044.097977526361, 1735.9508988512573]}, {"name": 368274, "position": [3110.6520224737365, -906.5491011455151]}, {"name": 306086423, "position": [-575.5979775263764, -3136.2991011469885]}, {"name": 34818584, "position": [-5758.647977526232, -121.69910114678828]}, {"name": 1524853508, "position": [-4254.097977526294, -2461.849101148772]}, {"name": 36487706, "position": [5632.152022473802, 802.3508988515005]}, {"name": 36487707, "position": [6237.702022473757, 665.5008988545319]}, {"name": 133128732, "position": [2058.352022473731, 1394.4508988537052]}, {"name": 34845786, "position": [4469.852022473741, 638.4508988546145]}, {"name": 929536542, "position": [-2026.0979775263977, -2896.699101146538]}, {"name": 94265887, "position": [-1336.0979775263181, 3276.900898853796]}, {"name": 133128736, "position": [2538.0520224735915, 1426.2508988522882]}, {"name": 506888737, "position": [-4637.6979775262225, -2371.8991011456583]}, {"name": 506888738, "position": [-4430.04797752633, -2392.899101145929]}, {"name": 133128739, "position": [2334.8520224737435, 1570.9508988521748]}, {"name": 151347748, "position": [-3890.74797752631, 3870.0508988540605]}, {"name": 34816549, "position": [-4626.6479775263215, -3586.5991011476694]}, {"name": 4958548518, "position": [-1172.1979775263235, -490.79910114713243]}, {"name": 133128744, "position": [3260.602022473691, 1890.200898852612]}, {"name": 1365433436, "position": [1696.852022473605, -1381.4991011464883]}, {"name": 277572138, "position": [-4063.2479775262186, 621.8008988518875]}, {"name": 34818603, "position": [-6848.547977526209, 1227.1008988520293]}, {"name": 133128748, "position": [3053.902022473798, 2030.0008988520801]}, {"name": 133128750, "position": [3555.102022473777, 2079.3508988532494]}, {"name": 3732186353, "position": [6064.802022473615, 3415.0008988547143]}, {"name": 270185008, "position": [3582.552022473706, -3070.6991011477667]}, {"name": 3772612360, "position": [3683.9520224736243, 3065.350898854291]}, {"name": 133128755, "position": [3348.602022473779, 2218.200898852274]}, {"name": 1365433438, "position": [1953.2520224736504, -1388.699101145363]}, {"name": 133128760, "position": [3691.802022473656, 2167.1508988525547]}, {"name": 310350260, "position": [-3279.4979775263578, 3340.050898852809]}, {"name": 34818618, "position": [-6498.697977526335, 925.900898852916]}, {"name": 1183501407, "position": [3156.102022473739, -798.2491011482296]}, {"name": 34818620, "position": [-6273.547977526217, 749.5008988520624]}, {"name": 3732222525, "position": [4370.952022473729, 2286.550898851658]}, {"name": 3732222526, "position": [4171.4020224736805, 2156.5008988524423]}, {"name": 3732222527, "position": [3921.1520224737837, 2323.300898851244]}, {"name": 3732222528, "position": [3718.4020224736437, 2452.3008988523998]}, {"name": 3732222529, "position": [3820.90202247376, 2385.70089885215]}, {"name": 3732222530, "position": [3459.1520224735996, 2617.300898851482]}, {"name": 295330571, "position": [-6243.397977526266, -1268.2491011482]}, {"name": 185858628, "position": [-4454.347977526308, 931.3008988520721]}, {"name": 159973957, "position": [-281.89797752631307, 515.3508988513522]}, {"name": 3732222534, "position": [4275.202022473668, 2224.1508988543046]}, {"name": 34816583, "position": [-2386.8479775264186, -4384.499101146133]}, {"name": 3732222536, "position": [3434.6020224735876, 3173.3008988545917]}, {"name": 3134287628, "position": [-64.1979775262147, -371.34910114744457]}, {"name": 2386532740, "position": [-2986.597977526317, 1640.3508988531712]}, {"name": 133128779, "position": [2207.502022473662, 2118.2508988530913]}, {"name": 4050195020, "position": [2458.1020224736517, -4224.499101148638]}, {"name": 133129314, "position": [1085.4020224737583, 491.15089885276575]}, {"name": 270803125, "position": [-3884.897977526336, -394.09910114684976]}, {"name": 159883856, "position": [-434.1979775264182, 2304.550898852398]}, {"name": 691196497, "position": [6651.952022473706, -3423.399101148306]}, {"name": 94267986, "position": [2484.552022473663, 3912.2008988528023]}, {"name": 21305939, "position": [854.9020224737358, -2637.999101146704]}, {"name": 1183500885, "position": [3693.0020224736904, -1753.7991011487009]}, {"name": 5057415766, "position": [-6574.097977526394, 2665.450898852839]}, {"name": 948791895, "position": [-5780.09797752621, -3307.8491011480082]}, {"name": 94270046, "position": [-1323.8979775263006, 3924.650898852633]}, {"name": 94270047, "position": [-2.547977526301537, 4327.6008988542]}, {"name": 133128800, "position": [2371.2020224737616, 1068.0008988543932]}, {"name": 270186256, "position": [3294.0520224737925, -2168.2491011461025]}, {"name": 654047843, "position": [-3175.9479775264053, -860.0991011462611]}, {"name": 654047845, "position": [-2394.3479775263563, -1141.5991011460846]}, {"name": 29588071, "position": [-6680.197977526392, 4251.050898851361]}, {"name": 2561299795, "position": [-3191.6479775262464, -2466.0991011487]}, {"name": 4791973991, "position": [502.95202247374607, 1756.950898851528]}, {"name": 158843500, "position": [-820.84797752624, 4348.150898852765]}, {"name": 4069612199, "position": [-4401.497977526203, 272.15089885146426]}, {"name": 146724486, "position": [-1544.0979775263042, -1425.649101147286]}, {"name": 1183500911, "position": [3108.5520224736206, -1144.1991011480468]}, {"name": 506888656, "position": [-4984.997977526273, -2486.3491011473116]}, {"name": 370134462, "position": [-5092.747977526235, -119.59910114711647]}, {"name": 133129321, "position": [863.202022473697, -265.0991011456938]}, {"name": 133128980, "position": [1471.6520224737906, 1641.4008988512307]}, {"name": 185848442, "position": [-2959.597977526318, -151.89910114798977]}, {"name": 1219877311, "position": [5464.402022473669, 3901.500898852106]}, {"name": 952746620, "position": [-4423.04797752624, -1863.6491011463363]}, {"name": 1223805565, "position": [1847.502022473746, 916.9508988513542]}, {"name": 141566590, "position": [-4857.147977526343, 3937.5508988541696]}, {"name": 1223805567, "position": [1526.5520224736483, 1127.5008988533841]}, {"name": 1223805568, "position": [1435.8020224736201, 1058.6508988517096]}, {"name": 36485568, "position": [-842.447977526417, 894.9008988530238]}, {"name": 666952322, "position": [3957.102022473791, -1547.799101146552]}, {"name": 1365433451, "position": [1108.852022473794, -1462.999101146778]}, {"name": 932276868, "position": [-3780.647977526419, -2760.6491011482603]}, {"name": 116147990, "position": [5549.602022473677, 3926.800898852889]}, {"name": 666952326, "position": [3809.8520224736367, -1549.8991011462238]}, {"name": 34816647, "position": [-4073.8979775263306, -4095.649101145682]}, {"name": 1223805577, "position": [1750.8020224736854, 852.6008988525291]}, {"name": 2705350423, "position": [5798.102022473772, -2363.74910114634]}, {"name": 133128846, "position": [2510.2520224737914, 1236.6008988529131]}, {"name": 25625757, "position": [2615.852022473719, -3463.549101148544]}, {"name": 1976882949, "position": [-1913.0479775262277, -1639.5491011458319]}, {"name": 34816662, "position": [-5164.547977526412, -4401.799101145798]}, {"name": 25625239, "position": [982.2520224735954, -4020.7491011479133]}, {"name": 272269976, "position": [-3698.3479775263286, -2760.449101145923]}, {"name": 25625242, "position": [1208.8020224736429, -4136.149101146458]}, {"name": 204843940, "position": [3244.2020224736634, -329.9491011468092]}, {"name": 25625246, "position": [1445.2020224737794, -3850.449101147291]}, {"name": 94268063, "position": [1224.2520224736709, 3284.950898851946]}, {"name": 177220256, "position": [1371.25202247379, -1980.099101146493]}, {"name": 133128865, "position": [2979.1520224737856, 1335.8508988545736]}, {"name": 305339475, "position": [-6493.497977526408, -2757.5991011481447]}, {"name": 4069612195, "position": [-4465.647977526243, 298.15089885332213]}, {"name": 2386533028, "position": [-1822.1479775262228, 424.9008988530534]}, {"name": 4069612197, "position": [-4446.247977526241, 288.70089885302264]}, {"name": 3730881190, "position": [1249.352022473671, 232.40089885234738]}, {"name": 3730881191, "position": [1289.052022473758, 236.90089885164411]}, {"name": 3730881192, "position": [1355.4020224737505, 190.8008988529275]}, {"name": 4069612201, "position": [-4388.497977526385, 266.00089885420175]}, {"name": 368272, "position": [5425.602022473663, 1893.750898851465]}, {"name": 133128875, "position": [3191.652022473734, 1444.6508988541495]}, {"name": 25625261, "position": [1022.2020224737172, -4237.399101146621]}, {"name": 185856687, "position": [-6614.947977526375, 1781.1508988536673]}, {"name": 666946225, "position": [5315.302022473656, 1270.1508988541832]}, {"name": 1219877554, "position": [5381.10202247366, 3863.850898852661]}, {"name": 185876213, "position": [-2825.447977526263, -383.0491011456161]}, {"name": 2386533045, "position": [-1776.6979775262205, 393.150898851502]}, {"name": 34816457, "position": [-4208.197977526363, -4099.999101146778]}, {"name": 25624010, "position": [2523.502022473645, -3997.3991011486023]}, {"name": 133128894, "position": [2580.002022473771, 1011.5008988513807]}, {"name": 4069612223, "position": [-2849.947977526357, -398.4991011485306]}, {"name": 1147407040, "position": [3590.7020224736907, 2237.850898854532]}, {"name": 4468710859, "position": [437.1520224737413, -554.1491011484823]}, {"name": 25625284, "position": [638.402022473672, -3452.549101147895]}, {"name": 1987166918, "position": [-4064.447977526253, -2671.8491011479273]}, {"name": 4453288647, "position": [-4276.347977526296, -1205.149101146219]}, {"name": 666946248, "position": [5417.602022473656, 1490.7508988528662]}, {"name": 25625289, "position": [501.4020224736182, -3356.5991011457186]}, {"name": 666946250, "position": [5364.202022473785, 1535.7008988523546]}, {"name": 281774796, "position": [-675.6979775262017, -425.3991011466951]}, {"name": 204829757, "position": [2871.302022473765, 1018.1508988544863]}, {"name": 4453288654, "position": [-3928.9979775263273, -1894.1991011480752]}, {"name": 270185390, "position": [3457.152022473764, -2097.849101147631]}, {"name": 675140728, "position": [-6031.69797752634, 4020.150898853103]}, {"name": 4069612243, "position": [-3002.74797752631, -657.2491011453963]}, {"name": 133128921, "position": [3147.552022473743, 1474.9008988523826]}, {"name": 506888922, "position": [-4264.897977526383, -2011.8491011480444]}, {"name": 1365436879, "position": [1324.352022473718, -1492.4991011469046]}, {"name": 506888925, "position": [-4277.497977526412, -2338.1491011456037]}, {"name": 368286, "position": [1123.5520224737172, -436.6991011472976]}, {"name": 666946271, "position": [5163.352022473644, 1301.35089885286]}, {"name": 930837217, "position": [-2835.4479775263285, -1289.7491011472084]}, {"name": 4069612260, "position": [-2526.6479775263306, -844.5491011457307]}, {"name": 830630294, "position": [5910.252022473639, -4446.14910114538]}, {"name": 4069612264, "position": [-4484.497977526258, -888.4491011471596]}, {"name": 2705350335, "position": [4744.252022473638, -2295.649101146324]}, {"name": 3035151082, "position": [981.4520224737944, 4348.35089885155]}, {"name": 25625325, "position": [1797.352022473664, -3346.5991011460974]}, {"name": 3732250538, "position": [3309.652022473797, 3033.8508988521085]}, {"name": 25625329, "position": [2222.202022473585, -3441.249101147292]}, {"name": 25625331, "position": [2145.3020224737606, -3523.89910114681]}, {"name": 4069612278, "position": [-4332.647977526305, -1221.4491011484085]}, {"name": 1976882985, "position": [-1985.4979775262293, -1789.9491011483804]}, {"name": 2386533113, "position": [-1854.697977526243, 322.1508988531241]}, {"name": 159886074, "position": [1492.852022473734, 3204.4008988521]}, {"name": 25625339, "position": [2269.3520224736917, -4163.199101146375]}, {"name": 2386533118, "position": [-2022.947977526224, 302.7508988537875]}, {"name": 929534719, "position": [-1883.6979775262996, -2979.24910114844]}, {"name": 2386533122, "position": [-2160.797977526219, 311.70089885179664]}, {"name": 3772612395, "position": [5225.402022473791, 1909.0008988520424]}, {"name": 243647236, "position": [-2328.9979775262814, 3192.0008988528534]}, {"name": 2557088517, "position": [-2454.2479775262473, 2361.450898852979]}, {"name": 141564678, "position": [-5494.597977526272, 3599.1008988531803]}, {"name": 241885960, "position": [-347.29797752630634, -2209.349101146785]}, {"name": 1524853513, "position": [-4200.597977526366, -2540.1991011477776]}, {"name": 133128970, "position": [2418.502022473623, 1972.1008988540234]}, {"name": 1524853515, "position": [-4230.497977526282, -2543.6991011460464]}, {"name": 1503278492, "position": [-628.8479775262701, -807.699101148529]}, {"name": 2689489679, "position": [942.6520224737889, -2625.599101147458]}, {"name": 2689489680, "position": [3376.2020224736843, -3017.1991011478385]}, {"name": 1183501073, "position": [3767.8520224737613, -1768.5991011475721]}, {"name": 204834533, "position": [2220.2020224737494, 271.45089885394214]}, {"name": 371608340, "position": [719.0020224736581, 2875.550898853163]}, {"name": 2689489685, "position": [3203.7520224736936, -3158.6991011458567]}, {"name": 151352087, "position": [-545.347977526367, 4166.7008988532925]}, {"name": 185885465, "position": [3203.5020224736586, -2387.099101145651]}, {"name": 666945453, "position": [5397.5520224736065, 1602.3008988526044]}, {"name": 185858261, "position": [-4535.747977526316, 165.75089885151328]}, {"name": 133128988, "position": [1265.0020224735936, 1328.4508988533617]}, {"name": 185885472, "position": [5723.852022473608, -2405.84910114805]}, {"name": 185885473, "position": [6456.702022473726, -2432.7491011462143]}, {"name": 2557088547, "position": [-2298.797977526412, 2301.2008988523294]}, {"name": 34817753, "position": [-6126.147977526309, -3180.649101146571]}, {"name": 133129829, "position": [749.2520224736676, 273.65089885122984]}, {"name": 25625572, "position": [3109.2520224735854, -3118.799101148539]}, {"name": 205095721, "position": [6750.8520224737185, 51.5508988527813]}, {"name": 506888740, "position": [-4603.797977526414, -2191.0991011466763]}, {"name": 25203501, "position": [5406.552022473754, -2118.7491011467328]}, {"name": 2705349422, "position": [6048.402022473587, 3811.750898851329]}, {"name": 1365433480, "position": [2124.052022473677, -1624.949101145745]}, {"name": 25203506, "position": [5846.852022473703, -2129.999101146751]}, {"name": 1181634293, "position": [3029.7520224737973, -891.1491011467376]}, {"name": 160015156, "position": [271.30202247360734, 863.6508988537628]}, {"name": 174002654, "position": [1753.0520224737777, 3970.700898854318]}, {"name": 34816822, "position": [-5508.147977526301, -4508.849101146239]}, {"name": 1928784695, "position": [1893.102022473725, 4310.700898852105]}, {"name": 94257976, "position": [-3098.2979775262543, 4052.0008988522704]}, {"name": 133129017, "position": [1947.0520224735833, 1323.4008988511903]}, {"name": 929440570, "position": [-3029.197977526321, -3469.449101146438]}, {"name": 21346783, "position": [443.4520224736449, 1718.0508988516863]}, {"name": 25203509, "position": [6432.8520224736785, -2141.199101146185]}, {"name": 21346784, "position": [567.202022473623, 1798.9508988520697]}, {"name": 1298261907, "position": [1605.102022473659, -1116.2991011453016]}, {"name": 1179696267, "position": [3827.85202247371, -183.2491011484194]}, {"name": 295330628, "position": [-5791.497977526205, -1605.2991011470397]}, {"name": 2440229701, "position": [-5977.74797752626, 4182.500898853192]}, {"name": 666946376, "position": [5254.302022473789, 1144.5008988530958]}, {"name": 160018100, "position": [568.4020224736574, 1634.500898852309]}, {"name": 25625286, "position": [1491.2520224736882, -3492.599101146965]}, {"name": 159894354, "position": [1382.8520224736797, 3878.500898853332]}, {"name": 5056877395, "position": [-6077.597977526272, 2323.75089885295]}, {"name": 2705349460, "position": [5574.252022473747, 3727.950898852583]}, {"name": 1893476494, "position": [832.9520224736875, -2677.0991011453307]}, {"name": 1219826518, "position": [5703.8520224736985, 3652.6508988536934]}, {"name": 160019289, "position": [639.1020224736366, 1757.7508988537716]}, {"name": 306086747, "position": [-648.2479775262728, -2966.8991011462253]}, {"name": 975956753, "position": [-6291.147977526279, 763.5508988528272]}, {"name": 831929183, "position": [3329.402022473671, -4467.299101147404]}, {"name": 2561299814, "position": [-3510.8979775262396, -2736.399101145537]}, {"name": 930837353, "position": [-2712.5479775262916, -1210.0991011472217]}, {"name": 1183501163, "position": [3351.6520224736723, -1473.8491011456745]}, {"name": 654070636, "position": [3388.302022473644, 3206.250898852403]}, {"name": 141568877, "position": [-3693.097977526261, 2707.800898853918]}, {"name": 1224672966, "position": [2001.5520224736515, -1988.6491011469332]}, {"name": 29434737, "position": [6260.752022473781, 1344.550898853214]}, {"name": 29434738, "position": [5661.402022473671, 182.65089885360908]}, {"name": 5056992116, "position": [3828.202022473581, -3059.749101147702]}, {"name": 5056992117, "position": [3584.6020224736817, -3033.649101148228]}, {"name": 5056992118, "position": [3471.102022473582, -3025.249101145988]}, {"name": 5056992119, "position": [-1652.6979775262073, -1150.9991011457998]}, {"name": 133129080, "position": [2025.6020224735937, 1373.5008988540187]}, {"name": 267659010, "position": [-3669.5479775263884, -638.4491011459659]}, {"name": 167918461, "position": [3341.8520224737235, 2853.35089885308]}, {"name": 167918462, "position": [3579.2020224736375, 2698.700898854156]}, {"name": 913935232, "position": [5068.602022473723, 380.50089885288685]}, {"name": 652952449, "position": [-3395.9479775262926, -1433.149101146114]}, {"name": 133129092, "position": [1610.4020224736448, 1620.6008988532972]}, {"name": 133058023, "position": [962.9020224737328, 1311.750898853603]}, {"name": 2705349513, "position": [5938.352022473614, 3495.5008988539757]}, {"name": 1229142922, "position": [-5710.197977526254, 3558.750898854157]}, {"name": 21346797, "position": [-1023.6479775262985, 3583.0508988539123]}, {"name": 141567053, "position": [-5864.397977526359, 4107.550898851287]}, {"name": 133129106, "position": [1858.152022473636, 1728.400898851845]}, {"name": 270186307, "position": [2243.9520224737385, -2910.699101146719]}, {"name": 2353689492, "position": [6731.852022473728, 4116.100898851727]}, {"name": 1905705879, "position": [858.2520224735823, -2536.349101145419]}, {"name": 1905705880, "position": [922.9020224736928, -2658.049101146531]}, {"name": 160027545, "position": [1163.6020224736753, -468.49910114588056]}, {"name": 94258075, "position": [-2258.8479775262904, 3892.8008988534657]}, {"name": 925936540, "position": [-1116.4979775262207, -2290.6991011453215]}, {"name": 94266272, "position": [-45.94797752632829, 3442.9008988539067]}, {"name": 94266273, "position": [172.4520224737347, 3501.300898854254]}, {"name": 94266274, "position": [512.4020224736014, 3701.050898854419]}, {"name": 94266276, "position": [942.7520224736252, 3949.4508988546786]}, {"name": 21346801, "position": [-1155.3979775262846, 1874.5008988538814]}, {"name": 3520025512, "position": [3680.2520224736845, -97.74910114757063]}, {"name": 3520025513, "position": [3659.9020224736823, -122.49910114547902]}, {"name": 133130095, "position": [111.85202247365744, -451.5491011467532]}, {"name": 21346802, "position": [-1938.447977526403, 2662.750898853261]}, {"name": 133129134, "position": [1972.2020224737234, 1634.0008988535715]}, {"name": 270185391, "position": [3502.6020224737663, -2188.94910114642]}, {"name": 2704171953, "position": [3482.9020224735887, 3203.100898854672]}, {"name": 270185394, "position": [3459.0020224736227, -3055.849101148311]}, {"name": 2705350389, "position": [5799.302022473585, -2318.0991011457763]}, {"name": 158835639, "position": [1958.952022473648, 2287.5008988521017]}, {"name": 25625656, "position": [4213.202022473661, -4229.499101146672]}, {"name": 25624511, "position": [-2071.747977526295, -997.1491011455669]}, {"name": 24909781, "position": [1475.4020224736487, 1184.7008988539187]}, {"name": 270922855, "position": [2427.802022473724, -3544.8991011470807]}, {"name": 277062589, "position": [-5728.947977526211, 1756.4008988522062]}, {"name": 141566589, "position": [-5380.647977526242, 4363.750898853879]}, {"name": 133129152, "position": [1668.9020224736062, 1486.6508988546911]}, {"name": 4508646339, "position": [3295.9520224737917, -2076.8491011473598]}, {"name": 25624054, "position": [1843.4020224737947, -4456.799101145492]}, {"name": 133129161, "position": [1953.5520224736035, 1568.000898853228]}, {"name": 133128695, "position": [2155.002022473651, 720.600898851842]}, {"name": 133129165, "position": [1944.7520224737946, 1422.5008988546506]}, {"name": 25625563, "position": [3801.0520224736056, -3103.4491011467935]}, {"name": 470173, "position": [3155.752022473646, 3439.000898854516]}, {"name": 260588707, "position": [-4775.847977526393, -1751.1991011467387]}, {"name": 25625557, "position": [3351.752022473731, -3311.099101146908]}, {"name": 652907478, "position": [-3453.247977526219, -2289.049101147356]}, {"name": 25625561, "position": [3575.7520224737327, -3170.0991011476276]}, {"name": 930671578, "position": [-1560.3979775262733, -2184.4991011477077]}, {"name": 2645500891, "position": [-4856.247977526263, 2910.8508988535677]}, {"name": 25625567, "position": [3152.6520224736123, -3011.5491011457607]}, {"name": 2463833595, "position": [-5690.047977526369, 1090.4508988538453]}, {"name": 308767716, "position": [-5387.097977526345, 171.5508988517911]}, {"name": 310348773, "position": [-5673.397977526307, 1894.2508988537554]}, {"name": 185877479, "position": [-3956.8479775262676, 695.750898852765]}, {"name": 4508646376, "position": [6663.002022473607, -2286.249101146609]}, {"name": 34909161, "position": [-1465.2979775262586, 3137.0008988531595]}, {"name": 666952683, "position": [3748.602022473735, -1808.1991011484888]}, {"name": 304991212, "position": [-3688.697977526356, -228.04910114615495]}, {"name": 1183501055, "position": [3172.7520224738014, -1103.8991011460553]}, {"name": 133129199, "position": [1042.0520224736497, 746.1008988514095]}, {"name": 2463876709, "position": [760.5020224736858, 3508.7508988524974]}, {"name": 159894355, "position": [1959.6520224736125, 4264.250898852851]}, {"name": 272270324, "position": [-3564.7479775262614, -2470.8991011479498]}, {"name": 4956714225, "position": [3522.552022473757, -2290.0491011483837]}, {"name": 830630902, "position": [4287.002022473674, -3670.449101147]}, {"name": 204831572, "position": [3991.0020224736, 1733.800898854554]}, {"name": 205095932, "position": [6509.05202247376, -816.5991011459539]}, {"name": 470186, "position": [-1677.4979775262543, -1167.249101147405]}, {"name": 675140607, "position": [-6476.397977526416, 4373.300898851795]}, {"name": 4958488598, "position": [-3293.647977526293, 82.90089885321095]}, {"name": 3734288121, "position": [2467.502022473589, 2002.8008988539625]}, {"name": 517915652, "position": [2623.9020224736455, -3698.69910114673]}, {"name": 654070789, "position": [4610.75202247363, 2431.3508988527133]}, {"name": 929367046, "position": [-2542.5479775262884, -4067.1991011471673]}, {"name": 133129223, "position": [888.9520224737435, 1110.4008988525038]}, {"name": 160020757, "position": [1051.1520224736337, 1705.5008988542397]}, {"name": 160023534, "position": [-1351.747977526241, 167.8008988541535]}, {"name": 94268426, "position": [-1243.2979775263143, 3580.95089885424]}, {"name": 1364890638, "position": [1225.0020224737757, -1176.8491011459048]}, {"name": 1364890639, "position": [1539.802022473724, -1205.449101146172]}, {"name": 173999126, "position": [689.60202247359, 4126.650898854223]}, {"name": 159892504, "position": [733.4520224737684, 3528.350898854171]}, {"name": 65311769, "position": [6205.2520224737955, 3480.15089885223]}, {"name": 133129242, "position": [2156.052022473709, 561.0508988524998]}, {"name": 930837679, "position": [-3177.2479775262764, -973.3991011486864]}, {"name": 133129245, "position": [2276.1520224736655, 637.8508988547082]}, {"name": 270920539, "position": [3332.602022473763, -4432.349101147537]}, {"name": 25625636, "position": [3562.9520224735866, -3320.5491011472077]}, {"name": 25625641, "position": [4336.702022473604, -3348.3991011458156]}, {"name": 25625643, "position": [4315.352022473684, -3475.6491011478374]}, {"name": 25625645, "position": [4172.752022473692, -3611.5491011479153]}, {"name": 833088559, "position": [2423.1520224737847, -4342.199101145638]}, {"name": 25625648, "position": [5248.602022473791, -4166.449101148828]}, {"name": 4155927601, "position": [-1988.29797752631, 277.40089885242014]}, {"name": 25625650, "position": [5851.902022473654, -4478.449101146253]}, {"name": 25203763, "position": [5418.052022473585, -1818.9491011462167]}, {"name": 833088564, "position": [2546.902022473763, -3832.299101148351]}, {"name": 1183501365, "position": [3205.8020224736692, -1456.5491011460097]}, {"name": 25203766, "position": [6030.1520224737005, -1811.749101147342]}, {"name": 25625655, "position": [4730.052022473785, -4521.249101145486]}, {"name": 654050360, "position": [-2886.3979775262114, -1555.6491011459173]}, {"name": 654050361, "position": [-2639.847977526255, -1439.6991011480509]}, {"name": 34845754, "position": [2983.302022473655, -501.7991011477818]}, {"name": 34845756, "position": [3181.952022473622, -1133.1991011473974]}, {"name": 25625661, "position": [3655.802022473731, -4584.449101148635]}, {"name": 654050366, "position": [-2609.397977526351, -1362.3991011471048]}, {"name": 34845759, "position": [2014.0020224737043, -1237.2491011483078]}, {"name": 34845761, "position": [3286.8520224735853, -1466.549101145631]}, {"name": 654050370, "position": [-2819.9479775263826, -1414.0491011467304]}, {"name": 34845763, "position": [992.8520224737891, -926.0991011466047]}, {"name": 25625668, "position": [3341.4020224737937, -4336.849101147067]}, {"name": 721638470, "position": [1176.6020224737163, -3306.8991011475646]}, {"name": 249168967, "position": [-20.54797752637505, 2814.3508988520693]}, {"name": 94266440, "position": [3247.552022473732, 4075.9008988544565]}, {"name": 34845770, "position": [3078.9020224737396, -805.5991011453045]}, {"name": 133055563, "position": [952.6520224736323, 689.0508988526278]}, {"name": 94268492, "position": [-2896.1479775262424, 2988.4008988538826]}, {"name": 133055565, "position": [1165.7020224737912, 543.1008988523445]}, {"name": 1365433422, "position": [1554.952022473799, -1308.849101146592]}, {"name": 831943759, "position": [3382.8520224736812, -3875.2491011457832]}, {"name": 1365433424, "position": [1054.952022473632, -1331.4991011483812]}, {"name": 305339473, "position": [-4291.597977526207, -2507.9491011474884]}, {"name": 34845778, "position": [4289.652022473778, -1543.0991011484707]}, {"name": 1365433427, "position": [2034.8520224737765, -1359.5491011457739]}, {"name": 34845780, "position": [4815.802022473781, -484.0991011469953]}, {"name": 1365433429, "position": [2171.252022473702, -1375.6991011462105]}, {"name": 25625686, "position": [3413.9020224737137, -3516.299101146814]}, {"name": 34845783, "position": [4060.952022473696, 867.9008988536907]}, {"name": 831943768, "position": [3346.20202247371, -4296.399101146875]}, {"name": 34845785, "position": [4271.652022473704, 749.6508988538153]}, {"name": 831929434, "position": [3250.6520224737656, -4409.04910114881]}, {"name": 270731367, "position": [-700.0479775263191, -3010.649101145901]}, {"name": 141569116, "position": [-3174.247977526301, 2335.3508988535054]}, {"name": 133129309, "position": [1257.102022473644, 602.2508988543507]}, {"name": 34845790, "position": [3708.5020224736363, 380.25089885351804]}, {"name": 721638495, "position": [906.8020224736184, -2566.0991011484666]}, {"name": 930735200, "position": [-3181.397977526368, -1250.899101147951]}, {"name": 1365433442, "position": [1251.6020224737633, -1422.1991011460489]}, {"name": 34845795, "position": [4286.702022473721, -375.7491011455727]}, {"name": 133129316, "position": [1191.6020224735923, 431.5508988526062]}, {"name": 929442917, "position": [-3441.5479775262716, -2831.699101147223]}, {"name": 1365433447, "position": [1140.7020224736275, -1437.2491011478417]}, {"name": 270730345, "position": [444.2520224736679, -4530.249101147632]}, {"name": 654070890, "position": [3221.352022473756, 3381.700898852813]}, {"name": 272270443, "position": [-3641.897977526343, -2557.2491011480734]}, {"name": 1739548178, "position": [-6082.1979775262935, 861.3508988517538]}, {"name": 1365433458, "position": [2191.302022473751, -1463.0991011479466]}, {"name": 1365433459, "position": [1227.9520224736107, -1477.3991011480803]}, {"name": 1365433460, "position": [1214.1020224736287, -1509.6491011483693]}, {"name": 583327934, "position": [2421.0020224737505, -3009.5491011472577]}, {"name": 1365433462, "position": [1434.0020224736793, -1526.3991011487121]}, {"name": 1365433463, "position": [1349.3020224737418, -1529.0991011482902]}, {"name": 1365433464, "position": [1323.502022473777, -1529.9491011475652]}, {"name": 2556489919, "position": [-870.4979775262523, 3769.9008988525406]}, {"name": 3730881193, "position": [1394.8020224736624, 167.55089885123198]}, {"name": 1365433469, "position": [1638.152022473749, -1541.8991011486582]}, {"name": 25625658, "position": [4250.552022473597, -4533.499101146532]}, {"name": 1365433475, "position": [1683.0520224737634, -1599.5491011473462]}, {"name": 158845254, "position": [-2939.0979775263395, 3862.55089885168]}, {"name": 2705350396, "position": [6617.85202247378, -2335.49910114661]}, {"name": 185857158, "position": [-6787.097977526413, 2582.2008988534153]}, {"name": 158834411, "position": [-566.0979775263808, 2031.8508988523831]}, {"name": 1179696264, "position": [3934.8020224736492, -144.59910114794639]}, {"name": 94266789, "position": [2683.6020224736412, 3776.4008988538935]}, {"name": 133129204, "position": [939.9520224737668, 854.1008988522947]}, {"name": 675140747, "position": [-5440.79797752639, 3628.300898853354]}, {"name": 4843850892, "position": [-4077.447977526294, 631.700898853893]}, {"name": 2705349773, "position": [1574.0020224737084, 1158.7508988526452]}, {"name": 4843850894, "position": [-3982.847977526349, 704.5508988525739]}, {"name": 133129359, "position": [284.25202247372994, -706.9991011476873]}, {"name": 133129360, "position": [206.45202247360217, -715.8491011480805]}, {"name": 133128728, "position": [2260.902022473754, 1248.3008988546374]}, {"name": 249169042, "position": [-821.8479775263799, 2622.0508988537003]}, {"name": 310745283, "position": [-905.647977526236, 3620.600898852189]}, {"name": 174042261, "position": [5787.352022473602, 3653.500898852968]}, {"name": 1365433494, "position": [1528.002022473718, -1637.149101146207]}, {"name": 654070255, "position": [4693.852022473743, 2285.5008988535983]}, {"name": 470170, "position": [6648.152022473708, 4201.950898853112]}, {"name": 470171, "position": [5768.552022473727, 3505.2508988542286]}, {"name": 470172, "position": [4574.452022473752, 4316.650898854135]}, {"name": 1893477533, "position": [877.4020224737721, -2605.5991011482147]}, {"name": 470175, "position": [374.65202247366494, 1673.850898853857]}, {"name": 470177, "position": [-1796.1479775263633, 286.0508988540289]}, {"name": 25203875, "position": [5431.152022473684, -1538.9491011461587]}, {"name": 470180, "position": [500.50202247375887, -1241.54910114882]}, {"name": 277578917, "position": [-3740.197977526227, 2136.0008988544623]}, {"name": 470182, "position": [3672.6520224736882, -2200.8491011469287]}, {"name": 470183, "position": [3420.952022473722, -1892.7991011459255]}, {"name": 470184, "position": [2760.5020224736877, 206.45089885462653]}, {"name": 470185, "position": [5258.552022473717, -584.1991011479308]}, {"name": 929535146, "position": [-3239.9479775262475, -2620.249101145333]}, {"name": 470187, "position": [-2060.9979775263464, -1148.9491011467123]}, {"name": 470188, "position": [-1875.9479775263267, -1257.4491011463351]}, {"name": 470189, "position": [-1720.1479775263983, -1404.7991011487682]}, {"name": 470190, "position": [-2587.797977526396, -1955.099101145663]}, {"name": 1227145757, "position": [2247.6520224736782, 657.3008988546292]}, {"name": 470192, "position": [6599.152022473742, -831.4991011459938]}, {"name": 929534840, "position": [-3143.047977526292, -2597.349101147728]}, {"name": 721620626, "position": [2309.1020224736967, -1477.0991011481271]}, {"name": 1365433523, "position": [2033.5020224737655, -1854.8991011471117]}, {"name": 506888734, "position": [-5509.997977526382, -2309.3491011465517]}, {"name": 2705349815, "position": [1716.7020224737594, 821.6008988526369]}, {"name": 929535160, "position": [-792.9479775263815, -3224.299101148631]}, {"name": 506888735, "position": [-5216.747977526248, -2329.4991011475477]}, {"name": 133129405, "position": [176.80202247372102, 260.65089885207726]}, {"name": 116147962, "position": [6112.102022473698, 3380.550898853585]}, {"name": 270922944, "position": [2767.2520224737427, -3530.7991011457316]}, {"name": 506888736, "position": [-4960.997977526249, -2348.7491011486836]}, {"name": 25203906, "position": [6186.35202247364, -1538.3491011462525]}, {"name": 159884486, "position": [624.6020224736081, 3191.9508988522693]}, {"name": 2705349832, "position": [2697.6020224736, 629.6008988542212]}, {"name": 3134287610, "position": [-62.39797752627396, -183.89910114535724]}, {"name": 21378251, "position": [4841.102022473676, 465.7508988543668]}, {"name": 21378252, "position": [3919.352022473621, 951.2508988542834]}, {"name": 310350370, "position": [-3873.397977526283, 3772.4508988539183]}, {"name": 21378254, "position": [3611.8520224737163, 1161.1008988516858]}, {"name": 21378253, "position": [5960.202022473604, 119.95089885274979]}, {"name": 21378256, "position": [5092.40202247363, 2105.2508988539385]}, {"name": 5056992120, "position": [-1708.1479775262753, -1107.6491011472456]}, {"name": 94267807, "position": [1413.5520224736188, 3228.150898852533]}, {"name": 21378259, "position": [3434.9520224736807, 3235.9508988513144]}, {"name": 21378260, "position": [-528.5479775263279, 688.5008988533059]}, {"name": 21378261, "position": [-1270.3479775262317, 2535.900898852361]}, {"name": 21378262, "position": [-1684.3979775262862, 2918.4008988529795]}, {"name": 675140823, "position": [-4229.447977526224, 2721.250898851224]}, {"name": 21378264, "position": [-970.7479775262761, 2746.400898853807]}, {"name": 3732186329, "position": [5656.902022473709, 3696.7508988539066]}, {"name": 21378255, "position": [2706.5520224736074, 598.5008988531604]}, {"name": 3732186332, "position": [5501.352022473593, 3752.350898853507]}, {"name": 3732186333, "position": [5418.2020224737835, 3831.9508988529096]}, {"name": 2705349854, "position": [2365.152022473671, 412.55089885439133]}, {"name": 638583333, "position": [-5002.547977526417, 400.2008988521766]}, {"name": 3732186336, "position": [6092.352022473601, 3440.900898851851]}, {"name": 3732186337, "position": [6108.402022473758, 3535.3508988542617]}, {"name": 3732186338, "position": [6159.4020224737815, 3531.800898851856]}, {"name": 3732186339, "position": [6092.352022473601, 3774.500898853006]}, {"name": 3732186340, "position": [5985.052022473791, 3856.5508988526176]}, {"name": 277572134, "position": [-3064.3979775262233, 1638.750898852237]}, {"name": 3732186342, "position": [5626.002022473653, 3899.8508988541403]}, {"name": 21378257, "position": [752.4020224736195, 1510.35089885454]}, {"name": 133129448, "position": [349.60202247358296, 814.0508988532247]}, {"name": 36489068, "position": [6316.502022473802, 77.75089885342368]}, {"name": 2705349867, "position": [2298.9020224737365, 260.0008988515867]}, {"name": 25625836, "position": [4401.452022473773, -3278.6491011478347]}, {"name": 21378258, "position": [876.0520224737611, 1588.050898853055]}, {"name": 25625838, "position": [4769.3520224736385, -3352.799101147497]}, {"name": 185883887, "position": [1539.9520224737007, -1775.0491011483405]}, {"name": 4956714224, "position": [3655.302022473661, -2301.1991011472333]}, {"name": 277572136, "position": [-3991.397977526345, 708.8008988525019]}, {"name": 270732395, "position": [-2427.7479775263178, -4035.7991011461536]}, {"name": 652950772, "position": [-1712.047977526332, -1615.1491011484609]}, {"name": 185883894, "position": [3668.102022473585, -2121.69910114568]}, {"name": 25625847, "position": [5155.602022473671, -3214.8491011483316]}, {"name": 831929556, "position": [3257.252022473622, -4321.2991011465365]}, {"name": 652950778, "position": [-1666.5979775263295, -1773.4991011479906]}, {"name": 838040829, "position": [-5106.647977526357, -220.64910114849567]}, {"name": 94268670, "position": [-3022.2979775262893, 3819.9008988542005]}, {"name": 151352533, "position": [-726.697977526225, 4380.650898852423]}, {"name": 2543955200, "position": [691.9020224736006, 3466.80089885254]}, {"name": 4955856133, "position": [1286.5520224736304, -1983.499101147146]}, {"name": 506888334, "position": [-4576.8979775262505, -2039.1491011473306]}, {"name": 652950792, "position": [-1953.3479775262208, -1769.3991011462629]}, {"name": 270731910, "position": [-3463.347977526343, -2801.949101147727]}, {"name": 1524897034, "position": [-2149.947977526212, -2862.5991011459464]}, {"name": 21378263, "position": [-444.59797752627316, 3096.1508988518463]}, {"name": 25625869, "position": [5811.452022473684, -3322.9491011468326]}, {"name": 25625871, "position": [5490.952022473739, -3369.3991011460867]}, {"name": 4955856145, "position": [398.2520224736774, -1303.7991011479733]}, {"name": 25625651, "position": [5664.952022473635, -4596.349101145592]}, {"name": 4955856147, "position": [1039.202022473651, -1950.3991011475819]}, {"name": 249169172, "position": [-252.14797752637352, 2969.700898852068]}, {"name": 249169173, "position": [345.4020224737952, 3383.000898853794]}, {"name": 4955856150, "position": [801.2520224736086, -1745.149101147092]}, {"name": 2705349849, "position": [2491.452022473695, 493.30089885302186]}, {"name": 2463833369, "position": [-6062.6979775262325, 1431.8008988531972]}, {"name": 2463833372, "position": [-6001.747977526284, 1386.900898854293]}, {"name": 652950813, "position": [-1662.5479775262963, -2004.0491011457107]}, {"name": 130096418, "position": [6596.95202247379, 4255.200898853673]}, {"name": 3732186331, "position": [5858.002022473663, 3562.850898852332]}, {"name": 1181549860, "position": [6721.652022473768, 948.500898854121]}, {"name": 652950821, "position": [-1591.9979775262939, -1973.149101146987]}, {"name": 277743794, "position": [3890.1520224736696, -205.899101146656]}, {"name": 370349352, "position": [4217.502022473729, -3570.499101147817]}, {"name": 2543955241, "position": [512.4020224736014, 3357.000898851936]}, {"name": 185877802, "position": [-3038.5979775262585, 1602.6508988531418]}, {"name": 2916316459, "position": [2238.902022473788, -1615.4991011454456]}, {"name": 340393005, "position": [-3734.8979775262414, 3657.350898851774]}, {"name": 2561299760, "position": [-4817.247977526362, -1902.699101147931]}, {"name": 146739080, "position": [-2044.547977526401, -1747.4991011461327]}, {"name": 2705349788, "position": [1388.552022473677, 1039.8508988522792]}, {"name": 34816563, "position": [-3469.897977526282, -4522.949101147588]}, {"name": 25625250, "position": [1540.9020224737003, -3925.249101147443]}, {"name": 3732186334, "position": [5989.102022473602, 3459.4508988519124]}, {"name": 2543955254, "position": [771.9520224735987, 3301.30089885472]}, {"name": 133129711, "position": [1221.052022473801, 147.90089885252655]}, {"name": 1503278392, "position": [-2275.297977526236, 224.50089885239777]}, {"name": 652950841, "position": [-1498.4979775263253, -2266.1991011467817]}, {"name": 2561299770, "position": [-3860.197977526347, -2067.7491011475977]}, {"name": 3732186335, "position": [6099.202022473715, 3486.250898852461]}, {"name": 721620623, "position": [1752.1520224736964, -1393.7991011481188]}, {"name": 928560010, "position": [-2149.597977526341, -4567.299101147171]}, {"name": 185857344, "position": [-5968.247977526265, 925.8508988523317]}, {"name": 185857345, "position": [-6348.447977526206, 1241.7508988527004]}, {"name": 185857346, "position": [-5509.59797752637, 1768.300898852715]}, {"name": 776293699, "position": [-2884.097977526201, 2127.750898853975]}, {"name": 204846404, "position": [6128.802022473678, 1091.9008988530265]}, {"name": 141567301, "position": [-5156.747977526299, 3586.450898854565]}, {"name": 133129542, "position": [661.5020224736146, 1116.5008988527347]}, {"name": 1445537096, "position": [781.5020224737345, -2576.1491011486723]}, {"name": 370354998, "position": [5957.852022473675, -3226.999101148209]}, {"name": 1445537099, "position": [796.3020224737161, -2553.899101148005]}, {"name": 270732620, "position": [-2305.4979775263273, -4184.799101146553]}, {"name": 1445537103, "position": [-3196.9979775263723, 127.95089885386801]}, {"name": 654054737, "position": [27.252022473778226, -183.89910114535724]}, {"name": 270732626, "position": [-2356.1479775262574, -4199.749101147177]}, {"name": 34818275, "position": [-5613.547977526334, -1474.3491011479648]}, {"name": 2463876771, "position": [-288.89797752640334, 2762.150898853122]}, {"name": 185858641, "position": [-4554.597977526331, 558.6008988522906]}, {"name": 666950999, "position": [4504.702022473773, -234.24910114755448]}, {"name": 2561299802, "position": [-3445.4979775262464, -2524.499101145494]}, {"name": 305339739, "position": [-6565.847977526351, -2809.599101148308]}, {"name": 2561299804, "position": [-3376.4979775263714, -2539.6991011454875]}, {"name": 1503278429, "position": [-1147.9479775262646, -456.54910114834024]}, {"name": 2503974238, "position": [-6609.597977526249, 2412.550898853283]}, {"name": 2561299807, "position": [-3264.897977526271, -2566.6491011477888]}, {"name": 3734288108, "position": [2612.002022473581, 2054.700898852957]}, {"name": 130096486, "position": [6693.002022473582, 4155.350898852106]}, {"name": 2561299817, "position": [-3854.94797752628, -2752.5491011459735]}, {"name": 123759978, "position": [-3394.24797752641, -2579.449101148157]}, {"name": 3732186343, "position": [5487.502022473612, 3859.2008988516113]}, {"name": 2463833455, "position": [-5943.897977526369, 1228.7008988529635]}, {"name": 204834024, "position": [13.952022473784353, 1038.250898851345]}, {"name": 4508646345, "position": [2093.102022473703, -1908.9991011469465]}, {"name": 204830067, "position": [2831.50202247362, 2522.65089885384]}, {"name": 141569260, "position": [-3474.797977526256, 2178.2508988543723]}, {"name": 160025687, "position": [-1351.8479775262992, 571.0508988521212]}, {"name": 929535353, "position": [-2123.747977526236, -3007.799101148123]}, {"name": 1365433420, "position": [1963.6020224735873, -1303.6491011462203]}, {"name": 25623937, "position": [-972.4979775262988, -3806.049101147124]}, {"name": 25623938, "position": [-1940.3979775263203, -4231.449101148144]}, {"name": 25623939, "position": [-1744.9479775262234, -4145.549101146173]}, {"name": 25623942, "position": [-2152.597977526316, -3460.949101146582]}, {"name": 34818625, "position": [-6769.0979775263395, 51.90089885331872]}, {"name": 25623945, "position": [-2135.5979775263822, -3930.6491011465996]}, {"name": 25623946, "position": [-2593.2979775262766, -3481.0491011469935]}, {"name": 25623948, "position": [-2393.147977526322, -3857.7991011479185]}, {"name": 25623949, "position": [-1514.447977526201, -3430.6491011477647]}, {"name": 833088749, "position": [2876.7020224735875, -3491.4991011483207]}, {"name": 133129373, "position": [441.8520224735989, 74.75089885389252]}, {"name": 2463876773, "position": [-332.547977526243, 2733.650898854023]}, {"name": 133129620, "position": [789.2520224737076, 721.3008988529168]}, {"name": 204836246, "position": [1671.3520224735935, -85.39910114535587]}, {"name": 204836247, "position": [1411.6520224736196, 85.35089885342018]}, {"name": 310350368, "position": [-3863.597977526334, 3767.000898854178]}, {"name": 25624132, "position": [-561.3979775263011, -4090.249101146526]}, {"name": 4956714223, "position": [3440.952022473631, -2288.1491011474964]}, {"name": 2463833500, "position": [-6005.747977526399, 1192.8008988526528]}, {"name": 666949021, "position": [4897.602022473801, 439.0008988544025]}, {"name": 133128773, "position": [2884.6520224736773, 1648.850898853027]}, {"name": 34845764, "position": [3273.65202247365, -789.0491011472989]}, {"name": 185883888, "position": [2084.302022473672, -1930.1991011460018]}, {"name": 25666980, "position": [6506.902022473726, -4120.399101147143]}, {"name": 25666981, "position": [6594.352022473604, -4149.649101147901]}, {"name": 2463833510, "position": [-5542.147977526391, 1183.5008988541063]}, {"name": 94266791, "position": [3706.8020224737543, 3763.550898852941]}, {"name": 1298263464, "position": [2413.7520224736254, -1311.7491011485072]}, {"name": 25666985, "position": [6490.502022473699, -4044.1991011483933]}, {"name": 3732222535, "position": [4545.452022473695, 2387.3508988536687]}, {"name": 4508646347, "position": [1556.7520224737398, -1754.8491011467604]}, {"name": 94267208, "position": [-285.64797752639316, 3818.250898852682]}, {"name": 830630428, "position": [3804.402022473674, -3423.4491011453374]}, {"name": 185883891, "position": [3297.352022473721, -2098.6491011463213]}, {"name": 5044108724, "position": [-2757.447977526306, -1254.89910114851]}, {"name": 666885557, "position": [2652.5520224736088, 208.50089885371403]}, {"name": 653622710, "position": [-2312.847977526289, -1076.1991011456473]}, {"name": 25625680, "position": [3369.2020224735943, -4035.299101147416]}, {"name": 151348664, "position": [-3739.9979775263328, 3788.100898852065]}, {"name": 368305, "position": [-3561.197977526298, -2666.9991011480934]}, {"name": 371608226, "position": [889.5520224736497, 2988.6508988532514]}, {"name": 370134459, "position": [-5109.447977526216, -271.54910114646214]}, {"name": 25623997, "position": [-2201.1979775262703, -4544.099101146059]}, {"name": 25623998, "position": [-2476.4979775262486, -4161.249101148456]}, {"name": 25623999, "position": [-2559.9479775262334, -4042.4491011457067]}, {"name": 4418237888, "position": [4317.152022473625, -3012.1991011462515]}, {"name": 5044108737, "position": [-2664.847977526419, -1314.7991011486226]}, {"name": 666940867, "position": [3253.2020224735893, -1091.799101146762]}, {"name": 133129668, "position": [518.3020224737156, 411.9008988539008]}, {"name": 2006535622, "position": [3698.302022473676, -1926.6491011471487]}, {"name": 94268321, "position": [-4025.9479775262007, 2573.8508988517597]}, {"name": 1224697290, "position": [2244.002022473657, 268.00089885270495]}, {"name": 133129675, "position": [755.3520224736765, -128.94910114624736]}, {"name": 133129375, "position": [912.552022473756, -233.59910114706395]}, {"name": 133129122, "position": [2181.602022473639, 1840.350898852705]}, {"name": 116147966, "position": [6093.102022473707, 3838.850898851831]}, {"name": 4069611768, "position": [-6048.097977526368, 2156.85089885298]}, {"name": 4468710866, "position": [300.7020224736756, -590.3491011487461]}, {"name": 303197652, "position": [-6570.7479775263255, 4314.450898853294]}, {"name": 4468710871, "position": [243.5020224735851, -675.5991011466733]}, {"name": 4804746712, "position": [814.3020224737895, 1549.2508988543818]}, {"name": 1224697305, "position": [2344.602022473774, 358.2508988522193]}, {"name": 4955856167, "position": [-392.69797752639056, -1075.6491011463254]}, {"name": 14798299, "position": [-6527.197977526323, 4339.2508988517875]}, {"name": 34845766, "position": [3701.3020224736515, -137.2491011473187]}, {"name": 133129694, "position": [972.3520224735882, 27.550898852979344]}, {"name": 25666983, "position": [6687.802022473655, -4023.6991011468604]}, {"name": 133058016, "position": [2108.552022473731, 530.7008988530981]}, {"name": 116147982, "position": [5586.7020224738, 3627.300898852326]}, {"name": 2689489681, "position": [3355.252022473776, -3042.74910114799]}, {"name": 133129700, "position": [1084.2520224736418, 45.250898853765875]}, {"name": 133130150, "position": [733.35202247371, -424.9491011485418]}, {"name": 94267985, "position": [2158.452022473778, 3694.7508988518507]}, {"name": 1215367557, "position": [3232.902022473727, -2251.299101146742]}, {"name": 311075068, "position": [-2342.447977526252, 2474.0008988537456]}, {"name": 94268669, "position": [-3513.69797752632, 3582.250898851669]}, {"name": 1224697328, "position": [2712.802022473593, 573.3508988541303]}, {"name": 133129422, "position": [160.35202247377532, 513.5008988546019]}, {"name": 25667061, "position": [6654.252022473716, -3398.699101147429]}, {"name": 3134287620, "position": [-64.64797752636642, -242.49910114804152]}, {"name": 270730746, "position": [148.20202247367575, -3425.5991011455935]}, {"name": 133129723, "position": [1194.9020224737428, 344.7508988543291]}, {"name": 2386548220, "position": [3172.602022473603, -2249.19910114707]}, {"name": 3422228394, "position": [-1669.2479775262113, -44.64910114876375]}, {"name": 1739548159, "position": [-6022.197977526344, 895.7508988522989]}, {"name": 185856415, "position": [-5531.797977526232, 1787.6508988514672]}, {"name": 25625309, "position": [-30.39797752624196, -3325.7491011475795]}, {"name": 370134456, "position": [-5156.597977526322, -212.94910114733057]}, {"name": 311723525, "position": [-3943.847977526227, -2004.7991011473698]}, {"name": 36488710, "position": [5095.552022473582, 111.70089885226275]}, {"name": 1739548171, "position": [-6069.497977526206, 868.5508988541812]}, {"name": 2463833615, "position": [-5732.097977526385, 1066.5008988546276]}, {"name": 185876056, "position": [-3452.597977526395, -780.8991011479804]}, {"name": 94268946, "position": [-3753.197977526268, 3798.950898854514]}, {"name": 1223798291, "position": [1740.1520224737953, 1815.4008988524595]}, {"name": 34818626, "position": [-6076.247977526261, 635.6508988538678]}, {"name": 653602325, "position": [-963.4479775262328, -523.2491011462059]}, {"name": 167919126, "position": [4498.652022473681, 2058.3008988523943]}, {"name": 1739548183, "position": [-6130.597977526353, 833.5508988537299]}, {"name": 34845768, "position": [4195.502022473763, -886.5491011462723]}, {"name": 1739548185, "position": [-6143.69797752623, 825.9008988531491]}, {"name": 2463833626, "position": [-5263.697977526238, 1055.9008988515473]}, {"name": 1739548189, "position": [-6191.047977526232, 798.7008988514788]}, {"name": 241583359, "position": [-4034.197977526244, 747.8008988535123]}, {"name": 133128764, "position": [3488.8020224737024, 2307.700898853682]}, {"name": 931139104, "position": [-2633.0479775262816, -865.3991011478013]}, {"name": 2484772385, "position": [-1898.2979775263864, 458.85089885189245]}, {"name": 2463833634, "position": [-5766.7979775262165, 1045.80089885431]}, {"name": 1503278630, "position": [1282.5020224735972, -1904.1991011476966]}, {"name": 929535527, "position": [-1853.8979775262198, -2941.849101148364]}, {"name": 2484772392, "position": [-1771.3979775262346, 375.00089885256216]}, {"name": 25624151, "position": [-2164.097977526369, -2981.5491011468966]}, {"name": 133129310, "position": [1813.2520224736215, 342.00089885416673]}, {"name": 2463833647, "position": [-5791.047977526276, 1030.5508988537326]}, {"name": 133129777, "position": [1484.8020224735858, 388.8508988545425]}, {"name": 666887732, "position": [5302.202022473779, 1818.1508988526218]}, {"name": 259010103, "position": [5944.052022473612, 2030.0008988520801]}, {"name": 2463833656, "position": [-5387.747977526392, 1018.6508988532239]}, {"name": 146724409, "position": [-3061.2979775264116, -139.64910114694362]}, {"name": 2705349524, "position": [3090.5520224737693, 3405.850898854368]}, {"name": 2463876703, "position": [425.8520224735829, 3536.2008988535363]}, {"name": 1976882994, "position": [-1735.197977526415, -1629.9491011473322]}, {"name": 1224777982, "position": [1146.6020224737417, 1244.4508988522784]}, {"name": 159893055, "position": [1196.3520224735903, 3682.2508988514355]}, {"name": 133129793, "position": [1794.7020224737819, 485.85089885122557]}, {"name": 666891842, "position": [5239.152022473714, 1285.8008988523295]}, {"name": 4955856139, "position": [480.50202247362785, -1326.7991011467473]}, {"name": 159893060, "position": [911.3520224737215, 3399.350898853015]}, {"name": 2463833669, "position": [-5373.1979775262225, 992.3008988543813]}, {"name": 3491466823, "position": [-1024.9979775263096, 374.90089885139355]}, {"name": 1503278666, "position": [1493.602022473617, -1980.3491011458618]}, {"name": 3491466827, "position": [-1078.0479775263086, 341.3008988530919]}, {"name": 3422342732, "position": [4056.352022473675, 2630.1508988524347]}, {"name": 666949200, "position": [4788.652022473583, 490.6008988534438]}, {"name": 2463833684, "position": [-5482.697977526207, 929.600898853522]}, {"name": 133129813, "position": [1453.6020224737988, 269.5008988524705]}, {"name": 25624150, "position": [-2975.347977526299, -3467.899101146088]}, {"name": 930776663, "position": [-3998.8479775263654, -2156.0491011456406]}, {"name": 2463876696, "position": [335.2520224737532, 3596.950898852924]}, {"name": 930672228, "position": [-1702.5979775262545, -1608.4991011453553]}, {"name": 146724613, "position": [-3510.3479775262513, -1346.4491011454527]}, {"name": 3422342747, "position": [4085.8520224738013, 2556.200898851557]}, {"name": 133129820, "position": [1350.2520224737414, 130.15089885470843]}, {"name": 3491466845, "position": [-1040.247977526221, 31.450898852369846]}, {"name": 158834270, "position": [1867.6520224736314, 2632.450898854444]}, {"name": 2463833701, "position": [-5537.997977526299, 844.2008988538419]}, {"name": 241886816, "position": [6231.802022473643, -3310.249101147633]}, {"name": 241584504, "position": [-3254.9479775263458, 98.60089885194157]}, {"name": 146724450, "position": [-2459.4479775263967, -898.5491011479496]}, {"name": 2463833700, "position": [-5578.6979775263035, 874.4008988514906]}, {"name": 146724453, "position": [-2767.1979775263367, -845.899101147296]}, {"name": 3422342758, "position": [4205.502022473606, 2528.5508988517336]}, {"name": 133129489, "position": [724.302022473644, 922.20089885231]}, {"name": 932339306, "position": [-3764.1479775263333, -2023.4991011456316]}, {"name": 3906584172, "position": [-6097.69797752624, 4261.800898852642]}, {"name": 151347749, "position": [-3839.9479775264035, 3880.4508988512507]}, {"name": 146724462, "position": [-2243.8979775263324, -1044.049101146527]}, {"name": 3906584175, "position": [-5965.997977526394, 4094.3008988527654]}, {"name": 4547130993, "position": [-2704.2479775263305, 1565.600898853603]}, {"name": 2463876722, "position": [556.2520224737799, 3383.800898852485]}, {"name": 4547130996, "position": [-2596.9979775262163, 1440.2508988524687]}, {"name": 3035184757, "position": [-6367.6979775262325, -448.94910114834374]}, {"name": 25624011, "position": [2579.802022473654, -3829.749101146973]}, {"name": 4958500471, "position": [-5511.097977526358, 1794.3008988545728]}, {"name": 4958500472, "position": [-4675.647977526287, 1127.750898852753]}, {"name": 2477903481, "position": [-2405.447977526398, 1377.350898852825]}, {"name": 4958500474, "position": [-3183.547977526402, 19.55089885186112]}, {"name": 158834623, "position": [1003.3020224737843, 2077.850898853484]}, {"name": 2463876732, "position": [715.0020224737652, 3337.250898852062]}, {"name": 2705349799, "position": [1894.3020224737595, 932.2008988519315]}, {"name": 4547131006, "position": [-2037.647977526369, 213.3508988535482]}, {"name": 4955856149, "position": [670.9520224736921, -1785.6491011478681]}, {"name": 2477903488, "position": [-2401.4979775262013, 1341.9008988542203]}, {"name": 2463876737, "position": [444.2520224736679, 3315.350898851932]}, {"name": 2705350276, "position": [3745.5020224737013, -2144.3991011480534]}, {"name": 721620613, "position": [4742.602022473674, -2344.7491011481247]}, {"name": 721620614, "position": [1921.5020224736534, -1375.499101147426]}, {"name": 241582419, "position": [-5124.997977526302, 1582.200898852193]}, {"name": 3905020309, "position": [-3672.897977526235, 3389.800898851547]}, {"name": 158834278, "position": [-24.097977526338354, 1973.2008988526673]}, {"name": 721620618, "position": [4477.102022473645, -2295.199101148171]}, {"name": 721620621, "position": [4364.0520224736965, -2275.2991011465438]}, {"name": 2463876717, "position": [647.4020224735976, 3439.6008988544227]}, {"name": 277578909, "position": [-6150.797977526378, 3871.6008988544104]}, {"name": 368273, "position": [4439.052022473744, -374.49910114872864]}, {"name": 2705350290, "position": [4258.202022473733, -2181.2491011488078]}, {"name": 2463876755, "position": [327.6520224737567, 3032.200898854143]}, {"name": 34816448, "position": [-3834.3979775263824, -2673.799101145846]}, {"name": 831956629, "position": [3475.852022473802, -3726.3991011471376]}, {"name": 653598358, "position": [-736.297977526279, -381.99910114755653]}, {"name": 258175257, "position": [-4122.24797752625, -3779.499101145944]}, {"name": 653598360, "position": [-509.54797752633675, -539.3991011466426]}, {"name": 2463876761, "position": [-195.69797752638783, 2931.6008988544695]}, {"name": 368288, "position": [401.65202247366415, 48.75089885203465]}, {"name": 2463876763, "position": [-113.84797752622688, 2876.3008988512693]}, {"name": 2463876764, "position": [-88.39797752635548, 2859.1008988527733]}, {"name": 653598365, "position": [-699.8979775263425, -567.8491011487097]}, {"name": 4455425694, "position": [-261.8479775262639, 502.1008988528308]}, {"name": 4455425695, "position": [-228.2479775264079, 540.8008988538882]}, {"name": 2705350304, "position": [3743.7520224736786, -2199.599101146532]}, {"name": 653598369, "position": [-565.4479775263344, -574.9991011470001]}, {"name": 653598371, "position": [-792.7979775264049, -417.14910114620807]}, {"name": 4955856170, "position": [415.8020224735992, -1288.2991011480271]}, {"name": 151348663, "position": [-3810.74797752623, 3721.8508988523527]}, {"name": 311723687, "position": [-3846.747977526377, -2212.3491011463157]}, {"name": 25624232, "position": [-2069.0979775264127, -2930.6491011453772]}, {"name": 2705349864, "position": [2162.5520224737293, 281.45089885356356]}, {"name": 2463876778, "position": [-426.0479775262116, 2672.650898851714]}, {"name": 262313918, "position": [6347.302022473799, 1935.1508988521005]}, {"name": 25624237, "position": [-1526.8479775263354, -2552.3491011476553]}, {"name": 25624238, "position": [-1328.847977526415, -2436.549101147989]}, {"name": 25624239, "position": [-1251.2479775264042, -2383.799101146167]}, {"name": 205086385, "position": [-623.3979775263076, -533.0491011470428]}, {"name": 25624242, "position": [-1372.6979775263715, -2211.099101145919]}, {"name": 160026291, "position": [-1042.2979775264184, 363.9508988513285]}, {"name": 25624244, "position": [-1030.4979775264123, -2238.249101147005]}, {"name": 666941109, "position": [3395.7520224736636, -722.7991011475865]}, {"name": 133128769, "position": [3359.252022473669, 1330.0008988537115]}, {"name": 133129911, "position": [-906.2979775262825, -176.49910114769796]}, {"name": 25624248, "position": [-3385.447977526379, -2447.649101146254]}, {"name": 1181466558, "position": [6753.002022473753, 1090.8008988543827]}, {"name": 25624252, "position": [-494.24797752628535, -3371.1991011458053]}, {"name": 337626813, "position": [-4912.14797752626, -426.09910114776994]}, {"name": 831956670, "position": [3403.9020224736482, -3603.7991011461654]}, {"name": 3906584173, "position": [-5945.24797752638, 4201.950898853112]}, {"name": 116147905, "position": [5303.002022473802, 3821.1508988545975]}, {"name": 1365433411, "position": [1982.4020224736837, -1271.5991011482686]}, {"name": 25624259, "position": [-237.04797752621687, -3404.7991011476597]}, {"name": 4069612236, "position": [-2861.947977526258, -610.0491011480358]}, {"name": 3035184758, "position": [-6240.097977526338, -548.6991011487419]}, {"name": 2705350342, "position": [4836.152022473783, -2297.599101147796]}, {"name": 133129305, "position": [1394.402022473651, 531.9008988529106]}, {"name": 185858517, "position": [-4229.147977526271, 744.0008988517377]}, {"name": 4547130999, "position": [-2370.947977526239, 1543.9008988522573]}, {"name": 925869772, "position": [348.50202247360687, -4573.649101146771]}, {"name": 2705350349, "position": [5657.652022473591, -2315.0491011456606]}, {"name": 25666982, "position": [6708.202022473797, -4098.9991011457505]}, {"name": 666941135, "position": [3348.8520224735917, -798.149101147061]}, {"name": 370351925, "position": [3822.752022473619, -3343.349101147197]}, {"name": 25625657, "position": [3990.1020224737404, -4385.349101145408]}, {"name": 205094614, "position": [5066.35202247363, -894.6991011455907]}, {"name": 205094615, "position": [5229.352022473766, -578.1491011482842]}, {"name": 34817752, "position": [-6635.2979775263775, -3337.649101148088]}, {"name": 3734288089, "position": [3308.852022473774, 2192.800898853875]}, {"name": 133129946, "position": [-594.7979775262625, 11.150898853173885]}, {"name": 4468710860, "position": [148.60202247368727, -557.8491011455355]}, {"name": 34817757, "position": [-4601.197977526228, -2587.2991011475224]}, {"name": 146724574, "position": [-3632.047977526254, -1500.1491011474855]}, {"name": 2463833381, "position": [-5962.747977526384, 1358.1508988522728]}, {"name": 21346796, "position": [-2868.4479775262785, 1726.0008988522202]}, {"name": 94267105, "position": [2096.902022473701, 3730.2508988545924]}, {"name": 3734288098, "position": [2902.3520224737977, 1933.2508988512132]}, {"name": 506888762, "position": [-4924.447977526336, -2167.299101145659]}, {"name": 930776805, "position": [-4139.397977526382, -2593.8491011459064]}, {"name": 925761731, "position": [688.0020224737659, -3366.199101147771]}, {"name": 3734288103, "position": [2866.152022473756, 2213.5008988541927]}, {"name": 3734288105, "position": [2806.6520224736546, 2176.300898852901]}, {"name": 3734288106, "position": [2849.8020224736465, 2099.1008988531235]}, {"name": 661227, "position": [2591.7520224736368, -3557.0991011475426]}, {"name": 34817772, "position": [-6822.147977526338, -2381.599101145326]}, {"name": 3734288109, "position": [3374.05202247365, 2875.100898851457]}, {"name": 272269064, "position": [-3739.047977526333, -2041.5491011469555]}, {"name": 36488943, "position": [6754.952022473671, 1015.700898854277]}, {"name": 36488944, "position": [6701.7520224736945, 1049.900898852485]}, {"name": 653622568, "position": [-2699.797977526286, -952.299101147247]}, {"name": 661235, "position": [-2984.4479775262835, 1820.300898852878]}, {"name": 185876212, "position": [-3132.2479775262036, -576.2991011479812]}, {"name": 661237, "position": [-1620.597977526339, 3201.0008988514473]}, {"name": 2705350391, "position": [5946.852022473692, -2321.199101146476]}, {"name": 146724600, "position": [-3379.0979775263354, -1780.0491011463748]}, {"name": 116147961, "position": [6021.752022473681, 3331.650898854122]}, {"name": 146724602, "position": [-2963.297977526258, -1505.8491011465946]}, {"name": 116147963, "position": [6226.752022473692, 3524.2508988524432]}, {"name": 146724604, "position": [-3232.847977526321, -1678.399101148642]}, {"name": 116147965, "position": [6149.352022473798, 3797.9008988529017]}, {"name": 925427454, "position": [2174.0520224737825, -3365.649101148449]}, {"name": 116147967, "position": [6029.802022473607, 3880.2508988524664]}, {"name": 3905020313, "position": [-4404.797977526354, 3329.70089885265]}, {"name": 1976882945, "position": [-2491.1979775263935, -2017.0991011454475]}, {"name": 146724610, "position": [-3364.4979775262486, -1546.949101147277]}, {"name": 159935928, "position": [1918.1020224736667, 3789.350898852462]}, {"name": 36486916, "position": [1525.7020224737073, -584.6991011466685]}, {"name": 3772612357, "position": [3437.5520224736442, 3077.8008988541214]}, {"name": 160028423, "position": [739.2020224736839, -762.4491011455348]}, {"name": 652902152, "position": [-3522.5979775264095, -2336.0491011459317]}, {"name": 2561299782, "position": [-4023.047977526284, -2149.9991011459942]}, {"name": 146724619, "position": [-3544.4479775263994, -1643.4991011458067]}, {"name": 3772612364, "position": [3567.50202247369, 2992.7508988514264]}, {"name": 1224713998, "position": [1323.9020224737885, 118.2008988536154]}, {"name": 185859373, "position": [-6048.6979775262735, 1440.0008988531]}, {"name": 3772612368, "position": [3687.4020224737515, 2913.200898852608]}, {"name": 2705350419, "position": [5656.552022473616, -2360.549101148024]}, {"name": 133052180, "position": [224.90202247360537, 224.70089885118227]}, {"name": 34817814, "position": [-6771.647977526385, -1086.4491011481903]}, {"name": 34817815, "position": [-6264.497977526373, -813.2991011464696]}, {"name": 34817816, "position": [-5754.597977526199, -561.7991011455103]}, {"name": 2463876740, "position": [453.5020224736286, 3277.9508988518555]}, {"name": 3772612379, "position": [4951.302022473625, 2015.2008988532089]}, {"name": 666947356, "position": [5096.852022473675, 993.2508988512723]}, {"name": 3772612381, "position": [5073.0520224737675, 2012.0008988513405]}, {"name": 2463876741, "position": [822.4020224736339, 3269.500898852584]}, {"name": 1976882979, "position": [-2201.997977526293, -1827.9991011453944]}, {"name": 133129932, "position": [-918.3979775262419, 40.85089885208504]}, {"name": 270921350, "position": [3392.402022473595, -3759.09910114558]}, {"name": 133128841, "position": [2414.1020224737185, 1346.6508988528858]}, {"name": 929535785, "position": [-776.3979775263774, -3273.999101146785]}, {"name": 276922155, "position": [-5094.647977526234, 579.6508988531457]}, {"name": 34817817, "position": [-5028.647977526335, -232.29910114608288]}, {"name": 133129379, "position": [184.45202247363568, 198.90089885166162]}, {"name": 1976882990, "position": [-1831.1479775263706, -1691.299101146626]}, {"name": 721620616, "position": [1586.9520224736088, -1718.5991011459123]}, {"name": 2504458034, "position": [-3918.797977526367, 3613.2008988545294]}, {"name": 652912947, "position": [-1698.7979775262563, -2489.749101147964]}, {"name": 2504458036, "position": [-3866.4479775263326, 3657.700898852312]}, {"name": 1976882997, "position": [-2272.5479775262957, -1973.4491011469402]}, {"name": 976164662, "position": [-6619.797977526209, 2355.450898853917]}, {"name": 159885961, "position": [1008.5520224736299, 2825.6008988520875]}, {"name": 1976883000, "position": [-2417.397977526381, -2066.099101146079]}, {"name": 3422228281, "position": [-1915.547977526355, 128.75089885255875]}, {"name": 2503919583, "position": [-3999.4479775262716, 3723.300898851534]}, {"name": 1976883004, "position": [-2347.5979775262613, -1923.1991011459115]}, {"name": 3422228285, "position": [-1568.6979775262344, 17.800898852726732]}, {"name": 3732221759, "position": [5351.0520224737675, 1941.0508988535469]}, {"name": 94267360, "position": [1231.202022473621, 2522.0508988539336]}, {"name": 3732221762, "position": [5615.652022473716, 3060.0008988521668]}, {"name": 3732221763, "position": [6043.252022473799, 2764.2008988522093]}, {"name": 3732221764, "position": [5297.552022473617, 2314.350898853235]}, {"name": 3732221765, "position": [5605.502022473674, 2099.200898854292]}, {"name": 3732221768, "position": [4965.252022473665, 2484.200898852151]}, {"name": 654050365, "position": [-2597.147977526415, -1367.4991011463078]}, {"name": 3732221774, "position": [4506.902022473724, 2234.550898851495]}, {"name": 3732221775, "position": [4811.352022473736, 2027.1508988543019]}, {"name": 3732221776, "position": [4890.452022473734, 1976.3508988539513]}, {"name": 2561299768, "position": [-3801.6479775262455, -2040.04910114719]}, {"name": 3732221778, "position": [4869.252022473791, 2065.7508988541904]}, {"name": 3732221779, "position": [3523.002022473687, 1718.450898852808]}, {"name": 3732221780, "position": [3417.902022473607, 1640.6508988531243]}, {"name": 133130069, "position": [-146.54797752622352, -700.2991011475501]}, {"name": 146739030, "position": [-2491.847977526218, -2351.7991011487993]}, {"name": 1223798073, "position": [2238.5020224737764, 1233.900898853335]}, {"name": 3732221785, "position": [3207.9520224737034, 1435.5508988543875]}, {"name": 3732221786, "position": [3275.1520224736373, 1386.5008988531713]}, {"name": 2463876751, "position": [189.75202247362154, 3074.450898854053]}, {"name": 141567836, "position": [-4060.847977526372, 3779.5008988545933]}, {"name": 133129768, "position": [1351.002022473624, 663.0008988537384]}, {"name": 2463876752, "position": [16.902022473619382, 3071.6508988533064]}, {"name": 133128776, "position": [2682.0520224737356, 1792.6508988530543]}, {"name": 3905019749, "position": [-6375.4979775263455, 4333.900898853216]}, {"name": 141567847, "position": [-4631.247977526343, 3173.9008988544983]}, {"name": 146739049, "position": [-1982.1479775263829, -2305.399101146577]}, {"name": 3905019754, "position": [-4348.597977526403, 4154.050898854677]}, {"name": 185876331, "position": [-3642.9979775263187, -192.14910114584427]}, {"name": 146706925, "position": [-1734.3979775263917, -1122.74910114607]}, {"name": 36489069, "position": [6601.052022473741, 60.55089885137477]}, {"name": 4389621615, "position": [2714.4020224736387, 564.2008988537839]}, {"name": 4389621616, "position": [2534.802022473581, 521.9508988538735]}, {"name": 277062812, "position": [-5649.647977526318, 1683.1508988524035]}, {"name": 133130099, "position": [47.15202247362882, -805.7991011476417]}, {"name": 146739060, "position": [-2542.44797752623, -2146.049101146019]}, {"name": 470181, "position": [1487.2020224736548, -1838.3991011461376]}, {"name": 141569001, "position": [-2767.49797752629, 2045.9508988537323]}, {"name": 2463876756, "position": [100.75202247361581, 3016.4008988542437]}, {"name": 3732221819, "position": [4028.2520224736995, 2521.1508988540745]}, {"name": 3732221820, "position": [4112.202022473754, 2463.6508988535866]}, {"name": 3732221821, "position": [3950.9020224737233, 2574.050898854097]}, {"name": 3732221822, "position": [3672.002022473642, 2759.750898853497]}, {"name": 260584768, "position": [999.9520224737157, -3381.5491011459644]}, {"name": 304991211, "position": [-3906.747977526326, -479.54910114711424]}, {"name": 141567054, "position": [-5307.897977526288, 3702.4008988524315]}, {"name": 2463833459, "position": [-6041.247977526254, 1219.70089885437]}, {"name": 654050367, "position": [-2677.147977526273, -1322.649101147988]}, {"name": 204840842, "position": [2911.302022473583, -510.6991011487594]}, {"name": 146739084, "position": [-2063.297977526357, -1733.3991011483363]}, {"name": 2561299778, "position": [-3993.3479775262626, -2104.299101148399]}, {"name": 133130127, "position": [629.0020224737348, -728.8991011478174]}, {"name": 2463876760, "position": [-222.49797752627032, 2949.700898852825]}, {"name": 133130131, "position": [676.8020224736659, -703.4491011452815]}, {"name": 146739092, "position": [-2167.8979775263674, -1761.6491011480662]}, {"name": 123748604, "position": [3320.4520224736634, -3233.9991011482994]}, {"name": 241583087, "position": [-4608.247977526236, 1239.3508988530755]}, {"name": 305339717, "position": [-6599.0479775264175, -2723.049101145847]}, {"name": 146739056, "position": [-2300.8479775263877, -2180.7991011471017]}, {"name": 3732250530, "position": [3174.952022473754, 3354.750898854064]}, {"name": 932824995, "position": [-4991.447977526375, -343.2991011464992]}, {"name": 3732250532, "position": [4558.752022473689, 2095.300898851349]}, {"name": 3732250533, "position": [3241.202022473688, 3112.600898852236]}, {"name": 3732250534, "position": [3330.452022473729, 3047.45089885472]}, {"name": 2533527464, "position": [-4330.0979775262595, 3665.250898851724]}, {"name": 3732250537, "position": [3604.302022473638, 2839.000898852362]}, {"name": 158834602, "position": [616.9520224736935, 2365.000898851832]}, {"name": 3732250541, "position": [3216.602022473758, 3096.6508988541364]}, {"name": 721620637, "position": [5726.4520224737935, -2361.449101147883]}, {"name": 3732250544, "position": [3387.402022473784, 2883.4508988531124]}, {"name": 2533527473, "position": [-4523.347977526404, 3539.7008988518055]}, {"name": 185857229, "position": [-4706.497977526203, 1126.750898851725]}, {"name": 2533527475, "position": [-4493.597977526242, 3480.9508988544735]}, {"name": 4958548822, "position": [-1381.4979775264026, -438.6491011487692]}, {"name": 2463876766, "position": [-373.19797752632945, 2814.9508988519756]}, {"name": 3422228409, "position": [-148.19797752640972, -263.3491011465594]}, {"name": 133129414, "position": [154.4520224736612, 423.9508988526097]}, {"name": 305340085, "position": [-6582.047977526262, -2767.399101145429]}, {"name": 25624510, "position": [-1956.4479775262544, -940.4491011473226]}, {"name": 24909759, "position": [1355.1020224737974, 1103.8008988535353]}, {"name": 25624512, "position": [-1433.3479775263668, -1359.5991011463582]}, {"name": 666947232, "position": [5105.052022473799, 1179.1008988524254]}, {"name": 3422228418, "position": [-237.54797752628676, -318.0491011463005]}, {"name": 25624516, "position": [-1649.1979775263844, -1416.4991011469397]}, {"name": 3702865861, "position": [2794.80202247373, 97.45089885271341]}, {"name": 654050369, "position": [-2741.8979775262196, -1462.3491011462875]}, {"name": 2463876769, "position": [-414.147977526369, 2788.0508988538113]}, {"name": 3702865864, "position": [2810.1520224736996, 48.650898854418756]}, {"name": 25624233, "position": [-516.4979775262868, -3340.7491011487878]}, {"name": 3422228426, "position": [-669.0479775262048, -340.09910114818354]}, {"name": 3905020299, "position": [-4012.9979775263005, 3533.40089885279]}, {"name": 24909773, "position": [1796.1520224736294, 806.3008988514753]}, {"name": 370350031, "position": [4461.202022473687, -3759.8991011478233]}, {"name": 174006224, "position": [2357.102022473745, 3559.550898852848]}, {"name": 308768760, "position": [-4139.347977526242, 555.9008988527125]}, {"name": 1224697281, "position": [2578.952022473713, 507.5508988525712]}, {"name": 241583357, "position": [-4574.347977526205, 1131.1008988528215]}, {"name": 204830550, "position": [1718.202022473747, 1801.2008988534944]}, {"name": 2561299773, "position": [-4410.197977526398, -2088.6991011472846]}, {"name": 36488945, "position": [6503.602022473798, 1180.4008988534065]}, {"name": 529916921, "position": [-2689.597977526326, -2245.0991011453425]}, {"name": 25625252, "position": [1630.4520224736941, -3867.099101146465]}, {"name": 94268113, "position": [863.7020224737669, 3028.550898854121]}, {"name": 94269403, "position": [195.95202247368883, 4103.800898853649]}, {"name": 24909788, "position": [1913.9520224737971, 885.2008988533555]}, {"name": 2705350398, "position": [6708.1020224737385, -2337.3991011474973]}, {"name": 94267358, "position": [664.9520224737415, 3164.3508988530302]}, {"name": 929372127, "position": [-2524.84797752639, -4178.849101148075]}, {"name": 653598402, "position": [-856.9979775263637, -457.04910114707786]}, {"name": 3422228449, "position": [-82.59797752629972, -390.29910114862787]}, {"name": 2533527460, "position": [-4263.497977526232, 3682.6008988519734]}, {"name": 3422228451, "position": [-369.5979775262259, -402.5991011467056]}, {"name": 652939736, "position": [-2327.247977526259, -2008.4491011473915]}, {"name": 3920295909, "position": [-5320.597977526376, 3294.0008988546765]}, {"name": 308768742, "position": [-4323.197977526227, 377.8008988533088]}, {"name": 25624234, "position": [-467.19797752636794, -3251.449101146164]}, {"name": 34818437, "position": [-4988.497977526318, -313.84910114695685]}, {"name": 1976882932, "position": [-2124.597977526399, -1878.8991011469136]}, {"name": 25624231, "position": [-1986.8479775262404, -2859.9491011469527]}, {"name": 2705350425, "position": [5947.702022473633, -2367.249101148161]}, {"name": 159884488, "position": [389.75202247359954, 3042.7008988525017]}, {"name": 654054735, "position": [-192.79797752624893, -35.54910114544896]}, {"name": 185876467, "position": [-3334.9979775263437, 64.25089885198076]}, {"name": 151351977, "position": [-1575.0979775264184, 4219.200898852194]}, {"name": 94267384, "position": [275.9020224736286, 3997.250898851945]}, {"name": 654057812, "position": [-2808.6979775263644, -2168.9991011477614]}, {"name": 270922751, "position": [2439.202022473719, -4290.049101147275]}, {"name": 2503919612, "position": [-4065.5979775263695, 3627.0008988523728]}, {"name": 2503919613, "position": [-3998.197977526319, 3627.0008988523728]}, {"name": 3734288099, "position": [2749.2520224736695, 2035.8508988529422]}]}'); -const SHANGHAI_MAP = JSON.parse('{"vertices": [{"position": [-5933.134561551868, -7317.19769432182], "name": 267198467}, {"position": [-5351.884561555664, -3598.4976943232996], "name": 267198468}, {"position": [-5993.234561550764, -3329.4976943221145], "name": 267198469}, {"position": [-6354.234561555927, -3193.2976943220838], "name": 267198470}, {"position": [-6886.634561553251, -2977.447694322066], "name": 267198471}, {"position": [9176.71543844989, -4633.8476943219575], "name": 848698028}, {"position": [-1424.2345615542717, -3591.9976943219467], "name": 677797898}, {"position": [3709.8654384450924, 4401.2023056776425], "name": 1319641099}, {"position": [4921.315438444652, 4277.752305677396], "name": 1319641101}, {"position": [5024.315438447502, 4619.402305676701], "name": 1319641106}, {"position": [35.46543844379357, -2734.447694322739], "name": 476078083}, {"position": [2264.715438442977, 948.9023056765689], "name": 475978414}, {"position": [4266.765438444509, 4230.952305677604], "name": 1319641110}, {"position": [4917.565438447014, 5475.202305676774], "name": 1319641111}, {"position": [8367.665438449023, -7189.4976943234215], "name": 848698031}, {"position": [3476.0154384443354, 1820.3523056765648], "name": 1320103941}, {"position": [-7237.384561555871, -5311.147694323282], "name": 477626400}, {"position": [7073.315438447025, -6768.647694322282], "name": 1582473249}, {"position": [4293.06543844632, 4379.252305676929], "name": 1319641123}, {"position": [8249.16543844978, -1487.697694322776], "name": 85647366}, {"position": [3701.965438445143, 4441.752305677227], "name": 1319641127}, {"position": [-7855.784561556334, -1204.1976943226728], "name": 1890811948}, {"position": [-6798.534561553993, -1545.6976943220013], "name": 1469016754}, {"position": [-8857.134561552015, 208.8523056773539], "name": 479305781}, {"position": [3753.565438444184, 4176.852305677769], "name": 1319641142}, {"position": [2332.015438447854, 2623.5523056765687], "name": 1320103945}, {"position": [4703.46543844613, 4186.552305677438], "name": 1319641145}, {"position": [-9265.834561553276, 8021.602305676723], "name": 423833610}, {"position": [6567.465438443776, 6198.302305676862], "name": 1319641150}, {"position": [-3053.6345615530536, -2493.897694321845], "name": 1315785397}, {"position": [-186.23456155353324, 5638.552305677891], "name": 1324294208}, {"position": [7538.465438443609, -7923.347694323013], "name": 1777868868}, {"position": [8240.815438448124, -7155.497694322222], "name": 1777868870}, {"position": [7696.315438444401, -7745.997694321715], "name": 1777868876}, {"position": [-6432.43456155318, 1512.1023056767767], "name": 479322189}, {"position": [4405.615438443533, 4854.002305677341], "name": 1324294222}, {"position": [8782.265438448178, -6686.097694322158], "name": 1777868879}, {"position": [-5681.5345615532915, -2902.79769432189], "name": 267198544}, {"position": [-5002.184561554657, -3262.747694321888], "name": 267198545}, {"position": [1213.765438443204, 3629.2023056780918], "name": 1316472163}, {"position": [-437.484561551571, 5834.452305677473], "name": 1324294228}, {"position": [2970.1654384481913, 1258.7023056767066], "name": 1317670926}, {"position": [-86.88456155425683, 5986.2023056780345], "name": 1324294230}, {"position": [4137.365438445784, 4381.052305676647], "name": 1319641175}, {"position": [1170.8654384463557, 3140.6023056774757], "name": 1316472164}, {"position": [-9134.484561556634, -1829.6976943226184], "name": 1890811994}, {"position": [2160.765438446788, 3796.6023056767995], "name": 1320103951}, {"position": [3614.365438444622, 4764.552305676517], "name": 1324294236}, {"position": [-6978.834561550684, -6571.147694321766], "name": 267198558}, {"position": [-926.1345615527716, 1945.9023056782598], "name": 1316236476}, {"position": [3767.215438443827, 5014.602305676519], "name": 1324294241}, {"position": [6189.165438449607, 8930.152305676842], "name": 4225630306}, {"position": [5413.01543844952, 1296.652305677881], "name": 882614371}, {"position": [6222.265438445618, 8905.402305677157], "name": 4225630308}, {"position": [2403.465438447938, 5160.5523056768025], "name": 476555427}, {"position": [-7218.084561550597, -7591.697694323329], "name": 267198568}, {"position": [3984.3654384483784, 4954.102305678276], "name": 1324294249}, {"position": [-7155.784561554412, -6988.69769432342], "name": 267198570}, {"position": [10059.265438449927, -7330.947694322632], "name": 1491042413}, {"position": [-2185.1845615543652, 3026.102305677014], "name": 483090542}, {"position": [4865.715438448604, 4606.352305676964], "name": 1319641200}, {"position": [4520.915438448014, 5223.352305677054], "name": 1324294259}, {"position": [4703.31543844793, 5326.5523056769125], "name": 1324294261}, {"position": [5232.2654384440175, 3413.30230567749], "name": 1319641206}, {"position": [-266.48456155697886, 5700.352305677115], "name": 1324294264}, {"position": [-557.1845615506277, 5611.5523056767815], "name": 1324294266}, {"position": [4298.3154384472755, 4856.302305677574], "name": 1324294267}, {"position": [3112.7654384448533, 5326.5523056769125], "name": 1324294269}, {"position": [4137.365438445784, 4470.502305677471], "name": 1319641217}, {"position": [2539.8654384432007, 7801.052305676848], "name": 623412587}, {"position": [4708.415438443581, 4378.852305677583], "name": 1319641221}, {"position": [4365.515438443879, 4133.802305677392], "name": 1319641222}, {"position": [-8401.884561550332, -1067.147694323367], "name": 5017787781}, {"position": [-9079.734561552756, -1898.1476943231712], "name": 1890812042}, {"position": [2972.0154384449415, 4253.25230567708], "name": 1320103959}, {"position": [-2653.634561553986, 3230.3523056782524], "name": 385114252}, {"position": [8263.665438448697, -7217.647694321982], "name": 848698050}, {"position": [3271.0154384432144, 5143.052305676576], "name": 1324294286}, {"position": [-2389.834561554949, -4407.947694321734], "name": 599408783}, {"position": [5127.165438445047, 4315.202305678056], "name": 1319641232}, {"position": [-2578.2845615509586, -5118.1976943226455], "name": 599408785}, {"position": [4711.51543844428, 4301.252305676684], "name": 1319641234}, {"position": [3982.5654384486597, 4221.252305677936], "name": 1319641235}, {"position": [-528.6345615544974, 5664.702305677949], "name": 1324294292}, {"position": [5602.015438448405, 5670.702305677011], "name": 1319641238}, {"position": [-1192.1845615532334, -4013.2476943224306], "name": 1315785412}, {"position": [4333.315438444174, 4243.902305677949], "name": 1319641245}, {"position": [2410.7154384438445, 5394.302305678167], "name": 1324294302}, {"position": [3782.8654384455263, 4742.402305677018], "name": 1324294303}, {"position": [-711.93456155072, 5773.852305678062], "name": 1324294305}, {"position": [-8879.134561553314, -1837.3476943231992], "name": 1890812066}, {"position": [3421.2654384475627, 5439.852305677561], "name": 1324294307}, {"position": [3093.965438445423, 1062.4523056765865], "name": 1317681862}, {"position": [4193.115438447137, 4216.602305676886], "name": 1319641254}, {"position": [4591.565438445855, 4247.702305677947], "name": 1319641255}, {"position": [4137.365438445784, 4488.902305677556], "name": 1319641256}, {"position": [2124.9654384476457, 4014.002305677167], "name": 1320103964}, {"position": [11663.765438449047, 3713.6523056773285], "name": 115006151}, {"position": [5083.515438442987, 4725.902305677821], "name": 481501356}, {"position": [1103.9654384461528, 2512.0523056774146], "name": 1320103965}, {"position": [-586.8845615566443, 5556.302305677718], "name": 1324294320}, {"position": [4290.415438447326, 4312.702305677263], "name": 1319641265}, {"position": [-667.7845615570277, 5651.952305678165], "name": 1324294322}, {"position": [702.4654384437667, 1299.4523056768514], "name": 476554611}, {"position": [2627.165438447321, 5169.752305677733], "name": 1324294324}, {"position": [2745.465438444228, 5028.35230567733], "name": 1324294326}, {"position": [4959.11543844585, 1557.6023056773636], "name": 475979960}, {"position": [854.0154384490961, -1189.0976943220721], "name": 3681386681}, {"position": [928.71543844808, -1172.5976943228743], "name": 3681386682}, {"position": [-5421.234561552524, 1076.6023056767438], "name": 479322299}, {"position": [-6438.434561552242, -1627.2476943228753], "name": 1469016778}, {"position": [718.1654384496028, -1166.0476943227138], "name": 3681386687}, {"position": [-8290.134561555362, -877.8976943233374], "name": 5017787783}, {"position": [9843.715438449863, -6791.897694322202], "name": 115548357}, {"position": [4933.715438447451, 3927.452305678258], "name": 1319641286}, {"position": [5094.315438448404, 4624.202305677727], "name": 1319641289}, {"position": [-3022.2345615555923, -6597.6476943223615], "name": 599408842}, {"position": [-2760.634561553843, -5705.597694323216], "name": 599408844}, {"position": [-2873.1845615510565, -6082.497694322342], "name": 599408845}, {"position": [3665.3154384467257, 4730.152305677749], "name": 1324294350}, {"position": [4453.2654384497055, 5446.552305677698], "name": 1324294352}, {"position": [4096.915438445592, 4966.102305678177], "name": 1324294354}, {"position": [3941.3154384462246, 4397.002305676523], "name": 1319641301}, {"position": [4990.015438444572, 4715.102305677732], "name": 481501398}, {"position": [7046.565438443508, -6671.497694322071], "name": 1582473433}, {"position": [3825.2154384466053, 827.7523056765546], "name": 475978447}, {"position": [9963.765438449456, -6748.64769432304], "name": 115548383}, {"position": [3220.0654384482164, 4766.85230567675], "name": 1324294368}, {"position": [-229.13456155038148, 5762.402305677483], "name": 1324294370}, {"position": [-512.634561552261, 5694.552305676836], "name": 1324294372}, {"position": [4625.515438448247, 5273.802305676867], "name": 1324294373}, {"position": [4913.765438445239, 4096.702305677269], "name": 1319641320}, {"position": [4514.165438443741, 5261.602305678181], "name": 1324294377}, {"position": [8193.815438445996, -3842.8476943224155], "name": 1782376803}, {"position": [9895.765438443505, -6710.247694321935], "name": 115548403}, {"position": [-3345.634561554789, -7378.197694322353], "name": 599408886}, {"position": [-3585.334561556408, -7988.897694323427], "name": 599408887}, {"position": [6689.915438442995, 6300.402305678077], "name": 1319641336}, {"position": [-915.8845615502287, -3082.097694322883], "name": 1315785428}, {"position": [-3211.234561554477, -7048.197694322411], "name": 599408890}, {"position": [2329.5154384470607, 4935.552305678215], "name": 1324294395}, {"position": [1662.4654384429505, 3632.6023056769686], "name": 1320103978}, {"position": [-5720.334561551965, -2316.1476943229786], "name": 477618430}, {"position": [-728.034561554125, 5723.402305678249], "name": 1324294402}, {"position": [-1972.9345615502325, 3002.802305678287], "name": 483098883}, {"position": [4324.265438448549, 5322.802305677498], "name": 1324294404}, {"position": [2168.515438448537, 1870.252305677056], "name": 1320103980}, {"position": [3354.1654384450226, 5690.002305676955], "name": 1324294410}, {"position": [9195.66543844752, -5082.197694322943], "name": 476913931}, {"position": [4301.115438444469, 4078.7523056771133], "name": 1319641356}, {"position": [9377.515438444561, -5277.447694322035], "name": 476913933}, {"position": [5121.61543844769, 4367.502305678173], "name": 1319641359}, {"position": [5564.265438444238, 2462.402305678069], "name": 1319641362}, {"position": [7800.96543844877, 5193.202305678213], "name": 476561683}, {"position": [3970.965438448104, 5343.952305677746], "name": 1324294420}, {"position": [-660.9845615557219, 5833.50230567703], "name": 1324294422}, {"position": [3243.865438449234, 5329.102305678291], "name": 1324294424}, {"position": [3238.9154384446783, 2453.6023056782597], "name": 1320103983}, {"position": [9054.065438448333, -5275.797694322293], "name": 476913948}, {"position": [9061.965438448282, -5243.497694323196], "name": 476913949}, {"position": [-2332.634561554414, -4170.247694322171], "name": 599408518}, {"position": [5832.365438443787, 1118.5023056778932], "name": 3356049696}, {"position": [4924.41543844535, -6789.647694322553], "name": 63308065}, {"position": [4287.715438444195, 4464.1023056772865], "name": 1319641379}, {"position": [4972.515438446124, -6967.447694322004], "name": 63308068}, {"position": [-3846.834561556989, -7169.697694322963], "name": 4712669477}, {"position": [4865.715438448604, -7039.847694322532], "name": 63308072}, {"position": [-5790.034561556467, -7350.897694323066], "name": 267198762}, {"position": [4685.215438449575, -6977.297694323425], "name": 63308075}, {"position": [4660.7154384474825, -6894.3476943221785], "name": 63308076}, {"position": [-4991.634561555713, -7759.4476943225745], "name": 267198765}, {"position": [-4463.684561549997, -8044.14769432249], "name": 267198766}, {"position": [3426.56543844555, 4876.952305677307], "name": 1324294448}, {"position": [-642.9845615514296, 5696.502305676532], "name": 1324294450}, {"position": [-2455.634561556508, -1531.5976943224287], "name": 481394996}, {"position": [1756.2654384448706, -2394.0976943226387], "name": 2376753461}, {"position": [3283.065438445476, 5117.802305678154], "name": 1324294454}, {"position": [3088.6154384432984, 5505.502305677368], "name": 1324294456}, {"position": [4472.665438449041, 5200.4023056770875], "name": 1324294458}, {"position": [2949.0154384461675, 5033.752305678263], "name": 1324294461}, {"position": [2825.9154384500107, 4804.902305677317], "name": 1324294463}, {"position": [7156.3154384435275, -6685.047694322321], "name": 1582473536}, {"position": [-4660.1345615542305, -1125.7476943224988], "name": 1315785440}, {"position": [4480.415438443686, 5333.90230567754], "name": 1324294466}, {"position": [8300.465438445315, -7056.047694321776], "name": 1582473540}, {"position": [4995.265438445529, 5004.952305677435], "name": 1319641415}, {"position": [4507.66543844594, 4977.952305678102], "name": 1319641416}, {"position": [4529.115438444364, 5122.452305677427], "name": 1319641417}, {"position": [-4157.534561556986, -7249.147694322389], "name": 1887854441}, {"position": [2659.415438444057, 5344.302305678283], "name": 1324294481}, {"position": [-6222.3345615564085, -2110.847694321905], "name": 1469016803}, {"position": [4102.515438447085, 5081.1023056773765], "name": 1324294485}, {"position": [3766.1654384493204, 4803.552305677527], "name": 1324294487}, {"position": [571.6154384458605, -1238.947694321979], "name": 2360181090}, {"position": [2565.5654384451054, -157.7476943221967], "name": 1317670971}, {"position": [2097.315438447822, 2071.302305678202], "name": 1320103996}, {"position": [-5499.684561556251, -1850.4976943223282], "name": 1315785447}, {"position": [3141.565438447458, 5514.002305677223], "name": 1324294508}, {"position": [3413.215438449413, 5177.502305677706], "name": 1324294511}, {"position": [-213.43456155165086, 5579.4023056776605], "name": 1324294516}, {"position": [-5218.034561551121, -1994.9976943234306], "name": 1315785449}, {"position": [3399.0654384439267, 5238.502305678238], "name": 1324294520}, {"position": [-7350.53456155299, 2662.552305677579], "name": 3113821589}, {"position": [7842.2154384441, -3237.297694322905], "name": 848698091}, {"position": [11093.365438448189, -7017.347694322496], "name": 93438340}, {"position": [3260.315438446071, 5276.102305677099], "name": 1324294533}, {"position": [-398.13456155002314, -7305.297694323088], "name": 1720951176}, {"position": [-6360.884561551928, -2112.397694322254], "name": 601145306}, {"position": [7123.16543844338, -1824.7976943222], "name": 3056370065}, {"position": [4926.21543844507, 5452.65230567793], "name": 1324294546}, {"position": [5659.415438444171, 620.3023056770007], "name": 1888382823}, {"position": [2814.7654384440557, 4744.602305677859], "name": 1324294551}, {"position": [8440.415438442982, -6067.347694322933], "name": 620134808}, {"position": [4767.71543844734, 5289.852305677911], "name": 1324294553}, {"position": [-2410.884561555804, 6349.252305676956], "name": 479297947}, {"position": [6993.565438449423, -5074.247694322409], "name": 1993253276}, {"position": [4682.81543844995, -6561.347694322705], "name": 1205027230}, {"position": [-7427.734561552768, 1350.2023056766177], "name": 483115423}, {"position": [3271.2654384496886, -266.39769432179605], "name": 385114529}, {"position": [7792.715438448284, -5625.447694322716], "name": 1993253283}, {"position": [7754.21543844601, -5635.697694323482], "name": 1993253284}, {"position": [-4318.98456155011, 9177.202305677312], "name": 3421417542}, {"position": [6148.265438447708, -6338.497694322597], "name": 1993253289}, {"position": [6030.315438444233, -6383.29769432211], "name": 1993253290}, {"position": [3144.4654384458204, -29.297694322139023], "name": 1317670983}, {"position": [14.665438449412704, -611.4476943217539], "name": 3724313004}, {"position": [6738.715438444842, -6596.097694322012], "name": 1993253294}, {"position": [-363.43456155663034, 5527.602305678059], "name": 1324294575}, {"position": [3217.565438447423, 5526.152305677101], "name": 1324294579}, {"position": [-56.83456155480826, 5462.90230567692], "name": 1324294583}, {"position": [7735.965438449455, -6823.897694323122], "name": 1993253305}, {"position": [4856.215438444167, 5354.102305677344], "name": 1324294586}, {"position": [3193.2154384435307, 5668.35230567797], "name": 1324294589}, {"position": [4293.8654384485635, 4891.952305676739], "name": 1324294590}, {"position": [2941.0154384450493, 5182.652305677493], "name": 1324294594}, {"position": [4514.365438446077, -6993.197694322717], "name": 1993253315}, {"position": [-7765.534561556819, -6836.547694321737], "name": 477626820}, {"position": [4534.465438446488, -7016.4976943232205], "name": 1993253317}, {"position": [4262.465438443996, 8338.402305676951], "name": 4402078150}, {"position": [3633.315438449358, -7028.247694321976], "name": 1993253319}, {"position": [4562.865438444419, -7049.297694322831], "name": 1993253320}, {"position": [10476.015438449338, -8090.597694321744], "name": 1491042380}, {"position": [-2439.3345615507656, 6277.70230567748], "name": 479297994}, {"position": [4071.1654384466556, -7174.547694322797], "name": 1993253323}, {"position": [5018.115438446102, -7186.597694323283], "name": 1993253324}, {"position": [4969.2654384472235, -7204.047694322924], "name": 1993253326}, {"position": [8274.565438448179, -7423.497694322378], "name": 1777868877}, {"position": [2868.2654384439843, 5179.652305677962], "name": 1324294609}, {"position": [4143.215438446646, -7249.6976943217105], "name": 1993253330}, {"position": [4169.7654384478255, -7277.347694323311], "name": 1993253331}, {"position": [4632.615438445953, 5383.252305676933], "name": 1324294612}, {"position": [3099.365438444579, 4938.9023056782835], "name": 1324294615}, {"position": [2993.5654384445343, 8833.402305677751], "name": 4402078168}, {"position": [-6193.884561554341, -2887.6476943224816], "name": 267198543}, {"position": [4871.515438445329, 5310.802305677597], "name": 1324294622}, {"position": [6110.915438448217, 1008.102305677383], "name": 475979717}, {"position": [10841.11543844557, 3938.0023056772015], "name": 4867879887}, {"position": [1197.9154384462731, 9416.002305677295], "name": 623411689}, {"position": [2384.0154384444645, 8507.102305676639], "name": 623411694}, {"position": [3078.315438443724, 4866.052305677826], "name": 1324294220}, {"position": [3015.2654384494326, 8785.952305677469], "name": 623411698}, {"position": [7867.915438446005, -1003.4476943232562], "name": 1473995252}, {"position": [8611.415438444681, -467.3976943223579], "name": 1473995253}, {"position": [-2770.3345615535113, -4596.297694321905], "name": 1315785588}, {"position": [-154.68456155076638, 5748.902305677817], "name": 1324294650}, {"position": [4040.91543844487, 5356.852305677507], "name": 1324294654}, {"position": [4381.465438449084, 5110.95230567804], "name": 1324294658}, {"position": [7185.815438447207, -2017.8476943222279], "name": 1473995267}, {"position": [7602.315438447249, -1600.3476943229343], "name": 1473995269}, {"position": [722.2154384436408, 7204.902305677052], "name": 1404037082}, {"position": [8385.91543844558, -334.6976943223723], "name": 1473995278}, {"position": [5255.515438449265, 7413.052305677681], "name": 476561935}, {"position": [4262.665438446334, -7443.647694323374], "name": 1774845833}, {"position": [-3288.084561553717, -8386.697694323431], "name": 1315242513}, {"position": [-3519.534561554849, -8145.5976943232145], "name": 1315242514}, {"position": [8163.4654384430405, -1025.8976943227083], "name": 1473995283}, {"position": [-3540.984561553273, -8395.647694323216], "name": 1315242516}, {"position": [-3283.034561555098, -8156.197694322742], "name": 1315242518}, {"position": [-7849.584561554934, -5171.497694322014], "name": 477635095}, {"position": [3115.865438445553, 5761.902305676969], "name": 476561947}, {"position": [4891.06543844997, 5255.452305677366], "name": 1324294684}, {"position": [2579.2654384488856, 4941.052305676763], "name": 1324294686}, {"position": [2405.865438447563, 5700.202305677138], "name": 476561951}, {"position": [10152.365438443667, 2097.7523056782134], "name": 4867879889}, {"position": [2820.2654384443804, -382.7476943225605], "name": 1317671003}, {"position": [3203.215438446705, 3801.1523056766805], "name": 476556038}, {"position": [3697.5154384464304, 4906.802305677971], "name": 1324294696}, {"position": [-3287.434561556779, -8249.197694322418], "name": 1315242538}, {"position": [-3057.834561552397, -8330.747694323292], "name": 1315242539}, {"position": [-3068.08456155494, -8418.897694323136], "name": 1315242542}, {"position": [-9008.834561555544, 8029.702305677233], "name": 486193667}, {"position": [-448.7845615557262, 323.30230567723106], "name": 2969936436}, {"position": [1667.2154384451687, 3934.2023056772036], "name": 1320104030}, {"position": [-2833.234561556708, -8418.347694322038], "name": 1315242552}, {"position": [-5155.034561553862, 1045.3023056768984], "name": 4908327481}, {"position": [3844.615438445942, 5079.652305678195], "name": 1324294714}, {"position": [-7994.634561555358, -1455.5976943224637], "name": 1890935355}, {"position": [-1270.1845615552543, -3571.3976943227976], "name": 1888338492}, {"position": [-2190.9345615540587, -8403.497694322581], "name": 1315242557}, {"position": [4811.965438449306, 5425.65230567682], "name": 1324294718}, {"position": [-3623.734561550407, -8311.897694323277], "name": 1315242559}, {"position": [-6178.234561552643, 1179.0023056779119], "name": 4908327490}, {"position": [-3508.6345615553682, -8004.697694323326], "name": 1315242565}, {"position": [3223.565438446485, 5394.702305677512], "name": 1324294727}, {"position": [-3532.2345615540485, -8315.747694322084], "name": 1315242568}, {"position": [-255.93456155093008, 5847.30230567665], "name": 1324294729}, {"position": [-5360.2345615502145, -553.8976943224583], "name": 601145315}, {"position": [-551.4345615509342, 1357.7523056778064], "name": 93332044}, {"position": [-1925.9845615522408, -2219.7476943226493], "name": 624738894}, {"position": [-4729.884561555764, -1180.7976943227773], "name": 1315785485}, {"position": [-1852.8345615536068, -2241.547694323387], "name": 624738897}, {"position": [-3281.134561554211, -8335.597694323127], "name": 1315242578}, {"position": [-484.03456155199365, 1344.152305676971], "name": 93332051}, {"position": [-1367.734561554812, -2342.397694322429], "name": 624738901}, {"position": [-7354.6345615511655, -2824.0476943217627], "name": 1890935383}, {"position": [6028.115438446946, 1037.452305677533], "name": 475979876}, {"position": [-7808.284561555467, -5934.947694322901], "name": 477635164}, {"position": [4515.215438445352, 4675.202305676862], "name": 1324294751}, {"position": [-6130.884561549976, -260.69769432268686], "name": 479300368}, {"position": [-2802.6345615543846, -8341.897694322142], "name": 1315242601}, {"position": [-2342.884561556957, -8457.597694322416], "name": 1315242603}, {"position": [-3527.2845615565984, -8232.447694322076], "name": 1315242604}, {"position": [-1460.5345615521514, -3597.6976943228324], "name": 1888338541}, {"position": [-5357.43456155302, -2487.3976943222688], "name": 477618799}, {"position": [-7759.534561550652, -3625.9476943225623], "name": 1890935410}, {"position": [-7271.634561554663, -2665.2476943223037], "name": 1890935411}, {"position": [-316.8345615520707, -4093.2476943229544], "name": 1888338548}, {"position": [-7218.6845615505035, -1942.2476943233846], "name": 1890935413}, {"position": [9029.71543844444, 48.752305676913466], "name": 4267598454}, {"position": [-7226.884561553959, -1842.0976943218648], "name": 1890935415}, {"position": [784.1654384463936, 4682.902305678027], "name": 476553848}, {"position": [10011.115438445016, -328.9476943226788], "name": 4267598457}, {"position": [5015.415438442971, 8710.152305678064], "name": 4225630314}, {"position": [1089.5654384484033, 5922.852305676684], "name": 476553855}, {"position": [-390.03456155484173, 5753.252305677137], "name": 1324294785}, {"position": [1565.965438445005, -3238.197694322764], "name": 476078722}, {"position": [1644.8654384433326, -3289.5476943224367], "name": 476078723}, {"position": [-7542.734561553743, -2159.5976943231676], "name": 1890935428}, {"position": [-5156.334561554842, -1809.1976943228615], "name": 1315785494}, {"position": [-7277.4345615513885, -2552.4476943221684], "name": 1890935430}, {"position": [-8239.634561554965, -1413.547694323114], "name": 1890935432}, {"position": [1741.465438449552, 1242.2523056780933], "name": 1320104044}, {"position": [-7227.334561555665, -2531.997694322996], "name": 1890935434}, {"position": [4342.415438443936, 5244.202305677348], "name": 1324294797}, {"position": [-505.734561556892, 1304.0023056767325], "name": 93332110}, {"position": [2273.9654384480446, 798.8523056781105], "name": 1317671021}, {"position": [4538.115438442957, 6522.352305676549], "name": 481501843}, {"position": [-4811.3345615519165, 1015.4023056774264], "name": 1563370132}, {"position": [4506.065438448559, 6677.9523056776925], "name": 481501845}, {"position": [3839.9654384448922, 5112.902305677736], "name": 1324294807}, {"position": [-25.584561555547225, 5830.302305676938], "name": 1324294809}, {"position": [3583.0654384483296, 4861.502305677945], "name": 1324294810}, {"position": [-6957.484561553429, -2424.2976943220638], "name": 1890935453}, {"position": [5212.215438447743, 7434.802305677835], "name": 476562078}, {"position": [-7250.184561556239, -2903.7476943223337], "name": 1890935455}, {"position": [-570.0845615521644, 1318.8523056779645], "name": 93332133}, {"position": [4296.315438445219, -7811.1976943233685], "name": 1774845838}, {"position": [4148.115438447065, 5078.8023056771435], "name": 1324294826}, {"position": [435.61543844816697, -4377.197694322987], "name": 1888323015}, {"position": [4783.765438446608, 5244.002305676787], "name": 1324294830}, {"position": [287.16543844353737, -3528.297694321836], "name": 476078767}, {"position": [-1916.4845615549098, 7909.652305677639], "name": 856909256}, {"position": [4105.165438446079, 4798.952305677062], "name": 1324294834}, {"position": [5222.215438443811, 2509.302305677252], "name": 482730676}, {"position": [-8867.43456155159, -1756.7976943233532], "name": 1890811961}, {"position": [3682.365438443469, 6529.10230567727], "name": 476562102}, {"position": [259.5154384437137, 85.15230567773813], "name": 1317671028}, {"position": [6874.565438444335, 2290.452305677704], "name": 482730682}, {"position": [-2565.684561552928, 2486.7523056766317], "name": 483091135}, {"position": [-44.03456155444019, 5416.002305677736], "name": 1324294850}, {"position": [3407.3154384444138, 5494.852305677256], "name": 1324294852}, {"position": [-8907.184561550708, -1721.2476943218035], "name": 1890812022}, {"position": [-3957.784561556821, -4381.097694322378], "name": 1315785505}, {"position": [4016.6654384492517, 5016.902305676751], "name": 1324294856}, {"position": [2890.115438447083, 3130.952305676615], "name": 1320104055}, {"position": [-4605.234561552152, -859.5476943220604], "name": 479290062}, {"position": [3496.315438447084, 4858.602305677806], "name": 1324294864}, {"position": [-8895.484561556088, -1775.0476943234617], "name": 1890812024}, {"position": [3392.315438446758, 5554.152305677462], "name": 1324294866}, {"position": [529.7154384464875, -2895.447694323039], "name": 476078803}, {"position": [658.5154384453062, -2493.597694321892], "name": 476078805}, {"position": [3131.115438449683, 1708.1523056781123], "name": 1320104057}, {"position": [-2446.9345615543148, -643.647694323235], "name": 1315785508}, {"position": [4064.0654384489494, -4564.147694322784], "name": 495640698}, {"position": [3468.1154384443857, 4960.102305677338], "name": 1324294881}, {"position": [-7269.234561555038, -2857.947694321794], "name": 1890844109}, {"position": [778.9654384495748, -2486.1476943218718], "name": 476078819}, {"position": [4359.615438445985, 5186.402305676907], "name": 1324294885}, {"position": [3122.7654384480275, 3778.252305677299], "name": 654402280}, {"position": [2935.015438445987, 3691.0523056778998], "name": 654402282}, {"position": [188.4154384441672, -5028.497694322454], "name": 677800743}, {"position": [-6658.884561552724, -2191.5976943223113], "name": 1891590900}, {"position": [-7852.984561552034, 4957.85230567769], "name": 1807311606}, {"position": [-7052.434561551025, 4705.802305677409], "name": 1807311607}, {"position": [-6116.284561556995, 4411.052305677287], "name": 1807311608}, {"position": [-2457.784561556764, -1935.3476943226865], "name": 624739067}, {"position": [-7486.134561553115, -2393.1976943227796], "name": 1891590908}, {"position": [548.4154384447493, 3722.002305677208], "name": 654402303}, {"position": [-6647.834561555044, -2067.3476943233736], "name": 1891590912}, {"position": [3863.7654384459097, 4941.202305676739], "name": 1324294917}, {"position": [-7099.434561553153, -1850.7476943234735], "name": 1891590920}, {"position": [-167.43456155410286, 5500.902305676902], "name": 1324294921}, {"position": [-390.93456155114836, -7133.1976943227455], "name": 2354289921}, {"position": [6321.9154384484, 1810.6523056768965], "name": 1563362061}, {"position": [-4319.384561554784, -6235.697694322084], "name": 1314685710}, {"position": [-5232.734561552377, -6048.897694322264], "name": 1314685711}, {"position": [-5438.684561553941, -5996.347694322779], "name": 1314685712}, {"position": [-7031.084561553769, -1865.1476943229995], "name": 1891590929}, {"position": [-5671.434561556054, -1032.5476943222611], "name": 601662226}, {"position": [-52.08456155259, 5599.552305676881], "name": 1324294933}, {"position": [-6356.884561554921, -2103.1476943225157], "name": 1891590934}, {"position": [7882.76543844546, -1318.097694323228], "name": 393749271}, {"position": [3860.6154384481783, 6416.352305677719], "name": 1324294936}, {"position": [-6921.334561553749, -2195.6476943234547], "name": 1891590937}, {"position": [-476.08456155501244, 5762.502305676875], "name": 1324294938}, {"position": [3788.6654384493568, 4721.002305677402], "name": 1324294939}, {"position": [3214.465438446723, 5204.502305677039], "name": 1324294940}, {"position": [4365.215438447478, -6627.197694323073], "name": 1785697755}, {"position": [10681.61543844326, 8247.552305677531], "name": 4907066148}, {"position": [3676.4654384455753, 9451.052305676554], "name": 714080390}, {"position": [9821.06543844452, 7407.152305678011], "name": 4907066151}, {"position": [-6935.9845615508675, -2755.797694321771], "name": 1891590953}, {"position": [-6889.784561550982, -2730.44769432218], "name": 1891590954}, {"position": [3415.8654384484066, 2041.8523056768834], "name": 1320104071}, {"position": [-7605.534561555771, -2470.447694323141], "name": 1891590956}, {"position": [-213.9845615545255, 6891.202305677524], "name": 856909277}, {"position": [-1838.5845615540575, -2172.3976943217594], "name": 624739122}, {"position": [-5949.784561551041, 1401.1523056769447], "name": 479299038}, {"position": [4077.565438443287, 1665.0023056765663], "name": 475980598}, {"position": [3231.365438445266, 2529.452305678248], "name": 1320104073}, {"position": [3437.615438443231, 5375.402305677568], "name": 1324294968}, {"position": [-7524.434561553051, -2368.84769432244], "name": 1891590969}, {"position": [-6826.98456155606, -2240.047694321845], "name": 1891590970}, {"position": [2257.0154384453645, -6224.997694323164], "name": 495641404}, {"position": [-2816.184561552859, 968.102305677121], "name": 481395518}, {"position": [-6850.234561554203, -2701.3476943231753], "name": 1891590976}, {"position": [-7572.384561555623, -2492.297694322687], "name": 1891590979}, {"position": [-6884.484561552995, -2314.147694322699], "name": 1891590985}, {"position": [5218.91543844788, 387.6023056772482], "name": 2971714378}, {"position": [-8550.184561556762, -1494.3976943229131], "name": 1891590987}, {"position": [5608.415438445036, 703.6523056775934], "name": 2971714380}, {"position": [-620.734561550762, 5744.052305677982], "name": 1324294989}, {"position": [4717.815438446849, 1082.5023056781902], "name": 2971714382}, {"position": [4949.66543844555, 999.2523056769897], "name": 2971714383}, {"position": [-6644.134561554438, -2221.4476943229756], "name": 1891590992}, {"position": [-428.58456155414615, -6711.797694322286], "name": 601097043}, {"position": [-7196.334561555773, -1860.2976943231652], "name": 1891590997}, {"position": [2831.165438443861, 3185.8523056769172], "name": 1320104079}, {"position": [-3802.5845615550224, -2457.7476943221654], "name": 1315785530}, {"position": [5427.615438449607, 771.002305677726], "name": 2971714399}, {"position": [-6560.934561555598, -2287.197694322174], "name": 1891591009}, {"position": [3182.515438446387, 5101.75230567711], "name": 1324295012}, {"position": [2485.0654384493964, 41.8023056774075], "name": 1317671057}, {"position": [1422.1154384443935, 3971.052305677958], "name": 1320104082}, {"position": [3882.865438448846, 4646.802305677155], "name": 1324295022}, {"position": [7269.515438444785, -8448.397694323263], "name": 1777869681}, {"position": [-3066.6845615527905, -6532.597694322461], "name": 601097074}, {"position": [3005.4654384485957, 5094.902305676996], "name": 1324295027}, {"position": [-1911.1345615527853, -2149.1476943218404], "name": 624739189}, {"position": [3486.965438447953, 6371.302305677063], "name": 476562299}, {"position": [3123.515438446134, 5617.902305678157], "name": 1324295043}, {"position": [7790.465438446859, -4998.947694321742], "name": 495772550}, {"position": [7794.465438443865, -4937.897694322402], "name": 495772551}, {"position": [8011.215438443742, -4194.3976943219495], "name": 495772552}, {"position": [3925.2654384469565, 4947.7523056769005], "name": 1324295049}, {"position": [-161.98456155080976, 5301.302305676714], "name": 1404037020}, {"position": [2769.4654384475825, 1950.1523056781878], "name": 1316471693}, {"position": [4282.115438449808, 4985.902305676859], "name": 1324295054}, {"position": [-1493.5345615540996, 4258.302305677475], "name": 1316471695}, {"position": [4370.915438443035, 4995.402305677743], "name": 1324295056}, {"position": [964.4654384430851, 2940.152305678012], "name": 1316471697}, {"position": [1857.5154384450343, 1585.452305677748], "name": 1316471698}, {"position": [1713.9154384437916, 1851.9023056775552], "name": 1316471699}, {"position": [2501.465438449202, 2264.7023056769913], "name": 1316471700}, {"position": [1401.5654384493814, 1876.7523056766322], "name": 1316471702}, {"position": [1997.015438448102, 1571.7023056769362], "name": 1316471704}, {"position": [124.81543844700127, 4532.852305677792], "name": 1316471705}, {"position": [945.5654384495915, 2585.502305677778], "name": 1316471706}, {"position": [434.2154384460173, 2495.902305676978], "name": 1316471707}, {"position": [1653.6654384466942, 2665.8023056782554], "name": 1316471709}, {"position": [2741.4154384430844, 1662.0523056776192], "name": 1316471712}, {"position": [991.1654384495705, 3617.7023056769285], "name": 1316471713}, {"position": [1027.715438446819, 2387.00230567801], "name": 1316471714}, {"position": [-1426.2845615533593, 4138.05230567732], "name": 1316471715}, {"position": [-1340.8345615530948, 4256.102305676634], "name": 1316471716}, {"position": [-7901.084561552807, -6247.897694322546], "name": 477633764}, {"position": [1409.8154384498685, 3900.3023056771726], "name": 1316471718}, {"position": [3269.415438445833, 2288.40230567684], "name": 1316471719}, {"position": [2939.2154384453306, -7101.747694322924], "name": 848733096}, {"position": [2715.4654384489163, -7152.997694323204], "name": 848733097}, {"position": [3292.1154384482065, -6849.497694322082], "name": 848733098}, {"position": [950.9154384446106, 1810.252305677551], "name": 1316471723}, {"position": [470.8154384474028, 2012.102305677388], "name": 1316471724}, {"position": [3549.8654384440442, -7048.197694322411], "name": 848733101}, {"position": [-1267.2345615527547, 4218.602305677166], "name": 1316471726}, {"position": [673.3154384477302, 2048.652305678189], "name": 1316471727}, {"position": [2180.7654384460307, 1303.0523056780653], "name": 1316471728}, {"position": [105.46543844469625, -1252.1976943222767], "name": 4273376072}, {"position": [-57.48456155174608, 5542.202305678145], "name": 1324295091}, {"position": [969.715438444041, 1739.1523056780045], "name": 1316471732}, {"position": [-1637.3845615547111, 4230.052305677745], "name": 1316471733}, {"position": [2415.415438449031, 2087.8023056774], "name": 1316471734}, {"position": [2343.0154384485036, 2881.4023056771275], "name": 1316471735}, {"position": [1015.31543844402, 2849.302305676815], "name": 1316471737}, {"position": [-692.4845615543518, 5613.202305676524], "name": 1324295098}, {"position": [3042.6654384498875, -6953.897694321753], "name": 848733115}, {"position": [277.9154384455751, 2148.352305678003], "name": 1316471740}, {"position": [2925.0154384499183, 2035.0023056767695], "name": 1316471741}, {"position": [1387.8154384485697, 3721.9023056778155], "name": 1316471742}, {"position": [-690.5845615534645, 4590.202305676527], "name": 1316471743}, {"position": [1060.6654384446301, 3780.8023056769002], "name": 1316471744}, {"position": [4958.5654384429745, 8744.652305678002], "name": 714081217}, {"position": [2317.1154384442616, 2273.8523056773374], "name": 1316471746}, {"position": [-1318.2345615518898, 4287.402305678256], "name": 1316471750}, {"position": [2498.565438443734, 2099.2523056779787], "name": 1316471751}, {"position": [970.3654384480842, 2214.6023056777153], "name": 1316471753}, {"position": [1858.6154384436782, 2510.852305677602], "name": 1316471754}, {"position": [3090.8154384476916, 1969.2523056775713], "name": 1316471756}, {"position": [-2586.6845615567513, 3901.852305677522], "name": 654397602}, {"position": [-4260.4845615557, 688.5023056781847], "name": 1315785549}, {"position": [-8903.284561554869, -690.597694323003], "name": 476791768}, {"position": [1825.715438450004, 466.1023056780067], "name": 1317671076}, {"position": [-639.4845615531608, 5897.752305678239], "name": 1324295132}, {"position": [684.1154384460424, 2540.0523056777756], "name": 1316471773}, {"position": [907.5654384460563, 2708.7523056774644], "name": 1316471774}, {"position": [2200.865438446442, 1872.1523056779433], "name": 1316471775}, {"position": [743.0154384451271, 2183.1523056778933], "name": 1316471777}, {"position": [769.0654384475692, 2776.952305676872], "name": 1316471778}, {"position": [2238.4154384482713, 1702.4523056772268], "name": 1316471779}, {"position": [647.6154384458255, 2427.5023056770096], "name": 1316471780}, {"position": [-5155.884561553137, -2574.647694322252], "name": 476791781}, {"position": [11647.115438449873, 7876.75230567686], "name": 1720121311}, {"position": [-701.7845615564511, -2543.5476943229673], "name": 1315785553}, {"position": [2752.915438449577, 2184.052305677753], "name": 1316471788}, {"position": [2409.3154384488003, 5348.602305677019], "name": 1324295149}, {"position": [748.8154384489576, 2392.5523056771426], "name": 1316471790}, {"position": [420.5154384493426, 3141.402305677943], "name": 1316471792}, {"position": [1198.3154384438421, 1691.1023056778163], "name": 1316471793}, {"position": [-253.38456155310496, 2484.602305678152], "name": 1316471795}, {"position": [1060.6154384475985, 2200.302305677582], "name": 1316471796}, {"position": [1154.7654384429507, 4028.202305677908], "name": 1316471797}, {"position": [1252.3654384466454, 1822.6023056779895], "name": 1316471799}, {"position": [2929.7154384479995, -8132.997694323407], "name": 1776116728}, {"position": [2305.1654384431686, 1733.452305677119], "name": 1316471801}, {"position": [-1737.6845615544312, -2894.5476943231797], "name": 845390842}, {"position": [1961.615438446529, 2975.7023056777853], "name": 1316471803}, {"position": [1365.7154384461023, 3367.402305677558], "name": 1316471804}, {"position": [351.41543844474654, 2311.752305677928], "name": 1316471805}, {"position": [4553.365438447088, 5468.652305676614], "name": 1324295167}, {"position": [1373.5654384490203, 3606.552305678079], "name": 1316471808}, {"position": [4303.315438448863, 5413.502305676942], "name": 1324295172}, {"position": [2128.415438448883, 2507.552305678118], "name": 1316471813}, {"position": [3441.615438447343, 5055.302305677856], "name": 1324295174}, {"position": [1160.1654384492122, 3067.2023056776966], "name": 1316471815}, {"position": [1291.565438449993, 3908.902305678197], "name": 1316471816}, {"position": [6687.665438448676, -6637.097694323302], "name": 1582473388}, {"position": [881.2154384472137, 3860.8523056780086], "name": 1316471818}, {"position": [11024.665438448266, -4868.74769432255], "name": 476914699}, {"position": [867.7654384499078, 2154.302305678257], "name": 1316471822}, {"position": [2734.815438444116, 1703.752305678208], "name": 1316471824}, {"position": [-1650.7345615508484, 4055.8023056771476], "name": 1316471825}, {"position": [-1552.3345615520157, 4182.502305678071], "name": 1316471827}, {"position": [2501.2654384468647, 2032.7523056771213], "name": 1316471828}, {"position": [191.86543844540438, 2358.4523056765506], "name": 1316471829}, {"position": [1093.065438446672, 3347.052305677778], "name": 1316471830}, {"position": [1450.7154384446608, 1458.5523056780403], "name": 1316471831}, {"position": [1200.365438450035, 3496.152305677569], "name": 1316471832}, {"position": [827.5654384490849, 3808.1023056779627], "name": 1316471834}, {"position": [1208.415438448185, 1954.7523056768769], "name": 1316471835}, {"position": [3102.0654384477098, 2108.402305676549], "name": 1316471837}, {"position": [1187.3154384431928, 2794.852305678219], "name": 1316471840}, {"position": [-175.18456155585227, 5677.052305676611], "name": 1324295201}, {"position": [3812.015438448668, 5314.652305678181], "name": 1324295202}, {"position": [-132.73456155360464, 5825.702305678249], "name": 1324295203}, {"position": [618.3154384444833, 4530.55230567756], "name": 1316471844}, {"position": [-125.63456155589847, 5850.552305677325], "name": 1324295205}, {"position": [3204.6154384488545, 5455.952305677414], "name": 1324295206}, {"position": [1212.3654384481597, 2846.302305677284], "name": 1316471848}, {"position": [852.715438448115, 1285.8023056772083], "name": 1316471849}, {"position": [1076.3654384433607, 3817.60230567707], "name": 1316471850}, {"position": [870.4654384459332, 2964.0023056778373], "name": 1316471851}, {"position": [-1475.9345615544817, 4069.4023056779824], "name": 1316471853}, {"position": [1280.865438445744, 3413.552305676859], "name": 1316471854}, {"position": [2183.115438448624, 1702.7523056771797], "name": 1316471855}, {"position": [3248.815438446684, 2407.2023056778135], "name": 1316471858}, {"position": [1211.1154384442102, 3698.0023056774057], "name": 1316471859}, {"position": [2994.7654384443467, 2111.102305677903], "name": 1316471860}, {"position": [-3119.78456155515, -4363.947694322689], "name": 1315785566}, {"position": [-1328.9345615561388, 4088.9023056767114], "name": 1316471862}, {"position": [2328.0654384478794, 2530.7523056774526], "name": 1316471863}, {"position": [4712.665438447061, 3916.20230567824], "name": 1319641268}, {"position": [-1506.2845615503306, 4241.90230567767], "name": 1316471866}, {"position": [424.06543844464295, 1324.9523056781954], "name": 1316471867}, {"position": [1055.4654384478113, 3412.152305678262], "name": 1316471868}, {"position": [2168.6654384467374, 1564.8023056780148], "name": 1316471871}, {"position": [880.8654384466763, 1925.752305677264], "name": 1316471872}, {"position": [1355.9654384494024, 1658.8523056775273], "name": 1316471873}, {"position": [1130.6154384485012, 3014.4523056776507], "name": 1316471874}, {"position": [1095.7654384498028, 3560.3523056781937], "name": 1316471875}, {"position": [1186.4154384468861, 1444.7523056766443], "name": 1316471876}, {"position": [10943.515438448514, -5164.297694323139], "name": 554689606}, {"position": [3167.865438449269, 1587.0023056780979], "name": 1316471879}, {"position": [2747.7654384497896, 2256.402305677696], "name": 1316471881}, {"position": [1767.6154384460574, 2106.552305678022], "name": 1316471883}, {"position": [402.1654384445128, 4790.002305677277], "name": 1316471884}, {"position": [-4411.184561554648, 9441.902305677984], "name": 2991483746}, {"position": [1562.7654384431366, 2130.3523056772633], "name": 1316471886}, {"position": [2508.165438449339, 3142.002305677849], "name": 1316471887}, {"position": [2678.365438448793, 2835.052305677266], "name": 1316471889}, {"position": [1634.9154384442954, 2585.502305677778], "name": 1316471890}, {"position": [491.1654384471831, 2206.9523056771345], "name": 1316471891}, {"position": [1087.7154384445475, 1670.3023056781062], "name": 1316471893}, {"position": [1559.8154384477425, 2218.502305677106], "name": 1316471894}, {"position": [2688.965438444768, 2258.352305677391], "name": 1316471895}, {"position": [598.2154384440719, 3725.902305676598], "name": 1316471896}, {"position": [112.46543844833923, 2272.202305677595], "name": 1316471898}, {"position": [2707.915438449504, 1874.4023056775916], "name": 1316471899}, {"position": [1198.3154384438421, 1562.9023056771275], "name": 1316471900}, {"position": [3253.3154384495333, 5899.802305677326], "name": 1324294330}, {"position": [8.365438446844564, 2386.0523056775664], "name": 1316471903}, {"position": [-4657.934561556942, -2821.59769432333], "name": 477619297}, {"position": [1393.1154384465572, 1778.0523056778463], "name": 1316471906}, {"position": [4586.06543844553, 4303.352305678132], "name": 1319641275}, {"position": [3005.5154384456273, 1966.2023056774558], "name": 1316471908}, {"position": [785.7154384467435, 2498.802305677117], "name": 1316471909}, {"position": [7618.865438445255, 2301.9023056782826], "name": 2629549316}, {"position": [2294.715438445394, 1890.502305677444], "name": 1316471913}, {"position": [2758.5654384481018, 2104.202305677205], "name": 1316471914}, {"position": [726.0154384454154, 2334.902305676678], "name": 1316471915}, {"position": [-1530.4845615560225, 3994.0023056779237], "name": 1316471916}, {"position": [1381.8154384495074, 3673.302305676529], "name": 1316471917}, {"position": [1070.9654384442047, 1567.7023056781536], "name": 1316471918}, {"position": [1054.7154384497048, 3357.25230567796], "name": 1316471919}, {"position": [289.1154384485617, 4597.0523056766415], "name": 1316471921}, {"position": [266.96543844906273, 2544.2523056771192], "name": 1316471924}, {"position": [3260.1654384478707, 2364.4023056768046], "name": 1320104126}, {"position": [2683.5154384485804, 2029.2023056782682], "name": 1316471926}, {"position": [3121.4654384470464, -8005.79769432197], "name": 1776116855}, {"position": [404.51543844710613, 4377.45230567721], "name": 1316471929}, {"position": [481.06543844994576, 2163.7523056767805], "name": 1316471930}, {"position": [326.71543844742246, 2256.90230567821], "name": 1316471931}, {"position": [3439.015438445381, 1669.9523056775688], "name": 602393450}, {"position": [3278.4154384444264, 1982.3023056773081], "name": 1316471934}, {"position": [2760.1654384454832, 1543.052305677861], "name": 1316471935}, {"position": [10809.265438446402, 3862.002305677237], "name": 2001675397}, {"position": [11683.815438445323, 3777.2523056780474], "name": 2001675399}, {"position": [2776.4154384470885, 1439.8523056780023], "name": 1316471945}, {"position": [1895.7654384479383, 2650.252305677725], "name": 1316471946}, {"position": [1062.5154384484858, 2907.9023056777232], "name": 1316471947}, {"position": [-4011.034561550275, -7817.347694322408], "name": 1887854544}, {"position": [1265.4154384463823, 3114.10230567688], "name": 1316471949}, {"position": [291.9154384457556, 4520.352305677377], "name": 1316471951}, {"position": [2764.0654384484264, 2026.1023056775684], "name": 1316471952}, {"position": [-1377.9845615502495, 4021.052305677841], "name": 1316471954}, {"position": [2061.715438443912, 461.3523056775648], "name": 1317671107}, {"position": [1379.3654384457454, 3303.202305676933], "name": 1316471958}, {"position": [-3598.2845615549763, -8010.397694322435], "name": 874300953}, {"position": [779.2654384459752, 2087.8023056774], "name": 1316471960}, {"position": [1508.8154384486074, 1934.1023056771432], "name": 1316471961}, {"position": [2428.5154384457996, 2268.302305678205], "name": 1316471962}, {"position": [-2652.534561555342, -2578.44769432225], "name": 479282332}, {"position": [4614.415438446429, -7037.997694322229], "name": 1785693343}, {"position": [1326.465438445723, 1569.4023056767037], "name": 1316471968}, {"position": [928.3654384475426, 3438.3523056771282], "name": 1316471969}, {"position": [9919.415438446322, 2137.402305677938], "name": 2001675426}, {"position": [9999.265438445093, 2120.2523056782497], "name": 2001675427}, {"position": [-1758.13456155538, 5816.302305676757], "name": 482731172}, {"position": [9873.665438448143, 2044.852305678191], "name": 2001675430}, {"position": [307.41543844925445, 2214.002305677809], "name": 1316471975}, {"position": [10072.315438449663, 2015.9523056779703], "name": 2001675432}, {"position": [-1663.184561550679, 6252.802305677818], "name": 482731177}, {"position": [4609.715438448347, -6643.647694323462], "name": 1785693354}, {"position": [319.16543844801026, 4648.40230567809], "name": 1316471979}, {"position": [-2519.7845615565484, 5922.502305677924], "name": 482731180}, {"position": [4508.515438445215, -6826.447694322724], "name": 1785693357}, {"position": [4793.865438443845, -6576.447694323307], "name": 1785693361}, {"position": [-1386.634561555411, 4192.85230567823], "name": 1316471988}, {"position": [2493.215438448715, 1791.9023056780502], "name": 1316471990}, {"position": [4635.615438445484, -6625.747694322115], "name": 1785693367}, {"position": [1957.3654384430483, 1272.7523056774714], "name": 1316471992}, {"position": [674.8154384439431, 3175.052305676829], "name": 1316471993}, {"position": [1118.3654384439023, 3926.352305677838], "name": 1316471994}, {"position": [478.0654384433092, 2593.50230567712], "name": 1316471995}, {"position": [4192.515438447231, 8437.652305676835], "name": 4402078908}, {"position": [9983.865438449868, 2027.602305677334], "name": 2001675431}, {"position": [-1433.534561556371, 4335.552305677837], "name": 1316471998}, {"position": [3963.815438446261, 8520.75230567806], "name": 4402078911}, {"position": [283.3654384488682, 4483.352305676646], "name": 1316472002}, {"position": [-6107.634561551833, -8151.797694322838], "name": 1632904388}, {"position": [955.3154384462914, 3141.1023056779895], "name": 1316472006}, {"position": [-87.78456155056347, -2499.5976943227306], "name": 152847559}, {"position": [2697.3154384464237, 1941.752305677724], "name": 1316472009}, {"position": [1567.965438447061, 2451.7023056773724], "name": 1316472011}, {"position": [660.9654384490682, 1970.9523056778976], "name": 1316472013}, {"position": [499.2154384453329, 2090.552305677562], "name": 1316472014}, {"position": [2691.7154384449304, -1357.347694321831], "name": 1316623297}, {"position": [-1330.1345615559512, -8118.147694322175], "name": 1883276500}, {"position": [-8086.684561554592, 2162.852305676921], "name": 1462576341}, {"position": [-7952.43456155248, -6478.997694323141], "name": 477635800}, {"position": [-357.1345615540622, 4970.202305678129], "name": 481498557}, {"position": [-2541.984561553079, 4842.702305676738], "name": 654394586}, {"position": [1690.815438443849, 1722.9523056769835], "name": 1316472028}, {"position": [8182.865438449482, -5661.64769432298], "name": 63298507}, {"position": [-8012.334561556145, 4116.602305677119], "name": 76482085}, {"position": [1294.31543844305, 3014.9523056781645], "name": 1316472033}, {"position": [1252.415438443677, 2170.002305676988], "name": 1316472035}, {"position": [-4009.8845615545997, 6125.452305678181], "name": 483108069}, {"position": [-1433.484561552234, 3944.152305678017], "name": 1316472038}, {"position": [-704.8845615500454, 3106.552305677468], "name": 483099888}, {"position": [9115.065438443537, -5564.197694322815], "name": 1784595697}, {"position": [9551.315438443453, -5302.897694322794], "name": 1784595703}, {"position": [1565.165438449867, 1450.1523056775768], "name": 1316472056}, {"position": [2287.0154384477814, -6158.947694322236], "name": 495641851}, {"position": [360.2654384451398, 2043.602305677794], "name": 1316472060}, {"position": [199.8654384465226, 2665.752305677671], "name": 1316472061}, {"position": [1313.0154384484172, 4019.0023056769774], "name": 1316472063}, {"position": [2983.7654384436973, 2259.852305677157], "name": 1316472064}, {"position": [-4423.534561553311, -1251.1976943230252], "name": 1315785600}, {"position": [-2611.8345615557814, 5946.452305677141], "name": 483108104}, {"position": [2535.265438446288, 1372.0523056779398], "name": 1316472081}, {"position": [2277.965438445051, 3145.4523056773096], "name": 1316472082}, {"position": [1053.5154384498924, 1411.9523056770333], "name": 1316472083}, {"position": [2506.615438448989, 1539.602305676624], "name": 1316472084}, {"position": [1146.9654384441696, 2186.652305677939], "name": 1316472087}, {"position": [7233.165438449873, 2397.8523056769063], "name": 2629549322}, {"position": [7259.1154384440415, -8432.547694322779], "name": 1769172027}, {"position": [-3922.5845615504795, 494.45230567712883], "name": 1315785605}, {"position": [-2530.5845615548606, 1550.9523056778107], "name": 1316196971}, {"position": [2495.8654384477086, 1729.9523056770738], "name": 1316472103}, {"position": [866.7654384453272, 1879.4523056779867], "name": 1316472107}, {"position": [1497.765438443821, 2137.9023056766755], "name": 1316472111}, {"position": [-1540.4345615550596, 4197.902305676848], "name": 1316472115}, {"position": [-5265.634561553156, 7905.402305677711], "name": 856909109}, {"position": [256.86543844472, 4420.752305676956], "name": 1316472118}, {"position": [-3420.53456155611, 8182.0523056777], "name": 2991482169}, {"position": [-3278.484561555217, 8027.902305677515], "name": 2991482170}, {"position": [-5291.934561554967, 6995.052305677874], "name": 856909116}, {"position": [6993.91543844996, -5065.397694322016], "name": 1765485450}, {"position": [-5341.834561555459, 6899.602305677988], "name": 856909118}, {"position": [593.415438444822, 4747.2023056780445], "name": 1316472128}, {"position": [1070.1654384490666, 3466.252305678097], "name": 1316472129}, {"position": [-1451.134561555989, 4312.902305677824], "name": 1316472130}, {"position": [1235.565438449271, 3367.302305678166], "name": 1316472131}, {"position": [440.5154384485854, 2603.2523056773725], "name": 1316472134}, {"position": [1506.1654384496137, 1610.7023056779467], "name": 1316472135}, {"position": [-1610.5845615541625, 4296.552305676826], "name": 1316472136}, {"position": [-1607.9345615551688, -4570.547694322969], "name": 95386508}, {"position": [2308.115438445668, 2062.552305677201], "name": 1316472139}, {"position": [697.2154384499163, 2266.5023056767095], "name": 1316472140}, {"position": [540.015438446062, 4622.7523056767695], "name": 1316472141}, {"position": [-2367.634561551313, 8055.952305676684], "name": 2991482193}, {"position": [1272.165438443551, 1898.252305677417], "name": 1316472146}, {"position": [2277.315438448113, 3366.7023056782596], "name": 1316472147}, {"position": [894.615438447488, 2305.702305678281], "name": 1316472148}, {"position": [1122.615438447383, 2012.102305677388], "name": 1316472149}, {"position": [1382.5654384476138, 2503.7523056781197], "name": 1316472150}, {"position": [537.8654384458059, 2810.302305677581], "name": 1316472151}, {"position": [1036.7654384495495, 3122.252305677975], "name": 1316472154}, {"position": [-3821.134561555084, -1620.4976943221538], "name": 1315785615}, {"position": [771.9654384459318, 2249.602305678167], "name": 1316472156}, {"position": [393.41543844528815, 2405.2023056775342], "name": 1316472158}, {"position": [461.2154384489031, 4462.702305676913], "name": 1316472160}, {"position": [1044.9654384458995, 3743.952305677922], "name": 1316472161}, {"position": [-2465.8845615519454, 7845.152305677061], "name": 2991482210}, {"position": [-2584.3845615511896, 7387.452305676945], "name": 2991482211}, {"position": [-2949.534561551559, 6852.402305677075], "name": 2991482212}, {"position": [2492.915438445209, 1883.5023056773537], "name": 1316472166}, {"position": [2453.7654384459984, 8263.902305676751], "name": 623412583}, {"position": [1083.565438449341, 3515.5023056780974], "name": 1316472169}, {"position": [-3191.5845615557714, 6449.802305677821], "name": 2991482218}, {"position": [-1728.584561554669, 4202.552305677898], "name": 1316472171}, {"position": [617.6154384434085, 3068.9523056768307], "name": 1316472172}, {"position": [1034.0654384464187, 2071.7023056775474], "name": 1316472174}, {"position": [690.765438449148, 2115.3023056772467], "name": 1316472177}, {"position": [780.2654384434504, -4336.847694322188], "name": 1887593843}, {"position": [-2315.934561551103, 6712.102305677092], "name": 2991482229}, {"position": [-2216.3345615524577, -6792.547694322692], "name": 599409562}, {"position": [-137.03456155411686, -8037.997694323451], "name": 1887593849}, {"position": [3470.465438446979, 6219.302305677133], "name": 476562811}, {"position": [648.2654384498687, -4207.147694321733], "name": 1887593856}, {"position": [-4964.834561555164, 3104.1023056772588], "name": 478373250}, {"position": [-8311.13456155208, 1582.4523056782168], "name": 2629524985}, {"position": [-5367.934561554932, 7696.402305677808], "name": 856909198}, {"position": [-7290.434561554093, 2887.302305676798], "name": 3113821585}, {"position": [-1213.6345615516575, -3550.3476943219425], "name": 1888322965}, {"position": [-7369.284561555389, 2516.902305677249], "name": 3113821592}, {"position": [-9255.134561556133, 1495.8023056781399], "name": 483122165}, {"position": [-509.2845615521924, -3865.647694322405], "name": 1888322976}, {"position": [-5853.734561554802, 5629.852305677474], "name": 478373282}, {"position": [-6908.63456155455, 2803.502305678052], "name": 3113821603}, {"position": [-6908.534561553381, 2657.9023056765295], "name": 3113821604}, {"position": [-6392.984561550464, 2318.452305678065], "name": 3113821608}, {"position": [-3644.984561553599, -8002.54769432307], "name": 874300841}, {"position": [-6197.184561550273, 2319.602305677293], "name": 3113821611}, {"position": [531.7154384485434, -4315.697694321941], "name": 1888322988}, {"position": [-4016.3845615523996, -1641.7976943223778], "name": 1315785630}, {"position": [-6598.834561550859, 2507.152305676996], "name": 3113821627}, {"position": [-741.4345615543994, 8098.952305678253], "name": 856909246}, {"position": [-1146.1345615515484, 7389.002305677294], "name": 856909249}, {"position": [-3282.884561556898, 8474.402305678197], "name": 856909251}, {"position": [-3258.6345615541745, -2273.7976943218996], "name": 75351492}, {"position": [-2052.184561556203, -3181.1976943227905], "name": 476792263}, {"position": [-1814.4845615566396, -3194.947694321826], "name": 476792264}, {"position": [-1857.9345615563625, 7856.60230567764], "name": 856909257}, {"position": [-1236.4345615551997, -3503.247694322198], "name": 476792266}, {"position": [-742.8845615535806, -3644.247694323255], "name": 476792268}, {"position": [-1417.6345615553032, 7525.552305677863], "name": 856909263}, {"position": [-406.3345615534786, -3864.6476943231532], "name": 1888323026}, {"position": [-2218.3345615545136, -628.447694323242], "name": 1315785635}, {"position": [-1809.1345615545151, 3711.7023056776334], "name": 1316236336}, {"position": [-8547.4345615566, 130.6523056765485], "name": 87752549}, {"position": [-7514.334561555814, 1367.0523056781292], "name": 4779853276}, {"position": [-7473.734561550316, 1513.902305678272], "name": 4779853277}, {"position": [-4407.084561556474, -448.8976943228806], "name": 1562117598}, {"position": [-4687.034561555947, -84.39769432300182], "name": 1562117599}, {"position": [-195.98456155023314, -2532.8476943222713], "name": 624738555}, {"position": [11280.465438446186, -798.2976943221587], "name": 602392037}, {"position": [484.66543844938315, 6466.852305678117], "name": 856909286}, {"position": [1507.2154384441205, 6485.202305677618], "name": 856909292}, {"position": [7145.315438449984, -2852.4476943232457], "name": 602392045}, {"position": [-4791.6345615561795, -3832.1976943223035], "name": 1887913947}, {"position": [2487.1654384455155, 6337.002305677686], "name": 856909299}, {"position": [912.2654384441375, 778.0023056778163], "name": 1317671166}, {"position": [440.86543844912285, 6237.552305677241], "name": 856909306}, {"position": [9152.615438445366, -6977.747694323355], "name": 602392061}, {"position": [9603.915438447075, -7191.497694321924], "name": 602392062}, {"position": [9659.315438447891, -7219.847694322823], "name": 602392063}, {"position": [10825.815438444408, -7543.847694321926], "name": 602392064}, {"position": [-305.8345615514213, 4009.9523056778], "name": 654403074}, {"position": [9207.865438447981, -6881.697694321787], "name": 602392067}, {"position": [10473.11543844387, -2367.74769432202], "name": 602392070}, {"position": [7321.365438443195, 6100.152305677398], "name": 103736843}, {"position": [-4896.284561553443, 4013.2023056767], "name": 4397155856}, {"position": [1826.115438447573, 585.3523056771337], "name": 1317671171}, {"position": [71.36543844410426, -156.29769432301543], "name": 3758885806}, {"position": [1505.4154384444018, 6182.40230567757], "name": 856909334}, {"position": [-5225.234561549996, 1497.1023056773447], "name": 4153722393}, {"position": [-2062.834561556315, 6303.152305678239], "name": 603884627}, {"position": [2109.8654384488214, -2700.7476943232687], "name": 103736869}, {"position": [-7110.384561556771, 1361.6023056766126], "name": 483116582}, {"position": [1508.46543844807, 6691.7023056767275], "name": 856909354}, {"position": [3900.865438446033, 8876.502305676937], "name": 4573378141}, {"position": [2899.5154384432453, 6726.8523056771555], "name": 856909363}, {"position": [-7037.734561556874, -512.797694321776], "name": 3569237097}, {"position": [1102.7654384463403, 2612.6023056782797], "name": 476554809}, {"position": [1322.5154384457483, 3072.9023056768056], "name": 476554810}, {"position": [-8005.0845615531325, -7450.747694322857], "name": 477643018}, {"position": [1487.9654384429841, 4185.40230567821], "name": 476554817}, {"position": [1087.7654384486846, 8.70230567784347], "name": 1317671179}, {"position": [3595.115438443486, 9218.302305677995], "name": 4573378146}, {"position": [-384.1845615539796, -3877.3476943223527], "name": 677799505}, {"position": [-664.2845615516535, 6052.602305677723], "name": 482731602}, {"position": [3640.315438445896, 9269.702305678251], "name": 4573378147}, {"position": [481.41543844337775, -4296.297694322604], "name": 677799508}, {"position": [-8767.684561554745, -3642.4476943217596], "name": 1582517312}, {"position": [4450.365438444237, 9355.552305677862], "name": 2932033117}, {"position": [-4568.234561553198, 3894.052305676965], "name": 483108446}, {"position": [3901.6654384482763, 8639.302305677887], "name": 4573378149}, {"position": [4487.415438447329, 9307.802305677626], "name": 2932033121}, {"position": [-7088.984561555379, -3257.897694322054], "name": 477641659}, {"position": [4255.265438445122, 9171.802305678157], "name": 2932033124}, {"position": [10861.115438444813, 7754.502305678201], "name": 619349605}, {"position": [4996.865438450015, 8042.352305677625], "name": 618178152}, {"position": [-481.3845615529999, 8688.402305677911], "name": 1575913067}, {"position": [-4106.184561550208, 3727.152305676995], "name": 483108462}, {"position": [3960.81543844673, 8958.702305676525], "name": 4573378152}, {"position": [4137.365438445784, 4413.202305677543], "name": 1319641364}, {"position": [-5872.984561555939, -955.4976943224602], "name": 479299194}, {"position": [7393.765438443723, 7414.352305676885], "name": 654379967}, {"position": [-9017.084561556032, -4327.347694323081], "name": 5021317141}, {"position": [-384.63456155568565, -6712.897694322706], "name": 1887541364}, {"position": [-3114.7345615565314, 7324.652305676693], "name": 3064901910}, {"position": [-2543.984561555135, 1477.5523056780316], "name": 1316196983}, {"position": [-3396.634561553924, 7711.002305677895], "name": 1575913101}, {"position": [-5702.23456155361, -416.14769432207765], "name": 479299222}, {"position": [4474.315438443455, -505.09769432238727], "name": 103736983}, {"position": [-3712.4845615537083, 7222.052305676741], "name": 3064901914}, {"position": [-541.8345615524345, 8403.252305678066], "name": 856909476}, {"position": [507.66543844815715, 8213.302305676962], "name": 856909486}, {"position": [5869.865438448585, 1164.2023056772643], "name": 3356049693}, {"position": [-582.084561550289, -7266.4976943226375], "name": 1887596162}, {"position": [-6919.484561556999, 2001.452305677276], "name": 483116732}, {"position": [4696.115438449056, 8331.652305678006], "name": 618178241}, {"position": [2467.2154384433043, -6496.597694322759], "name": 1581175468}, {"position": [-8041.73456155155, 2326.3523056780145], "name": 251086533}, {"position": [4912.665438446595, 4388.402305677275], "name": 1319641377}, {"position": [5197.715438448824, -6742.497694322225], "name": 2049850521}, {"position": [-200.08456155551357, -4184.097694322375], "name": 4715079372}, {"position": [109.91543844340868, -4308.397694321897], "name": 4715079375}, {"position": [-4796.434561555429, 645.9023056777369], "name": 301639384}, {"position": [3673.6654384483813, 4625.302305678148], "name": 1319641380}, {"position": [7908.165438443859, 5216.002305678202], "name": 476559301}, {"position": [3428.6154384446377, -7231.897694323308], "name": 1489398735}, {"position": [-1631.8345615502494, 7418.702305677982], "name": 1404152786}, {"position": [-420.0845615542903, -6224.397694323258], "name": 1887596164}, {"position": [-8430.834561551137, -1797.8976943222592], "name": 1890862842}, {"position": [-7320.934561555248, 7612.602305677285], "name": 601661206}, {"position": [3018.2154384448268, -5689.197694323411], "name": 495640875}, {"position": [5270.115438449352, 8656.152305677622], "name": 618170117}, {"position": [1269.7154384468945, 9514.002305676782], "name": 1404618503}, {"position": [1719.4654384482533, -1628.9976943220097], "name": 152848137}, {"position": [2314.615438443468, 9041.652305677771], "name": 1404618506}, {"position": [-8101.784561553415, -1104.5976943222513], "name": 78604047}, {"position": [2384.16543844977, 8988.402305677213], "name": 1404618518}, {"position": [1715.4154384471099, 9381.952305677289], "name": 1404618520}, {"position": [2650.765438446001, 8641.702305677512], "name": 1404618523}, {"position": [-8595.034561551529, -6639.847694323464], "name": 477636380}, {"position": [3256.9654384460023, 8358.40230567797], "name": 1404618525}, {"position": [-9075.484561556379, 9219.6023056772], "name": 601712416}, {"position": [-9068.2845615504, 9237.352305676794], "name": 601712418}, {"position": [2494.3154384473587, 8570.402305677404], "name": 1404618536}, {"position": [-8400.38456155412, -1815.8976943229986], "name": 1890862891}, {"position": [1897.2154384471196, 9033.702305677238], "name": 1404618542}, {"position": [1745.3154384483582, 9504.602305677068], "name": 1404618543}, {"position": [4505.615438446853, 2310.7523056768996], "name": 1319204488}, {"position": [5017.165438445659, 2062.452305677809], "name": 1319204489}, {"position": [-7904.084561552338, -4084.64769432193], "name": 1990203575}, {"position": [-8080.58456155436, 2217.1023056767326], "name": 3724314425}, {"position": [-8348.43456155454, 2312.0523056778807], "name": 3724314427}, {"position": [-8380.284561553708, 9104.452305678024], "name": 601712444}, {"position": [1601.0154384460407, 9271.452305677385], "name": 1404618557}, {"position": [2121.9654384481146, 8864.652305677013], "name": 1404618559}, {"position": [2778.01543844447, 8690.752305676951], "name": 1404618560}, {"position": [-8852.084561553398, -581.6476943234505], "name": 2531707872}, {"position": [1959.4154384492413, 8065.55230567696], "name": 1404618566}, {"position": [-3800.5845615529665, 7871.652305677657], "name": 601712455}, {"position": [-2137.1845615547613, 7211.502305677797], "name": 601712458}, {"position": [-2058.234561552297, 7186.802305676921], "name": 601712459}, {"position": [-4854.334561557039, 436.9523056766411], "name": 481390556}, {"position": [-6679.284561556642, 2406.2023056767857], "name": 3113822031}, {"position": [2232.16543844984, 8967.902305677455], "name": 1404618576}, {"position": [11233.515438448194, -891.4976943223962], "name": 93792082}, {"position": [7909.515438448978, -7200.197694322341], "name": 495646350}, {"position": [-969.4345615542943, 5120.052305677802], "name": 1404036950}, {"position": [-491.28456155500544, 5158.852305678252], "name": 1404036952}, {"position": [821.6154384470542, 6831.202305678019], "name": 1404036954}, {"position": [-1339.684561550314, 1207.352305677034], "name": 1316196990}, {"position": [-5607.434561554214, -1058.4976943217584], "name": 601663327}, {"position": [-4866.484561553363, -6123.2976943230715], "name": 1314685709}, {"position": [-5910.8345615541675, -1536.1476943223097], "name": 601663332}, {"position": [2986.715438446197, 8301.802305677342], "name": 1404618598}, {"position": [-709.2845615517263, 5324.202305677872], "name": 1404036968}, {"position": [2011.6154384481888, 9145.102305677], "name": 1404618601}, {"position": [-5982.7845615529895, -1511.1976943220639], "name": 601663340}, {"position": [-801.0345615545589, 5369.052305677968], "name": 1404036975}, {"position": [809.965438449467, 6725.902305676712], "name": 1404036979}, {"position": [-226.48456155138774, 5090.252305677723], "name": 1404036983}, {"position": [1380.0154384497887, 6819.852305676833], "name": 1404036985}, {"position": [-561.7845615546457, 5009.302305676755], "name": 1404036994}, {"position": [-1388.6845615544985, 5223.452305678222], "name": 482731911}, {"position": [-2078.634561556214, 4302.602305678249], "name": 482731912}, {"position": [6747.2154384446985, 6350.8523056778895], "name": 2932000650}, {"position": [-146.58456155558497, 5359.4523056776925], "name": 1404037003}, {"position": [-6512.984561553026, -3489.447694322578], "name": 477641710}, {"position": [-320.33456155033946, 5305.852305676595], "name": 1404037005}, {"position": [838.3654384473971, 7017.152305676788], "name": 1404037006}, {"position": [5299.965438446463, 322.25230567739516], "name": 1888382882}, {"position": [-878.2345615543363, 5156.752305676804], "name": 1404037011}, {"position": [-1084.6345615505015, 5358.652305677225], "name": 1404037013}, {"position": [-511.8845615541545, 5362.802305677761], "name": 1404037014}, {"position": [-505.33456155221756, 5131.552305677189], "name": 1404037015}, {"position": [-216.23456155595022, 5125.952305677472], "name": 1404037018}, {"position": [2285.515438444463, -7417.197694323363], "name": 495642523}, {"position": [-8592.484561553703, 9131.052305678011], "name": 601712540}, {"position": [672.8154384489926, 7038.852305678134], "name": 1404037022}, {"position": [-8276.484561555719, -6526.547694322815], "name": 477636511}, {"position": [-734.584561556062, 5271.952305676564], "name": 1404037024}, {"position": [-188.934561556664, 5221.002305678013], "name": 1404037025}, {"position": [-718.534561556794, 5455.0023056769705], "name": 1404037029}, {"position": [-821.9345615501084, 5379.25230567815], "name": 1404037030}, {"position": [-8928.934561552636, -1754.647694323097], "name": 1890761713}, {"position": [-1047.1845615569464, 5227.902305676935], "name": 1404037033}, {"position": [3541.8654384500314, 406.45230567726287], "name": 1317671240}, {"position": [1001.8154384496825, 7005.652305677401], "name": 1404037042}, {"position": [-350.03456155635604, 5433.702305676747], "name": 1404037043}, {"position": [-453.0345615521014, 5233.2523056772825], "name": 1404037044}, {"position": [8696.765438443777, -7174.997694322727], "name": 1777868857}, {"position": [-1090.1345615508262, 5154.452305676571], "name": 1404037047}, {"position": [2892.715438449045, -1197.1976943225827], "name": 152848312}, {"position": [-489.3345615499811, 5418.252305677384], "name": 1404037053}, {"position": [-239.88456155166205, 5321.952305678224], "name": 1404037055}, {"position": [-3374.5845615555936, -3229.2976943217864], "name": 479283141}, {"position": [1388.0654384479385, 6932.252305677622], "name": 1404037062}, {"position": [11383.4154384449, -4373.447694321797], "name": 63301576}, {"position": [-3756.234561556937, -3150.74769432222], "name": 1889249225}, {"position": [582.1154384477722, 6749.70230567773], "name": 1404037067}, {"position": [-3772.3845615502682, -3107.297694322497], "name": 1889249229}, {"position": [-996.1345615536743, 5317.3523056777585], "name": 1404037073}, {"position": [-4746.084561553233, -2939.0976943233227], "name": 1889249235}, {"position": [-298.5345615513779, 6715.802305677698], "name": 1404037076}, {"position": [-3613.9345615566754, -3651.6476943226908], "name": 1887913942}, {"position": [-4023.684561552443, -3684.2476943217407], "name": 1887913945}, {"position": [-4294.034561553417, -3023.5976943231435], "name": 1889249242}, {"position": [-3834.5345615553583, -3327.5976943230035], "name": 1889249243}, {"position": [7130.015438448822, 2696.152305677657], "name": 2629549321}, {"position": [-347.1845615550251, 5154.452305676571], "name": 1404037085}, {"position": [-178.18456155538343, 5264.602305677712], "name": 1404037086}, {"position": [-167.48456155113445, 5071.902305678222], "name": 1404037087}, {"position": [-354.63456155326867, -15.49769432251935], "name": 1316693988}, {"position": [991.2154384466021, 367.4523056780288], "name": 1316693989}, {"position": [-3687.8845615504474, -3985.347694323238], "name": 1887913958}, {"position": [3494.4654384432283, 4772.802305677004], "name": 1404037095}, {"position": [-668.0845615534281, 24.152305677205277], "name": 1316693992}, {"position": [-433.0845615569956, 227.55230567739204], "name": 1316693994}, {"position": [221.41543844611533, 720.6523056773051], "name": 1316693995}, {"position": [889.2654384453635, 546.3523056778996], "name": 1316693996}, {"position": [-572.5345615559263, 280.30230567743786], "name": 1316693998}, {"position": [-577.8845615509454, 80.75230567783365], "name": 1316693999}, {"position": [-931.9345615566021, 154.15230567761284], "name": 1316694000}, {"position": [-638.0845615510111, 5583.902305676957], "name": 1404037105}, {"position": [1623.3654384478768, 18.202305676950914], "name": 1316694003}, {"position": [-645.3345615540229, 88.5023056778067], "name": 1316694004}, {"position": [1509.265438443208, 6823.902305677976], "name": 1328999422}, {"position": [1208.6654384475537, 431.2523056775319], "name": 1316694008}, {"position": [3516.715438443896, -7656.2976943233], "name": 2049820665}, {"position": [1826.3654384469419, 664.8023056765595], "name": 1316694010}, {"position": [-1928.8845615506034, -6894.09769432281], "name": 1887913979}, {"position": [-2137.384561549993, -7279.747694322936], "name": 1887913980}, {"position": [1219.8654384434349, 692.9523056768971], "name": 1316694013}, {"position": [-301.6345615520777, 443.15230567804065], "name": 1316694014}, {"position": [-8290.284561553563, 663.1023056780094], "name": 85010431}, {"position": [1205.7654384491912, 362.85230567756344], "name": 1316694016}, {"position": [-5547.5345615505485, -6281.197694322671], "name": 477628417}, {"position": [1599.1154384451534, 332.75230567753056], "name": 1316694018}, {"position": [-3416.234561555598, -3363.947694323244], "name": 1889249283}, {"position": [-269.434561552373, 679.4023056766463], "name": 1316694021}, {"position": [-875.484561554174, 72.55230567793092], "name": 1316694022}, {"position": [1508.865438445639, 424.8023056767636], "name": 1316694025}, {"position": [-8396.534561555312, -608.0476943228774], "name": 1469016582}, {"position": [-844.3845615531131, 229.95230567701697], "name": 1316694027}, {"position": [-829.834561550058, 267.8523056776072], "name": 1316694028}, {"position": [1825.3654384494666, 355.9523056768654], "name": 1316694029}, {"position": [-550.4345615534589, 5267.852305676613], "name": 1404037134}, {"position": [-315.034561552352, 183.9523056776926], "name": 1316694031}, {"position": [-618.1345615559053, 165.6023056781919], "name": 1316694033}, {"position": [-481.1845615506627, -27.547694323004634], "name": 1316694034}, {"position": [-851.4845615508193, 211.502305678124], "name": 1316694036}, {"position": [1203.3654384495662, -94.69769432257635], "name": 1316694037}, {"position": [-612.0345615556744, -17.447694322214602], "name": 1316694040}, {"position": [-442.8845615507271, 109.20230567812439], "name": 1316694041}, {"position": [-108.53456155501817, -116.49769432331425], "name": 1316694045}, {"position": [-4192.784561553253, -3233.847694323444], "name": 1889249311}, {"position": [-5151.384561550287, -2759.5476943229614], "name": 1889249313}, {"position": [1207.665438442973, 2.402305677051686], "name": 1316694050}, {"position": [-945.384561553908, 287.15230567755157], "name": 1316694051}, {"position": [-861.9345615556995, 150.95230567752083], "name": 1316694052}, {"position": [-580.5845615540761, -40.79769432330238], "name": 1316694053}, {"position": [-6316.234561552392, -7848.447694323469], "name": 477644839}, {"position": [1986.8654384467277, 656.5023056772645], "name": 1316694056}, {"position": [-478.43456155050035, 120.65230567692709], "name": 1316694057}, {"position": [1504.1154384434208, 680.8523056776039], "name": 1316694059}, {"position": [-795.1845615536968, 358.2523056770981], "name": 1316694061}, {"position": [911.6154384471997, 706.0523056772183], "name": 1316694062}, {"position": [-363.33456155546173, -61.44769432303576], "name": 1316694063}, {"position": [-918.5345615563278, 213.75230567777237], "name": 1316694064}, {"position": [-202.3845615539699, 147.25230567691483], "name": 1316694066}, {"position": [-175.58456155342128, -59.14769432280309], "name": 1316694067}, {"position": [-1049.0845615507283, 31.352305677856407], "name": 1316694068}, {"position": [-1067.384561551421, 7517.902305677282], "name": 1404152841}, {"position": [-4690.884561554753, -2865.5476943217905], "name": 1889249337}, {"position": [-1626.3345615570302, -7021.247694321886], "name": 4824459322}, {"position": [-3824.6845615503844, -3078.647694323422], "name": 1889249340}, {"position": [-3746.9345615548377, -3157.7976943228946], "name": 1889249343}, {"position": [-3346.93456155577, -3280.6976943220434], "name": 1889249347}, {"position": [3518.66543844892, -7567.397694321798], "name": 2049820744}, {"position": [-765.5345615518172, 7393.802305676544], "name": 1404152844}, {"position": [-4107.734561550558, -3290.797694322833], "name": 1889249354}, {"position": [-4343.83456155274, -7829.797694322238], "name": 210643019}, {"position": [-8883.334561552658, -642.8476943227679], "name": 5002561614}, {"position": [-3765.684561550131, -3054.547694322451], "name": 1889249359}, {"position": [-7265.384561556231, 225.8523056770656], "name": 486131798}, {"position": [-3908.2845615538986, -3271.7976943228423], "name": 1889249369}, {"position": [3622.315438448709, -7548.447694322391], "name": 2049820777}, {"position": [727.2154384452278, -1488.3976943220746], "name": 4273219690}, {"position": [819.5654384479667, 67.00230567702192], "name": 1317671054}, {"position": [691.7654384466232, -1469.09769432213], "name": 4273219692}, {"position": [-974.7345615522818, 8750.15230567655], "name": 1404152850}, {"position": [-1452.9845615527393, 2758.9023056773244], "name": 482732142}, {"position": [595.7654384474154, -1446.347694322725], "name": 4273219699}, {"position": [1703.9654384447545, -969.597694322033], "name": 773662836}, {"position": [702.5654384449354, -1417.6476943230655], "name": 4273219701}, {"position": [515.3654384457695, -2502.6976943234304], "name": 4075546746}, {"position": [653.9654384454252, -1333.347694322029], "name": 4273219708}, {"position": [2679.915438449143, -6038.347694323321], "name": 1581175146}, {"position": [713.8654384490906, -1340.797694322049], "name": 4273219711}, {"position": [246.06543844640782, -2129.147694322597], "name": 967329921}, {"position": [715.8154384470095, -1376.8976943229204], "name": 4273219716}, {"position": [-3003.7845615566994, -259.0476943229447], "name": 4955392133}, {"position": [-7080.684561550754, -6770.397694323194], "name": 477636742}, {"position": [718.9654384447408, -1377.6976943233876], "name": 4273219719}, {"position": [-604.2345615568934, 8055.952305676684], "name": 619530378}, {"position": [-8448.684561550124, -3649.097694323089], "name": 1582517271}, {"position": [-6235.934561551914, -2013.847694323445], "name": 1890502796}, {"position": [730.0154384495272, -1331.5476943223102], "name": 4273219729}, {"position": [4443.165438445362, 4126.852305677886], "name": 1319204547}, {"position": [-2584.3845615511896, 288.60230567673284], "name": 4955392148}, {"position": [883.065438443964, -1705.7476943218576], "name": 773662870}, {"position": [769.8154384456757, -1283.2976943233375], "name": 4273219735}, {"position": [-2740.2845615540627, 353.9023056777779], "name": 4955392152}, {"position": [-7276.434561553913, -1525.8976943233192], "name": 1890502809}, {"position": [562.4654384490668, -1237.7976943227509], "name": 773662874}, {"position": [2274.465438446782, 4718.102305677263], "name": 476555419}, {"position": [808.8654384437177, -1289.4976943229608], "name": 4273219742}, {"position": [81.5154384454786, -339.84769432215955], "name": 773662879}, {"position": [1820.0654384443737, -2376.7476943223896], "name": 210643104}, {"position": [9954.165438443852, -461.84769432322526], "name": 114903203}, {"position": [552.6154384440929, -1303.4976943231413], "name": 4273219748}, {"position": [503.96543844755115, -1422.097694321778], "name": 4273219753}, {"position": [659.6654384480871, -1319.7476943229703], "name": 4273219754}, {"position": [5044.615438443145, -5214.847694322344], "name": 554686151}, {"position": [576.4654384492474, -1253.3476943232813], "name": 4273219757}, {"position": [-515.6845615559291, -13.5476943228241], "name": 1316694011}, {"position": [1013.7654384436701, -846.147694321786], "name": 773662896}, {"position": [-2950.434561554971, 4667.3023056769125], "name": 76482738}, {"position": [-3506.1845615516063, 3554.552305677916], "name": 76482739}, {"position": [1187.3154384431928, -1971.7976943223193], "name": 773662900}, {"position": [-841.5345615517822, 7223.402305676529], "name": 1404152862}, {"position": [-2662.5345615514107, -1985.7976943224999], "name": 479283382}, {"position": [-6907.3845615506, -2496.8476943225683], "name": 1890502839}, {"position": [9651.81543844551, -3816.297694323012], "name": 93792440}, {"position": [960.3154384478785, -2422.647694322322], "name": 773662907}, {"position": [820.7654384477792, -1100.6976943228608], "name": 4273219772}, {"position": [784.9654384486371, -1082.8476943220976], "name": 4273219775}, {"position": [-2337.5345615548326, 3782.35230567725], "name": 639305926}, {"position": [794.0654384483992, -1193.9976943224906], "name": 4273219783}, {"position": [849.3154384439094, -1012.7476943218028], "name": 4273219785}, {"position": [822.9154384480353, -1009.4976943229028], "name": 4273219788}, {"position": [-7287.084561554025, -3546.097694322015], "name": 1890502861}, {"position": [671.865438448549, -1640.3476943231965], "name": 4273219790}, {"position": [2383.565438449864, -7271.647694322425], "name": 1581175160}, {"position": [8292.015438449596, -7056.297694322921], "name": 3733749299}, {"position": [-3038.6845615524294, 2633.102305678037], "name": 639305947}, {"position": [118.51543844443313, -4980.897694322195], "name": 75349972}, {"position": [3281.765438444495, -7983.697694323056], "name": 1489398821}, {"position": [190.0154384486541, -5038.847694322612], "name": 677800163}, {"position": [-8800.384561553186, -3746.097694323325], "name": 1582517287}, {"position": [-3761.6845615531247, 4869.152305676749], "name": 483103101}, {"position": [-6858.3345615564895, -2942.7976943221524], "name": 1890502898}, {"position": [-6307.834561553705, -2128.5976943232754], "name": 1890502904}, {"position": [-6782.234561555356, -1722.7976943221533], "name": 1890502906}, {"position": [-428.78456155648337, 8936.502305678217], "name": 1404152874}, {"position": [-1419.134561551516, 1726.9023056769583], "name": 4460275969}, {"position": [-610.3845615541559, 6134.702305677919], "name": 608700679}, {"position": [-827.1345615540326, 9331.702305678036], "name": 1404152876}, {"position": [4092.2154384475107, -5280.647694322127], "name": 1489398829}, {"position": [-7351.184561557034, -3520.9976943217926], "name": 1890502938}, {"position": [4047.9654384455444, -5054.047694322606], "name": 1489398832}, {"position": [-1165.0845615562844, 7661.852305677286], "name": 1404152882}, {"position": [-1193.7845615506149, 9052.202305676716], "name": 1404152884}, {"position": [3176.965438449031, 310.6023056780316], "name": 1317671306}, {"position": [3168.415438445038, -7224.99769432261], "name": 1489398837}, {"position": [73.8154384478662, 2523.65230567797], "name": 1316236342}, {"position": [-2806.484561553191, 4985.002305677], "name": 482732359}, {"position": [8688.36543844509, -4554.8976943230455], "name": 1784682705}, {"position": [906.0154384457064, -1022.4976943220554], "name": 4273350989}, {"position": [910.7154384437877, -1002.3976943234203], "name": 4273350990}, {"position": [-4474.934561550015, -4785.747694322496], "name": 1315678544}, {"position": [-4928.884561550717, 9389.202305676747], "name": 622622435}, {"position": [4444.715438445712, -790.047694323448], "name": 677734741}, {"position": [-5401.134561552112, 2238.9023056774704], "name": 93310009}, {"position": [3370.165438447259, -7486.547694321999], "name": 1581175183}, {"position": [3540.815438448419, -8419.54769432185], "name": 1765493085}, {"position": [8130.565438449366, -3828.9976943222114], "name": 1782376799}, {"position": [-2944.3845615517716, -2441.947694322266], "name": 479283552}, {"position": [10826.365438447283, -1674.5476943231806], "name": 93792610}, {"position": [-2279.184561551517, 1186.752305677885], "name": 1316236347}, {"position": [-215.08456155316935, -57.19769432310784], "name": 1316694017}, {"position": [-4368.684561555369, -5251.547694323122], "name": 1315678567}, {"position": [-5858.784561553421, -3550.997694322433], "name": 1315678568}, {"position": [-4302.2845615539045, -5096.197694323124], "name": 1315678569}, {"position": [-2763.884561552743, -5322.747694322061], "name": 1315678570}, {"position": [-2957.0345615539395, -4928.247694323318], "name": 1315678571}, {"position": [-5471.98456155229, -3724.6976943219324], "name": 1315678572}, {"position": [-954.1845615501643, -6882.197694322301], "name": 1315678573}, {"position": [4922.865438445001, -6592.097694323229], "name": 620136814}, {"position": [-4252.684561556918, -4980.947694322779], "name": 1315678575}, {"position": [-3922.1845615529105, -3184.797694322228], "name": 1889249267}, {"position": [-4119.534561553451, -5335.3976943224525], "name": 1315678579}, {"position": [-3611.4845615529134, -7531.19769432331], "name": 1315678581}, {"position": [-6196.334561550998, -823.0976943224277], "name": 479299959}, {"position": [-2925.5345615553097, -5116.69769432288], "name": 1315678584}, {"position": [-3016.034561554193, -5132.397694323387], "name": 1315678586}, {"position": [5131.06543844799, 6428.452305677012], "name": 1328999531}, {"position": [-4045.384561550236, -5163.747694322041], "name": 1315678588}, {"position": [-5898.384561554338, 7286.102305677388], "name": 622622442}, {"position": [-1815.0345615524088, -7107.947694322547], "name": 1315678591}, {"position": [5651.065438449621, 6832.552305677808], "name": 1328999488}, {"position": [-3064.2845615531655, -5363.997694322719], "name": 1315678594}, {"position": [4807.615438444656, -6597.047694322456], "name": 1785697731}, {"position": [-5537.734561556817, -3793.9976943217603], "name": 1315678607}, {"position": [-934.3345615562271, -5158.447694322277], "name": 1315678610}, {"position": [-6134.7845615529195, -3996.5476943226718], "name": 477641795}, {"position": [-2822.984561554165, -5052.597694323424], "name": 1315678612}, {"position": [-3343.234561555164, -7742.14769432291], "name": 1315678615}, {"position": [-3074.9345615532775, -5390.847694322076], "name": 1315678622}, {"position": [5286.065438447451, -4865.697694322435], "name": 63308187}, {"position": [-2408.3345615508733, -7313.647694322966], "name": 477629510}, {"position": [-1466.8845615517512, -6746.597694322176], "name": 1315678630}, {"position": [-3104.53456155102, -7794.897694322955], "name": 1315678631}, {"position": [-3113.9845615513195, -5476.897694322247], "name": 1315678632}, {"position": [-2876.534561551125, -7804.097694322109], "name": 1315678634}, {"position": [-2899.3345615546673, -3467.1476943231028], "name": 477621319}, {"position": [-2091.684561555951, -7191.1976943219715], "name": 1315678636}, {"position": [-918.5345615563278, -6418.947694323052], "name": 1315678637}, {"position": [-5853.034561553727, -4434.797694322868], "name": 1315678639}, {"position": [-3893.134561550937, -7061.047694323363], "name": 1315678640}, {"position": [-4003.3845615568, -7018.097694322379], "name": 1315678650}, {"position": [5246.065438448966, -6702.147694323202], "name": 2049850503}, {"position": [-3202.734561554621, -7522.847694323431], "name": 1315678655}, {"position": [-1924.9345615506286, 4510.702305676517], "name": 482732480}, {"position": [-6466.48456155674, -3403.1476943230386], "name": 1315678657}, {"position": [-3938.0845615539783, -4297.797694322369], "name": 1315678660}, {"position": [10148.415438443692, -6741.697694321758], "name": 1776093638}, {"position": [-3141.734561552312, -5560.397694322816], "name": 1315678663}, {"position": [-2774.134561555286, -7479.847694321862], "name": 1315678666}, {"position": [-6365.984561554683, -3724.197694323195], "name": 1315678667}, {"position": [2156.2654384439384, -6993.49769432267], "name": 1581175202}, {"position": [4825.4654384436435, -6531.497694322042], "name": 620136910}, {"position": [-3657.9345615521675, -4833.0476943228], "name": 477620688}, {"position": [-3278.884561552786, -7760.49769432241], "name": 1315678673}, {"position": [1950.3154384494792, 5389.8523056776785], "name": 3560335826}, {"position": [1094.7654384452221, 5344.602305678237], "name": 3560335827}, {"position": [-2745.134561550344, -5244.747694321816], "name": 1315678676}, {"position": [-2900.1845615539423, -5033.897694323386], "name": 1315678677}, {"position": [-4277.334561550106, -7653.64769432253], "name": 1315678678}, {"position": [-1288.484561555947, -4530.647694322099], "name": 1315785175}, {"position": [-3968.134561553427, 1314.7023056774287], "name": 1315785176}, {"position": [-1103.6345615522691, -2822.9476943231193], "name": 1315785177}, {"position": [-4329.684561554359, -4364.297694323227], "name": 1315678682}, {"position": [1028.9154384466315, 5353.352305677461], "name": 3560335835}, {"position": [-2442.084561550928, -2306.89769432324], "name": 1315785180}, {"position": [2058.26543844978, 5399.952305676692], "name": 3560335839}, {"position": [-4168.634561551698, 1911.6023056771069], "name": 1315785184}, {"position": [-3240.8845615563564, -7633.697694322094], "name": 1315678689}, {"position": [1077.1654384456042, 5540.252305676674], "name": 3560335842}, {"position": [-5938.8345615545295, -3519.647694322003], "name": 1315678691}, {"position": [-2428.6845615506536, -2513.3476943217656], "name": 1315785188}, {"position": [-2731.73456155007, -5166.7976943221565], "name": 1315678693}, {"position": [-3350.5345615552073, -1818.2476943220395], "name": 1315785190}, {"position": [-3126.034561553581, -1878.0476943227598], "name": 1315785191}, {"position": [-4169.684561553311, -1203.0476943234448], "name": 1315785192}, {"position": [11062.915438444066, -7078.69769432179], "name": 554691049}, {"position": [-4196.234561554491, 1835.9523056776793], "name": 1315785194}, {"position": [-3808.5845615540848, -5275.347694322363], "name": 1315678699}, {"position": [-4221.23456155532, 1767.35230567715], "name": 1315785196}, {"position": [-2936.034561550116, -5151.147694322233], "name": 1315678701}, {"position": [-5266.284561550094, -2063.797694322744], "name": 1315785198}, {"position": [-3198.134561550603, -2177.097694323393], "name": 1315785200}, {"position": [-3102.5345615560695, -2355.8976943220955], "name": 1315785201}, {"position": [11019.565438445512, -7160.797694321986], "name": 554691058}, {"position": [-2091.684561555951, -2425.4476943230684], "name": 1315785203}, {"position": [-4792.684561550686, 706.6523056771246], "name": 1315785206}, {"position": [-4077.084561551203, 1406.7523056766618], "name": 1315785207}, {"position": [-3528.234561557042, -1657.8476943234223], "name": 1315785208}, {"position": [-4201.484561555446, -2300.047694323126], "name": 1315785209}, {"position": [-3991.6345615509385, -5034.0476943233625], "name": 1315678714}, {"position": [-3353.184561554201, -2012.1976943219265], "name": 1315785211}, {"position": [-2616.434561552694, -2254.147694323194], "name": 1315785212}, {"position": [-4813.934561553879, 118.30230567788647], "name": 1315785213}, {"position": [-4222.9345615538705, -7467.847694321961], "name": 1315678718}, {"position": [-3123.3345615504504, -5302.147694322912], "name": 1315785216}, {"position": [-4989.984561554194, -4047.5976943223914], "name": 1315678721}, {"position": [-8117.584561553314, -633.2476943224918], "name": 1469016578}, {"position": [-6066.884561555242, -1051.3476943234677], "name": 1469016579}, {"position": [-2460.8345615533267, -2366.5476943222075], "name": 1315785220}, {"position": [4709.115438444655, 8459.102305677035], "name": 1618037846}, {"position": [-5478.1845615536895, -2210.5976943223027], "name": 1315785222}, {"position": [-6486.534561553015, -1694.7976943217923], "name": 1469016583}, {"position": [-2752.684561556862, -4538.747694322609], "name": 1315785224}, {"position": [-3310.9845615513223, -1951.8476943218843], "name": 1315785225}, {"position": [-8015.634561552077, -692.8976943232357], "name": 1469016586}, {"position": [-8820.334561555399, -612.5976943227585], "name": 1469016587}, {"position": [-3864.334561555438, -5417.747694322017], "name": 477620748}, {"position": [-2934.5845615509347, -4372.847694321891], "name": 1315785229}, {"position": [-4260.4845615557, -1238.1476943232883], "name": 1315785230}, {"position": [-2219.08456155262, -2576.4976943225547], "name": 1315785232}, {"position": [-3147.0345615502993, -2452.4476943224017], "name": 1315785233}, {"position": [-2259.6345615539803, -4703.497694322323], "name": 1315678738}, {"position": [4954.665438447137, 8346.50230567746], "name": 618170115}, {"position": [-4060.384561554997, -4723.597694322734], "name": 1315678742}, {"position": [-4258.284561551307, 172.05230567718388], "name": 1315785239}, {"position": [-4321.284561555672, -5140.947694322051], "name": 1315678744}, {"position": [-8313.384561553505, -608.0476943228774], "name": 1469016601}, {"position": [-4335.584561552252, 1287.1523056769975], "name": 1315785242}, {"position": [-4255.134561553576, 1126.602305676627], "name": 1315785243}, {"position": [-3088.484561551752, -5095.747694323194], "name": 1315785244}, {"position": [-3779.8345615556173, -1791.197694322122], "name": 1315785246}, {"position": [2877.215438445546, 8730.402305676676], "name": 1404618501}, {"position": [10843.465438448164, -5147.747694323357], "name": 602360352}, {"position": [-4406.734561555936, 217.952305677116], "name": 1315785249}, {"position": [-2404.534561556204, -2238.09769432215], "name": 1315785250}, {"position": [-3675.7345615541226, -2513.3476943217656], "name": 1315785251}, {"position": [-1476.0845615526819, -5044.247694321768], "name": 1315678756}, {"position": [-3957.3845615521464, 1369.702305677123], "name": 1315785253}, {"position": [-2016.1345615505866, -7066.44769432252], "name": 1315678758}, {"position": [-4370.434561550951, 2046.3523056779563], "name": 1315785255}, {"position": [-1285.634561554616, -6319.947694322536], "name": 1315678760}, {"position": [-4131.334561556343, -1581.4976943229199], "name": 1315785257}, {"position": [-5212.3345615555645, -2265.047694322675], "name": 1315785258}, {"position": [6304.6654384493195, -5831.79769432185], "name": 1782221355}, {"position": [-6426.334561552949, -3328.6476943228395], "name": 1315678764}, {"position": [11541.315438449828, 6420.25230567711], "name": 618426802}, {"position": [-3163.784561550642, -5623.797694322974], "name": 1315678766}, {"position": [-3458.584561556677, -4391.597694322513], "name": 1315678767}, {"position": [-2505.284561550525, -4585.647694321793], "name": 1315785264}, {"position": [-4150.534561553342, 314.65230567739866], "name": 1315785265}, {"position": [-8380.684561551278, -796.49769432244], "name": 1469016626}, {"position": [-1488.184561551975, -4187.947694322957], "name": 1315785267}, {"position": [-7656.334561552569, -3987.1976943217646], "name": 850279563}, {"position": [-3829.9345615513403, -4321.547694322802], "name": 1315678773}, {"position": [-3589.9345615533207, -2552.297694322192], "name": 1315785270}, {"position": [-3510.834561552656, -2009.7976943223016], "name": 1315785271}, {"position": [-6594.934561555021, -3635.5976943234227], "name": 1315678776}, {"position": [-6835.484561555915, -1589.6976943228224], "name": 1469016633}, {"position": [-4738.184561553282, -1642.2476943223073], "name": 1315785274}, {"position": [-4973.88456155079, -3958.147694323344], "name": 1315678779}, {"position": [-4563.5845615521475, 1544.0523056771126], "name": 1315785276}, {"position": [-1894.5845615547796, -7257.597694323436], "name": 1315678782}, {"position": [-3600.3845615510954, -7442.747694321739], "name": 1315678783}, {"position": [-3818.534561553122, 820.652305677072], "name": 481397312}, {"position": [-4118.334561553638, 1296.3523056779281], "name": 1315785281}, {"position": [-2468.6345615521077, -729.4476943222605], "name": 1315785282}, {"position": [-1167.3345615506037, -4267.797694321729], "name": 1315785283}, {"position": [-3053.6345615530536, -4903.197694321903], "name": 1315678788}, {"position": [-4603.78456155297, -1061.4976943230658], "name": 1315785285}, {"position": [-3399.484561555255, -1699.147694322889], "name": 1315785286}, {"position": [-3440.8345615517533, -4129.147694323266], "name": 1315785287}, {"position": [-4460.084561550559, 89.95230567698798], "name": 1315785288}, {"position": [-7876.184561553146, -481.8976943230524], "name": 1469016649}, {"position": [-4894.034561552018, -2388.1476943223843], "name": 1315785290}, {"position": [-3369.9845615515756, -2630.2976943224367], "name": 1315785291}, {"position": [-6962.684561550248, -543.7976943234446], "name": 1469016652}, {"position": [-287.08456155612794, 2865.652305677813], "name": 1316236386}, {"position": [-4601.134561553977, 156.4023056772612], "name": 1315785294}, {"position": [-3166.084561556204, -2492.797694323201], "name": 1315785295}, {"position": [-4256.734561550957, 1559.7523056776197], "name": 1315785296}, {"position": [-4215.034561553921, -1537.5976943232672], "name": 1315785297}, {"position": [-1197.5345615553579, -3926.0976943218393], "name": 1315785298}, {"position": [5807.065438446557, -8167.197694323391], "name": 1782221395}, {"position": [-1260.5345615526176, -2780.7476943220167], "name": 1315785300}, {"position": [-4573.634561552353, -4969.147694323439], "name": 1315678805}, {"position": [-3725.184561552908, -4343.847694322278], "name": 1315678806}, {"position": [-3858.734561553945, -4076.897694321957], "name": 1315785303}, {"position": [-2940.9345615505345, -5423.647694323464], "name": 1315678808}, {"position": [2644.8654384481074, 3037.25230567764], "name": 3779390041}, {"position": [-4250.934561554232, -7548.047694323046], "name": 1315678810}, {"position": [5521.51543844559, -6576.147694323353], "name": 1782221403}, {"position": [-6936.134561556173, -1305.1476943228836], "name": 1469016668}, {"position": [-3285.4845615517547, -2495.997694323293], "name": 1315785309}, {"position": [-4063.184561552191, -1362.597694322787], "name": 1315785310}, {"position": [-2849.3345615530075, -2725.64769432293], "name": 1315785311}, {"position": [-6303.88456155373, 3529.0523056765724], "name": 1572268640}, {"position": [-2973.134561550239, -5272.24769432344], "name": 1315678817}, {"position": [-4046.8845615535542, 1477.2023056774942], "name": 1315785314}, {"position": [-2999.9345615507877, -7689.397694322864], "name": 1315678819}, {"position": [-2068.63456155304, -2353.6976943230316], "name": 1315785316}, {"position": [-3686.8345615559406, -2286.947694322805], "name": 1315785317}, {"position": [-3075.1845615526463, -2003.6976943220707], "name": 1315785318}, {"position": [-2656.634561553517, -2396.347694322287], "name": 1315785320}, {"position": [-2720.1845615536513, -4399.597694321855], "name": 1315785322}, {"position": [-920.8845615518158, -6273.0476943233525], "name": 1315678827}, {"position": [-2006.0345615533492, -7044.447694322997], "name": 1315678828}, {"position": [-4467.784561555277, 731.7023056767624], "name": 1315785325}, {"position": [-4194.234561552435, -7380.397694323193], "name": 1315678830}, {"position": [-4094.1845615520833, 463.7523056771897], "name": 1315785327}, {"position": [-2941.6345615516093, -5523.097694322132], "name": 1315678832}, {"position": [-7886.884561550289, -417.64769432184323], "name": 1469016689}, {"position": [-3821.4845615556214, -2485.59769432255], "name": 1315785331}, {"position": [-4733.73456155457, 324.05230567711385], "name": 1315785332}, {"position": [-4979.334561554083, -1513.34769432232], "name": 1315785333}, {"position": [-3950.4845615567774, -6942.847694322296], "name": 1315678839}, {"position": [-4471.334561550577, -1312.6476943217112], "name": 1315785337}, {"position": [-5698.134561555435, -1900.9476943221416], "name": 1315785338}, {"position": [-4031.534561555361, -1327.5476943217514], "name": 1315785339}, {"position": [-2970.434561554214, -5597.947694322869], "name": 1315678844}, {"position": [-4308.7845615517035, -1311.4976943224833], "name": 1315785341}, {"position": [1924.0654384446998, 2770.302305677319], "name": 1320103989}, {"position": [-4796.534561556598, -1714.4476943222742], "name": 1315785344}, {"position": [-5303.88456155606, -2123.447694321712], "name": 1315785345}, {"position": [-3415.5845615515545, -2320.6976943228597], "name": 1315785346}, {"position": [-3541.634561550211, -1726.647694322736], "name": 1315785347}, {"position": [-3686.484561555403, -4084.347694321977], "name": 1315785348}, {"position": [-4898.634561556037, -99.14769432306514], "name": 1315785349}, {"position": [-8254.384561553252, -653.8976943222252], "name": 1469016710}, {"position": [-762.08456155058, -3058.5976943218184], "name": 1315785352}, {"position": [-3174.1345615543537, -2715.2976943227713], "name": 1315785353}, {"position": [-3846.934561551052, -6978.9476943231675], "name": 1315678858}, {"position": [-2983.0845615563817, -2054.147694321884], "name": 1315785355}, {"position": [484.0654384494769, -4393.747694322769], "name": 1722215053}, {"position": [-4958.534561552597, -1914.1976943224392], "name": 1315785358}, {"position": [-981.2845615542187, -2760.8976943227503], "name": 1315785360}, {"position": [-4955.1345615554965, -3877.897694323451], "name": 1315678865}, {"position": [-3976.9345615567886, -4465.097694323461], "name": 1315678866}, {"position": [-3970.7845615524207, -1579.8476943231776], "name": 1315785363}, {"position": [909.815438447481, -944.5976943229795], "name": 4273351022}, {"position": [1607.1154384462716, -614.9976943223834], "name": 475977497}, {"position": [-3763.584561554012, -1536.9476943227767], "name": 1315785370}, {"position": [-2860.484561551857, -2868.7976943224667], "name": 1315785371}, {"position": [758.3654384433203, -3211.3976943222156], "name": 1315785372}, {"position": [-3638.1845615522934, -2215.1976943227683], "name": 1315785373}, {"position": [-6540.434561550512, -1559.8476943221585], "name": 1469016734}, {"position": [519.6654384462818, -3135.6476943233956], "name": 1315785375}, {"position": [-3847.434561556895, -1836.747694323293], "name": 1315785376}, {"position": [-3506.7845615515125, -2453.6976943227983], "name": 1315785377}, {"position": [-5998.684561554057, -1095.8976943218345], "name": 1469016738}, {"position": [-7219.184561556347, -3317.097694322868], "name": 1890732708}, {"position": [-2946.334561556796, -2639.4976943233673], "name": 1315785381}, {"position": [-4123.684561555763, 2034.9023056773774], "name": 1315785383}, {"position": [-4284.484561551949, -1617.547694323207], "name": 1315785384}, {"position": [-5344.084561556883, -2189.947694322569], "name": 1315785385}, {"position": [1007.2154384488385, -3221.4476943224213], "name": 1315785386}, {"position": [-2729.084561551076, -504.1976943225279], "name": 1315785387}, {"position": [-701.334561554745, -2928.4476943232107], "name": 1315785388}, {"position": [-1402.0845615547728, -3884.847694322957], "name": 1315785391}, {"position": [-4737.934561553913, -222.04769432221383], "name": 1315785392}, {"position": [-2216.684561552995, -4538.547694322048], "name": 1315785393}, {"position": [-4362.384561552801, -1384.8976943222624], "name": 1315785394}, {"position": [-7566.534561554761, -689.0976943232374], "name": 3569237107}, {"position": [-3615.534561554057, -2408.147694323404], "name": 1315785396}, {"position": [154.96543844761845, -4998.297694323029], "name": 1722215093}, {"position": [-2881.934561550281, -4180.697694321722], "name": 1315785398}, {"position": [-4853.284561555427, -1783.7976943226863], "name": 1315785399}, {"position": [-4003.1845615544626, -4278.54769432301], "name": 1315785400}, {"position": [-4535.684561552955, -1393.5476943220947], "name": 1315785401}, {"position": [892.2154384478631, -3469.697694322704], "name": 1315785402}, {"position": [-8316.034561552498, -672.2476943217259], "name": 1469016764}, {"position": [-5065.484561555422, -2073.547694322997], "name": 1315785405}, {"position": [-1711.9345615554948, -2792.1976943225955], "name": 1315785406}, {"position": [-4402.634561550656, 1417.9023056772876], "name": 1315785407}, {"position": [1815.1154384469237, 9575.402305676662], "name": 1404618528}, {"position": [-6834.684561553672, -1352.3976943226046], "name": 1469016770}, {"position": [-4043.23456154998, 1842.252305676695], "name": 1315785411}, {"position": [3027.765438446295, 4111.502305677916], "name": 1320104083}, {"position": [6186.615438444676, -8111.297694322062], "name": 1769172086}, {"position": [-3039.5845615558414, -1063.3476943233688], "name": 1315785414}, {"position": [3255.515438446821, 6874.752305677134], "name": 1328999521}, {"position": [-2243.184561550038, -694.1976943224404], "name": 1315785418}, {"position": [-1424.384561552472, -3965.4976943221955], "name": 1315785419}, {"position": [-427.7345615548711, -3254.14769432264], "name": 1315785420}, {"position": [-1526.0845615543417, -5331.9976943218], "name": 1315785421}, {"position": [-2712.9845615547765, -426.1976943222834], "name": 1315785422}, {"position": [-2609.8345615537255, -4420.19769432278], "name": 1315785424}, {"position": [-3735.0345615507763, -2358.0476943223516], "name": 1315785426}, {"position": [-7320.884561551111, -3471.397694323031], "name": 1890732755}, {"position": [-6248.084561555344, -883.2476943219092], "name": 1469016788}, {"position": [-2793.434561553454, -4671.4476943225945], "name": 1315785429}, {"position": [-1615.1845615510751, -2830.197694322578], "name": 1315785430}, {"position": [-3471.934561552814, -4283.897694323357], "name": 1315785431}, {"position": [-3105.7845615549695, -2567.5476943227695], "name": 1315785432}, {"position": [-2922.184561555241, -2568.397694322044], "name": 1315785433}, {"position": [4111.865438446216, -7216.947694322684], "name": 1993253327}, {"position": [-3269.5345615536553, -4327.547694321865], "name": 1315785436}, {"position": [-3734.7845615514075, -4235.697694323193], "name": 1315785437}, {"position": [-1249.5345615519682, -4408.347694322856], "name": 1315785438}, {"position": [-6699.584561552285, -1429.4476943224054], "name": 1469016799}, {"position": [-7897.634561551569, -337.3976943219503], "name": 1469016800}, {"position": [-4811.084561552548, 579.7023056768325], "name": 1315785441}, {"position": [-6656.034561551394, -1372.0976943218943], "name": 1489292002}, {"position": [-4829.034561552703, -1754.6976943219051], "name": 1315785443}, {"position": [-3330.3345615536273, -1788.1476943220064], "name": 1315785444}, {"position": [-3935.9345615537222, 1427.0523056776342], "name": 1315785445}, {"position": [-4145.684561557062, 1974.552305677335], "name": 1315785446}, {"position": [4419.065438447944, 8068.65230567766], "name": 4402078161}, {"position": [-4352.184561554395, 1223.552305678055], "name": 1315785448}, {"position": [-6025.434561550469, -997.9476943229315], "name": 1469016809}, {"position": [-5006.134561554632, -1600.497694322911], "name": 1315785451}, {"position": [-3580.58456155419, -1732.3476943218452], "name": 1315785452}, {"position": [-8487.484561555902, -1765.0476943220638], "name": 1890818645}, {"position": [-708.8345615500202, -3134.3476943224146], "name": 1315785454}, {"position": [-2079.684561550721, 2137.002305676816], "name": 1316236413}, {"position": [24.415438446112603, -2817.4476943227946], "name": 1315785457}, {"position": [-1224.3345615559065, -4091.2476943226748], "name": 1315785458}, {"position": [-2412.984561551923, -504.3976943230888], "name": 1315785459}, {"position": [-3480.884561554376, -1847.5976943221895], "name": 1315785460}, {"position": [-5624.784561554463, -1783.2476943233644], "name": 1315785461}, {"position": [-4185.384561552041, 149.5023056765632], "name": 1315785462}, {"position": [-8614.83456155554, -1740.4976943229399], "name": 476678903}, {"position": [-4782.284561557049, 199.50230567822302], "name": 1315785464}, {"position": [-690.5845615534645, -2857.347694321888], "name": 1315785465}, {"position": [-3186.384561551847, -2534.6476943219895], "name": 1315785466}, {"position": [-2187.184561556421, -2462.9476943225372], "name": 1315785468}, {"position": [-4107.584561552358, 1225.202305677797], "name": 1315785469}, {"position": [-3230.6345615538135, -1832.1476943228276], "name": 1315785470}, {"position": [6681.415438443139, -6606.097694323409], "name": 1765485311}, {"position": [996.5154384445896, -3273.647694323145], "name": 1315785472}, {"position": [2810.015438448943, 7139.75230567776], "name": 1328999552}, {"position": [9557.265438445484, -3784.7476943220217], "name": 63302402}, {"position": [-4520.634561551162, 1112.8523056775919], "name": 1315785475}, {"position": [-4405.734561551355, 1018.1523056775887], "name": 1315785476}, {"position": [-3973.4345615514144, 339.502305678252], "name": 1315785477}, {"position": [-2946.334561556796, -2222.047694322882], "name": 1315785478}, {"position": [3227.4154384452913, 3266.7523056773007], "name": 476556039}, {"position": [-1277.5345615523293, -2855.7976943233143], "name": 1315785480}, {"position": [-79.23456155367603, -5275.197694322386], "name": 1315785483}, {"position": [727.7154384439655, -3272.94769432207], "name": 1315785484}, {"position": [6066.215438444544, -8194.047694322748], "name": 602360589}, {"position": [3336.9654384429737, 1631.8523056781942], "name": 476556047}, {"position": [-4056.634561550254, -2098.1976943232894], "name": 1315785488}, {"position": [-1469.3845615525447, -4128.447694322191], "name": 1315785489}, {"position": [-4256.884561556262, 1669.5023056776392], "name": 1315785490}, {"position": [-4705.984561553578, 397.75230567684616], "name": 1315785491}, {"position": [-3579.18456155204, -1804.6476943229804], "name": 1315785492}, {"position": [-2458.38456155667, -2662.59769432331], "name": 479283989}, {"position": [6821.165438445576, -6148.297694322125], "name": 1765485334}, {"position": [-4563.5845615521475, 266.4523056772339], "name": 1315785495}, {"position": [-3166.2845615514357, -4203.597694322881], "name": 1315785496}, {"position": [-7399.034561551332, -2824.147694322932], "name": 1890732826}, {"position": [3541.765438448863, 228.95230567776537], "name": 1317671386}, {"position": [7707.665438445588, -7965.697694322315], "name": 602360606}, {"position": [2823.615438444449, 6992.55230567708], "name": 1328999557}, {"position": [-3960.084561555277, -1676.1976943229229], "name": 1315785504}, {"position": [7744.715438448679, -7887.697694322071], "name": 602360609}, {"position": [-3252.0845615522376, -2063.797694322744], "name": 1315785506}, {"position": [-4523.834561553031, -1914.1976943224392], "name": 1315785507}, {"position": [7787.865438444896, -8022.24769432236], "name": 602360612}, {"position": [-4177.484561552092, 1887.3023056773518], "name": 1315785509}, {"position": [-4078.0845615557837, -1708.2976943232352], "name": 1315785511}, {"position": [-3226.634561556807, -2601.097694322263], "name": 1315785512}, {"position": [498.46543844722646, -3201.4976943219863], "name": 1315785514}, {"position": [-3130.0845615547246, -2777.397694321948], "name": 1315785515}, {"position": [-2795.984561551279, -2200.2476943221436], "name": 1315785516}, {"position": [-2873.9345615562684, -2107.397694322444], "name": 1315785517}, {"position": [-4013.734561553406, -2020.2476943218528], "name": 1315785518}, {"position": [-3718.5345615569076, -4147.897694322111], "name": 1315785520}, {"position": [-2111.434561555825, -2487.1476943229], "name": 1315785521}, {"position": [-905.1845615530851, -2797.7476943217284], "name": 1315785522}, {"position": [-4150.534561553342, -2240.3976943223824], "name": 1315785523}, {"position": [-4489.284561550732, 632.6023056768548], "name": 1315785524}, {"position": [-4104.934561553364, -2164.697694322371], "name": 1315785525}, {"position": [-3085.7845615557267, -4515.49769432269], "name": 1315785526}, {"position": [-3469.234561556789, -2389.4976943221736], "name": 1315785527}, {"position": [-3104.4845615539884, -5238.747694322754], "name": 1315785528}, {"position": [-4438.6845615562725, 863.3023056781042], "name": 1315785529}, {"position": [9110.465438446625, -5590.497694322849], "name": 3723332410}, {"position": [-4264.634561550906, -3982.8976943230286], "name": 1315785531}, {"position": [-2487.684561550907, -2439.9476943219865], "name": 1315785532}, {"position": [-8497.53456155611, -3619.297694323009], "name": 1582517386}, {"position": [-4212.734561555464, -26.49769432316873], "name": 1315785534}, {"position": [-4161.384561555792, 1239.852305676692], "name": 1315785535}, {"position": [-5666.484561551499, -1850.1476943217908], "name": 1315785537}, {"position": [320.2654384466541, -1206.7976943228587], "name": 4273376066}, {"position": [-4782.084561554711, 801.1523056765668], "name": 1315785539}, {"position": [-2648.584561555367, -4561.397694322622], "name": 1315785540}, {"position": [546.4154384497988, -3074.0976943217647], "name": 1315785542}, {"position": [-124.1845615567172, -1226.3976943227563], "name": 4273376071}, {"position": [4804.465438446925, -6762.797694323197], "name": 602360648}, {"position": [-8554.784561553675, -3867.247694323339], "name": 1582517388}, {"position": [4827.765438449205, -5987.397694322994], "name": 602360650}, {"position": [-1128.7845615512992, -2897.6476943221032], "name": 1315785547}, {"position": [4846.765438443867, -5742.797694322732], "name": 602360653}, {"position": [-2390.184561555486, -423.24769432333653], "name": 1315785550}, {"position": [-763.8845615502987, -2745.547694322781], "name": 1315785551}, {"position": [5003.415438444847, -5193.397694322144], "name": 602360657}, {"position": [5236.865438448035, -4827.297694323107], "name": 602360659}, {"position": [496.26543844993876, -947.4476943225341], "name": 4273376084}, {"position": [529.5154384441503, -819.2976943224295], "name": 4273376085}, {"position": [583.1654384493845, -697.6476943219012], "name": 4273376086}, {"position": [-3488.4845615508198, 7532.802305677322], "name": 2991483735}, {"position": [-3467.4845615541017, 7525.452305676694], "name": 2991483736}, {"position": [-3669.0345615539854, -1233.6976943227996], "name": 1315785561}, {"position": [1957.065438446648, 2940.2023056768203], "name": 1320104088}, {"position": [-4913.6845615507245, -1859.4476943221139], "name": 1315785563}, {"position": [4742.165438443635, -4363.797694322713], "name": 602360669}, {"position": [5322.365438445331, -4826.94769432257], "name": 602360670}, {"position": [-5547.934561555223, -1907.8476943228395], "name": 1315785568}, {"position": [-1326.3345615541766, 2475.352305676637], "name": 1316236432}, {"position": [-4088.834561549959, 1757.3523056775286], "name": 1315785570}, {"position": [-3171.63456155356, -1944.547694321841], "name": 1315785571}, {"position": [-1240.434561552206, -2692.2476943234133], "name": 1315785573}, {"position": [-4043.23456154998, 961.4523056775681], "name": 1315785574}, {"position": [-1589.1345615557384, -2754.1476943220287], "name": 1315785575}, {"position": [-3777.93456155473, -2421.347694323117], "name": 1315785576}, {"position": [-4657.434561551099, -15.647694322495909], "name": 1315785577}, {"position": [1509.6154384437455, 5853.652305678025], "name": 623414122}, {"position": [-4827.434561555321, 512.9523056766061], "name": 1315785579}, {"position": [433.8154384484483, -3355.5476943227804], "name": 1315785581}, {"position": [-3232.034561555963, -4192.897694322184], "name": 1315785582}, {"position": [-872.9845615533804, -2722.0476943217163], "name": 1315785583}, {"position": [-3113.534561556719, -4342.897694321835], "name": 1315785584}, {"position": [-3337.784561551871, -1861.9476943229074], "name": 1315785435}, {"position": [3401.815438444089, 1515.8523056779673], "name": 602393460}, {"position": [-4547.484561555848, -990.397694321743], "name": 1315785589}, {"position": [-3241.384561555094, -2462.8976943219527], "name": 1315785590}, {"position": [2687.665438443787, 9236.502305677519], "name": 4402078185}, {"position": [-5165.784561555142, -2200.0476943233593], "name": 1315785592}, {"position": [-4370.334561556888, 1153.8523056771055], "name": 1315785593}, {"position": [-4477.7345615543145, 1236.702305677184], "name": 1315785595}, {"position": [-2627.134561556943, -4632.497694322168], "name": 1315785596}, {"position": [-815.2345615499712, -3189.647694322062], "name": 1315785597}, {"position": [-4440.184561552485, 1901.8523056768545], "name": 1315785598}, {"position": [-3203.834561553265, -2001.897694322352], "name": 1315785599}, {"position": [6965.7154384472615, -5939.447694322197], "name": 1765485440}, {"position": [-4863.784561550233, -1215.4976943232755], "name": 1315785601}, {"position": [-4197.634561556641, -4091.2476943226748], "name": 1315785602}, {"position": [665.4154384477806, -3410.147694323129], "name": 1315785603}, {"position": [-3948.984561553459, 2833.3523056769395], "name": 482732933}, {"position": [-3922.934561551017, -1483.5476943222402], "name": 1315785606}, {"position": [-5114.984561551239, -2134.1976943229924], "name": 1315785607}, {"position": [-4388.184561555874, 1085.4023056765527], "name": 1315785608}, {"position": [-2829.5845615531334, -2690.2976943219414], "name": 1315785609}, {"position": [-4703.034561551078, -162.4476943220543], "name": 1315785610}, {"position": [-2056.3845615555465, 2836.0023056777095], "name": 1316236439}, {"position": [4049.9654384476003, 1833.7523056768391], "name": 602393484}, {"position": [-4759.0345615518, 939.7023056774145], "name": 1315785613}, {"position": [-4314.784561550767, -1123.4976943228503], "name": 1315785614}, {"position": [-3470.234561554264, 1824.5523056776847], "name": 482732943}, {"position": [-5253.384561555663, -2318.2976943232347], "name": 1315785616}, {"position": [-2238.234561552588, -2648.6476943219373], "name": 1315785617}, {"position": [-4402.634561550656, 1979.852305677099], "name": 1315785618}, {"position": [-4770.834561554693, 881.7023056781892], "name": 1315785621}, {"position": [-4087.784561555452, -1390.947694321909], "name": 1315785622}, {"position": [-2712.9845615547765, -577.5976943223071], "name": 1315785623}, {"position": [-5580.134561554928, -1709.4476943224636], "name": 1315785624}, {"position": [-994.5845615533244, -4488.497694323357], "name": 1315785625}, {"position": [-1111.684561550419, -4029.297694323475], "name": 1315785626}, {"position": [-4467.034561550065, 1837.6523056780059], "name": 1315785627}, {"position": [-1245.8345615513622, -4173.7976943228], "name": 1315785628}, {"position": [-789.8345615515723, -2829.8476943220408], "name": 1315785629}, {"position": [3421.9154384445005, -6177.847694322835], "name": 4451470238}, {"position": [370.51543844768275, -3305.9976943228266], "name": 1315785631}, {"position": [3586.3154384472296, -7508.19769432276], "name": 1769171872}, {"position": [7417.265438448339, -1525.6476943221742], "name": 1473995248}, {"position": [-1065.4345615535021, -4302.197694322274], "name": 1315785634}, {"position": [3390.315438444702, -6125.797694322088], "name": 1769171875}, {"position": [-4220.23456155074, 814.6523056780097], "name": 1315785636}, {"position": [-379.43456155176136, -2731.197694322063], "name": 1315785638}, {"position": [-3272.434561552018, -1894.4476943225652], "name": 1315785639}, {"position": [-5067.83456155091, -1671.5976943224575], "name": 1315785642}, {"position": [-144.53456155649747, -26.74769432253754], "name": 3758885805}, {"position": [-4924.234561556773, -165.24769432280095], "name": 1315785646}, {"position": [-4098.734561551964, 1348.7523056774364], "name": 1315785647}, {"position": [-4838.884561550572, 54.30230567782246], "name": 1315785649}, {"position": [-719.6845615524694, -2959.047694321981], "name": 1315785650}, {"position": [-2547.234561554035, -4730.1976943234795], "name": 1315785651}, {"position": [78.11543844837843, -33.297694322698135], "name": 3758885813}, {"position": [3091.2654384493976, 8814.002305676639], "name": 1618037688}, {"position": [167.4154384474491, 116.10230567704605], "name": 3758885817}, {"position": [11118.26543844785, -4752.097694321833], "name": 87739322}, {"position": [133.1154384445199, -344.29769432264834], "name": 3758885822}, {"position": [-5.034561553429739, -228.54769432179012], "name": 3758885823}, {"position": [-248.5845615538551, -8152.797694322089], "name": 1889012672}, {"position": [4042.265438449988, -7317.8976943228945], "name": 1769171905}, {"position": [-7600.584561551215, 2602.1023056781446], "name": 85010251}, {"position": [-3033.4845615556105, 1619.4023056765873], "name": 482732996}, {"position": [4008.8654384433653, -7281.747694323215], "name": 1769171909}, {"position": [-2599.234561550645, 1378.0023056781943], "name": 482732999}, {"position": [4097.815438449004, -7276.647694322236], "name": 84487112}, {"position": [3597.5654384472477, -7609.797694323462], "name": 84487113}, {"position": [3771.865438444877, -8409.247694322275], "name": 84487116}, {"position": [-870.0345615508809, 6556.3523056777485], "name": 1404152783}, {"position": [1807.0154384446369, 8950.352305676646], "name": 1404152785}, {"position": [4470.865438449323, -6942.847694322296], "name": 1769171922}, {"position": [-1744.484561555737, 7464.602305677914], "name": 1404152787}, {"position": [-970.784561552307, 7676.052305678028], "name": 1404152789}, {"position": [-1683.4845615534277, 5409.802305678113], "name": 1404152790}, {"position": [-585.7345615538634, 9327.10230567757], "name": 1404152792}, {"position": [-722.8845615543378, 6457.002305676696], "name": 1404152799}, {"position": [-1610.5845615541625, 7617.902305677049], "name": 1404152800}, {"position": [-898.7345615523168, 9015.502305677714], "name": 1404152802}, {"position": [4445.115438443281, -6601.997694323458], "name": 1769171939}, {"position": [4557.265438450031, -6831.697694321903], "name": 1769172134}, {"position": [-1019.6345615511859, 7596.152305676896], "name": 1404152806}, {"position": [-1299.2345615501222, 8593.002305676833], "name": 1404152807}, {"position": [-1068.534561554202, 9469.352305677248], "name": 1404152808}, {"position": [2033.515438448319, 8774.05230567696], "name": 1404152809}, {"position": [1801.1654384437747, 9464.752305676782], "name": 1404152810}, {"position": [3430.565438449662, -8128.097694322989], "name": 1489398763}, {"position": [-1310.3345615519402, 9531.00230567827], "name": 1404152812}, {"position": [-1368.9345615546245, 7726.102305676719], "name": 1404152813}, {"position": [4205.415438448767, -7256.247694321872], "name": 1489398766}, {"position": [4931.365438444856, -7216.947694322684], "name": 1769171951}, {"position": [-1533.334561550248, 7715.152305676654], "name": 1404152816}, {"position": [-947.5345615541642, 7714.152305677402], "name": 1404152818}, {"position": [-924.0845615536841, 7752.55230567673], "name": 1404152819}, {"position": [1507.0154384488887, 9179.702305678105], "name": 1404152821}, {"position": [-1889.2845615567921, 7340.702305677738], "name": 1404152825}, {"position": [2564.365438445293, 7372.052305678168], "name": 1328999420}, {"position": [-705.5845615511203, 7528.302305678025], "name": 1404152830}, {"position": [2901.065438443595, 6989.602305678133], "name": 1328999423}, {"position": [4892.715438444384, 6721.102305677462], "name": 1328999425}, {"position": [-437.3345615533708, 6690.302305678131], "name": 1404152835}, {"position": [2093.565438443079, 9225.902305677992], "name": 1404152836}, {"position": [3429.9654384497558, -7260.547694322384], "name": 1489398789}, {"position": [-674.9845615559025, 8980.00230567675], "name": 1404152838}, {"position": [4702.465438448655, 6007.052305676552], "name": 1328999431}, {"position": [3470.1654384434732, -7175.697694322025], "name": 1489398792}, {"position": [2546.9654384480123, 7659.202305676516], "name": 1328999433}, {"position": [-734.6845615501252, -8393.647694322937], "name": 1883305092}, {"position": [2884.9654384472956, 7274.052305676903], "name": 1328999436}, {"position": [2899.9654384449514, 6858.252305677936], "name": 1328999437}, {"position": [1840.7654384446914, 2443.7523056768387], "name": 476556302}, {"position": [-1031.7345615504792, 6187.85230567731], "name": 1404152847}, {"position": [-703.0345615532951, 6774.352305678022], "name": 1404152848}, {"position": [3676.4154384485437, -7609.597694322901], "name": 1769171985}, {"position": [3691.8154384437685, 6359.702305678283], "name": 1328999442}, {"position": [-1411.8845615556097, 9079.352305677801], "name": 1404152851}, {"position": [-1326.0345615506708, 7648.102305678251], "name": 1404152853}, {"position": [-198.03456155642607, -5579.847694322737], "name": 1888422935}, {"position": [-5899.084561555412, -7707.347694323019], "name": 267198763}, {"position": [3764.7654384471707, 6083.502305678223], "name": 1328999452}, {"position": [-1519.7845615517735, 7321.252305677816], "name": 1404152861}, {"position": [3909.8154384475947, -8160.797694323208], "name": 1489398814}, {"position": [-8679.734561553687, -3800.897694322458], "name": 1582517279}, {"position": [-2586.93456155612, 920.3523056768859], "name": 1316236320}, {"position": [-1057.8345615570584, 8459.952305678087], "name": 1404152866}, {"position": [2075.0154384430175, 6801.552305677916], "name": 1328999459}, {"position": [-5115.084561552408, -177.29769432328624], "name": 482733092}, {"position": [3995.8654384477654, -7217.947694321936], "name": 1769172005}, {"position": [3171.965438447444, 7294.702305676637], "name": 1328999463}, {"position": [-2393.534561555555, 8950.902305677744], "name": 1404152872}, {"position": [-2077.334561555233, 2908.9023056769747], "name": 1316236330}, {"position": [253.5154384446514, 3966.302305677516], "name": 1316236331}, {"position": [-848.8845615559626, 3383.7023056779713], "name": 1316236332}, {"position": [71.11543844473545, 4181.952305676972], "name": 1316236333}, {"position": [-2564.8845615506843, 8664.95230567743], "name": 1404152878}, {"position": [1820.1654384455423, 6521.65230567725], "name": 1328999472}, {"position": [1973.4654384464534, 6984.702305677714], "name": 1328999473}, {"position": [-1162.3845615531536, 1590.9523056780727], "name": 1316236338}, {"position": [-1717.9345615545571, 2087.7023056780076], "name": 1316236467}, {"position": [-3266.8845615546616, -7029.797694322326], "name": 477629492}, {"position": [-1942.934561554921, 5097.252305677813], "name": 1404152885}, {"position": [3340.1154384478104, -7120.647694321747], "name": 1489398838}, {"position": [4637.165438445834, 6257.952305677605], "name": 1328999479}, {"position": [-1610.3345615547937, 2013.8523056765223], "name": 1316236344}, {"position": [-2910.5345615505485, -3279.1476943234698], "name": 477621305}, {"position": [2884.9654384472956, 7388.7523056779255], "name": 1328999482}, {"position": [694.865438447323, 1227.9023056773754], "name": 475974715}, {"position": [-8559.03456155005, -3581.897694322933], "name": 1582517308}, {"position": [-539.0845615522721, 2157.8523056771105], "name": 1316236349}, {"position": [3285.265438449869, 6749.502305677169], "name": 1328999487}, {"position": [-2252.2845615569054, 2934.9523056776407], "name": 1316236352}, {"position": [-1723.2845615566816, 3927.3023056782818], "name": 1316236353}, {"position": [179.96543844844837, 3846.202305677338], "name": 1316236355}, {"position": [-4609.1345615550945, -5038.3476943220985], "name": 1315678745}, {"position": [-3137.634561554137, 608.6523056776372], "name": 481397829}, {"position": [2587.265438450004, 6993.752305676892], "name": 1328999494}, {"position": [-1090.2845615561318, 3101.5523056776574], "name": 1316236359}, {"position": [-2018.3345615549797, 3943.4023056781343], "name": 1316236361}, {"position": [14.765438443475887, 3129.1023056780887], "name": 1316236363}, {"position": [2845.2154384481787, 7847.852305676639], "name": 1328999500}, {"position": [-3060.934561553097, 1213.8523056766103], "name": 1316236365}, {"position": [3385.115438447883, 5582.552305677169], "name": 1328999502}, {"position": [-1739.3845615529813, 3860.8023056774246], "name": 1316236367}, {"position": [-6.584561553779622, 4420.302305677026], "name": 1316236368}, {"position": [2174.2154384440937, 7294.702305676637], "name": 1328999505}, {"position": [-70.28456155211416, 2225.55230567778], "name": 1316236371}, {"position": [-2088.9345615557886, 6234.052305677195], "name": 603884628}, {"position": [-3667.4845615536356, -3354.247694321799], "name": 1889249272}, {"position": [-2143.78456155373, 2616.3023056771094], "name": 1316236374}, {"position": [-2265.83456155538, 5761.602305677016], "name": 603884631}, {"position": [2388.7654384466828, 6615.702305676763], "name": 1328999512}, {"position": [-352.7845615565184, 2472.7523056782275], "name": 1316236378}, {"position": [2402.165438446957, 7108.902305677844], "name": 1328999515}, {"position": [-2090.7345615555073, -8112.847694322411], "name": 103795804}, {"position": [-1562.884561550959, 2591.402305677448], "name": 1316236381}, {"position": [3980.6154384436354, 5878.852305677639], "name": 1328999518}, {"position": [1938.615438447755, 6806.952305677072], "name": 1328999519}, {"position": [-1692.6845615543584, 2657.3023056766233], "name": 1316236385}, {"position": [1460.3154384431605, 7234.952305678277], "name": 1328999522}, {"position": [-248.0845615551175, 2188.652305678218], "name": 1316236387}, {"position": [159.6154384486681, 4168.152305677353], "name": 1316236389}, {"position": [-1401.784561551267, 2017.3023056777595], "name": 1316236392}, {"position": [2831.165438443861, 3048.8023056776115], "name": 1320104097}, {"position": [3230.91543844356, 6998.552305677918], "name": 1328999530}, {"position": [4601.0654384431855, -6533.647694322298], "name": 1776086123}, {"position": [-4166.5845615526105, 5548.8523056776985], "name": 483106129}, {"position": [-8418.534561556611, -3579.997694322046], "name": 1582517359}, {"position": [4645.315438445152, -6514.197694322376], "name": 1776086130}, {"position": [-2635.8845615561677, 1664.702305676613], "name": 1316236404}, {"position": [5223.865438445329, 6654.702305677773], "name": 1328999542}, {"position": [-1826.284561552427, 2730.502305677618], "name": 1316236407}, {"position": [-66.08456155277054, 4305.752305677757], "name": 1316236408}, {"position": [224.01543844807748, 3936.502305677436], "name": 1316236410}, {"position": [-2973.0845615532075, 1357.402305677269], "name": 1316236411}, {"position": [2702.71543844558, -6010.8976943222815], "name": 1769172092}, {"position": [3091.6654384469666, 7663.45230567822], "name": 1328999549}, {"position": [-3292.5845615565663, -8416.097694322389], "name": 1315242494}, {"position": [3440.2154384451933, -6148.54769432327], "name": 1769172096}, {"position": [6183.965438445683, -8142.247694323146], "name": 1769172100}, {"position": [-1292.2345615535846, 2794.9523056776115], "name": 1316236421}, {"position": [-1832.3345615556264, 4064.7523056769332], "name": 1316236422}, {"position": [-609.1345615502064, 2555.4523056765534], "name": 1316236423}, {"position": [-8605.734561555779, -3553.3976943220578], "name": 1582517384}, {"position": [2461.7654384471166, 9061.80230567699], "name": 1404618604}, {"position": [5328.865438443131, -6862.1976943230575], "name": 495651978}, {"position": [-1771.584561552686, 3798.852305678224], "name": 1316236427}, {"position": [-730.884561555456, 3583.4523056781363], "name": 1316236428}, {"position": [-2686.384561556565, 1558.502305677223], "name": 1316236430}, {"position": [4639.965438443028, -6578.397694323002], "name": 1776086159}, {"position": [2072.2654384499606, 6707.452305677819], "name": 1328999568}, {"position": [2340.51543844771, 6968.952305676623], "name": 1328999569}, {"position": [5039.265438448127, 6538.3023056782], "name": 1328999570}, {"position": [3147.7154384447203, 7406.052305677591], "name": 1328999572}, {"position": [3122.7654384480275, 7520.652305677444], "name": 1328999575}, {"position": [-633.9345615558045, 1856.652305677997], "name": 1316236440}, {"position": [-1917.5845615535536, 3285.7023056767075], "name": 1316236442}, {"position": [132.8154384481195, 4301.202305677876], "name": 1316236443}, {"position": [-0.28456155121148186, 4006.5523056771467], "name": 1316236444}, {"position": [-2636.6845615513057, 1305.3023056777135], "name": 1316236445}, {"position": [1502.1154384484703, 7004.902305677519], "name": 1328999582}, {"position": [2216.065438446435, -323.34769432296184], "name": 481389765}, {"position": [-2793.4845615504855, 1367.5023056780587], "name": 1316236448}, {"position": [-1460.9345615568259, 9567.952305676641], "name": 479298075}, {"position": [2556.0154384436373, 7509.8023056767715], "name": 1328999588}, {"position": [-7798.33456155643, -3924.347694322705], "name": 1582517413}, {"position": [2858.9654384489904, 7661.202305676796], "name": 1328999590}, {"position": [-76.38456155234508, 3012.1023056768336], "name": 1316236456}, {"position": [2571.115438449567, 7259.9523056773305], "name": 1328999593}, {"position": [3558.615438443269, 7175.252305676949], "name": 1328999596}, {"position": [-2231.7845615518195, 3333.202305677574], "name": 1316236461}, {"position": [3169.0654384490813, -7907.647694322506], "name": 1769172142}, {"position": [2872.7654384468337, 7516.552305677493], "name": 1328999601}, {"position": [2394.165438445839, 6693.702305677008], "name": 1328999603}, {"position": [681.4654384470487, -1331.5476943223102], "name": 4273219709}, {"position": [-2356.2345615530944, 2793.802305676607], "name": 1316236471}, {"position": [3944.6154384492615, 6089.802305677239], "name": 1328999608}, {"position": [-1178.5845615506219, 3237.0523056766133], "name": 1316236473}, {"position": [-1245.8345615513622, 1881.3023056782895], "name": 1316236474}, {"position": [6208.765438444175, -6284.297694323371], "name": 1779952828}, {"position": [6394.065438449559, -6532.2976943225085], "name": 1779952829}, {"position": [-2149.7345615557606, 3803.452305676913], "name": 1316236478}, {"position": [-1286.0845615563221, 2193.252305676907], "name": 1316236479}, {"position": [-1755.4845615563863, 2832.2523056765194], "name": 1316236481}, {"position": [2050.4654384438936, -393.9976943225787], "name": 481389763}, {"position": [-1404.7845615507981, 2842.902305676631], "name": 1316236485}, {"position": [5055.465438445594, -7171.247694323312], "name": 1769172169}, {"position": [-1050.3345615546777, 3176.552305676594], "name": 1316236490}, {"position": [-3851.1845615545326, -849.4476943230467], "name": 481396599}, {"position": [-2332.734561555583, 2825.6523056775504], "name": 1316236492}, {"position": [-2122.084561555937, -3182.0976943226497], "name": 1889249276}, {"position": [-1031.2845615558786, 1950.1023056776035], "name": 1316236495}, {"position": [-1790.9845615520226, 2781.2023056768], "name": 1316236497}, {"position": [4484.36543844366, -7090.647694322883], "name": 1769172179}, {"position": [-2694.7845615552524, -8049.59769432223], "name": 103795925}, {"position": [-2268.184561550868, 2913.3523056774634], "name": 1316236504}, {"position": [3220.315438447585, -7926.547694323105], "name": 1769172185}, {"position": [-2889.38456155563, 1502.8023056782304], "name": 1316236506}, {"position": [-197.48456155355143, 3154.7023056770486], "name": 1316236508}, {"position": [-2608.5345615527444, 1722.252305677685], "name": 1316236510}, {"position": [234.71543844522103, 3259.8523056766026], "name": 1316236512}, {"position": [1173.3154384430122, 1261.6023056768454], "name": 3356028131}, {"position": [984.3654384482647, 1275.8523056781712], "name": 3356028132}, {"position": [977.4654384457904, 1207.6023056781792], "name": 3356028133}, {"position": [1161.6154384483934, 1192.9023056769238], "name": 3356028134}, {"position": [-1884.234561551068, 3512.152305678029], "name": 1316236519}, {"position": [-368.6845615504808, 85.35230567652263], "name": 1316694047}, {"position": [-2454.1345615531895, 2047.052305677255], "name": 1316236521}, {"position": [-1907.2345615569475, 2614.202305677438], "name": 1316236522}, {"position": [-1235.7345615541249, 2016.652305677269], "name": 1316236524}, {"position": [-2784.3845615507234, 1018.6523056781027], "name": 1316236527}, {"position": [-2710.3845615528144, 1162.3023056781535], "name": 1316236529}, {"position": [-2283.884561556704, 3188.702305678248], "name": 1316236531}, {"position": [-3866.134561555157, -6834.04769432272], "name": 477629479}, {"position": [-3246.78456155425, 1782.6523056765354], "name": 1316236539}, {"position": [-1836.984561556676, 3249.9023056775654], "name": 1316236501}, {"position": [-1735.984561555881, 2598.5023056769305], "name": 1316236544}, {"position": [-612.8345615508124, 2365.2523056778564], "name": 1316236546}, {"position": [-6983.134561551196, -2441.597694321729], "name": 1890935339}, {"position": [6715.665438449037, -4027.347694322003], "name": 478379222}, {"position": [-3356.6345615554383, 1555.6023056770841], "name": 1316236550}, {"position": [6953.8154384432, -6062.2476943219535], "name": 647286028}, {"position": [2220.465438448116, -341.34769432192513], "name": 481389838}, {"position": [-1875.7845615553492, 1055.6523056770573], "name": 1316236561}, {"position": [-1967.3845615528762, 3762.1523056774463], "name": 1316236563}, {"position": [-2405.434561552511, 2726.9523056769885], "name": 1316236565}, {"position": [-1159.9845615535287, 3511.0023056770247], "name": 1316236566}, {"position": [-2308.6345615510595, 2858.4023056765773], "name": 1316236570}, {"position": [-1221.6845615569127, 1780.3523056780791], "name": 1316236571}, {"position": [-4945.33456155466, 5321.8523056770555], "name": 95612191}, {"position": [-2240.584561555181, 1261.402305678061], "name": 1316195130}, {"position": [-2128.284561550231, 2713.9023056772517], "name": 1316236588}, {"position": [-985.584561554731, 2142.5023056771406], "name": 1316236590}, {"position": [2463.9654384444043, -1672.6976943228779], "name": 475974959}, {"position": [100.56543844427779, 3670.552305678143], "name": 1316236592}, {"position": [473.0154384446905, 3477.1523056775777], "name": 1316236593}, {"position": [-3780.034561550849, -952.997694323443], "name": 479291272}, {"position": [-1811.5845615511716, 3300.2023056774024], "name": 1316236596}, {"position": [-1121.9845615499935, 3586.55230567706], "name": 1316236597}, {"position": [-1884.3845615563737, 2464.202305677787], "name": 1316236599}, {"position": [2987.765438447809, -1932.0976943220103], "name": 475974969}, {"position": [-290.2845615508909, -8090.497694322352], "name": 599723323}, {"position": [-4531.88456155118, 1924.0523056769375], "name": 93310272}, {"position": [-1738.2345615502004, 3450.55230567759], "name": 1316236610}, {"position": [-1887.3345615517678, 1034.2523056774412], "name": 1316236612}, {"position": [-1271.0345615545293, 2827.2023056779008], "name": 1316236614}, {"position": [-3112.6845615503385, 1995.9523056769513], "name": 1316236621}, {"position": [-2307.9845615541217, 1947.802305677371], "name": 1316236625}, {"position": [4779.215438446727, 5798.402305677186], "name": 482733394}, {"position": [660.1154384497931, -707.3476943233459], "name": 4273384790}, {"position": [6382.665438444235, 6768.102305677814], "name": 482733400}, {"position": [2058.9654384437495, 3687.3023056767097], "name": 1320104105}, {"position": [-2058.88456155634, 2504.352305678026], "name": 1316236639}, {"position": [-2007.5845615536991, 3317.1523056765295], "name": 1316236640}, {"position": [374.16543844415173, 3011.952305676857], "name": 476556641}, {"position": [-827.434561550433, 2435.4023056769593], "name": 1316236642}, {"position": [92.56543844315956, 4246.152305677598], "name": 1316236644}, {"position": [-1901.7845615536544, 4198.652305676731], "name": 476556645}, {"position": [-1016.4845615534546, 2081.802305676561], "name": 1316236647}, {"position": [-673.0845615550152, 2445.202305677796], "name": 1316236650}, {"position": [2781.1154384451697, -5908.947694322819], "name": 84487532}, {"position": [-2700.4345615537773, 1528.9023056777041], "name": 1316236653}, {"position": [-1498.3345615533494, -6796.947694322597], "name": 103787886}, {"position": [-7458.534561550323, -2683.297694321851], "name": 1890935357}, {"position": [-358.7345615514437, 3930.3523056766207], "name": 1316236520}, {"position": [-811.3345615541334, 3452.502305677285], "name": 1316236659}, {"position": [-1457.4345615514517, 965.2023056769821], "name": 1316236660}, {"position": [-3386.134561552012, 1477.6023056768395], "name": 1316236661}, {"position": [-1224.4845615541067, 2897.8523056775175], "name": 1316236665}, {"position": [-540.3345615562216, -3890.1976943233053], "name": 1888338495}, {"position": [-2935.884561551916, 1820.0023056778036], "name": 1316236669}, {"position": [-3048.0845615556973, 1233.4523056782841], "name": 1316236673}, {"position": [3376.5654384438903, -6250.597694322124], "name": 3283676144}, {"position": [-9103.084561552067, -558.6976943234845], "name": 1721527687}, {"position": [-37.48456155250324, 4369.752305677821], "name": 1316236681}, {"position": [-1000.2345615518493, 3270.602305677883], "name": 1316236682}, {"position": [-2603.0345615524197, 1131.2523056776768], "name": 1316236683}, {"position": [-1943.2345615513213, 2562.502305677228], "name": 1316236686}, {"position": [5801.365438443895, -8135.44769432184], "name": 1782221471}, {"position": [-1256.5845615526428, 1709.2523056767561], "name": 1316236688}, {"position": [-566.7345615520958, -150.1476943222002], "name": 475975057}, {"position": [-2385.884561554974, 969.45230567691], "name": 1316236692}, {"position": [-1583.784561553614, 918.0523056766532], "name": 1316236693}, {"position": [3156.1654384475446, 4432.952305677418], "name": 654405017}, {"position": [-1369.2345615510249, 2401.9523056768576], "name": 1316236698}, {"position": [-882.3845615566484, 2013.0523056778316], "name": 1316236699}, {"position": [-706.7345615539011, 2704.752305676905], "name": 1316236700}, {"position": [-2272.734561550749, 3237.7023056771036], "name": 1316236701}, {"position": [-1438.9845615525587, 1934.0523056765592], "name": 1316236702}, {"position": [-1300.9345615557777, -3627.597694322304], "name": 1888338501}, {"position": [-194.9345615557263, 3517.002305677863], "name": 1316236704}, {"position": [-1150.334561550892, 3010.4023056782835], "name": 1316236706}, {"position": [-775.4845615508543, 3510.852305677048], "name": 1316236708}, {"position": [-490.084561555193, -4005.0476943225276], "name": 476794281}, {"position": [-3380.734561552856, 1424.8523056767935], "name": 1316236715}, {"position": [-1351.3345615550065, 2705.202305676835], "name": 1316236717}, {"position": [-1994.384561555762, 2585.9023056771234], "name": 1316236718}, {"position": [-1851.8345615561316, 2522.7023056775265], "name": 1316236721}, {"position": [-1602.284561556644, 2531.3523056773593], "name": 1316236722}, {"position": [-1774.034561556448, 2546.852305677305], "name": 1316236723}, {"position": [-1933.6845615569587, 3838.3523056779723], "name": 1316236724}, {"position": [-1517.8845615508862, -3556.347694322781], "name": 476794296}, {"position": [-2975.6345615510327, 1737.2523056771172], "name": 1316236732}, {"position": [-2203.034561553352, -3353.99769432243], "name": 476794301}, {"position": [-1162.5845615554908, 5193.4523056775815], "name": 1404037107}, {"position": [-469.03456155433787, 2323.5523056772677], "name": 1316236736}, {"position": [-3939.034561554422, -3321.2976943222116], "name": 476794305}, {"position": [-2368.4345615535563, 1633.8523056766974], "name": 1316236739}, {"position": [-5796.134561556699, -2398.6976943231043], "name": 476794311}, {"position": [4879.415438445278, -5988.897694322759], "name": 495635912}, {"position": [-1891.0845615565108, 3338.552305677922], "name": 1316236745}, {"position": [-506.1845615514926, 2235.602305677986], "name": 1316236747}, {"position": [2578.6654384489793, 7135.952305677762], "name": 1328999547}, {"position": [-2552.0845615503163, 2762.1023056774166], "name": 1316236756}, {"position": [403.26543844315665, 3265.802305676857], "name": 1316236759}, {"position": [2862.115438446722, -7211.997694323458], "name": 495627677}, {"position": [-1969.1345615555633, 2318.5023056768728], "name": 1316236763}, {"position": [-3029.5345615556357, 1920.3023056775237], "name": 1316236764}, {"position": [-2940.9845615546715, 1165.652305678222], "name": 1316236765}, {"position": [-2071.9845615531085, 3865.4023056778897], "name": 1316236767}, {"position": [-903.8845615521041, 2285.6523056766773], "name": 1316236768}, {"position": [-1679.6345615546215, 1425.0523056773545], "name": 1316196944}, {"position": [-2200.7345615548957, 2801.0523056778425], "name": 1316236770}, {"position": [-8715.834561556334, -3579.4476943227237], "name": 1582517346}, {"position": [-5434.484561554598, -2602.7476943220054], "name": 477618769}, {"position": [-8560.084561551663, -1444.497694322422], "name": 1890935378}, {"position": [3356.5654384446475, -6179.247694323209], "name": 84487663}, {"position": [-2230.634561556144, 2452.702305676624], "name": 1316236784}, {"position": [-288.2845615559404, 2457.002305677136], "name": 1316236785}, {"position": [-8924.584561555093, 7715.552305677776], "name": 5016366578}, {"position": [-2200.7345615548957, 2764.3523056770646], "name": 1316236787}, {"position": [3271.16543844852, 2134.7023056765834], "name": 1320104104}, {"position": [-3005.6845615504812, 1674.7023056780108], "name": 1316236792}, {"position": [-3198.4845615511404, 1846.9023056777446], "name": 1316236794}, {"position": [901.9154384475314, -2303.8476943231244], "name": 2367475196}, {"position": [-7655.634561551495, -6574.347694321858], "name": 477636580}, {"position": [965.4154384435287, -2313.1976943222553], "name": 2367475198}, {"position": [-2645.6845615570046, -5100.647694321836], "name": 267194965}, {"position": [-3635.9345615508687, -7979.4476943231275], "name": 156380673}, {"position": [-1446.0345615532333, 2035.4523056766993], "name": 1316236804}, {"position": [-706.7345615539011, 3250.6523056774486], "name": 1316236806}, {"position": [-521.0345615509482, 3685.9023056781125], "name": 1316236807}, {"position": [-1760.8345615514054, 2415.7023056776693], "name": 1316236808}, {"position": [-2025.0845615521484, 2889.1523056771007], "name": 1316236809}, {"position": [-2622.784561552294, 958.8523056773823], "name": 1316236810}, {"position": [-1211.7845615549072, -6053.747694322098], "name": 103788043}, {"position": [-2416.834561550729, 2711.452305677042], "name": 1316236812}, {"position": [258.8654384467759, 4035.152305677414], "name": 1316236814}, {"position": [7027.865438445247, 2448.152305676743], "name": 2629549315}, {"position": [1996.2654384499956, -1936.8976943230364], "name": 2367475220}, {"position": [-5933.934561554111, -8061.597694322131], "name": 874283609}, {"position": [1850.4654384443597, -1965.6476943232803], "name": 2367475224}, {"position": [-1790.5845615544536, 4136.152305678209], "name": 1316236825}, {"position": [-2994.1345615540627, 2695.7023056777275], "name": 476560259}, {"position": [-1806.4345615513844, 2502.9023056770684], "name": 1316236828}, {"position": [-4585.234561552908, -4580.1976943220525], "name": 267194970}, {"position": [-4012.9845615552995, 93.40230567822516], "name": 481439262}, {"position": [-658.4345615507914, 2746.002305677564], "name": 1316236831}, {"position": [-6569.384561551316, 1085.2523056765763], "name": 3113807393}, {"position": [-6687.284561550655, 542.0523056773874], "name": 3113807394}, {"position": [7994.815438443937, 6375.052305678253], "name": 482733604}, {"position": [-2232.4845615528943, 2961.9023056781657], "name": 1316236839}, {"position": [-6867.734561552652, 748.4523056771053], "name": 3113807400}, {"position": [-1649.9345615557104, 2715.352305678209], "name": 1316236841}, {"position": [-2374.934561551356, 3022.302305677016], "name": 1316236842}, {"position": [-6530.4345615544435, 1247.4023056778806], "name": 3113807403}, {"position": [-7118.234561552583, 168.652305676531], "name": 3113807404}, {"position": [-7887.434561553164, -4127.047694321817], "name": 1928818222}, {"position": [-2136.3345615554863, 2881.3523056765434], "name": 1316236849}, {"position": [-352.6845615553498, 3633.7023056773887], "name": 1316236850}, {"position": [-6729.584561554702, 325.7523056774403], "name": 3113807411}, {"position": [-1972.7345615550007, 3376.8023056772736], "name": 1316236853}, {"position": [-1618.284561551775, 635.8523056775311], "name": 1316236855}, {"position": [5275.015438449771, -4782.747694322964], "name": 602360660}, {"position": [-554.584561555771, 3495.302305676518], "name": 1316236857}, {"position": [-1253.8845615566174, 2525.8023056782263], "name": 1316236858}, {"position": [-2015.5845615548174, 5614.302305676943], "name": 654393951}, {"position": [-9078.134561555373, -4258.397694322013], "name": 1928818236}, {"position": [-1371.9345615541556, 2190.9523056766743], "name": 1316236861}, {"position": [-1380.6345615563487, 2169.052305676544], "name": 1316236862}, {"position": [-8766.484561554933, -4281.397694322564], "name": 1928818240}, {"position": [-9088.484561551979, -4285.397694323123], "name": 1928818241}, {"position": [-8885.084561555344, -4317.497694323436], "name": 1928818244}, {"position": [-8834.734561553149, -4323.59769432189], "name": 1928818245}, {"position": [-2450.8845615542896, 2665.202305676573], "name": 1316236871}, {"position": [-8930.384561551818, -4358.497694322949], "name": 1928818248}, {"position": [-8915.534561552362, 3247.052305678011], "name": 483118665}, {"position": [-6866.234561556439, 8840.352305677257], "name": 623406666}, {"position": [-3093.334561555139, 1164.5523056778018], "name": 1316236875}, {"position": [-2155.1345615549167, 2812.5523056772295], "name": 1316236877}, {"position": [-1711.634561551989, 2893.852305676958], "name": 1316236879}, {"position": [-9007.98456155627, -4412.09769432227], "name": 1928818256}, {"position": [-8249.784561556338, -4422.19769432306], "name": 1928818257}, {"position": [-8999.384561555245, -4425.597694321937], "name": 1928818258}, {"position": [-1573.984561552777, 2818.4023056780916], "name": 1316236883}, {"position": [-8458.134561550423, -4437.54769432303], "name": 1928818262}, {"position": [-1751.2845615570427, 2304.2523056773234], "name": 1316236887}, {"position": [-19.634561553516505, 3422.9023056777664], "name": 1316236889}, {"position": [-8787.58456155282, -4455.197694323232], "name": 1928818266}, {"position": [-8466.484561552079, -4500.047694323328], "name": 1928818270}, {"position": [-325.83456155066415, 3569.502305676764], "name": 1316236896}, {"position": [-1339.2345615557133, 2957.1023056771396], "name": 1316236898}, {"position": [2527.865438445076, 2713.202305677953], "name": 1320104114}, {"position": [-2530.634561551892, 1587.7023056773965], "name": 1316236904}, {"position": [-417.43456155529657, -8100.697694322534], "name": 1887596138}, {"position": [3350.265438449185, -6292.747694322642], "name": 1769172062}, {"position": [-231.3345615547746, 3100.552305676629], "name": 1316236909}, {"position": [-630.0345615528613, 3373.952305677719], "name": 1316236911}, {"position": [-776.484561555435, 2163.4023056780193], "name": 1316236913}, {"position": [8518.065438444466, 4034.002305678186], "name": 2629549331}, {"position": [-8931.784561553968, -757.1476943226685], "name": 476794486}, {"position": [709.1154384468723, -1535.0976943224737], "name": 4273214057}, {"position": [576.8154384497848, -4125.547694322051], "name": 1887596152}, {"position": [-855.4845615549311, 2852.0023056781697], "name": 1316236924}, {"position": [-828.8345615525827, 2095.25230567742], "name": 1316236925}, {"position": [-1666.1345615531786, 2434.05230567717], "name": 1316236926}, {"position": [-107.83456155394333, 3750.5523056768907], "name": 1316236927}, {"position": [-567.2345615508334, 2452.402305676671], "name": 1316236928}, {"position": [-123.48456155564236, 3273.202305678069], "name": 1316236929}, {"position": [-288.2845615559404, 2408.8523056775557], "name": 1316236930}, {"position": [1359.9154384493772, 3394.752305677429], "name": 1320103555}, {"position": [-2913.734561552417, 1866.1523056771046], "name": 1316236932}, {"position": [-2340.1845615538264, 3197.9023056774026], "name": 1316236934}, {"position": [3174.4154384441003, 1266.6023056766562], "name": 1317670895}, {"position": [-505.8845615550922, -3995.9476943227655], "name": 1888338540}, {"position": [-505.734561556892, -6697.197694322199], "name": 1887596173}, {"position": [-287.68456155603417, -8162.947694323464], "name": 1887596174}, {"position": [-1857.6345615528567, 145.70230567656495], "name": 475976301}, {"position": [-4521.534561554574, 5126.152305678033], "name": 4397155843}, {"position": [1456.715438443723, 2834.202305677991], "name": 1320103569}, {"position": [1440.3154384439176, 2481.2523056780833], "name": 476556639}, {"position": [2984.315438446572, 1689.9523056768116], "name": 1320103571}, {"position": [-640.5845615518047, 2501.252305677326], "name": 1316236948}, {"position": [-8341.584561556203, -1458.2476943232336], "name": 1891528341}, {"position": [-343.4845615544191, -8167.547694322153], "name": 1887596182}, {"position": [-1892.2845615563233, 2908.9023056769747], "name": 1316236951}, {"position": [-483.3345615509188, -7306.347694322923], "name": 1887596184}, {"position": [-8238.884561556859, -1447.3476943219766], "name": 1891528345}, {"position": [-8433.48456155013, -1465.8976943220382], "name": 1891528346}, {"position": [-161.73456155144095, 2044.1523056771161], "name": 1316236955}, {"position": [2929.215438449262, 4367.102305677051], "name": 1320103580}, {"position": [-1029.5345615531915, 1787.0523056782163], "name": 1316236957}, {"position": [3080.6154384492856, 3014.7023056770195], "name": 1320103582}, {"position": [418.31543844494945, -4271.147694321798], "name": 1887596191}, {"position": [-2007.5845615536991, 3140.5523056768916], "name": 1316236961}, {"position": [1337.3154384481722, 2970.8523056779513], "name": 1320103586}, {"position": [-259.9845615520735, 2662.652305676971], "name": 1316236963}, {"position": [-1026.2845615542915, -5423.647694323464], "name": 103788196}, {"position": [1763.7654384472512, 3252.952305677681], "name": 1320103589}, {"position": [-311.4845615570516, -5556.997694322164], "name": 1887596198}, {"position": [-7728.834561554266, -4199.2476943217835], "name": 654577319}, {"position": [-742.384561554843, 2133.252305677402], "name": 1316236968}, {"position": [-406.08456155410977, -8174.297694322874], "name": 1887596201}, {"position": [3424.865438447, 1804.6023056772497], "name": 1320103597}, {"position": [37.365438444680876, 4099.102305676894], "name": 1316236974}, {"position": [1201.6654384439107, 2359.4523056775784], "name": 1320103599}, {"position": [-1496.4845615565991, 2692.652305677612], "name": 1316236976}, {"position": [1203.2154384442606, 2827.5023056778537], "name": 1320103601}, {"position": [-411.58456155443446, 3850.6523056778265], "name": 1316236979}, {"position": [2756.315438446677, 3245.252305676516], "name": 1320103605}, {"position": [4054.8154384438817, -7248.797694321851], "name": 93466295}, {"position": [-1553.1845615512907, 2088.8023056766515], "name": 1316236984}, {"position": [-1645.1845615534921, 1495.3523056782103], "name": 1316196980}, {"position": [-1720.0345615506762, 2351.902305678166], "name": 1316236987}, {"position": [-8253.03456155524, 9436.85230567759], "name": 95350463}, {"position": [3024.265438448026, 2952.502305676674], "name": 1320103617}, {"position": [2514.665438447139, 2807.952305676764], "name": 1320103619}, {"position": [6353.515438448198, -6142.647694321823], "name": 1771400900}, {"position": [-434.13456155150243, 2406.1023056773934], "name": 1316236998}, {"position": [8702.915438448144, -6283.847694323441], "name": 1771400903}, {"position": [3056.215438448362, 3568.102305678167], "name": 1320103624}, {"position": [-1101.53456155615, 2573.202305677924], "name": 1316237001}, {"position": [3504.4654384464025, 2212.2523056768982], "name": 1320103627}, {"position": [1728.9154384485528, 3058.002305676766], "name": 1320103628}, {"position": [-51.58456155385238, 3376.9023056766655], "name": 1316237005}, {"position": [1776.5654384476193, 1464.8023056782476], "name": 1320103630}, {"position": [-3144.8345615530116, 1913.4023056768256], "name": 1316237007}, {"position": [8838.365438442963, -5992.597694323365], "name": 1771400912}, {"position": [9292.265438446633, -5428.047694323368], "name": 1771400913}, {"position": [-2812.2345615528843, 1791.8523056774661], "name": 1316237011}, {"position": [-251.43456155518606, 4091.902305678019], "name": 1316237012}, {"position": [2616.5654384442405, 3324.0523056772277], "name": 1320103552}, {"position": [1860.3154384493337, 1892.7523056770924], "name": 1320103639}, {"position": [3492.6654384435096, 2302.4523056776047], "name": 1320103640}, {"position": [2973.3154384459226, 2998.3523056777985], "name": 1320103641}, {"position": [3016.715438448614, 2498.1023056778185], "name": 1320103643}, {"position": [2141.46543844862, 4095.702305678017], "name": 1320103644}, {"position": [3275.0154384473262, 2046.4523056773487], "name": 1320103645}, {"position": [-347.2845615561937, 2021.20230567715], "name": 1316237022}, {"position": [6466.765438446487, -5103.397694321999], "name": 495771117}, {"position": [-1368.8345615534558, 2905.552305676906], "name": 1316237025}, {"position": [-1994.1845615534248, 3076.3023056774587], "name": 1316237028}, {"position": [1155.3654384499623, 2726.002305676545], "name": 1320103653}, {"position": [-1420.1845615531283, 2319.402305676732], "name": 1316237030}, {"position": [-2501.134561555318, 2876.7523056778546], "name": 1316237033}, {"position": [9179.565438444115, -5603.347694322025], "name": 1771400938}, {"position": [-132.58456155540443, 5184.302305677235], "name": 1404037117}, {"position": [6951.81543844825, -3004.0976943226383], "name": 602360666}, {"position": [1599.8154384462282, 2515.352305676899], "name": 1320103661}, {"position": [-250.73456155411122, 3069.452305677345], "name": 1316237038}, {"position": [8910.615438445291, -5698.997694322472], "name": 1771400943}, {"position": [3469.315438444198, 2480.702305676985], "name": 1320103666}, {"position": [323.26543844618527, 4062.652305677261], "name": 1316237043}, {"position": [-8584.934561554292, 9153.302305676902], "name": 601712535}, {"position": [2636.715438448789, -5970.547694323258], "name": 1581175422}, {"position": [2786.465438447294, 3533.4523056782527], "name": 1320103670}, {"position": [1358.7654384465964, 2778.1523056766846], "name": 1320103672}, {"position": [-162.23456155017857, 3044.202305677146], "name": 1316237051}, {"position": [-4702.584561556478, -2143.0476943233857], "name": 479293180}, {"position": [2434.2154384484616, 2335.4523056777766], "name": 1320103677}, {"position": [-1658.8845615501668, 1950.1023056776035], "name": 1316237054}, {"position": [1037.3154384453187, 2415.8523056776457], "name": 1320103679}, {"position": [-1865.8845615533437, 3388.8023056771744], "name": 1316237057}, {"position": [3120.1154384490337, 1760.902305678158], "name": 1320103682}, {"position": [4388.815438446159, -6758.347694322709], "name": 3344153899}, {"position": [1970.6654384492595, 3046.2023056774256], "name": 1320103684}, {"position": [-3977.684561554895, -3407.797694322312], "name": 1889249238}, {"position": [3796.765438444538, 2078.552305677661], "name": 1320103686}, {"position": [1852.6654384487529, 3700.452305677615], "name": 1320103687}, {"position": [605.9154384487897, 3951.152305678107], "name": 1316237064}, {"position": [4825.76543844715, -6461.897694322261], "name": 3344153900}, {"position": [8662.665438443184, -6194.397694322617], "name": 1771400970}, {"position": [-35.934561552153355, 3919.0023056772106], "name": 1316237067}, {"position": [3940.1654384434437, -5212.097694322182], "name": 84487949}, {"position": [3643.1654384472267, 1879.002305678057], "name": 1320103696}, {"position": [2158.5654384495, 2731.602305678038], "name": 1320103698}, {"position": [4046.1654384458257, 5108.652305677808], "name": 1324294787}, {"position": [2916.965438444663, 3328.6523056776928], "name": 1320103700}, {"position": [-3245.284561550932, -192.1476943227418], "name": 1316237077}, {"position": [-4117.834561554901, -1425.597694321823], "name": 1315785427}, {"position": [3537.2654384460134, -7641.447694322068], "name": 93466391}, {"position": [-293.6845615550965, 2303.352305677464], "name": 1316237080}, {"position": [3098.765438444673, 1882.7023056768867], "name": 1320103705}, {"position": [-943.0845615554517, 2215.4523056769904], "name": 1316237082}, {"position": [2635.365438443671, 3358.4523056777725], "name": 1320104120}, {"position": [575.5654384458353, 2248.3023056771854], "name": 1320103708}, {"position": [2474.9654384450537, 3352.8023056774714], "name": 1320103709}, {"position": [3040.0654384479253, 3954.4023056770075], "name": 1320103710}, {"position": [-1288.7845615523474, 2234.502305677566], "name": 1316237087}, {"position": [2632.4154384482767, 3785.252305677389], "name": 1320103712}, {"position": [-2621.284561556081, 1695.4523056771363], "name": 1316237089}, {"position": [8931.915438445514, -5590.847694323386], "name": 1771400994}, {"position": [8984.265438449767, -6367.247694322842], "name": 1771400995}, {"position": [2969.715438446485, 1809.252305676523], "name": 1320103717}, {"position": [3753.815438443553, 2470.802305676756], "name": 1320103719}, {"position": [3853.065438448766, 2007.4523056781145], "name": 1320103720}, {"position": [1979.0154384438097, 1437.752305676554], "name": 1320103722}, {"position": [-301.7345615532463, 2369.8523056765453], "name": 1316237100}, {"position": [2690.665438443318, 2347.752305677631], "name": 1320103726}, {"position": [-326.13456155417, 1364.60230567792], "name": 3356022891}, {"position": [-1274.784561552167, 3069.452305677345], "name": 1316237104}, {"position": [-1309.1345615521277, 1274.0023056778682], "name": 1316197000}, {"position": [-69.38456155580752, 3840.552305677036], "name": 1316237106}, {"position": [-2116.2845615521064, 2734.302305677616], "name": 1316237108}, {"position": [292.61543844683047, 4410.2523056768205], "name": 1316237110}, {"position": [4141.815438444496, 4970.902305677427], "name": 1324294606}, {"position": [-2035.1345615523542, 2534.4023056774745], "name": 1316237115}, {"position": [-2519.8845615506116, 1089.95230567821], "name": 1316237116}, {"position": [-4708.88456155194, 1318.7023056779879], "name": 483110717}, {"position": [1916.6654384434878, 4131.50230567716], "name": 1320103745}, {"position": [9852.565438443151, -6607.497694322006], "name": 1771401026}, {"position": [2911.615438449644, 3257.5523056781462], "name": 1320103749}, {"position": [9122.36543844358, -6168.947694321858], "name": 1771401030}, {"position": [3797.4154384485814, 2801.6023056771646], "name": 1320103751}, {"position": [-1092.5345615504511, 2382.6523056769133], "name": 1316237128}, {"position": [-2766.8345615552425, 1052.8023056775028], "name": 1316237129}, {"position": [-521.6345615508544, 1862.9523056770126], "name": 1316237131}, {"position": [-1982.434561554669, -7808.597694323183], "name": 4394577740}, {"position": [-733.5345615544497, 2654.252305678284], "name": 1316237133}, {"position": [215.96543844992766, 3207.052305677749], "name": 1316237135}, {"position": [-1479.1845615533816, 1879.002305678057], "name": 1316237137}, {"position": [-1776.9345615548104, 681.8023056780476], "name": 1316237139}, {"position": [-331.23456155692566, 2287.2523056776117], "name": 1316237142}, {"position": [1972.9654384477158, 2408.8523056775557], "name": 1320103767}, {"position": [1439.015438450042, 4045.9023056769183], "name": 1320103768}, {"position": [2010.515438449545, 2746.0523056781485], "name": 1320103769}, {"position": [3037.6654384483004, 3014.4023056770666], "name": 1320103770}, {"position": [2340.1154384430356, 3403.0023056779155], "name": 1320103771}, {"position": [3416.7654384447133, 925.7523056778183], "name": 1317670750}, {"position": [2965.265438447773, 1873.452305677148], "name": 1320103775}, {"position": [3228.615438445104, 2556.9523056780954], "name": 1320103777}, {"position": [1573.4654384473856, 3021.8523056770864], "name": 1320103779}, {"position": [-2656.184561551811, 1622.0523056773573], "name": 1316237156}, {"position": [2072.0654384476234, 652.10230567736], "name": 1317670757}, {"position": [-1635.5345615508554, 2480.702305676985], "name": 1316237158}, {"position": [1986.4654384491587, 1493.15230567737], "name": 1320103783}, {"position": [-3289.534561552898, 1624.4023056781743], "name": 1316237160}, {"position": [-722.1845615532629, 1596.5023056772054], "name": 1316237161}, {"position": [3482.1154384445663, 2043.7023056771864], "name": 1320103786}, {"position": [65.01543844450453, 3591.902305677408], "name": 1316237163}, {"position": [-1617.3345615513313, 2759.5523056778147], "name": 1316237164}, {"position": [-1312.8345615527337, 2763.7023056765743], "name": 1316237165}, {"position": [3178.365438444075, 328.10230567825727], "name": 1317670767}, {"position": [1678.215438445818, 3711.602305678241], "name": 1320103792}, {"position": [3193.615438448205, 518.6523056774917], "name": 1317670769}, {"position": [2549.2654384464686, 3742.4023056775723], "name": 1320103794}, {"position": [2324.1154384479046, 3662.0023056777027], "name": 1320103796}, {"position": [-895.4845615534168, -1712.4476943219947], "name": 475975347}, {"position": [1291.7154384481933, 2860.7523056773944], "name": 1320103798}, {"position": [3252.1654384467524, 294.40230567701065], "name": 1317670775}, {"position": [2805.7154384484306, 1859.6523056775281], "name": 1320103800}, {"position": [3865.015438449859, 4922.002305677964], "name": 1324294804}, {"position": [2678.565438444025, 2806.5023056775826], "name": 1320103802}, {"position": [3056.465438447731, 2849.1523056768388], "name": 1320103803}, {"position": [-1110.6345615559121, 1666.9023056774536], "name": 1316237180}, {"position": [-1912.484561550798, 2415.502305677109], "name": 1316237182}, {"position": [1648.2654384475381, 2642.7023056765365], "name": 1320103807}, {"position": [2525.3654384442825, 2412.4023056781853], "name": 1320103809}, {"position": [582.4654384483097, 3851.852305677639], "name": 1316237187}, {"position": [-1230.3845615520004, 3146.802305677099], "name": 1316237188}, {"position": [-2419.284561554491, 1319.5023056766786], "name": 1316237189}, {"position": [-1529.0345615568413, -536.1476943228638], "name": 481390470}, {"position": [426.7154384436367, -1282.047694322941], "name": 4273147783}, {"position": [482.76543844849584, -1298.7476943226993], "name": 4273147784}, {"position": [832.7654384459038, 6955.052305677611], "name": 1404037100}, {"position": [-2135.5845615502744, 2403.9523056771372], "name": 1316237194}, {"position": [3346.565438448579, 1268.9523056774733], "name": 1317670796}, {"position": [477.81543844394037, -1390.947694321909], "name": 4273147789}, {"position": [3303.3654384482247, 69.25230567667029], "name": 1317670798}, {"position": [-2120.2345615520812, 2872.2023056779735], "name": 1316237199}, {"position": [463.96543844906546, -1344.1476943221176], "name": 4273147793}, {"position": [497.3654384485826, -1359.147694323326], "name": 4273147794}, {"position": [1001.9654384478827, 888.1523056771812], "name": 1317670803}, {"position": [-2569.784561551103, 3033.9023056775713], "name": 1316237204}, {"position": [2305.1654384431686, 15.002305676858896], "name": 1317670805}, {"position": [-2857.8345615528633, 1587.7023056773965], "name": 1316237206}, {"position": [-1680.6345615520968, 2411.9023056776714], "name": 1316237207}, {"position": [475.26543844611524, -1296.5476943218591], "name": 4273147800}, {"position": [-1179.184561550528, 2135.052305677121], "name": 1316237209}, {"position": [-1903.9345615539105, 3905.6523056775204], "name": 1316237210}, {"position": [503.2154384494447, 1289.152305677277], "name": 93310875}, {"position": [-659.5845615535723, 3081.4023056766614], "name": 1316237212}, {"position": [-2934.934561551472, 1423.7023056775656], "name": 1316237213}, {"position": [-1938.2345615568397, 2371.4523056774797], "name": 1316237216}, {"position": [-4234.08456155272, -3922.8976943217476], "name": 75352048}, {"position": [969.5654384458408, 278.10230567659744], "name": 1317670818}, {"position": [-749.6345615507494, 2319.402305676732], "name": 1316237219}, {"position": [1743.9154384462086, 305.5023056770523], "name": 1317670820}, {"position": [-1342.734561553982, 2036.602305677704], "name": 1316237221}, {"position": [1342.365438446791, 925.0523056767435], "name": 1317670822}, {"position": [-3894.4345615519183, -5407.997694321764], "name": 1887913969}, {"position": [1205.8654384432543, 2645.1023056779377], "name": 1320103848}, {"position": [3590.1654384460358, 695.4523056776907], "name": 1317670825}, {"position": [884.5154384431453, 287.002305677575], "name": 1317670827}, {"position": [-854.2345615509817, 1555.6023056770841], "name": 1316237228}, {"position": [296.4154384486051, 4108.5523056771935], "name": 1316237229}, {"position": [-1191.3345615539583, 2948.152305677354], "name": 1316237230}, {"position": [3348.3154384441605, 1342.25230567786], "name": 1317670831}, {"position": [592.2154384450096, -1638.4976943228935], "name": 4273147824}, {"position": [1535.5154384479874, 19.552305676739934], "name": 1317670833}, {"position": [-2490.3845615540376, 1158.752305677524], "name": 1316237234}, {"position": [-2177.484561556753, 2552.8523056781437], "name": 1316237235}, {"position": [652.7154384485812, -1640.9976943219108], "name": 4273147828}, {"position": [-822.034561551277, 2248.3023056771854], "name": 1316237237}, {"position": [5466.765438448818, 8095.952305676946], "name": 482734006}, {"position": [1377.4654384448581, 998.2523056777381], "name": 1317670839}, {"position": [5238.315438447216, 7507.5023056765385], "name": 476562079}, {"position": [1975.665438443741, 459.0023056767478], "name": 1317670845}, {"position": [1592.7654384455536, 415.4023056770484], "name": 1317670846}, {"position": [1982.7154384444157, 582.9023056769245], "name": 1317670848}, {"position": [-8726.234561549973, -1757.6976943232125], "name": 1890818619}, {"position": [3396.665438444302, 854.3523056765423], "name": 1317670852}, {"position": [3224.015438448191, 3341.5023056768687], "name": 1320103877}, {"position": [2432.4654384457745, -150.39769432334538], "name": 1317670854}, {"position": [3437.265438449799, 1186.3023056779552], "name": 1317670856}, {"position": [3980.6654384477724, 2059.602305678254], "name": 1320103881}, {"position": [3069.865438448005, 3406.6523056779374], "name": 1320103882}, {"position": [1634.0154384479888, 3440.7023056779453], "name": 1320103883}, {"position": [1037.6154384488245, -735.4976943219071], "name": 1316623421}, {"position": [1377.5154384489952, 2099.2023056773946], "name": 1320103886}, {"position": [918.1154384449997, 963.852305677193], "name": 1317670863}, {"position": [1897.6154384446886, 2092.652305677234], "name": 1320103888}, {"position": [1780.6154384487627, 2166.4023056775504], "name": 1320103889}, {"position": [1903.1654384491503, 1048.7023056775513], "name": 1317670866}, {"position": [3292.415438444607, 688.602305677577], "name": 1317670867}, {"position": [1264.9654384446762, 2168.0023056767086], "name": 1320103892}, {"position": [3202.765438444999, -7942.74769432235], "name": 1769172074}, {"position": [1361.5654384437903, 3509.302305676698], "name": 476557270}, {"position": [3458.115438448317, 2566.3023056772263], "name": 1320103895}, {"position": [-798.0345615550277, -1207.5976943233259], "name": 475975640}, {"position": [1825.5654384446984, 413.3523056779609], "name": 1317670873}, {"position": [2315.51543844688, 2235.8023056767706], "name": 1320103898}, {"position": [-138.28456155096092, -1290.1476943234513], "name": 475975643}, {"position": [1000.8654384492388, 16.0523056766948], "name": 1317670876}, {"position": [-5319.184561550117, 571.4023056775375], "name": 481390557}, {"position": [1392.6654384448511, 3761.2023056770026], "name": 1320103902}, {"position": [-4103.184561550677, 221.30230567718456], "name": 481390560}, {"position": [2782.9154384448884, 2861.702305677838], "name": 1320103905}, {"position": [3622.3654384457404, 1413.402305677991], "name": 1317670882}, {"position": [-888.9845615556169, 5344.852305677606], "name": 1404037115}, {"position": [6717.415438444618, 8273.952305676958], "name": 482734053}, {"position": [2975.1654384497783, 1738.302305676953], "name": 1320103910}, {"position": [5640.565438447709, -3622.2976943225403], "name": 84488167}, {"position": [8794.815438449177, -5456.347694321906], "name": 4345393128}, {"position": [2512.5654384439144, 1508.0523056774098], "name": 1320103913}, {"position": [2429.565438447412, -181.14769432209243], "name": 1317670890}, {"position": [2908.965438443545, 2943.30230567752], "name": 1320103915}, {"position": [1917.0654384481622, 915.9023056781734], "name": 1317670892}, {"position": [932.5154384498546, 45.40230567684489], "name": 1317670893}, {"position": [2682.5154384439998, 2623.0023056772466], "name": 1320103918}, {"position": [2187.5654384473364, 3936.502305677436], "name": 1320103919}, {"position": [1596.9654384448972, 360.4523056779385], "name": 1317670896}, {"position": [1913.0154384470188, 1869.7023056777339], "name": 1320103921}, {"position": [2853.365438447497, 3613.1023056782396], "name": 1320103922}, {"position": [2310.315438442956, 2114.3023056779953], "name": 1320103923}, {"position": [2739.965438443903, 3434.1523056777846], "name": 1320103924}, {"position": [1427.065438448949, 2702.1023056779113], "name": 1320103925}, {"position": [2914.9154384455755, 373.30230567711453], "name": 1317670902}, {"position": [1562.6154384449364, 2741.452305677683], "name": 1320103927}, {"position": [2158.065438443657, 2652.0023056768596], "name": 1320103928}, {"position": [3554.8654384456313, 1323.8023056771908], "name": 1317670905}, {"position": [-1047.1845615569464, 5007.602305678205], "name": 1404037126}, {"position": [2970.7654384480975, 1179.4023056772573], "name": 1317670907}, {"position": [2721.165438444473, 3831.0023056773443], "name": 1320103932}, {"position": [8864.515438446575, -6210.9476943224], "name": 4345393149}, {"position": [1835.865438444273, 2421.202305677994], "name": 1320103934}, {"position": [9021.66543844629, -5973.197694322252], "name": 4345393151}, {"position": [1901.8154384440322, 2675.9523056778535], "name": 1320103936}, {"position": [1567.965438447061, 3252.952305677681], "name": 1320103937}, {"position": [2047.3154384461623, 773.702305677304], "name": 1317670914}, {"position": [1527.6654384450694, 227.55230567739204], "name": 1317670917}, {"position": [2846.51543844916, 3879.5523056780467], "name": 1320103942}, {"position": [2801.765438448456, 1952.352305677252], "name": 1320103943}, {"position": [1675.2654384433185, 3833.3023056775774], "name": 1320103944}, {"position": [3574.065438449736, 1239.0523056780012], "name": 1317670921}, {"position": [2045.415438445275, 2661.1523056772057], "name": 1320103946}, {"position": [2278.565438444957, 2930.802305677105], "name": 1320103948}, {"position": [2316.165438443818, 3493.802305676752], "name": 1320103949}, {"position": [4698.115438444006, -4407.047694321875], "name": 84488206}, {"position": [-361.53456155574304, -6229.897694321807], "name": 1883254799}, {"position": [1865.015438447415, 3851.3523056771246], "name": 1320103952}, {"position": [2231.115438448228, 269.3023056767885], "name": 1317670930}, {"position": [2051.4654384484743, 3650.1523056777787], "name": 1320103955}, {"position": [3708.265438447711, 2330.852305677311], "name": 1320103956}, {"position": [2361.7154384467653, -180.69769432216276], "name": 1317670933}, {"position": [3126.115438448096, 1112.9023056781762], "name": 1317670935}, {"position": [2903.965438449063, 2992.9523056768658], "name": 1320103961}, {"position": [1476.2654384483653, 2921.252305677413], "name": 1320103962}, {"position": [2388.515438447314, 11.902305677935487], "name": 1317670940}, {"position": [2957.165438445486, 204.6523056780103], "name": 1317670941}, {"position": [2706.365438449154, 283.20230567757676], "name": 1317670943}, {"position": [2336.3154384483664, 2724.302305677995], "name": 1320103970}, {"position": [1916.6654384434878, 4051.202305676682], "name": 1320103971}, {"position": [2841.86543844811, 2934.1523056771734], "name": 1320103973}, {"position": [11296.615438446623, -758.8476943229949], "name": 96243750}, {"position": [2570.9654384442615, 3562.602305677842], "name": 1320103975}, {"position": [2453.81543844303, 331.0023056766198], "name": 1317670952}, {"position": [2211.7154384488913, 4076.4523056768808], "name": 1320103977}, {"position": [1795.6154384464185, -441.59769432283724], "name": 1317670954}, {"position": [1460.6154384466663, 771.1523056777025], "name": 1317670955}, {"position": [3411.815438447263, 469.7523056780284], "name": 1317670956}, {"position": [-2649.7845615551796, -4127.097694322401], "name": 4868927533}, {"position": [1385.115438445439, 2318.252305677504], "name": 1320103982}, {"position": [3818.2154384429623, 2828.302305676544], "name": 654405679}, {"position": [1675.0154384439497, 2203.2023056777207], "name": 1320103987}, {"position": [1385.0154384442703, 3699.2523056778027], "name": 1320103988}, {"position": [3381.5654384454774, -73.39769432235244], "name": 1317670965}, {"position": [1374.7654384488328, 814.752305677402], "name": 1317670967}, {"position": [6627.61543844681, -6282.647694321852], "name": 4345393208}, {"position": [3776.3654384477263, 690.7023056772488], "name": 1317670969}, {"position": [1376.0154384456769, 3626.45230567793], "name": 1320103994}, {"position": [3089.465438449679, 3973.4023056769984], "name": 1320103995}, {"position": [2383.1654384451895, -134.84769432281496], "name": 1317670972}, {"position": [3071.0154384436805, 4014.702305678242], "name": 1320103997}, {"position": [2831.165438443861, 3130.352305676709], "name": 1320103998}, {"position": [3220.5154384499224, 3419.4023056777214], "name": 1320103999}, {"position": [3048.415438449581, 3326.35230567746], "name": 1320104000}, {"position": [1604.9654384460155, 3448.0023056779883], "name": 1320104001}, {"position": [1632.6654384499761, -270.04769432181774], "name": 1317670979}, {"position": [2034.5154384457942, 654.0523056770553], "name": 1317670980}, {"position": [-2235.4845615524255, -3740.9476943217614], "name": 3318976581}, {"position": [-2167.1345615530413, -3771.8976943228454], "name": 3318976582}, {"position": [-4593.1845615569955, 9101.30230567674], "name": 3421417543}, {"position": [3676.0654384480063, 2415.752305678254], "name": 1320104008}, {"position": [-1850.634561556319, -4208.797694323252], "name": 3318976585}, {"position": [-1889.5845615531925, -4298.397694322276], "name": 3318976586}, {"position": [1645.5654384444074, 3717.30230567735], "name": 1320104011}, {"position": [-1641.4345615558545, -3813.197694322312], "name": 3318976588}, {"position": [2748.8654384484335, 1614.6523056779215], "name": 1320104015}, {"position": [3108.5654384455097, 1815.8023056766838], "name": 1320104016}, {"position": [1626.5154384456082, -22.59769432200187], "name": 1316694030}, {"position": [-5117.584561553202, 509.402305677753], "name": 3110525726}, {"position": [3072.065438445293, 198.25230567782626], "name": 1317671000}, {"position": [1275.6154384447882, 2743.7523056779155], "name": 1320104025}, {"position": [2547.865438444319, 2890.152305678129], "name": 1320104026}, {"position": [1283.6654384500434, 2069.402305677315], "name": 1320104027}, {"position": [2039.8154384437817, 1844.1523056775823], "name": 1320104029}, {"position": [11428.66543844434, -5354.4476943230275], "name": 602361950}, {"position": [1985.915438446284, -261.19769432320084], "name": 1317671008}, {"position": [3075.1654384459925, 76.20230567795261], "name": 1317671012}, {"position": [2452.8654384496917, 545.9023056779699], "name": 1317671014}, {"position": [2179.565438446218, 1446.9523056774847], "name": 1320104041}, {"position": [1875.365438444021, 2573.7023056766616], "name": 1320104043}, {"position": [-6983.534561555871, -419.09769432280086], "name": 71127148}, {"position": [1626.9654384473142, 3879.152305676925], "name": 1320104045}, {"position": [7178.065438445457, -7090.097694321784], "name": 1779937392}, {"position": [3448.565438446849, 4090.4023056782535], "name": 1320104049}, {"position": [2104.3154384443596, 2507.852305678071], "name": 1320104050}, {"position": [1825.9654384493729, 534.9523056779049], "name": 1317671027}, {"position": [2726.31543844426, 1757.9023056768506], "name": 1320104052}, {"position": [3423.965438443588, 4218.6523056777505], "name": 1320104053}, {"position": [2855.2654384483844, 2862.7523056776736], "name": 1320104054}, {"position": [1090.665438447047, 698.4523056772218], "name": 1317671031}, {"position": [3399.5654384497698, 666.4023056774937], "name": 1317671033}, {"position": [3481.565438448797, 2387.052305676818], "name": 1320104058}, {"position": [1562.1154384461988, 2284.102305678104], "name": 1320104059}, {"position": [1525.7154384471505, 3027.552305677972], "name": 1320104061}, {"position": [1459.2654384486536, 810.2023056775209], "name": 1317671038}, {"position": [3502.565438445515, 1318.752305676796], "name": 1317671039}, {"position": [3418.5154384474004, 349.152305677336], "name": 1317671041}, {"position": [2549.465438448806, -226.54769432328692], "name": 1317671044}, {"position": [2667.81543844985, 394.95230567787587], "name": 1317671045}, {"position": [1229.2154384496712, 2074.852305677055], "name": 1320104070}, {"position": [2921.565438448681, 473.10230567809697], "name": 1317671047}, {"position": [2339.5654384472664, 2800.0023056780065], "name": 1320104072}, {"position": [1614.3654384492834, -567.8976943226388], "name": 1317671049}, {"position": [3028.9654384461073, 3734.7023056781836], "name": 1320104074}, {"position": [1213.8654384443726, 859.9523056780356], "name": 1317671053}, {"position": [1434.3154384448553, 2145.3023056778875], "name": 1320104078}, {"position": [2674.8154384463874, 537.4023056781141], "name": 1317671055}, {"position": [1208.5154384493535, 759.7023056771235], "name": 1317671056}, {"position": [3614.365438444622, 2046.4523056773487], "name": 1320104081}, {"position": [948.3154384497539, 174.80230567734623], "name": 1317671058}, {"position": [1213.9154384485096, 553.3523056779899], "name": 1317671059}, {"position": [6703.115438448038, -4098.74769432328], "name": 63303828}, {"position": [3657.265438448576, 2596.952305676581], "name": 1320104085}, {"position": [1442.9154384458798, 2772.8023056781126], "name": 1320104087}, {"position": [2723.8154384434665, 1165.652305678222], "name": 1317671064}, {"position": [3285.765438448607, 1780.1523056775181], "name": 1320104089}, {"position": [3796.765438444538, 2239.1023056780314], "name": 1320104090}, {"position": [2696.5154384441803, 236.80230567713068], "name": 1317671067}, {"position": [3223.0154384436105, 3015.652305677463], "name": 1320104092}, {"position": [1921.5654384439063, 4221.702305677865], "name": 1320104093}, {"position": [1739.6154384456963, 3115.352305677277], "name": 1320104094}, {"position": [3958.6654384464737, 2125.1023056780837], "name": 1320104095}, {"position": [3032.315438446176, 3184.152305676591], "name": 1320104096}, {"position": [2927.5154384436064, 592.0023056766865], "name": 1317671073}, {"position": [1784.2154384482, 2183.1523056778933], "name": 1320104098}, {"position": [2133.9154384492076, 2569.402305677926], "name": 1320104100}, {"position": [1707.5154384471602, 2447.652305678005], "name": 1320104101}, {"position": [1765.4154384487697, 1401.0023056769683], "name": 1320104102}, {"position": [2482.4654384474343, 3305.1023056778204], "name": 1320104103}, {"position": [2206.265438445598, -237.99769432208961], "name": 1317671080}, {"position": [3525.7654384466264, 823.9023056777484], "name": 1317671081}, {"position": [1841.5654384469349, 3498.4023056772176], "name": 1320104106}, {"position": [3375.565438446415, 534.9023056773206], "name": 1317671084}, {"position": [1825.4154384464982, -549.9476943224835], "name": 1317671085}, {"position": [2751.765438446796, 3297.8523056765853], "name": 1320104110}, {"position": [-759.3845615545547, 5220.752305676868], "name": 1404037149}, {"position": [2511.965438444008, 3723.2023056770204], "name": 1320104112}, {"position": [2640.6154384446268, 3487.8023056776897], "name": 1320104113}, {"position": [2927.015438444869, -146.14769432341745], "name": 1317671090}, {"position": [1971.3654384432289, 1380.652305677188], "name": 1320104116}, {"position": [2070.7654384466423, 3745.7023056770568], "name": 1320104117}, {"position": [1865.7154384484897, 3558.052305677961], "name": 1320104118}, {"position": [2525.3654384442825, 2502.9023056770684], "name": 1320104119}, {"position": [2260.0154384448956, 473.50230567744234], "name": 1317671096}, {"position": [1350.7154384484465, 2028.102305677848], "name": 1320104121}, {"position": [1503.5154384435145, 995.9523056775055], "name": 1317671099}, {"position": [2031.065438444557, 3515.5523056769057], "name": 1320104124}, {"position": [2659.5154384452258, 3285.0523056779934], "name": 1320104125}, {"position": [2904.6654384430326, -216.34769432310463], "name": 1317671102}, {"position": [7978.565438449436, -5569.497694322578], "name": 1774850241}, {"position": [1969.465438449447, 349.152305677336], "name": 1317671106}, {"position": [8461.115438443301, -5326.497694323251], "name": 1774850243}, {"position": [2447.8654384481047, 255.80230567712192], "name": 1317671112}, {"position": [1208.5154384493535, 805.5523056782476], "name": 1317671113}, {"position": [8494.615438443987, -5420.897694323301], "name": 1774850251}, {"position": [-474.58456155169415, 4652.152305677504], "name": 476559394}, {"position": [8227.065438447313, -5321.697694322225], "name": 1774850254}, {"position": [2468.9654384459914, 409.6023056767706], "name": 1317671120}, {"position": [1588.8654384497158, 465.95230567803014], "name": 1317671121}, {"position": [3364.465438444597, 1505.8023056777615], "name": 1317671123}, {"position": [2450.2154384435926, 473.00230567692836], "name": 1317671124}, {"position": [1100.9654384466216, 698.0023056772922], "name": 1317671125}, {"position": [-8332.934561551043, 2401.252305677559], "name": 87781592}, {"position": [2067.4154384465737, 562.4023056771676], "name": 1317671131}, {"position": [3233.9654384472283, 1360.6523056779452], "name": 1317671132}, {"position": [1162.9154384493745, 1005.1023056778519], "name": 1317671134}, {"position": [803.4654384445616, 431.7023056774616], "name": 1317671138}, {"position": [3242.315438448884, 1252.602305678252], "name": 1317671140}, {"position": [2671.3154384481186, 463.9523056777506], "name": 1317671144}, {"position": [2950.665438447686, 101.60230567812789], "name": 1317671147}, {"position": [3233.4154384443536, 83.05230567806632], "name": 1317671148}, {"position": [-3805.784561556891, 70.00230567655308], "name": 481390832}, {"position": [-3423.8345615520416, -117.49769432256585], "name": 481390834}, {"position": [-3164.784561555223, -219.94769432254202], "name": 481390836}, {"position": [2624.31543844599, 1298.5023056781843], "name": 1317671157}, {"position": [1213.8654384443726, 998.2523056777381], "name": 1317671158}, {"position": [-1562.5345615504216, -639.4976943226993], "name": 481390839}, {"position": [1095.8154384468344, 245.90230567689275], "name": 1317671161}, {"position": [2238.7654384488087, 323.30230567723106], "name": 1317671162}, {"position": [4931.5654384471945, 1485.202305676836], "name": 475979135}, {"position": [-3375.984561550638, 7702.852305676799], "name": 3064901886}, {"position": [1210.2654384449352, 124.25230567814083], "name": 1317671168}, {"position": [3548.5154384460316, -7698.497694322626], "name": 1769172084}, {"position": [1849.3154384486843, -592.7476943217158], "name": 1317671170}, {"position": [-2907.7345615533545, 7514.7523056777745], "name": 3064901891}, {"position": [4302.215438443113, 8155.80230567825], "name": 482734340}, {"position": [3434.6154384437, 255.10230567782344], "name": 1317671173}, {"position": [2248.615438446677, 393.0023056781806], "name": 1317671176}, {"position": [1964.8154384483973, -18.247694322681696], "name": 1317671177}, {"position": [3469.015438447798, 5251.402305677999], "name": 1324294871}, {"position": [1001.9654384478827, 544.1023056782512], "name": 1317671183}, {"position": [2494.1654384491585, 151.80230567679587], "name": 1317671184}, {"position": [-6777.334561554937, -6005.797694323079], "name": 4708397784}, {"position": [1084.1654384492472, -89.0476943222751], "name": 1317671186}, {"position": [2417.815438448656, 10.802305677515278], "name": 1317671187}, {"position": [-3885.334561552156, 7334.802305678068], "name": 3064901908}, {"position": [1093.1654384478406, 633.5523056772985], "name": 1317671190}, {"position": [-2785.2345615499985, 7279.152305677882], "name": 3064901912}, {"position": [-3946.7845615561714, 5283.202305676582], "name": 3027169562}, {"position": [1151.9654384457567, 867.8023056774009], "name": 1317671195}, {"position": [3183.3154384486306, 390.20230567743397], "name": 1317671197}, {"position": [-3024.5845615510802, 7131.752305676642], "name": 3064901918}, {"position": [-8915.534561552362, -7176.797694322446], "name": 874295583}, {"position": [2950.7154384447176, -47.69769432222404], "name": 1317671201}, {"position": [-4017.3845615569803, 5364.302305677526], "name": 3027169571}, {"position": [2430.615438449024, -221.79769432284502], "name": 1317671204}, {"position": [-4169.5345615551105, 5455.752305676853], "name": 3027169573}, {"position": [-2831.0845615564517, 7025.9523056765975], "name": 3064901926}, {"position": [4549.215438444776, 4676.102305676722], "name": 476559409}, {"position": [-3914.7845615516985, 5325.552305677661], "name": 3027169576}, {"position": [2074.4654384472483, -258.89769432296816], "name": 1317671209}, {"position": [1973.3654384452848, 417.9023056778419], "name": 1317671210}, {"position": [1211.1654384483472, 1064.7523056768193], "name": 1317671211}, {"position": [-7162.734561553918, -1880.247694321824], "name": 1890819995}, {"position": [1785.9154384467502, 780.3023056780489], "name": 1317671214}, {"position": [2664.815438443213, 87.6523056767553], "name": 1317671216}, {"position": [1979.8654384430847, 532.5523056782799], "name": 1317671217}, {"position": [-9038.684561552656, -2372.997694322976], "name": 5021317171}, {"position": [1883.0654384487389, -267.94769432214594], "name": 1317671221}, {"position": [1631.6154384483639, -105.0476943227352], "name": 1317671223}, {"position": [1101.8654384500337, 874.1523056770006], "name": 1317670918}, {"position": [3138.5654384479267, -82.64769432209107], "name": 1317671227}, {"position": [-6741.38456155049, 5924.65230567818], "name": 95612298}, {"position": [1966.6654384451476, 211.502305678124], "name": 1317671230}, {"position": [2685.715438445868, 185.95230567797216], "name": 1317670808}, {"position": [2662.115438447188, 1080.8023056778638], "name": 1317671237}, {"position": [6688.565438444983, -6197.397694322149], "name": 63312200}, {"position": [2020.7154384479509, -509.3476943223152], "name": 1317671241}, {"position": [2439.11543844888, -79.74769432195217], "name": 1317671243}, {"position": [5896.965438445533, 1041.8023056768534], "name": 2367476044}, {"position": [5923.8154384431145, 993.6523056772728], "name": 2367476046}, {"position": [6079.365438445449, 915.6523056770283], "name": 2367476047}, {"position": [-1809.2845615527153, -5278.097694322525], "name": 210686289}, {"position": [1784.9654384463065, 666.9523056768156], "name": 1317671254}, {"position": [3129.215438448796, -166.99769432193534], "name": 1317671256}, {"position": [-3912.9345615549482, 6471.802305677344], "name": 483103066}, {"position": [5988.165438445492, 1165.652305678222], "name": 2367476059}, {"position": [6275.16543844564, 1103.7523056778298], "name": 2367476060}, {"position": [6111.5654384451545, 1200.102305677575], "name": 2367476061}, {"position": [8096.415438444637, -989.5476943224679], "name": 4867862882}, {"position": [3106.8654384469596, -7344.297694322321], "name": 1581175140}, {"position": [2195.7654384436864, 19.10230567681026], "name": 1317671269}, {"position": [1106.565438448115, 950.0523056775734], "name": 1317671271}, {"position": [-3902.2845615548363, 6540.252305677896], "name": 483103082}, {"position": [692.465438447698, 459.1523056767244], "name": 1317671275}, {"position": [1787.1154384465626, 924.852305677959], "name": 1317671277}, {"position": [1744.9154384436838, 360.60230567791507], "name": 1317671280}, {"position": [8476.465438448598, -387.99769432174], "name": 4867862897}, {"position": [7875.565438446585, -1300.8976943229554], "name": 4867862898}, {"position": [2179.165438448649, 800.7523056772214], "name": 1317671283}, {"position": [2558.1654384438934, -5984.597694322247], "name": 1581175157}, {"position": [1374.7654384488328, 1106.0523056780626], "name": 1317671288}, {"position": [2265.0654384435143, 509.15230567660785], "name": 1317671289}, {"position": [10104.26543845, 2010.8523056769911], "name": 4867862906}, {"position": [2297.315438447356, 344.5523056768707], "name": 1317671292}, {"position": [2271.315438449051, 553.4523056773821], "name": 1317671293}, {"position": [2505.6154384444085, -6154.89769432287], "name": 1581175168}, {"position": [1577.0154384497914, 759.7023056771235], "name": 1317671298}, {"position": [2924.9654384457813, 1112.9023056781762], "name": 1317671303}, {"position": [1213.8654384443726, 970.7023056773068], "name": 1317671305}, {"position": [-5976.684561552758, -7306.447694322315], "name": 874287498}, {"position": [2321.465438448911, -212.7976943224752], "name": 1317671309}, {"position": [-6929.834561553605, 8604.902305677342], "name": 623416771}, {"position": [2674.8154384463874, 136.00230567689664], "name": 1317671311}, {"position": [1787.865438444669, 1053.3023056780166], "name": 1317671312}, {"position": [-7651.084561551614, -3690.797694321901], "name": 5021317187}, {"position": [2515.4654384493824, -5967.497694323143], "name": 1581175189}, {"position": [1211.415438447716, 495.7523056781099], "name": 1317671318}, {"position": [2482.265438445097, 9.65230567828712], "name": 1317671321}, {"position": [9846.415438445889, -7809.647694323019], "name": 1491042488}, {"position": [1004.1154384481388, 37.502305676895276], "name": 1317671324}, {"position": [1360.8654384498209, 686.9523056778348], "name": 1317671325}, {"position": [779.9154384500184, -983.6976943233822], "name": 3485520289}, {"position": [11201.665438449027, -950.4976943226495], "name": 93180322}, {"position": [471.01543844974003, -1114.447694321896], "name": 3485520291}, {"position": [2774.76543844557, -127.94769432211694], "name": 1317671332}, {"position": [1578.315438443667, 869.8023056776805], "name": 1317671333}, {"position": [3611.9654384449973, 1450.2023056781609], "name": 1317671334}, {"position": [3488.765438447672, 1393.2023056781873], "name": 1317671336}, {"position": [712.7154384463097, 1012.0023056767735], "name": 1317671343}, {"position": [2377.715438449002, 100.05230567777801], "name": 1317671344}, {"position": [4699.3154384438185, -8231.697694322193], "name": 1767289265}, {"position": [2065.6654384438866, 528.1523056765991], "name": 1317671346}, {"position": [1774.5654384455634, -272.447694323219], "name": 1317671347}, {"position": [7167.565438443546, 7787.352305676621], "name": 654381492}, {"position": [1280.915438449881, 851.4523056781798], "name": 1317671349}, {"position": [2394.1154384488073, 259.1523056771905], "name": 1317671350}, {"position": [1935.365438448855, -104.99769432215089], "name": 1317671354}, {"position": [-2494.434561555181, -7547.997694322461], "name": 654414267}, {"position": [2780.1154384476945, 115.2023056771867], "name": 1317671356}, {"position": [-4485.434561551927, -6626.097694322652], "name": 477628490}, {"position": [2678.1154384494243, 611.0523056772621], "name": 1317671359}, {"position": [2498.765438446071, 207.25230567819608], "name": 1317671360}, {"position": [11659.915438443135, 6461.202305677815], "name": 618426817}, {"position": [-3781.4345615529987, -3291.39769432274], "name": 1889249355}, {"position": [-4036.484561552811, 2803.7523056774207], "name": 624783812}, {"position": [9998.815438443387, -5020.347694323135], "name": 2932694433}, {"position": [3276.0154384448015, -7189.897694322766], "name": 1581175241}, {"position": [1971.6654384467347, -424.1976943220038], "name": 1317671370}, {"position": [3956.16543844568, 1134.3023056777924], "name": 1317671372}, {"position": [3067.5654384495488, -243.5476943229986], "name": 481389986}, {"position": [988.0154384447337, -69.34769432298538], "name": 1317671375}, {"position": [2380.465438449164, 548.7023056769402], "name": 1317671376}, {"position": [2447.5154384475672, 9.65230567828712], "name": 1317671379}, {"position": [3517.7154384484766, 1236.8023056765765], "name": 1317671382}, {"position": [2673.365438447206, 505.1523056778251], "name": 1317671383}, {"position": [4583.715438450043, -573.247694322987], "name": 75354586}, {"position": [3509.365438446821, 1281.9023056778178], "name": 1317671389}, {"position": [2031.4654384492314, -322.29769432312594], "name": 1317671394}, {"position": [2308.0654384486365, 202.35230567777762], "name": 1317671395}, {"position": [3625.515438443472, 883.1023056767862], "name": 1317671397}, {"position": [1087.8154384457162, 78.50230567818528], "name": 1317671398}, {"position": [1940.715438443874, -258.6976943224073], "name": 1317671399}, {"position": [2220.3654384469473, -2744.197694322992], "name": 103764456}, {"position": [2064.1154384435367, 498.2023056765428], "name": 1317671401}, {"position": [3651.86543844942, 1333.1023056775139], "name": 1317671402}, {"position": [1321.1654384477356, 927.1523056781916], "name": 1317671406}, {"position": [3048.2154384472437, 1112.9023056781762], "name": 1317671409}, {"position": [10912.76543844799, -1709.8476943218088], "name": 1489367542}, {"position": [2069.465438445661, 206.90230567765866], "name": 1317671415}, {"position": [2718.4154384443104, 339.9523056781817], "name": 1317671421}, {"position": [1101.1154384448218, 812.4523056771693], "name": 1317671422}, {"position": [1579.4154384494163, 961.5523056769604], "name": 1317671424}, {"position": [2489.665438446309, 97.20230567822341], "name": 1317671425}, {"position": [-6422.434561550006, -1089.6976943222114], "name": 1469016667}, {"position": [1632.5154384446705, -180.69769432216276], "name": 1317671434}, {"position": [2771.4154384455014, -5723.147694322251], "name": 1581175309}, {"position": [1930.0154384467305, 791.8023056774359], "name": 1317671438}, {"position": [2390.3654384440642, 213.5523056772115], "name": 1317671440}, {"position": [8881.465438449253, -5838.997694322501], "name": 1771400999}, {"position": [2946.4154384442054, 34.90230567670949], "name": 1317671442}, {"position": [-8557.534561553837, -5842.947694322475], "name": 640627221}, {"position": [-2415.7345615520853, 2976.5523056770603], "name": 1316236462}, {"position": [-9084.784561551372, -5388.297694322475], "name": 638736475}, {"position": [2642.065438443808, -5797.397694323081], "name": 1581175339}, {"position": [2623.915438448421, -5787.397694323459], "name": 1581175343}, {"position": [-1629.4345615506245, 7059.80230567782], "name": 3047465736}, {"position": [-640.2345615512672, 1411.252305677735], "name": 3356022890}, {"position": [-2173.8345615531784, 1071.1523056770034], "name": 1316196935}, {"position": [1987.6654384489711, -333.6476943225364], "name": 1317670927}, {"position": [-3634.384561550519, -3754.6976943225727], "name": 874312265}, {"position": [-1915.384561556266, 982.3523056766703], "name": 1316196939}, {"position": [-1401.384561553698, 1498.2023056777648], "name": 1316196943}, {"position": [-3534.434561551336, -2697.547694323177], "name": 479294032}, {"position": [-1573.0345615523333, 1642.7023056770906], "name": 1316196945}, {"position": [-2375.034561552525, 993.6023056766885], "name": 1316196946}, {"position": [-1592.6845615510388, 1602.6023056774363], "name": 1316196948}, {"position": [-1760.7845615543738, 1268.4023056781512], "name": 1316196949}, {"position": [-3658.0845615503677, -735.2476943225383], "name": 1316196952}, {"position": [-2116.5845615556123, 2097.5523056776524], "name": 1316196954}, {"position": [-3203.5345615568644, -4951.747694322606], "name": 267194971}, {"position": [-3177.6345615526225, -2863.3476943227265], "name": 479294044}, {"position": [-1886.8845615500618, 1729.8523056776817], "name": 1316196957}, {"position": [-1282.2345615504105, 1332.7023056781684], "name": 1316196959}, {"position": [-3367.28456155555, -1123.2976943222893], "name": 1316196960}, {"position": [3389.8154384459644, -5323.997694322457], "name": 4451234402}, {"position": [-2197.9845615547333, 1000.0023056768725], "name": 1316196963}, {"position": [3496.265438442947, -5377.247694323018], "name": 4451234404}, {"position": [-453.78456155020785, 1529.6023056770025], "name": 3356022886}, {"position": [-6360.584561555526, -3910.7976943224544], "name": 267194982}, {"position": [3155.9654384452074, 8865.052305678133], "name": 62829161}, {"position": [723.2154384482214, -1518.647694322084], "name": 4273214059}, {"position": [3150.5654384460513, -5555.047694322468], "name": 4451234412}, {"position": [-7271.234561549989, 3865.9023056766273], "name": 857780845}, {"position": [703.6154384465476, -1583.7476943225681], "name": 4273214063}, {"position": [683.5654384431677, -1590.7976943232427], "name": 4273214065}, {"position": [3255.515438446821, -5629.7976943220365], "name": 4451234418}, {"position": [604.3154384443028, -1567.5476943233234], "name": 4273214067}, {"position": [600.2154384461278, -1612.8476943233495], "name": 4273214068}, {"position": [-2415.2345615533477, 904.1523056776413], "name": 1316196981}, {"position": [-1975.3845615539944, 1628.9523056780554], "name": 1316196982}, {"position": [558.3654384437864, -1624.4476943221287], "name": 4273214071}, {"position": [-1373.834561555043, 1136.402305677464], "name": 1316196984}, {"position": [-1802.5345615555466, 1191.1523056777896], "name": 1316196985}, {"position": [-2530.5345615507235, -3229.747694321716], "name": 479294074}, {"position": [3466.9154384445733, -5885.147694321802], "name": 4451234427}, {"position": [-1935.4345615525403, 945.2523056765472], "name": 1316196988}, {"position": [-7013.084561556581, 2098.1023056769745], "name": 857780861}, {"position": [3435.1654384465746, -6047.097694322545], "name": 4451234430}, {"position": [7749.81543844433, -1139.7976943232634], "name": 393749269}, {"position": [-1503.2845615507995, 1037.2023056781643], "name": 1316196992}, {"position": [8183.815438449927, -7228.147694322118], "name": 1779937921}, {"position": [-2023.6345615529672, 1564.7523056774303], "name": 1316196994}, {"position": [2009.2654384455955, 3346.2523056773107], "name": 476557955}, {"position": [830.3154384492473, -1610.8476943230698], "name": 4273214085}, {"position": [726.4654384471214, -1637.9976943223796], "name": 4273214086}, {"position": [-2138.98456155448, 883.5023056779079], "name": 1316196999}, {"position": [-3533.034561556292, -3382.147694322768], "name": 874312328}, {"position": [-2529.7345615555855, 772.4523056769073], "name": 1316197001}, {"position": [4324.265438448549, -7427.147694322401], "name": 4483338910}, {"position": [3566.865438443756, -5921.39769432265], "name": 1767289507}, {"position": [-3333.134561550821, 9334.202305677052], "name": 600496502}, {"position": [-4503.134561552713, 6635.552305677806], "name": 483103400}, {"position": [-8004.834561553764, 9.20230567658109], "name": 479302313}, {"position": [664.465438447337, -10.047694322778966], "name": 475976364}, {"position": [-4421.434561550086, 1316.9523056770772], "name": 1315785611}, {"position": [-343.4845615544191, -8099.29769432216], "name": 103781041}, {"position": [-473.8845615506193, -7417.397694322148], "name": 103781049}, {"position": [-3744.1345615505384, -3977.8976943232183], "name": 874312382}, {"position": [-7301.93456155348, -5837.397694323343], "name": 4708397766}, {"position": [-7232.734561554821, -6000.597694322707], "name": 4708397767}, {"position": [-6975.384561556552, -5875.647694322694], "name": 4708397768}, {"position": [-7191.734561551755, -5862.647694321766], "name": 4708397769}, {"position": [-7031.384561550169, -6038.297694322736], "name": 4708397770}, {"position": [-7148.7845615507695, -5728.997694323112], "name": 4708397771}, {"position": [-9160.634561553139, -4103.897694323066], "name": 476680908}, {"position": [-2083.8845615500645, 2789.252305676726], "name": 1316237227}, {"position": [-7213.134561553147, -5929.147694322623], "name": 4708397774}, {"position": [-7323.784561556578, -5905.297694322798], "name": 4708397775}, {"position": [-6701.334561554972, -5837.197694322782], "name": 4708397776}, {"position": [-7138.334561552994, -6016.847694322536], "name": 4708397777}, {"position": [-7002.184561549995, -5953.497694322962], "name": 4708397779}, {"position": [-7087.33456155386, -5850.297694323103], "name": 4708397780}, {"position": [-7269.43456155027, -6070.947694322371], "name": 4708397781}, {"position": [4165.515438444345, -8424.997694323367], "name": 1767289558}, {"position": [-6807.134561555017, 2197.802305676788], "name": 93246167}, {"position": [-7909.7845615549995, -3957.6976943234145], "name": 476680920}, {"position": [-7840.084561550498, -3905.347694322714], "name": 476680922}, {"position": [2447.365438449367, -6480.7476943222755], "name": 1581175517}, {"position": [-5801.484561551717, -6896.047694322505], "name": 477640827}, {"position": [-210.2345615568879, 65.70230567781721], "name": 1316694012}, {"position": [-6167.834561551899, 2170.4023056781098], "name": 93246191}, {"position": [-2927.584561554397, -6068.697694322722], "name": 267195120}, {"position": [-4085.634561555196, -5766.597694321973], "name": 267195121}, {"position": [-5138.734561555225, -5350.597694322445], "name": 267195122}, {"position": [-6120.834561556876, 2297.202305676649], "name": 93246200}, {"position": [-4007.0845615503004, -1891.5476943224262], "name": 479284692}, {"position": [2885.265438443696, 9086.302305677307], "name": 4370661333}, {"position": [-8792.784561556744, 8010.002305677944], "name": 486183676}, {"position": [1111.0154384468274, -3813.09769432292], "name": 103764778}, {"position": [7155.315438446052, -7346.647694323138], "name": 495645443}, {"position": [-8767.23456155304, -4195.247694323001], "name": 1729319686}, {"position": [2356.415438448778, -6547.347694322525], "name": 1581175560}, {"position": [2391.2654384474763, -6506.047694323059], "name": 1581175562}, {"position": [3120.0654384448967, -258.9976943223604], "name": 481390039}, {"position": [2441.5654384455365, -6126.097694322041], "name": 1581175564}, {"position": [831.5654384460913, -1683.7976943229194], "name": 476078905}, {"position": [7960.4654384439755, -6041.5476943234125], "name": 1771402887}, {"position": [4700.215438447231, 4583.802305678119], "name": 1319641077}, {"position": [4026.115438449551, 1288.9523056767162], "name": 482729435}, {"position": [-6292.084561550837, -6690.547694322646], "name": 477640643}, {"position": [-8893.784561550434, 7787.402305677205], "name": 2716405305}, {"position": [-9129.834561555583, 1931.00230567822], "name": 857781031}, {"position": [-6626.134561550145, -5451.397694322679], "name": 654578474}, {"position": [-6483.434561552314, -4972.297694322947], "name": 654578475}, {"position": [2358.3654384466968, -6505.197694322007], "name": 1581175599}, {"position": [-253.08456155670456, 1069.1023056779159], "name": 2969936446}, {"position": [2304.715438448568, -6457.047694322427], "name": 1581175603}, {"position": [-4966.234561550209, 2052.7523056781406], "name": 147477301}, {"position": [-2539.334561554085, 3079.352305677574], "name": 1316237190}, {"position": [2353.715438445647, -6453.297694323012], "name": 1581175607}, {"position": [-7909.184561555094, -3883.0476943232384], "name": 476681025}, {"position": [-8475.934561552378, -3921.097694322029], "name": 476681028}, {"position": [-8612.334561554746, -3827.9476943223754], "name": 476681029}, {"position": [-1676.7845615532906, 3574.652305676551], "name": 483099095}, {"position": [7273.31543844656, -7219.4976943222855], "name": 495645512}, {"position": [-8837.234561553942, -3726.947694323357], "name": 476681033}, {"position": [-1445.9345615520647, -7520.297694322054], "name": 103781196}, {"position": [-900.7845615514043, -29.697694323260748], "name": 1316623182}, {"position": [993.8654384455958, -1288.5476943225171], "name": 1316623185}, {"position": [1276.2154384446944, -1479.3976943234811], "name": 1316623187}, {"position": [-572.6345615499895, 2078.552305677661], "name": 1316237191}, {"position": [4661.565438446758, -6886.347694322836], "name": 63308077}, {"position": [-8162.434561555187, -4083.2476943233332], "name": 476681047}, {"position": [-7952.384561555447, -4181.647694322166], "name": 476681048}, {"position": [-603.884561556356, -321.6476943226354], "name": 1316623193}, {"position": [1919.7654384441876, -1141.7976943217668], "name": 1316623197}, {"position": [-1443.3345615501025, 1618.4023056773356], "name": 639308640}, {"position": [-1600.5845615509884, 1761.752305677433], "name": 639308641}, {"position": [-9142.534561554783, -7744.547694322535], "name": 874296162}, {"position": [-5361.134561553627, -6338.747694321966], "name": 477639525}, {"position": [86.01543844832804, -1397.7976943220228], "name": 1316623209}, {"position": [-978.6845615522566, -644.1976943225569], "name": 1316623210}, {"position": [2408.715438448894, -6449.847694321776], "name": 1581175659}, {"position": [1040.0154384484495, -3764.4976943234096], "name": 103764845}, {"position": [1405.1654384488188, -1240.0476943223994], "name": 1316623215}, {"position": [4450.065438447837, 653.3023056771725], "name": 475978741}, {"position": [-515.2845615512547, -710.6976943234145], "name": 1316623224}, {"position": [-156.6345615557907, -472.04769432340754], "name": 1316623226}, {"position": [6570.215438443938, 886.7023056779999], "name": 475984763}, {"position": [-7515.984561550226, 2936.8523056767517], "name": 857780844}, {"position": [-483.08456155155, -1246.9476943230973], "name": 1316623230}, {"position": [-2503.984561556649, 2593.0523056771904], "name": 639308674}, {"position": [1358.6654384454278, -1118.8476943218006], "name": 1316623235}, {"position": [-1801.134561553397, 2228.2523056773584], "name": 639308676}, {"position": [-3196.8345615567273, -4638.14769432247], "name": 477647749}, {"position": [5513.46543844744, 8175.152305677003], "name": 714084514}, {"position": [-1239.4845615517625, 2003.7523056775085], "name": 639308680}, {"position": [-2477.684561554838, 2628.8023056775246], "name": 639308682}, {"position": [-2762.2345615512245, 2746.552305676886], "name": 639308683}, {"position": [-1912.484561550798, 2029.9523056781509], "name": 639308684}, {"position": [8071.165438444439, -4205.497694321992], "name": 63303824}, {"position": [-650.3845615526416, -528.447694323475], "name": 1316623251}, {"position": [-456.1845615569382, -843.3476943228158], "name": 1316623254}, {"position": [-2611.1345615547066, 2439.0523056769807], "name": 639308696}, {"position": [-2891.734561551118, 1912.0023056782288], "name": 639308698}, {"position": [-363.1845615501561, -905.5476943231611], "name": 1316623259}, {"position": [3647.21543844837, -7576.747694322705], "name": 2049820826}, {"position": [-634.1845615551733, -456.39769432348487], "name": 1316623264}, {"position": [1504.6154384492638, -2212.847694321951], "name": 2367475184}, {"position": [5282.515438445045, 7481.602305677626], "name": 476561865}, {"position": [-224.88456155400627, 1935.7523056768855], "name": 639308707}, {"position": [9412.015438449827, -7589.597694321881], "name": 495768484}, {"position": [-8746.334561550384, -3774.1976943230784], "name": 476681030}, {"position": [6626.915438445735, -4020.647694321866], "name": 495771121}, {"position": [-2567.6345615508467, -4799.14769432277], "name": 477647784}, {"position": [10711.16543844397, 3525.1523056771816], "name": 4867879849}, {"position": [-1628.8845615548553, 614.1523056779619], "name": 639308714}, {"position": [978.815438443803, -1013.4476943228776], "name": 1316623275}, {"position": [1334.5154384438729, -1171.5976943218466], "name": 1316623279}, {"position": [1945.115438445555, -1431.0976943221476], "name": 1316623283}, {"position": [1097.4654384483529, -462.6976943225003], "name": 773662878}, {"position": [2847.365438448435, 4920.552305677006], "name": 1324294985}, {"position": [4176.9654384467, -4654.647694323444], "name": 4867879866}, {"position": [2541.515438444719, -900.9476943226957], "name": 1316623291}, {"position": [-50.43456155107151, -892.4476943228399], "name": 1316623295}, {"position": [2534.815438444582, -5975.247694323116], "name": 4867879872}, {"position": [846.7654384460843, -1253.797694323211], "name": 4273219744}, {"position": [2493.815438448621, -6149.597694323105], "name": 4867879874}, {"position": [-152.53456155051026, -1372.2476943218708], "name": 1316623299}, {"position": [-968.0345615521446, -320.2476943222621], "name": 1316623303}, {"position": [2337.065438446473, -7254.747694322105], "name": 4867879881}, {"position": [1852.1654384500152, -696.7976943226262], "name": 1316623306}, {"position": [1270.1654384486005, -1508.7476943218549], "name": 1316623307}, {"position": [2586.515438444792, -401.04769432325327], "name": 1316623308}, {"position": [-2194.4845615564645, -2749.7976943227086], "name": 479284039}, {"position": [1304.565438445593, -1342.447694321791], "name": 1316623310}, {"position": [5871.865438443536, 973.5523056768614], "name": 2971714381}, {"position": [6339.915438445587, 967.2523056778459], "name": 3356046288}, {"position": [5901.565438449552, 885.9523056781171], "name": 3356046289}, {"position": [-5070.38456155584, -2618.147694322559], "name": 479286226}, {"position": [574.9154384488975, -1293.3976943223513], "name": 4273219747}, {"position": [6221.315438445174, 1238.452305678095], "name": 3356046292}, {"position": [-937.1845615504526, -467.4476943229422], "name": 1316623318}, {"position": [-4545.43456155676, -5596.647694321888], "name": 1729306105}, {"position": [-1845.7845615529322, -7481.6476943233565], "name": 103781336}, {"position": [2398.765438449857, 5790.502305677236], "name": 476555428}, {"position": [197.4154384498661, -928.4476943225428], "name": 1316623322}, {"position": [2785.9654384485566, -1175.4976943230133], "name": 1316623323}, {"position": [9121.765438443674, 13.302305676532455], "name": 4867879900}, {"position": [1801.3154384490804, -611.9976943228522], "name": 1316623328}, {"position": [6540.9154384497015, 857.6523056778029], "name": 475984865}, {"position": [1401.8154384487502, 2589.452305677753], "name": 1320104005}, {"position": [2073.6154384479732, -1173.597694322126], "name": 1316623332}, {"position": [-2816.5345615533965, -3044.6476943222224], "name": 479294057}, {"position": [-895.8345615539542, 4911.602305677221], "name": 476558313}, {"position": [1444.5154384432612, -1075.2476943221013], "name": 1316623339}, {"position": [2184.765438443037, -1350.4976943217173], "name": 1316623342}, {"position": [2436.8654384474553, 2514.3523056776476], "name": 1320104077}, {"position": [2496.665438449952, -1117.3976943226194], "name": 1316623346}, {"position": [776.9154384433818, -2109.7976943220688], "name": 476078931}, {"position": [213.36543844796552, -1155.3976943226019], "name": 1316623350}, {"position": [261.61543844693824, -1153.6976943222753], "name": 1316623352}, {"position": [-5460.0845615553335, -6608.397694321866], "name": 477639508}, {"position": [937.2154384479359, -1668.4976943217578], "name": 1316623357}, {"position": [-7341.534561554397, -3772.797694322705], "name": 3047854933}, {"position": [2630.015438448652, -983.4976943228213], "name": 1316623363}, {"position": [1903.1654384491503, -1205.9976943223915], "name": 1316623365}, {"position": [1662.565438444119, -1353.3476943230482], "name": 1316623368}, {"position": [1533.015438447194, -816.0976943223375], "name": 1316623371}, {"position": [-1158.18456155381, -466.44769432191424], "name": 1316623372}, {"position": [-5073.984561555279, -5770.0976943220185], "name": 477639693}, {"position": [2718.4154384443104, -1315.697694321827], "name": 1316623375}, {"position": [1015.31543844402, -1139.4976943233105], "name": 1316623192}, {"position": [1279.7154384429632, -1155.5976943231626], "name": 1316623385}, {"position": [2218.865438443629, -629.8976943224233], "name": 1316623387}, {"position": [2496.9654384463524, -412.8976943231777], "name": 1316623389}, {"position": [1283.0654384430318, -1215.447694322691], "name": 1316623391}, {"position": [170.9654384498549, -1145.9476943223024], "name": 1316623395}, {"position": [2729.2654384467596, -937.6476943234735], "name": 1316623398}, {"position": [6401.915438445371, -6136.347694322808], "name": 1765485347}, {"position": [943.915438448073, -1545.4476943226325], "name": 1316623404}, {"position": [-8975.384561551891, -7052.447694322339], "name": 874296367}, {"position": [-135.4345615567354, 3617.6523056781207], "name": 1316236380}, {"position": [1927.2654384465682, -1481.1976943231998], "name": 1316623410}, {"position": [190.51543844739172, -986.1976943223993], "name": 1316623411}, {"position": [-1906.9845615504732, 777.1023056779569], "name": 1316196995}, {"position": [-5019.184561554368, -5791.647694323387], "name": 477639734}, {"position": [-1122.2345615564677, -297.7476943222257], "name": 1316623417}, {"position": [2646.1154384449515, -898.647694322463], "name": 1316623419}, {"position": [2619.36543844854, 5039.852305676717], "name": 1324294376}, {"position": [-843.9345615514071, -1449.3976943228404], "name": 1316623423}, {"position": [1952.7654384461357, -1014.1476943221761], "name": 1316623425}, {"position": [-2881.984561554418, 1108.3023056777108], "name": 1316236811}, {"position": [999.3654384459205, -915.0976943228528], "name": 1316623429}, {"position": [2463.7154384450355, -873.3976943222643], "name": 1316623430}, {"position": [-184.28456155561435, -2064.247694322674], "name": 1316623432}, {"position": [1721.5654384443724, -857.4476943223885], "name": 1316623433}, {"position": [2022.2654384483008, -2095.897694323057], "name": 773662903}, {"position": [-1042.9345615534658, 3743.502305677993], "name": 481498188}, {"position": [1164.5654384437876, 5928.452305678178], "name": 476553960}, {"position": [-4597.184561554002, 8540.402305676764], "name": 3047470158}, {"position": [308.5154384478983, -1000.497694322533], "name": 1316623439}, {"position": [-4679.884561554104, 8423.952305676608], "name": 3047470160}, {"position": [2692.5654384442055, -381.1476943234027], "name": 1316623442}, {"position": [11225.315438444739, -4606.897694323208], "name": 3662230614}, {"position": [3548.215438449631, -8388.797694323102], "name": 4867880024}, {"position": [1862.9154384441904, -827.5476943229165], "name": 1316623454}, {"position": [-2643.984561551349, -3139.147694323441], "name": 479294061}, {"position": [-3193.2845615543215, 4207.852305677662], "name": 95679584}, {"position": [2370.8154384465274, 1331.1523056778185], "name": 76482747}, {"position": [-4701.334561552529, -5903.147694322542], "name": 1729306039}, {"position": [-9110.334561555079, 329.80230567680735], "name": 479302758}, {"position": [-3875.634561552488, -1146.5476943222086], "name": 479286375}, {"position": [1562.5154384437678, -701.3976943230915], "name": 1316623465}, {"position": [1820.0154384473421, -1185.3476943226583], "name": 1316623467}, {"position": [4896.865438446695, -5759.647694322467], "name": 495637616}, {"position": [2019.3154384458012, -1362.647694323371], "name": 1316623473}, {"position": [-609.1345615502064, -345.04769432253113], "name": 1316623476}, {"position": [-673.5345615567212, -631.3976943221888], "name": 1316623482}, {"position": [2849.9654384432915, -1045.4476943220216], "name": 1316623484}, {"position": [-6632.734561556219, -2026.897694323182], "name": 3355899006}, {"position": [-6366.084561555852, -2224.2976943225303], "name": 3355899007}, {"position": [2768.465438443002, 8991.052305677982], "name": 603837568}, {"position": [-6225.48456155414, -1990.2976943217964], "name": 3355899009}, {"position": [-6021.434561553462, -2155.8976943225616], "name": 3355899010}, {"position": [-6204.484561550316, -1831.8476943228745], "name": 3355899011}, {"position": [-6497.384561555464, -2313.0976943228634], "name": 3355899012}, {"position": [-96.93456155446256, -307.4976943224783], "name": 1316623495}, {"position": [862.2154384454461, 4659.602305677524], "name": 476553962}, {"position": [-79.93456155475087, 3335.952305677736], "name": 1316236383}, {"position": [-1399.4845615528106, -420.247694322029], "name": 1316623499}, {"position": [-2364.4845615535814, 698.7023056765906], "name": 481391756}, {"position": [2271.415438443114, -1073.6476943229434], "name": 1316623505}, {"position": [2469.1654384483286, -818.9976943224764], "name": 1316623506}, {"position": [1543.4654384449686, -596.0476943229764], "name": 1316623507}, {"position": [1633.1154384445767, -1478.0976943225], "name": 1316623189}, {"position": [304.6654384490921, -657.7976943233921], "name": 1316623512}, {"position": [-888.234561550405, -8392.5976943231], "name": 1883305117}, {"position": [1948.7654384491293, -627.9976943233123], "name": 1316623518}, {"position": [-935.884561556577, -8186.097694322214], "name": 1883305119}, {"position": [2407.415438447913, -1327.5476943217514], "name": 1316623520}, {"position": [1152.115438443957, -761.047694322059], "name": 1316623521}, {"position": [-7838.034561551411, -3987.347694321741], "name": 1990174510}, {"position": [1583.565438444623, -1112.1976943222478], "name": 1316623524}, {"position": [-765.0345615530796, 1432.7523056767432], "name": 639309882}, {"position": [-6664.884561551788, 646.1023056765214], "name": 3113807388}, {"position": [1170.9154384433873, -1536.2476943234783], "name": 1316623533}, {"position": [-4360.684561554252, -1705.347694322512], "name": 479286446}, {"position": [-6808.784561556536, 922.7023056777028], "name": 3113807389}, {"position": [1390.115438447026, -1307.197694321971], "name": 1316623541}, {"position": [-272.8345615565786, -1082.5976943227288], "name": 1316623543}, {"position": [-6490.33456155479, 2712.102305677533], "name": 857780853}, {"position": [1769.015438448207, -811.4976943218721], "name": 1316623545}, {"position": [4721.165438446917, -7693.197694322862], "name": 481506490}, {"position": [8833.115438449113, -5201.797694322608], "name": 3357316284}, {"position": [-938.5845615526023, -8110.647694323347], "name": 1883305150}, {"position": [2866.565438445434, -978.4476943224263], "name": 1316623553}, {"position": [4065.5654384451623, -7339.197694323118], "name": 1769172116}, {"position": [-934.4845615544273, -155.54769432313265], "name": 1316623555}, {"position": [-642.8345615532294, -494.84769432339704], "name": 1316623556}, {"position": [-8634.084561556676, 1299.8523056779732], "name": 93246664}, {"position": [-9194.834561554899, -4148.197694322064], "name": 1729320137}, {"position": [1168.215438447362, -708.2976943220132], "name": 1316623568}, {"position": [-1244.8845615509185, 1414.2523056772661], "name": 639308664}, {"position": [1503.5154384435145, -733.497694323404], "name": 1316623570}, {"position": [9607.265438447143, -3717.3476943230808], "name": 495771171}, {"position": [2700.2154384447863, -1003.2476943226953], "name": 1316623572}, {"position": [-1210.7845615503265, -1366.5476943227618], "name": 1316623573}, {"position": [772.4654384446694, -2318.5476943226035], "name": 1316623575}, {"position": [-7805.534561555305, 462.452305677985], "name": 479302873}, {"position": [8594.815438449643, -5523.447694322669], "name": 1784682703}, {"position": [-8049.784561556806, 1107.7023056778046], "name": 93246685}, {"position": [1356.6654384433718, -1644.3976943225634], "name": 1316623587}, {"position": [1968.0154384431603, -1366.5476943227618], "name": 1316623589}, {"position": [2138.2654384467514, -931.5476943232426], "name": 1316623591}, {"position": [-8825.534561552216, 862.9523056775668], "name": 93246696}, {"position": [-1563.4345615538336, 1800.3023056767374], "name": 639308668}, {"position": [-5335.884561553428, -1824.1976943222937], "name": 479292967}, {"position": [-4538.134561556717, 6550.35230567691], "name": 483103362}, {"position": [-433.5845615557332, -7304.547694323204], "name": 476671528}, {"position": [1826.3654384469419, -1630.397694322383], "name": 1316623602}, {"position": [-2036.4345615533352, -2794.0476943228987], "name": 95663349}, {"position": [-6590.884561553878, 1102.20230567748], "name": 3113807401}, {"position": [1024.3654384467504, -796.997694322954], "name": 1316623608}, {"position": [2459.7654384450607, -6511.647694322775], "name": 495629563}, {"position": [1726.1154384442534, -1380.297694321797], "name": 1316623612}, {"position": [1317.4154384429926, -900.4476943221817], "name": 1316623614}, {"position": [1289.5154384438001, -1415.147694322272], "name": 1316623616}, {"position": [1653.7154384437258, -1261.04769432267], "name": 1316623618}, {"position": [-400.9345615543225, 2484.5523056775673], "name": 1316236843}, {"position": [591.6654384492404, -2226.597694322763], "name": 1316623620}, {"position": [908.8654384470374, -1348.2976943226531], "name": 1316623621}, {"position": [-142.03456155570393, 4154.50230567771], "name": 1316236844}, {"position": [-725.3345615509943, -861.9476943234616], "name": 1316623630}, {"position": [6538.765438449445, -2788.49769432199], "name": 84489488}, {"position": [6436.865438445238, -2733.4976943222955], "name": 84489489}, {"position": [1138.7154384436826, -822.9476943224512], "name": 1316623634}, {"position": [11.91543844925036, -610.9976943218243], "name": 1316623636}, {"position": [7453.56543844622, -7433.647694321977], "name": 495645973}, {"position": [1299.6154384481429, -976.5976943221233], "name": 1316623638}, {"position": [-7469.784561550341, -213.8976943228954], "name": 479302935}, {"position": [-1318.834561551796, -250.847694323042], "name": 1316623640}, {"position": [-4939.534561550829, -7617.94769432278], "name": 850261273}, {"position": [7630.265438443474, -7392.097694323141], "name": 495645980}, {"position": [891.5654384438199, -1431.0976943221476], "name": 1316623646}, {"position": [2414.565438449756, -428.3476943225395], "name": 1316623647}, {"position": [2238.4154384482713, -1203.697694322159], "name": 1316623648}, {"position": [8097.165438449849, -6853.547694323225], "name": 495645990}, {"position": [-6639.134561552851, 242.65230567799279], "name": 3113807409}, {"position": [-1005.0345615510992, 497.0023056767303], "name": 475977000}, {"position": [1731.465438446378, -1311.4976943224833], "name": 1316623657}, {"position": [-5531.184561554881, -6827.147694322022], "name": 477639369}, {"position": [1376.8154384479203, -1366.3976943227851], "name": 1316623659}, {"position": [1468.6154384477845, -997.297694322441], "name": 1316623660}, {"position": [-8131.28456154999, -4152.14769432204], "name": 1928818226}, {"position": [968.4154384430599, -1063.147694322808], "name": 1316623663}, {"position": [-4370.68456155032, -1191.4976943234733], "name": 1315785479}, {"position": [7876.315438444692, -6480.597694322299], "name": 495646003}, {"position": [-438.4845615561517, -7234.297694322933], "name": 1883856710}, {"position": [8022.215438444391, -4132.947694323264], "name": 495772553}, {"position": [7587.065438443119, -6618.697694323217], "name": 495646010}, {"position": [-1562.8345615539274, -4418.697694323015], "name": 95386499}, {"position": [-167.38456154996584, -577.5476943217228], "name": 1316623677}, {"position": [1784.4154384434319, -983.9976943233353], "name": 1316623678}, {"position": [-945.2345615557078, -254.14769432252626], "name": 1316623679}, {"position": [-4808.134561550049, -7321.147694321795], "name": 477640461}, {"position": [-542.2845615541405, -1048.6976943226978], "name": 1316623687}, {"position": [-5083.834561553147, -6932.79769432209], "name": 477640011}, {"position": [-226.38456155021913, -747.2476943224393], "name": 1316623692}, {"position": [-593.8845615531818, -1233.0476943223089], "name": 1316623694}, {"position": [250.11543844755124, -649.0976943229754], "name": 1316623695}, {"position": [-3399.234561555886, -7371.947694322145], "name": 850261330}, {"position": [-206.98456155088252, -4198.547694322486], "name": 4715107668}, {"position": [2193.8654384499046, -723.4476943231982], "name": 1316623701}, {"position": [-8357.784561553672, -992.4476943226068], "name": 4715107670}, {"position": [514.2154384429887, -2302.397694322167], "name": 1316623703}, {"position": [263.1154384431511, -1395.3476943218134], "name": 1316623705}, {"position": [-4684.13456155048, -7049.697694322177], "name": 850261339}, {"position": [-237.1345615514997, -841.2976943219519], "name": 1316623708}, {"position": [2903.6154384485258, -770.1976943224054], "name": 1316623710}, {"position": [-7866.684561555814, 1521.0523056765624], "name": 4333704543}, {"position": [-7985.634561556764, 2478.102305676799], "name": 4333704544}, {"position": [-7662.4345615528, 2388.352305677799], "name": 4333704545}, {"position": [1736.865438445534, -1442.2476943227734], "name": 1316623714}, {"position": [-5755.034561552464, -6777.197694322723], "name": 420697447}, {"position": [1277.0654384439695, -1107.447694321806], "name": 1316623722}, {"position": [71.61543844347307, -1681.1976943227337], "name": 1316623723}, {"position": [2476.5654384495406, -745.1976943233518], "name": 1316623726}, {"position": [-6698.184561550135, -4550.697694321926], "name": 267198013}, {"position": [-921.084561554153, -423.8976943220507], "name": 1316623729}, {"position": [1463.26543844566, -820.6476943222185], "name": 1316623731}, {"position": [2533.715438445938, -1471.447694322947], "name": 1316623734}, {"position": [2329.015438448323, -1084.8476943223773], "name": 1316623736}, {"position": [-4901.6845615526, -5047.7476943218135], "name": 267198015}, {"position": [1063.3154384436239, -616.447694323341], "name": 1316623742}, {"position": [-443.2345615512645, -1061.1476943225284], "name": 1316623744}, {"position": [1049.0654384440745, -682.3976943231003], "name": 1316623745}, {"position": [-2821.7845615543524, -5696.047694321749], "name": 267198017}, {"position": [2361.0654384498275, -6420.3476943234255], "name": 1581175594}, {"position": [7941.465438449313, -7282.997694321835], "name": 495646795}, {"position": [-9145.434561553146, -3535.7976943224403], "name": 476681114}, {"position": [-6092.484561555977, -958.9476943219211], "name": 1469016698}, {"position": [4430.265438443826, 8158.002305677314], "name": 482734405}, {"position": [508.9654384491382, -1681.7476943220554], "name": 967330147}, {"position": [-7785.184561555525, 1920.4523056775001], "name": 4333704619}, {"position": [9977.16543844973, -409.9976943230388], "name": 85521110}, {"position": [4936.715438446981, -6561.097694323336], "name": 1205015989}, {"position": [4384.665438443846, -6594.947694322784], "name": 1785697718}, {"position": [-2947.284561550134, 1796.3523056767626], "name": 1316236873}, {"position": [5126.615438449278, -6763.6476943224725], "name": 1785697720}, {"position": [3354.965438447266, 272.2523056775117], "name": 1317670913}, {"position": [-9119.084561554302, -4371.047694322172], "name": 1928818250}, {"position": [5044.015438443239, -6613.847694323383], "name": 1205016001}, {"position": [5350.665438449198, -7075.347694321721], "name": 1205016002}, {"position": [7986.16543844588, -6455.197694322123], "name": 495646147}, {"position": [4955.3654384482115, -6990.247694321994], "name": 1785697732}, {"position": [-390.73456155591657, 2932.052305677502], "name": 639308705}, {"position": [8259.665438444586, -8237.747694321839], "name": 602360641}, {"position": [-8166.1845615528255, -992.1476943226537], "name": 103896524}, {"position": [3167.5154384487314, 192.95230567806243], "name": 1317670957}, {"position": [4388.265438443284, -7063.597694322965], "name": 1785697742}, {"position": [5288.015438445371, -6872.697694323193], "name": 1785697745}, {"position": [4560.565438445963, -6746.697694323345], "name": 1785697747}, {"position": [-4001.534561552944, 1567.602305676985], "name": 4705342936}, {"position": [-9095.83456155616, -4410.797694323065], "name": 1928818255}, {"position": [6577.065438449381, -5100.197694321906], "name": 63305187}, {"position": [7016.21543844766, -3017.84769432345], "name": 84489700}, {"position": [3632.0654384454087, 6796.952305677451], "name": 856909369}, {"position": [-1743.2845615559245, -8122.497694323272], "name": 103831022}, {"position": [7967.315438449418, -6315.597694323216], "name": 495646197}, {"position": [506.3654384471761, 4544.352305677179], "name": 1316471721}, {"position": [4347.815438443093, -4717.447694321919], "name": 554685947}, {"position": [-5698.234561556603, -5152.097694322677], "name": 477615613}, {"position": [-6138.334561555325, -1004.6476943230687], "name": 1469016599}, {"position": [8059.115438449282, -6909.147694322826], "name": 495646219}, {"position": [1565.165438449867, 3879.2023056775092], "name": 1316471725}, {"position": [289.6154384472993, -4229.19769432184], "name": 4676163090}, {"position": [244.26543844668913, -4317.397694322267], "name": 4676163097}, {"position": [4602.165438448936, 4140.302305676968], "name": 1319204487}, {"position": [2458.165438447679, -1248.9476943233767], "name": 1316623202}, {"position": [-5309.834561550986, -4891.597694323124], "name": 477615647}, {"position": [-8227.484561551535, 1761.8023056780175], "name": 2629533646}, {"position": [1565.9154384479734, -2435.9976943220117], "name": 75355691}, {"position": [183.71543844608595, -2509.9976943234738], "name": 75355692}, {"position": [-316.33456155333306, -2526.047694322742], "name": 75355694}, {"position": [-6153.134561550643, -2151.3476943226806], "name": 4676163121}, {"position": [-4997.8345615500075, -4418.9476943223835], "name": 477615666}, {"position": [5339.165438449811, 7784.252305677697], "name": 4573378105}, {"position": [3218.815438444267, 2667.002305678068], "name": 1320104009}, {"position": [5197.065438444781, 8504.802305678182], "name": 4573378108}, {"position": [5258.515438448796, 7878.9523056777], "name": 4573378109}, {"position": [5341.165438444761, 8063.302305677311], "name": 4573378110}, {"position": [-1097.1845615515008, -1719.7976943226222], "name": 1316623285}, {"position": [5078.1154384438305, 8158.85230567659], "name": 4573378112}, {"position": [5310.115438447838, 7994.0023056774835], "name": 4573378113}, {"position": [5110.015438447135, 8210.852305676752], "name": 4573378114}, {"position": [5146.015438448614, 8270.902305676842], "name": 4573378115}, {"position": [5405.715438449477, 8080.102305678239], "name": 4573378116}, {"position": [5179.615438443363, 8330.60230567817], "name": 4573378117}, {"position": [4208.415438448299, 9135.602305677892], "name": 4573378118}, {"position": [3918.5654384468194, 8788.052305677142], "name": 4573378119}, {"position": [3412.515438448338, 9240.302305677516], "name": 4573378121}, {"position": [2641.7654384474076, -1146.1976943234476], "name": 1316623287}, {"position": [3961.815438444205, 8839.902305677328], "name": 4573378124}, {"position": [-4828.184561553428, -3712.597694322639], "name": 477615693}, {"position": [3999.1154384466654, 8884.652305678032], "name": 4573378126}, {"position": [3419.8154384483814, 9225.9523056768], "name": 4573378127}, {"position": [4134.215438448053, 9046.652305677582], "name": 4573378128}, {"position": [-5959.984561556553, -7711.747694322923], "name": 874287746}, {"position": [-5003.984561554375, -6671.647694322047], "name": 477640277}, {"position": [3604.665438444954, 9291.102305677867], "name": 4573378134}, {"position": [4051.065438446244, 8946.952305677769], "name": 4573378135}, {"position": [3511.115438449508, 9268.302305677878], "name": 4573378136}, {"position": [4067.815438446587, 9086.85230567663], "name": 4573378137}, {"position": [4027.165438444058, 9037.252305677868], "name": 4573378138}, {"position": [3983.565438446135, 8987.102305678007], "name": 4573378139}, {"position": [3932.8154384463687, 8923.702305677849], "name": 4573378140}, {"position": [-4653.334561552924, -3455.547694322547], "name": 477615709}, {"position": [3874.315438444853, 8814.40230567776], "name": 4573378142}, {"position": [3503.41543844479, 9061.852305677576], "name": 4573378143}, {"position": [-4933.3845615535665, -6474.44769432326], "name": 477640288}, {"position": [3541.915438447063, 9154.002305677977], "name": 4573378145}, {"position": [5920.015438448445, 7199.652305677872], "name": 654382690}, {"position": [1468.6154384477845, 1509.7523056777363], "name": 1316471739}, {"position": [3663.665438445207, 9299.002305677817], "name": 4573378148}, {"position": [5886.3654384495585, 7099.602305677521], "name": 654382693}, {"position": [-4763.934561552219, -5880.547694323112], "name": 477640296}, {"position": [4026.6654384453204, 8917.652305678203], "name": 4573378153}, {"position": [-4455.834561554184, -3157.9976943234556], "name": 477615722}, {"position": [-2562.834561551597, 1523.4523056779635], "name": 1316236399}, {"position": [4394.365438443515, 4997.90230567676], "name": 1324295101}, {"position": [55.86543844771086, -4955.097694322674], "name": 1887596136}, {"position": [395.96543844311327, 6008.50230567751], "name": 477445174}, {"position": [5799.465438443008, 6375.052305678253], "name": 654382714}, {"position": [4952.115438449311, 5385.1023056772365], "name": 1324295104}, {"position": [-8821.984561556917, 4366.652305677121], "name": 71128708}, {"position": [-4326.5345615566275, -2324.3476943228816], "name": 479293261}, {"position": [1660.915438449706, 1596.952305677135], "name": 1316471745}, {"position": [8159.7154384454025, -6054.14769432322], "name": 1771402888}, {"position": [-7252.434561550558, 7687.002305678092], "name": 623406700}, {"position": [4436.915438446931, 1922.052305676658], "name": 1319204491}, {"position": [7989.315438443611, -7188.297694321833], "name": 495646348}, {"position": [-7368.384561551977, -6673.197694322397], "name": 477636653}, {"position": [5159.31543844772, 1725.252305677216], "name": 1319204494}, {"position": [7856.015438449049, -7160.347694322056], "name": 495646351}, {"position": [4968.815438445517, 2159.4523056780445], "name": 1319204501}, {"position": [-660.8845615545533, -3012.3476943231253], "name": 4810815126}, {"position": [8546.115438448964, -7071.397694321746], "name": 495769239}, {"position": [5021.665438448508, 1706.1523056778328], "name": 1319204505}, {"position": [4832.0654384497175, 2014.252305677644], "name": 1319204510}, {"position": [4918.915438445027, 1800.2023056773453], "name": 1319204514}, {"position": [4671.165438445258, 2149.6023056766235], "name": 1319204515}, {"position": [-5621.684561553764, 3310.1523056782157], "name": 857780856}, {"position": [4694.615438445737, 1862.5523056776672], "name": 1319204522}, {"position": [-2768.73456155613, -323.7476943223072], "name": 481392303}, {"position": [-4451.284561554303, 803.9023056767292], "name": 1315785219}, {"position": [4428.465438444107, 1773.752305677334], "name": 1319204529}, {"position": [5607.215438445223, 1609.1523056775968], "name": 1319204548}, {"position": [1860.1154384469964, -997.5476943218098], "name": 1316623305}, {"position": [6295.165438444883, -6338.097694323253], "name": 1765488318}, {"position": [4750.115438447721, 2035.2523056779148], "name": 1319204543}, {"position": [10781.815438448917, 3767.352305677818], "name": 4867879883}, {"position": [6398.565438445303, -6206.797694321864], "name": 1765488324}, {"position": [5543.965438448595, 1511.2523056775017], "name": 1319204550}, {"position": [5042.715438449363, 1764.6023056769877], "name": 1319204551}, {"position": [4477.365438447123, 2170.0523056775723], "name": 1319204555}, {"position": [3218.815438444267, 2726.8023056770116], "name": 1319204556}, {"position": [7271.665438445041, 2388.402305676607], "name": 4063114957}, {"position": [-7225.934561553515, -3454.647694322688], "name": 476675195}, {"position": [791.6654384487742, 3391.8023056767056], "name": 1316471757}, {"position": [7206.015438448787, 2233.102305677193], "name": 4063114961}, {"position": [4958.165438445405, 1908.7523056775524], "name": 1319204565}, {"position": [-4000.534561555469, 2862.152305677768], "name": 624784002}, {"position": [4440.465438449337, 4060.3023056782204], "name": 1319204570}, {"position": [5966.015438445993, 859.5023056781059], "name": 3356046287}, {"position": [5228.9654384480855, 1841.152305678051], "name": 1319204572}, {"position": [-3147.2345615526365, 8808.552305676898], "name": 622622429}, {"position": [1631.365438448995, -85.49769432342202], "name": 475977438}, {"position": [8296.11543844777, 4032.202305676691], "name": 475985632}, {"position": [4657.715438447951, 2057.8523056773433], "name": 1319204579}, {"position": [4409.715438448813, -6687.097694323185], "name": 3629684453}, {"position": [4708.715438447087, 2564.752305676876], "name": 1319204583}, {"position": [5184.015438445044, 1766.3523056778986], "name": 1319204584}, {"position": [-5242.3845615550135, 8641.802305676905], "name": 622622441}, {"position": [5129.81543844404, 1665.6023056782487], "name": 1319204586}, {"position": [-5953.284561556416, 7199.0023056773825], "name": 622622443}, {"position": [5046.665438449338, 1956.952305677717], "name": 1319204588}, {"position": [5339.015438444505, 2024.3023056778497], "name": 1319204589}, {"position": [4610.215438447085, 4059.052305677824], "name": 1319204590}, {"position": [-542.2345615500035, -7424.647694323383], "name": 1887596157}, {"position": [-5702.684561555316, -7086.447694321762], "name": 477640432}, {"position": [6281.215438448839, 1190.9523056772287], "name": 3356046291}, {"position": [1059.9154384465237, -1860.3976943225575], "name": 3117897473}, {"position": [-8107.984561554815, -4383.097694322658], "name": 1172174594}, {"position": [-7922.834561554737, -4112.6476943222915], "name": 1172174596}, {"position": [10009.815438444037, 2118.502305677339], "name": 4867879894}, {"position": [2933.065438448068, 3131.402305676545], "name": 1320103554}, {"position": [-1745.5345615502438, 8401.452305676572], "name": 622622483}, {"position": [-1668.8345615563094, 8367.052305677802], "name": 622622484}, {"position": [-7007.884561552657, 8384.602305676835], "name": 623417110}, {"position": [-323.78456155157664, 5609.2523056765485], "name": 1324295129}, {"position": [1854.9654384472092, 3819.5523056767656], "name": 1320103556}, {"position": [9016.315438444166, 66.90230567762967], "name": 4867879898}, {"position": [3071.7154384447554, 7909.8523056782], "name": 622622494}, {"position": [3346.5154384444418, 8021.502305677331], "name": 622622495}, {"position": [3820.8654384490615, 8313.752305676659], "name": 622622496}, {"position": [6226.815438445499, 6672.402305676784], "name": 1319641071}, {"position": [178.46543844513008, 4663.602305678083], "name": 1316471772}, {"position": [-1537.784561556066, 800.7023056766371], "name": 1316196972}, {"position": [-8547.4345615566, 8645.452305676927], "name": 623417131}, {"position": [1635.6654384495073, -441.4476943228607], "name": 475977519}, {"position": [-8758.384561552646, 8698.002305678187], "name": 623417146}, {"position": [3015.415438447633, 5028.35230567733], "name": 1324295135}, {"position": [-8975.48456155306, -2307.797694323099], "name": 476682044}, {"position": [-485.0345615565743, 3740.1023056773397], "name": 1316236406}, {"position": [7871.765438444811, 2827.9523056777834], "name": 654391102}, {"position": [-7994.184561553652, -96.54769432287935], "name": 1469016712}, {"position": [7893.415438445572, -7262.297694323294], "name": 495646546}, {"position": [9086.115438449837, -52.19769432329713], "name": 4867879907}, {"position": [-7981.784561550853, -1392.2976943234744], "name": 848254822}, {"position": [-7173.584561556368, -5806.097694321721], "name": 4708397772}, {"position": [-8552.784561551618, -1475.6976943228751], "name": 1891528343}, {"position": [-312.33456155632666, 1471.9023056777303], "name": 1831147405}, {"position": [42.665438449773774, 1266.00230567675], "name": 1831147407}, {"position": [-549.7345615523841, 1508.6023056767317], "name": 1831147413}, {"position": [3737.9154384495905, 3861.7023056772837], "name": 4198258583}, {"position": [-507.3345615542735, 1376.7523056777975], "name": 1831147423}, {"position": [4506.965438444866, 4804.902305677317], "name": 1324295152}, {"position": [-6061.384561554916, 2479.3023056766115], "name": 857780858}, {"position": [540.5154384447997, -1538.2976943225658], "name": 4273214077}, {"position": [9359.96543844908, -7563.79769432236], "name": 91207598}, {"position": [-3579.884561553115, 8940.902305678123], "name": 622622645}, {"position": [-5561.6345615518985, 1895.8523056777922], "name": 479319990}, {"position": [-8927.434561556423, -3678.6476943220237], "name": 479442881}, {"position": [1591.9154384462786, 1158.6523056781316], "name": 475977667}, {"position": [-4011.3845615508126, -1302.947694322043], "name": 1315785501}, {"position": [1607.3154384486088, 1235.1523056768342], "name": 475977669}, {"position": [3077.9654384431865, -7973.347694322896], "name": 93466273}, {"position": [3523.1154384476326, 9103.152305677042], "name": 4573378144}, {"position": [-2346.384561555226, 1699.802305678233], "name": 1316198732}, {"position": [469.36543844822154, -1125.8976943224752], "name": 3485520292}, {"position": [2951.8154384433615, -545.3976943226024], "name": 1317671247}, {"position": [712.9154384486469, 714.5023056782662], "name": 475977684}, {"position": [1576.0654384493478, 677.8023056774884], "name": 475977686}, {"position": [-8434.634561552912, -968.3476943234126], "name": 477602810}, {"position": [-555.0845615545086, -7310.597694322852], "name": 1887596197}, {"position": [-6604.7845615528895, -1509.3976943223452], "name": 1469016717}, {"position": [761.3654384499569, 4279.202305676577], "name": 476559329}, {"position": [7924.165438446096, -7338.097694322698], "name": 495646690}, {"position": [3234.5154384429975, -300.54769432297235], "name": 1548518395}, {"position": [7883.565438447704, -7482.097694323286], "name": 495646692}, {"position": [7195.815438443276, 2908.70230567819], "name": 654391101}, {"position": [-8957.084561551199, -797.6476943234445], "name": 5002541034}, {"position": [-4006.2845615551623, -3460.9476943234795], "name": 1889249305}, {"position": [434.5154384495231, -3921.2476943220054], "name": 4858951665}, {"position": [2165.515438449006, 4213.002305677449], "name": 476559347}, {"position": [1537.4654384459063, 1234.1023056769984], "name": 1316471807}, {"position": [3491.2654384484654, 4550.6023056773865], "name": 476559359}, {"position": [7110.315438445979, -7460.4976943231095], "name": 624646145}, {"position": [-1219.6845615548568, 3392.5023056777804], "name": 481499142}, {"position": [2283.7154384447444, 641.1023056767107], "name": 475977736}, {"position": [3197.815438447549, 571.4023056775375], "name": 475977737}, {"position": [-7651.584561550351, -3708.8476943232254], "name": 5021317130}, {"position": [7736.015438446486, -5752.197694322447], "name": 63312209}, {"position": [-7977.384561556278, -4192.3476943228625], "name": 5021317138}, {"position": [-771.6345615520481, -1067.4476943233203], "name": 475975342}, {"position": [-1595.734561554707, -2371.847694321971], "name": 845390852}, {"position": [-8593.684561553517, -4594.5976943233545], "name": 5021317146}, {"position": [-9058.8345615501, -4300.997694322461], "name": 5021317148}, {"position": [-327.83456155272006, 6657.952305676673], "name": 856909573}, {"position": [6883.815438449403, -3106.897694323152], "name": 602360664}, {"position": [-8869.384561556615, -4420.547694323318], "name": 5021317153}, {"position": [-7612.234561555908, -3648.547694321991], "name": 5021317154}, {"position": [-8601.834561552834, -4305.197694321805], "name": 5021317155}, {"position": [-8256.884561554045, -4241.747694322839], "name": 5021317156}, {"position": [-8732.834561556047, -4196.347694323421], "name": 5021317158}, {"position": [-8434.984561553449, -4234.29769432282], "name": 5021317160}, {"position": [-8211.784561552804, -4102.997694323207], "name": 5021317164}, {"position": [3713.7654384480356, 4634.502305677302], "name": 476559405}, {"position": [-7318.0845615539165, -3220.2976943231934], "name": 5021317166}, {"position": [-7568.734561552048, -3562.3476943218434], "name": 5021317167}, {"position": [3067.0654384437057, 5187.852305677865], "name": 1324295176}, {"position": [1992.2154384488522, 3213.6523056767173], "name": 1320103603}, {"position": [6967.065438445275, -6609.697694322847], "name": 3121830238}, {"position": [1055.0654384431368, 1141.3023056778825], "name": 639309879}, {"position": [-7435.484561554517, -3551.547694321755], "name": 5021317177}, {"position": [-7703.184561556498, -3966.447694322639], "name": 5021317178}, {"position": [-704.0845615549074, 1680.3523056765357], "name": 639309883}, {"position": [-8061.534561555562, -4507.497694323348], "name": 5021317180}, {"position": [-7282.484561550007, -3621.097694322728], "name": 5021317181}, {"position": [-347.7345615507943, 1723.602305677474], "name": 639309886}, {"position": [-8136.684561556251, -1832.197694323412], "name": 1890732891}, {"position": [934.1654384442677, 2100.652305676576], "name": 1316471819}, {"position": [-8429.134561552586, -1484.0476943227543], "name": 1891590939}, {"position": [3393.465438449539, 4071.7523056770233], "name": 1320103607}, {"position": [-4758.484561556032, 1015.3023056780341], "name": 481397090}, {"position": [1072.915438449229, 1333.7523056780042], "name": 639309902}, {"position": [1649.1154384468132, -1410.1976943230454], "name": 1316623373}, {"position": [307.16543844988564, 7801.352305676801], "name": 622622486}, {"position": [5094.765438443005, -6951.197694322175], "name": 620136803}, {"position": [-8675.184561553806, -6233.397694321851], "name": 638736468}, {"position": [-3.8345615536172772, 5895.452305678006], "name": 1324295182}, {"position": [-2176.584561553341, 3450.2023056770527], "name": 1316236985}, {"position": [-3067.034561553328, 2154.2023056770886], "name": 1316198756}, {"position": [-8291.434561556343, -5087.547694323292], "name": 5021317210}, {"position": [-9011.08456155697, -4865.397694322482], "name": 5021317211}, {"position": [-8967.134561551404, -4782.347694321842], "name": 5021317212}, {"position": [-402.534561551704, 1504.902305677902], "name": 3356022885}, {"position": [-9283.63456155523, -4555.747694322321], "name": 5021317222}, {"position": [-641.9845615539543, 1170.3023056774953], "name": 3356022888}, {"position": [-581.3845615563196, 1147.8523056780432], "name": 3356022889}, {"position": [-4404.284561552175, -4629.6476943226135], "name": 3836778602}, {"position": [-7977.684561552678, -4379.2976943226595], "name": 5021317227}, {"position": [-7743.68456155372, -4027.347694322003], "name": 5021317228}, {"position": [4624.415438449603, 3908.4023056776828], "name": 4198258802}, {"position": [-6901.534561556844, -2876.1476943230946], "name": 1890502811}, {"position": [-1936.9845615528902, -2278.197694321804], "name": 152847380}, {"position": [-4116.28456155455, -3688.397694322276], "name": 476548799}, {"position": [-5649.634561549988, -6937.847694322485], "name": 477640830}, {"position": [11347.515438444589, -4688.49769432289], "name": 1780414592}, {"position": [832.515438446535, -411.3976943234121], "name": 2460670081}, {"position": [10773.115438446723, -5196.64769432282], "name": 1780414601}, {"position": [9238.115438449768, -5512.297694322044], "name": 1780414602}, {"position": [3885.4654384437026, -4706.997694322368], "name": 893859979}, {"position": [11413.515438448485, -4554.497694321924], "name": 1780414604}, {"position": [3992.065438445991, -4802.4476943222535], "name": 893859981}, {"position": [-1796.1845615559469, -1619.8476943234396], "name": 481433742}, {"position": [-2197.18456155249, -560.6476943231797], "name": 1315785235}, {"position": [9243.615438442986, -5175.997694323087], "name": 1780414611}, {"position": [11371.515438447943, -4631.097694321796], "name": 1780414612}, {"position": [-2951.3845615554146, -5201.197694322701], "name": 1315678574}, {"position": [2223.26543844531, -6283.197694322951], "name": 602364054}, {"position": [2351.015438449622, 8870.752305677242], "name": 1404618499}, {"position": [10539.765438444703, -5515.3976943227435], "name": 1780414618}, {"position": [9278.215438449422, -5221.947694321827], "name": 1780414619}, {"position": [-7499.184561552852, -1307.3976943225318], "name": 479298586}, {"position": [-7497.784561550702, -3382.647694323282], "name": 5021317169}, {"position": [-4598.034561553277, 1791.1523056781675], "name": 385114569}, {"position": [-5668.684561555892, -6566.697694323054], "name": 1887877284}, {"position": [10889.41543844868, -5020.047694323182], "name": 1780414630}, {"position": [11075.565438446232, -4650.797694322861], "name": 1780414633}, {"position": [11178.965438446652, -4956.14769432251], "name": 1780414636}, {"position": [11220.26543844612, -4938.397694322915], "name": 1780414637}, {"position": [8716.61543844482, -5652.797694322587], "name": 1771400904}, {"position": [892.2654384448947, -854.3476943234651], "name": 4273351027}, {"position": [8616.0154384487, -5282.0476943225], "name": 1784682678}, {"position": [2277.4154384492817, 3327.652305676665], "name": 1320103625}, {"position": [2361.815438447934, -919.2976943221964], "name": 1316623497}, {"position": [2231.1654384452595, 1213.452305677265], "name": 475977913}, {"position": [8076.415438445394, -4553.147694322135], "name": 1784682682}, {"position": [2479.1154384473657, -2700.347694322147], "name": 1888393403}, {"position": [8539.61543844406, -5303.997694323215], "name": 1784682684}, {"position": [-8360.334561551497, 6477.652305678205], "name": 601661130}, {"position": [-6562.634561554149, -5870.497694322907], "name": 443291839}, {"position": [-7987.734561552884, -4609.697694322179], "name": 850278592}, {"position": [-3011.234561554943, 1291.1523056775563], "name": 1316237003}, {"position": [-8954.98456155508, 2559.602305677089], "name": 71129462}, {"position": [1500.7654384433522, 3030.5023056769187], "name": 1316471841}, {"position": [8908.415438448003, -6120.9976943228385], "name": 4345393150}, {"position": [-8278.684561553007, -4192.647694322815], "name": 1990203594}, {"position": [-5802.7845615526985, -7347.997694322928], "name": 1887877323}, {"position": [-5626.034561551307, -7392.547694323071], "name": 1887877324}, {"position": [-8604.284561556597, -4259.647694322411], "name": 1990203597}, {"position": [-6728.284561553721, -5931.6476943234165], "name": 4708397783}, {"position": [-8297.084561554868, -4682.84769432259], "name": 1990203599}, {"position": [-8719.334561554604, -216.4976943230812], "name": 1572286538}, {"position": [8143.815438444335, -4492.997694322654], "name": 1784682709}, {"position": [2477.465438445847, -303.0476943219895], "name": 1317671082}, {"position": [11166.665438445023, -4848.747694323308], "name": 476914724}, {"position": [6659.465438445977, -6048.547694321726], "name": 1771400911}, {"position": [7998.2654384451735, -4457.847694322226], "name": 1784682716}, {"position": [-5659.884561552531, 1652.3523056779509], "name": 483110054}, {"position": [1415.065438443719, 2648.652305676791], "name": 1320103632}, {"position": [2293.9654384472874, -2679.6476943218295], "name": 1888393442}, {"position": [2747.1154384457463, -5957.2976943229605], "name": 93466414}, {"position": [8692.165438446864, -5490.797694323035], "name": 1784682724}, {"position": [3440.8154384450995, 2696.652305678171], "name": 4868839655}, {"position": [693.6154384433735, 4291.552305677015], "name": 599406827}, {"position": [-6293.734561552355, -1989.5476943219137], "name": 1890502815}, {"position": [-1675.184561555909, 6180.052305676753], "name": 482731178}, {"position": [320.46543844899134, 3042.352305676843], "name": 599406834}, {"position": [3494.0654384456593, 1364.60230567792], "name": 1317671355}, {"position": [8939.115438444389, -5554.397694321978], "name": 1771400916}, {"position": [6056.365438446675, -8279.19769432306], "name": 1769171987}, {"position": [3048.4654384466126, 2649.55230567665], "name": 4875052074}, {"position": [-6694.8345615500675, -7113.897694322802], "name": 477640961}, {"position": [-6130.984561551145, -3540.647694322274], "name": 1315678593}, {"position": [-7322.934561550199, -1569.6976943218033], "name": 1890502816}, {"position": [-944.934561552202, 490.10230567780866], "name": 599406978}, {"position": [-7027.334561556131, 1655.4523056768744], "name": 654575691}, {"position": [3217.315438448054, 117.45230567683507], "name": 1317670985}, {"position": [-6504.284561550832, -6655.497694323387], "name": 477640984}, {"position": [-4843.034561552884, -5475.197694321921], "name": 477639727}, {"position": [3800.065438447575, 2744.6023056771905], "name": 4252530974}, {"position": [-712.434561556563, -804.4976943217819], "name": 1316623408}, {"position": [2240.765438443759, -547.897694323396], "name": 475978022}, {"position": [1936.2654384451616, -1631.7976943227563], "name": 475978025}, {"position": [-4777.134561550156, -2980.547694322766], "name": 477616429}, {"position": [-1635.4845615538238, -3449.9976943234146], "name": 1889255133}, {"position": [9374.21543844863, -1066.0476943229469], "name": 115005745}, {"position": [1860.0154384458278, -441.64769432342155], "name": 1317670986}, {"position": [548.1154384483489, 2145.2523056773034], "name": 1320103646}, {"position": [1289.765438443169, -1647.1976943233103], "name": 1316623413}, {"position": [-2627.134561556943, -2322.947694322508], "name": 1315785241}, {"position": [-4676.034561555298, 6107.90230567737], "name": 971168073}, {"position": [-6595.134561550253, 6395.0523056774955], "name": 971168076}, {"position": [-5750.98456155132, 6139.552305677754], "name": 971168079}, {"position": [-2724.6345615523637, 2230.052305677077], "name": 1316198736}, {"position": [-2586.6345615526143, 1768.3023056775937], "name": 1316198738}, {"position": [-2853.6345615535197, 1984.5023056781486], "name": 1316198740}, {"position": [-2702.234561553496, 1968.40230567652], "name": 1316198742}, {"position": [-2036.234561550998, -2234.0476943227827], "name": 479284103}, {"position": [-2258.2345615518307, 1861.8023056777843], "name": 1316198744}, {"position": [-1082.9845615560885, 3664.0023056779823], "name": 1316236424}, {"position": [-2761.6345615513183, 2159.5023056768523], "name": 1316198747}, {"position": [-2439.7845615524716, 2077.25230567668], "name": 1316198748}, {"position": [10809.665438443972, 1857.8523056778095], "name": 115005789}, {"position": [-1329.4345615548764, -3686.647694323142], "name": 479279454}, {"position": [3683.4654384492183, -5631.8476943229], "name": 495636197}, {"position": [-2978.5345615565006, 2310.202305677578], "name": 1316198754}, {"position": [6982.065438450036, -6938.947694322906], "name": 3121830244}, {"position": [-2818.584561552484, 2051.152305677206], "name": 1316198759}, {"position": [-3099.2345615530326, 2087.252305678078], "name": 1316198763}, {"position": [-2457.784561556764, 851.6023056781563], "name": 1316198765}, {"position": [6263.1154384433785, 1694.1023056773474], "name": 1563362026}, {"position": [-2796.1345615565847, 2093.9023056776305], "name": 1316198767}, {"position": [-2742.834561551888, 1439.7523056768337], "name": 1316198769}, {"position": [-2599.8845615546884, 2095.1523056780275], "name": 1316198771}, {"position": [-2884.0345615535057, 1926.6523056771234], "name": 1316198773}, {"position": [3242.2154384477153, 1179.4023056772573], "name": 1317671261}, {"position": [-2567.434561555615, 2146.552305678284], "name": 1316198775}, {"position": [-1258.5845615546987, 2846.0023056773307], "name": 1316236425}, {"position": [3912.0654384490194, -5258.047694322699], "name": 4451359097}, {"position": [5167.21543844767, 3938.4023056765473], "name": 476559738}, {"position": [-347.5345615555625, 6015.352305677624], "name": 1324295231}, {"position": [-2315.684561551734, 2245.1023056770937], "name": 1316198781}, {"position": [-7705.134561554416, 2240.7523056777736], "name": 71129470}, {"position": [-2798.83456155261, 1934.002305677751], "name": 1316198784}, {"position": [7475.065438448781, 4038.85230567802], "name": 476559746}, {"position": [3479.165438449172, -5392.797694321772], "name": 1721497987}, {"position": [-2637.884561551118, 2034.9523056779617], "name": 1316198788}, {"position": [10552.215438444535, 5945.852305677235], "name": 501838913}, {"position": [-2393.7845615549236, 1138.1023056777906], "name": 1316198793}, {"position": [-2462.8345615553826, 2028.7023056777543], "name": 1316198794}, {"position": [-2776.284561555542, 2131.6523056782444], "name": 1316198796}, {"position": [-502.1345615503492, 5714.052305677342], "name": 1324295234}, {"position": [-2557.184561553072, 1830.2523056767939], "name": 1316198798}, {"position": [-3024.1345615564796, 2232.2023056773332], "name": 1316198800}, {"position": [-2327.484561554627, 1289.652305677791], "name": 1316198801}, {"position": [7456.915438446287, 2677.7023056769876], "name": 2629549324}, {"position": [-2523.0345615554484, 1902.0523056774152], "name": 1316198803}, {"position": [8868.415438449518, -5313.247694322953], "name": 1771400942}, {"position": [-159.53456155415324, 3215.5023056770206], "name": 1316236426}, {"position": [-2306.4845615508034, 1781.5523056778916], "name": 1316198811}, {"position": [8987.865438449206, -11.447694323152291], "name": 602667420}, {"position": [-4985.584561552514, -1379.5476943219142], "name": 479292469}, {"position": [5105.465438447254, 2109.5523056775532], "name": 1319204493}, {"position": [-2733.084561555188, 2213.9023056766405], "name": 1316198815}, {"position": [-7248.53456155472, -1103.4476943230231], "name": 1469016732}, {"position": [8880.51543844881, -14.447694322683446], "name": 602667419}, {"position": [-1465.184561553201, -550.3976943224131], "name": 599407018}, {"position": [4275.015438444996, -4671.197694323226], "name": 1721498027}, {"position": [-6402.284561552562, -6335.397694321899], "name": 477641134}, {"position": [-2431.434561550816, 2336.3023056770517], "name": 1316198813}, {"position": [-1151.184561550167, 63.85230567751421], "name": 599407025}, {"position": [5163.815438443464, 2092.702305677818], "name": 481500915}, {"position": [9353.115438443638, -3715.5976943221704], "name": 63302403}, {"position": [815.6154384479919, -931.6476943226348], "name": 4273347006}, {"position": [6964.165438446912, 2285.9523056766307], "name": 654391743}, {"position": [-5427.084561553385, 7071.252305676623], "name": 423833602}, {"position": [834.9154384461599, -867.1976943226412], "name": 4273347013}, {"position": [-1689.3845615513214, -6395.147694322034], "name": 479279560}, {"position": [8504.815438449497, 5276.102305677099], "name": 475985639}, {"position": [4917.865438443414, 8714.952305677314], "name": 714081275}, {"position": [2503.9654384499954, -1492.6976943225868], "name": 1316623437}, {"position": [-387.5345615540482, 3521.302305676599], "name": 1316237048}, {"position": [897.2654384464818, -990.4976943229116], "name": 4273347031}, {"position": [-4705.784561551241, 8601.202305676736], "name": 3047470159}, {"position": [1498.915438446602, 7057.252305678219], "name": 623414114}, {"position": [-405.48456155420354, 9046.452305677021], "name": 4687869271}, {"position": [3317.2154384430996, -5830.597694322038], "name": 1721498088}, {"position": [3928.1154384482875, -4515.897694322035], "name": 1721498093}, {"position": [3425.6154384451065, -5292.547694322636], "name": 1721498095}, {"position": [6444.765438445188, 6811.002305678216], "name": 654379432}, {"position": [7547.665438444539, 2158.4523056770167], "name": 654391797}, {"position": [5442.315438443757, 1348.402305676899], "name": 482728439}, {"position": [3179.06543844515, -5710.747694323004], "name": 1721498106}, {"position": [-8270.43456155252, -2547.3476943229657], "name": 1890769403}, {"position": [-8280.834561553263, -2588.597694321848], "name": 1890769405}, {"position": [-3346.7845615504643, -4143.697694322767], "name": 1315785187}, {"position": [-8378.38456155282, -2477.797694321993], "name": 1890769411}, {"position": [-8371.98456155619, -2528.597694322343], "name": 1890769413}, {"position": [-8336.484561553447, -2551.947694323431], "name": 1890769415}, {"position": [-8390.234561552745, -2516.5476943218578], "name": 1890769416}, {"position": [-8310.484561555142, -2521.547694323445], "name": 1890769417}, {"position": [-8268.084561557032, -2597.047694322896], "name": 1890769419}, {"position": [-8347.984561552836, -2497.39769432189], "name": 1890769420}, {"position": [-8366.18456155236, -2485.647694323134], "name": 1890769422}, {"position": [-6623.834561551689, -2180.0976943229243], "name": 1890531855}, {"position": [822.315438448129, -909.3476943231593], "name": 4273347088}, {"position": [-8296.334561556761, -2578.44769432225], "name": 1890769426}, {"position": [-8403.834561555357, -2507.597694322072], "name": 1890769427}, {"position": [-8241.834561552252, -2566.247694321788], "name": 1890769428}, {"position": [-8614.384561553834, -4782.097694322473], "name": 477665815}, {"position": [-20.134561552254127, 8997.402305677582], "name": 4687869273}, {"position": [-8313.034561552968, -916.6976943220106], "name": 1890531871}, {"position": [2058.515438449149, 411.15230567712047], "name": 1317671357}, {"position": [-7533.984561554518, -1427.2976943221493], "name": 1890531875}, {"position": [-7834.234561556741, -1269.297694323157], "name": 1890531879}, {"position": [-1120.8845615513496, 3337.6023056774784], "name": 481499482}, {"position": [8752.165438444592, -5744.297694322498], "name": 1771400967}, {"position": [4029.46543844962, -4774.097694323132], "name": 1721498161}, {"position": [-624.434561551368, 3530.2023056775765], "name": 476559922}, {"position": [4919.815438448439, -7106.697694322151], "name": 602360594}, {"position": [-9045.584561555132, -1563.7476943233253], "name": 1890818618}, {"position": [773.3654384480815, -2231.3476943232045], "name": 1316623455}, {"position": [2989.0654384487902, 2188.652305678218], "name": 1316471722}, {"position": [-740.1345615534183, -927.7476943232443], "name": 1316623456}, {"position": [2972.2654384443103, 2656.302305677372], "name": 1320103691}, {"position": [2828.915438449542, -5929.997694321898], "name": 1721498186}, {"position": [-3040.1845615557477, -4082.997694322188], "name": 95386187}, {"position": [-1874.2345615549993, -6913.347694322169], "name": 479279693}, {"position": [-6084.734561554228, -2066.547694322907], "name": 1890531918}, {"position": [8338.115438448312, -5681.847694322783], "name": 1771400973}, {"position": [3340.015438446642, -5757.197694322258], "name": 1721498194}, {"position": [-5558.734561553536, -18.69769432261137], "name": 483113556}, {"position": [1502.5154384460393, 5919.402305677224], "name": 623414118}, {"position": [1077.2654384467728, 5842.902305676745], "name": 477444694}, {"position": [-7654.134561555282, -1219.5476943226424], "name": 1890531930}, {"position": [-8738.034561552866, -1846.8976943228909], "name": 1890818655}, {"position": [383.76543844975686, 5918.152305676827], "name": 476560013}, {"position": [8518.815438449677, -5812.847694322443], "name": 1771400976}, {"position": [3399.665438443833, -5860.947694323215], "name": 1721498211}, {"position": [-322.9345615523016, -978.9476943229403], "name": 1316623462}, {"position": [3665.7654384484317, -5079.447694322781], "name": 1721498215}, {"position": [-6209.184561555503, -2263.297694321764], "name": 1890531945}, {"position": [3105.3654384436413, -5749.747694322238], "name": 1721498218}, {"position": [-8361.43456155014, -1722.597694323369], "name": 1890818667}, {"position": [-8222.08456155238, -1928.9476943225027], "name": 1890818669}, {"position": [-2403.084561557023, -4155.1476943233465], "name": 95386222}, {"position": [-7204.284561552754, -2112.1476943228854], "name": 1890818672}, {"position": [-8621.834561552078, -5021.047694322434], "name": 477665906}, {"position": [40.36543844421203, 4499.502305677083], "name": 476559988}, {"position": [206.96543844422877, 4831.202305677351], "name": 476559990}, {"position": [-5409.13456155323, 8302.252305677272], "name": 623416847}, {"position": [4115.4654384456535, 6458.202305678285], "name": 1328999560}, {"position": [-6577.584561554772, 366.55230567816943], "name": 483113599}, {"position": [-2949.4845615545273, 434.2523056770631], "name": 1316237078}, {"position": [144.01543844400067, 3766.7023056773273], "name": 1316237079}, {"position": [6464.415438443893, -5144.997694323194], "name": 848697997}, {"position": [3678.715438447, 2512.0523056774146], "name": 1320103704}, {"position": [3800.6154384433444, -5245.297694322915], "name": 4451234396}, {"position": [4560.215438445425, 4564.702305676959], "name": 1319204581}, {"position": [6682.065438447182, -7483.297694323099], "name": 848698004}, {"position": [6759.615438447498, -7250.047694322248], "name": 848698007}, {"position": [6575.165438448494, -5141.097694322028], "name": 848698010}, {"position": [-3822.9345615548027, -3140.6976943220143], "name": 1889249255}, {"position": [3220.0654384482164, 2848.252305676979], "name": 1320103992}, {"position": [-312.13456155398944, -1268.3976943232979], "name": 1316623472}, {"position": [9041.615438448502, -4491.347694322912], "name": 848698018}, {"position": [8981.465438445468, -6155.54769432336], "name": 495770277}, {"position": [3670.66543844885, 4787.502305678259], "name": 1324294638}, {"position": [8950.065438448008, -6243.797694322595], "name": 495770279}, {"position": [-322.2845615553638, -6232.447694323184], "name": 1887566506}, {"position": [8445.41543844457, -7116.897694322332], "name": 495770284}, {"position": [-316.5345615556703, 9465.852305677203], "name": 1404152877}, {"position": [9278.56543844996, -4444.247694323167], "name": 848698030}, {"position": [-1999.5345615555493, 2452.402305676671], "name": 1316237085}, {"position": [-6243.984561550064, -1727.6476943219877], "name": 1469016741}, {"position": [8394.165438446067, -3288.847694323138], "name": 848698034}, {"position": [9895.215438447736, -6982.847694322558], "name": 4346903220}, {"position": [9728.865438447086, -6914.947694323104], "name": 4346903222}, {"position": [9710.315438447025, -6794.1976943224345], "name": 4346903224}, {"position": [8414.765438445214, -5739.647694323225], "name": 1771400991}, {"position": [3225.6654384497097, 952.9523056777123], "name": 475978428}, {"position": [-3439.7345615531094, -1891.797694321795], "name": 1315785262}, {"position": [-3735.784561555988, -3008.247694323174], "name": 3355916993}, {"position": [-3668.1845615547104, -3188.9476943227637], "name": 3355916994}, {"position": [-3749.1845615562625, -3028.9976943222996], "name": 3355916997}, {"position": [-4012.7845615529623, -3474.3976943225616], "name": 3355916998}, {"position": [-3979.9345615563197, -3093.397694323485], "name": 3355916999}, {"position": [2635.165438448439, 950.4523056769187], "name": 1317681865}, {"position": [2517.065438446764, 1670.552305677475], "name": 1316471927}, {"position": [1822.7154384433675, 3702.4023056773103], "name": 1320103714}, {"position": [-1799.3345615536782, -6699.697694322993], "name": 479279823}, {"position": [-2181.1845615502534, -3503.547694322151], "name": 1889255124}, {"position": [-4512.484561551844, 2950.6523056781475], "name": 64813782}, {"position": [-8515.584561550328, -4606.197694322134], "name": 477666011}, {"position": [9442.265438444509, -3653.697694321778], "name": 848698077}, {"position": [169.76543845004244, -2133.647694321894], "name": 481385192}, {"position": [340.36543844706557, -565.1976943230608], "name": 4273412841}, {"position": [383.66543844858825, -365.8976943228254], "name": 4273412842}, {"position": [248.76543844953858, -1679.6476943223838], "name": 481385195}, {"position": [3184.515438448443, 5520.852305677337], "name": 1324294433}, {"position": [2601.6154384436163, -6197.997694322055], "name": 1581175514}, {"position": [9084.815438448857, -6040.497694321801], "name": 1771401000}, {"position": [4500.365438445897, -6976.997694323472], "name": 1785697735}, {"position": [1283.4654384477062, -1045.847694323143], "name": 1316623486}, {"position": [-9246.784561554477, 7108.102305677377], "name": 601661225}, {"position": [1455.6654384492163, 913.8023056767253], "name": 1317671274}, {"position": [-172.98456155145914, -2138.3476943217515], "name": 481385214}, {"position": [1741.2154384430778, -732.3476943223994], "name": 1316623488}, {"position": [-2838.8345615510957, -2270.0476943224858], "name": 1315785174}, {"position": [-846.8345615568751, 6163.852305677508], "name": 1404152880}, {"position": [8020.1154384482725, -7143.94769432225], "name": 495649612}, {"position": [2168.8654384490746, -817.0976943233654], "name": 1316623490}, {"position": [9678.615438446059, -3753.647694322737], "name": 495771174}, {"position": [-1871.2345615554682, 2665.952305678232], "name": 1316237102}, {"position": [-6529.134561553463, -4206.897694322364], "name": 1315678681}, {"position": [-8198.53456155073, 3087.4523056780845], "name": 71129881}, {"position": [8742.865438449599, -4375.847694323198], "name": 1784682721}, {"position": [-3302.9345615531724, -1747.2976943224694], "name": 1315785178}, {"position": [7860.515438444792, -4994.197694323077], "name": 103938846}, {"position": [-5116.934561556263, 509.20230567719216], "name": 3110525728}, {"position": [2761.4154384494327, 3186.4523056768235], "name": 1320103728}, {"position": [-1732.534561554644, -5942.397694322921], "name": 1315785179}, {"position": [-5488.384561552095, 6982.252305677505], "name": 423833614}, {"position": [3692.165438444306, 2067.102305677082], "name": 1320103730}, {"position": [8970.765438448325, -7326.797694322096], "name": 84466485}, {"position": [-8745.684561553446, 8126.052305676978], "name": 2716408631}, {"position": [-580.7845615564133, -7231.647694322163], "name": 1883880248}, {"position": [7844.165438449125, -7959.3976943233], "name": 84466490}, {"position": [-1428.2345615512781, -4372.1476943225925], "name": 1315785183}, {"position": [-9066.584561551848, 7872.002305678194], "name": 2716408636}, {"position": [-8686.234561551486, 7945.202305677412], "name": 2716408637}, {"position": [6976.565438449711, -7362.0976943225005], "name": 84466494}, {"position": [8837.515438443688, -6094.047694322313], "name": 495770431}, {"position": [6059.965438446114, -8135.7476943217935], "name": 84466496}, {"position": [8398.06543844901, -3319.1476943219554], "name": 848698181}, {"position": [8311.415438448932, -3300.547694323086], "name": 848698182}, {"position": [-746.8345615535554, 5129.252305676957], "name": 1404037125}, {"position": [4984.26543844488, -7602.247694322273], "name": 481508170}, {"position": [-7455.234561554391, 7654.052305676729], "name": 2716408652}, {"position": [-2359.834561552532, -1233.4476943234308], "name": 1315785186}, {"position": [-1020.2345615510922, 2530.2523056769387], "name": 1316237112}, {"position": [11433.115438443054, -6225.497694321902], "name": 554691043}, {"position": [8271.665438449816, -3423.3476943228425], "name": 848698196}, {"position": [7491.2654384462485, 5808.70230567676], "name": 654392158}, {"position": [7566.415438446938, 5895.302305678029], "name": 654392159}, {"position": [-2129.884561554718, -6585.847694323022], "name": 850262881}, {"position": [7856.06543844608, -5440.947694323128], "name": 103938914}, {"position": [4486.215438447516, -655.0976943220377], "name": 1888382779}, {"position": [2705.3654384445736, -6998.947694322411], "name": 602364772}, {"position": [8339.915438448032, -3443.197694322109], "name": 848698213}, {"position": [-5061.9345615530165, -8024.847694322545], "name": 479915836}, {"position": [-6551.084561550624, 1253.952305678041], "name": 3055920274}, {"position": [-6564.084561553329, -3580.597694321952], "name": 1315678697}, {"position": [359.31543844469616, -3336.347694322228], "name": 1315785260}, {"position": [-4249.734561554419, 757.3023056774986], "name": 1315785195}, {"position": [2745.0154384496273, -7104.8476943218475], "name": 602364804}, {"position": [1857.5654384491713, -767.8976943221727], "name": 1316623510}, {"position": [2672.715438443163, -7065.947694322005], "name": 602364807}, {"position": [10052.515438445653, -6932.397694322745], "name": 1776093676}, {"position": [7772.415438445534, -3932.847694322561], "name": 1489390329}, {"position": [8077.26543844467, -7026.747694322211], "name": 495646343}, {"position": [-8940.334561550855, 8210.202305678038], "name": 2716408719}, {"position": [1940.715438443874, -345.8476943229982], "name": 1317671414}, {"position": [-2175.634561552897, -7005.147694322033], "name": 1315678702}, {"position": [3746.765438449984, -6288.44769432213], "name": 1776086120}, {"position": [-4171.234561553661, -1487.0976943228698], "name": 1315785261}, {"position": [9287.315438449185, -4223.697694323292], "name": 848698274}, {"position": [3561.8654384492743, -7590.147694322979], "name": 602364835}, {"position": [-8910.134561553206, 8289.852305678025], "name": 2716408741}, {"position": [-5209.4845615542345, -5466.4976943232805], "name": 1887591336}, {"position": [-527.4345615546849, 4529.3023056771635], "name": 1316471964}, {"position": [-5323.08456155306, -5448.847694323078], "name": 1887591342}, {"position": [-5429.2345615536415, -5437.497694321891], "name": 1887591353}, {"position": [-1616.3845615508876, -6999.997694322246], "name": 103781535}, {"position": [7265.16543844724, -5978.297694323232], "name": 476912576}, {"position": [-778.7345615568597, -4687.19769432191], "name": 95386562}, {"position": [-9127.384561551822, -1833.2476943232477], "name": 1890761668}, {"position": [713.6154384497218, -1585.297694322918], "name": 4273219689}, {"position": [8979.41543844638, -5683.09769432318], "name": 495770568}, {"position": [-6080.634561556053, -3464.097694322987], "name": 1315678711}, {"position": [-1099.1845615535567, -3113.547694322705], "name": 479280077}, {"position": [7870.5154384479665, -5604.0976943219075], "name": 63298510}, {"position": [2267.365438449076, 2523.7023056767785], "name": 1320103757}, {"position": [-4798.934561556223, -7016.147694322683], "name": 1887877308}, {"position": [-897.6345615536729, -2524.7476943217607], "name": 479280088}, {"position": [-7592.934561550635, 956.1523056778043], "name": 483122140}, {"position": [-4531.384561552442, 1044.0023056776936], "name": 1315785210}, {"position": [224.06543844510907, 2457.0523056777206], "name": 1316471789}, {"position": [-7183.134561550731, -3400.9476943221985], "name": 476675164}, {"position": [362.86543844710195, 2337.2523056774953], "name": 1316471974}, {"position": [8795.365438444947, -6179.547694323162], "name": 495770430}, {"position": [-5150.6345615521805, -5370.097694322951], "name": 1887591399}, {"position": [3827.1154384474926, -341.99769432241567], "name": 475978728}, {"position": [4198.765438445662, -7931.447694321747], "name": 481504379}, {"position": [-1529.684561553779, 2641.952305676654], "name": 1316236446}, {"position": [765.8654384457009, 2018.9523056775015], "name": 1316471976}, {"position": [-4230.984561552021, 1323.8523056777751], "name": 1315785214}, {"position": [1425.4154384474305, 1386.1523056775127], "name": 1316471977}, {"position": [-2767.584561553349, -8251.647694322628], "name": 1315242567}, {"position": [550.265438448605, 3497.302305676797], "name": 1316471978}, {"position": [-1891.1345615535424, 5541.052305677141], "name": 482731179}, {"position": [10032.715438448748, -274.09769432296116], "name": 85646340}, {"position": [-6182.934561550724, -3620.297694322261], "name": 477641733}, {"position": [-2430.384561556309, -576.8476943224243], "name": 1315785217}, {"position": [4728.9154384486665, -6586.54769432232], "name": 1785693356}, {"position": [808.1154384456113, -3086.697694323348], "name": 1315785218}, {"position": [-3200.184561556796, -4865.1976943219215], "name": 1315678723}, {"position": [10702.415438444747, -7763.347694321965], "name": 554691077}, {"position": [-4998.2845615517135, -1992.9476943225666], "name": 479293036}, {"position": [-4288.634561554261, -5064.797694322109], "name": 1315678726}, {"position": [6829.715438449568, -6544.697694321755], "name": 4470914092}, {"position": [-4045.884561556079, 1034.8523056773474], "name": 1315785266}, {"position": [6627.515438445642, -6047.247694322522], "name": 4470914101}, {"position": [6753.465438443129, -5883.597694323228], "name": 4470914102}, {"position": [6557.3154384495065, -5920.0476943228605], "name": 4470914103}, {"position": [-4870.584561551539, -27.14769432188291], "name": 1562117605}, {"position": [4533.065438444339, -6690.147694323301], "name": 93466463}, {"position": [6873.41543844866, -5972.347694322977], "name": 4470914109}, {"position": [6383.465438446478, 923.4523056775856], "name": 3356046290}, {"position": [-2881.8845615532496, -2340.147694322781], "name": 1315785227}, {"position": [-243.63456155640506, -5570.397694322438], "name": 476671870}, {"position": [-92.38456155458152, -2793.347694321824], "name": 1315785228}, {"position": [2435.415438448274, 2417.002305676874], "name": 1320103938}, {"position": [-2954.384561554946, -3750.997694321967], "name": 95386126}, {"position": [-6757.484561553894, 10.002305677048184], "name": 479298745}, {"position": [-739.8345615570179, -3214.5976943223077], "name": 479280217}, {"position": [-8254.584561555588, -2557.547694323148], "name": 1890769423}, {"position": [-5776.584561552056, -3418.3476943230316], "name": 477641820}, {"position": [-101.08456155677459, 4239.402305676876], "name": 1316237157}, {"position": [-4534.684561555479, -4893.297694323451], "name": 1315678736}, {"position": [-5879.884561551307, -7330.497694322702], "name": 1632904379}, {"position": [2603.615438445672, 6723.752305678232], "name": 623413761}, {"position": [-2445.2845615527963, -2063.74769432216], "name": 479282364}, {"position": [-1540.8845615567657, 2268.902305678111], "name": 1316237159}, {"position": [-7498.13456155124, -583.7976943219303], "name": 3569237100}, {"position": [-5417.634561553086, -3666.9476943220757], "name": 1315678739}, {"position": [-1367.5345615524748, -361.29769432236003], "name": 1316623550}, {"position": [2061.51543844868, 1631.3023056770958], "name": 1320103785}, {"position": [1750.2654384458083, -1235.7976943224712], "name": 1316623529}, {"position": [1046.8654384467868, 2444.60230567789], "name": 1316471999}, {"position": [-7666.83456155448, -844.3976943226517], "name": 3569237116}, {"position": [-2297.284561556978, 3349.3023056774264], "name": 1316237162}, {"position": [6128.8654384483725, -8065.6976943220825], "name": 1769171993}, {"position": [-8792.834561553775, -6638.69769432246], "name": 973126787}, {"position": [-6090.784561550322, -7727.197694322285], "name": 874287211}, {"position": [-3861.7845615505075, -2545.0976943233172], "name": 1315785238}, {"position": [-8082.934561556954, -1776.9476943225727], "name": 1890745479}, {"position": [-1245.8845615554992, -6197.297694322757], "name": 1315678743}, {"position": [8086.365438444432, -4136.647694322093], "name": 478379149}, {"position": [-3278.7845615516176, -4185.24769432338], "name": 1315785240}, {"position": [-7291.684561550937, -3078.0976943223236], "name": 1890844097}, {"position": [5139.215438447309, -6742.297694323441], "name": 2049850517}, {"position": [3570.165438446793, -8297.79769432193], "name": 1765493273}, {"position": [2456.6154384473293, 3469.1523056782357], "name": 1316472004}, {"position": [-207.08456155205113, -1701.1976943219765], "name": 475975536}, {"position": [9444.665438444134, -6532.547694321877], "name": 495771014}, {"position": [4872.66543844811, -6560.0476943217245], "name": 2049850540}, {"position": [-885.3345615520425, -5024.447694323087], "name": 1887575214}, {"position": [-135.18456155026115, -5249.197694322305], "name": 1887575216}, {"position": [-3474.8345615511766, -1950.09769432275], "name": 1315785543}, {"position": [-4002.2845615510505, 194.1023056772906], "name": 385113971}, {"position": [9196.565438443828, -4407.3976943224125], "name": 478379193}, {"position": [-3337.784561551871, -2552.1976943227996], "name": 1315785247}, {"position": [-4233.6345615510145, 1197.70230567795], "name": 1315785248}, {"position": [3222.2154384484725, 8642.952305677909], "name": 622622524}, {"position": [3196.3154384442305, -7904.197694323046], "name": 1489398796}, {"position": [6025.265438445615, -3985.647694323191], "name": 478379215}, {"position": [218.665438445953, -3391.747694323044], "name": 1315785544}, {"position": [2189.2654384458865, -26.797694323121846], "name": 475977916}, {"position": [-1591.4345615541947, 4132.15230567765], "name": 1316471865}, {"position": [-7285.184561553137, -6456.747694322474], "name": 477633750}, {"position": [-4365.084561555932, -50.047694323041014], "name": 1315785252}, {"position": [-3114.5845615512258, -6568.547694323357], "name": 2354289882}, {"position": [-7561.134561555605, -6364.847694323217], "name": 477633756}, {"position": [-1839.5345615545011, 1122.6523056766523], "name": 1316237178}, {"position": [-20.084561555222535, 3074.05230567781], "name": 1316236454}, {"position": [-1941.6345615539399, -6918.0976943226115], "name": 2354289892}, {"position": [1442.0154384495731, 7665.752305676677], "name": 623413798}, {"position": [-3084.7345615541144, -6578.597694321787], "name": 2354289894}, {"position": [1731.465438446378, -1199.09769432347], "name": 1316623569}, {"position": [2729.165438445591, 390.40230567799483], "name": 1317670780}, {"position": [-561.1845615547395, -7119.2476943231495], "name": 2354289898}, {"position": [-8165.884561556424, -6160.297694322026], "name": 477633771}, {"position": [-738.9345615536058, 2225.3523056772196], "name": 1316237000}, {"position": [-7163.934561553731, -6100.29769432252], "name": 477634429}, {"position": [967.0154384480156, -3348.1476943233447], "name": 1315785256}, {"position": [-8502.834561554097, -5915.04769432305], "name": 477633780}, {"position": [2795.7654384493935, -220.6976943224248], "name": 1317670782}, {"position": [-472.68456155080685, -7127.197694321907], "name": 2354289912}, {"position": [-427.5845615566709, -7130.447694322584], "name": 2354289915}, {"position": [-8697.88456155618, -6603.597694322616], "name": 156253438}, {"position": [-1713.0845615511703, 1356.7523056767782], "name": 1316196998}, {"position": [-1453.534561555614, -2378.4976943233005], "name": 848690432}, {"position": [-1735.1845615536376, -2331.5476943217564], "name": 848690433}, {"position": [-175.63456155045287, -3070.647694322304], "name": 1315785259}, {"position": [3298.965438446544, -6270.447694323167], "name": 4451470239}, {"position": [7503.915438448416, 2331.502305677802], "name": 2629549317}, {"position": [-8220.034561553291, -5089.79769432294], "name": 156253446}, {"position": [7296.215438444165, 2561.252305676831], "name": 2629549319}, {"position": [7251.615438448766, 2665.6023056776944], "name": 2629549320}, {"position": [-6301.734561553474, -1167.6476943218718], "name": 1469016620}, {"position": [-1737.8345615526314, -2293.6476943229422], "name": 848690442}, {"position": [-1858.684561554469, -2266.8476943223936], "name": 848690444}, {"position": [7524.815438443966, 2869.4023056772267], "name": 2629549325}, {"position": [7768.565438446729, 2606.1023056769272], "name": 2629549326}, {"position": [8056.415438446152, 2797.002305676699], "name": 2629549327}, {"position": [7680.515438444501, 2427.652305676986], "name": 2629549328}, {"position": [-452.3845615551636, 3444.2023056779904], "name": 483099864}, {"position": [3394.3654384458455, 638.1523056777638], "name": 1317671019}, {"position": [-1767.934561556217, -2189.647694322616], "name": 848690453}, {"position": [8144.51543844541, 3613.8023056775382], "name": 2629549334}, {"position": [8387.165438449529, 3558.602305677283], "name": 2629549335}, {"position": [-434.63456155024005, -2478.5976943224596], "name": 848690456}, {"position": [5280.565438447127, 7928.102305676532], "name": 4573378111}, {"position": [-5116.084561556989, -1751.8976943229347], "name": 1315785263}, {"position": [902.7654384468065, 3397.5523056781753], "name": 1316472026}, {"position": [1943.4654384440364, 2232.2523056779173], "name": 1320103813}, {"position": [420.61543844340576, -1301.3476943228852], "name": 4273147782}, {"position": [4873.015438448647, -6546.797694323203], "name": 3344153898}, {"position": [2678.6654384451936, 2728.5523056779225], "name": 1320103815}, {"position": [5672.665438446245, 1726.4023056782207], "name": 482729260}, {"position": [4471.865438446798, -6633.547694322672], "name": 3344153901}, {"position": [4593.015438445036, -6842.747694323137], "name": 3344153902}, {"position": [5768.265438447884, 1860.2023056768503], "name": 482729263}, {"position": [811.5154384498169, 1083.1023056780964], "name": 1317670792}, {"position": [5999.515438446679, 2404.3023056776747], "name": 482729267}, {"position": [1594.8154384446411, 3142.852305677124], "name": 1320103817}, {"position": [-7554.534561556637, 7774.402305678052], "name": 2716408639}, {"position": [1470.4154384475032, 2298.302305677069], "name": 1320103818}, {"position": [-3376.1345615559435, -1456.9476943222526], "name": 848690496}, {"position": [11164.01543844603, -4694.397694322561], "name": 85654851}, {"position": [3273.6654384493136, -47.64769432341609], "name": 1317671035}, {"position": [-4799.934561553699, 5753.502305678282], "name": 483106120}, {"position": [-923.9845615525155, 3312.6023056766485], "name": 1316237196}, {"position": [-2136.6845615560237, 4624.652305677657], "name": 654397600}, {"position": [-923.5845615549465, 5737.702305676607], "name": 481500495}, {"position": [-1296.4845615499598, -2939.3476943226915], "name": 1315785272}, {"position": [-688.7345615567142, -699.0976943228588], "name": 481390471}, {"position": [140.8654384462693, 4367.752305677542], "name": 1316237198}, {"position": [-56.68456155660806, 5326.652305678082], "name": 481500502}, {"position": [5842.565438449299, -8130.897694321959], "name": 1782221369}, {"position": [275.815438449456, 5244.102305677956], "name": 481500505}, {"position": [884.3654384449451, 5034.6523056781225], "name": 481500507}, {"position": [956.3654384479037, 5038.202305676976], "name": 481500509}, {"position": [798.865438447649, 2762.252305677393], "name": 1316472037}, {"position": [-3220.4345615554075, -1713.7476943229758], "name": 848690530}, {"position": [-4301.03456155706, -4281.697694322517], "name": 1315785275}, {"position": [4891.46543844754, 5543.202305677397], "name": 481500517}, {"position": [2257.365438445902, -2579.797694322039], "name": 1883258214}, {"position": [4987.8154384472855, 6127.102305677923], "name": 1328999407}, {"position": [8561.215438447789, 4492.452305678185], "name": 2629549333}, {"position": [-2278.8845615551168, 4400.152305677807], "name": 654397601}, {"position": [1647.9654384440323, 2821.2523056776463], "name": 1320103826}, {"position": [-1546.2345615517847, 3892.902305677737], "name": 1316237203}, {"position": [-2127.284561552756, -494.79769432281273], "name": 481394037}, {"position": [3640.265438448864, 4142.602305677201], "name": 654400890}, {"position": [-3407.5345615534047, -2687.6476943229477], "name": 1315785279}, {"position": [-570.584561550902, -3287.747694322718], "name": 479280511}, {"position": [-4379.9345615553875, 9040.502305676768], "name": 3421417540}, {"position": [-3455.684561551209, -4199.697694321713], "name": 1315785193}, {"position": [1606.7654384457342, -952.197694322976], "name": 1316623595}, {"position": [2166.165438445944, 7131.85230567781], "name": 1328999408}, {"position": [-8269.534561556213, -842.9976943222783], "name": 5017787782}, {"position": [8222.115438449862, -8278.9976943225], "name": 495771015}, {"position": [-8381.284561551183, -1032.2976943228923], "name": 5017787784}, {"position": [-7997.184561553184, -1137.3976943218622], "name": 5017787785}, {"position": [1581.3654384473352, 4014.502305677681], "name": 1320103831}, {"position": [-7450.184561555772, -1229.7476943228248], "name": 5017787788}, {"position": [3793.515438445638, 9467.452305678136], "name": 714080235}, {"position": [-190.68456155224567, -3421.547694323124], "name": 602334140}, {"position": [7959.065438448932, -6065.197694322677], "name": 495771025}, {"position": [2823.0654384486797, 1250.5523056773882], "name": 1317671296}, {"position": [-8908.034561549983, -7159.697694323341], "name": 156253588}, {"position": [8145.365438444685, -6086.647694322877], "name": 495771029}, {"position": [1881.8154384447894, 3904.402305677124], "name": 1320103833}, {"position": [9207.915438445014, -4794.04769432179], "name": 2932694426}, {"position": [-2720.6345615553573, -2777.9976943218544], "name": 1315785278}, {"position": [2712.3154384440795, 1846.5523056772072], "name": 1320103834}, {"position": [-591.9845615522945, -268.6476943232208], "name": 1316623266}, {"position": [3461.2654384460484, -7372.19769432329], "name": 1489398803}, {"position": [-3272.0845615514804, -1506.9476943221362], "name": 848690593}, {"position": [3286.615438447882, 4061.552305676841], "name": 1320103835}, {"position": [7082.015438449218, 1392.5023056771124], "name": 476561132}, {"position": [3407.065438445045, -6201.697694322661], "name": 3283676143}, {"position": [2664.815438443213, 37.20230567694216], "name": 1317671363}, {"position": [6223.115438444893, 3039.2023056773355], "name": 482729885}, {"position": [-2560.0845615514345, -705.9976943217805], "name": 1315785289}, {"position": [6555.765438449157, -6123.697694322416], "name": 495771066}, {"position": [7199.515438443882, -7456.697694323111], "name": 495771069}, {"position": [-7286.584561555287, -2827.3476943230235], "name": 1890844095}, {"position": [2256.3654384484266, 447.80230567731394], "name": 1317670816}, {"position": [-7257.934561550883, -2807.397694322589], "name": 1890844100}, {"position": [-3871.5845615513444, -1421.5976943230403], "name": 1315785292}, {"position": [-1345.7345615535132, -6476.34769432237], "name": 267195118}, {"position": [-6992.434561553296, -2901.9976943231995], "name": 1890844107}, {"position": [474.0654384463028, -1516.0476943218982], "name": 4273147810}, {"position": [-6609.134561550434, -1636.197694322661], "name": 1469016653}, {"position": [1151.1654384435133, 5844.152305677142], "name": 477444686}, {"position": [-7226.534561553422, -2840.1976943222], "name": 1890844121}, {"position": [-1223.084561551957, 71.45230567751071], "name": 385113562}, {"position": [-3699.984561556846, -7613.747694323436], "name": 1315678799}, {"position": [4741.715438449035, 1123.0023056771897], "name": 482729441}, {"position": [1892.2154384455325, 3044.8523056776367], "name": 1320103846}, {"position": [92.66543844432817, 62.40230567655658], "name": 1316693990}, {"position": [11474.865438444227, -4404.847694322811], "name": 109354129}, {"position": [-103.08456155172507, 5257.702305677014], "name": 1404036972}, {"position": [-8833.934561550905, -671.2476943224743], "name": 1890531922}, {"position": [3938.7154384442624, 2181.8523056769122], "name": 476560879}, {"position": [6614.565438447073, -4092.647694323048], "name": 495771120}, {"position": [4514.415438443109, -6561.297694322121], "name": 1776086140}, {"position": [1207.7654384441416, -3217.397694323054], "name": 1315785299}, {"position": [1916.6654384434878, 3454.802305677518], "name": 1320103701}, {"position": [-3164.034561550011, -7410.497694323226], "name": 1315678804}, {"position": [-7963.48456155016, -1462.5476943219696], "name": 1890935454}, {"position": [9241.4154384457, -5318.9476943220625], "name": 1784595711}, {"position": [-2981.934561553601, -1861.6476943229543], "name": 848690687}, {"position": [529.1654384436129, -1590.697694322074], "name": 4273147819}, {"position": [-4253.534561556194, -4199.1476943223915], "name": 1315785302}, {"position": [-4658.8845615502805, -1549.6976943225604], "name": 479288842}, {"position": [-4840.4845615550585, -4945.747694321767], "name": 1315678807}, {"position": [-307.7345615523086, -3764.0476943234803], "name": 479280655}, {"position": [-8452.784561555403, -4178.947694322588], "name": 5021317165}, {"position": [-862.2345615520999, -3024.797694322956], "name": 1315785304}, {"position": [2929.6654384438625, -5635.997694323436], "name": 1581175394}, {"position": [3305.1154384438064, 3989.252305677482], "name": 654401048}, {"position": [-5295.884561554942, -589.1476943222784], "name": 152878617}, {"position": [-5622.934561550608, -2460.5476943229123], "name": 78011931}, {"position": [-4209.834561549997, 1798.6023056781873], "name": 1315785306}, {"position": [4190.665438443375, 4976.152305676606], "name": 1324294429}, {"position": [-2058.5345615558026, 2615.302305677858], "name": 1316237232}, {"position": [-3419.684561556835, 1334.3023056773263], "name": 483098146}, {"position": [-4163.284561556679, -2102.3476943220485], "name": 1315785307}, {"position": [11421.815438446003, -4306.697694323347], "name": 495771172}, {"position": [11509.915438445261, -4337.59769432207], "name": 495771173}, {"position": [-3602.884561551889, 754.6523056767285], "name": 483098150}, {"position": [-857.0845615523126, -2928.8976943231405], "name": 1315785308}, {"position": [-8538.934561556744, -1745.547694323335], "name": 1730911786}, {"position": [6447.565438449487, -2912.347694323358], "name": 495771182}, {"position": [6961.465438443782, -3132.747694323257], "name": 495771183}, {"position": [2726.565438443629, 3053.402305678077], "name": 1320103703}, {"position": [3644.5154384452394, 1353.1523056773408], "name": 1317670835}, {"position": [-5853.784561551834, -1190.5976943218377], "name": 1469016670}, {"position": [2447.4154384463986, 411.20230567770477], "name": 1317670756}, {"position": [5741.315438449135, -8232.747694322028], "name": 1782221407}, {"position": [-1982.384561550532, -5876.847694322507], "name": 267198012}, {"position": [1326.5654384468917, 2333.152305677544], "name": 1320103859}, {"position": [-5972.384561552246, -4714.447694322388], "name": 267198014}, {"position": [1734.2154384465402, 470.7023056766957], "name": 1317670837}, {"position": [-2533.284561550886, -2524.797694322345], "name": 1315785312}, {"position": [542.015438448118, -1528.4976943217289], "name": 4273147830}, {"position": [11295.41543844681, -4657.947694322928], "name": 115547719}, {"position": [-7642.334561552389, -3694.9476943224367], "name": 477666889}, {"position": [3325.3154384453865, -6228.997694321947], "name": 476913230}, {"position": [-4222.884561556839, -1018.5476943220806], "name": 479288912}, {"position": [3130.61543844384, -6764.797694323477], "name": 495629582}, {"position": [-2841.7845615535953, 2633.9023056767273], "name": 483098199}, {"position": [7083.065438443726, -1831.2476943229683], "name": 1473995326}, {"position": [-8471.334561555466, 1656.6523056766869], "name": 85011021}, {"position": [-2017.0345615539986, -6302.347694322918], "name": 267195119}, {"position": [1015.31543844402, -1205.9976943223915], "name": 1316623632}, {"position": [-8563.884561553437, -1692.6476943233126], "name": 1730911844}, {"position": [-29.334561553184813, 2306.752305678117], "name": 476552806}, {"position": [-200.7345615524514, 5179.952305677915], "name": 1404037141}, {"position": [2174.3654384493993, -6471.947694322466], "name": 495641874}, {"position": [-6771.18456155057, -4901.747694322722], "name": 267198397}, {"position": [-1695.134561551015, -4808.847694322438], "name": 1315678824}, {"position": [-2498.1845615528186, 3153.2523056778673], "name": 483098227}, {"position": [-1162.6845615566594, -2988.097694322178], "name": 1315785558}, {"position": [3136.915438446408, 2195.55230567714], "name": 1320103870}, {"position": [3775.8654384489887, -7350.647694321921], "name": 1769171926}, {"position": [11252.515438449962, -4716.647694323228], "name": 115547773}, {"position": [3298.665438443038, 9298.20230567735], "name": 4573378123}, {"position": [-6406.984561550644, -2008.847694321858], "name": 1469016684}, {"position": [2908.965438443545, 3395.152305676774], "name": 1320103706}, {"position": [-7460.7345615547165, -6907.047694323154], "name": 477625999}, {"position": [2662.1654384442195, 3230.002305677715], "name": 1320103979}, {"position": [-2172.18456155166, -480.5476943232634], "name": 481394324}, {"position": [-1730.1845615520506, -5000.097694322747], "name": 1315785326}, {"position": [881.7654384429829, -918.8976943228511], "name": 4273347087}, {"position": [-2880.3845615570367, 5000.352305676969], "name": 601145284}, {"position": [-7581.134561554847, -1130.9476943228701], "name": 1469016687}, {"position": [-7889.084561554682, 1444.6523056772521], "name": 85011298}, {"position": [-2550.484561552935, 6288.902305676913], "name": 601145285}, {"position": [-3176.834561550379, -4572.597694322056], "name": 1315785328}, {"position": [-3632.1345615561995, 1420.2023056775204], "name": 385113763}, {"position": [6478.215438448842, -5042.997694323148], "name": 495771300}, {"position": [1981.1654384440658, 1453.6023056770375], "name": 1320103878}, {"position": [6584.015438448887, -5036.697694322356], "name": 495771302}, {"position": [7866.665438449161, -4934.647694321726], "name": 495771303}, {"position": [-6077.684561553553, -2250.0976943220508], "name": 3355899008}, {"position": [-5180.384561555229, 4116.402305676558], "name": 483106759}, {"position": [-1445.6845615526959, -3442.8976943221555], "name": 1888323059}, {"position": [-4947.134561554378, -224.3476943224465], "name": 1315785560}, {"position": [5046.815438447538, 4375.002305677001], "name": 1319641032}, {"position": [-6695.834561554648, -3812.547694321822], "name": 5021317182}, {"position": [652.2654384468751, -389.94769432321164], "name": 385113782}, {"position": [1757.9654384434207, -616.0976943228036], "name": 385113786}, {"position": [1940.765438448011, -547.1976943223211], "name": 385113788}, {"position": [2086.215438446004, -491.94769432325813], "name": 385113789}, {"position": [3464.4154384437797, 9138.402305676862], "name": 4573378125}, {"position": [2243.7154384462588, -460.49769432343624], "name": 385113791}, {"position": [2993.7654384468715, -407.24769432287644], "name": 385113794}, {"position": [3164.2154384456944, -421.19769432247267], "name": 385113795}, {"position": [-1900.4845615526733, -3187.8976943229277], "name": 1889255114}, {"position": [-4491.284561552789, -2588.8476943229934], "name": 1315785335}, {"position": [-7616.084561554715, 6208.702305677605], "name": 601661132}, {"position": [3752.6154384437405, 1931.302305678173], "name": 1320103981}, {"position": [-2059.5845615503094, -3208.647694322053], "name": 1889255121}, {"position": [-2232.984561551632, -6837.397694322789], "name": 2354289885}, {"position": [2117.6154384434653, 1867.2523056775249], "name": 1320103860}, {"position": [-9138.134561553103, -1118.2976943224787], "name": 477576916}, {"position": [5226.065438449723, 3065.402305677978], "name": 482729685}, {"position": [7104.315438446918, 2923.2023056771086], "name": 482729690}, {"position": [1645.7654384467446, 3548.8523056770305], "name": 1320103887}, {"position": [-6288.184561554999, -3685.2476943227684], "name": 1315678842}, {"position": [-2091.0845615560447, -3287.9976943220868], "name": 1889255135}, {"position": [2064.1154384435367, -22.047694322679945], "name": 1317670864}, {"position": [-1870.7845615537622, 3980.7523056776263], "name": 1316236744}, {"position": [-2139.8845615507867, -3222.597694323426], "name": 1889255141}, {"position": [-1735.934561551744, -1629.8476943230612], "name": 845389542}, {"position": [-3442.0845615557027, -1774.3476943223868], "name": 1315785340}, {"position": [6523.315438442978, 1605.9023056769206], "name": 476561130}, {"position": [6598.8654384483425, 1571.6523056781284], "name": 476561131}, {"position": [-792.3345615523658, -3123.447694322934], "name": 1315785562}, {"position": [-8046.684561556105, 1698.8523056777894], "name": 2629533650}, {"position": [2890.515438444652, 9123.152305678062], "name": 714088176}, {"position": [2095.5154384481034, 3868.2523056774444], "name": 1320103891}, {"position": [2372.415438443909, 466.1023056780067], "name": 1317670868}, {"position": [1967.3154384491909, 291.7523056780169], "name": 1317670953}, {"position": [2402.015438448757, -1400.9476943233067], "name": 1316623658}, {"position": [-3976.084561550408, 2783.4023056776405], "name": 479297279}, {"position": [-7282.234561550638, -4780.947694323246], "name": 267198208}, {"position": [-7081.784561556504, -4422.697694321798], "name": 267198209}, {"position": [-6680.884561554023, -3788.897694322557], "name": 267198210}, {"position": [998.9154384442145, 438.70230567755186], "name": 1317670870}, {"position": [-6030.684561551425, -3685.2476943227684], "name": 1315678849}, {"position": [2108.765438443072, -1042.047694323145], "name": 481387485}, {"position": [-7284.184561555662, -2511.8476943220003], "name": 1890885389}, {"position": [2103.615438443285, 2394.6023056780064], "name": 1320103896}, {"position": [-1781.6345615528917, 3357.202305677376], "name": 483098387}, {"position": [-3297.4845615569848, -5589.9476943217505], "name": 267198230}, {"position": [-3373.78456155335, -5960.54769432186], "name": 267198231}, {"position": [5552.165438444945, 8154.752305676638], "name": 482734042}, {"position": [-7397.184561554582, -2411.7976943234253], "name": 1890885413}, {"position": [1957.9654384429546, 2318.9023056779943], "name": 1320103900}, {"position": [-2489.284561555394, 1973.1023056781537], "name": 1316198786}, {"position": [-8650.88456155405, 5209.05230567692], "name": 601661230}, {"position": [-4052.0345615533415, -7084.447694323259], "name": 1315678856}, {"position": [9684.76543844332, -3668.147694321888], "name": 1800806199}, {"position": [-7667.434561554387, -2271.4976943234433], "name": 1890885433}, {"position": [-6937.834561554723, -5381.69769432173], "name": 267198431}, {"position": [460.56543844485986, -1224.6976943224297], "name": 4273147781}, {"position": [-2262.1845615518055, -782.3976943228672], "name": 1315785354}, {"position": [2711.0654384472355, -5855.047694321769], "name": 1581175404}, {"position": [-2194.6345615546647, 5951.702305678097], "name": 654393155}, {"position": [-1863.23456155435, -2302.2976943227745], "name": 599408452}, {"position": [-1969.0845615514263, -2815.5476943219073], "name": 599408454}, {"position": [1788.6654384469125, 1154.0523056776665], "name": 1317670881}, {"position": [-4240.58456155052, -6064.897694322724], "name": 267198280}, {"position": [-5332.234561556959, -5667.497694322065], "name": 267198281}, {"position": [2320.0154384497296, -6970.647694322096], "name": 495632202}, {"position": [-1954.2345615519707, -7736.647694322584], "name": 1883856717}, {"position": [780.0654384482186, -3150.647694322828], "name": 1315785357}, {"position": [-3008.784561551181, -6547.397694323109], "name": 1883856720}, {"position": [-6305.384561557048, -5522.647694322202], "name": 267198435}, {"position": [-1446.0345615532333, -4043.997694322954], "name": 1315785578}, {"position": [-4528.734561553449, 9244.252305677492], "name": 2991483745}, {"position": [-5188.18456155401, -153.8976943233905], "name": 601145316}, {"position": [-3498.484561553994, -6368.047694323309], "name": 267198300}, {"position": [-1569.6845615522648, -2678.7976943225544], "name": 1315785293}, {"position": [-482.284561556412, -7238.497694322276], "name": 1883856735}, {"position": [11640.965438445506, 6492.502305677661], "name": 79811522}, {"position": [1821.115438445986, -263.4976943234335], "name": 1317671095}, {"position": [6080.865438448768, -4054.7476943224583], "name": 84488166}, {"position": [2469.915438446435, 3384.6523056766387], "name": 1320103861}, {"position": [-4315.134561551304, 21.702305676996048], "name": 1315785362}, {"position": [301.91543844892976, 378.9523056774158], "name": 1317671006}, {"position": [-2812.1845615558527, -7602.297694322857], "name": 1315678867}, {"position": [6201.115438443594, 7004.65230567815], "name": 476561693}, {"position": [-1865.384561554606, 869.7523056770962], "name": 1316192118}, {"position": [-3599.38456155362, -1277.7476943224287], "name": 385113975}, {"position": [-8076.984561554923, -5886.497694323367], "name": 477634424}, {"position": [-7451.934561551354, -6020.247694323189], "name": 477634427}, {"position": [2619.2654384473713, 3399.7523056772393], "name": 1320103914}, {"position": [-7236.734561551828, -8276.74769432285], "name": 477643992}, {"position": [-6769.63456155022, -6206.997694322425], "name": 477634433}, {"position": [-5680.7345615510485, -6595.7476943232505], "name": 477634435}, {"position": [6049.815438444739, 6193.702305678173], "name": 1319641348}, {"position": [2333.2154384476667, 2651.102305677], "name": 1320103916}, {"position": [4348.7654384435355, -7591.097694323424], "name": 1774845835}, {"position": [8002.615438449822, -5687.847694321846], "name": 1765485421}, {"position": [2253.21543844359, 425.5023056778384], "name": 1317670894}, {"position": [-5705.784561556015, -7679.797694322588], "name": 1887854488}, {"position": [2758.7654384433336, -5897.197694322287], "name": 1581175407}, {"position": [-6280.734561556756, -921.9476943229665], "name": 1469016730}, {"position": [4544.165438446157, -7715.747694323482], "name": 1774845854}, {"position": [3281.2654384457574, 2197.1023056774898], "name": 1320103920}, {"position": [-7056.7845615556735, -5750.697694322682], "name": 602259363}, {"position": [4719.41543844423, -7733.797694323031], "name": 1774845860}, {"position": [-7345.984561553109, -5682.547694322082], "name": 602259365}, {"position": [512.465438447407, -2115.5476943217623], "name": 882614840}, {"position": [5858.8154384437985, -8114.347694322177], "name": 1782221468}, {"position": [2672.6154384490997, 2098.552305676904], "name": 1316472162}, {"position": [4093.265438449123, 8997.552305677558], "name": 4573378133}, {"position": [9920.565438449103, -6829.04769432291], "name": 115548081}, {"position": [6070.615438446225, 1077.702305677164], "name": 475979698}, {"position": [6147.815438446003, 1041.3523056769236], "name": 475979699}, {"position": [-2530.8345615542294, -4140.54769432326], "name": 1315785374}, {"position": [-3747.3345615524067, -7705.9976943232305], "name": 1887854519}, {"position": [3187.165438447437, 438.3023056782065], "name": 1317670900}, {"position": [9110.365438445457, -4657.847694321759], "name": 848698015}, {"position": [-3982.1345615536075, -7713.997694322572], "name": 1887854524}, {"position": [-7073.23456155251, -4832.647694323456], "name": 477626301}, {"position": [-2918.434561550498, -2849.1976943225695], "name": 1315785569}, {"position": [5523.715438449983, 1947.6523056773942], "name": 1319641025}, {"position": [1289.0154384450625, 2241.402305678264], "name": 1320103954}, {"position": [1495.5654384465333, 3349.3023056774264], "name": 1320103926}, {"position": [-2522.2845615502365, 6358.752305677839], "name": 601145286}, {"position": [-4766.084561552475, 1333.1023056775139], "name": 601145287}, {"position": [-4603.234561550096, 1940.15230567679], "name": 601145288}, {"position": [-3262.2845615506435, 4232.6023056773465], "name": 601145289}, {"position": [-3031.534561550586, 4697.352305678138], "name": 601145290}, {"position": [-8768.38456155582, -6556.74769432224], "name": 601145294}, {"position": [-8263.634561551215, -5030.247694323364], "name": 601145296}, {"position": [-8045.584561550357, -4600.947694322955], "name": 601145298}, {"position": [-7288.234561556806, -3417.94769432191], "name": 601145300}, {"position": [-7251.684561552452, -3362.5476943228705], "name": 601145301}, {"position": [1995.265438445415, 2555.302305676577], "name": 1320103929}, {"position": [-4501.884561555869, 1177.0523056782167], "name": 1315785380}, {"position": [-2494.634561550413, -812.5476943234844], "name": 1315785197}, {"position": [4711.51543844428, 4110.852305677426], "name": 1319641051}, {"position": [2099.315438449878, 6979.302305676782], "name": 1328999428}, {"position": [3069.865438448005, 3484.652305678182], "name": 1320104080}, {"position": [3217.6654384485914, 1460.0023056772216], "name": 475978939}, {"position": [2745.8154384447653, 3366.6523056776755], "name": 1320103931}, {"position": [-6086.234561550441, -5057.097694322721], "name": 267198436}, {"position": [-5740.284561554176, -4137.147694322607], "name": 267198437}, {"position": [-4928.3845615519795, 455.5023056767027], "name": 601145318}, {"position": [-4661.934561553949, 1815.552305677315], "name": 601145319}, {"position": [3811.8654384433626, 1371.6523056768183], "name": 1317670908}, {"position": [-3644.984561553599, 3507.8023056769325], "name": 601145322}, {"position": [4997.815438443354, 5144.902305676879], "name": 1319641067}, {"position": [2411.3654384478878, 1250.152305678043], "name": 475980794}, {"position": [2525.3654384442825, 2631.352305677126], "name": 1320103933}, {"position": [3048.2654384442753, 1183.7023056777696], "name": 1317670910}, {"position": [4137.365438445784, 4312.252305677333], "name": 1319641080}, {"position": [3305.215438444975, -7176.84769432303], "name": 1489398823}, {"position": [4992.3654384471665, 4844.302305677673], "name": 1319641082}, {"position": [981.0154384481962, -1791.3976943226828], "name": 1745207295}, {"position": [102.86543844983953, -4319.897694323061], "name": 4715107669}], "edges": [{"destination": 874287498, "path": [[-5933.134561551868, -7317.19769432182], [-5976.684561552758, -7306.447694322315]], "source": 267198467, "length": 8.618757003427644}, {"destination": 1632904379, "path": [[-5933.134561551868, -7317.19769432182], [-5879.884561551307, -7330.497694322702]], "source": 267198467, "length": 10.548518469895562}, {"destination": 267198545, "path": [[-5351.884561555664, -3598.4976943232996], [-5178.084561556772, -3423.0976943234737], [-5072.63456155016, -3319.19769432254], [-5002.184561554657, -3262.747694321888]], "source": 267198468, "length": 100.07873970208426}, {"destination": 1887913947, "path": [[-5351.884561555664, -3598.4976943232996], [-4890.484561556718, -3800.19769432316], [-4791.6345615561795, -3832.1976943223035]], "source": 267198468, "length": 118.63861686187172}, {"destination": 477641820, "path": [[-5993.234561550764, -3329.4976943221145], [-5776.584561552056, -3418.3476943230316]], "source": 267198469, "length": 45.69127052975799}, {"destination": 1315678711, "path": [[-5993.234561550764, -3329.4976943221145], [-6080.634561556053, -3464.097694322987]], "source": 267198469, "length": 34.23788149673229}, {"destination": 267198469, "path": [[-6354.234561555927, -3193.2976943220838], [-5993.234561550764, -3329.4976943221145]], "source": 267198470, "length": 75.03251167978681}, {"destination": 267198543, "path": [[-6354.234561555927, -3193.2976943220838], [-6254.684561554313, -3010.0476943228928], [-6193.884561554341, -2887.6476943224816]], "source": 267198470, "length": 74.50923464779132}, {"destination": 477641659, "path": [[-6886.634561553251, -2977.447694322066], [-7088.984561555379, -3257.897694322054]], "source": 267198471, "length": 73.28400463760354}, {"destination": 267198470, "path": [[-6886.634561553251, -2977.447694322066], [-6354.234561555927, -3193.2976943220838]], "source": 267198471, "length": 112.04436390069591}, {"destination": 495770284, "path": [[9176.71543844989, -4633.8476943219575], [9158.26543844389, -5044.147694322376], [9148.015438448454, -5123.347694322433], [9136.715438444298, -5216.797694322039], [9064.615438447276, -5637.497694323201], [9034.265438444323, -5768.347694322884], [8975.765438449911, -5973.647694322181], [8917.215438444258, -6160.147694322049], [8839.715438448082, -6376.547694323164], [8761.015438444985, -6605.597694322895], [8734.365438449742, -6668.0476943226095], [8702.51543844347, -6727.897694322138], [8641.015438449529, -6828.9476943217405], [8537.865438448478, -6978.097694322116], [8445.41543844457, -7116.897694322332]], "source": 848698028, "length": 576.3085006799796}, {"destination": 78011931, "path": [[-1424.2345615542717, -3591.9976943219467], [-1497.7845615504748, -3540.9976943228116], [-1555.2845615545152, -3488.9476943220643], [-1626.134561554693, -3425.1976943231457], [-1682.2845615536153, -3386.547694322672], [-1741.234561556837, -3350.947694322315], [-1785.3345615534977, -3329.7476943232596], [-1828.7845615532206, -3312.3976943230105], [-1873.6345615550931, -3299.3976943220814], [-1920.4345615548846, -3288.997694323115], [-1985.1345615506943, -3279.997694322745], [-2063.434561556221, -3273.647694323145], [-2137.0845615535927, -3273.0976943220467], [-2229.334561555163, -3280.4476943226746], [-2564.734561552484, -3334.147694323164], [-2806.034561551485, -3368.6476943231014], [-2893.5345615508368, -3379.6476943219745], [-2969.3845615526016, -3383.747694321926], [-3065.1345615524406, -3384.047694321879], [-3143.034561553293, -3381.6976943228383], [-3236.9345615563816, -3371.99769432317], [-3343.1345615539954, -3351.997694322151], [-3450.084561556821, -3326.0476943226536], [-3781.4845615500303, -3252.4976943228976], [-3846.7845615528518, -3237.4976943234656], [-3979.0845615570447, -3207.0476943228955], [-4167.284561553686, -3161.147694322963], [-4320.634561551628, -3114.3976943219795], [-4464.33456155404, -3049.99769432257], [-4623.084561551139, -2968.597694323449], [-4863.634561552033, -2845.897694323085], [-4968.2345615522645, -2792.497694322549], [-5150.934561555687, -2695.597694323482], [-5411.384561554655, -2558.8476943223527], [-5622.934561550608, -2460.5476943229123]], "source": 677797898, "length": 871.8786054976192}, {"destination": 1319641301, "path": [[3709.8654384450924, 4401.2023056776425], [3901.465438445939, 4438.852305677088], [3920.2654384453695, 4395.302305677973], [3941.3154384462246, 4397.002305676523]], "source": 1319641099, "length": 51.735892666254486}, {"destination": 1319641142, "path": [[3709.8654384450924, 4401.2023056776425], [3753.565438444184, 4176.852305677769]], "source": 1319641099, "length": 50.58063245417246}, {"destination": 1319641127, "path": [[3709.8654384450924, 4401.2023056776425], [3701.965438445143, 4441.752305677227]], "source": 1319641099, "length": 9.141449044631022}, {"destination": 1319641232, "path": [[4921.315438444652, 4277.752305677396], [5017.265438446828, 4273.702305678029], [5057.515438444681, 4285.202305677416], [5062.865438446806, 4319.602305677961], [5127.165438445047, 4315.202305678056]], "source": 1319641101, "length": 46.3268942214179}, {"destination": 1319641377, "path": [[4921.315438444652, 4277.752305677396], [4912.665438446595, 4388.402305677275]], "source": 1319641101, "length": 24.66239079007194}, {"destination": 1319641234, "path": [[4921.315438444652, 4277.752305677396], [4786.615438447939, 4285.202305677416], [4711.51543844428, 4301.252305676684]], "source": 1319641101, "length": 40.39473868019043}, {"destination": 1319641320, "path": [[4921.315438444652, 4277.752305677396], [4926.115438443901, 4216.3523056775175], [4915.8654384484635, 4117.202305677026], [4913.765438445239, 4096.702305677269]], "source": 1319641101, "length": 40.39886334364449}, {"destination": 1319641032, "path": [[5024.315438447502, 4619.402305676701], [5036.065438446258, 4546.702305677996], [5054.815438448657, 4452.652305676707], [5046.815438447538, 4375.002305677001]], "source": 1319641106, "length": 54.874564727454164}, {"destination": 1319641289, "path": [[5024.315438447502, 4619.402305676701], [5094.315438448404, 4624.202305677727]], "source": 1319641106, "length": 13.355900423711955}, {"destination": 1319641200, "path": [[5024.315438447502, 4619.402305676701], [4899.26543844632, 4610.902305676845], [4865.715438448604, 4606.352305676964]], "source": 1319641106, "length": 30.31965734344753}, {"destination": 1315785457, "path": [[35.46543844379357, -2734.447694322739], [38.86543844799917, -2752.5976943234555], [39.11543844736798, -2772.847694322067], [24.415438446112603, -2817.4476943227946]], "source": 476078083, "length": 18.896118624671075}, {"destination": 152847559, "path": [[35.46543844379357, -2734.447694322739], [26.915438446906137, -2717.09769432249], [16.465438449131398, -2700.6476943221005], [7.065438445863492, -2689.347694323274], [-87.78456155056347, -2499.5976943227306]], "source": 476078083, "length": 57.327623075903794}, {"destination": 475977913, "path": [[2264.715438442977, 948.9023056765689], [2231.1654384452595, 1213.452305677265]], "source": 475978414, "length": 59.1782130895955}, {"destination": 1317670866, "path": [[2264.715438442977, 948.9023056765689], [2168.715438443769, 952.352305677806], [2163.36543844875, 998.2523056777381], [2109.7154384435157, 998.2523056777381], [2109.7154384435157, 1032.6523056782833], [1903.1654384491503, 1048.7023056775513]], "source": 475978414, "length": 85.82696681572114}, {"destination": 1317671021, "path": [[2264.715438442977, 948.9023056765689], [2273.9654384480446, 798.8523056781105]], "source": 475978414, "length": 33.416058405716036}, {"destination": 1317681865, "path": [[2264.715438442977, 948.9023056765689], [2635.165438448439, 950.4523056769187]], "source": 475978414, "length": 70.45123809797508}, {"destination": 1319641356, "path": [[4266.765438444509, 4230.952305677604], [4301.115438444469, 4078.7523056771133]], "source": 1319641110, "length": 34.47267508181086}, {"destination": 1319641245, "path": [[4266.765438444509, 4230.952305677604], [4333.315438444174, 4243.902305677949]], "source": 1319641110, "length": 12.980489376252171}, {"destination": 1319641254, "path": [[4266.765438444509, 4230.952305677604], [4193.115438447137, 4216.602305676886]], "source": 1319641110, "length": 14.366337753067869}, {"destination": 1324294546, "path": [[4917.565438447014, 5475.202305676774], [4926.21543844507, 5452.65230567793]], "source": 1319641111, "length": 5.278956386150266}, {"destination": 481500517, "path": [[4917.565438447014, 5475.202305676774], [4891.46543844754, 5543.202305677397]], "source": 1319641111, "length": 15.916343515261273}, {"destination": 1319641238, "path": [[4917.565438447014, 5475.202305676774], [5148.965438444009, 5521.352305677851], [5237.115438447404, 5536.002305676746], [5435.715438444788, 5588.102305678078], [5602.015438448405, 5670.702305677011]], "source": 1319641111, "length": 138.35698493706747}, {"destination": 1320103696, "path": [[3476.0154384443354, 1820.3523056765648], [3614.365438444622, 1865.2523056772452], [3643.1654384472267, 1879.002305678057]], "source": 1320103941, "length": 34.415157841236386}, {"destination": 1320103786, "path": [[3476.0154384443354, 1820.3523056765648], [3480.265438447816, 1872.1023056773588], [3480.265438447816, 1924.902305677989], [3482.1154384445663, 2043.7023056771864]], "source": 1320103941, "length": 49.70142371771354}, {"destination": 1320103597, "path": [[3476.0154384443354, 1820.3523056765648], [3458.815438449392, 1814.802305677432], [3424.865438447, 1804.6023056772497]], "source": 1320103941, "length": 10.339151180920682}, {"destination": 477626301, "path": [[-7237.384561555871, -5311.147694323282], [-7073.23456155251, -4832.647694323456]], "source": 477626400, "length": 110.897019860783}, {"destination": 267198431, "path": [[-7237.384561555871, -5311.147694323282], [-6937.834561554723, -5381.69769432173]], "source": 477626400, "length": 59.080814377703014}, {"destination": 602259365, "path": [[-7237.384561555871, -5311.147694323282], [-7345.984561553109, -5682.547694322082]], "source": 477626400, "length": 85.13797692328515}, {"destination": 477635095, "path": [[-7237.384561555871, -5311.147694323282], [-7849.584561554934, -5171.497694322014]], "source": 477626400, "length": 120.48159148349643}, {"destination": 1779937392, "path": [[7073.315438447025, -6768.647694322282], [7041.7654384442585, -6813.147694321841], [7025.315438447422, -6874.747694322281], [7030.915438448915, -6960.647694322475], [7098.415438449024, -7039.847694322532], [7117.165438444317, -7051.647694321872], [7178.065438445457, -7090.097694321784]], "source": 1582473249, "length": 85.37222966307841}, {"destination": 1582473433, "path": [[7073.315438447025, -6768.647694322282], [7046.565438443508, -6671.497694322071]], "source": 1582473249, "length": 22.196017714323254}, {"destination": 1582473536, "path": [[7073.315438447025, -6768.647694322282], [7116.66543844558, -6720.447694322118], [7156.3154384435275, -6685.047694322321]], "source": 1582473249, "length": 24.422523524397782}, {"destination": 1319641175, "path": [[4293.06543844632, 4379.252305676929], [4137.365438445784, 4381.052305676647]], "source": 1319641123, "length": 29.61498592401286}, {"destination": 115005745, "path": [[8249.16543844978, -1487.697694322776], [9374.21543844863, -1066.0476943229469]], "source": 85647366, "length": 233.5938152773596}, {"destination": 602667420, "path": [[8249.16543844978, -1487.697694322776], [7954.265438449682, -1335.2976943217243], [8936.465438445395, -71.64769432321805], [8987.865438449206, -11.447694323152291]], "source": 85647366, "length": 419.5370487827052}, {"destination": 602392045, "path": [[8249.16543844978, -1487.697694322776], [8130.26543844586, -1559.5476943222052], [8044.865438449733, -1645.597694322376], [7964.915438449793, -1743.8476943230085], [7879.91543844413, -1902.6976943230522], [7774.065438447053, -2129.9476943230643], [7665.365438448645, -2288.847694321916], [7620.015438448036, -2355.0976943234045], [7145.315438449984, -2852.4476943232457]], "source": 85647366, "length": 373.4309450725432}, {"destination": 602392070, "path": [[8249.16543844978, -1487.697694322776], [8665.865438445053, -1704.7976943231902], [9186.515438443621, -2003.947694323216], [9496.615438443712, -2167.947694323047], [9735.165438449656, -2276.747694322623], [10473.11543844387, -2367.74769432202]], "source": 85647366, "length": 474.6074768772096}, {"destination": 1319641256, "path": [[3701.965438445143, 4441.752305677227], [3756.665438444884, 4459.502305676821], [3759.3154384438776, 4537.502305677066], [3810.3154384430127, 4551.252305677877], [4032.9154384437516, 4558.152305676799], [4046.315438444026, 4535.202305676833], [4051.715438443182, 4491.652305677718], [4137.365438445784, 4488.902305677556]], "source": 1319641127, "length": 112.75986886575873}, {"destination": 1319641099, "path": [[3701.965438445143, 4441.752305677227], [3709.8654384450924, 4401.2023056776425]], "source": 1319641127, "length": 9.141449044631022}, {"destination": 1319641380, "path": [[3701.965438445143, 4441.752305677227], [3694.9654384486053, 4477.852305678099], [3673.6654384483813, 4625.302305678148]], "source": 1319641127, "length": 41.17871425978036}, {"destination": 5017787785, "path": [[-7855.784561556334, -1204.1976943226728], [-7997.184561553184, -1137.3976943218622]], "source": 1890811948, "length": 30.720378246856722}, {"destination": 1469016633, "path": [[-6798.534561553993, -1545.6976943220013], [-6835.484561555915, -1589.6976943228224]], "source": 1469016754, "length": 12.046330004584373}, {"destination": 1469016653, "path": [[-6798.534561553993, -1545.6976943220013], [-6609.134561550434, -1636.197694322661]], "source": 1469016754, "length": 41.259030526557844}, {"destination": 1469016799, "path": [[-6798.534561553993, -1545.6976943220013], [-6699.584561552285, -1429.4476943224054]], "source": 1469016754, "length": 31.975629042812013}, {"destination": 87752549, "path": [[-8857.134561552015, 208.8523056773539], [-8628.734561554553, 151.20230567688964], [-8547.4345615566, 130.6523056765485]], "source": 479305781, "length": 61.41042387972267}, {"destination": 479302758, "path": [[-8857.134561552015, 208.8523056773539], [-9035.184561554388, 280.1523056774613], [-9110.334561555079, 329.80230567680735]], "source": 479305781, "length": 55.44908935871795}, {"destination": 654400890, "path": [[3753.565438444184, 4176.852305677769], [3640.265438448864, 4142.602305677201]], "source": 1319641142, "length": 22.854608510193238}, {"destination": 1319641099, "path": [[3753.565438444184, 4176.852305677769], [3709.8654384450924, 4401.2023056776425]], "source": 1319641142, "length": 50.58063245417246}, {"destination": 1319641235, "path": [[3753.565438444184, 4176.852305677769], [3982.5654384486597, 4221.252305677936]], "source": 1319641142, "length": 44.65841837044864}, {"destination": 1320103916, "path": [[2332.015438447854, 2623.5523056765687], [2333.2154384476667, 2651.102305677]], "source": 1320103945, "length": 6.131241550880289}, {"destination": 1320103933, "path": [[2332.015438447854, 2623.5523056765687], [2479.7654384443035, 2635.9523056775915], [2525.3654384442825, 2631.352305677126]], "source": 1320103945, "length": 36.96631032138032}, {"destination": 1316471863, "path": [[2332.015438447854, 2623.5523056765687], [2328.0654384478794, 2530.7523056774526]], "source": 1320103945, "length": 20.65145709123766}, {"destination": 1319641051, "path": [[4703.46543844613, 4186.552305677438], [4711.51543844428, 4110.852305677426]], "source": 1319641145, "length": 16.904372687919043}, {"destination": 1319641336, "path": [[6567.465438443776, 6198.302305676862], [6689.915438442995, 6300.402305678077]], "source": 1319641150, "length": 32.52643631009339}, {"destination": 1315785233, "path": [[-3053.6345615530536, -2493.897694321845], [-3147.0345615502993, -2452.4476943224017]], "source": 1315785397, "length": 20.010668640834645}, {"destination": 1324295201, "path": [[-186.23456155353324, 5638.552305677891], [-175.18456155585227, 5677.052305676611]], "source": 1324294208, "length": 8.816225810221038}, {"destination": 1324294516, "path": [[-186.23456155353324, 5638.552305677891], [-213.43456155165086, 5579.4023056776605]], "source": 1324294208, "length": 14.134862485723167}, {"destination": 1324294933, "path": [[-186.23456155353324, 5638.552305677891], [-52.08456155259, 5599.552305676881]], "source": 1324294208, "length": 26.948288204862415}, {"destination": 1777869681, "path": [[7538.465438443609, -7923.347694323013], [7601.515438445005, -8013.897694322481], [7519.715438448316, -8145.697694322606], [7341.3154384454065, -8377.347694322523], [7310.465438443714, -8381.897694322404], [7269.515438444785, -8448.397694323263]], "source": 1777868868, "length": 140.96536484533283}, {"destination": 1777868876, "path": [[7538.465438443609, -7923.347694323013], [7696.315438444401, -7745.997694321715]], "source": 1777868868, "length": 49.56202407521563}, {"destination": 1769172086, "path": [[7538.465438443609, -7923.347694323013], [6921.565438446464, -7442.897694321715], [6862.5654384462105, -7423.397694322986], [6808.915438448083, -7440.597694323259], [6646.615438448578, -7611.447694323204], [6199.665438444413, -8070.497694323109], [6186.615438444676, -8111.297694322062]], "source": 1777868868, "length": 372.7753857229991}, {"destination": 1779937921, "path": [[8240.815438448124, -7155.497694322222], [8183.815438449927, -7228.147694322118]], "source": 1777868870, "length": 19.45504747164724}, {"destination": 3733749299, "path": [[8240.815438448124, -7155.497694322222], [8239.465438443005, -7140.597694322181], [8292.015438449596, -7056.297694322921]], "source": 1777868870, "length": 24.56800709200769}, {"destination": 1582473540, "path": [[8240.815438448124, -7155.497694322222], [8300.465438445315, -7056.047694321776]], "source": 1777868870, "length": 24.855321762584467}, {"destination": 1779937921, "path": [[7696.315438444401, -7745.997694321715], [7754.365438444211, -7744.447694323142], [7806.715438448464, -7708.897694323369], [8183.815438449927, -7228.147694322118]], "source": 1777868876, "length": 152.48666704136835}, {"destination": 1777868868, "path": [[7696.315438444401, -7745.997694321715], [7538.465438443609, -7923.347694323013]], "source": 1777868876, "length": 49.56202407521563}, {"destination": 495771025, "path": [[7696.315438444401, -7745.997694321715], [7364.115438448948, -7524.297694322612], [7098.165438449655, -7315.997694322007], [6831.715438444518, -7071.397694321746], [6690.915438447575, -6548.497694321753], [6697.165438446007, -6475.697694321881], [7719.565438449649, -6104.29769432308], [7810.5154384431335, -6075.097694322906], [7892.815438445667, -6067.0476943229805], [7959.065438448932, -6065.197694322677]], "source": 1777868876, "length": 616.6583727377607}, {"destination": 3055920274, "path": [[-6432.43456155318, 1512.1023056767767], [-6551.084561550624, 1253.952305678041]], "source": 479322189, "length": 61.68524213831405}, {"destination": 654575691, "path": [[-6432.43456155318, 1512.1023056767767], [-6740.734561553552, 1585.152305677795], [-6976.234561555828, 1642.9023056776514], [-7027.334561556131, 1655.4523056768744]], "source": 479322189, "length": 117.544129929776}, {"destination": 479299038, "path": [[-6432.43456155318, 1512.1023056767767], [-5949.784561551041, 1401.1523056769447]], "source": 479322189, "length": 95.04757951803725}, {"destination": 93246191, "path": [[-6432.43456155318, 1512.1023056767767], [-6334.0345615543465, 1752.9523056776243], [-6259.184561550057, 1930.4523056771218], [-6185.784561552055, 2109.402305677577], [-6167.834561551899, 2170.4023056781098]], "source": 479322189, "length": 154.86276219771594}, {"destination": 1324295101, "path": [[4405.615438443533, 4854.002305677341], [4394.365438443515, 4997.90230567676]], "source": 1324294222, "length": 32.07356726531951}, {"destination": 602392067, "path": [[8782.265438448178, -6686.097694322158], [9207.865438447981, -6881.697694321787]], "source": 1777868879, "length": 91.8755270945989}, {"destination": 495769239, "path": [[8782.265438448178, -6686.097694322158], [8546.115438448964, -7071.397694321746]], "source": 1777868879, "length": 96.73915870417916}, {"destination": 267198469, "path": [[-5681.5345615532915, -2902.79769432189], [-5993.234561550764, -3329.4976943221145]], "source": 267198544, "length": 111.8842160642737}, {"destination": 267198543, "path": [[-5681.5345615532915, -2902.79769432189], [-5735.43456155079, -2893.697694322128], [-5856.584561556133, -2885.7476943233705], [-6006.884561550407, -2881.5476943222507], [-6193.884561554341, -2887.6476943224816]], "source": 267198544, "length": 97.73495870995069}, {"destination": 267198544, "path": [[-5002.184561554657, -3262.747694321888], [-5043.184561550617, -3203.447694323458], [-5065.534561552454, -3175.74769432305], [-5106.634561556689, -3134.697694322952], [-5170.234561553854, -3083.9976943219935], [-5202.28456155536, -3060.9976943232195], [-5250.584561551364, -3035.797694321829], [-5322.634561551354, -3006.6476943222397], [-5418.73456155173, -2968.747694323426], [-5499.784561550314, -2943.197694323274], [-5584.6345615506725, -2920.2476943233078], [-5681.5345615532915, -2902.79769432189]], "source": 267198545, "length": 157.53159937421532}, {"destination": 477616429, "path": [[-5002.184561554657, -3262.747694321888], [-4851.034561554002, -3071.8976943227008], [-4777.134561550156, -2980.547694322766]], "source": 267198545, "length": 75.96187516386685}, {"destination": 477615709, "path": [[-5002.184561554657, -3262.747694321888], [-4972.584561556914, -3273.84769432193], [-4936.484561554266, -3289.9976943223664], [-4895.034561556599, -3318.547694322049], [-4811.784561553623, -3369.2476943230076], [-4653.334561552924, -3455.547694322547]], "source": 267198545, "length": 79.17285111029683}, {"destination": 1316471808, "path": [[1213.765438443204, 3629.2023056780918], [1373.5654384490203, 3606.552305678079]], "source": 1316472163, "length": 30.8062185780794}, {"destination": 1324294370, "path": [[-437.484561551571, 5834.452305677473], [-406.13456155114136, 5822.052305678227], [-229.13456155038148, 5762.402305677483]], "source": 1324294228, "length": 42.75375591253733}, {"destination": 1324295132, "path": [[-437.484561551571, 5834.452305677473], [-639.4845615531608, 5897.752305678239]], "source": 1324294228, "length": 40.917281358785765}, {"destination": 1324294938, "path": [[-437.484561551571, 5834.452305677473], [-476.08456155501244, 5762.502305676875]], "source": 1324294228, "length": 17.604828162493245}, {"destination": 1324295231, "path": [[-437.484561551571, 5834.452305677473], [-403.4845615521476, 5897.752305678239], [-347.5345615555625, 6015.352305677624]], "source": 1324294228, "length": 43.72691971466901}, {"destination": 1317671296, "path": [[2970.1654384481913, 1258.7023056767066], [2823.0654384486797, 1250.5523056773882]], "source": 1317670926, "length": 28.033775641352598}, {"destination": 1317670907, "path": [[2970.1654384481913, 1258.7023056767066], [2970.5654384457603, 1213.8523056766103], [2970.7654384480975, 1179.4023056772573]], "source": 1317670926, "length": 17.635548534187212}, {"destination": 1317670895, "path": [[2970.1654384481913, 1258.7023056767066], [3029.5654384460136, 1262.0023056779673], [3174.4154384441003, 1266.6023056766562]], "source": 1317670926, "length": 38.88598421919251}, {"destination": 1324295205, "path": [[-86.88456155425683, 5986.2023056780345], [-125.63456155589847, 5850.552305677325]], "source": 1324294230, "length": 31.054481249467717}, {"destination": 1324295231, "path": [[-86.88456155425683, 5986.2023056780345], [-347.5345615555625, 6015.352305677624]], "source": 1324294230, "length": 49.99664365968944}, {"destination": 1319641080, "path": [[4137.365438445784, 4381.052305676647], [4137.365438445784, 4312.252305677333]], "source": 1319641175, "length": 15.300222603262329}, {"destination": 1319641123, "path": [[4137.365438445784, 4381.052305676647], [4293.06543844632, 4379.252305676929]], "source": 1319641175, "length": 29.61498592401286}, {"destination": 1319641364, "path": [[4137.365438445784, 4381.052305676647], [4137.365438445784, 4413.202305677543]], "source": 1319641175, "length": 7.149841962366826}, {"destination": 1316472131, "path": [[1170.8654384463557, 3140.6023056774757], [1211.1154384442102, 3273.652305677999], [1235.565438449271, 3367.302305678166]], "source": 1316472164, "length": 51.90274070639953}, {"destination": 1890811994, "path": [[-9134.484561556634, -1829.6976943226184], [-9138.184561550133, -1831.8476943228745], [-9140.784561552096, -1832.5976943227574], [-9145.284561554945, -1832.7476943227339], [-9149.584561555457, -1831.5476943229214], [-9151.584561550408, -1830.4476943225013], [-9154.534561552908, -1827.5476943223623], [-9156.184561554426, -1823.997694321733], [-9156.334561552627, -1820.1476943229268], [-9155.634561551551, -1817.8976943232783], [-9153.384561550127, -1814.5976943220176], [-9149.934561555994, -1812.1476943218086], [-9144.784561556207, -1810.7476943232114], [-9140.284561553359, -1811.0476943231647], [-9136.184561555183, -1812.6476943223224], [-9133.934561553759, -1814.2976943220647], [-9131.534561554134, -1817.5476943227409], [-9130.634561550722, -1822.8476943225046], [-9131.834561550533, -1826.5476943231106], [-9134.484561556634, -1829.6976943226184]], "source": 1890811994, "length": 15.404450749028369}, {"destination": 1890811994, "path": [[-9134.484561556634, -1829.6976943226184], [-9131.834561550533, -1826.5476943231106], [-9130.634561550722, -1822.8476943225046], [-9131.534561554134, -1817.5476943227409], [-9133.934561553759, -1814.2976943220647], [-9136.184561555183, -1812.6476943223224], [-9140.284561553359, -1811.0476943231647], [-9144.784561556207, -1810.7476943232114], [-9149.934561555994, -1812.1476943218086], [-9153.384561550127, -1814.5976943220176], [-9155.634561551551, -1817.8976943232783], [-9156.334561552627, -1820.1476943229268], [-9156.184561554426, -1823.997694321733], [-9154.534561552908, -1827.5476943223623], [-9151.584561550408, -1830.4476943225013], [-9149.584561555457, -1831.5476943229214], [-9145.284561554945, -1832.7476943227339], [-9140.784561552096, -1832.5976943227574], [-9138.184561550133, -1831.8476943228745], [-9134.484561556634, -1829.6976943226184]], "source": 1890811994, "length": 15.40445074902837}, {"destination": 1890761668, "path": [[-9134.484561556634, -1829.6976943226184], [-9130.234561553152, -1830.997694321823], [-9127.384561551822, -1833.2476943232477]], "source": 1890811994, "length": 1.6011463283149625}, {"destination": 1320103997, "path": [[2160.765438446788, 3796.6023056767995], [2423.465438447181, 3798.902305677032], [2450.2654384477296, 3837.9023056780425], [2568.315438445268, 3860.8023056774246], [2608.5154384460907, 3847.0523056766124], [3071.0154384436805, 4014.702305678242]], "source": 1320103951, "length": 186.8182854605642}, {"destination": 1324294810, "path": [[3614.365438444622, 4764.552305676517], [3600.9154384473163, 4803.552305677527], [3583.0654384483296, 4861.502305677945]], "source": 1324294236, "length": 22.37016812487103}, {"destination": 477640984, "path": [[-6978.834561550684, -6571.147694321766], [-6504.284561550832, -6655.497694323387]], "source": 267198558, "length": 92.16240604467771}, {"destination": 477634433, "path": [[-6978.834561550684, -6571.147694321766], [-6769.63456155022, -6206.997694322425]], "source": 267198558, "length": 90.22542796725111}, {"destination": 1316236699, "path": [[-926.1345615527716, 1945.9023056782598], [-882.3845615566484, 2013.0523056778316]], "source": 1316236476, "length": 17.094969240848563}, {"destination": 1316236957, "path": [[-926.1345615527716, 1945.9023056782598], [-1029.5345615531915, 1787.0523056782163]], "source": 1316236476, "length": 40.430904041300074}, {"destination": 1316236647, "path": [[-926.1345615527716, 1945.9023056782598], [-1047.3845615521782, 2021.20230567715], [-1016.4845615534546, 2081.802305676561]], "source": 1316236476, "length": 43.20124065636571}, {"destination": 1324294881, "path": [[3767.215438443827, 5014.602305676519], [3702.865438448555, 5003.152305677716], [3468.1154384443857, 4960.102305677338]], "source": 1324294241, "length": 58.16277798786177}, {"destination": 714081217, "path": [[6189.165438449607, 8930.152305676842], [6164.11543844464, 8957.702305677272], [6091.4154384477115, 9118.20230567706], [6054.415438448757, 9145.552305676929], [6001.815438445135, 9155.352305677767], [5950.8154384459995, 9149.152305678143], [5757.165438446065, 9079.652305677755], [5655.665438446533, 9048.502305677886], [5572.415438443557, 9025.35230567736], [5472.965438443111, 9001.752305676902], [5394.915438444059, 8981.252305677146], [5308.465438446319, 8950.552305677207], [5236.115438449929, 8915.402305676778], [5166.065438444889, 8878.252305677848], [5074.6654384497, 8819.002305678225], [4958.5654384429745, 8744.652305678002]], "source": 4225630306, "length": 286.3574460386721}, {"destination": 4225630308, "path": [[6189.165438449607, 8930.152305676842], [6222.265438445618, 8905.402305677157]], "source": 4225630306, "length": 8.362944063253325}, {"destination": 482728439, "path": [[5413.01543844952, 1296.652305677881], [5442.315438443757, 1348.402305676899]], "source": 882614371, "length": 12.786713751272812}, {"destination": 475979135, "path": [[5413.01543844952, 1296.652305677881], [5137.56543844579, 1404.4523056782054], [4931.5654384471945, 1485.202305676836]], "source": 882614371, "length": 100.70549468509779}, {"destination": 482734042, "path": [[6222.265438445618, 8905.402305677157], [6181.965438443626, 8860.952305678182], [5606.365438445948, 8226.10230567733], [5552.165438444945, 8154.752305676638]], "source": 4225630308, "length": 210.09169121324263}, {"destination": 4225630306, "path": [[6222.265438445618, 8905.402305677157], [6189.165438449607, 8930.152305676842]], "source": 4225630308, "length": 8.362944063253325}, {"destination": 482734053, "path": [[6222.265438445618, 8905.402305677157], [6261.565438443029, 8886.002305677821], [6321.465438446694, 8873.55230567799], [6346.415438443387, 8862.852305677294], [6366.515438443798, 8846.902305677417], [6592.715438443975, 8607.752305676897], [6610.315438443593, 8577.90230567801], [6616.765438444361, 8540.402305676764], [6608.765438443243, 8491.102305677956], [6608.765438443243, 8456.802305676803], [6622.3154384488225, 8414.102305676963], [6649.715438449277, 8366.002305677966], [6663.865438447658, 8322.752305677028], [6688.415438446782, 8294.052305677369], [6701.415438449487, 8280.352305677141], [6717.415438444618, 8273.952305676958]], "source": 4225630308, "length": 180.77186544654165}, {"destination": 1324294395, "path": [[2403.465438447938, 5160.5523056768025], [2388.8154384437144, 5120.9023056770775], [2357.415438446253, 5084.652305678006], [2335.265438446754, 5038.352305676952], [2329.5154384470607, 4935.552305678215]], "source": 476555427, "length": 53.29333895882344}, {"destination": 1324294324, "path": [[2403.465438447938, 5160.5523056768025], [2627.165438447321, 5169.752305677733]], "source": 476555427, "length": 42.59502214752425}, {"destination": 481500509, "path": [[2403.465438447938, 5160.5523056768025], [2089.065438447335, 5135.802305677117], [1065.8154384444174, 5059.452305676615], [956.3654384479037, 5038.202305676976]], "source": 476555427, "length": 276.7484453710126}, {"destination": 1324295149, "path": [[2403.465438447938, 5160.5523056768025], [2409.3154384488003, 5348.602305677019]], "source": 476555427, "length": 41.835299302861166}, {"destination": 267198570, "path": [[-7218.084561550597, -7591.697694323329], [-7191.284561550048, -7290.49769432244], [-7155.784561554412, -6988.69769432342]], "source": 267198568, "length": 134.63341818386832}, {"destination": 477643018, "path": [[-7218.084561550597, -7591.697694323329], [-7298.7345615516115, -7573.24769432266], [-7700.28456155103, -7524.447694322589], [-7780.984561556181, -7511.997694322758], [-7859.984561555677, -7494.547694323117], [-8005.0845615531325, -7450.747694322857]], "source": 267198568, "length": 153.35753407606555}, {"destination": 477644839, "path": [[-7218.084561550597, -7591.697694323329], [-6940.934561555423, -7682.347694322189], [-6648.584561553151, -7762.747694322059], [-6316.234561552392, -7848.447694323469]], "source": 267198568, "length": 180.81897685227648}, {"destination": 1324295049, "path": [[3984.3654384483784, 4954.102305678276], [3925.2654384469565, 4947.7523056769005]], "source": 1324294249, "length": 11.328784771231499}, {"destination": 1324294354, "path": [[3984.3654384483784, 4954.102305678276], [4096.915438445592, 4966.102305678177]], "source": 1324294249, "length": 21.571452739376912}, {"destination": 1324294834, "path": [[3984.3654384483784, 4954.102305678276], [3997.915438446853, 4842.5523056767615], [4102.515438447085, 4844.852305676995], [4105.165438446079, 4798.952305677062]], "source": 1324294249, "length": 55.06225740476374}, {"destination": 477640961, "path": [[-7155.784561554412, -6988.69769432342], [-6694.8345615500675, -7113.897694322802]], "source": 267198570, "length": 91.96274319920961}, {"destination": 477636742, "path": [[-7155.784561554412, -6988.69769432342], [-7080.684561550754, -6770.397694323194]], "source": 267198570, "length": 50.604414630014986}, {"destination": 477625999, "path": [[-7155.784561554412, -6988.69769432342], [-7460.7345615547165, -6907.047694323154]], "source": 267198570, "length": 60.760901537609854}, {"destination": 602392064, "path": [[10059.265438449927, -7330.947694322632], [10825.815438444408, -7543.847694321926]], "source": 1491042413, "length": 153.2502545292772}, {"destination": 1491042488, "path": [[10059.265438449927, -7330.947694322632], [9937.165438444139, -7600.847694321899], [9846.415438445889, -7809.647694323019]], "source": 1491042413, "length": 113.89393824650779}, {"destination": 483098227, "path": [[-2185.1845615543652, 3026.102305677014], [-2498.1845615528186, 3153.2523056778673]], "source": 483090542, "length": 65.90228696435676}, {"destination": 483098883, "path": [[-2185.1845615543652, 3026.102305677014], [-1972.9345615502325, 3002.802305678287]], "source": 483090542, "length": 40.6976360660632}, {"destination": 1316236839, "path": [[-2185.1845615543652, 3026.102305677014], [-2232.4845615528943, 2961.9023056781657]], "source": 483090542, "length": 16.875023406889618}, {"destination": 1319641377, "path": [[4865.715438448604, 4606.352305676964], [4912.665438446595, 4388.402305677275]], "source": 1319641200, "length": 49.28566350184585}, {"destination": 1319641106, "path": [[4865.715438448604, 4606.352305676964], [4899.26543844632, 4610.902305676845], [5024.315438447502, 4619.402305676701]], "source": 1319641200, "length": 30.31965734344753}, {"destination": 1319641077, "path": [[4865.715438448604, 4606.352305676964], [4700.215438447231, 4583.802305678119]], "source": 1319641200, "length": 31.873431437934176}, {"destination": 1324294377, "path": [[4520.915438448014, 5223.352305677054], [4514.165438443741, 5261.602305678181]], "source": 1324294259, "length": 8.603057026210317}, {"destination": 1324294553, "path": [[4703.31543844793, 5326.5523056769125], [4719.41543844423, 5287.552305677678], [4767.71543844734, 5289.852305677911]], "source": 1324294261, "length": 18.399358508727666}, {"destination": 1324294586, "path": [[4703.31543844793, 5326.5523056769125], [4856.215438444167, 5354.102305677344]], "source": 1324294261, "length": 29.71888461708759}, {"destination": 1324294612, "path": [[4703.31543844793, 5326.5523056769125], [4649.6654384498015, 5328.8523056771455], [4632.615438445953, 5383.252305676933]], "source": 1324294261, "length": 22.742366345912856}, {"destination": 476559738, "path": [[5232.2654384440175, 3413.30230567749], [5213.315438446387, 3638.402305677246], [5197.465438449455, 3741.502305677713], [5188.365438449693, 3800.652305677943], [5184.915438448456, 3823.202305676787], [5167.21543844767, 3938.4023056765473]], "source": 1319641206, "length": 117.47943584866688}, {"destination": 482729685, "path": [[5232.2654384440175, 3413.30230567749], [5241.965438443685, 3298.152305676538], [5243.465438447003, 3280.3023056775514], [5251.9654384468595, 3179.60230567671], [5226.065438449723, 3065.402305677978]], "source": 1319641206, "length": 77.97821849183595}, {"destination": 482729885, "path": [[5232.2654384440175, 3413.30230567749], [5524.21543844872, 3434.2023056765925], [5727.315438448954, 3446.902305677568], [5854.015438444549, 3454.802305677518], [6020.065438448796, 3440.9023056767296], [6114.115438442979, 3433.0523056773645], [6204.965438449506, 3425.452305677368], [6300.215438443502, 3417.502305676834], [6223.115438444893, 3039.2023056773355]], "source": 1319641206, "length": 289.2721994402804}, {"destination": 1324294785, "path": [[-266.48456155697886, 5700.352305677115], [-390.03456155484173, 5753.252305677137]], "source": 1324294264, "length": 26.279115347718633}, {"destination": 1324294370, "path": [[-266.48456155697886, 5700.352305677115], [-229.13456155038148, 5762.402305677483]], "source": 1324294264, "length": 15.520418876945106}, {"destination": 1324295129, "path": [[-266.48456155697886, 5700.352305677115], [-293.48456155275926, 5650.002305676693], [-323.78456155157664, 5609.2523056765485]], "source": 1324294264, "length": 23.058460002176226}, {"destination": 1324295201, "path": [[-266.48456155697886, 5700.352305677115], [-234.48456155250597, 5686.7023056774715], [-175.18456155585227, 5677.052305676611]], "source": 1324294264, "length": 18.282283811815805}, {"destination": 1324294320, "path": [[-557.1845615506277, 5611.5523056767815], [-586.8845615566443, 5556.302305677718]], "source": 1324294266, "length": 13.523551466234158}, {"destination": 1324294322, "path": [[-557.1845615506277, 5611.5523056767815], [-667.7845615570277, 5651.952305678165]], "source": 1324294266, "length": 22.87372653442728}, {"destination": 1324294292, "path": [[-557.1845615506277, 5611.5523056767815], [-528.6345615544974, 5664.702305677949]], "source": 1324294266, "length": 13.007886477511088}, {"destination": 1324294575, "path": [[-557.1845615506277, 5611.5523056767815], [-363.43456155663034, 5527.602305678059]], "source": 1324294266, "length": 41.30967815921283}, {"destination": 1324294590, "path": [[4298.3154384472755, 4856.302305677574], [4293.8654384485635, 4891.952305676739]], "source": 1324294267, "length": 7.9734460306094075}, {"destination": 1324294481, "path": [[3112.7654384448533, 5326.5523056769125], [2756.165438448477, 5342.602305677957], [2659.415438444057, 5344.302305678283]], "source": 1324294269, "length": 86.32141090853234}, {"destination": 1319641256, "path": [[4137.365438445784, 4470.502305677471], [4137.365438445784, 4488.902305677556]], "source": 1319641217, "length": 4.0921466222098575}, {"destination": 1319641379, "path": [[4137.365438445784, 4470.502305677471], [4287.715438444195, 4464.1023056772865]], "source": 1319641217, "length": 28.630234677663616}, {"destination": 1319641364, "path": [[4137.365438445784, 4470.502305677471], [4137.365438445784, 4413.202305677543]], "source": 1319641217, "length": 12.743291646845906}, {"destination": 1328999433, "path": [[2539.8654384432007, 7801.052305676848], [2546.9654384480123, 7659.202305676516]], "source": 623412587, "length": 31.575130806936844}, {"destination": 1328999500, "path": [[2539.8654384432007, 7801.052305676848], [2845.2154384481787, 7847.852305676639]], "source": 623412587, "length": 59.00365032072191}, {"destination": 623413798, "path": [[2539.8654384432007, 7801.052305676848], [2182.4654384445807, 7730.402305677231], [1968.165438448466, 7694.8523056774575], [1720.5654384468971, 7674.652305677654], [1442.0154384495731, 7665.752305676677]], "source": 623412587, "length": 211.61621977971208}, {"destination": 623412583, "path": [[2539.8654384432007, 7801.052305676848], [2518.7154384482824, 7925.952305678053], [2453.7654384459984, 8263.902305676751]], "source": 623412587, "length": 104.23186823871835}, {"destination": 1319641377, "path": [[4708.415438443581, 4378.852305677583], [4912.665438446595, 4388.402305677275]], "source": 1319641221, "length": 38.904072103238924}, {"destination": 1319641234, "path": [[4708.415438443581, 4378.852305677583], [4711.51543844428, 4301.252305676684]], "source": 1319641221, "length": 17.26781302143501}, {"destination": 1319641077, "path": [[4708.415438443581, 4378.852305677583], [4700.215438447231, 4583.802305678119]], "source": 1319641221, "length": 45.605582416483934}, {"destination": 1319641245, "path": [[4365.515438443879, 4133.802305677392], [4333.315438444174, 4243.902305677949]], "source": 1319641222, "length": 25.239437629319692}, {"destination": 5017787784, "path": [[-8401.884561550332, -1067.147694323367], [-8381.284561551183, -1032.2976943228923]], "source": 5017787781, "length": 8.684386970497103}, {"destination": 1890761668, "path": [[-9079.734561552756, -1898.1476943231712], [-9127.384561551822, -1833.2476943232477]], "source": 1890812042, "length": 17.04137282862085}, {"destination": 1320103977, "path": [[2972.0154384449415, 4253.25230567708], [2485.1654384434596, 4097.102305676614], [2211.7154384488913, 4076.4523056768808]], "source": 1320103959, "length": 151.10013607149244}, {"destination": 1320104083, "path": [[2972.0154384449415, 4253.25230567708], [3005.5154384456273, 4161.302305677239], [3027.765438446295, 4111.502305677916]], "source": 1320103959, "length": 33.27508129032165}, {"destination": 1320103580, "path": [[2972.0154384449415, 4253.25230567708], [2929.215438449262, 4367.102305677051]], "source": 1320103959, "length": 26.59547972802681}, {"destination": 76482739, "path": [[-2653.634561553986, 3230.3523056782524], [-3506.1845615516063, 3554.552305677916]], "source": 385114252, "length": 177.44958572964973}, {"destination": 476560259, "path": [[-2653.634561553986, 3230.3523056782524], [-2959.6845615529332, 2748.7023056771422], [-2994.1345615540627, 2695.7023056777275]], "source": 385114252, "length": 135.3926602981245}, {"destination": 639305926, "path": [[-2653.634561553986, 3230.3523056782524], [-2386.8345615554176, 3690.1523056780406], [-2337.5345615548326, 3782.35230567725]], "source": 385114252, "length": 136.69894136551807}, {"destination": 483098227, "path": [[-2653.634561553986, 3230.3523056782524], [-2498.1845615528186, 3153.2523056778673]], "source": 385114252, "length": 34.17649183701353}, {"destination": 495770430, "path": [[8263.665438448697, -7217.647694321982], [8353.0154384448, -7016.447694322636], [8428.865438446564, -6886.997694323327], [8517.665438446897, -6745.947694323462], [8578.015438445163, -6635.897694321713], [8730.115438446262, -6310.2476943228685], [8795.365438444947, -6179.547694323162]], "source": 848698050, "length": 252.3005836821754}, {"destination": 848698015, "path": [[8263.665438448697, -7217.647694321982], [8421.065438447784, -6989.14769432335], [8560.515438446713, -6772.147694322328], [8615.515438449962, -6671.847694322608], [8653.515438446391, -6594.747694322223], [8679.515438444696, -6530.49769432279], [8742.865438449599, -6388.547694323066], [8798.815438446183, -6269.347694322747], [8840.415438449156, -6189.147694323438], [8869.415438446993, -6127.7476943217835], [8900.265438448685, -6053.597694322121], [8931.865438448483, -5971.847694322463], [8955.415438443026, -5895.147694323199], [8974.815438449468, -5832.697694323486], [9003.165438443262, -5713.247694322021], [9045.115438446772, -5517.297694321855], [9066.015438449427, -5396.547694322961], [9084.815438448857, -5281.197694323226], [9088.965438444064, -5232.6976943231075], [9089.665438445138, -5105.04769432174], [9089.365438448738, -5044.397694321745], [9099.91543844768, -4861.847694321852], [9110.365438445457, -4657.847694321759]], "source": 848698050, "length": 600.8478330543317}, {"destination": 1324294940, "path": [[3271.0154384432144, 5143.052305676576], [3241.5154384466405, 5147.652305677042], [3214.465438446723, 5204.502305677039]], "source": 1324294286, "length": 19.352830790241327}, {"destination": 1324294454, "path": [[3271.0154384432144, 5143.052305676576], [3283.065438445476, 5117.802305678154]], "source": 1324294286, "length": 6.065475202140841}, {"destination": 1324294511, "path": [[3271.0154384432144, 5143.052305676576], [3372.965438444453, 5168.302305676775], [3413.215438449413, 5177.502305677706]], "source": 1324294286, "length": 28.110230053372476}, {"destination": 599408785, "path": [[-2389.834561554949, -4407.947694321734], [-2431.934561556659, -4518.447694323413], [-2501.6845615510874, -4804.847694321878], [-2578.2845615509586, -5118.1976943226455]], "source": 599408783, "length": 162.09577080321958}, {"destination": 95386508, "path": [[-2389.834561554949, -4407.947694321734], [-1607.9345615551688, -4570.547694322969]], "source": 599408783, "length": 153.01500808610427}, {"destination": 476559738, "path": [[5127.165438445047, 4315.202305678056], [5131.665438447897, 4273.002305676954], [5144.265438445927, 4154.50230567771], [5167.21543844767, 3938.4023056765473]], "source": 1319641232, "length": 84.14207895747278}, {"destination": 1319641101, "path": [[5127.165438445047, 4315.202305678056], [5062.865438446806, 4319.602305677961], [5057.515438444681, 4285.202305677416], [5017.265438446828, 4273.702305678029], [4921.315438444652, 4277.752305677396]], "source": 1319641232, "length": 46.3268942214179}, {"destination": 1319641359, "path": [[5127.165438445047, 4315.202305678056], [5121.61543844769, 4367.502305678173]], "source": 1319641232, "length": 11.67898756795719}, {"destination": 599408844, "path": [[-2578.2845615509586, -5118.1976943226455], [-2760.634561553843, -5705.597694323216]], "source": 599408785, "length": 135.15541728478854}, {"destination": 267194965, "path": [[-2578.2845615509586, -5118.1976943226455], [-2645.6845615570046, -5100.647694321836]], "source": 599408785, "length": 13.397000781975878}, {"destination": 1319641275, "path": [[4711.51543844428, 4301.252305676684], [4687.365438449831, 4312.702305677263], [4586.06543844553, 4303.352305678132]], "source": 1319641234, "length": 24.629562418877228}, {"destination": 1319641221, "path": [[4711.51543844428, 4301.252305676684], [4708.415438443581, 4378.852305677583]], "source": 1319641234, "length": 17.26781302143501}, {"destination": 1319641101, "path": [[4711.51543844428, 4301.252305676684], [4786.615438447939, 4285.202305677416], [4921.315438444652, 4277.752305677396]], "source": 1319641234, "length": 40.39473868019043}, {"destination": 1319641080, "path": [[3982.5654384486597, 4221.252305677936], [4051.5654384449817, 4234.652305678211], [4137.365438445784, 4248.402305677246], [4137.365438445784, 4312.252305677333]], "source": 1319641235, "length": 44.25887834900978}, {"destination": 1319641301, "path": [[3982.5654384486597, 4221.252305677936], [3963.165438449323, 4278.302305676718], [3941.3154384462246, 4397.002305676523]], "source": 1319641235, "length": 39.93602168773551}, {"destination": 1319641142, "path": [[3982.5654384486597, 4221.252305677936], [3753.565438444184, 4176.852305677769]], "source": 1319641235, "length": 44.65841837044864}, {"destination": 1324294266, "path": [[-528.6345615544974, 5664.702305677949], [-557.1845615506277, 5611.5523056767815]], "source": 1324294292, "length": 13.007886477511088}, {"destination": 1324294372, "path": [[-528.6345615544974, 5664.702305677949], [-512.634561552261, 5694.552305676836]], "source": 1324294292, "length": 7.303244019451463}, {"destination": 1324294450, "path": [[-528.6345615544974, 5664.702305677949], [-642.9845615514296, 5696.502305676532]], "source": 1324294292, "length": 22.869588936188336}, {"destination": 1319641111, "path": [[5602.015438448405, 5670.702305677011], [5435.715438444788, 5588.102305678078], [5237.115438447404, 5536.002305676746], [5148.965438444009, 5521.352305677851], [4917.565438447014, 5475.202305676774]], "source": 1319641238, "length": 138.35698493706747}, {"destination": 1315785419, "path": [[-1192.1845615532334, -4013.2476943224306], [-1424.384561552472, -3965.4976943221955]], "source": 1315785412, "length": 45.41318532085693}, {"destination": 1319641222, "path": [[4333.315438444174, 4243.902305677949], [4365.515438443879, 4133.802305677392]], "source": 1319641245, "length": 25.239437629319692}, {"destination": 1319641110, "path": [[4333.315438444174, 4243.902305677949], [4266.765438444509, 4230.952305677604]], "source": 1319641245, "length": 12.980489376252171}, {"destination": 1319641255, "path": [[4333.315438444174, 4243.902305677949], [4432.565438449387, 4253.052305676519], [4591.565438445855, 4247.702305677947]], "source": 1319641245, "length": 49.249076861871224}, {"destination": 3560335839, "path": [[2410.7154384438445, 5394.302305678167], [2147.415438443545, 5408.302305676571], [2058.26543844978, 5399.952305676692]], "source": 1324294302, "length": 67.23166284314968}, {"destination": 1324295149, "path": [[2410.7154384438445, 5394.302305678167], [2409.3154384488003, 5348.602305677019]], "source": 1324294302, "length": 10.166516584864922}, {"destination": 476561951, "path": [[2410.7154384438445, 5394.302305678167], [2405.865438447563, 5700.202305677138]], "source": 1324294302, "length": 68.03539642489052}, {"destination": 1324294939, "path": [[3782.8654384455263, 4742.402305677018], [3788.6654384493568, 4721.002305677402]], "source": 1324294303, "length": 4.885255942718165}, {"destination": 1324294350, "path": [[3782.8654384455263, 4742.402305677018], [3665.3154384467257, 4730.152305677749]], "source": 1324294303, "length": 22.52211823184032}, {"destination": 1324294487, "path": [[3782.8654384455263, 4742.402305677018], [3766.1654384493204, 4803.552305677527]], "source": 1324294303, "length": 13.964869754874995}, {"destination": 1324294989, "path": [[-711.93456155072, 5773.852305678062], [-620.734561550762, 5744.052305677982]], "source": 1324294305, "length": 18.568312410181036}, {"destination": 1890812024, "path": [[-8879.134561553314, -1837.3476943231992], [-8895.484561556088, -1775.0476943234617]], "source": 1890812066, "length": 14.199751254443452}, {"destination": 1324294968, "path": [[3421.2654384475627, 5439.852305677561], [3437.615438443231, 5375.402305677568]], "source": 1324294307, "length": 14.666218451455482}, {"destination": 1324294852, "path": [[3421.2654384475627, 5439.852305677561], [3407.3154384444138, 5494.852305677256]], "source": 1324294307, "length": 12.51600451408883}, {"destination": 1324294727, "path": [[3421.2654384475627, 5439.852305677561], [3378.3154384465774, 5427.502305677123], [3223.565438446485, 5394.702305677512]], "source": 1324294307, "length": 38.941152091637946}, {"destination": 1317671237, "path": [[3093.965438445423, 1062.4523056765865], [2970.5654384457603, 1073.95230567775], [2662.115438447188, 1080.8023056778638]], "source": 1317681862, "length": 82.28615048354848}, {"destination": 1319641110, "path": [[4193.115438447137, 4216.602305676886], [4266.765438444509, 4230.952305677604]], "source": 1319641254, "length": 14.366337753067869}, {"destination": 1319641275, "path": [[4591.565438445855, 4247.702305677947], [4586.06543844553, 4303.352305678132]], "source": 1319641255, "length": 12.419862364397925}, {"destination": 1319641245, "path": [[4591.565438445855, 4247.702305677947], [4432.565438449387, 4253.052305676519], [4333.315438444174, 4243.902305677949]], "source": 1319641255, "length": 49.249076861871224}, {"destination": 1319204487, "path": [[4591.565438445855, 4247.702305677947], [4602.165438448936, 4140.302305676968]], "source": 1319641255, "length": 23.969645623767985}, {"destination": 1319641217, "path": [[4137.365438445784, 4488.902305677556], [4137.365438445784, 4470.502305677471]], "source": 1319641256, "length": 4.0921466222098575}, {"destination": 1319204581, "path": [[4137.365438445784, 4488.902305677556], [4137.365438445784, 4571.852305677026], [4560.215438445425, 4564.702305676959]], "source": 1319641256, "length": 98.88443099963932}, {"destination": 1319641127, "path": [[4137.365438445784, 4488.902305677556], [4051.715438443182, 4491.652305677718], [4046.315438444026, 4535.202305676833], [4032.9154384437516, 4558.152305676799], [3810.3154384430127, 4551.252305677877], [3759.3154384438776, 4537.502305677066], [3756.665438444884, 4459.502305676821], [3701.965438445143, 4441.752305677227]], "source": 1319641256, "length": 112.75986886575873}, {"destination": 1320103971, "path": [[2124.9654384476457, 4014.002305677167], [1916.6654384434878, 4051.202305676682]], "source": 1320103964, "length": 40.47056381750392}, {"destination": 1320103644, "path": [[2124.9654384476457, 4014.002305677167], [2141.46543844862, 4095.702305678017]], "source": 1320103964, "length": 18.438259803933352}, {"destination": 1320103891, "path": [[2124.9654384476457, 4014.002305677167], [2095.5154384481034, 3868.2523056774444]], "source": 1320103964, "length": 32.89372301691119}, {"destination": 115005789, "path": [[11663.765438449047, 3713.6523056773285], [11558.86543844531, 3398.4023056774504], [11415.365438445235, 2982.302305676754], [11328.31543844759, 2769.452305678044], [11126.36543844303, 2393.7023056781472], [10902.865438445986, 2034.9023056773774], [10809.665438443972, 1857.8523056778095]], "source": 115006151, "length": 445.0715727689666}, {"destination": 2001675399, "path": [[11663.765438449047, 3713.6523056773285], [11678.415438446165, 3760.1523056771666], [11683.815438445323, 3777.2523056780474]], "source": 115006151, "length": 14.649580895721083}, {"destination": 1319641289, "path": [[5083.515438442987, 4725.902305677821], [5094.315438448404, 4624.202305677727]], "source": 481501356, "length": 22.71001585084284}, {"destination": 481501398, "path": [[5083.515438442987, 4725.902305677821], [5047.015438449876, 4720.152305678127], [4990.015438444572, 4715.102305677732]], "source": 481501356, "length": 17.957483391223782}, {"destination": 1320103599, "path": [[1103.9654384461528, 2512.0523056774146], [1232.71543844794, 2466.2023056780668], [1201.6654384439107, 2359.4523056775784]], "source": 1320103965, "length": 50.987397198442906}, {"destination": 1404037105, "path": [[-586.8845615566443, 5556.302305677718], [-638.0845615510111, 5583.902305676957]], "source": 1324294320, "length": 11.511092413261474}, {"destination": 1324294266, "path": [[-586.8845615566443, 5556.302305677718], [-557.1845615506277, 5611.5523056767815]], "source": 1324294320, "length": 13.523551466234158}, {"destination": 1404037043, "path": [[-586.8845615566443, 5556.302305677718], [-378.53456155545473, 5444.102305677489], [-350.03456155635604, 5433.702305676747]], "source": 1324294320, "length": 52.72203536907151}, {"destination": 1319641080, "path": [[4290.415438447326, 4312.702305677263], [4137.365438445784, 4312.252305677333]], "source": 1319641265, "length": 29.108664935821878}, {"destination": 1324294266, "path": [[-667.7845615570277, 5651.952305678165], [-557.1845615506277, 5611.5523056767815]], "source": 1324294322, "length": 22.87372653442728}, {"destination": 1324294450, "path": [[-667.7845615570277, 5651.952305678165], [-652.9345615504667, 5675.252305676892], [-642.9845615514296, 5696.502305676532]], "source": 1324294322, "length": 10.991634535690554}, {"destination": 1324295098, "path": [[-667.7845615570277, 5651.952305678165], [-692.4845615543518, 5613.202305676524]], "source": 1324294322, "length": 9.81514839016867}, {"destination": 1316471849, "path": [[702.4654384437667, 1299.4523056768514], [852.715438448115, 1285.8023056772083]], "source": 476554611, "length": 28.734871150740037}, {"destination": 1316472107, "path": [[702.4654384437667, 1299.4523056768514], [742.6154384475581, 1472.152305677099], [866.7654384453272, 1879.4523056779867]], "source": 476554611, "length": 132.76467889016115}, {"destination": 1324294376, "path": [[2627.165438447321, 5169.752305677733], [2619.36543844854, 5039.852305676717]], "source": 1324294324, "length": 28.926500561056006}, {"destination": 1324294609, "path": [[2627.165438447321, 5169.752305677733], [2868.2654384439843, 5179.652305677962]], "source": 1324294324, "length": 45.908128619543525}, {"destination": 476555427, "path": [[2627.165438447321, 5169.752305677733], [2403.465438447938, 5160.5523056768025]], "source": 1324294324, "length": 42.59502214752425}, {"destination": 1324294376, "path": [[2745.465438444228, 5028.35230567733], [2619.36543844854, 5039.852305676717]], "source": 1324294326, "length": 24.119205518991375}, {"destination": 1319204505, "path": [[4959.11543844585, 1557.6023056773636], [5003.715438448353, 1656.4523056779024], [5021.665438448508, 1706.1523056778328]], "source": 475979960, "length": 35.130844459288085}, {"destination": 482728439, "path": [[4959.11543844585, 1557.6023056773636], [5442.315438443757, 1348.402305676899]], "source": 475979960, "length": 102.9996500333503}, {"destination": 475979135, "path": [[4959.11543844585, 1557.6023056773636], [4931.5654384471945, 1485.202305676836]], "source": 475979960, "length": 16.93180816709218}, {"destination": 4273219785, "path": [[854.0154384490961, -1189.0976943220721], [850.8654384442593, -1177.7476943226616], [849.9654384479527, -1163.8976943224577], [853.0154384445154, -1152.3476943224864], [857.9654384490709, -1139.647694323287], [859.7154384446526, -1128.3476943226844], [859.5654384464524, -1114.2976943219196], [859.1154384447464, -1106.2476943219935], [855.8654384458464, -1097.1976943228156], [849.8654384467841, -1086.4476943233115], [841.9654384468345, -1074.1476943234575], [837.5654384451536, -1063.8976943226908], [839.3654384448723, -1052.0976943233507], [843.8654384477218, -1035.5976943223766], [845.3654384439346, -1029.047694322216], [849.3154384439094, -1012.7476943218028]], "source": 3681386681, "length": 40.647665428251635}, {"destination": 3681386682, "path": [[854.0154384490961, -1189.0976943220721], [904.865438450031, -1184.5976943227754], [914.9654384472683, -1181.9476943220052], [928.71543844808, -1172.5976943228743]], "source": 3681386681, "length": 15.071228306944866}, {"destination": 4273219719, "path": [[854.0154384490961, -1189.0976943220721], [854.2654384484649, -1200.9476943219966], [845.2654384498715, -1209.5976943218288], [826.2154384439668, -1210.2476943223196], [797.1654384490989, -1206.7976943228587], [781.3654384491997, -1264.9976943226447], [761.9654384498631, -1260.8476943221092], [724.1154384445281, -1378.9976943225925], [718.9654384447408, -1377.6976943233876]], "source": 3681386681, "length": 59.76974619179371}, {"destination": 3681386681, "path": [[928.71543844808, -1172.5976943228743], [914.9654384472683, -1181.9476943220052], [904.865438450031, -1184.5976943227754], [854.0154384490961, -1189.0976943220721]], "source": 3681386682, "length": 15.071228306944866}, {"destination": 4273350989, "path": [[928.71543844808, -1172.5976943228743], [945.8654384459919, -1079.497694322029], [922.1154384491115, -1032.3476943234766], [906.0154384457064, -1022.4976943220554]], "source": 3681386682, "length": 36.14144662847141}, {"destination": 4273219742, "path": [[928.71543844808, -1172.5976943228743], [888.6154384484257, -1360.2976943225542], [879.9654384432642, -1358.4976943228355], [837.2654384487532, -1349.2976943219048], [842.8154384461095, -1324.4976943234121], [836.2654384441726, -1323.097694323039], [840.8654384481906, -1295.947694321953], [808.8654384437177, -1289.4976943229608]], "source": 3681386682, "length": 71.75384246958357}, {"destination": 4908327481, "path": [[-5421.234561552524, 1076.6023056767438], [-5155.034561553862, 1045.3023056768984]], "source": 479322299, "length": 51.10119548054071}, {"destination": 4908327490, "path": [[-5421.234561552524, 1076.6023056767438], [-5758.934561555407, 1118.4523056773087], [-6178.234561552643, 1179.0023056779119]], "source": 479322299, "length": 145.7630023350461}, {"destination": 4153722393, "path": [[-5421.234561552524, 1076.6023056767438], [-5225.234561549996, 1497.1023056773447]], "source": 479322299, "length": 100.67006217895405}, {"destination": 1469016741, "path": [[-6438.434561552242, -1627.2476943228753], [-6243.984561550064, -1727.6476943219877]], "source": 1469016778, "length": 43.195725919394036}, {"destination": 1469016734, "path": [[-6438.434561552242, -1627.2476943228753], [-6540.434561550512, -1559.8476943221585]], "source": 1469016778, "length": 24.513387462771163}, {"destination": 1469016583, "path": [[-6438.434561552242, -1627.2476943228753], [-6486.534561553015, -1694.7976943217923]], "source": 1469016778, "length": 17.587925802593116}, {"destination": 4273219754, "path": [[718.1654384496028, -1166.0476943227138], [694.4154384456169, -1230.0976943233622], [680.6154384477736, -1258.9476943229984], [671.9154384455805, -1279.2976943227786], [659.6654384480871, -1319.7476943229703]], "source": 3681386687, "length": 35.98587064097259}, {"destination": 4273219775, "path": [[718.1654384496028, -1166.0476943227138], [728.0154384474713, -1088.3476943224223], [733.2654384484272, -1077.8976943228713], [758.7654384479947, -1076.6476943224745], [778.0154384491311, -1080.2976943224962], [784.9654384486371, -1082.8476943220976]], "source": 3681386687, "length": 29.957257653849908}, {"destination": 4273219783, "path": [[718.1654384496028, -1166.0476943227138], [740.1654384437961, -1163.697694321897], [769.9654384438759, -1169.7476943233198], [787.6654384446624, -1174.597694323154], [794.0654384483992, -1193.9976943224906]], "source": 3681386687, "length": 18.05772074723498}, {"destination": 5017787788, "path": [[-8290.134561555362, -877.8976943233374], [-7829.234561555154, -1060.247694322669], [-7450.184561555772, -1229.7476943228248]], "source": 5017787783, "length": 177.91903742200446}, {"destination": 5017787782, "path": [[-8290.134561555362, -877.8976943233374], [-8269.534561556213, -842.9976943222783]], "source": 5017787783, "length": 8.694758868341937}, {"destination": 1890531871, "path": [[-8290.134561555362, -877.8976943233374], [-8313.034561552968, -916.6976943220106]], "source": 5017787783, "length": 9.66571384367989}, {"destination": 115548403, "path": [[9843.715438449863, -6791.897694322202], [9895.765438443505, -6710.247694321935]], "source": 115548357, "length": 20.680240839458808}, {"destination": 495771014, "path": [[9843.715438449863, -6791.897694322202], [9750.365438449648, -6738.797694323395], [9444.665438444134, -6532.547694321877]], "source": 115548357, "length": 95.36418393476436}, {"destination": 1319641320, "path": [[4933.715438447451, 3927.452305678258], [4910.665438444539, 4066.9523056777734], [4913.765438445239, 4096.702305677269]], "source": 1319641286, "length": 37.974480363139755}, {"destination": 476559738, "path": [[4933.715438447451, 3927.452305678258], [5167.21543844767, 3938.4023056765473]], "source": 1319641286, "length": 44.475400826893946}, {"destination": 1319641268, "path": [[4933.715438447451, 3927.452305678258], [4712.665438447061, 3916.20230567824]], "source": 1319641286, "length": 42.11518100636874}, {"destination": 1319641106, "path": [[5094.315438448404, 4624.202305677727], [5024.315438447502, 4619.402305676701]], "source": 1319641289, "length": 13.355900423711955}, {"destination": 481501356, "path": [[5094.315438448404, 4624.202305677727], [5083.515438442987, 4725.902305677821]], "source": 1319641289, "length": 22.71001585084284}, {"destination": 1319641359, "path": [[5094.315438448404, 4624.202305677727], [5118.76543844636, 4394.402305678113], [5121.61543844769, 4367.502305678173]], "source": 1319641289, "length": 57.32368839213709}, {"destination": 599408890, "path": [[-3022.2345615555923, -6597.6476943223615], [-3211.234561554477, -7048.197694322411]], "source": 599408842, "length": 106.44764176979379}, {"destination": 2354289885, "path": [[-3022.2345615555923, -6597.6476943223615], [-2951.5845615506464, -6613.847694323383], [-2703.48456155034, -6686.097694322158], [-2232.984561551632, -6837.397694322789]], "source": 599408842, "length": 159.32525886831718}, {"destination": 2354289894, "path": [[-3022.2345615555923, -6597.6476943223615], [-3084.7345615541144, -6578.597694321787]], "source": 599408842, "length": 12.616415305089069}, {"destination": 267198012, "path": [[-2760.634561553843, -5705.597694323216], [-1982.384561550532, -5876.847694322507]], "source": 599408844, "length": 152.80479328809201}, {"destination": 599408845, "path": [[-2760.634561553843, -5705.597694323216], [-2873.1845615510565, -6082.497694322342]], "source": 599408844, "length": 86.5079037066139}, {"destination": 267195120, "path": [[-2873.1845615510565, -6082.497694322342], [-2927.584561554397, -6068.697694322722]], "source": 599408845, "length": 10.790112467091195}, {"destination": 1883856720, "path": [[-2873.1845615510565, -6082.497694322342], [-2961.8345615531894, -6385.647694322926], [-3008.784561551181, -6547.397694323109]], "source": 599408845, "length": 106.55570404856937}, {"destination": 267195119, "path": [[-2873.1845615510565, -6082.497694322342], [-2017.0345615539986, -6302.347694322918]], "source": 599408845, "length": 169.97743062522025}, {"destination": 1324294303, "path": [[3665.3154384467257, 4730.152305677749], [3782.8654384455263, 4742.402305677018]], "source": 1324294350, "length": 22.52211823184032}, {"destination": 1324294466, "path": [[4453.2654384497055, 5446.552305677698], [4480.415438443686, 5333.90230567754]], "source": 1324294352, "length": 25.578889519539075}, {"destination": 1324295172, "path": [[4453.2654384497055, 5446.552305677698], [4303.315438448863, 5413.502305676942]], "source": 1324294352, "length": 29.45141317500617}, {"destination": 1324295167, "path": [[4453.2654384497055, 5446.552305677698], [4553.365438447088, 5468.652305676614]], "source": 1324294352, "length": 19.66240917998731}, {"destination": 1324294249, "path": [[4096.915438445592, 4966.102305678177], [3984.3654384483784, 4954.102305678276]], "source": 1324294354, "length": 21.571452739376912}, {"destination": 1324294485, "path": [[4096.915438445592, 4966.102305678177], [4102.515438447085, 5081.1023056773765]], "source": 1324294354, "length": 25.597029141834675}, {"destination": 1324294606, "path": [[4096.915438445592, 4966.102305678177], [4141.815438444496, 4970.902305677427]], "source": 1324294354, "length": 8.605152011515013}, {"destination": 1319641099, "path": [[3941.3154384462246, 4397.002305676523], [3920.2654384453695, 4395.302305677973], [3901.465438445939, 4438.852305677088], [3709.8654384450924, 4401.2023056776425]], "source": 1319641301, "length": 51.735892666254486}, {"destination": 1319641364, "path": [[3941.3154384462246, 4397.002305676523], [4137.365438445784, 4413.202305677543]], "source": 1319641301, "length": 37.460179000709104}, {"destination": 1319641235, "path": [[3941.3154384462246, 4397.002305676523], [3963.165438449323, 4278.302305676718], [3982.5654384486597, 4221.252305677936]], "source": 1319641301, "length": 39.93602168773551}, {"destination": 476559409, "path": [[4990.015438444572, 4715.102305677732], [4549.215438444776, 4676.102305676722]], "source": 481501398, "length": 84.28336435211725}, {"destination": 1319641082, "path": [[4990.015438444572, 4715.102305677732], [4992.3654384471665, 4844.302305677673]], "source": 481501398, "length": 28.736282547956755}, {"destination": 1582473536, "path": [[7046.565438443508, -6671.497694322071], [7156.3154384435275, -6685.047694322321]], "source": 1582473433, "length": 21.08464438722953}, {"destination": 1582473249, "path": [[7046.565438443508, -6671.497694322071], [7073.315438447025, -6768.647694322282]], "source": 1582473433, "length": 22.196017714323254}, {"destination": 3121830238, "path": [[7046.565438443508, -6671.497694322071], [6967.065438445275, -6609.697694322847]], "source": 1582473433, "length": 20.43031673365744}, {"destination": 1317670969, "path": [[3825.2154384466053, 827.7523056765546], [3776.3654384477263, 690.7023056772488]], "source": 475978447, "length": 31.862967362522685}, {"destination": 1317671372, "path": [[3825.2154384466053, 827.7523056765546], [3956.16543844568, 1134.3023056777924]], "source": 475978447, "length": 72.57986079666121}, {"destination": 475978741, "path": [[3825.2154384466053, 827.7523056765546], [4450.065438447837, 653.3023056771725]], "source": 475978447, "length": 125.00318174540192}, {"destination": 1317671397, "path": [[3825.2154384466053, 827.7523056765546], [3625.515438443472, 883.1023056767862]], "source": 475978447, "length": 39.923030092857694}, {"destination": 115548081, "path": [[9963.765438449456, -6748.64769432304], [9920.565438449103, -6829.04769432291]], "source": 115548383, "length": 19.676613641823376}, {"destination": 554691049, "path": [[9963.765438449456, -6748.64769432304], [10492.565438447344, -6924.797694322749], [11062.915438444066, -7078.69769432179]], "source": 115548383, "length": 221.63052971381347}, {"destination": 1324294463, "path": [[3220.0654384482164, 4766.85230567675], [3064.5154384458806, 4798.952305677062], [2825.9154384500107, 4804.902305677317]], "source": 1324294368, "length": 75.83217878899097}, {"destination": 1324294264, "path": [[-229.13456155038148, 5762.402305677483], [-266.48456155697886, 5700.352305677115]], "source": 1324294370, "length": 15.520418876945106}, {"destination": 1324294650, "path": [[-229.13456155038148, 5762.402305677483], [-154.68456155076638, 5748.902305677817]], "source": 1324294370, "length": 14.475085238261597}, {"destination": 1324294228, "path": [[-229.13456155038148, 5762.402305677483], [-406.13456155114136, 5822.052305678227], [-437.484561551571, 5834.452305677473]], "source": 1324294370, "length": 42.75375591253733}, {"destination": 1324295129, "path": [[-512.634561552261, 5694.552305676836], [-323.78456155157664, 5609.2523056765485]], "source": 1324294372, "length": 40.61983063121605}, {"destination": 1324295234, "path": [[-512.634561552261, 5694.552305676836], [-502.1345615503492, 5714.052305677342]], "source": 1324294372, "length": 4.773279509335052}, {"destination": 1324294292, "path": [[-512.634561552261, 5694.552305676836], [-528.6345615544974, 5664.702305677949]], "source": 1324294372, "length": 7.303244019451463}, {"destination": 1324294377, "path": [[4625.515438448247, 5273.802305676867], [4514.165438443741, 5261.602305678181]], "source": 1324294373, "length": 21.35139868212293}, {"destination": 1319641051, "path": [[4913.765438445239, 4096.702305677269], [4711.51543844428, 4110.852305677426]], "source": 1319641320, "length": 38.59402636853609}, {"destination": 1319641101, "path": [[4913.765438445239, 4096.702305677269], [4915.8654384484635, 4117.202305677026], [4926.115438443901, 4216.3523056775175], [4921.315438444652, 4277.752305677396]], "source": 1319641320, "length": 40.39886334364449}, {"destination": 1319641286, "path": [[4913.765438445239, 4096.702305677269], [4910.665438444539, 4066.9523056777734], [4933.715438447451, 3927.452305678258]], "source": 1319641320, "length": 37.974480363139755}, {"destination": 1324294466, "path": [[4514.165438443741, 5261.602305678181], [4507.51543844774, 5299.052305677065], [4486.0654384493155, 5310.5023056776445], [4480.415438443686, 5333.90230567754]], "source": 1324294377, "length": 18.54616232236761}, {"destination": 1324294259, "path": [[4514.165438443741, 5261.602305678181], [4520.915438448014, 5223.352305677054]], "source": 1324294377, "length": 8.603057026210317}, {"destination": 1324294797, "path": [[4514.165438443741, 5261.602305678181], [4342.415438443936, 5244.202305677348]], "source": 1324294377, "length": 32.893997011397076}, {"destination": 1324294373, "path": [[4514.165438443741, 5261.602305678181], [4625.515438448247, 5273.802305676867]], "source": 1324294377, "length": 21.35139868212293}, {"destination": 478379149, "path": [[8193.815438445996, -3842.8476943224155], [8086.365438444432, -4136.647694322093]], "source": 1782376803, "length": 68.45838703327274}, {"destination": 1782376799, "path": [[8193.815438445996, -3842.8476943224155], [8130.565438449366, -3828.9976943222114]], "source": 1782376803, "length": 12.415507573813702}, {"destination": 602360352, "path": [[9895.765438443505, -6710.247694321935], [9917.465438448402, -6676.447694323073], [10165.61543844574, -6266.797694323145], [10506.015438444649, -5704.847694323334], [10843.465438448164, -5147.747694323357]], "source": 115548403, "length": 391.4344147426719}, {"destination": 115548383, "path": [[9895.765438443505, -6710.247694321935], [9963.765438449456, -6748.64769432304]], "source": 115548403, "length": 15.495137755467196}, {"destination": 1315678804, "path": [[-3345.634561554789, -7378.197694322353], [-3164.034561550011, -7410.497694323226]], "source": 599408886, "length": 35.268992162412765}, {"destination": 599408887, "path": [[-3345.634561554789, -7378.197694322353], [-3585.334561556408, -7988.897694323427]], "source": 599408886, "length": 143.25706370301373}, {"destination": 156380673, "path": [[-3585.334561556408, -7988.897694323427], [-3635.9345615508687, -7979.4476943231275]], "source": 599408887, "length": 9.847692226899785}, {"destination": 1315242565, "path": [[-3585.334561556408, -7988.897694323427], [-3508.6345615553682, -8004.697694323326]], "source": 599408887, "length": 15.00099993427927}, {"destination": 874300953, "path": [[-3585.334561556408, -7988.897694323427], [-3598.2845615549763, -8010.397694322435]], "source": 599408887, "length": 5.378743664274668}, {"destination": 2932000650, "path": [[6689.915438442995, 6300.402305678077], [6747.2154384446985, 6350.8523056778895]], "source": 1319641336, "length": 15.64102660114531}, {"destination": 1319641150, "path": [[6689.915438442995, 6300.402305678077], [6567.465438443776, 6198.302305676862]], "source": 1319641336, "length": 32.52643631009339}, {"destination": 1319641071, "path": [[6689.915438442995, 6300.402305678077], [6226.815438445499, 6672.402305676784]], "source": 1319641336, "length": 120.83986538132794}, {"destination": 1315785562, "path": [[-915.8845615502287, -3082.097694322883], [-792.3345615523658, -3123.447694322934]], "source": 1315785428, "length": 25.229615759060277}, {"destination": 477629492, "path": [[-3211.234561554477, -7048.197694322411], [-3266.8845615546616, -7029.797694322326]], "source": 599408890, "length": 11.345479245759332}, {"destination": 599408886, "path": [[-3211.234561554477, -7048.197694322411], [-3345.634561554789, -7378.197694322353]], "source": 599408890, "length": 77.71089970822554}, {"destination": 477629510, "path": [[-3211.234561554477, -7048.197694322411], [-2408.3345615508733, -7313.647694322966]], "source": 599408890, "length": 163.6816251274096}, {"destination": 476555427, "path": [[2329.5154384470607, 4935.552305678215], [2335.265438446754, 5038.352305676952], [2357.415438446253, 5084.652305678006], [2388.8154384437144, 5120.9023056770775], [2403.465438447938, 5160.5523056768025]], "source": 1324294395, "length": 53.29333895882344}, {"destination": 476555419, "path": [[2329.5154384470607, 4935.552305678215], [2304.8154384497366, 4799.652305678137], [2274.465438446782, 4718.102305677263]], "source": 1324294395, "length": 49.61846338838512}, {"destination": 1324294686, "path": [[2329.5154384470607, 4935.552305678215], [2530.865438444607, 4943.502305676972], [2579.2654384488856, 4941.052305676763]], "source": 1324294395, "length": 47.557267598694104}, {"destination": 1320103792, "path": [[1662.4654384429505, 3632.6023056769686], [1678.215438445818, 3711.602305678241]], "source": 1320103978, "length": 17.822088861858784}, {"destination": 1320103988, "path": [[1662.4654384429505, 3632.6023056769686], [1508.9654384468076, 3672.702305676623], [1385.0154384442703, 3699.2523056778027]], "source": 1320103978, "length": 54.82686410195565}, {"destination": 1320103887, "path": [[1662.4654384429505, 3632.6023056769686], [1645.7654384467446, 3548.8523056770305]], "source": 1320103978, "length": 18.894297642389397}, {"destination": 477618799, "path": [[-5720.334561551965, -2316.1476943229786], [-5357.43456155302, -2487.3976943222688]], "source": 477618430, "length": 78.82105366818965}, {"destination": 479292967, "path": [[-5720.334561551965, -2316.1476943229786], [-5335.884561553428, -1824.1976943222937]], "source": 477618430, "length": 131.58352264903}, {"destination": 1324294450, "path": [[-728.034561554125, 5723.402305678249], [-642.9845615514296, 5696.502305676532]], "source": 1324294402, "length": 17.24692284560223}, {"destination": 1316236809, "path": [[-1972.9345615502325, 3002.802305678287], [-2025.0845615521484, 2889.1523056771007]], "source": 483098883, "length": 27.1508696816295}, {"destination": 1316236501, "path": [[-1972.9345615502325, 3002.802305678287], [-1836.984561556676, 3249.9023056775654]], "source": 483098883, "length": 60.73137645920908}, {"destination": 483090542, "path": [[-1972.9345615502325, 3002.802305678287], [-2185.1845615543652, 3026.102305677014]], "source": 483098883, "length": 40.6976360660632}, {"destination": 1316236879, "path": [[-1972.9345615502325, 3002.802305678287], [-1917.7345615517538, 2984.202305677641], [-1711.634561551989, 2893.852305676958]], "source": 483098883, "length": 55.330912149497706}, {"destination": 1324294466, "path": [[4324.265438448549, 5322.802305677498], [4408.265438449633, 5331.152305677378], [4480.415438443686, 5333.90230567754]], "source": 1324294404, "length": 29.81945776830582}, {"destination": 1324295172, "path": [[4324.265438448549, 5322.802305677498], [4303.315438448863, 5413.502305676942]], "source": 1324294404, "length": 20.560481066978703}, {"destination": 1324294797, "path": [[4324.265438448549, 5322.802305677498], [4342.415438443936, 5244.202305677348]], "source": 1324294404, "length": 17.817536927062815}, {"destination": 1320103860, "path": [[2168.515438448537, 1870.252305677056], [2117.6154384434653, 1867.2523056775249]], "source": 1320103980, "length": 9.702939915767221}, {"destination": 1320103996, "path": [[2168.515438448537, 1870.252305677056], [2182.215438445212, 1938.6523056770243], [2093.6654384442477, 1945.502305677138], [2099.0654384434038, 2014.3523056770364], [2097.315438447822, 2071.302305678202]], "source": 1320103980, "length": 60.35701029330147}, {"destination": 1316471775, "path": [[2168.515438448537, 1870.252305677056], [2200.865438446442, 1872.1523056779433]], "source": 1320103980, "length": 6.166419892927423}, {"destination": 1324294330, "path": [[3354.1654384450226, 5690.002305676955], [3304.1654384433627, 5820.552305676685], [3253.3154384495333, 5899.802305677326]], "source": 1324294410, "length": 50.65483286656314}, {"destination": 1324294589, "path": [[3354.1654384450226, 5690.002305676955], [3193.2154384435307, 5668.35230567797]], "source": 1324294410, "length": 30.988239671484244}, {"destination": 1328999502, "path": [[3354.1654384450226, 5690.002305676955], [3371.865438445809, 5634.702305677309], [3385.115438447883, 5582.552305677169]], "source": 1324294410, "length": 24.618430399306664}, {"destination": 1784595697, "path": [[9195.66543844752, -5082.197694322943], [9163.515438444847, -5312.147694322533], [9157.015438447048, -5353.947694322514], [9147.515438449716, -5411.04769432188], [9131.81543844388, -5485.797694323224], [9115.065438443537, -5564.197694322815]], "source": 476913931, "length": 108.3207283607764}, {"destination": 476913933, "path": [[9195.66543844752, -5082.197694322943], [9199.865438446865, -5136.647694323316], [9206.265438443495, -5165.547694321759], [9219.015438446831, -5200.647694323379], [9230.865438446755, -5221.297694323112], [9248.015438444669, -5241.397694321748], [9268.865438443187, -5259.04769432195], [9292.565438443035, -5269.547694322086], [9318.01543844557, -5275.597694321732], [9344.315438447382, -5278.14769432311], [9377.515438444561, -5277.447694322035]], "source": 476913931, "length": 64.52466948910339}, {"destination": 1319641110, "path": [[4301.115438444469, 4078.7523056771133], [4266.765438444509, 4230.952305677604]], "source": 1319641356, "length": 34.47267508181086}, {"destination": 87739322, "path": [[9377.515438444561, -5277.447694322035], [10516.715438448899, -4945.14769432186], [11118.26543844785, -4752.097694321833]], "source": 476913933, "length": 351.0558822516726}, {"destination": 1319641032, "path": [[5121.61543844769, 4367.502305678173], [5046.815438447538, 4375.002305677001]], "source": 1319641359, "length": 14.323614358931206}, {"destination": 1319641232, "path": [[5121.61543844769, 4367.502305678173], [5127.165438445047, 4315.202305678056]], "source": 1319641359, "length": 11.67898756795719}, {"destination": 1319641289, "path": [[5121.61543844769, 4367.502305678173], [5118.76543844636, 4394.402305678113], [5094.315438448404, 4624.202305677727]], "source": 1319641359, "length": 57.32368839213709}, {"destination": 1319641025, "path": [[5564.265438444238, 2462.402305678069], [5556.415438448425, 2179.502305677872], [5540.315438445021, 2000.602305678001], [5523.715438449983, 1947.6523056773942]], "source": 1319641362, "length": 115.02650350003475}, {"destination": 482729267, "path": [[5564.265438444238, 2462.402305678069], [5999.515438446679, 2404.3023056776747]], "source": 1319641362, "length": 83.77867655634746}, {"destination": 482730676, "path": [[5564.265438444238, 2462.402305678069], [5222.215438443811, 2509.302305677252]], "source": 1319641362, "length": 65.88238551297069}, {"destination": 481501356, "path": [[7800.96543844877, 5193.202305678213], [6670.415438449595, 5103.552305676829], [6591.365438445962, 5105.852305677061], [6561.965438443451, 5098.152305677672], [6149.965438446259, 4973.402305678221], [6128.565438444866, 4967.502305676774], [6042.215438448295, 4943.652305676949], [5856.515438445342, 4892.302305677276], [5805.765438445576, 4878.302305677096], [5733.815438446754, 4858.402305677245], [5592.065438449367, 4819.252305678035], [5556.215438446088, 4811.452305677477], [5373.165438449234, 4771.502305677799], [5083.515438442987, 4725.902305677821]], "source": 476561683, "length": 530.4487906169209}, {"destination": 654392158, "path": [[7800.96543844877, 5193.202305678213], [7709.365438444138, 5468.852305677175], [7535.515438448215, 5748.452305677887], [7491.2654384462485, 5808.70230567676]], "source": 476561683, "length": 149.97760566610822}, {"destination": 1324295202, "path": [[3970.965438448104, 5343.952305677746], [3812.015438448668, 5314.652305678181]], "source": 1324294420, "length": 30.92535360948172}, {"destination": 1324294787, "path": [[3970.965438448104, 5343.952305677746], [4046.1654384458257, 5108.652305677808]], "source": 1324294420, "length": 54.24777063914541}, {"destination": 1324294654, "path": [[3970.965438448104, 5343.952305677746], [4040.91543844487, 5356.852305677507]], "source": 1324294420, "length": 13.609251640552465}, {"destination": 1324294938, "path": [[-660.9845615557219, 5833.50230567703], [-476.08456155501244, 5762.502305676875]], "source": 1324294422, "length": 38.54916316355048}, {"destination": 1324294968, "path": [[3243.865438449234, 5329.102305678291], [3372.965438444453, 5363.25230567769], [3437.615438443231, 5375.402305677568]], "source": 1324294424, "length": 38.29098116041071}, {"destination": 1324294533, "path": [[3243.865438449234, 5329.102305678291], [3260.315438446071, 5276.102305677099]], "source": 1324294424, "length": 12.195416098724664}, {"destination": 1324294727, "path": [[3243.865438449234, 5329.102305678291], [3223.565438446485, 5394.702305677512]], "source": 1324294424, "length": 15.091150805805885}, {"destination": 1320104073, "path": [[3238.9154384446783, 2453.6023056782597], [3231.365438445266, 2529.452305678248]], "source": 1320103983, "length": 16.92941266496973}, {"destination": 1320103666, "path": [[3238.9154384446783, 2453.6023056782597], [3469.315438444198, 2480.702305676985]], "source": 1320103983, "length": 44.23033527846061}, {"destination": 1316471858, "path": [[3238.9154384446783, 2453.6023056782597], [3248.815438446684, 2407.2023056778135]], "source": 1320103983, "length": 10.488969042241223}, {"destination": 476913949, "path": [[9054.065438448333, -5275.797694322293], [9061.965438448282, -5243.497694323196]], "source": 476913948, "length": 7.337716704698545}, {"destination": 478379193, "path": [[9061.965438448282, -5243.497694323196], [9071.615438443814, -5222.097694321803], [9090.66543844972, -5179.347694323155], [9101.7154384474, -5145.84769432247], [9112.565438449848, -5105.947694323376], [9121.065438449705, -5055.897694322908], [9128.065438446243, -4944.247694322002], [9140.265438446704, -4723.947694323271], [9148.865438447729, -4628.147694322848], [9155.01543844499, -4583.447694322729], [9166.365438446177, -4535.7976943218855], [9183.915438448765, -4466.997694322572], [9196.565438443828, -4407.3976943224125]], "source": 476913949, "length": 188.60894708481675}, {"destination": 848698018, "path": [[9061.965438448282, -5243.497694323196], [9060.265438449733, -5209.2476943226275], [9056.165438444452, -5182.347694322687], [9050.815438449434, -5147.197694322259], [9048.115438446303, -5119.697694322412], [9048.365438445671, -5018.747694322201], [9064.665438444308, -4648.847694323166], [9061.365438448376, -4551.547694322977], [9041.615438448502, -4491.347694322912]], "source": 476913949, "length": 167.99764111723766}, {"destination": 3318976586, "path": [[-2332.634561554414, -4170.247694322171], [-1969.234561556732, -4269.047694322126], [-1889.5845615531925, -4298.397694322276]], "source": 599408518, "length": 89.00356485855168}, {"destination": 599408783, "path": [[-2332.634561554414, -4170.247694322171], [-2389.834561554949, -4407.947694321734]], "source": 599408518, "length": 53.969603298493226}, {"destination": 882614371, "path": [[5832.365438443787, 1118.5023056778932], [5638.915438446191, 1198.6023056778095], [5413.01543844952, 1296.652305677881]], "source": 3356049696, "length": 89.05334040589868}, {"destination": 2367476044, "path": [[5832.365438443787, 1118.5023056778932], [5813.065438445619, 1084.3023056779089], [5896.965438445533, 1041.8023056768534]], "source": 3356049696, "length": 26.991295181670004}, {"destination": 1785697720, "path": [[4924.41543844535, -6789.647694322553], [4987.715438446116, -6788.147694322788], [5078.565438445537, -6775.447694321812], [5126.615438449278, -6763.6476943224725]], "source": 63308065, "length": 39.05053573890962}, {"destination": 63308068, "path": [[4924.41543844535, -6789.647694322553], [4957.265438449099, -6817.547694321746], [4979.765438449135, -6852.04769432346], [4990.165438449878, -6890.597694322764], [4987.715438446116, -6930.097694322512], [4972.515438446124, -6967.447694322004]], "source": 63308065, "length": 43.977745197672355}, {"destination": 1319641217, "path": [[4287.715438444195, 4464.1023056772865], [4137.365438445784, 4470.502305677471]], "source": 1319641379, "length": 28.630234677663616}, {"destination": 1785697732, "path": [[4972.515438446124, -6967.447694322004], [4955.3654384482115, -6990.247694321994]], "source": 63308068, "length": 6.028213053186513}, {"destination": 1315678856, "path": [[-3846.834561556989, -7169.697694322963], [-4052.0345615533415, -7084.447694323259]], "source": 4712669477, "length": 43.379467691624406}, {"destination": 63308075, "path": [[4865.715438448604, -7039.847694322532], [4813.665438447856, -7043.697694323115], [4762.815438446922, -7033.447694322348], [4718.2154384444175, -7010.147694321844], [4685.215438449575, -6977.297694323425]], "source": 63308072, "length": 39.437550512969985}, {"destination": 477640432, "path": [[-5790.034561556467, -7350.897694323066], [-5702.684561555316, -7086.447694321762]], "source": 267198762, "length": 61.111435309219864}, {"destination": 1887877323, "path": [[-5790.034561556467, -7350.897694323066], [-5802.7845615526985, -7347.997694322928]], "source": 267198762, "length": 2.509960686587873}, {"destination": 1887877324, "path": [[-5790.034561556467, -7350.897694323066], [-5626.034561551307, -7392.547694323071]], "source": 267198762, "length": 32.529899745328926}, {"destination": 63308076, "path": [[4685.215438449575, -6977.297694323425], [4665.465438449701, -6937.44769432314], [4660.7154384474825, -6894.3476943221785]], "source": 63308075, "length": 19.25341091293492}, {"destination": 1993253317, "path": [[4685.215438449575, -6977.297694323425], [4661.015438443883, -6974.447694322094], [4596.565438447442, -6982.097694322675], [4534.465438446488, -7016.4976943232205]], "source": 63308075, "length": 31.087934217603767}, {"destination": 63308077, "path": [[4660.7154384474825, -6894.3476943221785], [4661.565438446758, -6886.347694322836]], "source": 63308076, "length": 1.7861994953795777}, {"destination": 479915836, "path": [[-4991.634561555713, -7759.4476943225745], [-5061.9345615530165, -8024.847694322545]], "source": 267198765, "length": 60.51700054733153}, {"destination": 267198766, "path": [[-4991.634561555713, -7759.4476943225745], [-4716.63456155369, -7891.397694322677], [-4463.684561549997, -8044.14769432249]], "source": 267198765, "length": 118.84244954507562}, {"destination": 1324294454, "path": [[3426.56543844555, 4876.952305677307], [3367.565438445297, 5088.002305678075], [3300.5154384468938, 5081.1023056773765], [3283.065438445476, 5117.802305678154]], "source": 1324294448, "length": 69.91370615757943}, {"destination": 1324294402, "path": [[-642.9845615514296, 5696.502305676532], [-728.034561554125, 5723.402305678249]], "source": 1324294450, "length": 17.24692284560223}, {"destination": 1324294292, "path": [[-642.9845615514296, 5696.502305676532], [-528.6345615544974, 5664.702305677949]], "source": 1324294450, "length": 22.869588936188336}, {"destination": 1324294989, "path": [[-642.9845615514296, 5696.502305676532], [-620.734561550762, 5744.052305677982]], "source": 1324294450, "length": 11.389878216094898}, {"destination": 1324294322, "path": [[-642.9845615514296, 5696.502305676532], [-652.9345615504667, 5675.252305676892], [-667.7845615570277, 5651.952305678165]], "source": 1324294450, "length": 10.991634535690554}, {"destination": 1315785186, "path": [[-2455.634561556508, -1531.5976943224287], [-2389.334561556211, -1325.1976943227105], [-2369.4845615551685, -1263.5476943234635], [-2359.834561552532, -1233.4476943234308]], "source": 481394996, "length": 68.76339993969151}, {"destination": 624739067, "path": [[-2455.634561556508, -1531.5976943224287], [-2472.7845615544197, -1781.1476943219163], [-2457.784561556764, -1935.3476943226865]], "source": 481394996, "length": 90.00423664702828}, {"destination": 481433742, "path": [[-2455.634561556508, -1531.5976943224287], [-2099.934561556438, -1580.847694322429], [-1796.1845615559469, -1619.8476943234396]], "source": 481394996, "length": 126.93287345090106}, {"destination": 2367475184, "path": [[1756.2654384448706, -2394.0976943226387], [1648.915438444476, -2322.4976943225784], [1579.865438444017, -2270.0476943224858], [1504.6154384492638, -2212.847694321951]], "source": 2376753461, "length": 62.59929529688806}, {"destination": 210643104, "path": [[1756.2654384448706, -2394.0976943226387], [1818.5154384440239, -2377.097694322927], [1820.0654384443737, -2376.7476943223896]], "source": 2376753461, "length": 12.726241234571066}, {"destination": 75355691, "path": [[1756.2654384448706, -2394.0976943226387], [1565.9154384479734, -2435.9976943220117]], "source": 2376753461, "length": 37.37732264643649}, {"destination": 1324294448, "path": [[3283.065438445476, 5117.802305678154], [3300.5154384468938, 5081.1023056773765], [3367.565438445297, 5088.002305678075], [3426.56543844555, 4876.952305677307]], "source": 1324294454, "length": 69.91370615757943}, {"destination": 1324295012, "path": [[3283.065438445476, 5117.802305678154], [3182.515438446387, 5101.75230567711]], "source": 1324294454, "length": 19.454120930512214}, {"destination": 1324294286, "path": [[3283.065438445476, 5117.802305678154], [3271.0154384432144, 5143.052305676576]], "source": 1324294454, "length": 6.065475202140841}, {"destination": 1324294508, "path": [[3088.6154384432984, 5505.502305677368], [3141.565438447458, 5514.002305677223]], "source": 1324294456, "length": 10.246871594311068}, {"destination": 1324294885, "path": [[4472.665438449041, 5200.4023056770875], [4359.615438445985, 5186.402305676907]], "source": 1324294458, "length": 21.725491895978017}, {"destination": 1324294985, "path": [[2949.0154384461675, 5033.752305678263], [2850.06543844446, 5035.252305678028], [2847.365438448435, 4920.552305677006]], "source": 1324294461, "length": 44.335878546231896}, {"destination": 1324294594, "path": [[2949.0154384461675, 5033.752305678263], [2943.8154384493487, 5078.8023056771435], [2941.0154384450493, 5182.652305677493]], "source": 1324294461, "length": 33.168956497129784}, {"destination": 1324295135, "path": [[2949.0154384461675, 5033.752305678263], [3015.415438447633, 5028.35230567733]], "source": 1324294461, "length": 12.685874771645734}, {"destination": 1324294368, "path": [[2825.9154384500107, 4804.902305677317], [3064.5154384458806, 4798.952305677062], [3220.0654384482164, 4766.85230567675]], "source": 1324294463, "length": 75.83217878899097}, {"destination": 1324294985, "path": [[2825.9154384500107, 4804.902305677317], [2847.365438448435, 4920.552305677006]], "source": 1324294463, "length": 26.041050323334687}, {"destination": 1324294551, "path": [[2825.9154384500107, 4804.902305677317], [2814.7654384440557, 4744.602305677859]], "source": 1324294463, "length": 13.576762576625256}, {"destination": 1582473433, "path": [[7156.3154384435275, -6685.047694322321], [7046.565438443508, -6671.497694322071]], "source": 1582473536, "length": 21.08464438722953}, {"destination": 495646010, "path": [[7156.3154384435275, -6685.047694322321], [7184.115438448657, -6660.847694321958], [7231.815438444755, -6637.097694323302], [7283.015438446228, -6630.6976943231175], [7487.415438447442, -6628.3476943223], [7587.065438443119, -6618.697694323217]], "source": 1582473536, "length": 85.81745984651947}, {"destination": 1582473249, "path": [[7156.3154384435275, -6685.047694322321], [7116.66543844558, -6720.447694322118], [7073.315438447025, -6768.647694322282]], "source": 1582473536, "length": 24.422523524397782}, {"destination": 1315785600, "path": [[-4660.1345615542305, -1125.7476943224988], [-4423.534561553311, -1251.1976943230252]], "source": 1315785440, "length": 52.94095458440175}, {"destination": 1324294352, "path": [[4480.415438443686, 5333.90230567754], [4453.2654384497055, 5446.552305677698]], "source": 1324294466, "length": 25.578889519539075}, {"destination": 1324294377, "path": [[4480.415438443686, 5333.90230567754], [4486.0654384493155, 5310.5023056776445], [4507.51543844774, 5299.052305677065], [4514.165438443741, 5261.602305678181]], "source": 1324294466, "length": 18.54616232236761}, {"destination": 1324294404, "path": [[4480.415438443686, 5333.90230567754], [4408.265438449633, 5331.152305677378], [4324.265438448549, 5322.802305677498]], "source": 1324294466, "length": 29.81945776830582}, {"destination": 1777868857, "path": [[8300.465438445315, -7056.047694321776], [8386.06543844378, -7057.597694322127], [8469.215438445588, -7069.09769432329], [8521.515438445704, -7083.99769432333], [8580.515438445957, -7105.797694322291], [8627.46543844395, -7128.6976943234495], [8696.765438443777, -7174.997694322727]], "source": 1582473540, "length": 81.99928023497745}, {"destination": 3733749299, "path": [[8300.465438445315, -7056.047694321776], [8292.015438449596, -7056.297694322921]], "source": 1582473540, "length": 1.6083082128860957}, {"destination": 1777868870, "path": [[8300.465438445315, -7056.047694321776], [8240.815438448124, -7155.497694322222]], "source": 1582473540, "length": 24.855321762584467}, {"destination": 1319641416, "path": [[4995.265438445529, 5004.952305677435], [4507.66543844594, 4977.952305678102]], "source": 1319641415, "length": 92.93160540259832}, {"destination": 1319641082, "path": [[4995.265438445529, 5004.952305677435], [4994.86543844796, 4983.852305677772], [4992.3654384471665, 4844.302305677673]], "source": 1319641415, "length": 35.73153114797788}, {"destination": 1319641067, "path": [[4995.265438445529, 5004.952305677435], [4995.615438446066, 5023.352305677519], [4997.815438443354, 5144.902305676879]], "source": 1319641415, "length": 31.129119320318996}, {"destination": 1324295152, "path": [[4507.66543844594, 4977.952305678102], [4504.81543844461, 4837.952305678073], [4506.965438444866, 4804.902305677317]], "source": 1319641416, "length": 38.50102970027864}, {"destination": 1324295101, "path": [[4507.66543844594, 4977.952305678102], [4486.0654384493155, 5007.702305677597], [4394.365438443515, 4997.90230567676]], "source": 1319641416, "length": 25.363156341946866}, {"destination": 1319641415, "path": [[4507.66543844594, 4977.952305678102], [4995.265438445529, 5004.952305677435]], "source": 1319641416, "length": 92.93160540259832}, {"destination": 1319641067, "path": [[4529.115438444364, 5122.452305677427], [4997.815438443354, 5144.902305676879]], "source": 1319641417, "length": 89.28272350115523}, {"destination": 850261330, "path": [[-4157.534561556986, -7249.147694322389], [-3777.3845615518553, -7316.547694323106], [-3491.3845615562877, -7357.197694322082], [-3399.234561555886, -7371.947694322145]], "source": 1887854441, "length": 146.77331562933603}, {"destination": 1315678830, "path": [[-4157.534561556986, -7249.147694322389], [-4194.234561552435, -7380.397694323193]], "source": 1887854441, "length": 30.011310963744585}, {"destination": 1324294609, "path": [[2659.415438444057, 5344.302305678283], [2675.7154384497994, 5296.752305676833], [2799.065438445325, 5299.052305677065], [2809.8154384466056, 5250.852305676901], [2871.5154384499897, 5246.30230567702], [2868.2654384439843, 5179.652305677962]], "source": 1324294481, "length": 72.01189065114794}, {"destination": 1324295149, "path": [[2659.415438444057, 5344.302305678283], [2409.3154384488003, 5348.602305677019]], "source": 1324294481, "length": 47.576766521058936}, {"destination": 1324294269, "path": [[2659.415438444057, 5344.302305678283], [2756.165438448477, 5342.602305677957], [3112.7654384448533, 5326.5523056769125]], "source": 1324294481, "length": 86.32141090853234}, {"destination": 4676163121, "path": [[-6222.3345615564085, -2110.847694321905], [-6190.034561555535, -2129.6476943231114], [-6153.134561550643, -2151.3476943226806]], "source": 1469016803, "length": 15.946139911997673}, {"destination": 1469016684, "path": [[-6222.3345615564085, -2110.847694321905], [-6406.984561550644, -2008.847694321858]], "source": 1469016803, "length": 41.80351074446034}, {"destination": 1890531918, "path": [[-6222.3345615564085, -2110.847694321905], [-6210.534561553515, -2096.997694323477], [-6185.634561553854, -2076.9476943218733], [-6162.384561555711, -2068.4476943220175], [-6138.584561554694, -2065.597694322463], [-6107.534561550665, -2064.247694322674], [-6084.734561554228, -2066.547694322907]], "source": 1469016803, "length": 29.972693777952056}, {"destination": 1890531945, "path": [[-6222.3345615564085, -2110.847694321905], [-6233.334561557058, -2126.7976943217805], [-6242.684561556189, -2148.5976943225182], [-6251.034561550739, -2175.497694322459], [-6249.784561553895, -2198.0976943218875], [-6245.584561554551, -2219.8976943226257], [-6235.984561556052, -2236.8976943223374], [-6223.9345615537895, -2250.647694323149], [-6209.184561555503, -2263.297694321764]], "source": 1469016803, "length": 37.40924334566628}, {"destination": 1324294354, "path": [[4102.515438447085, 5081.1023056773765], [4096.915438445592, 4966.102305678177]], "source": 1324294485, "length": 25.597029141834675}, {"destination": 1324294696, "path": [[3766.1654384493204, 4803.552305677527], [3751.1154384475276, 4858.602305677806], [3700.165438445424, 4851.752305677693], [3697.5154384464304, 4906.802305677971]], "source": 1324294487, "length": 34.63568382411272}, {"destination": 1324294638, "path": [[3766.1654384493204, 4803.552305677527], [3670.66543844885, 4787.502305678259]], "source": 1324294487, "length": 18.510705207193496}, {"destination": 1324294303, "path": [[3766.1654384493204, 4803.552305677527], [3782.8654384455263, 4742.402305677018]], "source": 1324294487, "length": 13.964869754874995}, {"destination": 773662874, "path": [[571.6154384458605, -1238.947694321979], [562.4654384490668, -1237.7976943227509]], "source": 2360181090, "length": 1.7607899575641686}, {"destination": 1317670854, "path": [[2565.5654384451054, -157.7476943221967], [2432.4654384457745, -150.39769432334538]], "source": 1317670971, "length": 25.364288674533714}, {"destination": 1320103888, "path": [[2097.315438447822, 2071.302305678202], [1897.6154384446886, 2092.652305677234]], "source": 1320103996, "length": 38.27452370725148}, {"destination": 1316472139, "path": [[2097.315438447822, 2071.302305678202], [2179.365438443881, 2062.552305677201], [2308.115438445668, 2062.552305677201]], "source": 1320103996, "length": 40.21130040781365}, {"destination": 1320103980, "path": [[2097.315438447822, 2071.302305678202], [2099.0654384434038, 2014.3523056770364], [2093.6654384442477, 1945.502305677138], [2182.215438445212, 1938.6523056770243], [2168.515438448537, 1870.252305677056]], "source": 1320103996, "length": 60.35701029330148}, {"destination": 1315785461, "path": [[-5499.684561556251, -1850.4976943223282], [-5624.784561554463, -1783.2476943233644]], "source": 1315785447, "length": 28.0999256947467}, {"destination": 1324294456, "path": [[3141.565438447458, 5514.002305677223], [3088.6154384432984, 5505.502305677368]], "source": 1324294508, "length": 10.246871594311068}, {"destination": 1324294433, "path": [[3141.565438447458, 5514.002305677223], [3184.515438448443, 5520.852305677337]], "source": 1324294508, "length": 8.309969028298275}, {"destination": 1324295043, "path": [[3141.565438447458, 5514.002305677223], [3123.515438446134, 5617.902305678157]], "source": 1324294508, "length": 23.36029013701704}, {"destination": 1324294520, "path": [[3413.215438449413, 5177.502305677706], [3399.0654384439267, 5238.502305678238]], "source": 1324294511, "length": 13.829977909779377}, {"destination": 1324295174, "path": [[3413.215438449413, 5177.502305677706], [3441.615438447343, 5055.302305677856]], "source": 1324294511, "length": 27.707487705127768}, {"destination": 1324294286, "path": [[3413.215438449413, 5177.502305677706], [3372.965438444453, 5168.302305676775], [3271.0154384432144, 5143.052305676576]], "source": 1324294511, "length": 28.110230053372476}, {"destination": 1324294208, "path": [[-213.43456155165086, 5579.4023056776605], [-186.23456155353324, 5638.552305677891]], "source": 1324294516, "length": 14.134862485723167}, {"destination": 1324295129, "path": [[-213.43456155165086, 5579.4023056776605], [-221.08456155223166, 5562.852305677879], [-323.78456155157664, 5609.2523056765485]], "source": 1324294516, "length": 26.04880219760131}, {"destination": 1324295091, "path": [[-213.43456155165086, 5579.4023056776605], [-143.28456155254798, 5562.852305677879], [-57.48456155174608, 5542.202305678145]], "source": 1324294516, "length": 30.79295588707778}, {"destination": 1315785405, "path": [[-5218.034561551121, -1994.9976943234306], [-5065.484561555422, -2073.547694322997]], "source": 1315785449, "length": 33.86295095749253}, {"destination": 1324294871, "path": [[3399.0654384439267, 5238.502305678238], [3469.015438447798, 5251.402305677999]], "source": 1324294520, "length": 13.609582761868326}, {"destination": 1324294940, "path": [[3399.0654384439267, 5238.502305678238], [3214.465438446723, 5204.502305677039]], "source": 1324294520, "length": 35.91433870876437}, {"destination": 1324294511, "path": [[3399.0654384439267, 5238.502305678238], [3413.215438449413, 5177.502305677706]], "source": 1324294520, "length": 13.829977909779377}, {"destination": 3113821592, "path": [[-7350.53456155299, 2662.552305677579], [-7388.08456155482, 2621.2523056781124], [-7400.134561549976, 2557.0023056769032], [-7369.284561555389, 2516.902305677249]], "source": 3113821589, "length": 36.780557643541016}, {"destination": 3113821585, "path": [[-7350.53456155299, 2662.552305677579], [-7358.584561551141, 2674.0023056781583], [-7373.334561556532, 2758.85230567674], [-7333.084561551573, 2834.552305676752], [-7290.434561554093, 2887.302305676798]], "source": 3113821589, "length": 54.80455667120913}, {"destination": 3113821604, "path": [[-7350.53456155299, 2662.552305677579], [-7282.134561556575, 2652.20230567742], [-7260.684561551045, 2641.9023056778456], [-7267.384561551182, 2592.5523056766765], [-7248.584561551752, 2543.2523056778678], [-7137.2845615513825, 2512.3023056767834], [-7024.634561553001, 2537.5023056781743], [-6949.534561556447, 2606.3523056780723], [-6907.934561553475, 2648.752305677959], [-6908.534561553381, 2657.9023056765295]], "source": 3113821589, "length": 120.15751362409489}, {"destination": 848698034, "path": [[7842.2154384441, -3237.297694322905], [7999.315438446785, -3251.5976943230385], [8257.015438445593, -3268.797694323311], [8394.165438446067, -3288.847694323138]], "source": 848698091, "length": 105.65446104775317}, {"destination": 848698077, "path": [[7842.2154384441, -3237.297694322905], [8486.3654384435, -3386.1976943221352], [9216.215438449637, -3580.4976943225597], [9442.265438444509, -3653.697694321778]], "source": 848698091, "length": 318.209080648208}, {"destination": 554691049, "path": [[11093.365438448189, -7017.347694322496], [11062.915438444066, -7078.69769432179]], "source": 93438340, "length": 14.820877444172126}, {"destination": 554691043, "path": [[11093.365438448189, -7017.347694322496], [11264.715438443318, -6707.64769432175], [11314.615438443809, -6610.747694322683], [11433.115438443054, -6225.497694321902]], "source": 93438340, "length": 188.32691946560965}, {"destination": 1776093638, "path": [[11093.365438448189, -7017.347694322496], [10371.565438447305, -6823.097694322655], [10148.415438443692, -6741.697694321758]], "source": 93438340, "length": 190.01472351483116}, {"destination": 1324294424, "path": [[3260.315438446071, 5276.102305677099], [3243.865438449234, 5329.102305678291]], "source": 1324294533, "length": 12.195416098724664}, {"destination": 476671528, "path": [[-398.13456155002314, -7305.297694323088], [-433.5845615557332, -7304.547694323204]], "source": 1720951176, "length": 6.742421057254979}, {"destination": 1891590934, "path": [[-6360.884561551928, -2112.397694322254], [-6356.884561554921, -2103.1476943225157]], "source": 601145306, "length": 2.1938097375871117}, {"destination": 3355899006, "path": [[-6360.884561551928, -2112.397694322254], [-6632.734561556219, -2026.897694323182]], "source": 601145306, "length": 55.08186166818415}, {"destination": 78604047, "path": [[-6360.884561551928, -2112.397694322254], [-6569.9345615541915, -2023.5976943219214], [-6725.484561556527, -1942.1976943228003], [-6835.484561555915, -1879.0976943225955], [-6956.184561552447, -1806.8476943220446], [-7149.2345615524755, -1673.8476943221058], [-7323.584561554242, -1551.1476943217417], [-7485.834561556714, -1435.2976943232675], [-7599.834561553109, -1365.3476943229493], [-7739.28456155204, -1289.6476943229372], [-7944.2845615531605, -1184.2976943228223], [-8101.784561553415, -1104.5976943222513]], "source": 601145306, "length": 400.9350053810133}, {"destination": 1473995248, "path": [[7123.16543844338, -1824.7976943222], [7139.415438444985, -1810.6476943220428], [7171.065438448921, -1747.197694323077], [7246.165438445473, -1671.5476943218732], [7294.965438447321, -1656.9476943217865], [7310.515438447851, -1600.4476943223267], [7356.465438448367, -1552.2976943227463], [7402.915438447621, -1547.2476943223512], [7417.265438448339, -1525.6476943221742]], "source": 3056370065, "length": 92.80822035542656}, {"destination": 1473995267, "path": [[7123.16543844338, -1824.7976943222], [7154.965438445515, -1860.747694323095], [7152.815438445259, -1894.347694323173], [7113.915438445418, -1926.4476943234854], [7085.215438443982, -1952.4976943223749], [7136.165438446085, -1983.447694323459], [7185.815438447207, -2017.8476943222279]], "source": 3056370065, "length": 59.78265426333679}, {"destination": 1473995326, "path": [[7123.16543844338, -1824.7976943222], [7117.415438443686, -1829.7976943220106], [7083.065438443726, -1831.2476943229683]], "source": 3056370065, "length": 8.093688547635574}, {"destination": 1324295104, "path": [[4926.21543844507, 5452.65230567793], [4952.115438449311, 5385.1023056772365]], "source": 1324294546, "length": 15.80952883740385}, {"destination": 1324294718, "path": [[4926.21543844507, 5452.65230567793], [4811.965438449306, 5425.65230567682]], "source": 1324294546, "length": 22.544116985102477}, {"destination": 1319641111, "path": [[4926.21543844507, 5452.65230567793], [4917.565438447014, 5475.202305676774]], "source": 1324294546, "length": 5.278956386150266}, {"destination": 3356046289, "path": [[5659.415438444171, 620.3023056770007], [5725.665438447436, 678.2023056768338], [5901.565438449552, 885.9523056781171]], "source": 1888382823, "length": 75.05505030711015}, {"destination": 1324294463, "path": [[2814.7654384440557, 4744.602305677859], [2825.9154384500107, 4804.902305677317]], "source": 1324294551, "length": 13.576762576625256}, {"destination": 476555419, "path": [[2814.7654384440557, 4744.602305677859], [2484.0654384448158, 4739.852305677417], [2274.465438446782, 4718.102305677263]], "source": 1324294551, "length": 103.06110815422386}, {"destination": 476559359, "path": [[2814.7654384440557, 4744.602305677859], [2994.7654384443467, 4747.15230567746], [3355.215438446635, 4670.102305677659], [3467.465438447448, 4577.502305677328], [3491.2654384484654, 4550.6023056773865]], "source": 1324294551, "length": 142.0671604904078}, {"destination": 1771402888, "path": [[8440.415438442982, -6067.347694322933], [8330.8654384453, -6073.497694321972], [8159.7154384454025, -6054.14769432322]], "source": 620134808, "length": 53.702726322315954}, {"destination": 1889249283, "path": [[8440.415438442982, -6067.347694322933], [8266.56543844706, -6035.097694322644], [8113.0154384467805, -6015.597694322139], [8018.615438444954, -6006.897694321722], [7942.265438444451, -6005.24769432198], [7877.665438449811, -6005.047694323195], [7807.015438444864, -6010.047694323006], [7672.665438448689, -6027.247694323279], [7515.0654384472655, -6055.597694322401], [7355.565438444955, -6093.797694322944], [7197.715438444164, -6141.347694322619], [7054.465438443458, -6192.647694323483], [6903.3154384499085, -6248.447694321868], [6621.915438444148, -6364.447694322095], [6463.065438445881, -6439.747694322761], [6292.415438444721, -6531.547694322626], [5570.315438447437, -6819.647694323195], [5506.665438446134, -6841.547694323324], [5452.365438443962, -6857.747694322569], [5420.965438446501, -6865.297694321981], [5396.865438449084, -6869.347694323124], [5371.06543844601, -6872.297694322071], [5344.265438445462, -6874.897694322257], [5304.265438446975, -6878.397694322302], [5242.615438447729, -6882.647694322231], [5217.615438446899, -6884.697694323094], [5190.265438443475, -6887.797694322017], [5157.565438445034, -6893.397694321735], [5100.365438444498, -6907.847694321845], [5053.915438445245, -6919.947694322915], [5004.515438443491, -6935.097694322323], [4967.615438445705, -6944.147694323277], [4923.515438449044, -6953.647694322384], [4863.015438445473, -6963.347694322053], [4796.315438447607, -6968.94769432177], [4709.615438443393, -6970.847694322657], [4584.21543844878, -6974.347694322702], [4356.015438446548, -6975.047694322001], [4057.7654384463813, -6955.2976943221265], [3947.8154384440245, -6944.747694323183], [3828.0654384479362, -6927.097694322982], [3712.6154384452548, -6903.647694322501], [3584.3654384493107, -6866.847694322331], [3466.365438448804, -6825.597694323449], [3353.1154384434103, -6776.497694323424], [3242.015438445378, -6717.847694321932], [3068.115438445318, -6618.7476943220245], [2814.6154384458555, -6445.7976943224085], [2637.365438445727, -6310.34769432226], [2561.7154384462992, -6250.497694322732], [2396.3654384431265, -6100.897694322427], [822.9654384450669, -4543.847694321812], [554.9154384496546, -4268.497694322804], [470.0654384492964, -4195.49769432237], [408.51543844411253, -4150.5976943234655], [359.9654384487394, -4119.09769432306], [307.96543844502366, -4088.097694323167], [194.56543844853513, -4031.4476943219547], [54.315438447360975, -3964.6476943229204], [-89.03456155451295, -3902.5476943219674], [-347.3845615502569, -3792.7476943231395], [-552.8345615530839, -3707.447694322852], [-769.6845615541292, -3622.6476943230778], [-1039.6345615504288, -3521.4976943223064], [-1158.2845615549786, -3476.7476943233787], [-1263.4845615551171, -3431.9976943226748], [-1570.9845615532458, -3289.7976943218055], [-1672.3845615516097, -3243.3476943225514], [-1730.4845615555564, -3223.3976943221164], [-1806.7845615519218, -3209.4976943231045], [-1860.5845615553562, -3205.847694323083], [-1918.7345615563345, -3206.5976943229657], [-1973.8845615506762, -3216.297694322634], [-2017.8845615532737, -3227.9476943219975], [-2085.784561550952, -3250.747694321987], [-2128.2345615531995, -3268.397694322189], [-2203.034561553352, -3299.0976943221285], [-2252.8345615526746, -3316.297694322401], [-2310.1845615514094, -3334.447694323117], [-2386.284561552543, -3355.047694322266], [-2566.73456155454, -3390.5476943232316], [-2704.8845615524897, -3412.347694322193], [-2780.634561553086, -3419.1976943223067], [-2879.184561550119, -3426.647694322327], [-2969.734561553139, -3427.797694323331], [-3097.834561550883, -3418.647694322985], [-3200.3845615520277, -3404.297694322267], [-3286.2345615569666, -3392.2476943217816], [-3416.234561555598, -3363.947694323244]], "source": 620134808, "length": 2618.1418252482995}, {"destination": 1324294261, "path": [[4767.71543844734, 5289.852305677911], [4719.41543844423, 5287.552305677678], [4703.31543844793, 5326.5523056769125]], "source": 1324294553, "length": 18.399358508727666}, {"destination": 1324294622, "path": [[4767.71543844734, 5289.852305677911], [4824.015438444462, 5303.602305676946], [4871.515438445329, 5310.802305677597]], "source": 1324294553, "length": 20.311122578209698}, {"destination": 1324294830, "path": [[4767.71543844734, 5289.852305677911], [4783.765438446608, 5244.002305676787]], "source": 1324294553, "length": 10.643781979764636}, {"destination": 479297994, "path": [[-2410.884561555804, 6349.252305676956], [-2439.3345615507656, 6277.70230567748]], "source": 479297947, "length": 16.80705744537484}, {"destination": 603884627, "path": [[-2410.884561555804, 6349.252305676956], [-2062.834561556315, 6303.152305678239]], "source": 479297947, "length": 66.98715665265004}, {"destination": 1765485440, "path": [[6993.565438449423, -5074.247694322409], [6965.7154384472615, -5939.447694322197]], "source": 1993253276, "length": 192.48481351057234}, {"destination": 1765485450, "path": [[6993.565438449423, -5074.247694322409], [6993.91543844996, -5065.397694322016]], "source": 1993253276, "length": 1.9709107868158522}, {"destination": 1993253284, "path": [[6993.565438449423, -5074.247694322409], [7100.56543844928, -5068.597694322108], [7685.165438445551, -5021.547694322948], [7715.515438448506, -5038.447694323267], [7750.765438444773, -5092.097694323173], [7754.21543844601, -5635.697694323482]], "source": 1993253276, "length": 273.50465841881504}, {"destination": 4470914103, "path": [[6993.565438449423, -5074.247694322409], [6838.215438449424, -5089.097694321865], [6784.615438448327, -5096.8976943224225], [6748.665438443879, -5113.797694322741], [6679.515438449357, -5166.847694322741], [6640.065438446641, -5225.947694322386], [6545.565438443646, -5678.197694322762], [6551.165438445139, -5854.247694323078], [6557.3154384495065, -5920.0476943228605]], "source": 1993253276, "length": 236.6768296900546}, {"destination": 1776086130, "path": [[4682.81543844995, -6561.347694322705], [4645.315438445152, -6514.197694322376]], "source": 1205027230, "length": 12.680189862208726}, {"destination": 1785693356, "path": [[4682.81543844995, -6561.347694322705], [4718.815438444324, -6548.897694322875], [4728.9154384486665, -6586.54769432232]], "source": 1205027230, "length": 15.9747200428465}, {"destination": 1776086159, "path": [[4682.81543844995, -6561.347694322705], [4639.965438443028, -6578.397694323002]], "source": 1205027230, "length": 8.987332329111133}, {"destination": 483122140, "path": [[-7427.734561552768, 1350.2023056766177], [-7444.384561551942, 1307.5023056767777], [-7521.884561555225, 1109.0023056770092], [-7573.134561553729, 998.7023056776678], [-7592.934561550635, 956.1523056778043]], "source": 483115423, "length": 93.12867447120874}, {"destination": 4779853276, "path": [[-7427.734561552768, 1350.2023056766177], [-7476.634561555784, 1359.1523056781796], [-7514.334561555814, 1367.0523056781292]], "source": 483115423, "length": 16.891807920019197}, {"destination": 483116582, "path": [[-7427.734561552768, 1350.2023056766177], [-7383.084561553233, 1343.2023056765274], [-7110.384561556771, 1361.6023056766126]], "source": 483115423, "length": 60.65461854086937}, {"destination": 475978728, "path": [[3271.2654384496886, -266.39769432179605], [3827.1154384474926, -341.99769432241567]], "source": 385114529, "length": 107.03476333216841}, {"destination": 1548518395, "path": [[3271.2654384496886, -266.39769432179605], [3234.5154384429975, -300.54769432297235]], "source": 385114529, "length": 10.32092679456833}, {"destination": 1317670965, "path": [[3271.2654384496886, -266.39769432179605], [3381.5654384454774, -73.39769432235244]], "source": 385114529, "length": 47.772618749002966}, {"destination": 1993253284, "path": [[7792.715438448284, -5625.447694322716], [7754.21543844601, -5635.697694323482]], "source": 1993253283, "length": 7.666881107127906}, {"destination": 63298510, "path": [[7792.715438448284, -5625.447694322716], [7870.5154384479665, -5604.0976943219075]], "source": 1993253283, "length": 15.536960065690343}, {"destination": 495772550, "path": [[7792.715438448284, -5625.447694322716], [7793.965438445128, -5582.697694322292], [7794.9154384455705, -5437.247694322522], [7790.465438446859, -4998.947694321742]], "source": 1993253283, "length": 139.33512267611943}, {"destination": 1765485440, "path": [[7754.21543844601, -5635.697694323482], [7685.41543844492, -5654.097694321791], [6965.7154384472615, -5939.447694322197]], "source": 1993253284, "length": 164.55399845822296}, {"destination": 1993253283, "path": [[7754.21543844601, -5635.697694323482], [7792.715438448284, -5625.447694322716]], "source": 1993253284, "length": 7.666881107127906}, {"destination": 1993253276, "path": [[7754.21543844601, -5635.697694323482], [7750.765438444773, -5092.097694323173], [7715.515438448506, -5038.447694323267], [7685.165438445551, -5021.547694322948], [7100.56543844928, -5068.597694322108], [6993.565438449423, -5074.247694322409]], "source": 1993253284, "length": 273.50465841881504}, {"destination": 2991483745, "path": [[-4318.98456155011, 9177.202305677312], [-4528.734561553449, 9244.252305677492]], "source": 3421417542, "length": 42.591636552117194}, {"destination": 3421417540, "path": [[-4318.98456155011, 9177.202305677312], [-4379.9345615553875, 9040.502305676768]], "source": 3421417542, "length": 32.53627150288238}, {"destination": 622622645, "path": [[-4318.98456155011, 9177.202305677312], [-3579.884561553115, 8940.902305678123]], "source": 3421417542, "length": 150.0834603037809}, {"destination": 1779952828, "path": [[6148.265438447708, -6338.497694322597], [6208.765438444175, -6284.297694323371]], "source": 1993253289, "length": 16.662182565988708}, {"destination": 1993253290, "path": [[6148.265438447708, -6338.497694322597], [6030.315438444233, -6383.29769432211]], "source": 1993253289, "length": 24.540763284853583}, {"destination": 1771400900, "path": [[6148.265438447708, -6338.497694322597], [6267.2154384486585, -6293.497694322525], [6314.01543844845, -6269.847694323261], [6358.315438447448, -6234.297694321711], [6362.315438444455, -6186.1476943221305], [6353.515438448198, -6142.647694321823]], "source": 1993253289, "length": 67.17515046714185}, {"destination": 1993253289, "path": [[6030.315438444233, -6383.29769432211], [6148.265438447708, -6338.497694322597]], "source": 1993253290, "length": 24.540763284853583}, {"destination": 1782221403, "path": [[6030.315438444233, -6383.29769432211], [5521.51543844559, -6576.147694323353]], "source": 1993253290, "length": 105.82601271289451}, {"destination": 1779952828, "path": [[6030.315438444233, -6383.29769432211], [6026.765438448933, -6374.197694322348], [6051.26543844392, -6346.647694321917], [6208.765438444175, -6284.297694323371]], "source": 1993253290, "length": 42.83041422108272}, {"destination": 1317671227, "path": [[3144.4654384458204, -29.297694322139023], [3138.5654384479267, -82.64769432209107]], "source": 1317670983, "length": 11.91808388598938}, {"destination": 1317671035, "path": [[3144.4654384458204, -29.297694322139023], [3222.71543844721, -31.597694322371694], [3273.6654384493136, -47.64769432341609]], "source": 1317670983, "length": 25.21516394830055}, {"destination": 1317670957, "path": [[3144.4654384458204, -29.297694322139023], [3163.465438447588, 142.0023056777353], [3167.5154384487314, 192.95230567806243]], "source": 1317670983, "length": 49.62350874243774}, {"destination": 1316623636, "path": [[14.665438449412704, -611.4476943217539], [11.91543844925036, -610.9976943218243]], "source": 3724313004, "length": 0.537035902369085}, {"destination": 1316623677, "path": [[14.665438449412704, -611.4476943217539], [-167.38456154996584, -577.5476943217228]], "source": 3724313004, "length": 35.43178054178108}, {"destination": 1316623695, "path": [[14.665438449412704, -611.4476943217539], [250.11543844755124, -649.0976943229754]], "source": 3724313004, "length": 45.55140138430699}, {"destination": 1582473388, "path": [[6738.715438444842, -6596.097694322012], [6687.665438448676, -6637.097694323302]], "source": 1993253294, "length": 13.318057278244138}, {"destination": 4470914092, "path": [[6738.715438444842, -6596.097694322012], [6829.715438449568, -6544.697694321755]], "source": 1993253294, "length": 20.737905783561246}, {"destination": 4470914092, "path": [[6738.715438444842, -6596.097694322012], [6748.365438447479, -6625.847694323284], [6754.915438449416, -6640.997694322692], [6766.665438448172, -6648.397694322128], [6786.015438443372, -6646.14769432248], [6795.865438448345, -6624.647694323471], [6807.86543844647, -6596.847694321895], [6829.715438449568, -6544.697694321755]], "source": 1993253294, "length": 40.99044788554069}, {"destination": 1324295129, "path": [[-363.43456155663034, 5527.602305678059], [-323.78456155157664, 5609.2523056765485]], "source": 1324294575, "length": 19.661950800689183}, {"destination": 1324294266, "path": [[-363.43456155663034, 5527.602305678059], [-557.1845615506277, 5611.5523056767815]], "source": 1324294575, "length": 41.30967815921283}, {"destination": 1324294850, "path": [[-363.43456155663034, 5527.602305678059], [-322.9845615564386, 5510.052305677249], [-188.88456155252697, 5455.0023056769705], [-70.88456155202039, 5413.752305678088], [-44.03456155444019, 5416.002305677736]], "source": 1324294575, "length": 66.29288044788933}, {"destination": 1324294433, "path": [[3217.565438447423, 5526.152305677101], [3184.515438448443, 5520.852305677337]], "source": 1324294579, "length": 6.3952949239235055}, {"destination": 1324294866, "path": [[3217.565438447423, 5526.152305677101], [3392.315438446758, 5554.152305677462]], "source": 1324294579, "length": 33.81460962787923}, {"destination": 1324294589, "path": [[3217.565438447423, 5526.152305677101], [3193.2154384435307, 5668.35230567797]], "source": 1324294579, "length": 31.96125081383139}, {"destination": 1324294921, "path": [[-56.83456155480826, 5462.90230567692], [-167.43456155410286, 5500.902305676902]], "source": 1324294583, "length": 22.66949981247417}, {"destination": 1324294850, "path": [[-56.83456155480826, 5462.90230567692], [-44.03456155444019, 5416.002305677736]], "source": 1324294583, "length": 10.710467177597943}, {"destination": 1324295091, "path": [[-56.83456155480826, 5462.90230567692], [-62.83456155387057, 5484.852305677634], [-57.48456155174608, 5542.202305678145]], "source": 1324294583, "length": 17.808450534146033}, {"destination": 1779937392, "path": [[7735.965438449455, -6823.897694323122], [7676.465438443358, -6852.84769432215], [7626.215438449435, -6872.247694323263], [7555.615438448626, -6870.1976943224], [7500.46543844718, -6866.047694321864], [7460.815438449231, -6845.7976943232525], [7435.715438447232, -6825.147694321742], [7419.665438447964, -6823.947694321931], [7396.915438448559, -6829.6976943234], [7371.415438448992, -6838.84769432197], [7352.615438449561, -6833.147694322861], [7336.565438443187, -6825.097694322934], [7316.415438445745, -6820.497694322469], [7303.015438445471, -6827.397694323167], [7297.665438443346, -6839.997694322975], [7297.665438443346, -6857.197694323248], [7300.315438449445, -6870.347694322376], [7293.6154384493075, -6884.747694321903], [7293.6154384493075, -6897.347694321709], [7311.06543844362, -6911.097694322521], [7321.765438447869, -6925.997694322561], [7316.415438445745, -6944.347694322061], [7309.51543844327, -6952.047694323227], [7300.315438449445, -6989.097694322765], [7300.615438445846, -7032.097694322559], [7251.115438450029, -7062.547694323129], [7178.065438445457, -7090.097694321784]], "source": 1993253305, "length": 165.52167722012484}, {"destination": 495646010, "path": [[7735.965438449455, -6823.897694323122], [7691.865438445689, -6795.347694323439], [7678.2154384460455, -6783.847694322276], [7652.76543844351, -6749.697694322876], [7638.51543844396, -6677.747694322278], [7587.065438443119, -6618.697694323217]], "source": 1993253305, "length": 55.769586160533436}, {"destination": 495645990, "path": [[7735.965438449455, -6823.897694323122], [7828.315438445088, -6822.24769432338], [7916.015438446777, -6813.647694322355], [7984.965438446068, -6811.897694323221], [8019.765438447735, -6827.597694321952], [8057.015438446058, -6830.097694322745], [8097.165438449849, -6853.547694323225]], "source": 1993253305, "length": 71.2955164504016}, {"destination": 1324295104, "path": [[4856.215438444167, 5354.102305677344], [4901.115438443071, 5376.552305676796], [4952.115438449311, 5385.1023056772365]], "source": 1324294586, "length": 19.776213046035743}, {"destination": 1324294718, "path": [[4856.215438444167, 5354.102305677344], [4826.7154384475925, 5365.552305677923], [4811.965438449306, 5425.65230567682]], "source": 1324294586, "length": 19.81815267866471}, {"destination": 1324294622, "path": [[4856.215438444167, 5354.102305677344], [4871.515438445329, 5310.802305677597]], "source": 1324294586, "length": 10.060020651238538}, {"destination": 1324294261, "path": [[4856.215438444167, 5354.102305677344], [4703.31543844793, 5326.5523056769125]], "source": 1324294586, "length": 29.71888461708759}, {"destination": 1324294410, "path": [[3193.2154384435307, 5668.35230567797], [3354.1654384450226, 5690.002305676955]], "source": 1324294589, "length": 30.988239671484244}, {"destination": 476561947, "path": [[3193.2154384435307, 5668.35230567797], [3142.2654384485327, 5663.752305677505], [3115.865438445553, 5761.902305676969]], "source": 1324294589, "length": 32.14164668584613}, {"destination": 1324294579, "path": [[3193.2154384435307, 5668.35230567797], [3217.565438447423, 5526.152305677101]], "source": 1324294589, "length": 31.96125081383139}, {"destination": 1324294267, "path": [[4293.8654384485635, 4891.952305676739], [4298.3154384472755, 4856.302305677574]], "source": 1324294590, "length": 7.9734460306094075}, {"destination": 1324294429, "path": [[4293.8654384485635, 4891.952305676739], [4199.065438449168, 4888.452305676694], [4190.665438443375, 4976.152305676606]], "source": 1324294590, "length": 37.61586178180332}, {"destination": 1324295054, "path": [[4293.8654384485635, 4891.952305676739], [4282.115438449808, 4985.902305676859]], "source": 1324294590, "length": 21.012709238729162}, {"destination": 1324295176, "path": [[2941.0154384450493, 5182.652305677493], [3067.0654384437057, 5187.852305677865]], "source": 1324294594, "length": 24.001584874624957}, {"destination": 1324294609, "path": [[2941.0154384450493, 5182.652305677493], [2868.2654384439843, 5179.652305677962]], "source": 1324294594, "length": 13.852117349015888}, {"destination": 1324294461, "path": [[2941.0154384450493, 5182.652305677493], [2943.8154384493487, 5078.8023056771435], [2949.0154384461675, 5033.752305678263]], "source": 1324294594, "length": 33.168956497129784}, {"destination": 63308076, "path": [[4514.365438446077, -6993.197694322717], [4557.265438450031, -6969.747694322237], [4607.365438445754, -6936.297694322136], [4660.7154384474825, -6894.3476943221785]], "source": 1993253315, "length": 35.55030493890665}, {"destination": 1993253317, "path": [[4514.365438446077, -6993.197694322717], [4534.465438446488, -7016.4976943232205]], "source": 1993253315, "length": 6.440233868799223}, {"destination": 1785697735, "path": [[4514.365438446077, -6993.197694322717], [4500.365438445897, -6976.997694323472]], "source": 1993253315, "length": 4.4811132986317945}, {"destination": 477636380, "path": [[-7765.534561556819, -6836.547694321737], [-8269.534561556213, -6730.247694322955], [-8595.034561551529, -6639.847694323464]], "source": 477626820, "length": 163.78068203646387}, {"destination": 477625999, "path": [[-7765.534561556819, -6836.547694321737], [-7460.7345615547165, -6907.047694323154]], "source": 477626820, "length": 60.03913677800754}, {"destination": 1993253320, "path": [[4534.465438446488, -7016.4976943232205], [4562.865438444419, -7049.297694322831]], "source": 1993253317, "length": 9.076145076451638}, {"destination": 1993253330, "path": [[4534.465438446488, -7016.4976943232205], [4143.215438446646, -7249.6976943217105]], "source": 1993253317, "length": 90.68614909037468}, {"destination": 1993253315, "path": [[4534.465438446488, -7016.4976943232205], [4514.365438446077, -6993.197694322717]], "source": 1993253317, "length": 6.440233868799223}, {"destination": 482734405, "path": [[4262.465438443996, 8338.402305676951], [4308.215438449281, 8289.752305676857], [4363.41543844776, 8230.352305677257], [4430.265438443826, 8158.002305677314]], "source": 4402078150, "length": 51.26593825029495}, {"destination": 1489398792, "path": [[3633.315438449358, -7028.247694321976], [3606.3154384464724, -7058.097694322641], [3560.8654384446936, -7079.3476943222795], [3557.3154384493932, -7094.597694322857], [3506.4154384443214, -7121.797694322751], [3476.9154384477474, -7135.547694321786], [3470.1654384434732, -7175.697694322025]], "source": 1993253319, "length": 48.52078422784985}, {"destination": 1769172005, "path": [[3633.315438449358, -7028.247694321976], [3995.8654384477654, -7217.947694321936]], "source": 1993253319, "length": 80.8206694298582}, {"destination": 1769172179, "path": [[4562.865438444419, -7049.297694322831], [4484.36543844366, -7090.647694322883]], "source": 1993253320, "length": 17.531466911229614}, {"destination": 1993253317, "path": [[4562.865438444419, -7049.297694322831], [4534.465438446488, -7016.4976943232205]], "source": 1993253320, "length": 9.076145076451638}, {"destination": 1769171951, "path": [[4562.865438444419, -7049.297694322831], [4629.765438444621, -7012.347694322685], [4720.315438447642, -7067.647694322332], [4839.76543844733, -7085.197694323142], [4931.365438444856, -7216.947694322684]], "source": 1993253320, "length": 93.43351532963376}, {"destination": 1491042488, "path": [[10476.015438449338, -8090.597694321744], [9946.415438449207, -7850.897694321901], [9846.415438445889, -7809.647694323019]], "source": 1491042380, "length": 135.04824384204431}, {"destination": 554691077, "path": [[10476.015438449338, -8090.597694321744], [10702.415438444747, -7763.347694321965]], "source": 1491042380, "length": 84.55544585210565}, {"destination": 482731180, "path": [[-2439.3345615507656, 6277.70230567748], [-2497.93456155345, 6034.352305677615], [-2519.7845615565484, 5922.502305677924]], "source": 479297994, "length": 80.47353574059065}, {"destination": 601145285, "path": [[-2439.3345615507656, 6277.70230567748], [-2550.484561552935, 6288.902305676913]], "source": 479297994, "length": 21.286717181996654}, {"destination": 1769171922, "path": [[4071.1654384466556, -7174.547694322797], [4470.865438449323, -6942.847694322296]], "source": 1993253323, "length": 91.8212142147243}, {"destination": 1769172005, "path": [[4071.1654384466556, -7174.547694322797], [3995.8654384477654, -7217.947694321936]], "source": 1993253323, "length": 17.267552050217684}, {"destination": 1993253327, "path": [[4071.1654384466556, -7174.547694322797], [4111.865438446216, -7216.947694322684]], "source": 1993253323, "length": 12.198371846731886}, {"destination": 84466496, "path": [[5018.115438446102, -7186.597694323283], [5040.715438447307, -7236.397694322605], [5275.015438449771, -7554.847694322575], [5422.415438445682, -7694.647694322043], [5643.015438444365, -7875.897694322731], [6059.965438446114, -8135.7476943217935]], "source": 1993253324, "length": 293.68266029973876}, {"destination": 1769172169, "path": [[5018.115438446102, -7186.597694323283], [5035.315438448151, -7178.647694322748], [5055.465438445594, -7171.247694323312]], "source": 1993253324, "length": 7.885446552640934}, {"destination": 1993253326, "path": [[5018.115438446102, -7186.597694323283], [4969.2654384472235, -7204.047694322924]], "source": 1993253324, "length": 10.066737631790105}, {"destination": 602360594, "path": [[4969.2654384472235, -7204.047694322924], [4919.815438448439, -7106.697694322151]], "source": 1993253326, "length": 23.603629061392528}, {"destination": 1993253324, "path": [[4969.2654384472235, -7204.047694322924], [5018.115438446102, -7186.597694323283]], "source": 1993253326, "length": 10.066737631790105}, {"destination": 1769171951, "path": [[4969.2654384472235, -7204.047694322924], [4931.365438444856, -7216.947694322684]], "source": 1993253326, "length": 7.756288710405076}, {"destination": 84466490, "path": [[8274.565438448179, -7423.497694322378], [8217.215438449442, -7485.047694322233], [7844.165438449125, -7959.3976943233]], "source": 1777868877, "length": 144.62163811391622}, {"destination": 1324294481, "path": [[2868.2654384439843, 5179.652305677962], [2871.5154384499897, 5246.30230567702], [2809.8154384466056, 5250.852305676901], [2799.065438445325, 5299.052305677065], [2675.7154384497994, 5296.752305676833], [2659.415438444057, 5344.302305678283]], "source": 1324294609, "length": 72.01189065114794}, {"destination": 1324294594, "path": [[2868.2654384439843, 5179.652305677962], [2941.0154384450493, 5182.652305677493]], "source": 1324294609, "length": 13.852117349015888}, {"destination": 1324294324, "path": [[2868.2654384439843, 5179.652305677962], [2627.165438447321, 5169.752305677733]], "source": 1324294609, "length": 45.908128619543525}, {"destination": 84487112, "path": [[4143.215438446646, -7249.6976943217105], [4097.815438449004, -7276.647694322236]], "source": 1993253330, "length": 10.509142218729437}, {"destination": 1993253331, "path": [[4143.215438446646, -7249.6976943217105], [4169.7654384478255, -7277.347694323311]], "source": 1993253330, "length": 7.9564728061581755}, {"destination": 1993253327, "path": [[4143.215438446646, -7249.6976943217105], [4111.865438446216, -7216.947694322684]], "source": 1993253330, "length": 9.411544612767722}, {"destination": 1993253330, "path": [[4169.7654384478255, -7277.347694323311], [4143.215438446646, -7249.6976943217105]], "source": 1993253331, "length": 7.9564728061581755}, {"destination": 1769172116, "path": [[4169.7654384478255, -7277.347694323311], [4065.5654384451623, -7339.197694323118]], "source": 1993253331, "length": 24.119205518991375}, {"destination": 1489398766, "path": [[4169.7654384478255, -7277.347694323311], [4205.415438448767, -7256.247694321872]], "source": 1993253331, "length": 8.243544833815367}, {"destination": 1324294261, "path": [[4632.615438445953, 5383.252305676933], [4649.6654384498015, 5328.8523056771455], [4703.31543844793, 5326.5523056769125]], "source": 1324294612, "length": 22.742366345912856}, {"destination": 1324294718, "path": [[4632.615438445953, 5383.252305676933], [4811.965438449306, 5425.65230567682]], "source": 1324294612, "length": 35.39042148767474}, {"destination": 1324295167, "path": [[4632.615438445953, 5383.252305676933], [4577.265438449274, 5370.152305676612], [4553.365438447088, 5468.652305676614]], "source": 1324294612, "length": 33.29509375719458}, {"destination": 1324295176, "path": [[3099.365438444579, 4938.9023056782835], [3147.6654384476888, 4932.002305677585], [3166.415438442982, 5037.552305678261], [3103.065438445185, 5048.002305677812], [3094.01543844956, 5090.3023056765305], [3067.0654384437057, 5187.852305677865]], "source": 1324294615, "length": 77.18054312722322}, {"destination": 1324294220, "path": [[3099.365438444579, 4938.9023056782835], [3078.315438443724, 4866.052305677826]], "source": 1324294615, "length": 16.688666094573477}, {"destination": 1324295135, "path": [[3099.365438444579, 4938.9023056782835], [3026.9654384440514, 4954.9523056775515], [3015.415438447633, 5028.35230567733]], "source": 1324294615, "length": 30.6955253090879}, {"destination": 603837568, "path": [[2993.5654384445343, 8833.402305677751], [2805.2654384467246, 8963.552305678135], [2768.465438443002, 8991.052305677982]], "source": 4402078168, "length": 55.34421259374167}, {"destination": 1890502898, "path": [[-6193.884561554341, -2887.6476943224816], [-6245.83456155392, -2893.1476943228063], [-6436.434561550186, -2908.0976943234305], [-6734.2345615557515, -2932.297694322017], [-6858.3345615564895, -2942.7976943221524]], "source": 267198543, "length": 126.94965013240349}, {"destination": 476794311, "path": [[-6193.884561554341, -2887.6476943224816], [-6162.48456155688, -2841.5476943219887], [-5851.784561556883, -2473.9476943231866], [-5796.134561556699, -2398.6976943231043]], "source": 267198543, "length": 132.5302403771101}, {"destination": 1324294553, "path": [[4871.515438445329, 5310.802305677597], [4824.015438444462, 5303.602305676946], [4767.71543844734, 5289.852305677911]], "source": 1324294622, "length": 20.311122578209698}, {"destination": 1324294586, "path": [[4871.515438445329, 5310.802305677597], [4856.215438444167, 5354.102305677344]], "source": 1324294622, "length": 10.060020651238538}, {"destination": 1324294684, "path": [[4871.515438445329, 5310.802305677597], [4891.06543844997, 5255.452305677366]], "source": 1324294622, "length": 12.858758085095808}, {"destination": 475979876, "path": [[6110.915438448217, 1008.102305677383], [6028.115438446946, 1037.452305677533]], "source": 475979717, "length": 17.045603294230272}, {"destination": 3356046287, "path": [[6110.915438448217, 1008.102305677383], [5966.015438445993, 859.5023056781059]], "source": 475979717, "length": 43.02879730936505}, {"destination": 4867879883, "path": [[10841.11543844557, 3938.0023056772015], [10846.565438448863, 3860.202305677518], [10781.815438448917, 3767.352305677818]], "source": 4867879887, "length": 41.37503785061358}, {"destination": 2001675397, "path": [[10841.11543844557, 3938.0023056772015], [10809.265438446402, 3862.002305677237]], "source": 4867879887, "length": 17.954094942438445}, {"destination": 2001675399, "path": [[10841.11543844557, 3938.0023056772015], [10848.765438446151, 3956.2023056767257], [10918.515438447685, 3955.352305677451], [11683.815438445323, 3777.2523056780474]], "source": 4867879887, "length": 168.41095633127523}, {"destination": 1404152821, "path": [[1197.9154384462731, 9416.002305677295], [1507.0154384488887, 9179.702305678105]], "source": 623411689, "length": 78.85597810705792}, {"destination": 856909486, "path": [[1197.9154384462731, 9416.002305677295], [1151.2154384476503, 9347.952305677865], [1081.7654384496223, 9226.102305676775], [887.0654384480758, 8882.652305677751], [507.66543844815715, 8213.302305676962]], "source": 623411689, "length": 298.0057225091273}, {"destination": 1404618503, "path": [[1197.9154384462731, 9416.002305677295], [1269.7154384468945, 9514.002305676782]], "source": 623411689, "length": 25.719618791885377}, {"destination": 1404618536, "path": [[2384.0154384444645, 8507.102305676639], [2494.3154384473587, 8570.402305677404]], "source": 623411694, "length": 25.26477825736346}, {"destination": 1404152809, "path": [[2384.0154384444645, 8507.102305676639], [2334.865438449185, 8544.002305677977], [2033.515438448319, 8774.05230567696]], "source": 623411694, "length": 89.26948343062244}, {"destination": 623412583, "path": [[2384.0154384444645, 8507.102305676639], [2453.7654384459984, 8263.902305676751]], "source": 623411694, "length": 55.68867453879042}, {"destination": 1324294985, "path": [[3078.315438443724, 4866.052305677826], [2997.4154384433405, 4888.452305676694], [2847.365438448435, 4920.552305677006]], "source": 1324294220, "length": 45.590477932115604}, {"destination": 1324294615, "path": [[3078.315438443724, 4866.052305677826], [3099.365438444579, 4938.9023056782835]], "source": 1324294220, "length": 16.688666094573477}, {"destination": 1404037095, "path": [[3078.315438443724, 4866.052305677826], [3187.8654384485117, 4835.65230567784], [3284.4154384434887, 4810.4523056782255], [3461.4654384483856, 4782.902305677794], [3494.4654384432283, 4772.802305677004]], "source": 1324294220, "length": 81.99562593782008}, {"destination": 603837568, "path": [[3015.2654384494326, 8785.952305677469], [2802.0154384478246, 8942.152305676742], [2768.465438443002, 8991.052305677982]], "source": 623411698, "length": 66.01270747204828}, {"destination": 1404618501, "path": [[3015.2654384494326, 8785.952305677469], [2877.215438445546, 8730.402305676676]], "source": 623411698, "length": 29.0188904000366}, {"destination": 4867862882, "path": [[7867.915438446005, -1003.4476943232562], [7938.715438449151, -1041.1476943232856], [8013.815438445704, -944.797694321764], [8096.415438444637, -989.5476943224679]], "source": 1473995252, "length": 60.20653008996261}, {"destination": 393749269, "path": [[7867.915438446005, -1003.4476943232562], [7816.515438449301, -1069.7976943223607], [7749.81543844433, -1139.7976943232634]], "source": 1473995252, "length": 37.779868100027386}, {"destination": 1473995278, "path": [[7867.915438446005, -1003.4476943232562], [8385.91543844558, -334.6976943223723]], "source": 1473995252, "length": 178.38824928115258}, {"destination": 4867862897, "path": [[8611.415438444681, -467.3976943223579], [8476.465438448598, -387.99769432174]], "source": 1473995253, "length": 31.15155435881394}, {"destination": 1315785224, "path": [[-2770.3345615535113, -4596.297694321905], [-2752.684561556862, -4538.747694322609]], "source": 1315785588, "length": 13.231152224319805}, {"destination": 1315785596, "path": [[-2770.3345615535113, -4596.297694321905], [-2627.134561556943, -4632.497694322168]], "source": 1315785588, "length": 28.395059185321227}, {"destination": 1315785429, "path": [[-2770.3345615535113, -4596.297694321905], [-2793.434561553454, -4671.4476943225945]], "source": 1315785588, "length": 17.280335004967096}, {"destination": 1315785526, "path": [[-2770.3345615535113, -4596.297694321905], [-2946.334561556796, -4545.347694323354], [-3085.7845615557267, -4515.49769432269]], "source": 1315785588, "length": 62.66838065598599}, {"destination": 1324295201, "path": [[-154.68456155076638, 5748.902305677817], [-175.18456155585227, 5677.052305676611]], "source": 1324294650, "length": 16.447683474783254}, {"destination": 1324294370, "path": [[-154.68456155076638, 5748.902305677817], [-229.13456155038148, 5762.402305677483]], "source": 1324294650, "length": 14.475085238261597}, {"destination": 1324295203, "path": [[-154.68456155076638, 5748.902305677817], [-132.73456155360464, 5825.702305678249]], "source": 1324294650, "length": 17.58280066747757}, {"destination": 1324294420, "path": [[4040.91543844487, 5356.852305677507], [3970.965438448104, 5343.952305677746]], "source": 1324294654, "length": 13.609251640552465}, {"destination": 1324295172, "path": [[4040.91543844487, 5356.852305677507], [4076.065438447074, 5363.352305677083], [4303.315438448863, 5413.502305676942]], "source": 1324294654, "length": 51.476528379897495}, {"destination": 1328999518, "path": [[4040.91543844487, 5356.852305677507], [3980.6154384436354, 5878.852305677639]], "source": 1324294654, "length": 116.65277894312837}, {"destination": 1324295056, "path": [[4381.465438449084, 5110.95230567804], [4370.915438443035, 4995.402305677743]], "source": 1324294658, "length": 25.7754506006778}, {"destination": 3056370065, "path": [[7185.815438447207, -2017.8476943222279], [7136.165438446085, -1983.447694323459], [7085.215438443982, -1952.4976943223749], [7113.915438445418, -1926.4476943234854], [7152.815438445259, -1894.347694323173], [7154.965438445515, -1860.747694323095], [7123.16543844338, -1824.7976943222]], "source": 1473995267, "length": 59.78265426333679}, {"destination": 1473995248, "path": [[7602.315438447249, -1600.3476943229343], [7512.215438445935, -1592.747694322938], [7417.265438448339, -1525.6476943221742]], "source": 1473995269, "length": 40.641620059157034}, {"destination": 84489489, "path": [[7602.315438447249, -1600.3476943229343], [7530.115438449058, -1673.1976943233917], [7409.315438444253, -1725.4976943217316], [7336.915438443725, -1811.4976943230943], [7318.915438446538, -1891.6976943224029], [7271.8654384473775, -1959.997694322979], [7211.615438443176, -2029.2976943228068], [7159.915438442966, -2068.347694322625], [7059.965438443783, -2105.647694323309], [7021.765438445016, -2131.44769432283], [6920.515438444852, -2244.9476943222635], [6817.915438446676, -2313.1976943222553], [6709.2654384453, -2377.3976943228804], [6666.365438448452, -2428.9976943219217], [6601.315438444999, -2554.5976943224246], [6595.365438442968, -2590.6476943227117], [6582.665438443769, -2642.2476943217534], [6511.465438443054, -2719.147694323354], [6436.865438445238, -2733.4976943222955]], "source": 1473995269, "length": 351.04185068512714}, {"destination": 4867862898, "path": [[7602.315438447249, -1600.3476943229343], [7676.965438449201, -1521.2476943222696], [7816.365438443995, -1351.0476943228155], [7875.565438446585, -1300.8976943229554]], "source": 1473995269, "length": 84.66235684037397}, {"destination": 623414114, "path": [[722.2154384436408, 7204.902305677052], [816.915438448973, 7202.952305677357], [892.1154384466945, 7191.502305676778], [977.965438444528, 7170.852305677045], [1036.9654384447813, 7129.552305677578], [1087.9154384468848, 7102.002305677146], [1152.0654384469253, 7072.202305677067], [1498.915438446602, 7057.252305678219]], "source": 1404037082, "length": 155.41299329684028}, {"destination": 4867862897, "path": [[8385.91543844558, -334.6976943223723], [8476.465438448598, -387.99769432174]], "source": 1473995278, "length": 20.905204649072303}, {"destination": 602667419, "path": [[8385.91543844558, -334.6976943223723], [8687.56543844995, 54.75230567775213], [8880.51543844881, -14.447694322683446]], "source": 1473995278, "length": 143.67479137575702}, {"destination": 1473995252, "path": [[8385.91543844558, -334.6976943223723], [7867.915438446005, -1003.4476943232562]], "source": 1473995278, "length": 178.38824928115258}, {"destination": 1328999425, "path": [[5255.515438449265, 7413.052305677681], [5137.96543844336, 7084.15230567816], [5003.465438448984, 6850.052305678034], [4892.715438444384, 6721.102305677462]], "source": 476561935, "length": 170.0741120561476}, {"destination": 476562078, "path": [[5255.515438449265, 7413.052305677681], [5212.215438447743, 7434.802305677835]], "source": 476561935, "length": 9.55033460079136}, {"destination": 481504379, "path": [[4262.665438446334, -7443.647694323374], [4195.6154384479305, -7476.447694322986], [4139.36543844784, -7521.697694322427], [4096.965438449729, -7576.897694322682], [4070.7154384449495, -7638.997694321859], [4062.115438443925, -7704.647694323441], [4071.6154384483616, -7770.197694322079], [4098.715438445311, -7832.047694321886], [4141.865438448633, -7886.797694322212], [4198.765438445662, -7931.447694321747]], "source": 1774845833, "length": 132.18172657469026}, {"destination": 1774845835, "path": [[4262.665438446334, -7443.647694323374], [4348.7654384435355, -7591.097694323424]], "source": 1774845833, "length": 36.65097902740408}, {"destination": 4483338910, "path": [[4262.665438446334, -7443.647694323374], [4324.265438448549, -7427.147694322401]], "source": 1774845833, "length": 12.274237221979707}, {"destination": 4483338910, "path": [[4262.665438446334, -7443.647694323374], [4324.265438448549, -7427.147694322401]], "source": 1774845833, "length": 12.274237221979707}, {"destination": 1315242578, "path": [[-3288.084561553717, -8386.697694323431], [-3281.134561554211, -8335.597694323127]], "source": 1315242513, "length": 11.440802802053305}, {"destination": 1315242494, "path": [[-3288.084561553717, -8386.697694323431], [-3292.5845615565663, -8416.097694322389]], "source": 1315242513, "length": 6.593742468078013}, {"destination": 1315242542, "path": [[-3288.084561553717, -8386.697694323431], [-3068.08456155494, -8418.897694323136]], "source": 1315242513, "length": 42.438792849178924}, {"destination": 1315242604, "path": [[-3519.534561554849, -8145.5976943232145], [-3527.2845615565984, -8232.447694322076]], "source": 1315242514, "length": 19.370783382722973}, {"destination": 1315242565, "path": [[-3519.534561554849, -8145.5976943232145], [-3508.6345615553682, -8004.697694323326]], "source": 1315242514, "length": 31.403401120879824}, {"destination": 1315242518, "path": [[-3519.534561554849, -8145.5976943232145], [-3283.034561555098, -8156.197694322742]], "source": 1315242514, "length": 45.02962779224171}, {"destination": 4867862882, "path": [[8163.4654384430405, -1025.8976943227083], [8096.415438444637, -989.5476943224679]], "source": 1473995283, "length": 15.097420312924664}, {"destination": 1315242568, "path": [[-3540.984561553273, -8395.647694323216], [-3532.2345615540485, -8315.747694322084]], "source": 1315242516, "length": 17.846598746471436}, {"destination": 1315242494, "path": [[-3540.984561553273, -8395.647694323216], [-3292.5845615565663, -8416.097694322389]], "source": 1315242516, "length": 47.44853520574615}, {"destination": 1315242514, "path": [[-3283.034561555098, -8156.197694322742], [-3519.534561554849, -8145.5976943232145]], "source": 1315242518, "length": 45.02962779224171}, {"destination": 477626400, "path": [[-7849.584561554934, -5171.497694322014], [-7237.384561555871, -5311.147694323282]], "source": 477635095, "length": 120.48159148349643}, {"destination": 477634424, "path": [[-7849.584561554934, -5171.497694322014], [-8076.984561554923, -5886.497694323367]], "source": 477635095, "length": 164.78335410727536}, {"destination": 156253446, "path": [[-7849.584561554934, -5171.497694322014], [-8157.734561550001, -5099.897694321953], [-8220.034561553291, -5089.79769432294]], "source": 477635095, "length": 72.77749570401964}, {"destination": 1324294589, "path": [[3115.865438445553, 5761.902305676969], [3142.2654384485327, 5663.752305677505], [3193.2154384435307, 5668.35230567797]], "source": 476561947, "length": 32.14164668584613}, {"destination": 476561951, "path": [[3115.865438445553, 5761.902305676969], [2935.865438445262, 5674.402305677617], [2775.915438448351, 5657.752305676667], [2595.91543844806, 5662.502305677109], [2405.865438447563, 5700.202305677138]], "source": 476561947, "length": 141.3824168299299}, {"destination": 1324294622, "path": [[4891.06543844997, 5255.452305677366], [4871.515438445329, 5310.802305677597]], "source": 1324294684, "length": 12.858758085095808}, {"destination": 1324294376, "path": [[2579.2654384488856, 4941.052305676763], [2584.5154384498414, 5032.952305677796], [2619.36543844854, 5039.852305676717]], "source": 1324294686, "length": 27.26568690834098}, {"destination": 1324294985, "path": [[2579.2654384488856, 4941.052305676763], [2804.465438444481, 4929.702305677352], [2847.365438448435, 4920.552305677006]], "source": 1324294686, "length": 51.31397559061734}, {"destination": 1324294395, "path": [[2579.2654384488856, 4941.052305676763], [2530.865438444607, 4943.502305676972], [2329.5154384470607, 4935.552305678215]], "source": 1324294686, "length": 47.557267598694104}, {"destination": 623414122, "path": [[2405.865438447563, 5700.202305677138], [2156.7154384456444, 5766.952305677364], [1999.815438445296, 5802.502305677137], [1815.265438445124, 5830.152305676961], [1509.6154384437455, 5853.652305678025]], "source": 476561951, "length": 174.53148764116554}, {"destination": 476555428, "path": [[2405.865438447563, 5700.202305677138], [2398.765438449857, 5790.502305677236]], "source": 476561951, "length": 20.127654981308595}, {"destination": 1324294302, "path": [[2405.865438447563, 5700.202305677138], [2410.7154384438445, 5394.302305678167]], "source": 476561951, "length": 68.03539642489052}, {"destination": 4867879849, "path": [[10152.365438443667, 2097.7523056782134], [10169.315438446347, 2128.402305677568], [10197.515438449045, 2209.252305677367], [10196.165438443928, 2276.902305677453], [10248.465438444044, 2377.8523056776635], [10346.365438444138, 2507.4523056769494], [10385.915438448024, 2592.3023056773077], [10444.915438448277, 2653.1023056772797], [10470.415438447844, 2707.0023056765535], [10465.715438449763, 2798.1523056777037], [10514.015438445767, 2868.102305678022], [10559.615438445746, 2928.3523056768954], [10588.415438448352, 3007.4523056775606], [10589.765438446364, 3076.8523056767804], [10606.515438446706, 3162.302305677045], [10621.265438444992, 3193.2523056781292], [10644.065438448535, 3227.652305676898], [10685.665438444403, 3318.852305676856], [10719.165438445089, 3372.202305676808], [10731.915438448425, 3416.3523056776057], [10729.915438446369, 3470.2523056768796], [10711.16543844397, 3525.1523056771816]], "source": 4867879889, "length": 344.7661392039649}, {"destination": 4867862906, "path": [[10152.365438443667, 2097.7523056782134], [10104.26543845, 2010.8523056769911]], "source": 4867879889, "length": 21.381558572018314}, {"destination": 4867879894, "path": [[10152.365438443667, 2097.7523056782134], [10117.515438444969, 2100.652305676576], [10009.815438444037, 2118.502305677339]], "source": 4867879889, "length": 27.52237234487609}, {"destination": 385113794, "path": [[2820.2654384443804, -382.7476943225605], [2993.7654384468715, -407.24769432287644]], "source": 1317671003, "length": 33.441267037232834}, {"destination": 1317670782, "path": [[2820.2654384443804, -382.7476943225605], [2812.315438447399, -327.49769432172116], [2795.7654384493935, -220.6976943224248]], "source": 1317671003, "length": 36.33862507413538}, {"destination": 654402280, "path": [[3203.215438446705, 3801.1523056766805], [3122.7654384480275, 3778.252305677299]], "source": 476556038, "length": 16.12561523402697}, {"destination": 654401048, "path": [[3203.215438446705, 3801.1523056766805], [3246.115438443553, 3915.852305677703], [3305.1154384438064, 3989.252305677482]], "source": 476556038, "length": 46.589138917042064}, {"destination": 1320103999, "path": [[3203.215438446705, 3801.1523056766805], [3220.5154384499224, 3419.4023056777214]], "source": 476556038, "length": 84.9611653267391}, {"destination": 1324294810, "path": [[3697.5154384464304, 4906.802305677971], [3617.015438443616, 4872.402305677426], [3583.0654384483296, 4861.502305677945]], "source": 1324294696, "length": 24.012299448825637}, {"destination": 1324294804, "path": [[3697.5154384464304, 4906.802305677971], [3767.215438443827, 4922.852305677239], [3865.015438449859, 4922.002305677964]], "source": 1324294696, "length": 32.330369392772596}, {"destination": 1324294487, "path": [[3697.5154384464304, 4906.802305677971], [3700.165438445424, 4851.752305677693], [3751.1154384475276, 4858.602305677806], [3766.1654384493204, 4803.552305677527]], "source": 1324294696, "length": 34.63568382411272}, {"destination": 1315242604, "path": [[-3287.434561556779, -8249.197694322418], [-3527.2845615565984, -8232.447694322076]], "source": 1315242538, "length": 45.756514662177324}, {"destination": 1315242578, "path": [[-3057.834561552397, -8330.747694323292], [-3277.2845615554047, -8294.247694323076], [-3281.134561554211, -8335.597694323127]], "source": 1315242539, "length": 51.73294676446399}, {"destination": 1315242513, "path": [[-3068.08456155494, -8418.897694323136], [-3288.084561553717, -8386.697694323431]], "source": 1315242542, "length": 42.438792849178924}, {"destination": 2716405305, "path": [[-9008.834561555544, 8029.702305677233], [-8984.084561554084, 8012.252305677592], [-8952.434561550148, 7974.602305678147], [-8922.3845615507, 7914.252305678105], [-8899.484561553094, 7839.7023056773205], [-8893.784561550434, 7787.402305677205]], "source": 486193667, "length": 59.82440028193317}, {"destination": 2716408719, "path": [[-9008.834561555544, 8029.702305677233], [-8940.334561550855, 8210.202305678038]], "source": 486193667, "length": 42.20283065074382}, {"destination": 3758885817, "path": [[-448.7845615557262, 323.30230567723106], [167.4154384474491, 116.10230567704605]], "source": 2969936436, "length": 125.91831455753915}, {"destination": 599406978, "path": [[-448.7845615557262, 323.30230567723106], [-944.934561552202, 490.10230567780866]], "source": 2969936436, "length": 101.38419663192012}, {"destination": 2969936446, "path": [[-448.7845615557262, 323.30230567723106], [-402.23456155530357, 417.6023056778888], [-375.884561556461, 578.3523056770434], [-434.7845615555457, 628.7023056774643], [-457.33456155261365, 680.1523056765291], [-461.08456155025124, 744.4023056777382], [-437.2845615563392, 822.6523056773516], [-399.684561550373, 861.202305676656], [-339.5345615544443, 897.652305678065], [-310.73456155183976, 945.8523056782298], [-253.08456155670456, 1069.1023056779159]], "source": 2969936436, "length": 185.9494052183997}, {"destination": 1320104082, "path": [[1667.2154384451687, 3934.2023056772036], [1562.6154384449364, 3954.852305676937], [1519.7154384480882, 3950.252305678248], [1484.8154384452528, 3954.852305676937], [1422.1154384443935, 3971.052305677958]], "source": 1320104030, "length": 47.81241490211464}, {"destination": 1315242601, "path": [[-2833.234561556708, -8418.347694322038], [-2802.6345615543846, -8341.897694322142]], "source": 1315242552, "length": 17.969649825481692}, {"destination": 479322299, "path": [[-5155.034561553862, 1045.3023056768984], [-5421.234561552524, 1076.6023056767438]], "source": 4908327481, "length": 51.10119548054071}, {"destination": 1563370132, "path": [[-5155.034561553862, 1045.3023056768984], [-4811.3345615519165, 1015.4023056774264]], "source": 4908327481, "length": 65.7008063652541}, {"destination": 481390557, "path": [[-5155.034561553862, 1045.3023056768984], [-5176.734561551655, 913.3023056779876], [-5319.184561550117, 571.4023056775375]], "source": 4908327481, "length": 110.36113669347144}, {"destination": 1324294787, "path": [[3844.615438445942, 5079.652305678195], [3995.215438443722, 5099.452305676877], [4046.1654384458257, 5108.652305677808]], "source": 1324294714, "length": 38.88369257149014}, {"destination": 1324294917, "path": [[3844.615438445942, 5079.652305678195], [3863.7654384459097, 4941.202305676739]], "source": 1324294714, "length": 31.00466798943563}, {"destination": 1324294807, "path": [[3844.615438445942, 5079.652305678195], [3839.9654384448922, 5112.902305677736]], "source": 1324294714, "length": 7.4480461667549935}, {"destination": 1890935432, "path": [[-7994.634561555358, -1455.5976943224637], [-8066.184561556611, -1435.8976943231737], [-8121.634561554458, -1424.9976943219167], [-8239.634561554965, -1413.547694323114]], "source": 1890935355, "length": 47.697811729745126}, {"destination": 1890935454, "path": [[-7994.634561555358, -1455.5976943224637], [-7963.48456155016, -1462.5476943219696]], "source": 1890935355, "length": 6.122415382843473}, {"destination": 848254822, "path": [[-7994.634561555358, -1455.5976943224637], [-7981.784561550853, -1392.2976943234744]], "source": 1890935355, "length": 14.287703677265128}, {"destination": 1890745479, "path": [[-7994.634561555358, -1455.5976943224637], [-7999.534561555776, -1477.1476943220564], [-8023.484561554995, -1595.3476943231237], [-8028.834561550013, -1619.3976943217335], [-8039.5845615512935, -1666.4476943226703], [-8050.284561555543, -1698.5476943229828], [-8082.934561556954, -1776.9476943225727]], "source": 1890935355, "length": 73.59826234542363}, {"destination": 1888322976, "path": [[-1270.1845615552543, -3571.3976943227976], [-1217.6345615557693, -3590.897694323303], [-1159.6845615500229, -3605.7476943227584], [-1077.0345615540577, -3627.947694322842], [-1001.4845615557988, -3647.6476943221314], [-935.7345615512713, -3666.197694322193], [-869.9345615568177, -3685.4976943221372], [-826.4345615529578, -3700.8476943221067], [-776.5845615566036, -3719.3476943233604], [-731.3345615500566, -3740.7476943229767], [-649.1845615528291, -3787.9476943221134], [-579.5345615524639, -3826.89769432254], [-509.2845615521924, -3865.647694322405]], "source": 1888338492, "length": 159.9421530431389}, {"destination": 1888338501, "path": [[-1270.1845615552543, -3571.3976943227976], [-1300.9345615557777, -3627.597694322304]], "source": 1888338492, "length": 13.798661757709867}, {"destination": 103795804, "path": [[-2190.9345615540587, -8403.497694322581], [-2108.834561553863, -8172.747694322524], [-2090.7345615555073, -8112.847694322411]], "source": 1315242557, "length": 67.39702838067178}, {"destination": 1315242567, "path": [[-2190.9345615540587, -8403.497694322581], [-2246.2845615507376, -8388.797694323102], [-2767.584561553349, -8251.647694322628]], "source": 1315242557, "length": 114.72543783375362}, {"destination": 1324294546, "path": [[4811.965438449306, 5425.65230567682], [4926.21543844507, 5452.65230567793]], "source": 1324294718, "length": 22.544116985102477}, {"destination": 1324294612, "path": [[4811.965438449306, 5425.65230567682], [4632.615438445953, 5383.252305676933]], "source": 1324294718, "length": 35.39042148767474}, {"destination": 1324294586, "path": [[4811.965438449306, 5425.65230567682], [4826.7154384475925, 5365.552305677923], [4856.215438444167, 5354.102305677344]], "source": 1324294718, "length": 19.81815267866471}, {"destination": 1315242568, "path": [[-3623.734561550407, -8311.897694323277], [-3532.2345615540485, -8315.747694322084]], "source": 1315242559, "length": 17.41851754817562}, {"destination": 3113807403, "path": [[-6178.234561552643, 1179.0023056779119], [-6275.4845615558, 1166.9023056768424], [-6530.4345615544435, 1247.4023056778806]], "source": 4908327490, "length": 70.37426174112565}, {"destination": 479322299, "path": [[-6178.234561552643, 1179.0023056779119], [-5758.934561555407, 1118.4523056773087], [-5421.234561552524, 1076.6023056767438]], "source": 4908327490, "length": 145.7630023350461}, {"destination": 479299038, "path": [[-6178.234561552643, 1179.0023056779119], [-5949.784561551041, 1401.1523056769447]], "source": 4908327490, "length": 65.7897749556487}, {"destination": 1315242514, "path": [[-3508.6345615553682, -8004.697694323326], [-3519.534561554849, -8145.5976943232145]], "source": 1315242565, "length": 31.403401120879824}, {"destination": 103795925, "path": [[-3508.6345615553682, -8004.697694323326], [-3027.6345615547484, -8032.34769432315], [-2694.7845615552524, -8049.59769432223]], "source": 1315242565, "length": 155.06727746339232}, {"destination": 599408887, "path": [[-3508.6345615553682, -8004.697694323326], [-3585.334561556408, -7988.897694323427]], "source": 1315242565, "length": 15.00099993427927}, {"destination": 1324294424, "path": [[3223.565438446485, 5394.702305677512], [3243.865438449234, 5329.102305678291]], "source": 1324294727, "length": 15.091150805805885}, {"destination": 1324294307, "path": [[3223.565438446485, 5394.702305677512], [3378.3154384465774, 5427.502305677123], [3421.2654384475627, 5439.852305677561]], "source": 1324294727, "length": 38.941152091637946}, {"destination": 1324295206, "path": [[3223.565438446485, 5394.702305677512], [3204.6154384488545, 5455.952305677414]], "source": 1324294727, "length": 14.090158069141987}, {"destination": 1315242516, "path": [[-3532.2345615540485, -8315.747694322084], [-3540.984561553273, -8395.647694323216]], "source": 1315242568, "length": 17.846598746471436}, {"destination": 1315242578, "path": [[-3532.2345615540485, -8315.747694322084], [-3281.134561554211, -8335.597694323127]], "source": 1315242568, "length": 47.94718672842397}, {"destination": 1315242604, "path": [[-3532.2345615540485, -8315.747694322084], [-3527.2845615565984, -8232.447694322076]], "source": 1315242568, "length": 18.548643996926977}, {"destination": 1315242559, "path": [[-3532.2345615540485, -8315.747694322084], [-3623.734561550407, -8311.897694323277]], "source": 1315242568, "length": 17.41851754817562}, {"destination": 1324295203, "path": [[-255.93456155093008, 5847.30230567665], [-132.73456155360464, 5825.702305678249]], "source": 1324294729, "length": 23.91958451735547}, {"destination": 152878617, "path": [[-5360.2345615502145, -553.8976943224583], [-5295.884561554942, -589.1476943222784]], "source": 601145315, "length": 14.532875200728835}, {"destination": 601145316, "path": [[-5360.2345615502145, -553.8976943224583], [-5188.18456155401, -153.8976943233905]], "source": 601145315, "length": 94.78232015904305}, {"destination": 479299222, "path": [[-5360.2345615502145, -553.8976943224583], [-5702.23456155361, -416.14769432207765]], "source": 601145315, "length": 71.8915131383994}, {"destination": 93332051, "path": [[-551.4345615509342, 1357.7523056778064], [-484.03456155199365, 1344.152305676971]], "source": 93332044, "length": 13.169703742138015}, {"destination": 3356022886, "path": [[-551.4345615509342, 1357.7523056778064], [-516.9845615569102, 1414.0523056767051], [-453.78456155020785, 1529.6023056770025]], "source": 93332044, "length": 42.50037514391613}, {"destination": 624738897, "path": [[-1925.9845615522408, -2219.7476943226493], [-1852.8345615536068, -2241.547694323387]], "source": 624738894, "length": 14.731213926682555}, {"destination": 624739189, "path": [[-1925.9845615522408, -2219.7476943226493], [-1911.1345615527853, -2149.1476943218404]], "source": 624738894, "length": 15.952825263062271}, {"destination": 1315785337, "path": [[-4729.884561555764, -1180.7976943227773], [-4471.334561550577, -1312.6476943217112]], "source": 1315785485, "length": 57.24708888357641}, {"destination": 848690444, "path": [[-1852.8345615536068, -2241.547694323387], [-1858.684561554469, -2266.8476943223936]], "source": 624738897, "length": 5.735545951514496}, {"destination": 624738901, "path": [[-1852.8345615536068, -2241.547694323387], [-1367.734561554812, -2342.397694322429]], "source": 624738897, "length": 94.93495739898539}, {"destination": 1315242568, "path": [[-3281.134561554211, -8335.597694323127], [-3532.2345615540485, -8315.747694322084]], "source": 1315242578, "length": 47.94718672842397}, {"destination": 1315242513, "path": [[-3281.134561554211, -8335.597694323127], [-3288.084561553717, -8386.697694323431]], "source": 1315242578, "length": 11.440802802053305}, {"destination": 1315242539, "path": [[-3281.134561554211, -8335.597694323127], [-3277.2845615554047, -8294.247694323076], [-3057.834561552397, -8330.747694323292]], "source": 1315242578, "length": 51.73294676446399}, {"destination": 93310875, "path": [[-484.03456155199365, 1344.152305676971], [-180.88456155140875, 1311.9523056772664], [503.2154384494447, 1289.152305677277]], "source": 93332051, "length": 188.29366124517327}, {"destination": 93332110, "path": [[-484.03456155199365, 1344.152305676971], [-505.734561556892, 1304.0023056767325]], "source": 93332051, "length": 9.83670353957144}, {"destination": 848690456, "path": [[-1367.734561554812, -2342.397694322429], [-1102.0845615519193, -2392.6976943222653], [-791.684561555428, -2440.497694323085], [-434.63456155024005, -2478.5976943224596]], "source": 624738901, "length": 180.1397546230387}, {"destination": 1890732826, "path": [[-7354.6345615511655, -2824.0476943217627], [-7399.034561551332, -2824.147694322932]], "source": 1890935383, "length": 8.443384620200355}, {"destination": 1890844095, "path": [[-7354.6345615511655, -2824.0476943217627], [-7314.284561552142, -2823.997694322955], [-7286.584561555287, -2827.3476943230235]], "source": 1890935383, "length": 12.992530229841933}, {"destination": 1890935455, "path": [[-7354.6345615511655, -2824.0476943217627], [-7342.584561556009, -2862.4476943228674], [-7330.484561556716, -2878.4976943221354], [-7306.384561552193, -2893.447694322759], [-7283.5845615557555, -2902.5976943231058], [-7270.134561551345, -2903.7476943223337], [-7250.184561556239, -2903.7476943223337]], "source": 1890935383, "length": 29.905236952445943}, {"destination": 3356049696, "path": [[6028.115438446946, 1037.452305677533], [5832.365438443787, 1118.5023056778932]], "source": 475979876, "length": 41.361135394645146}, {"destination": 475979698, "path": [[6028.115438446946, 1037.452305677533], [6070.615438446225, 1077.702305677164]], "source": 475979876, "length": 12.060163258476273}, {"destination": 477634427, "path": [[-7808.284561555467, -5934.947694322901], [-7451.934561551354, -6020.247694323189]], "source": 477635164, "length": 70.36438492893758}, {"destination": 477633764, "path": [[-7808.284561555467, -5934.947694322901], [-7901.084561552807, -6247.897694322546]], "source": 477635164, "length": 71.79905910299877}, {"destination": 1324295152, "path": [[4515.215438445352, 4675.202305676862], [4506.965438444866, 4804.902305677317]], "source": 1324294751, "length": 28.886591599309504}, {"destination": 1324295022, "path": [[4515.215438445352, 4675.202305676862], [3987.015438447372, 4661.402305677242], [3882.865438448846, 4646.802305677155]], "source": 1324294751, "length": 120.57801344007585}, {"destination": 479298745, "path": [[-6130.884561549976, -260.69769432268686], [-6757.484561553894, 10.002305677048184]], "source": 479300368, "length": 133.50473824379725}, {"destination": 479299222, "path": [[-6130.884561549976, -260.69769432268686], [-5702.23456155361, -416.14769432207765]], "source": 479300368, "length": 88.54397253343714}, {"destination": 479299959, "path": [[-6130.884561549976, -260.69769432268686], [-6183.934561555305, -690.9476943217641], [-6196.334561550998, -823.0976943224277]], "source": 479300368, "length": 125.697051464976}, {"destination": 1315242603, "path": [[-2802.6345615543846, -8341.897694322142], [-2342.884561556957, -8457.597694322416]], "source": 1315242601, "length": 91.12397117950896}, {"destination": 1315242567, "path": [[-2802.6345615543846, -8341.897694322142], [-2767.584561553349, -8251.647694322628]], "source": 1315242601, "length": 21.148239272867862}, {"destination": 1315242601, "path": [[-2342.884561556957, -8457.597694322416], [-2802.6345615543846, -8341.897694322142]], "source": 1315242603, "length": 91.12397117950896}, {"destination": 1315242568, "path": [[-3527.2845615565984, -8232.447694322076], [-3532.2345615540485, -8315.747694322084]], "source": 1315242604, "length": 18.548643996926977}, {"destination": 1315242538, "path": [[-3527.2845615565984, -8232.447694322076], [-3287.434561556779, -8249.197694322418]], "source": 1315242604, "length": 45.756514662177324}, {"destination": 1315242514, "path": [[-3527.2845615565984, -8232.447694322076], [-3519.534561554849, -8145.5976943232145]], "source": 1315242604, "length": 19.370783382722973}, {"destination": 476794296, "path": [[-1460.5345615521514, -3597.6976943228324], [-1517.8845615508862, -3556.347694322781]], "source": 1888338541, "length": 14.264976668693148}, {"destination": 476791781, "path": [[-5357.43456155302, -2487.3976943222688], [-5155.884561553137, -2574.647694322252]], "source": 477618799, "length": 42.95888619136432}, {"destination": 5021317130, "path": [[-7759.534561550652, -3625.9476943225623], [-7673.884561555155, -3677.5976943221876], [-7651.584561550351, -3708.8476943232254]], "source": 1890935410, "length": 28.070890726057165}, {"destination": 1890844100, "path": [[-7271.634561554663, -2665.2476943223037], [-7268.834561550364, -2680.1476943223433], [-7258.084561556188, -2722.54769432223], [-7250.034561550933, -2761.5476943232406], [-7250.034561550933, -2779.8976943227417], [-7257.934561550883, -2807.397694322589]], "source": 1890935411, "length": 32.190366677464915}, {"destination": 1890935357, "path": [[-7271.634561554663, -2665.2476943223037], [-7296.98456155603, -2664.0976943230753], [-7361.334561551303, -2667.4976943219517], [-7416.3345615545495, -2674.39769432265], [-7458.534561550323, -2683.297694321851]], "source": 1890935411, "length": 35.923550284952896}, {"destination": 1890935430, "path": [[-7271.634561554663, -2665.2476943223037], [-7268.834561550364, -2613.597694322678], [-7271.484561556463, -2582.64769432337], [-7277.4345615513885, -2552.4476943221684]], "source": 1890935411, "length": 25.211741983251912}, {"destination": 476794281, "path": [[-316.8345615520707, -4093.2476943229544], [-378.53456155545473, -4064.897694322056], [-490.084561555193, -4005.0476943225276]], "source": 1888338548, "length": 38.36116069115998}, {"destination": 1890935453, "path": [[-7218.6845615505035, -1942.2476943233846], [-7201.63456155376, -1970.8476943218757], [-7134.584561555357, -2074.0976943223186], [-7024.584561555968, -2266.7476943230013], [-6984.384561555145, -2346.9976943228944], [-6957.484561553429, -2424.2976943220638]], "source": 1890935413, "length": 118.43054852730165}, {"destination": 602667420, "path": [[9029.71543844444, 48.752305676913466], [8987.865438449206, -11.447694323152291]], "source": 4267598454, "length": 15.574909198238743}, {"destination": 4867879898, "path": [[9029.71543844444, 48.752305676913466], [9016.315438444166, 66.90230567762967]], "source": 4267598454, "length": 4.773279509335052}, {"destination": 4867879900, "path": [[9029.71543844444, 48.752305676913466], [9121.765438443674, 13.302305676532455]], "source": 4267598454, "length": 19.198798789778454}, {"destination": 1891590997, "path": [[-7226.884561553959, -1842.0976943218648], [-7196.334561555773, -1860.2976943231652]], "source": 1890935415, "length": 7.080172250576363}, {"destination": 1316472128, "path": [[784.1654384463936, 4682.902305678027], [593.415438444822, 4747.2023056780445]], "source": 476553848, "length": 38.99535709704416}, {"destination": 476553962, "path": [[784.1654384463936, 4682.902305678027], [862.2154384454461, 4659.602305677524]], "source": 476553848, "length": 15.722924122848383}, {"destination": 481500507, "path": [[784.1654384463936, 4682.902305678027], [884.3654384449451, 5034.6523056781225]], "source": 476553848, "length": 80.51364237559162}, {"destination": 85646340, "path": [[10011.115438445016, -328.9476943226788], [10032.715438448748, -274.09769432296116]], "source": 4267598457, "length": 12.871368147811815}, {"destination": 602392037, "path": [[10011.115438445016, -328.9476943226788], [11280.465438446186, -798.2976943221587]], "source": 4267598457, "length": 262.9917096979998}, {"destination": 85521110, "path": [[10011.115438445016, -328.9476943226788], [9977.16543844973, -409.9976943230388]], "source": 4267598457, "length": 19.14638437887492}, {"destination": 714081275, "path": [[5015.415438442971, 8710.152305678064], [4917.865438443414, 8714.952305677314]], "source": 4225630314, "length": 18.585293037790176}, {"destination": 4573378108, "path": [[5015.415438442971, 8710.152305678064], [5197.065438444781, 8504.802305678182]], "source": 4225630314, "length": 57.26534851423912}, {"destination": 476553960, "path": [[1089.5654384484033, 5922.852305676684], [1164.5654384437876, 5928.452305678178]], "source": 476553855, "length": 14.318894414703495}, {"destination": 1324294264, "path": [[-390.03456155484173, 5753.252305677137], [-266.48456155697886, 5700.352305677115]], "source": 1324294785, "length": 26.279115347718633}, {"destination": 476078723, "path": [[1565.965438445005, -3238.197694322764], [1644.8654384433326, -3289.5476943224367]], "source": 476078722, "length": 18.85514239277917}, {"destination": 103736869, "path": [[1565.965438445005, -3238.197694322764], [1903.2654384432135, -2900.297694322873], [2038.2654384434318, -2769.89769432312], [2109.8654384488214, -2700.7476943232687]], "source": 476078722, "length": 158.06703060310707}, {"destination": 476078803, "path": [[1565.965438445005, -3238.197694322764], [1517.9154384483695, -3216.6976943219793], [529.7154384464875, -2895.447694323039]], "source": 476078722, "length": 211.35045933393036}, {"destination": 103764778, "path": [[1644.8654384433326, -3289.5476943224367], [1111.0154384468274, -3813.09769432292]], "source": 476078723, "length": 154.47281362892838}, {"destination": 476078722, "path": [[1644.8654384433326, -3289.5476943224367], [1565.965438445005, -3238.197694322764]], "source": 476078723, "length": 18.85514239277917}, {"destination": 1890885413, "path": [[-7542.734561553743, -2159.5976943231676], [-7471.334561550691, -2242.097694322709], [-7455.234561554391, -2267.2976943223234], [-7402.934561554275, -2347.5976943228006], [-7393.534561551007, -2369.3476943229543], [-7390.834561554982, -2386.5476943232266], [-7393.534561551007, -2402.5976943224946], [-7397.184561554582, -2411.7976943234253]], "source": 1890935428, "length": 64.43323744156214}, {"destination": 1315785358, "path": [[-5156.334561554842, -1809.1976943228615], [-4958.534561552597, -1914.1976943224392]], "source": 1315785494, "length": 44.27320770863592}, {"destination": 1890935434, "path": [[-7277.4345615513885, -2552.4476943221684], [-7270.4845615518825, -2555.497694322284], [-7259.434561554201, -2557.147694322026], [-7246.434561551496, -2554.7976943229855], [-7240.334561551264, -2551.7476943228703], [-7232.584561556621, -2544.847694322172], [-7227.334561555665, -2531.997694322996]], "source": 1890935430, "length": 12.63903285798142}, {"destination": 1890935411, "path": [[-7277.4345615513885, -2552.4476943221684], [-7271.484561556463, -2582.64769432337], [-7268.834561550364, -2613.597694322678], [-7271.634561554663, -2665.2476943223037]], "source": 1890935430, "length": 25.211741983251912}, {"destination": 1890885389, "path": [[-7277.4345615513885, -2552.4476943221684], [-7285.534561553675, -2545.797694322616], [-7289.78456155005, -2539.047694321894], [-7291.634561553906, -2527.2476943225543], [-7288.734561555543, -2517.947694322231], [-7284.184561555662, -2511.8476943220003]], "source": 1890935430, "length": 10.237919745873295}, {"destination": 1891528345, "path": [[-8239.634561554965, -1413.547694323114], [-8238.884561556859, -1447.3476943219766]], "source": 1890935432, "length": 7.518502633167625}, {"destination": 1890935378, "path": [[-8239.634561554965, -1413.547694323114], [-8282.534561551813, -1413.547694323114], [-8560.084561551663, -1444.497694322422]], "source": 1890935432, "length": 61.38519789996815}, {"destination": 1890935355, "path": [[-8239.634561554965, -1413.547694323114], [-8121.634561554458, -1424.9976943219167], [-8066.184561556611, -1435.8976943231737], [-7994.634561555358, -1455.5976943224637]], "source": 1890935432, "length": 47.69781172974513}, {"destination": 1316471992, "path": [[1741.465438449552, 1242.2523056780933], [1847.6654384471658, 1255.6523056765911], [1957.3654384430483, 1272.7523056774714]], "source": 1320104044, "length": 41.62143141808828}, {"destination": 1320104102, "path": [[1741.465438449552, 1242.2523056780933], [1765.4154384487697, 1401.0023056769683]], "source": 1320104044, "length": 35.59711600273811}, {"destination": 1890935339, "path": [[-7227.334561555665, -2531.997694322996], [-7107.734561550671, -2489.1976943219875], [-6983.134561551196, -2441.597694321729]], "source": 1890935434, "length": 50.60561515178829}, {"destination": 1890885389, "path": [[-7227.334561555665, -2531.997694322996], [-7228.884561556015, -2520.797694321786], [-7232.134561554914, -2514.9476943227], [-7239.6345615501905, -2507.797694322633], [-7245.534561555189, -2504.6976943219333], [-7256.334561553502, -2502.0976943217474], [-7272.284561551601, -2504.2476943220036], [-7284.184561555662, -2511.8476943220003]], "source": 1890935434, "length": 15.429059011885457}, {"destination": 1890935430, "path": [[-7227.334561555665, -2531.997694322996], [-7232.584561556621, -2544.847694322172], [-7240.334561551264, -2551.7476943228703], [-7246.434561551496, -2554.7976943229855], [-7259.434561554201, -2557.147694322026], [-7270.4845615518825, -2555.497694322284], [-7277.4345615513885, -2552.4476943221684]], "source": 1890935434, "length": 12.639032857981416}, {"destination": 1324294377, "path": [[4342.415438443936, 5244.202305677348], [4514.165438443741, 5261.602305678181]], "source": 1324294797, "length": 32.893997011397076}, {"destination": 1324294404, "path": [[4342.415438443936, 5244.202305677348], [4324.265438448549, 5322.802305677498]], "source": 1324294797, "length": 17.817536927062815}, {"destination": 1324294885, "path": [[4342.415438443936, 5244.202305677348], [4359.615438445985, 5186.402305676907]], "source": 1324294797, "length": 13.263808346942582}, {"destination": 3356022889, "path": [[-505.734561556892, 1304.0023056767325], [-536.7345615567842, 1234.1523056775827], [-581.3845615563196, 1147.8523056780432]], "source": 93332110, "length": 37.602015138380764}, {"destination": 93332133, "path": [[-505.734561556892, 1304.0023056767325], [-570.0845615521644, 1318.8523056779645]], "source": 93332110, "length": 12.675924506973775}, {"destination": 475977736, "path": [[2273.9654384480446, 798.8523056781105], [2283.7154384447444, 641.1023056767107]], "source": 1317671021, "length": 35.13111286589778}, {"destination": 1317671283, "path": [[2273.9654384480446, 798.8523056781105], [2179.165438448649, 800.7523056772214]], "source": 1317671021, "length": 18.033484482973353}, {"destination": 475978414, "path": [[2273.9654384480446, 798.8523056781105], [2264.715438442977, 948.9023056765689]], "source": 1317671021, "length": 33.416058405716036}, {"destination": 1328999560, "path": [[4538.115438442957, 6522.352305676549], [4312.01543844395, 6479.252305677363], [4115.4654384456535, 6458.202305678285]], "source": 481501843, "length": 81.73421221190648}, {"destination": 481501845, "path": [[4538.115438442957, 6522.352305676549], [4506.065438448559, 6677.9523056776925]], "source": 481501843, "length": 35.13662816571593}, {"destination": 1328999479, "path": [[4538.115438442957, 6522.352305676549], [4637.165438445834, 6257.952305677605]], "source": 481501843, "length": 61.744095775150555}, {"destination": 4908327481, "path": [[-4811.3345615519165, 1015.4023056774264], [-5155.034561553862, 1045.3023056768984]], "source": 1563370132, "length": 65.7008063652541}, {"destination": 601145287, "path": [[-4811.3345615519165, 1015.4023056774264], [-4788.384561550174, 1185.0023056769742], [-4766.084561552475, 1333.1023056775139]], "source": 1563370132, "length": 71.17720702034167}, {"destination": 481501843, "path": [[4506.065438448559, 6677.9523056776925], [4538.115438442957, 6522.352305676549]], "source": 481501845, "length": 35.13662816571593}, {"destination": 1328999596, "path": [[4506.065438448559, 6677.9523056776925], [4239.51543844936, 7090.552305676567], [4056.3154384472, 7312.352305676839], [3982.015438445785, 7276.352305677136], [3767.4154384461644, 7221.302305676858], [3558.615438443269, 7175.252305676949]], "source": 481501845, "length": 265.09340690891213}, {"destination": 476562078, "path": [[4506.065438448559, 6677.9523056776925], [4643.615438446603, 6705.752305677493], [4853.915438445711, 6793.802305677943], [4974.065438446473, 6900.252305676702], [5047.015438449876, 6999.35230567661], [5058.515438449263, 7030.802305678208], [5132.865438447709, 7234.2523056772025], [5212.215438447743, 7434.802305677835]], "source": 481501845, "length": 232.18025747571144}, {"destination": 1324294714, "path": [[3839.9654384448922, 5112.902305677736], [3844.615438445942, 5079.652305678195]], "source": 1324294807, "length": 7.4480461667549935}, {"destination": 1324295202, "path": [[3839.9654384448922, 5112.902305677736], [3812.015438448668, 5314.652305678181]], "source": 1324294807, "length": 45.18118745694647}, {"destination": 1324295174, "path": [[3839.9654384448922, 5112.902305677736], [3576.8154384498985, 5076.5523056774955], [3441.615438447343, 5055.302305677856]], "source": 1324294807, "length": 76.84215503445475}, {"destination": 1324295205, "path": [[-25.584561555547225, 5830.302305676938], [-125.63456155589847, 5850.552305677325]], "source": 1324294809, "length": 19.55485551442159}, {"destination": 1324295182, "path": [[-25.584561555547225, 5830.302305676938], [-3.8345615536172772, 5895.452305678006]], "source": 1324294809, "length": 15.067542151218793}, {"destination": 1324294933, "path": [[-25.584561555547225, 5830.302305676938], [-46.734561550465514, 5767.002305677948], [-11.884561551767092, 5730.302305677171], [-41.634561554815264, 5633.602305676888], [-52.08456155259, 5599.552305676881]], "source": 1324294809, "length": 55.22105799744282}, {"destination": 1324294864, "path": [[3583.0654384483296, 4861.502305677945], [3552.6654384483436, 4851.752305677693], [3496.315438447084, 4858.602305677806]], "source": 1324294810, "length": 16.99959063736937}, {"destination": 1324294696, "path": [[3583.0654384483296, 4861.502305677945], [3617.015438443616, 4872.402305677426], [3697.5154384464304, 4906.802305677971]], "source": 1324294810, "length": 24.012299448825637}, {"destination": 1324294236, "path": [[3583.0654384483296, 4861.502305677945], [3600.9154384473163, 4803.552305677527], [3614.365438444622, 4764.552305676517]], "source": 1324294810, "length": 22.37016812487103}, {"destination": 1890818672, "path": [[-6957.484561553429, -2424.2976943220638], [-6981.684561552015, -2393.997694323247], [-7110.484561550834, -2222.74769432218], [-7204.284561552754, -2112.1476943228854]], "source": 1890935453, "length": 83.82384169415938}, {"destination": 1891590953, "path": [[-6957.484561553429, -2424.2976943220638], [-6949.48456155231, -2459.3976943219077], [-6940.084561556148, -2496.097694322685], [-6937.534561551218, -2539.0976943224787], [-6937.434561550049, -2686.147694323182], [-6935.9845615508675, -2755.797694321771]], "source": 1890935453, "length": 74.07724390891988}, {"destination": 1890935413, "path": [[-6957.484561553429, -2424.2976943220638], [-6984.384561555145, -2346.9976943228944], [-7024.584561555968, -2266.7476943230013], [-7134.584561555357, -2074.0976943223186], [-7201.63456155376, -1970.8476943218757], [-7218.6845615505035, -1942.2476943233846]], "source": 1890935453, "length": 118.43054852730165}, {"destination": 4402078161, "path": [[5212.215438447743, 7434.802305677835], [5122.215438447597, 7501.852305678014], [4730.665438444248, 7805.652305677313], [4419.065438447944, 8068.65230567766]], "source": 476562078, "length": 206.52297459724792}, {"destination": 476562079, "path": [[5212.215438447743, 7434.802305677835], [5238.315438447216, 7507.5023056765385]], "source": 476562078, "length": 16.91263464975914}, {"destination": 1890844097, "path": [[-7250.184561556239, -2903.7476943223337], [-7240.5345615536025, -2960.497694322939], [-7237.834561550471, -2983.3976943223206], [-7241.884561551615, -2999.447694323365], [-7257.98456155502, -3028.1476943230246], [-7291.684561550937, -3078.0976943223236]], "source": 1890935455, "length": 41.42676394344154}, {"destination": 1890844109, "path": [[-7250.184561556239, -2903.7476943223337], [-7252.634561552895, -2889.3976943233924], [-7261.984561552026, -2864.1476943231937], [-7269.234561555038, -2857.947694321794]], "source": 1890935455, "length": 11.065824180784997}, {"destination": 1890935383, "path": [[-7250.184561556239, -2903.7476943223337], [-7270.134561551345, -2903.7476943223337], [-7283.5845615557555, -2902.5976943231058], [-7306.384561552193, -2893.447694322759], [-7330.484561556716, -2878.4976943221354], [-7342.584561556009, -2862.4476943228674], [-7354.6345615511655, -2824.0476943217627]], "source": 1890935455, "length": 29.905236952445943}, {"destination": 639308641, "path": [[-570.0845615521644, 1318.8523056779645], [-1024.9345615562788, 1437.202305677232], [-1175.13456155649, 1503.7523056768975], [-1432.634561552959, 1650.502305677648], [-1600.5845615509884, 1761.752305677433]], "source": 93332133, "length": 221.83966136044958}, {"destination": 93332044, "path": [[-570.0845615521644, 1318.8523056779645], [-551.4345615509342, 1357.7523056778064]], "source": 93332133, "length": 9.350055708731537}, {"destination": 481504379, "path": [[4296.315438445219, -7811.1976943233685], [4198.765438445662, -7931.447694321747]], "source": 1774845838, "length": 32.54527294656489}, {"destination": 1774845835, "path": [[4296.315438445219, -7811.1976943233685], [4266.615438446308, -7781.697694323242], [4248.5654384449845, -7745.997694321715], [4243.915438443935, -7707.297694322435], [4253.015438443697, -7669.147694322475], [4275.015438444996, -7635.097694322468], [4307.965438449912, -7608.247694323111], [4348.7654384435355, -7591.097694323424]], "source": 1774845838, "length": 60.56507782735669}, {"destination": 1774845854, "path": [[4296.315438445219, -7811.1976943233685], [4337.615438444686, -7832.647694321793], [4384.765438445015, -7841.797694322139], [4432.815438448756, -7837.647694323379], [4476.865438448385, -7820.697694322476], [4512.3654384440215, -7792.6476943233065], [4535.565438445133, -7756.397694322459], [4544.165438446157, -7715.747694323482]], "source": 1774845838, "length": 64.31712226571783}, {"destination": 1324294606, "path": [[4148.115438447065, 5078.8023056771435], [4141.815438444496, 4970.902305677427]], "source": 1324294826, "length": 24.02560523141013}, {"destination": 4676163097, "path": [[435.61543844816697, -4377.197694322987], [393.66543844465696, -4364.297694323227], [318.2154384475666, -4340.997694322724], [269.76543844625667, -4326.047694322099], [244.26543844668913, -4317.397694322267]], "source": 1888323015, "length": 38.74274658632814}, {"destination": 677799508, "path": [[435.61543844816697, -4377.197694322987], [453.4154384430167, -4349.347694322603], [481.41543844337775, -4296.297694322604]], "source": 1888323015, "length": 20.001149838484885}, {"destination": 1324294553, "path": [[4783.765438446608, 5244.002305676787], [4767.71543844734, 5289.852305677911]], "source": 1324294830, "length": 10.643781979764636}, {"destination": 1315785260, "path": [[287.16543844353737, -3528.297694321836], [359.31543844469616, -3336.347694322228]], "source": 476078767, "length": 44.83847793792037}, {"destination": 602334140, "path": [[287.16543844353737, -3528.297694321836], [-190.68456155224567, -3421.547694323124]], "source": 476078767, "length": 93.91672053165601}, {"destination": 103764845, "path": [[287.16543844353737, -3528.297694321836], [936.515438446861, -3714.397694322358], [959.7154384479722, -3723.3976943227276], [1040.0154384484495, -3764.4976943234096]], "source": 476078767, "length": 152.8704268101101}, {"destination": 856909257, "path": [[-1916.4845615549098, 7909.652305677639], [-1857.9345615563625, 7856.60230567764]], "source": 856909256, "length": 16.224240361668105}, {"destination": 622622483, "path": [[-1916.4845615549098, 7909.652305677639], [-1745.5345615502438, 8401.452305676572]], "source": 856909256, "length": 114.10243728913782}, {"destination": 2991482193, "path": [[-1916.4845615549098, 7909.652305677639], [-2367.634561551313, 8055.952305676684]], "source": 856909256, "length": 91.77133779030471}, {"destination": 1324294249, "path": [[4105.165438446079, 4798.952305677062], [4102.515438447085, 4844.852305676995], [3997.915438446853, 4842.5523056767615], [3984.3654384483784, 4954.102305678276]], "source": 1324294834, "length": 55.06225740476374}, {"destination": 1319641362, "path": [[5222.215438443811, 2509.302305677252], [5564.265438444238, 2462.402305678069]], "source": 482730676, "length": 65.88238551297069}, {"destination": 481500915, "path": [[5222.215438443811, 2509.302305677252], [5217.615438446899, 2405.2523056781183], [5205.665438445805, 2182.7023056779635], [5192.965438446607, 2140.902305677983], [5163.815438443464, 2092.702305677818]], "source": 482730676, "length": 94.37476291754777}, {"destination": 482729685, "path": [[5222.215438443811, 2509.302305677252], [5233.16543844743, 2826.052305676896], [5226.065438449723, 3065.402305677978]], "source": 482730676, "length": 123.71912866716667}, {"destination": 1319204583, "path": [[5222.215438443811, 2509.302305677252], [4708.715438447087, 2564.752305676876]], "source": 482730676, "length": 98.43371473602055}, {"destination": 1890812024, "path": [[-8867.43456155159, -1756.7976943233532], [-8875.58456155091, -1767.5476943228573], [-8884.884561553008, -1772.8476943226212], [-8895.484561556088, -1775.0476943234617]], "source": 1890811961, "length": 7.05071855589558}, {"destination": 1890818619, "path": [[-8867.43456155159, -1756.7976943233532], [-8833.684561551536, -1751.7976943217661], [-8805.534561552975, -1750.647694322538], [-8770.684561554277, -1751.7976943217661], [-8746.534561552722, -1755.2476943230033], [-8726.234561549973, -1757.6976943232125]], "source": 1890811961, "length": 27.06081954133738}, {"destination": 1890812022, "path": [[-8867.43456155159, -1756.7976943233532], [-8865.634561551871, -1746.7976943219555], [-8870.084561550584, -1733.597694322242], [-8878.834561556914, -1725.347694321755], [-8885.734561552283, -1722.0476943222707], [-8896.634561551764, -1720.047694321991], [-8907.184561550708, -1721.2476943218035]], "source": 1890811961, "length": 13.424333412783794}, {"destination": 856909369, "path": [[3682.365438443469, 6529.10230567727], [3632.0654384454087, 6796.952305677451]], "source": 476562102, "length": 60.33055208256037}, {"destination": 481501845, "path": [[3682.365438443469, 6529.10230567727], [3799.015438445963, 6562.852305677325], [4171.565438447544, 6610.3023056776065], [4506.065438448559, 6677.9523056776925]], "source": 476562102, "length": 160.4374399762319}, {"destination": 3758885817, "path": [[259.5154384437137, 85.15230567773813], [167.4154384474491, 116.10230567704605]], "source": 1317671028, "length": 18.818779416846294}, {"destination": 475976364, "path": [[259.5154384437137, 85.15230567773813], [447.3654384469228, 37.852305677432696], [664.465438447337, -10.047694322778966]], "source": 1317671028, "length": 79.87872814304792}, {"destination": 1317671006, "path": [[259.5154384437137, 85.15230567773813], [291.1654384476492, 154.15230567761284], [301.91543844892976, 378.9523056774158]], "source": 1317671028, "length": 66.51828840508185}, {"destination": 482729690, "path": [[6874.565438444335, 2290.452305677704], [7017.215438445135, 2653.552305677209], [7104.315438446918, 2923.2023056771086]], "source": 482730682, "length": 147.39856610549847}, {"destination": 482729267, "path": [[6874.565438444335, 2290.452305677704], [6369.765438449804, 2369.4523056772], [5999.515438446679, 2404.3023056776747]], "source": 482730682, "length": 168.43736874645862}, {"destination": 639308674, "path": [[-2565.684561552928, 2486.7523056766317], [-2503.984561556649, 2593.0523056771904]], "source": 483091135, "length": 26.39222086390079}, {"destination": 1316236413, "path": [[-2565.684561552928, 2486.7523056766317], [-2390.134561551349, 2380.9023056777787], [-2079.684561550721, 2137.002305676816]], "source": 483091135, "length": 121.02535105616155}, {"destination": 1324294583, "path": [[-44.03456155444019, 5416.002305677736], [-56.83456155480826, 5462.90230567692]], "source": 1324294850, "length": 10.710467177597943}, {"destination": 481500502, "path": [[-44.03456155444019, 5416.002305677736], [-56.68456155660806, 5326.652305678082]], "source": 1324294850, "length": 20.01584753107759}, {"destination": 1324294575, "path": [[-44.03456155444019, 5416.002305677736], [-70.88456155202039, 5413.752305678088], [-188.88456155252697, 5455.0023056769705], [-322.9845615564386, 5510.052305677249], [-363.43456155663034, 5527.602305678059]], "source": 1324294850, "length": 66.29288044788933}, {"destination": 1324294866, "path": [[3407.3154384444138, 5494.852305677256], [3392.315438446758, 5554.152305677462]], "source": 1324294852, "length": 13.492860057216834}, {"destination": 1324294307, "path": [[3407.3154384444138, 5494.852305677256], [3421.2654384475627, 5439.852305677561]], "source": 1324294852, "length": 12.51600451408883}, {"destination": 1324295206, "path": [[3407.3154384444138, 5494.852305677256], [3316.6154384431934, 5477.952305676937], [3204.6154384488545, 5455.952305677414]], "source": 1324294852, "length": 39.51137305264152}, {"destination": 1890761713, "path": [[-8907.184561550708, -1721.2476943218035], [-8915.984561554069, -1724.8476943230173], [-8923.984561555188, -1731.5476943231545], [-8929.684561550745, -1743.497694322471], [-8928.934561552636, -1754.647694323097]], "source": 1890812022, "length": 9.34223100418997}, {"destination": 1890818618, "path": [[-8907.184561550708, -1721.2476943218035], [-8916.834561553344, -1695.5976943222595], [-8928.934561552636, -1679.5476943229914], [-8940.984561554898, -1664.6476943229516], [-8968.934561551123, -1643.4976943227043], [-8985.034561554528, -1634.2976943217736], [-9003.834561553958, -1620.5476943227382], [-9019.934561550257, -1604.4976943234701], [-9030.634561554507, -1595.3476943231237], [-9037.334561554644, -1582.6976943227323], [-9045.584561555132, -1563.7476943233253]], "source": 1890812022, "length": 44.91900353912182}, {"destination": 1890811961, "path": [[-8907.184561550708, -1721.2476943218035], [-8896.634561551764, -1720.047694321991], [-8885.734561552283, -1722.0476943222707], [-8878.834561556914, -1725.347694321755], [-8870.084561550584, -1733.597694322242], [-8865.634561551871, -1746.7976943219555], [-8867.43456155159, -1756.7976943233532]], "source": 1890812022, "length": 13.424333412783792}, {"destination": 1315678866, "path": [[-3957.784561556821, -4381.097694322378], [-3976.9345615567886, -4465.097694323461]], "source": 1315785505, "length": 19.032127322820855}, {"destination": 1315785275, "path": [[-3957.784561556821, -4381.097694322378], [-4301.03456155706, -4281.697694322517]], "source": 1315785505, "length": 68.9120731545712}, {"destination": 1315678660, "path": [[-3957.784561556821, -4381.097694322378], [-3938.0845615539783, -4297.797694322369]], "source": 1315785505, "length": 18.90002087484368}, {"destination": 1324295049, "path": [[4016.6654384492517, 5016.902305676751], [3925.4654384492937, 5005.402305677364], [3925.2654384469565, 4947.7523056769005]], "source": 1324294856, "length": 30.35360556764264}, {"destination": 1320103961, "path": [[2890.115438447083, 3130.952305676615], [2903.965438449063, 2992.9523056768658]], "source": 1320104055, "length": 30.80256133300955}, {"destination": 1320103554, "path": [[2890.115438447083, 3130.952305676615], [2933.065438448068, 3131.402305676545]], "source": 1320104055, "length": 8.16886156666165}, {"destination": 1320103998, "path": [[2890.115438447083, 3130.952305676615], [2831.165438443861, 3130.352305676709]], "source": 1320104055, "length": 11.212433194458477}, {"destination": 479288912, "path": [[-4605.234561552152, -859.5476943220604], [-4222.884561556839, -1018.5476943220806]], "source": 479290062, "length": 80.85277944003136}, {"destination": 152878617, "path": [[-4605.234561552152, -859.5476943220604], [-5295.884561554942, -589.1476943222784]], "source": 479290062, "length": 144.45167703508588}, {"destination": 1562117598, "path": [[-4605.234561552152, -859.5476943220604], [-4407.084561556474, -448.8976943228806]], "source": 479290062, "length": 98.79321531826159}, {"destination": 1324294881, "path": [[3496.315438447084, 4858.602305677806], [3468.1154384443857, 4960.102305677338]], "source": 1324294864, "length": 23.2009843183582}, {"destination": 1324294810, "path": [[3496.315438447084, 4858.602305677806], [3552.6654384483436, 4851.752305677693], [3583.0654384483296, 4861.502305677945]], "source": 1324294864, "length": 16.99959063736937}, {"destination": 1404037095, "path": [[3496.315438447084, 4858.602305677806], [3494.4654384432283, 4772.802305677004]], "source": 1324294864, "length": 19.084383279171224}, {"destination": 1890811961, "path": [[-8895.484561556088, -1775.0476943234617], [-8884.884561553008, -1772.8476943226212], [-8875.58456155091, -1767.5476943228573], [-8867.43456155159, -1756.7976943233532]], "source": 1890812024, "length": 7.05071855589558}, {"destination": 1890812066, "path": [[-8895.484561556088, -1775.0476943234617], [-8879.134561553314, -1837.3476943231992]], "source": 1890812024, "length": 14.199751254443452}, {"destination": 1890761713, "path": [[-8895.484561556088, -1775.0476943234617], [-8908.784561555194, -1773.4976943231118], [-8918.484561554862, -1768.7476943226698], [-8925.684561553737, -1761.3976943220423], [-8928.934561552636, -1754.647694323097]], "source": 1890812024, "length": 8.435065962811146}, {"destination": 1324294579, "path": [[3392.315438446758, 5554.152305677462], [3217.565438447423, 5526.152305677101]], "source": 1324294866, "length": 33.81460962787923}, {"destination": 1324294852, "path": [[3392.315438446758, 5554.152305677462], [3407.3154384444138, 5494.852305677256]], "source": 1324294866, "length": 13.492860057216834}, {"destination": 1328999502, "path": [[3392.315438446758, 5554.152305677462], [3385.115438447883, 5582.552305677169]], "source": 1324294866, "length": 6.462586157666451}, {"destination": 476078722, "path": [[529.7154384464875, -2895.447694323039], [1517.9154384483695, -3216.6976943219793], [1565.965438445005, -3238.197694322764]], "source": 476078803, "length": 211.35045933393036}, {"destination": 476078083, "path": [[529.7154384464875, -2895.447694323039], [35.46543844379357, -2734.447694322739]], "source": 476078803, "length": 100.5756559564497}, {"destination": 476078805, "path": [[529.7154384464875, -2895.447694323039], [608.3154384484146, -2676.1976943223685], [649.0154384479752, -2556.3476943233354], [658.5154384453062, -2493.597694321892]], "source": 476078803, "length": 92.82418589699064}, {"destination": 4075546746, "path": [[658.5154384453062, -2493.597694321892], [515.3654384457695, -2502.6976943234304]], "source": 476078805, "length": 27.296702092323052}, {"destination": 476078819, "path": [[658.5154384453062, -2493.597694321892], [778.9654384495748, -2486.1476943218718]], "source": 476078805, "length": 22.964957548361713}, {"destination": 1320103682, "path": [[3131.115438449683, 1708.1523056781123], [3120.1154384490337, 1760.902305678158]], "source": 1320104057, "length": 11.916571342816086}, {"destination": 1320103571, "path": [[3131.115438449683, 1708.1523056781123], [2984.315438446572, 1689.9523056768116]], "source": 1320104057, "length": 28.210044072982654}, {"destination": 1316471879, "path": [[3131.115438449683, 1708.1523056781123], [3134.2654384474145, 1693.2523056780724], [3167.865438449269, 1587.0023056780979]], "source": 1320104057, "length": 27.84337318720439}, {"destination": 1315785217, "path": [[-2446.9345615543148, -643.647694323235], [-2430.384561556309, -576.8476943224243]], "source": 1315785508, "length": 15.18521838179675}, {"destination": 1315785282, "path": [[-2446.9345615543148, -643.647694323235], [-2468.6345615521077, -729.4476943222605]], "source": 1315785508, "length": 19.52210453922628}, {"destination": 1315785418, "path": [[-2446.9345615543148, -643.647694323235], [-2243.184561550038, -694.1976943224404]], "source": 1315785508, "length": 40.3447663173467}, {"destination": 1315785623, "path": [[-2446.9345615543148, -643.647694323235], [-2712.9845615547765, -577.5976943223071]], "source": 1315785508, "length": 52.683605227210215}, {"destination": 893859979, "path": [[4064.0654384489494, -4564.147694322784], [3885.4654384437026, -4706.997694322368]], "source": 495640698, "length": 46.503634707130445}, {"destination": 1324294864, "path": [[3468.1154384443857, 4960.102305677338], [3496.315438447084, 4858.602305677806]], "source": 1324294881, "length": 23.2009843183582}, {"destination": 1324294241, "path": [[3468.1154384443857, 4960.102305677338], [3702.865438448555, 5003.152305677716], [3767.215438443827, 5014.602305676519]], "source": 1324294881, "length": 58.16277798786177}, {"destination": 1324295174, "path": [[3468.1154384443857, 4960.102305677338], [3441.615438447343, 5055.302305677856]], "source": 1324294881, "length": 21.763210152047296}, {"destination": 1890844121, "path": [[-7269.234561555038, -2857.947694321794], [-7253.684561554508, -2860.1476943226344], [-7239.2845615567585, -2855.7476943227302], [-7228.884561556015, -2845.597694323132], [-7226.534561553422, -2840.1976943222]], "source": 1890844109, "length": 10.188053484425108}, {"destination": 1890935455, "path": [[-7269.234561555038, -2857.947694321794], [-7261.984561552026, -2864.1476943231937], [-7252.634561552895, -2889.3976943233924], [-7250.184561556239, -2903.7476943223337]], "source": 1890844109, "length": 11.065824180784997}, {"destination": 1890844095, "path": [[-7269.234561555038, -2857.947694321794], [-7278.134561552462, -2852.797694322007], [-7283.184561551081, -2847.3476943222663], [-7287.134561551056, -2838.097694322528], [-7286.584561555287, -2827.3476943230235]], "source": 1890844109, "length": 8.169485150679373}, {"destination": 75355691, "path": [[778.9654384495748, -2486.1476943218718], [1565.9154384479734, -2435.9976943220117]], "source": 476078819, "length": 150.06256092815613}, {"destination": 476078805, "path": [[778.9654384495748, -2486.1476943218718], [658.5154384453062, -2493.597694321892]], "source": 476078819, "length": 22.964957548361713}, {"destination": 1316623575, "path": [[778.9654384495748, -2486.1476943218718], [772.4654384446694, -2318.5476943226035]], "source": 476078819, "length": 37.293073865046644}, {"destination": 1324294458, "path": [[4359.615438445985, 5186.402305676907], [4472.665438449041, 5200.4023056770875]], "source": 1324294885, "length": 21.725491895978017}, {"destination": 1324294787, "path": [[4359.615438445985, 5186.402305676907], [4046.1654384458257, 5108.652305677808]], "source": 1324294885, "length": 62.07260137813602}, {"destination": 1324294797, "path": [[4359.615438445985, 5186.402305676907], [4342.415438443936, 5244.202305677348]], "source": 1324294885, "length": 13.263808346942582}, {"destination": 1320104074, "path": [[3122.7654384480275, 3778.252305677299], [3028.9654384461073, 3734.7023056781836]], "source": 654402280, "length": 20.298873774104056}, {"destination": 476556038, "path": [[3122.7654384480275, 3778.252305677299], [3203.215438446705, 3801.1523056766805]], "source": 654402280, "length": 16.12561523402697}, {"destination": 1320103710, "path": [[3122.7654384480275, 3778.252305677299], [3088.6654384474355, 3842.4523056779235], [3040.0654384479253, 3954.4023056770075]], "source": 654402280, "length": 42.23812946204937}, {"destination": 1320104074, "path": [[2935.015438445987, 3691.0523056778998], [3028.9654384461073, 3734.7023056781836]], "source": 654402282, "length": 20.334806115911352}, {"destination": 1320103922, "path": [[2935.015438445987, 3691.0523056778998], [2870.6154384465776, 3636.0023056776213], [2853.365438447497, 3613.1023056782396]], "source": 654402282, "length": 23.37588773807472}, {"destination": 1320103942, "path": [[2935.015438445987, 3691.0523056778998], [2882.1154384459646, 3775.952305677066], [2846.51543844916, 3879.5523056780467]], "source": 654402282, "length": 45.408384414593115}, {"destination": 1888338495, "path": [[188.4154384441672, -5028.497694322454], [327.4154384484973, -4754.397694322066], [348.6654384445842, -4664.6476943230655], [362.46543844953294, -4561.247694322646], [361.01543844324624, -4480.797694322192], [353.41543844680245, -4443.947694323214], [339.76543844715934, -4402.947694321923], [318.56543844810403, -4369.547694322407], [290.71543844594316, -4340.447694323401], [240.36543844374592, -4306.297694322226], [67.61543844646667, -4224.297694323198], [-202.7345615545073, -4092.1476943225343], [-340.5345615519195, -4020.1476943231282], [-514.5345615531483, -3908.6476943221983], [-540.3345615562216, -3890.1976943233053]], "source": 677800743, "length": 349.91744278542427}, {"destination": 1888382823, "path": [[188.4154384441672, -5028.497694322454], [357.36543844677726, -4750.297694322115], [456.6654384490221, -4559.747694322879], [500.56543844334556, -4481.047694323337], [598.6654384457779, -4341.797694323191], [685.465438444055, -4206.697694321803], [802.965438445824, -4044.6476943234443], [916.4154384464496, -3926.997694323475], [1111.2654384461962, -3756.6476943222683], [1620.4654384495143, -3241.647694322225], [1799.0154384435186, -3066.7976943217213], [1931.9654384446494, -2933.4476943230216], [2103.9154384467906, -2767.8476943222563], [2217.9154384431854, -2665.897694322794], [2459.3154384433547, -2469.547694323282], [2740.6154384479464, -2224.3476943231144], [3203.1154384455363, -1822.4476943231593], [3700.2654384465927, -1399.4476943217649], [3862.815438445466, -1261.547694323184], [3974.8154384469103, -1140.7476943219308], [4111.265438446309, -1006.4976943233717], [4258.515438444021, -853.2476943230449], [4384.465438448615, -708.9476943225037], [4478.715438445135, -597.4976943221577], [4613.765438449491, -448.09769432241353], [4877.365438446191, -145.59769432231917], [5031.615438447545, 21.802305678164657], [5120.4654384449095, 106.00230567803237], [5179.115438444625, 156.00230567791584], [5274.665438449233, 231.00230567685287], [5363.7654384459665, 308.0023056778458], [5467.815438443324, 412.20230567695637], [5586.815438448411, 543.6023056777373], [5659.415438444171, 620.3023056770007]], "source": 677800743, "length": 1639.438550922326}, {"destination": 1891590912, "path": [[-6658.884561552724, -2191.5976943223113], [-6662.884561556837, -2168.6976943229297], [-6664.234561554849, -2148.047694323196], [-6662.884561556837, -2122.797694322998], [-6658.884561552724, -2102.147694323264], [-6650.834561554575, -2078.097694322878], [-6647.834561555044, -2067.3476943233736]], "source": 1891590900, "length": 28.04329048947622}, {"destination": 1891590992, "path": [[-6658.884561552724, -2191.5976943223113], [-6655.884561553194, -2204.8976943231937], [-6644.134561554438, -2221.4476943229756]], "source": 1891590900, "length": 7.318328017793005}, {"destination": 1891590970, "path": [[-6658.884561552724, -2191.5976943223113], [-6676.334561554142, -2196.197694322777], [-6826.98456155606, -2240.047694321845]], "source": 1891590900, "length": 33.7349851902959}, {"destination": 1890531855, "path": [[-6658.884561552724, -2191.5976943223113], [-6630.7345615541635, -2184.7476943221977], [-6623.834561551689, -2180.0976943229243]], "source": 1891590900, "length": 7.237189030202055}, {"destination": 601661132, "path": [[-7852.984561552034, 4957.85230567769], [-7616.084561554715, 6208.702305677605]], "source": 1807311606, "length": 281.80208999393193}, {"destination": 76482085, "path": [[-7852.984561552034, 4957.85230567769], [-8012.334561556145, 4116.602305677119]], "source": 1807311606, "length": 189.52455615980512}, {"destination": 1807311607, "path": [[-7852.984561552034, 4957.85230567769], [-7052.434561551025, 4705.802305677409]], "source": 1807311606, "length": 162.24751423734972}, {"destination": 1807311608, "path": [[-7052.434561551025, 4705.802305677409], [-6116.284561556995, 4411.052305677287]], "source": 1807311607, "length": 189.7291201195514}, {"destination": 95612298, "path": [[-7052.434561551025, 4705.802305677409], [-6741.38456155049, 5924.65230567818]], "source": 1807311607, "length": 277.44099985780116}, {"destination": 1572268640, "path": [[-6116.284561556995, 4411.052305677287], [-6220.884561550121, 3923.0023056777695], [-6303.88456155373, 3529.0523056765724]], "source": 1807311608, "length": 199.36689965928161}, {"destination": 478373282, "path": [[-6116.284561556995, 4411.052305677287], [-6013.284561554145, 4903.652305676686], [-5853.734561554802, 5629.852305677474]], "source": 1807311608, "length": 275.613077932149}, {"destination": 483106759, "path": [[-6116.284561556995, 4411.052305677287], [-5180.384561555229, 4116.402305676558]], "source": 1807311608, "length": 189.6758140648427}, {"destination": 481394996, "path": [[-2457.784561556764, -1935.3476943226865], [-2472.7845615544197, -1781.1476943219163], [-2455.634561556508, -1531.5976943224287]], "source": 624739067, "length": 90.00423664702828}, {"destination": 624739189, "path": [[-2457.784561556764, -1935.3476943226865], [-2002.0345615563429, -2104.4976943223046], [-1911.1345615527853, -2149.1476943218404]], "source": 624739067, "length": 114.41345378475765}, {"destination": 1891590969, "path": [[-7486.134561553115, -2393.1976943227796], [-7508.484561554951, -2379.697694323113], [-7524.434561553051, -2368.84769432244]], "source": 1891590908, "length": 9.077374592585707}, {"destination": 1891590979, "path": [[-7486.134561553115, -2393.1976943227796], [-7572.384561555623, -2492.297694322687]], "source": 1891590908, "length": 27.47228666693517}, {"destination": 1890885413, "path": [[-7486.134561553115, -2393.1976943227796], [-7476.284561555247, -2399.197694321842], [-7458.88456155086, -2407.247694321768], [-7436.084561554424, -2411.7976943234253], [-7407.934561555862, -2410.697694323005], [-7397.184561554582, -2411.7976943234253]], "source": 1891590908, "length": 17.929407589962356}, {"destination": 1316236355, "path": [[548.4154384447493, 3722.002305677208], [179.96543844844837, 3846.202305677338]], "source": 654402303, "length": 75.32137933569966}, {"destination": 1316237187, "path": [[548.4154384447493, 3722.002305677208], [566.1154384455358, 3788.5523056768734], [582.4654384483097, 3851.852305677639]], "source": 654402303, "length": 29.59486119402874}, {"destination": 1891591009, "path": [[-6647.834561555044, -2067.3476943233736], [-6629.084561552645, -2077.047694323042], [-6556.534561553917, -2116.497694322206], [-6540.434561550512, -2134.8476943234828], [-6524.384561551244, -2160.0976943219052], [-6520.3345615501, -2182.997694323063], [-6520.884561552975, -2195.147694322941], [-6521.684561555219, -2211.697694322723], [-6540.134561554112, -2255.8476943217443], [-6560.934561555598, -2287.197694322174]], "source": 1891590912, "length": 61.98960028099678}, {"destination": 1891590900, "path": [[-6647.834561555044, -2067.3476943233736], [-6650.834561554575, -2078.097694322878], [-6658.884561552724, -2102.147694323264], [-6662.884561556837, -2122.797694322998], [-6664.234561554849, -2148.047694323196], [-6662.884561556837, -2168.6976943229297], [-6658.884561552724, -2191.5976943223113]], "source": 1891590912, "length": 28.043290489476224}, {"destination": 3355899006, "path": [[-6647.834561555044, -2067.3476943233736], [-6632.734561556219, -2026.897694323182]], "source": 1891590912, "length": 9.443093380429486}, {"destination": 1891590929, "path": [[-6647.834561555044, -2067.3476943233736], [-6964.234561550597, -1903.1976943217899], [-7031.084561553769, -1865.1476943229995]], "source": 1891590912, "length": 85.64737127323016}, {"destination": 1324295049, "path": [[3863.7654384459097, 4941.202305676739], [3925.2654384469565, 4947.7523056769005]], "source": 1324294917, "length": 11.78729579839325}, {"destination": 1324294714, "path": [[3863.7654384459097, 4941.202305676739], [3844.615438445942, 5079.652305678195]], "source": 1324294917, "length": 31.00466798943563}, {"destination": 1324294804, "path": [[3863.7654384459097, 4941.202305676739], [3865.015438449859, 4922.002305677964]], "source": 1324294917, "length": 4.277365382451336}, {"destination": 1890502816, "path": [[-7099.434561553153, -1850.7476943234735], [-7131.784561551058, -1795.397694323242], [-7137.78456155012, -1786.9976943227784], [-7150.784561552826, -1768.6976943220857], [-7180.384561550568, -1727.0976943226656], [-7239.684561554327, -1659.8476943219252], [-7322.934561550199, -1569.6976943218033]], "source": 1891590920, "length": 75.8184900685478}, {"destination": 1891590929, "path": [[-7099.434561553153, -1850.7476943234735], [-7070.184561555948, -1843.5476943228223], [-7059.884561556373, -1848.747694323194], [-7031.084561553769, -1865.1476943229995]], "source": 1891590920, "length": 14.642498820681077}, {"destination": 1891590997, "path": [[-7099.434561553153, -1850.7476943234735], [-7162.734561553918, -1858.4476943228624], [-7196.334561555773, -1860.2976943231652]], "source": 1891590920, "length": 18.56182050438565}, {"destination": 1324294583, "path": [[-167.43456155410286, 5500.902305676902], [-56.83456155480826, 5462.90230567692]], "source": 1324294921, "length": 22.66949981247417}, {"destination": 2354289915, "path": [[-390.93456155114836, -7133.1976943227455], [-427.5845615566709, -7130.447694322584]], "source": 2354289921, "length": 6.995652786627108}, {"destination": 1563362026, "path": [[6321.9154384484, 1810.6523056768965], [6263.1154384433785, 1694.1023056773474]], "source": 1563362061, "length": 28.22888749984181}, {"destination": 267198280, "path": [[-4319.384561554784, -6235.697694322084], [-4297.584561555823, -6188.3976943217785], [-4240.58456155052, -6064.897694322724]], "source": 1314685710, "length": 40.83308537790591}, {"destination": 477628490, "path": [[-4319.384561554784, -6235.697694322084], [-4485.434561551927, -6626.097694322652]], "source": 1314685710, "length": 92.38402938338115}, {"destination": 1314685709, "path": [[-4319.384561554784, -6235.697694322084], [-4647.43456155503, -6168.297694323144], [-4866.484561553363, -6123.2976943230715]], "source": 1314685710, "length": 106.98992502644568}, {"destination": 1314685712, "path": [[-5232.734561552377, -6048.897694322264], [-5438.684561553941, -5996.347694322779]], "source": 1314685711, "length": 40.86747064601488}, {"destination": 477639693, "path": [[-5232.734561552377, -6048.897694322264], [-5194.384561555409, -5935.097694322877], [-5175.084561550137, -5891.647694323155], [-5150.684561556318, -5850.797694321841], [-5114.084561554932, -5805.597694322983], [-5073.984561555279, -5770.0976943220185]], "source": 1314685711, "length": 70.076961594182}, {"destination": 477639525, "path": [[-5232.734561552377, -6048.897694322264], [-5361.134561553627, -6338.747694321966]], "source": 1314685711, "length": 68.92861560147348}, {"destination": 1314685709, "path": [[-5232.734561552377, -6048.897694322264], [-4866.484561553363, -6123.2976943230715]], "source": 1314685711, "length": 71.57980486134346}, {"destination": 477628417, "path": [[-5438.684561553941, -5996.347694322779], [-5547.5345615505485, -6281.197694322671]], "source": 1314685712, "length": 66.64332094767106}, {"destination": 1314685711, "path": [[-5438.684561553941, -5996.347694322779], [-5232.734561552377, -6048.897694322264]], "source": 1314685712, "length": 40.86747064601488}, {"destination": 1891590912, "path": [[-7031.084561553769, -1865.1476943229995], [-6964.234561550597, -1903.1976943217899], [-6647.834561555044, -2067.3476943233736]], "source": 1891590929, "length": 85.64737127323016}, {"destination": 1891590920, "path": [[-7031.084561553769, -1865.1476943229995], [-7059.884561556373, -1848.747694323194], [-7070.184561555948, -1843.5476943228223], [-7099.434561553153, -1850.7476943234735]], "source": 1891590929, "length": 14.642498820681077}, {"destination": 1891590937, "path": [[-7031.084561553769, -1865.1476943229995], [-7037.084561552831, -1881.9976943227346], [-7036.684561555262, -1891.7476943229872], [-7028.634561550007, -1912.3976943227206], [-6981.684561552015, -2035.0976943230849], [-6921.334561553749, -2195.6476943234547]], "source": 1891590929, "length": 77.14402461116183}, {"destination": 479299194, "path": [[-5671.434561556054, -1032.5476943222611], [-5872.984561555939, -955.4976943224602]], "source": 601662226, "length": 41.98411479058252}, {"destination": 601145315, "path": [[-5671.434561556054, -1032.5476943222611], [-5566.334561549979, -941.1476943217423], [-5491.184561556394, -813.8476943226891], [-5420.384561553248, -687.0976943229579], [-5360.2345615502145, -553.8976943224583]], "source": 601662226, "length": 123.21238832205384}, {"destination": 601663327, "path": [[-5671.434561556054, -1032.5476943222611], [-5607.434561554214, -1058.4976943217584]], "source": 601662226, "length": 13.469461050286645}, {"destination": 1324294208, "path": [[-52.08456155259, 5599.552305676881], [-186.23456155353324, 5638.552305677891]], "source": 1324294933, "length": 26.948288204862415}, {"destination": 1324294809, "path": [[-52.08456155259, 5599.552305676881], [-41.634561554815264, 5633.602305676888], [-11.884561551767092, 5730.302305677171], [-46.734561550465514, 5767.002305677948], [-25.584561555547225, 5830.302305676938]], "source": 1324294933, "length": 55.22105799744283}, {"destination": 1324295091, "path": [[-52.08456155259, 5599.552305676881], [-57.48456155174608, 5542.202305678145]], "source": 1324294933, "length": 12.795521363491913}, {"destination": 1890502809, "path": [[-6356.884561554921, -2103.1476943225157], [-6446.984561556235, -2042.5476943231047], [-6503.834561556232, -2010.1976943234235], [-6677.234561550449, -1913.4976943231409], [-6839.484561552922, -1820.6476943234406], [-7058.0345615525175, -1682.9976943224524], [-7241.734561553414, -1549.9976943225136], [-7276.434561553913, -1525.8976943233192]], "source": 1891590934, "length": 217.16926978906847}, {"destination": 1890502815, "path": [[-6356.884561554921, -2103.1476943225157], [-6293.734561552355, -1989.5476943219137]], "source": 1891590934, "length": 27.9726247772628}, {"destination": 4867862898, "path": [[7882.76543844546, -1318.097694323228], [7875.565438446585, -1300.8976943229554]], "source": 393749271, "length": 4.062304776669011}, {"destination": 1328999608, "path": [[3860.6154384481783, 6416.352305677719], [3944.6154384492615, 6089.802305677239]], "source": 1324294936, "length": 74.3581430848105}, {"destination": 1328999442, "path": [[3860.6154384481783, 6416.352305677719], [3733.81543844431, 6386.402305677663], [3691.8154384437685, 6359.702305678283]], "source": 1324294936, "length": 34.97305514861235}, {"destination": 1891590985, "path": [[-6921.334561553749, -2195.6476943234547], [-6886.88456155262, -2301.6976943228683], [-6884.484561552995, -2314.147694322699]], "source": 1891590937, "length": 27.282162294897084}, {"destination": 1891590970, "path": [[-6921.334561553749, -2195.6476943234547], [-6826.98456155606, -2240.047694321845]], "source": 1891590937, "length": 20.47922530976387}, {"destination": 1891590929, "path": [[-6921.334561553749, -2195.6476943234547], [-6981.684561552015, -2035.0976943230849], [-7028.634561550007, -1912.3976943227206], [-7036.684561555262, -1891.7476943229872], [-7037.084561552831, -1881.9976943227346], [-7031.084561553769, -1865.1476943229995]], "source": 1891590937, "length": 77.14402461116181}, {"destination": 1324295234, "path": [[-476.08456155501244, 5762.502305676875], [-502.1345615503492, 5714.052305677342]], "source": 1324294938, "length": 11.859711721997854}, {"destination": 1324294228, "path": [[-476.08456155501244, 5762.502305676875], [-437.484561551571, 5834.452305677473]], "source": 1324294938, "length": 17.604828162493245}, {"destination": 1324294422, "path": [[-476.08456155501244, 5762.502305676875], [-660.9845615557219, 5833.50230567703]], "source": 1324294938, "length": 38.54916316355048}, {"destination": 1324294303, "path": [[3788.6654384493568, 4721.002305677402], [3782.8654384455263, 4742.402305677018]], "source": 1324294939, "length": 4.885255942718165}, {"destination": 1324294520, "path": [[3214.465438446723, 5204.502305677039], [3399.0654384439267, 5238.502305678238]], "source": 1324294940, "length": 35.91433870876437}, {"destination": 1324295176, "path": [[3214.465438446723, 5204.502305677039], [3140.5154384458456, 5190.852305677396], [3067.0654384437057, 5187.852305677865]], "source": 1324294940, "length": 28.37441153388299}, {"destination": 1324294286, "path": [[3214.465438446723, 5204.502305677039], [3241.5154384466405, 5147.652305677042], [3271.0154384432144, 5143.052305676576]], "source": 1324294940, "length": 19.352830790241327}, {"destination": 1785697718, "path": [[4365.215438447478, -6627.197694323073], [4384.665438443846, -6594.947694322784]], "source": 1785697755, "length": 8.069511726499144}, {"destination": 93466463, "path": [[4365.215438447478, -6627.197694323073], [4533.065438444339, -6690.147694323301]], "source": 1785697755, "length": 34.85113201259619}, {"destination": 619349605, "path": [[10681.61543844326, 8247.552305677531], [10727.015438448007, 8025.202305677936], [10861.115438444813, 7754.502305678201]], "source": 4907066148, "length": 115.57824386332655}, {"destination": 4907066151, "path": [[10681.61543844326, 8247.552305677531], [10399.765438450004, 8240.252305677486], [10203.965438449814, 8208.10230567659], [10003.465438444437, 8083.902305678237], [9927.66543844681, 7953.4523056779], [9925.015438447816, 7831.902305676764], [9652.065438444879, 7762.752305676912], [9821.06543844452, 7407.152305678011]], "source": 4907066148, "length": 337.5863553941778}, {"destination": 4573378123, "path": [[3676.4654384455753, 9451.052305676554], [3298.665438443038, 9298.20230567735]], "source": 714080390, "length": 79.4951464648188}, {"destination": 714080235, "path": [[3676.4654384455753, 9451.052305676554], [3793.515438445638, 9467.452305678136]], "source": 714080390, "length": 22.561101329952596}, {"destination": 4907066148, "path": [[9821.06543844452, 7407.152305678011], [9652.065438444879, 7762.752305676912], [9925.015438447816, 7831.902305676764], [9927.66543844681, 7953.4523056779], [10003.465438444437, 8083.902305678237], [10203.965438449814, 8208.10230567659], [10399.765438450004, 8240.252305677486], [10681.61543844326, 8247.552305677531]], "source": 4907066151, "length": 337.58635539417776}, {"destination": 1891590954, "path": [[-6935.9845615508675, -2755.797694321771], [-6889.784561550982, -2730.44769432218]], "source": 1891590953, "length": 10.438581389550007}, {"destination": 1890844107, "path": [[-6935.9845615508675, -2755.797694321771], [-6934.784561551055, -2813.6976943233803], [-6940.134561553179, -2832.0476943228814], [-6992.434561553296, -2901.9976943231995]], "source": 1891590953, "length": 35.54679328298478}, {"destination": 1890935453, "path": [[-6935.9845615508675, -2755.797694321771], [-6937.434561550049, -2686.147694323182], [-6937.534561551218, -2539.0976943224787], [-6940.084561556148, -2496.097694322685], [-6949.48456155231, -2459.3976943219077], [-6957.484561553429, -2424.2976943220638]], "source": 1891590953, "length": 74.07724390891988}, {"destination": 1891590976, "path": [[-6889.784561550982, -2730.44769432218], [-6850.234561554203, -2701.3476943231753]], "source": 1891590954, "length": 9.922001723780365}, {"destination": 1891590953, "path": [[-6889.784561550982, -2730.44769432218], [-6935.9845615508675, -2755.797694321771]], "source": 1891590954, "length": 10.438581389550007}, {"destination": 1890502839, "path": [[-6889.784561550982, -2730.44769432218], [-6897.434561551563, -2630.7476943223664], [-6907.3845615506, -2496.8476943225683]], "source": 1891590954, "length": 52.05789135468491}, {"destination": 1320103786, "path": [[3415.8654384484066, 2041.8523056768834], [3482.1154384445663, 2043.7023056771864]], "source": 1320104071, "length": 12.605695262958692}, {"destination": 1320103597, "path": [[3415.8654384484066, 2041.8523056768834], [3415.8654384484066, 1906.552305676712], [3424.865438447, 1804.6023056772497]], "source": 1320104071, "length": 52.826576561855795}, {"destination": 1320103645, "path": [[3415.8654384484066, 2041.8523056768834], [3347.4654384448854, 2039.2023056778896], [3275.0154384473262, 2046.4523056773487]], "source": 1320104071, "length": 26.894333802960382}, {"destination": 1891590969, "path": [[-7605.534561555771, -2470.447694323141], [-7524.434561553051, -2368.84769432244]], "source": 1891590956, "length": 27.356234077595236}, {"destination": 1404152862, "path": [[-213.9845615545255, 6891.202305677524], [-303.934561550534, 6930.202305676758], [-451.73456155112035, 7062.602305676791], [-600.0845615545813, 7158.602305677775], [-644.8845615523169, 7188.102305677901], [-713.5345615552069, 7205.302305678174], [-841.5345615517822, 7223.402305676529]], "source": 856909277, "length": 144.30928577972819}, {"destination": 1404037076, "path": [[-213.9845615545255, 6891.202305677524], [-298.5345615513779, 6715.802305677698]], "source": 856909277, "length": 42.19215141835032}, {"destination": 856909286, "path": [[-213.9845615545255, 6891.202305677524], [97.81543844411544, 6816.152305678002], [296.06543844806765, 6687.552305677968], [448.66543844790385, 6559.55230567784], [484.66543844938315, 6466.852305678117]], "source": 856909277, "length": 171.30970890058705}, {"destination": 622622486, "path": [[-213.9845615545255, 6891.202305677524], [53.46543844808593, 7400.652305676658], [212.76543844805929, 7657.952305677895], [307.16543844988564, 7801.352305676801]], "source": 856909277, "length": 225.53835569258746}, {"destination": 624738897, "path": [[-1838.5845615540575, -2172.3976943217594], [-1852.8345615536068, -2241.547694323387]], "source": 624739122, "length": 15.615074987780734}, {"destination": 848690453, "path": [[-1838.5845615540575, -2172.3976943217594], [-1767.934561556217, -2189.647694322616]], "source": 624739122, "length": 13.97196720109307}, {"destination": 479322189, "path": [[-5949.784561551041, 1401.1523056769447], [-6432.43456155318, 1512.1023056767767]], "source": 479299038, "length": 95.04757951803725}, {"destination": 483110054, "path": [[-5949.784561551041, 1401.1523056769447], [-5776.684561553225, 1514.3523056782014], [-5659.884561552531, 1652.3523056779509]], "source": 479299038, "length": 79.32718254019093}, {"destination": 602393484, "path": [[4077.565438443287, 1665.0023056765663], [4049.9654384476003, 1833.7523056768391]], "source": 475980598, "length": 37.89362963592215}, {"destination": 482729435, "path": [[4077.565438443287, 1665.0023056765663], [4073.215438445743, 1613.6523056768938], [4071.915438444762, 1598.252305678116], [4026.115438449551, 1288.9523056767162]], "source": 475980598, "length": 84.21791025518837}, {"destination": 602393460, "path": [[4077.565438443287, 1665.0023056765663], [3733.1654384473723, 1602.4523056774597], [3518.615438444783, 1547.4023056771812], [3401.815438444089, 1515.8523056779673]], "source": 475980598, "length": 132.85237504536764}, {"destination": 1320103777, "path": [[3231.365438445266, 2529.452305678248], [3228.615438445104, 2556.9523056780954]], "source": 1320104073, "length": 6.137852847829836}, {"destination": 1320103895, "path": [[3231.365438445266, 2529.452305678248], [3458.115438448317, 2566.3023056772263]], "source": 1320104073, "length": 43.895396655933055}, {"destination": 1320103983, "path": [[3231.365438445266, 2529.452305678248], [3238.9154384446783, 2453.6023056782597]], "source": 1320104073, "length": 16.92941266496973}, {"destination": 1324294424, "path": [[3437.615438443231, 5375.402305677568], [3372.965438444453, 5363.25230567769], [3243.865438449234, 5329.102305678291]], "source": 1324294968, "length": 38.29098116041071}, {"destination": 1324294307, "path": [[3437.615438443231, 5375.402305677568], [3421.2654384475627, 5439.852305677561]], "source": 1324294968, "length": 14.666218451455482}, {"destination": 1324294871, "path": [[3437.615438443231, 5375.402305677568], [3469.015438447798, 5251.402305677999]], "source": 1324294968, "length": 28.215474825573736}, {"destination": 1890885433, "path": [[-7524.434561553051, -2368.84769432244], [-7667.434561554387, -2271.4976943234433]], "source": 1891590969, "length": 34.75881645861189}, {"destination": 1891590956, "path": [[-7524.434561553051, -2368.84769432244], [-7605.534561555771, -2470.447694323141]], "source": 1891590969, "length": 27.356234077595236}, {"destination": 1891590908, "path": [[-7524.434561553051, -2368.84769432244], [-7508.484561554951, -2379.697694323113], [-7486.134561553115, -2393.1976943227796]], "source": 1891590969, "length": 9.077374592585707}, {"destination": 1891590937, "path": [[-6826.98456155606, -2240.047694321845], [-6921.334561553749, -2195.6476943234547]], "source": 1891590970, "length": 20.47922530976387}, {"destination": 1891590900, "path": [[-6826.98456155606, -2240.047694321845], [-6676.334561554142, -2196.197694322777], [-6658.884561552724, -2191.5976943223113]], "source": 1891590970, "length": 33.7349851902959}, {"destination": 1891590985, "path": [[-6826.98456155606, -2240.047694321845], [-6838.584561556616, -2251.2476943230554], [-6884.484561552995, -2314.147694322699]], "source": 1891590970, "length": 19.81498923579874}, {"destination": 495641851, "path": [[2257.0154384453645, -6224.997694323164], [2287.0154384477814, -6158.947694322236]], "source": 495641404, "length": 15.75756593071206}, {"destination": 1581175564, "path": [[2257.0154384453645, -6224.997694323164], [2295.8654384481747, -6230.247694322344], [2368.4154384469025, -6213.097694322656], [2401.4154384488506, -6218.447694323004], [2441.5654384455365, -6126.097694322041]], "source": 495641404, "length": 50.08923806697124}, {"destination": 602364054, "path": [[2257.0154384453645, -6224.997694323164], [2223.26543844531, -6283.197694322951]], "source": 495641404, "length": 14.44672743755331}, {"destination": 1316197001, "path": [[-2816.184561552859, 968.102305677121], [-2675.08456155241, 851.9523056769174], [-2529.7345615555855, 772.4523056769073]], "source": 481395518, "length": 70.05855884854789}, {"destination": 1316236875, "path": [[-2816.184561552859, 968.102305677121], [-2868.6345615511755, 1028.2023056777944], [-2986.7845615569877, 1106.0523056780626], [-3093.334561555139, 1164.5523056778018]], "source": 481395518, "length": 69.12315830727675}, {"destination": 481397829, "path": [[-2816.184561552859, 968.102305677121], [-3073.6345615522964, 651.9023056767992], [-3137.634561554137, 608.6523056776372]], "source": 481395518, "length": 101.1979978029478}, {"destination": 1316236527, "path": [[-2816.184561552859, 968.102305677121], [-2784.3845615507234, 1018.6523056781027]], "source": 481395518, "length": 12.765197673554168}, {"destination": 1891590985, "path": [[-6850.234561554203, -2701.3476943231753], [-6860.984561555483, -2559.1476943223056], [-6866.334561550502, -2454.797694323219], [-6873.434561555314, -2371.647694323187], [-6884.484561552995, -2314.147694322699]], "source": 1891590976, "length": 86.41864997029278}, {"destination": 1891590954, "path": [[-6850.234561554203, -2701.3476943231753], [-6889.784561550982, -2730.44769432218]], "source": 1891590976, "length": 9.922001723780365}, {"destination": 1891591009, "path": [[-6850.234561554203, -2701.3476943231753], [-6831.484561551804, -2680.6976943234417], [-6654.434561554012, -2422.697694322906], [-6560.934561555598, -2287.197694322174]], "source": 1891590976, "length": 107.3271164690261}, {"destination": 1891590908, "path": [[-7572.384561555623, -2492.297694322687], [-7486.134561553115, -2393.1976943227796]], "source": 1891590979, "length": 27.47228666693517}, {"destination": 1891590976, "path": [[-6884.484561552995, -2314.147694322699], [-6873.434561555314, -2371.647694323187], [-6866.334561550502, -2454.797694323219], [-6860.984561555483, -2559.1476943223056], [-6850.234561554203, -2701.3476943231753]], "source": 1891590985, "length": 86.41864997029276}, {"destination": 1891590937, "path": [[-6884.484561552995, -2314.147694322699], [-6886.88456155262, -2301.6976943228683], [-6921.334561553749, -2195.6476943234547]], "source": 1891590985, "length": 27.282162294897084}, {"destination": 1891590970, "path": [[-6884.484561552995, -2314.147694322699], [-6838.584561556616, -2251.2476943230554], [-6826.98456155606, -2240.047694321845]], "source": 1891590985, "length": 19.81498923579874}, {"destination": 1888382882, "path": [[5218.91543844788, 387.6023056772482], [5246.165438443029, 372.7523056777926], [5299.965438446463, 322.25230567739516]], "source": 2971714378, "length": 21.3372327238587}, {"destination": 2971714380, "path": [[5218.91543844788, 387.6023056772482], [5449.365438444431, 540.0023056765235], [5608.415438445036, 703.6523056775934]], "source": 2971714378, "length": 102.72442275662438}, {"destination": 475978741, "path": [[5218.91543844788, 387.6023056772482], [5201.715438445831, 396.9523056781554], [5132.515438447172, 422.15230567776985], [4598.61543844653, 605.0023056776155], [4450.065438447837, 653.3023056771725]], "source": 2971714378, "length": 157.77683307204217}, {"destination": 1891590939, "path": [[-8550.184561556762, -1494.3976943229131], [-8503.484561551033, -1490.097694322401], [-8429.134561552586, -1484.0476943227543]], "source": 1891590987, "length": 23.134613738244017}, {"destination": 1730911844, "path": [[-8550.184561556762, -1494.3976943229131], [-8545.534561555713, -1527.6476943224538], [-8544.6345615523, -1554.1976943218572], [-8563.884561553437, -1692.6476943233126]], "source": 1891590987, "length": 44.361393442559006}, {"destination": 1891528343, "path": [[-8550.184561556762, -1494.3976943229131], [-8552.784561551618, -1475.6976943228751]], "source": 1891590987, "length": 4.187933233571829}, {"destination": 2971714378, "path": [[5608.415438445036, 703.6523056775934], [5449.365438444431, 540.0023056765235], [5218.91543844788, 387.6023056772482]], "source": 2971714380, "length": 102.72442275662438}, {"destination": 2971714381, "path": [[5608.415438445036, 703.6523056775934], [5871.865438443536, 973.5523056768614]], "source": 2971714380, "length": 78.1853083849029}, {"destination": 2971714399, "path": [[5608.415438445036, 703.6523056775934], [5427.615438449607, 771.002305677726]], "source": 2971714380, "length": 37.50418206330653}, {"destination": 1324294305, "path": [[-620.734561550762, 5744.052305677982], [-711.93456155072, 5773.852305678062]], "source": 1324294989, "length": 18.568312410181036}, {"destination": 1324294450, "path": [[-620.734561550762, 5744.052305677982], [-642.9845615514296, 5696.502305676532]], "source": 1324294989, "length": 11.389878216094898}, {"destination": 1324295234, "path": [[-620.734561550762, 5744.052305677982], [-599.2845615523379, 5760.10230567725], [-502.1345615503492, 5714.052305677342]], "source": 1324294989, "length": 26.54611253474252}, {"destination": 482729441, "path": [[4717.815438446849, 1082.5023056781902], [4741.715438449035, 1123.0023056771897]], "source": 2971714382, "length": 10.088648602474606}, {"destination": 475978741, "path": [[4717.815438446849, 1082.5023056781902], [4707.715438449612, 1065.3523056767256], [4450.065438447837, 653.3023056771725]], "source": 2971714382, "length": 108.18445096912512}, {"destination": 2971714383, "path": [[4717.815438446849, 1082.5023056781902], [4949.66543844555, 999.2523056769897]], "source": 2971714382, "length": 47.82136224310099}, {"destination": 2971714382, "path": [[4949.66543844555, 999.2523056769897], [4717.815438446849, 1082.5023056781902]], "source": 2971714383, "length": 47.82136224310099}, {"destination": 2971714399, "path": [[4949.66543844555, 999.2523056769897], [4931.065438448457, 927.7023056775136], [4962.715438445286, 822.7023056779359], [5027.81543844577, 741.5523056781836], [5133.815438448153, 689.1023056780909], [5249.165438449665, 671.6023056778653], [5355.165438444942, 692.2523056775987], [5405.415438445971, 732.0523056772998], [5427.615438449607, 771.002305677726]], "source": 2971714383, "length": 151.20527107619137}, {"destination": 2971714399, "path": [[4949.66543844555, 999.2523056769897], [4983.165438446235, 1048.5523056775746], [5051.965438447325, 1077.20230567665], [5150.565438448495, 1086.752305678118], [5245.415438444923, 1069.2523056778923], [5332.865438447243, 1023.1023056768151], [5405.415438445971, 953.1523056782731], [5433.315438445163, 872.0023056767445], [5440.765438443406, 794.0523056770843], [5427.615438449607, 771.002305677726]], "source": 2971714383, "length": 146.80270079081015}, {"destination": 1891591009, "path": [[-6644.134561554438, -2221.4476943229756], [-6630.7345615541635, -2243.1976943231293], [-6603.884561556583, -2266.147694323095], [-6560.934561555598, -2287.197694322174]], "source": 1891590992, "length": 22.099607981558137}, {"destination": 1891590900, "path": [[-6644.134561554438, -2221.4476943229756], [-6655.884561553194, -2204.8976943231937], [-6658.884561552724, -2191.5976943223113]], "source": 1891590992, "length": 7.318328017793005}, {"destination": 1890531855, "path": [[-6644.134561554438, -2221.4476943229756], [-6623.834561551689, -2180.0976943229243]], "source": 1891590992, "length": 9.973191936610933}, {"destination": 1887596173, "path": [[-428.58456155414615, -6711.797694322286], [-505.734561556892, -6697.197694322199]], "source": 601097043, "length": 15.024413215057805}, {"destination": 1883254799, "path": [[-428.58456155414615, -6711.797694322286], [-422.98456155265285, -6674.247694322233], [-391.5345615510546, -6468.547694321814], [-364.734561550506, -6264.447694322328], [-361.53456155574304, -6229.897694321807]], "source": 601097043, "length": 107.93588414681521}, {"destination": 1891590920, "path": [[-7196.334561555773, -1860.2976943231652], [-7162.734561553918, -1858.4476943228624], [-7099.434561553153, -1850.7476943234735]], "source": 1891590997, "length": 18.56182050438565}, {"destination": 1890819995, "path": [[-7196.334561555773, -1860.2976943231652], [-7162.734561553918, -1880.247694321824]], "source": 1891590997, "length": 7.778914530539303}, {"destination": 1890935415, "path": [[-7196.334561555773, -1860.2976943231652], [-7226.884561553959, -1842.0976943218648]], "source": 1891590997, "length": 7.080172250576363}, {"destination": 1320103728, "path": [[2831.165438443861, 3185.8523056769172], [2761.4154384494327, 3186.4523056768235]], "source": 1320104079, "length": 13.266526062030412}, {"destination": 1320104096, "path": [[2831.165438443861, 3185.8523056769172], [3032.315438446176, 3184.152305676591]], "source": 1320104079, "length": 38.257447879579395}, {"destination": 1320103998, "path": [[2831.165438443861, 3185.8523056769172], [2831.165438443861, 3130.352305676709]], "source": 1320104079, "length": 12.34270153016412}, {"destination": 1315785576, "path": [[-3802.5845615550224, -2457.7476943221654], [-3777.93456155473, -2421.347694323117]], "source": 1315785530, "length": 9.353910607146702}, {"destination": 1315785331, "path": [[-3802.5845615550224, -2457.7476943221654], [-3821.4845615556214, -2485.59769432255]], "source": 1315785530, "length": 7.159919264002788}, {"destination": 1315785251, "path": [[-3802.5845615550224, -2457.7476943221654], [-3675.7345615541226, -2513.3476943217656]], "source": 1315785530, "length": 27.106351859853646}, {"destination": 2971714380, "path": [[5427.615438449607, 771.002305677726], [5608.415438445036, 703.6523056775934]], "source": 2971714399, "length": 37.50418206330653}, {"destination": 2971714383, "path": [[5427.615438449607, 771.002305677726], [5405.415438445971, 732.0523056772998], [5355.165438444942, 692.2523056775987], [5249.165438449665, 671.6023056778653], [5133.815438448153, 689.1023056780909], [5027.81543844577, 741.5523056781836], [4962.715438445286, 822.7023056779359], [4931.065438448457, 927.7023056775136], [4949.66543844555, 999.2523056769897]], "source": 2971714399, "length": 151.20527107619137}, {"destination": 2971714383, "path": [[5427.615438449607, 771.002305677726], [5440.765438443406, 794.0523056770843], [5433.315438445163, 872.0023056767445], [5405.415438445971, 953.1523056782731], [5332.865438447243, 1023.1023056768151], [5245.415438444923, 1069.2523056778923], [5150.565438448495, 1086.752305678118], [5051.965438447325, 1077.20230567665], [4983.165438446235, 1048.5523056775746], [4949.66543844555, 999.2523056769897]], "source": 2971714399, "length": 146.80270079081015}, {"destination": 1891590976, "path": [[-6560.934561555598, -2287.197694322174], [-6654.434561554012, -2422.697694322906], [-6831.484561551804, -2680.6976943234417], [-6850.234561554203, -2701.3476943231753]], "source": 1891591009, "length": 107.3271164690261}, {"destination": 1891590912, "path": [[-6560.934561555598, -2287.197694322174], [-6540.134561554112, -2255.8476943217443], [-6521.684561555219, -2211.697694322723], [-6520.884561552975, -2195.147694322941], [-6520.3345615501, -2182.997694323063], [-6524.384561551244, -2160.0976943219052], [-6540.434561550512, -2134.8476943234828], [-6556.534561553917, -2116.497694322206], [-6629.084561552645, -2077.047694323042], [-6647.834561555044, -2067.3476943233736]], "source": 1891591009, "length": 61.9896002809968}, {"destination": 3355899012, "path": [[-6560.934561555598, -2287.197694322174], [-6497.384561555464, -2313.0976943228634]], "source": 1891591009, "length": 13.386905836090571}, {"destination": 1891590992, "path": [[-6560.934561555598, -2287.197694322174], [-6603.884561556583, -2266.147694323095], [-6630.7345615541635, -2243.1976943231293], [-6644.134561554438, -2221.4476943229756]], "source": 1891591009, "length": 22.099607981558137}, {"destination": 1324294454, "path": [[3182.515438446387, 5101.75230567711], [3283.065438445476, 5117.802305678154]], "source": 1324295012, "length": 19.454120930512214}, {"destination": 1317671321, "path": [[2485.0654384493964, 41.8023056774075], [2482.265438445097, 9.65230567828712]], "source": 1317671057, "length": 7.169353869840112}, {"destination": 1317671363, "path": [[2485.0654384493964, 41.8023056774075], [2608.465438449059, 32.602305678253174], [2664.815438443213, 37.20230567694216]], "source": 1317671057, "length": 34.3210673823673}, {"destination": 1317671425, "path": [[2485.0654384493964, 41.8023056774075], [2489.665438446309, 97.20230567822341]], "source": 1317671057, "length": 12.351096064591893}, {"destination": 1316471718, "path": [[1422.1154384443935, 3971.052305677958], [1409.8154384498685, 3900.3023056771726]], "source": 1320104082, "length": 15.906997535647712}, {"destination": 1320104030, "path": [[1422.1154384443935, 3971.052305677958], [1484.8154384452528, 3954.852305676937], [1519.7154384480882, 3950.252305678248], [1562.6154384449364, 3954.852305676937], [1667.2154384451687, 3934.2023056772036]], "source": 1320104082, "length": 47.81241490211464}, {"destination": 1324294804, "path": [[3882.865438448846, 4646.802305677155], [3865.015438449859, 4922.002305677964]], "source": 1324295022, "length": 61.2958761246912}, {"destination": 476559405, "path": [[3882.865438448846, 4646.802305677155], [3713.7654384480356, 4634.502305677302]], "source": 1324295022, "length": 32.27734884383298}, {"destination": 1769172027, "path": [[7269.515438444785, -8448.397694323263], [7259.1154384440415, -8432.547694322779]], "source": 1777869681, "length": 4.042287823226357}, {"destination": 1777868868, "path": [[7269.515438444785, -8448.397694323263], [7310.465438443714, -8381.897694322404], [7341.3154384454065, -8377.347694322523], [7519.715438448316, -8145.697694322606], [7601.515438445005, -8013.897694322481], [7538.465438443609, -7923.347694323013]], "source": 1777869681, "length": 140.9653648453328}, {"destination": 1883856720, "path": [[-3066.6845615527905, -6532.597694322461], [-3008.784561551181, -6547.397694323109]], "source": 601097074, "length": 11.490325214051941}, {"destination": 267195120, "path": [[-3066.6845615527905, -6532.597694322461], [-3021.634561555686, -6395.597694321964], [-2927.584561554397, -6068.697694322722]], "source": 601097074, "length": 106.51539615121962}, {"destination": 267198300, "path": [[-3066.6845615527905, -6532.597694322461], [-3147.2345615526365, -6510.14769432301], [-3498.484561553994, -6368.047694323309]], "source": 601097074, "length": 89.99704234859894}, {"destination": 1324295135, "path": [[3005.4654384485957, 5094.902305676996], [3015.415438447633, 5028.35230567733]], "source": 1324295027, "length": 14.920274317505523}, {"destination": 624739122, "path": [[-1911.1345615527853, -2149.1476943218404], [-1838.5845615540575, -2172.3976943217594]], "source": 624739189, "length": 14.733049248925605}, {"destination": 481433742, "path": [[-1911.1345615527853, -2149.1476943218404], [-1811.8845615546775, -1715.0976943227647], [-1796.1845615559469, -1619.8476943234396]], "source": 624739189, "length": 119.74840881305455}, {"destination": 618170115, "path": [[3486.965438447953, 6371.302305677063], [3748.0654384438594, 6496.452305677636], [3913.815438444601, 6535.752305676823], [4133.615438448146, 6564.102305677721], [4527.765438446351, 6625.002305677086], [4695.115438444474, 6691.052305678014], [4823.8654384462625, 6797.502305676772], [4909.615438450032, 6915.302305676718], [4978.3654384469855, 7050.752305676866], [4980.465438443105, 7258.252305677004], [4960.26543844863, 7603.102305678178], [4933.86543844565, 8066.652305677379], [4931.165438449625, 8170.802305677682], [4938.115438449131, 8247.902305678068], [4954.665438447137, 8346.50230567746]], "source": 476562299, "length": 629.5778486225314}, {"destination": 476562102, "path": [[3486.965438447953, 6371.302305677063], [3562.1654384456747, 6456.15230567742], [3682.365438443469, 6529.10230567727]], "source": 476562299, "length": 51.71091250643609}, {"destination": 1324294508, "path": [[3123.515438446134, 5617.902305678157], [3141.565438447458, 5514.002305677223]], "source": 1324295043, "length": 23.36029013701704}, {"destination": 1765485450, "path": [[7790.465438446859, -4998.947694321742], [6993.91543844996, -5065.397694322016]], "source": 495772550, "length": 152.18407382700312}, {"destination": 495772551, "path": [[7790.465438446859, -4998.947694321742], [7794.465438443865, -4937.897694322402]], "source": 495772550, "length": 13.598320113866373}, {"destination": 495772552, "path": [[7794.465438443865, -4937.897694322402], [8011.215438443742, -4194.3976943219495]], "source": 495772551, "length": 170.40656190004}, {"destination": 495771303, "path": [[7794.465438443865, -4937.897694322402], [7866.665438449161, -4934.647694321726]], "source": 495772551, "length": 13.747948653629546}, {"destination": 495772553, "path": [[8011.215438443742, -4194.3976943219495], [8022.215438444391, -4132.947694323264]], "source": 495772552, "length": 13.825089436999397}, {"destination": 63303828, "path": [[8011.215438443742, -4194.3976943219495], [7891.865438445222, -4186.847694322538], [6703.115438448038, -4098.74769432328]], "source": 495772552, "length": 249.65069253210297}, {"destination": 1324294856, "path": [[3925.2654384469565, 4947.7523056769005], [3925.4654384492937, 5005.402305677364], [4016.6654384492517, 5016.902305676751]], "source": 1324295049, "length": 30.35360556764264}, {"destination": 1324294249, "path": [[3925.2654384469565, 4947.7523056769005], [3984.3654384483784, 4954.102305678276]], "source": 1324295049, "length": 11.328784771231499}, {"destination": 1324294917, "path": [[3925.2654384469565, 4947.7523056769005], [3863.7654384459097, 4941.202305676739]], "source": 1324295049, "length": 11.78729579839325}, {"destination": 1404037003, "path": [[-161.98456155080976, 5301.302305676714], [-146.58456155558497, 5359.4523056776925]], "source": 1404037020, "length": 13.259730729892713}, {"destination": 1404037086, "path": [[-161.98456155080976, 5301.302305676714], [-178.18456155538343, 5264.602305677712]], "source": 1404037020, "length": 8.724251128070126}, {"destination": 1404037055, "path": [[-161.98456155080976, 5301.302305676714], [-239.88456155166205, 5321.952305678224]], "source": 1404037020, "length": 15.511705903217978}, {"destination": 1316471952, "path": [[2769.4654384475825, 1950.1523056781878], [2764.0654384484264, 2026.1023056775684]], "source": 1316471693, "length": 16.921957823061074}, {"destination": 1316472009, "path": [[2769.4654384475825, 1950.1523056781878], [2697.3154384464237, 1941.752305677724]], "source": 1316471693, "length": 13.848212961091564}, {"destination": 1320103943, "path": [[2769.4654384475825, 1950.1523056781878], [2801.765438448456, 1952.352305677252]], "source": 1316471693, "length": 6.162033583023529}, {"destination": 1324295056, "path": [[4282.115438449808, 4985.902305676859], [4370.915438443035, 4995.402305677743]], "source": 1324295054, "length": 17.020469491739536}, {"destination": 1324294429, "path": [[4282.115438449808, 4985.902305676859], [4190.665438443375, 4976.152305676606]], "source": 1324295054, "length": 17.527867918028395}, {"destination": 1324294590, "path": [[4282.115438449808, 4985.902305676859], [4293.8654384485635, 4891.952305676739]], "source": 1324295054, "length": 21.012709238729162}, {"destination": 1316471866, "path": [[-1493.5345615540996, 4258.302305677475], [-1506.2845615503306, 4241.90230567767]], "source": 1316471695, "length": 4.379395251495387}, {"destination": 1316471988, "path": [[-1493.5345615540996, 4258.302305677475], [-1386.634561555411, 4192.85230567823]], "source": 1316471695, "length": 25.004269927410064}, {"destination": 1316472130, "path": [[-1493.5345615540996, 4258.302305677475], [-1451.134561555989, 4312.902305677824]], "source": 1316471695, "length": 14.57684019770346}, {"destination": 1324294658, "path": [[4370.915438443035, 4995.402305677743], [4381.465438449084, 5110.95230567804]], "source": 1324295056, "length": 25.7754506006778}, {"destination": 1324295101, "path": [[4370.915438443035, 4995.402305677743], [4394.365438443515, 4997.90230567676]], "source": 1324295056, "length": 4.495170152826736}, {"destination": 1324295054, "path": [[4370.915438443035, 4995.402305677743], [4282.115438449808, 4985.902305676859]], "source": 1324295056, "length": 17.020469491739536}, {"destination": 1316472154, "path": [[964.4654384430851, 2940.152305678012], [1036.7654384495495, 3122.252305677975]], "source": 1316471697, "length": 42.767964339536604}, {"destination": 1316471851, "path": [[964.4654384430851, 2940.152305678012], [870.4654384459332, 2964.0023056778373]], "source": 1316471697, "length": 18.647503600221288}, {"destination": 1316471947, "path": [[964.4654384430851, 2940.152305678012], [1015.31543844402, 2927.30230567706], [1062.5154384484858, 2907.9023056777232]], "source": 1316471697, "length": 20.043361225437998}, {"destination": 1316471704, "path": [[1857.5154384450343, 1585.452305677748], [1997.015438448102, 1571.7023056769362]], "source": 1316471698, "length": 26.705389353746654}, {"destination": 1316471745, "path": [[1857.5154384450343, 1585.452305677748], [1660.915438449706, 1596.952305677135]], "source": 1316471698, "length": 37.47629540689006}, {"destination": 1320104029, "path": [[1857.5154384450343, 1585.452305677748], [1884.315438445583, 1700.152305676994], [1994.3154384449713, 1686.4023056779588], [2039.8154384437817, 1844.1523056775823]], "source": 1316471698, "length": 83.28753243389625}, {"destination": 1316471883, "path": [[1713.9154384437916, 1851.9023056775552], [1733.9654384471714, 1963.902305677223], [1767.6154384460574, 2106.552305678022]], "source": 1316471699, "length": 57.56062140262323}, {"destination": 1316472028, "path": [[1713.9154384437916, 1851.9023056775552], [1690.815438443849, 1722.9523056769835]], "source": 1316471699, "length": 29.01174614154088}, {"destination": 1316472111, "path": [[1713.9154384437916, 1851.9023056775552], [1573.2154384480168, 1867.6023056780623], [1605.4154384477215, 2046.502305677933], [1492.7154384452024, 2057.9523056767357], [1497.765438443821, 2137.9023056766755]], "source": 1316471699, "length": 106.62891613194418}, {"destination": 1316471962, "path": [[2501.465438449202, 2264.7023056769913], [2428.5154384457996, 2268.302305678205]], "source": 1316471700, "length": 13.89693896709908}, {"destination": 1316471751, "path": [[2501.465438449202, 2264.7023056769913], [2498.565438443734, 2099.2523056779787]], "source": 1316471700, "length": 36.79859488339624}, {"destination": 1316471895, "path": [[2501.465438449202, 2264.7023056769913], [2688.965438444768, 2258.352305677391]], "source": 1316471700, "length": 35.68675801643068}, {"destination": 1316472146, "path": [[1401.5654384493814, 1876.7523056766322], [1272.165438443551, 1898.252305677417]], "source": 1316471702, "length": 25.06942610292853}, {"destination": 1316471698, "path": [[1997.015438448102, 1571.7023056769362], [1857.5154384450343, 1585.452305677748]], "source": 1316471704, "length": 26.705389353746654}, {"destination": 1320103783, "path": [[1997.015438448102, 1571.7023056769362], [1986.4654384491587, 1493.15230567737]], "source": 1316471704, "length": 17.583569532977094}, {"destination": 1316471871, "path": [[1997.015438448102, 1571.7023056769362], [2168.6654384467374, 1564.8023056780148]], "source": 1316471704, "length": 32.67985918401636}, {"destination": 1316472002, "path": [[124.81543844700127, 4532.852305677792], [283.3654384488682, 4483.352305676646]], "source": 1316471705, "length": 32.10081288625119}, {"destination": 1316471999, "path": [[945.5654384495915, 2585.502305677778], [924.115438444062, 2493.752305676722], [1046.8654384467868, 2444.60230567789]], "source": 1316471706, "length": 46.585216243679845}, {"destination": 1316471924, "path": [[434.2154384460173, 2495.902305676978], [266.96543844906273, 2544.2523056771192]], "source": 1316471707, "length": 33.57601975803009}, {"destination": 1316471995, "path": [[434.2154384460173, 2495.902305676978], [478.0654384433092, 2593.50230567712]], "source": 1316471707, "length": 23.25220496456806}, {"destination": 1316471780, "path": [[434.2154384460173, 2495.902305676978], [540.5654384489367, 2468.5523056771076], [647.6154384458255, 2427.5023056770096]], "source": 1316471707, "length": 43.43235503913779}, {"destination": 1316472158, "path": [[434.2154384460173, 2495.902305676978], [393.41543844528815, 2405.2023056775342]], "source": 1316471707, "length": 21.611942164514105}, {"destination": 1316471946, "path": [[1653.6654384466942, 2665.8023056782554], [1830.7154384444857, 2652.0523056774437], [1895.7654384479383, 2650.252305677725]], "source": 1316471709, "length": 46.18804669471809}, {"destination": 1320103826, "path": [[1653.6654384466942, 2665.8023056782554], [1642.9654384495507, 2801.152305677235], [1647.9654384440323, 2821.2523056776463]], "source": 1316471709, "length": 34.73776279847421}, {"destination": 1320103807, "path": [[1653.6654384466942, 2665.8023056782554], [1648.2654384475381, 2642.7023056765365]], "source": 1316471709, "length": 5.2395414550086015}, {"destination": 1316471824, "path": [[2741.4154384430844, 1662.0523056776192], [2734.815438444116, 1703.752305678208]], "source": 1316471712, "length": 9.358245469790983}, {"destination": 1320104015, "path": [[2741.4154384430844, 1662.0523056776192], [2748.8654384484335, 1614.6523056779215]], "source": 1316471712, "length": 10.636158403296678}, {"destination": 1316471871, "path": [[2741.4154384430844, 1662.0523056776192], [2450.2654384477296, 1619.8523056765168], [2418.1154384450565, 1585.452305677748], [2168.6654384467374, 1564.8023056780148]], "source": 1316471712, "length": 113.61500915175986}, {"destination": 1316471896, "path": [[991.1654384495705, 3617.7023056769285], [598.2154384440719, 3725.902305676598]], "source": 1316471713, "length": 78.512004109057}, {"destination": 1316472161, "path": [[991.1654384495705, 3617.7023056769285], [1044.9654384458995, 3743.952305677922]], "source": 1316471713, "length": 29.88310449846215}, {"destination": 1316471969, "path": [[991.1654384495705, 3617.7023056769285], [940.215438447467, 3457.1523056765586], [928.3654384475426, 3438.3523056771282]], "source": 1316471713, "length": 41.74689442107645}, {"destination": 1316471753, "path": [[1027.715438446819, 2387.00230567801], [970.3654384480842, 2214.6023056777153]], "source": 1316471714, "length": 39.861125828591035}, {"destination": 1316471909, "path": [[1027.715438446819, 2387.00230567801], [785.7154384467435, 2498.802305677117]], "source": 1316471714, "length": 52.31028455022912}, {"destination": 1320103679, "path": [[1027.715438446819, 2387.00230567801], [1037.3154384453187, 2415.8523056776457]], "source": 1316471714, "length": 6.670523137889266}, {"destination": 1316472115, "path": [[-1426.2845615533593, 4138.05230567732], [-1479.13456155635, 4165.85230567712], [-1540.4345615550596, 4197.902305676848]], "source": 1316471715, "length": 25.464394974517095}, {"destination": 1316471988, "path": [[-1426.2845615533593, 4138.05230567732], [-1386.634561555411, 4192.85230567823]], "source": 1316471715, "length": 14.331477478263329}, {"destination": 1316471853, "path": [[-1426.2845615533593, 4138.05230567732], [-1475.9345615544817, 4069.4023056779824]], "source": 1316471715, "length": 17.951082763079533}, {"destination": 1316471862, "path": [[-1426.2845615533593, 4138.05230567732], [-1328.9345615561388, 4088.9023056767114]], "source": 1316471715, "length": 21.500517568045307}, {"destination": 1316472130, "path": [[-1340.8345615530948, 4256.102305676634], [-1451.134561555989, 4312.902305677824]], "source": 1316471716, "length": 24.48745329932829}, {"destination": 1316471988, "path": [[-1340.8345615530948, 4256.102305676634], [-1386.634561555411, 4192.85230567823]], "source": 1316471716, "length": 16.544933538593714}, {"destination": 1316471726, "path": [[-1340.8345615530948, 4256.102305676634], [-1267.2345615527547, 4218.602305677166]], "source": 1316471716, "length": 16.294084351432442}, {"destination": 1316471750, "path": [[-1340.8345615530948, 4256.102305676634], [-1318.2345615518898, 4287.402305678256]], "source": 1316471716, "length": 8.181539722408207}, {"destination": 477635800, "path": [[-7901.084561552807, -6247.897694322546], [-7952.43456155248, -6478.997694323141]], "source": 477633764, "length": 52.313644170906514}, {"destination": 477633756, "path": [[-7901.084561552807, -6247.897694322546], [-7561.134561555605, -6364.847694323217]], "source": 477633764, "length": 69.67626920477271}, {"destination": 477633771, "path": [[-7901.084561552807, -6247.897694322546], [-8165.884561556424, -6160.297694322026]], "source": 477633764, "length": 53.988136730649096}, {"destination": 477635164, "path": [[-7901.084561552807, -6247.897694322546], [-7808.284561555467, -5934.947694322901]], "source": 477633764, "length": 71.79905910299877}, {"destination": 1316471816, "path": [[1409.8154384498685, 3900.3023056771726], [1291.565438449993, 3908.902305678197]], "source": 1316471718, "length": 22.57068684291729}, {"destination": 1316471725, "path": [[1409.8154384498685, 3900.3023056771726], [1473.965438449909, 3899.7523056778505], [1565.165438449867, 3879.2023056775092]], "source": 1316471718, "length": 30.137976776627916}, {"destination": 1320103902, "path": [[1409.8154384498685, 3900.3023056771726], [1392.6654384448511, 3761.2023056770026]], "source": 1316471718, "length": 31.105808369352}, {"destination": 1320103920, "path": [[3269.415438445833, 2288.40230567684], [3281.2654384457574, 2197.1023056774898]], "source": 1316471719, "length": 20.428993255174902}, {"destination": 1320103640, "path": [[3269.415438445833, 2288.40230567684], [3492.6654384435096, 2302.4523056776047]], "source": 1316471719, "length": 42.572587561248795}, {"destination": 1320104126, "path": [[3269.415438445833, 2288.40230567684], [3260.1654384478707, 2364.4023056768046]], "source": 1316471719, "length": 16.99317715685005}, {"destination": 848733115, "path": [[2939.2154384453306, -7101.747694322924], [2967.16543844866, -7061.797694323246], [3042.6654384498875, -6953.897694321753]], "source": 848733096, "length": 38.31446738373396}, {"destination": 602364804, "path": [[2939.2154384453306, -7101.747694322924], [2814.7654384440557, -7127.797694321814], [2745.0154384496273, -7104.8476943218475]], "source": 848733096, "length": 38.5727153299528}, {"destination": 495632202, "path": [[2715.4654384489163, -7152.997694323204], [2320.0154384497296, -6970.647694322096]], "source": 848733097, "length": 85.43054860693897}, {"destination": 602364804, "path": [[2715.4654384489163, -7152.997694323204], [2745.0154384496273, -7104.8476943218475]], "source": 848733097, "length": 12.093000397432116}, {"destination": 495627677, "path": [[2715.4654384489163, -7152.997694323204], [2862.115438446722, -7211.997694323458]], "source": 848733097, "length": 30.817333937841482}, {"destination": 848733101, "path": [[3292.1154384482065, -6849.497694322082], [3377.6654384496396, -6937.947694321878], [3418.315438445063, -6978.197694323285], [3549.8654384440442, -7048.197694322411]], "source": 848733098, "length": 66.81382933120422}, {"destination": 1993253319, "path": [[3292.1154384482065, -6849.497694322082], [3493.865438443322, -6955.2976943221265], [3633.315438449358, -7028.247694321976]], "source": 848733098, "length": 76.0872386201219}, {"destination": 1316471793, "path": [[950.9154384446106, 1810.252305677551], [1221.8154384484592, 1771.2523056765406], [1208.415438448185, 1750.6023056768072], [1198.3154384438421, 1691.1023056778163]], "source": 1316471723, "length": 70.8661261642295}, {"destination": 1316472060, "path": [[470.8154384474028, 2012.102305677388], [360.2654384451398, 2043.602305677794]], "source": 1316471724, "length": 22.16066303756934}, {"destination": 1316472013, "path": [[470.8154384474028, 2012.102305677388], [660.9654384490682, 1970.9523056778976]], "source": 1316471724, "length": 37.30261873473026}, {"destination": 1316472014, "path": [[470.8154384474028, 2012.102305677388], [499.2154384453329, 2090.552305677562]], "source": 1316471724, "length": 18.26366253285349}, {"destination": 848733098, "path": [[3549.8654384440442, -7048.197694322411], [3418.315438445063, -6978.197694323285], [3377.6654384496396, -6937.947694321878], [3292.1154384482065, -6849.497694322082]], "source": 848733101, "length": 66.81382933120422}, {"destination": 1316471716, "path": [[-1267.2345615527547, 4218.602305677166], [-1340.8345615530948, 4256.102305676634]], "source": 1316471726, "length": 16.294084351432442}, {"destination": 1316471976, "path": [[673.3154384477302, 2048.652305678189], [765.8654384457009, 2018.9523056775015]], "source": 1316471727, "length": 18.79961275768289}, {"destination": 1316472177, "path": [[673.3154384477302, 2048.652305678189], [671.9654384497176, 2067.1523056776664], [690.765438449148, 2115.3023056772467]], "source": 1316471727, "length": 15.411108247805384}, {"destination": 1316472013, "path": [[673.3154384477302, 2048.652305678189], [674.6654384457429, 2030.4523056768885], [660.9654384490682, 1970.9523056778976]], "source": 1316471727, "length": 17.542156348459784}, {"destination": 1316472014, "path": [[673.3154384477302, 2048.652305678189], [499.2154384453329, 2090.552305677562]], "source": 1316471727, "length": 34.3966412244998}, {"destination": 1320104041, "path": [[2180.7654384460307, 1303.0523056780653], [2179.565438446218, 1446.9523056774847]], "source": 1316471728, "length": 32.00267642004541}, {"destination": 76482747, "path": [[2180.7654384460307, 1303.0523056780653], [2230.265438448953, 1307.4023056773854], [2370.8154384465274, 1331.1523056778185]], "source": 1316471728, "length": 36.709894910472}, {"destination": 1316623209, "path": [[105.46543844469625, -1252.1976943222767], [103.61543844794596, -1264.8476943226683], [90.21543844767166, -1360.197694323162], [86.01543844832804, -1397.7976943220228]], "source": 4273376072, "length": 32.59431540299505}, {"destination": 1316623395, "path": [[105.46543844469625, -1252.1976943222767], [122.06543844683893, -1138.647694322259], [170.9654384498549, -1145.9476943223024]], "source": 4273376072, "length": 34.88930092552006}, {"destination": 4273376071, "path": [[105.46543844469625, -1252.1976943222767], [-124.1845615567172, -1226.3976943227563]], "source": 4273376072, "length": 44.04697134327835}, {"destination": 1324294516, "path": [[-57.48456155174608, 5542.202305678145], [-143.28456155254798, 5562.852305677879], [-213.43456155165086, 5579.4023056776605]], "source": 1324295091, "length": 30.79295588707778}, {"destination": 1324294933, "path": [[-57.48456155174608, 5542.202305678145], [-52.08456155259, 5599.552305676881]], "source": 1324295091, "length": 12.795521363491913}, {"destination": 1324294583, "path": [[-57.48456155174608, 5542.202305678145], [-62.83456155387057, 5484.852305677634], [-56.83456155480826, 5462.90230567692]], "source": 1324295091, "length": 17.808450534146033}, {"destination": 1316471793, "path": [[969.715438444041, 1739.1523056780045], [1127.9654384495075, 1709.3023056773404], [1198.3154384438421, 1691.1023056778163]], "source": 1316471732, "length": 44.796860150177274}, {"destination": 1316471827, "path": [[-1637.3845615547111, 4230.052305677745], [-1552.3345615520157, 4182.502305678071]], "source": 1316471733, "length": 19.325365851361855}, {"destination": 1316471962, "path": [[2415.415438449031, 2087.8023056774], [2428.5154384457996, 2268.302305678205]], "source": 1316471734, "length": 40.21879943718479}, {"destination": 1320104072, "path": [[2343.0154384485036, 2881.4023056771275], [2339.5654384472664, 2800.0023056780065]], "source": 1316471735, "length": 18.11451633037151}, {"destination": 1320104026, "path": [[2343.0154384485036, 2881.4023056771275], [2541.4654384476876, 2895.1523056779392], [2547.865438444319, 2890.152305678129]], "source": 1316471735, "length": 39.51535566853937}, {"destination": 1320103948, "path": [[2343.0154384485036, 2881.4023056771275], [2278.615438449094, 2908.952305677559], [2278.565438444957, 2930.802305677105]], "source": 1316471735, "length": 18.554432536246175}, {"destination": 1316471840, "path": [[1015.31543844402, 2849.302305676815], [1187.3154384431928, 2794.852305678219]], "source": 1316471737, "length": 34.880729911568196}, {"destination": 1404037105, "path": [[-692.4845615543518, 5613.202305676524], [-638.0845615510111, 5583.902305676957]], "source": 1324295098, "length": 12.227152944970381}, {"destination": 1324294322, "path": [[-692.4845615543518, 5613.202305676524], [-667.7845615570277, 5651.952305678165]], "source": 1324295098, "length": 9.81514839016867}, {"destination": 481500495, "path": [[-692.4845615543518, 5613.202305676524], [-923.5845615549465, 5737.702305676607]], "source": 1324295098, "length": 51.94755459464565}, {"destination": 495629582, "path": [[3042.6654384498875, -6953.897694321753], [3123.8654384466713, -6837.747694323326], [3130.61543844384, -6764.797694323477]], "source": 848733115, "length": 46.36734378679688}, {"destination": 602364807, "path": [[3042.6654384498875, -6953.897694321753], [3013.2654384473767, -6880.097694322629], [2948.8654384479673, -6802.147694322968], [2895.2154384498385, -6779.197694323003], [2806.6654384488743, -6763.09769432315], [2723.5654384440977, -6756.297694321845], [2637.715438446264, -6783.797694323468], [2584.115438445167, -6834.247694323281], [2562.6154384497113, -6880.097694322629], [2562.6154384497113, -6916.797694323406], [2600.165438444435, -6953.497694322408], [2643.1154384454203, -7003.947694322222], [2672.715438443163, -7065.947694322005]], "source": 848733115, "length": 174.40643210352937}, {"destination": 1316472060, "path": [[277.9154384455751, 2148.352305678003], [258.9154384438075, 2106.1523056769006], [339.36543844959033, 2085.502305677167], [325.965438449316, 2053.352305678047], [360.2654384451398, 2043.602305677794]], "source": 1316471740, "length": 40.49632605787213}, {"destination": 1316472014, "path": [[277.9154384455751, 2148.352305678003], [499.2154384453329, 2090.552305677562]], "source": 1316471740, "length": 44.00602901887579}, {"destination": 1316471975, "path": [[277.9154384455751, 2148.352305678003], [307.41543844925445, 2214.002305677809]], "source": 1316471740, "length": 15.640450366444314}, {"destination": 1316471952, "path": [[2925.0154384499183, 2035.0023056767695], [2764.0654384484264, 2026.1023056775684]], "source": 1316471741, "length": 30.67340157246344}, {"destination": 1316471744, "path": [[1387.8154384485697, 3721.9023056778155], [1310.3654384494234, 3739.3023056768725], [1060.6654384446301, 3780.8023056769002]], "source": 1316471742, "length": 63.60811304954035}, {"destination": 1320103988, "path": [[1387.8154384485697, 3721.9023056778155], [1385.0154384442703, 3699.2523056778027]], "source": 1316471742, "length": 5.064607329896845}, {"destination": 1316471964, "path": [[-690.5845615534645, 4590.202305676527], [-527.4345615546849, 4529.3023056771635]], "source": 1316471743, "length": 33.856429573607265}, {"destination": 1316472161, "path": [[1060.6654384446301, 3780.8023056769002], [1044.9654384458995, 3743.952305677922]], "source": 1316471744, "length": 8.722701389870126}, {"destination": 1316471850, "path": [[1060.6654384446301, 3780.8023056769002], [1076.3654384433607, 3817.60230567707]], "source": 1316471744, "length": 8.711845503411306}, {"destination": 1316471742, "path": [[1060.6654384446301, 3780.8023056769002], [1310.3654384494234, 3739.3023056768725], [1387.8154384485697, 3721.9023056778155]], "source": 1316471744, "length": 63.60811304954035}, {"destination": 4225630314, "path": [[4958.5654384429745, 8744.652305678002], [5015.415438442971, 8710.152305678064]], "source": 714081217, "length": 13.258371245526615}, {"destination": 714081275, "path": [[4958.5654384429745, 8744.652305678002], [4917.865438443414, 8714.952305677314]], "source": 714081217, "length": 10.17582070065447}, {"destination": 4225630306, "path": [[4958.5654384429745, 8744.652305678002], [5074.6654384497, 8819.002305678225], [5166.065438444889, 8878.252305677848], [5236.115438449929, 8915.402305676778], [5308.465438446319, 8950.552305677207], [5394.915438444059, 8981.252305677146], [5472.965438443111, 9001.752305676902], [5572.415438443557, 9025.35230567736], [5655.665438446533, 9048.502305677886], [5757.165438446065, 9079.652305677755], [5950.8154384459995, 9149.152305678143], [6001.815438445135, 9155.352305677767], [6054.415438448757, 9145.552305676929], [6091.4154384477115, 9118.20230567706], [6164.11543844464, 8957.702305677272], [6189.165438449607, 8930.152305676842]], "source": 714081217, "length": 286.35744603867215}, {"destination": 1320103896, "path": [[2317.1154384442616, 2273.8523056773374], [2131.1154384449082, 2294.2023056771177], [2133.765438443902, 2363.0523056770157], [2096.2154384491782, 2360.752305676783], [2103.615438443285, 2394.6023056780064]], "source": 1316471746, "length": 65.80008929823968}, {"destination": 1320103898, "path": [[2317.1154384442616, 2273.8523056773374], [2315.51543844688, 2235.8023056767706]], "source": 1316471746, "length": 8.467899958830348}, {"destination": 1316471962, "path": [[2317.1154384442616, 2273.8523056773374], [2428.5154384457996, 2268.302305678205]], "source": 1316471746, "length": 21.222263229028833}, {"destination": 1316471863, "path": [[2317.1154384442616, 2273.8523056773374], [2328.0654384478794, 2530.7523056774526]], "source": 1316471746, "length": 57.16989333649056}, {"destination": 1316471716, "path": [[-1318.2345615518898, 4287.402305678256], [-1340.8345615530948, 4256.102305676634]], "source": 1316471750, "length": 8.181539722408207}, {"destination": 1316471700, "path": [[2498.565438443734, 2099.2523056779787], [2501.465438449202, 2264.7023056769913]], "source": 1316471751, "length": 36.79859488339624}, {"destination": 1316472156, "path": [[970.3654384480842, 2214.6023056777153], [889.2654384453635, 2223.102305677571], [771.9654384459318, 2249.602305678167]], "source": 1316471753, "length": 38.61279261204312}, {"destination": 1316471714, "path": [[970.3654384480842, 2214.6023056777153], [1027.715438446819, 2387.00230567801]], "source": 1316471753, "length": 39.861125828591035}, {"destination": 1316471819, "path": [[970.3654384480842, 2214.6023056777153], [952.9154384466665, 2162.102305677038], [934.1654384442677, 2100.652305676576]], "source": 1316471753, "length": 26.261706060833184}, {"destination": 1316471796, "path": [[970.3654384480842, 2214.6023056777153], [1060.6154384475985, 2200.302305677582]], "source": 1316471753, "length": 17.455732227496323}, {"destination": 1320104050, "path": [[1858.6154384436782, 2510.852305677602], [2104.3154384443596, 2507.852305678071]], "source": 1316471754, "length": 46.73234613171011}, {"destination": 1320104043, "path": [[1858.6154384436782, 2510.852305677602], [1875.365438444021, 2573.7023056766616]], "source": 1316471754, "length": 14.335564595836297}, {"destination": 476556302, "path": [[1858.6154384436782, 2510.852305677602], [1840.7654384446914, 2443.7523056768387]], "source": 1316471754, "length": 15.303756550093905}, {"destination": 1320103705, "path": [[3090.8154384476916, 1969.2523056775713], [3098.765438444673, 1882.7023056768867]], "source": 1316471756, "length": 19.307168924014352}, {"destination": 1316471908, "path": [[3090.8154384476916, 1969.2523056775713], [3012.2654384499015, 1966.4523056768246], [3005.5154384456273, 1966.2023056774558]], "source": 1316471756, "length": 16.239419281304674}, {"destination": 1316471934, "path": [[3090.8154384476916, 1969.2523056775713], [3143.6154384465453, 1971.1523056766823], [3278.4154384444264, 1982.3023056773081]], "source": 1316471756, "length": 35.806197920308904}, {"destination": 95679584, "path": [[-2586.6845615567513, 3901.852305677522], [-3193.2845615543215, 4207.852305677662]], "source": 654397602, "length": 133.9430281179169}, {"destination": 654397601, "path": [[-2586.6845615567513, 3901.852305677522], [-2278.8845615551168, 4400.152305677807]], "source": 654397602, "length": 125.32886602343147}, {"destination": 1315785325, "path": [[-4260.4845615557, 688.5023056781847], [-4467.784561555277, 731.7023056767624]], "source": 1315785549, "length": 40.57687409811977}, {"destination": 5002561614, "path": [[-8903.284561554869, -690.597694323003], [-8883.334561552658, -642.8476943227679]], "source": 476791768, "length": 11.276555145183389}, {"destination": 476794486, "path": [[-8903.284561554869, -690.597694323003], [-8919.584561553507, -724.4976943230341], [-8931.784561553968, -757.1476943226685]], "source": 476791768, "length": 15.773860427286383}, {"destination": 1890531871, "path": [[-8903.284561554869, -690.597694323003], [-8548.734561550475, -827.8476943228696], [-8313.034561552968, -916.6976943220106]], "source": 476791768, "length": 122.99585487751185}, {"destination": 1317670873, "path": [[1825.715438450004, 466.1023056780067], [1825.5654384446984, 413.3523056779609]], "source": 1317671076, "length": 11.73096202398071}, {"destination": 1317671027, "path": [[1825.715438450004, 466.1023056780067], [1825.9654384493729, 534.9523056779049]], "source": 1317671076, "length": 15.31141063675697}, {"destination": 1317670837, "path": [[1825.715438450004, 466.1023056780067], [1734.2154384465402, 470.7023056766957]], "source": 1317671076, "length": 17.430931269348534}, {"destination": 1317670845, "path": [[1825.715438450004, 466.1023056780067], [1975.665438443741, 459.0023056767478]], "source": 1317671076, "length": 28.559948482525986}, {"destination": 1324294228, "path": [[-639.4845615531608, 5897.752305678239], [-437.484561551571, 5834.452305677473]], "source": 1324295132, "length": 40.917281358785765}, {"destination": 1316471995, "path": [[684.1154384460424, 2540.0523056777756], [478.0654384433092, 2593.50230567712]], "source": 1316471773, "length": 40.95008802433264}, {"destination": 1316471780, "path": [[684.1154384460424, 2540.0523056777756], [647.6154384458255, 2427.5023056770096]], "source": 1316471773, "length": 25.97486162984832}, {"destination": 1316471909, "path": [[684.1154384460424, 2540.0523056777756], [712.2154384475721, 2532.7523056777322], [785.7154384467435, 2498.802305677117]], "source": 1316471773, "length": 21.471947441371558}, {"destination": 1316472037, "path": [[684.1154384460424, 2540.0523056777756], [730.9654384499709, 2615.3523056766658], [798.865438447649, 2762.252305677393]], "source": 1316471773, "length": 54.09771570424774}, {"destination": 476554809, "path": [[907.5654384460563, 2708.7523056774644], [1102.7654384463403, 2612.6023056782797]], "source": 1316471774, "length": 42.84123758935248}, {"destination": 1316472037, "path": [[907.5654384460563, 2708.7523056774644], [798.865438447649, 2762.252305677393]], "source": 1316471774, "length": 23.852043180837896}, {"destination": 1316471909, "path": [[907.5654384460563, 2708.7523056774644], [785.7154384467435, 2498.802305677117]], "source": 1316471774, "length": 52.12525839913589}, {"destination": 1316471913, "path": [[2200.865438446442, 1872.1523056779433], [2294.715438445394, 1890.502305677444]], "source": 1316471775, "length": 18.309006324387205}, {"destination": 1320103980, "path": [[2200.865438446442, 1872.1523056779433], [2168.515438448537, 1870.252305677056]], "source": 1316471775, "length": 6.166419892927423}, {"destination": 1316471855, "path": [[2200.865438446442, 1872.1523056779433], [2183.115438448624, 1702.7523056771797]], "source": 1316471775, "length": 37.823758284941846}, {"destination": 1316472156, "path": [[743.0154384451271, 2183.1523056778933], [771.9654384459318, 2249.602305678167]], "source": 1316471777, "length": 15.770144084831111}, {"destination": 1316472177, "path": [[743.0154384451271, 2183.1523056778933], [690.765438449148, 2115.3023056772467]], "source": 1316471777, "length": 18.067187993520758}, {"destination": 1316472140, "path": [[743.0154384451271, 2183.1523056778933], [669.3154384436184, 2200.152305677605], [697.2154384499163, 2266.5023056767095]], "source": 1316471777, "length": 30.198098529931475}, {"destination": 1316471822, "path": [[743.0154384451271, 2183.1523056778933], [867.7654384499078, 2154.302305678257]], "source": 1316471777, "length": 24.57746142008834}, {"destination": 476556641, "path": [[769.0654384475692, 2776.952305676872], [374.16543844415173, 3011.952305676857]], "source": 1316471778, "length": 91.49746724127836}, {"destination": 1316471851, "path": [[769.0654384475692, 2776.952305676872], [870.4654384459332, 2964.0023056778373]], "source": 1316471778, "length": 45.850767009621514}, {"destination": 1316472037, "path": [[769.0654384475692, 2776.952305676872], [798.865438447649, 2762.252305677393]], "source": 1316471778, "length": 6.542973120213258}, {"destination": 1316471801, "path": [[2238.4154384482713, 1702.4523056772268], [2246.4154384493895, 1734.5523056775392], [2305.1654384431686, 1733.452305677119]], "source": 1316471779, "length": 18.47472319515639}, {"destination": 1316471855, "path": [[2238.4154384482713, 1702.4523056772268], [2183.115438448624, 1702.7523056771797]], "source": 1316471779, "length": 10.516857868499761}, {"destination": 1316471927, "path": [[2238.4154384482713, 1702.4523056772268], [2238.4154384482713, 1665.7523056782252], [2501.2654384468647, 1668.0523056766815], [2517.065438446764, 1670.552305677475]], "source": 1316471779, "length": 61.208886365119845}, {"destination": 1316471915, "path": [[647.6154384458255, 2427.5023056770096], [623.7154384436394, 2353.8523056778613], [726.0154384454154, 2334.902305676678]], "source": 1316471780, "length": 36.904531376602506}, {"destination": 1316471707, "path": [[647.6154384458255, 2427.5023056770096], [540.5654384489367, 2468.5523056771076], [434.2154384460173, 2495.902305676978]], "source": 1316471780, "length": 43.43235503913779}, {"destination": 1316471773, "path": [[647.6154384458255, 2427.5023056770096], [684.1154384460424, 2540.0523056777756]], "source": 1316471780, "length": 25.97486162984832}, {"destination": 1316471790, "path": [[647.6154384458255, 2427.5023056770096], [748.8154384489576, 2392.5523056771426]], "source": 1316471780, "length": 20.756585258816756}, {"destination": 1889249337, "path": [[-5155.884561553137, -2574.647694322252], [-4999.784561555032, -2697.4476943220084], [-4928.684561555485, -2739.8976943224798], [-4690.884561554753, -2865.5476943217905]], "source": 476791781, "length": 109.98276258622012}, {"destination": 479286226, "path": [[-5155.884561553137, -2574.647694322252], [-5070.38456155584, -2618.147694322559]], "source": 476791781, "length": 18.91908581223235}, {"destination": 619349605, "path": [[11647.115438449873, 7876.75230567686], [11292.815438444848, 7819.35230567754], [10861.115438444813, 7754.502305678201]], "source": 1720121311, "length": 151.95465007580412}, {"destination": 479280088, "path": [[-701.7845615564511, -2543.5476943229673], [-897.6345615536729, -2524.7476943217607]], "source": 1315785553, "length": 37.4767763871113}, {"destination": 1315785551, "path": [[-701.7845615564511, -2543.5476943229673], [-763.8845615502987, -2745.547694322781]], "source": 1315785553, "length": 46.4489489409776}, {"destination": 1316471881, "path": [[2752.915438449577, 2184.052305677753], [2747.7654384497896, 2256.402305677696]], "source": 1316471788, "length": 16.12002518455265}, {"destination": 1316471914, "path": [[2752.915438449577, 2184.052305677753], [2758.5654384481018, 2104.202305677205]], "source": 1316471788, "length": 17.790200859764994}, {"destination": 1316471722, "path": [[2752.915438449577, 2184.052305677753], [2906.2654384475195, 2186.4023056767933], [2989.0654384487902, 2188.652305678218]], "source": 1316471788, "length": 44.923530462372014}, {"destination": 1324294481, "path": [[2409.3154384488003, 5348.602305677019], [2659.415438444057, 5344.302305678283]], "source": 1324295149, "length": 47.576766521058936}, {"destination": 476555427, "path": [[2409.3154384488003, 5348.602305677019], [2403.465438447938, 5160.5523056768025]], "source": 1324295149, "length": 41.835299302861166}, {"destination": 1324294302, "path": [[2409.3154384488003, 5348.602305677019], [2410.7154384438445, 5394.302305678167]], "source": 1324295149, "length": 10.166516584864922}, {"destination": 1316471915, "path": [[748.8154384489576, 2392.5523056771426], [741.715438444146, 2372.2023056773623], [726.0154384454154, 2334.902305676678]], "source": 1316471790, "length": 13.540157963473622}, {"destination": 1316471780, "path": [[748.8154384489576, 2392.5523056771426], [647.6154384458255, 2427.5023056770096]], "source": 1316471790, "length": 20.756585258816756}, {"destination": 1316471909, "path": [[748.8154384489576, 2392.5523056771426], [785.7154384467435, 2498.802305677117]], "source": 1316471790, "length": 24.648865633102094}, {"destination": 476556641, "path": [[420.5154384493426, 3141.402305677943], [374.16543844415173, 3011.952305676857]], "source": 1316471792, "length": 30.107855916958272}, {"destination": 1316472172, "path": [[420.5154384493426, 3141.402305677943], [594.2154384470655, 3078.7023056770836], [617.6154384434085, 3068.9523056768307]], "source": 1316471792, "length": 40.80751806644555}, {"destination": 1316471900, "path": [[1198.3154384438421, 1691.1023056778163], [1186.9654384497608, 1624.4523056769822], [1200.365438450035, 1583.1523056775154], [1198.3154384438421, 1562.9023056771275]], "source": 1316471793, "length": 29.031355028676156}, {"destination": 1316471723, "path": [[1198.3154384438421, 1691.1023056778163], [1208.415438448185, 1750.6023056768072], [1221.8154384484592, 1771.2523056765406], [950.9154384446106, 1810.252305677551]], "source": 1316471793, "length": 70.8661261642295}, {"destination": 1316471732, "path": [[1198.3154384438421, 1691.1023056778163], [1127.9654384495075, 1709.3023056773404], [969.715438444041, 1739.1523056780045]], "source": 1316471793, "length": 44.796860150177274}, {"destination": 1316471903, "path": [[-253.38456155310496, 2484.602305678152], [8.365438446844564, 2386.0523056775664]], "source": 1316471795, "length": 54.390960665430335}, {"destination": 1316471753, "path": [[1060.6154384475985, 2200.302305677582], [970.3654384480842, 2214.6023056777153]], "source": 1316471796, "length": 17.455732227496323}, {"destination": 1316472174, "path": [[1060.6154384475985, 2200.302305677582], [1044.8154384476993, 2117.6023056774793], [1034.0654384464187, 2071.7023056775474]], "source": 1316471796, "length": 29.046141334678488}, {"destination": 1316472087, "path": [[1060.6154384475985, 2200.302305677582], [1146.9654384441696, 2186.652305677939]], "source": 1316471796, "length": 16.700542997512468}, {"destination": 1316471994, "path": [[1154.7654384429507, 4028.202305677908], [1118.3654384439023, 3926.352305677838]], "source": 1316471797, "length": 23.68482067730495}, {"destination": 1316472146, "path": [[1252.3654384466454, 1822.6023056779895], [1272.165438443551, 1898.252305677417]], "source": 1316471799, "length": 17.240389474590398}, {"destination": 1316472107, "path": [[1252.3654384466454, 1822.6023056779895], [1240.6154384478896, 1826.302305676819], [866.7654384453272, 1879.4523056779867]], "source": 1316471799, "length": 74.45705016714268}, {"destination": 1316471906, "path": [[1252.3654384466454, 1822.6023056779895], [1393.1154384465572, 1778.0523056778463]], "source": 1316471799, "length": 28.54242883146565}, {"destination": 1765493085, "path": [[2929.7154384479995, -8132.997694323407], [2972.7154384460164, -8162.247694322388], [3170.0654384465565, -8297.247694322607], [3452.265438447455, -8460.397694323163], [3497.6654384450967, -8482.847694322614], [3506.4154384443214, -8468.99769432241], [3523.8154384487075, -8443.747694322212], [3540.815438448419, -8419.54769432185]], "source": 1776116728, "length": 149.54423479179212}, {"destination": 1316471779, "path": [[2305.1654384431686, 1733.452305677119], [2246.4154384493895, 1734.5523056775392], [2238.4154384482713, 1702.4523056772268]], "source": 1316471801, "length": 18.47472319515639}, {"destination": 1316471990, "path": [[2305.1654384431686, 1733.452305677119], [2313.515438444824, 1826.302305676819], [2399.315438445626, 1826.302305676819], [2404.6654384477506, 1803.3523056768531], [2493.215438448715, 1791.9023056780502]], "source": 1316471801, "length": 59.26424725604575}, {"destination": 1316472103, "path": [[2305.1654384431686, 1733.452305677119], [2495.8654384477086, 1729.9523056770738]], "source": 1316471801, "length": 36.275398800869944}, {"destination": 599408454, "path": [[-1737.6845615544312, -2894.5476943231797], [-1969.0845615514263, -2815.5476943219073]], "source": 845390842, "length": 47.38067538014524}, {"destination": 1315785406, "path": [[-1737.6845615544312, -2894.5476943231797], [-1711.9345615554948, -2792.1976943225955]], "source": 845390842, "length": 23.282612295609425}, {"destination": 479280077, "path": [[-1737.6845615544312, -2894.5476943231797], [-1449.7345615538393, -2995.197694323437], [-1099.1845615535567, -3113.547694322705]], "source": 845390842, "length": 130.82317301086772}, {"destination": 1320104088, "path": [[1961.615438446529, 2975.7023056777853], [1957.065438446648, 2940.2023056768203]], "source": 1316471803, "length": 7.942300744025369}, {"destination": 1320103779, "path": [[1961.615438446529, 2975.7023056777853], [1573.4654384473856, 3021.8523056770864]], "source": 1316471803, "length": 74.52981660426343}, {"destination": 1320103684, "path": [[1961.615438446529, 2975.7023056777853], [1970.6654384492595, 3046.2023056774256]], "source": 1316471803, "length": 15.772715653390371}, {"destination": 1316472131, "path": [[1365.7154384461023, 3367.402305677558], [1278.1654384497187, 3356.2523056769323], [1235.565438449271, 3367.302305678166]], "source": 1316471804, "length": 25.300954816463506}, {"destination": 1316471958, "path": [[1365.7154384461023, 3367.402305677558], [1379.3654384457454, 3303.202305676933]], "source": 1316471804, "length": 14.511463840625254}, {"destination": 1316471931, "path": [[351.41543844474654, 2311.752305677928], [326.71543844742246, 2256.90230567821]], "source": 1316471805, "length": 13.071130071575501}, {"destination": 1316471829, "path": [[351.41543844474654, 2311.752305677928], [191.86543844540438, 2358.4523056765506]], "source": 1316471805, "length": 32.07160019106133}, {"destination": 1316471974, "path": [[351.41543844474654, 2311.752305677928], [362.86543844710195, 2337.2523056774953]], "source": 1316471805, "length": 6.074384105647914}, {"destination": 1324294352, "path": [[4553.365438447088, 5468.652305676614], [4453.2654384497055, 5446.552305677698]], "source": 1324295167, "length": 19.66240917998731}, {"destination": 1324294612, "path": [[4553.365438447088, 5468.652305676614], [4577.265438449274, 5370.152305676612], [4632.615438445953, 5383.252305676933]], "source": 1324295167, "length": 33.29509375719458}, {"destination": 481500517, "path": [[4553.365438447088, 5468.652305676614], [4891.46543844754, 5543.202305677397]], "source": 1324295167, "length": 66.40724991335865}, {"destination": 1316472163, "path": [[1373.5654384490203, 3606.552305678079], [1213.765438443204, 3629.2023056780918]], "source": 1316471808, "length": 30.8062185780794}, {"destination": 476557270, "path": [[1373.5654384490203, 3606.552305678079], [1361.5654384437903, 3509.302305676698]], "source": 1316471808, "length": 21.747674838989283}, {"destination": 1324294352, "path": [[4303.315438448863, 5413.502305676942], [4453.2654384497055, 5446.552305677698]], "source": 1324295172, "length": 29.45141317500617}, {"destination": 1324294404, "path": [[4303.315438448863, 5413.502305676942], [4324.265438448549, 5322.802305677498]], "source": 1324295172, "length": 20.560481066978703}, {"destination": 1324294654, "path": [[4303.315438448863, 5413.502305676942], [4076.065438447074, 5363.352305677083], [4040.91543844487, 5356.852305677507]], "source": 1324295172, "length": 51.476528379897495}, {"destination": 1320103896, "path": [[2128.415438448883, 2507.552305678118], [2103.615438443285, 2394.6023056780064]], "source": 1316471813, "length": 25.557916062101416}, {"destination": 1320104050, "path": [[2128.415438448883, 2507.552305678118], [2104.3154384443596, 2507.852305678071]], "source": 1316471813, "length": 4.583523560572122}, {"destination": 1320103757, "path": [[2128.415438448883, 2507.552305678118], [2267.365438449076, 2523.7023056767785]], "source": 1316471813, "length": 26.66874681656434}, {"destination": 1324294881, "path": [[3441.615438447343, 5055.302305677856], [3468.1154384443857, 4960.102305677338]], "source": 1324295174, "length": 21.763210152047296}, {"destination": 1324294511, "path": [[3441.615438447343, 5055.302305677856], [3413.215438449413, 5177.502305677706]], "source": 1324295174, "length": 27.707487705127768}, {"destination": 1324294807, "path": [[3441.615438447343, 5055.302305677856], [3576.8154384498985, 5076.5523056774955], [3839.9654384448922, 5112.902305677736]], "source": 1324295174, "length": 76.84215503445475}, {"destination": 1316472033, "path": [[1160.1654384492122, 3067.2023056776966], [1294.31543844305, 3014.9523056781645]], "source": 1316471815, "length": 28.034579368897475}, {"destination": 1316471994, "path": [[1291.565438449993, 3908.902305678197], [1118.3654384439023, 3926.352305677838]], "source": 1316471816, "length": 33.168217306264786}, {"destination": 1316471718, "path": [[1291.565438449993, 3908.902305678197], [1409.8154384498685, 3900.3023056771726]], "source": 1316471816, "length": 22.57068684291729}, {"destination": 1316472063, "path": [[1291.565438449993, 3908.902305678197], [1313.0154384484172, 4019.0023056769774]], "source": 1316471816, "length": 24.822665598081187}, {"destination": 495771069, "path": [[6687.665438448676, -6637.097694323302], [6728.165438445899, -6816.49769432191], [6759.215438449928, -6937.147694323186], [6821.465438449081, -7043.797694322507], [6903.865438445678, -7144.5476943221565], [7047.5654384480895, -7284.747694322747], [7199.515438443882, -7456.697694323111]], "source": 1582473388, "length": 211.33894488172808}, {"destination": 1993253294, "path": [[6687.665438448676, -6637.097694323302], [6738.715438444842, -6596.097694322012]], "source": 1582473388, "length": 13.318057278244138}, {"destination": 1316471850, "path": [[881.2154384472137, 3860.8523056780086], [1076.3654384433607, 3817.60230567707]], "source": 1316471818, "length": 38.340988002474425}, {"destination": 87739322, "path": [[11024.665438448266, -4868.74769432255], [11070.815438444015, -4815.597694323159], [11118.26543844785, -4752.097694321833]], "source": 476914699, "length": 31.479609585408742}, {"destination": 1784595703, "path": [[11024.665438448266, -4868.74769432255], [10419.565438446909, -5045.497694322165], [9551.315438443453, -5302.897694322794]], "source": 476914699, "length": 296.32996218291544}, {"destination": 1316471777, "path": [[867.7654384499078, 2154.302305678257], [743.0154384451271, 2183.1523056778933]], "source": 1316471822, "length": 24.57746142008834}, {"destination": 1316471712, "path": [[2734.815438444116, 1703.752305678208], [2741.4154384430844, 1662.0523056776192]], "source": 1316471824, "length": 9.358245469790983}, {"destination": 1320104052, "path": [[2734.815438444116, 1703.752305678208], [2726.31543844426, 1757.9023056768506]], "source": 1316471824, "length": 12.150251849113243}, {"destination": 1320103910, "path": [[2734.815438444116, 1703.752305678208], [2801.665438447287, 1716.152305677454], [2975.1654384497783, 1738.302305676953]], "source": 1316471824, "length": 46.370111274229444}, {"destination": 1316471927, "path": [[2734.815438444116, 1703.752305678208], [2517.065438446764, 1670.552305677475]], "source": 1316471824, "length": 42.06443193732981}, {"destination": 1316471865, "path": [[-1650.7345615508484, 4055.8023056771476], [-1591.4345615541947, 4132.15230567765]], "source": 1316471825, "length": 20.383943858395405}, {"destination": 1316471916, "path": [[-1650.7345615508484, 4055.8023056771476], [-1530.4845615560225, 3994.0023056779237]], "source": 1316471825, "length": 26.682092551575344}, {"destination": 1316236825, "path": [[-1650.7345615508484, 4055.8023056771476], [-1790.5845615544536, 4136.152305678209]], "source": 1316471825, "length": 32.04292340935069}, {"destination": 1316471865, "path": [[-1552.3345615520157, 4182.502305678071], [-1591.4345615541947, 4132.15230567765]], "source": 1316471827, "length": 13.44166373167081}, {"destination": 1316472115, "path": [[-1552.3345615520157, 4182.502305678071], [-1540.4345615550596, 4197.902305676848]], "source": 1316471827, "length": 4.1042422049097596}, {"destination": 1316471733, "path": [[-1552.3345615520157, 4182.502305678071], [-1637.3845615547111, 4230.052305677745]], "source": 1316471827, "length": 19.325365851361855}, {"destination": 1316471926, "path": [[2501.2654384468647, 2032.7523056771213], [2683.5154384485804, 2029.2023056782682]], "source": 1316471828, "length": 34.669244779510166}, {"destination": 1316471805, "path": [[191.86543844540438, 2358.4523056765506], [351.41543844474654, 2311.752305677928]], "source": 1316471829, "length": 32.07160019106133}, {"destination": 1316471919, "path": [[1093.065438446672, 3347.052305677778], [1054.7154384497048, 3357.25230567796]], "source": 1316471830, "length": 7.638616011437192}, {"destination": 1316472056, "path": [[1450.7154384446608, 1458.5523056780403], [1565.165438449867, 1450.1523056775768]], "source": 1316471831, "length": 21.84587857303063}, {"destination": 1316471977, "path": [[1450.7154384446608, 1458.5523056780403], [1425.4154384474305, 1386.1523056775127]], "source": 1316471831, "length": 16.804375995837937}, {"destination": 1316471739, "path": [[1450.7154384446608, 1458.5523056780403], [1468.6154384477845, 1509.7523056777363]], "source": 1316471831, "length": 11.884763469345426}, {"destination": 1316472169, "path": [[1200.365438450035, 3496.152305677569], [1083.565438449341, 3515.5023056780974]], "source": 1316471832, "length": 22.626521401108857}, {"destination": 1316472161, "path": [[827.5654384490849, 3808.1023056779627], [1044.9654384458995, 3743.952305677922]], "source": 1316471834, "length": 43.73855764402487}, {"destination": 1316472146, "path": [[1208.415438448185, 1954.7523056768769], [1208.415438448185, 1908.8523056769445], [1272.165438443551, 1898.252305677417]], "source": 1316471835, "length": 22.559558518259664}, {"destination": 1316472149, "path": [[1208.415438448185, 1954.7523056768769], [1106.515438443978, 1952.452305676644], [1122.615438447383, 2012.102305677388]], "source": 1316471835, "length": 32.99978552044628}, {"destination": 1320104070, "path": [[1208.415438448185, 1954.7523056768769], [1211.1154384442102, 2000.602305678001], [1229.2154384496712, 2074.852305677055]], "source": 1316471835, "length": 27.076966395367613}, {"destination": 1316471860, "path": [[3102.0654384477098, 2108.402305676549], [2994.7654384443467, 2111.102305677903]], "source": 1316471837, "length": 20.415091550991818}, {"destination": 1316471737, "path": [[1187.3154384431928, 2794.852305678219], [1015.31543844402, 2849.302305676815]], "source": 1316471840, "length": 34.880729911568196}, {"destination": 1320103653, "path": [[1187.3154384431928, 2794.852305678219], [1155.3654384499623, 2726.002305676545]], "source": 1316471840, "length": 16.473417644661115}, {"destination": 1324294208, "path": [[-175.18456155585227, 5677.052305676611], [-186.23456155353324, 5638.552305677891]], "source": 1324295201, "length": 8.816225810221038}, {"destination": 1324294264, "path": [[-175.18456155585227, 5677.052305676611], [-234.48456155250597, 5686.7023056774715], [-266.48456155697886, 5700.352305677115]], "source": 1324295201, "length": 18.282283811815805}, {"destination": 1324294650, "path": [[-175.18456155585227, 5677.052305676611], [-154.68456155076638, 5748.902305677817]], "source": 1324295201, "length": 16.447683474783254}, {"destination": 1324294871, "path": [[3812.015438448668, 5314.652305678181], [3469.015438447798, 5251.402305677999]], "source": 1324295202, "length": 66.73521969884368}, {"destination": 1324294420, "path": [[3812.015438448668, 5314.652305678181], [3970.965438448104, 5343.952305677746]], "source": 1324295202, "length": 30.92535360948172}, {"destination": 1324294807, "path": [[3812.015438448668, 5314.652305678181], [3839.9654384448922, 5112.902305677736]], "source": 1324295202, "length": 45.18118745694647}, {"destination": 1324294729, "path": [[-132.73456155360464, 5825.702305678249], [-255.93456155093008, 5847.30230567665]], "source": 1324295203, "length": 23.91958451735547}, {"destination": 1324294650, "path": [[-132.73456155360464, 5825.702305678249], [-154.68456155076638, 5748.902305677817]], "source": 1324295203, "length": 17.58280066747757}, {"destination": 1324295205, "path": [[-132.73456155360464, 5825.702305678249], [-125.63456155589847, 5850.552305677325]], "source": 1324295203, "length": 5.689793375742985}, {"destination": 1316471721, "path": [[618.3154384444833, 4530.55230567756], [506.3654384471761, 4544.352305677179]], "source": 1316471844, "length": 21.511832638156545}, {"destination": 1324294809, "path": [[-125.63456155589847, 5850.552305677325], [-25.584561555547225, 5830.302305676938]], "source": 1324295205, "length": 19.55485551442159}, {"destination": 1324295203, "path": [[-125.63456155589847, 5850.552305677325], [-132.73456155360464, 5825.702305678249]], "source": 1324295205, "length": 5.689793375742985}, {"destination": 1324294230, "path": [[-125.63456155589847, 5850.552305677325], [-86.88456155425683, 5986.2023056780345]], "source": 1324295205, "length": 31.054481249467717}, {"destination": 1324294433, "path": [[3204.6154384488545, 5455.952305677414], [3184.515438448443, 5520.852305677337]], "source": 1324295206, "length": 14.931143432942525}, {"destination": 1324294852, "path": [[3204.6154384488545, 5455.952305677414], [3316.6154384431934, 5477.952305676937], [3407.3154384444138, 5494.852305677256]], "source": 1324295206, "length": 39.51137305264152}, {"destination": 1324294727, "path": [[3204.6154384488545, 5455.952305677414], [3223.565438446485, 5394.702305677512]], "source": 1324295206, "length": 14.090158069141987}, {"destination": 1320103601, "path": [[1212.3654384481597, 2846.302305677284], [1203.2154384442606, 2827.5023056778537]], "source": 1316471848, "length": 4.529126597460578}, {"destination": 1316471947, "path": [[1212.3654384481597, 2846.302305677284], [1062.5154384484858, 2907.9023056777232]], "source": 1316471848, "length": 31.62048284904882}, {"destination": 1316472083, "path": [[852.715438448115, 1285.8023056772083], [934.8154384483109, 1365.252305676634], [1053.5154384498924, 1411.9523056770333]], "source": 1316471849, "length": 48.427610094171484}, {"destination": 3356028132, "path": [[852.715438448115, 1285.8023056772083], [984.3654384482647, 1275.8523056781712]], "source": 1316471849, "length": 25.13423408264795}, {"destination": 1316471744, "path": [[1076.3654384433607, 3817.60230567707], [1060.6654384446301, 3780.8023056769002]], "source": 1316471850, "length": 8.711845503411306}, {"destination": 1316471818, "path": [[1076.3654384433607, 3817.60230567707], [881.2154384472137, 3860.8523056780086]], "source": 1316471850, "length": 38.340988002474425}, {"destination": 1316471994, "path": [[1076.3654384433607, 3817.60230567707], [1095.7654384498028, 3863.152305678241], [1118.3654384439023, 3926.352305677838]], "source": 1316471850, "length": 25.477610215507347}, {"destination": 1316471697, "path": [[870.4654384459332, 2964.0023056778373], [964.4654384430851, 2940.152305678012]], "source": 1316471851, "length": 18.647503600221288}, {"destination": 1316471778, "path": [[870.4654384459332, 2964.0023056778373], [769.0654384475692, 2776.952305676872]], "source": 1316471851, "length": 45.850767009621514}, {"destination": 1316472172, "path": [[870.4654384459332, 2964.0023056778373], [617.6154384434085, 3068.9523056768307]], "source": 1316471851, "length": 53.452695087117775}, {"destination": 1316472006, "path": [[870.4654384459332, 2964.0023056778373], [918.7654384490429, 3074.102305676618], [955.3154384462914, 3141.1023056779895]], "source": 1316471851, "length": 42.59339401902531}, {"destination": 1316471865, "path": [[-1475.9345615544817, 4069.4023056779824], [-1591.4345615541947, 4132.15230567765]], "source": 1316471853, "length": 26.024778668293692}, {"destination": 1316471954, "path": [[-1475.9345615544817, 4069.4023056779824], [-1377.9845615502495, 4021.052305677841]], "source": 1316471853, "length": 21.509528199222736}, {"destination": 1316471715, "path": [[-1475.9345615544817, 4069.4023056779824], [-1426.2845615533593, 4138.05230567732]], "source": 1316471853, "length": 17.951082763079533}, {"destination": 1316471916, "path": [[-1475.9345615544817, 4069.4023056779824], [-1530.4845615560225, 3994.0023056779237]], "source": 1316471853, "length": 19.718251504876317}, {"destination": 1316472129, "path": [[1280.865438445744, 3413.552305676859], [1070.1654384490666, 3466.252305678097]], "source": 1316471854, "length": 41.750871790485654}, {"destination": 1316471779, "path": [[2183.115438448624, 1702.7523056771797], [2238.4154384482713, 1702.4523056772268]], "source": 1316471855, "length": 10.516857868499761}, {"destination": 1316471775, "path": [[2183.115438448624, 1702.7523056771797], [2200.865438446442, 1872.1523056779433]], "source": 1316471855, "length": 37.823758284941846}, {"destination": 1316471871, "path": [[2183.115438448624, 1702.7523056771797], [2168.6654384467374, 1564.8023056780148]], "source": 1316471855, "length": 30.80153722657312}, {"destination": 1316472064, "path": [[3248.815438446684, 2407.2023056778135], [3029.665438447182, 2342.4023056772826], [3005.5154384456273, 2303.4023056780484], [2983.7654384436973, 2259.852305677157]], "source": 1316471858, "length": 64.44440723839932}, {"destination": 1320104126, "path": [[3248.815438446684, 2407.2023056778135], [3260.1654384478707, 2364.4023056768046]], "source": 1316471858, "length": 9.75989803068685}, {"destination": 1320103983, "path": [[3248.815438446684, 2407.2023056778135], [3238.9154384446783, 2453.6023056782597]], "source": 1316471858, "length": 10.488969042241223}, {"destination": 1316471917, "path": [[1211.1154384442102, 3698.0023056774057], [1381.8154384495074, 3673.302305676529]], "source": 1316471859, "length": 32.92603862707262}, {"destination": 1316471722, "path": [[2994.7654384443467, 2111.102305677903], [2989.0654384487902, 2188.652305678218]], "source": 1316471860, "length": 17.280335004967096}, {"destination": 1316471908, "path": [[2994.7654384443467, 2111.102305677903], [3004.365438449952, 1981.502305676841], [3005.5154384456273, 1966.2023056774558]], "source": 1316471860, "length": 32.28948178334196}, {"destination": 1316471914, "path": [[2994.7654384443467, 2111.102305677903], [2758.5654384481018, 2104.202305677205]], "source": 1316471860, "length": 44.94668879329769}, {"destination": 1316471837, "path": [[2994.7654384443467, 2111.102305677903], [3102.0654384477098, 2108.402305676549]], "source": 1316471860, "length": 20.415091550991818}, {"destination": 1315785584, "path": [[-3119.78456155515, -4363.947694322689], [-3113.534561556719, -4342.897694321835]], "source": 1315785566, "length": 4.828659101012098}, {"destination": 1315785436, "path": [[-3119.78456155515, -4363.947694322689], [-3269.5345615536553, -4327.547694321865]], "source": 1315785566, "length": 29.603723563024555}, {"destination": 1316471954, "path": [[-1328.9345615561388, 4088.9023056767114], [-1377.9845615502495, 4021.052305677841]], "source": 1316471862, "length": 17.739975333990724}, {"destination": 1316471715, "path": [[-1328.9345615561388, 4088.9023056767114], [-1426.2845615533593, 4138.05230567732]], "source": 1316471862, "length": 21.500517568045307}, {"destination": 1316471988, "path": [[-1328.9345615561388, 4088.9023056767114], [-1289.2345615540535, 4144.952305678018], [-1386.634561555411, 4192.85230567823]], "source": 1316471862, "length": 35.94234845378807}, {"destination": 1320103945, "path": [[2328.0654384478794, 2530.7523056774526], [2332.015438447854, 2623.5523056765687]], "source": 1316471863, "length": 20.65145709123766}, {"destination": 1316471746, "path": [[2328.0654384478794, 2530.7523056774526], [2317.1154384442616, 2273.8523056773374]], "source": 1316471863, "length": 57.16989333649056}, {"destination": 1320103757, "path": [[2328.0654384478794, 2530.7523056774526], [2267.365438449076, 2523.7023056767785]], "source": 1316471863, "length": 11.649625859076718}, {"destination": 4198258802, "path": [[4712.665438447061, 3916.20230567824], [4624.415438449603, 3908.4023056776828]], "source": 1319641268, "length": 16.87342106881385}, {"destination": 1319641051, "path": [[4712.665438447061, 3916.20230567824], [4711.51543844428, 4110.852305677426]], "source": 1319641268, "length": 43.288787361010876}, {"destination": 1319641286, "path": [[4712.665438447061, 3916.20230567824], [4933.715438447451, 3927.452305678258]], "source": 1319641268, "length": 42.11518100636874}, {"destination": 1316472136, "path": [[-1506.2845615503306, 4241.90230567767], [-1610.5845615541625, 4296.552305676826]], "source": 1316471866, "length": 23.263830292754832}, {"destination": 1316472115, "path": [[-1506.2845615503306, 4241.90230567767], [-1540.4345615550596, 4197.902305676848]], "source": 1316471866, "length": 11.744783033907664}, {"destination": 1316471695, "path": [[-1506.2845615503306, 4241.90230567767], [-1493.5345615540996, 4258.302305677475]], "source": 1316471866, "length": 4.379395251495387}, {"destination": 93310875, "path": [[424.06543844464295, 1324.9523056781954], [503.2154384494447, 1289.152305677277]], "source": 1316471867, "length": 17.028675125898857}, {"destination": 1316472060, "path": [[424.06543844464295, 1324.9523056781954], [430.5654384495483, 1337.752305676787], [478.2654384456464, 1371.002305678104], [519.1154384434071, 1376.7523056777975], [647.8654384451943, 1413.452305676799], [776.5654384499499, 1739.1523056780045], [771.2154384478254, 1787.302305677585], [712.2154384475721, 1828.6023056770518], [334.01543844746584, 1908.8523056769445], [315.26543844506705, 1943.302305678074], [360.2654384451398, 2043.602305677794]], "source": 1316471867, "length": 256.6514023008521}, {"destination": 1316472129, "path": [[1055.4654384478113, 3412.152305678262], [1070.1654384490666, 3466.252305678097]], "source": 1316471868, "length": 12.35182575449089}, {"destination": 1316472131, "path": [[1055.4654384478113, 3412.152305678262], [1093.065438446672, 3404.402305678289], [1235.565438449271, 3367.302305678166]], "source": 1316471868, "length": 35.68555697376304}, {"destination": 1316471969, "path": [[1055.4654384478113, 3412.152305678262], [928.3654384475426, 3438.3523056771282]], "source": 1316471868, "length": 24.864929015454152}, {"destination": 1316471704, "path": [[2168.6654384467374, 1564.8023056780148], [1997.015438448102, 1571.7023056769362]], "source": 1316471871, "length": 32.67985918401636}, {"destination": 1320104041, "path": [[2168.6654384467374, 1564.8023056780148], [2179.565438446218, 1446.9523056774847]], "source": 1316471871, "length": 26.290430655508413}, {"destination": 1316471712, "path": [[2168.6654384467374, 1564.8023056780148], [2418.1154384450565, 1585.452305677748], [2450.2654384477296, 1619.8523056765168], [2741.4154384430844, 1662.0523056776192]], "source": 1316471871, "length": 113.61500915175986}, {"destination": 1316471855, "path": [[2168.6654384467374, 1564.8023056780148], [2183.115438448624, 1702.7523056771797]], "source": 1316471871, "length": 30.80153722657312}, {"destination": 1316472107, "path": [[880.8654384466763, 1925.752305677264], [866.7654384453272, 1879.4523056779867]], "source": 1316471872, "length": 10.64039439789024}, {"destination": 1316471819, "path": [[880.8654384466763, 1925.752305677264], [934.1654384442677, 2100.652305676576]], "source": 1316471872, "length": 40.1950386003125}, {"destination": 1316472013, "path": [[880.8654384466763, 1925.752305677264], [704.1654384494223, 1961.6023056769905], [660.9654384490682, 1970.9523056778976]], "source": 1316471872, "length": 43.01279985305237}, {"destination": 1316471968, "path": [[1355.9654384494024, 1658.8523056775273], [1326.465438445723, 1569.4023056767037]], "source": 1316471873, "length": 20.668470514766877}, {"destination": 1316471906, "path": [[1355.9654384494024, 1658.8523056775273], [1382.765438449951, 1697.8523056767613], [1393.1154384465572, 1778.0523056778463]], "source": 1316471873, "length": 28.003625071265223}, {"destination": 1316472135, "path": [[1355.9654384494024, 1658.8523056775273], [1506.1654384496137, 1610.7023056779467]], "source": 1316471873, "length": 30.50575470559041}, {"destination": 1316471947, "path": [[1130.6154384485012, 3014.4523056776507], [1062.5154384484858, 2907.9023056777232]], "source": 1316471874, "length": 27.00424973630304}, {"destination": 1316472169, "path": [[1095.7654384498028, 3560.3523056781937], [1083.565438449341, 3515.5023056780974]], "source": 1316471875, "length": 10.241152859852887}, {"destination": 1316471977, "path": [[1186.4154384468861, 1444.7523056766443], [1235.265438445765, 1452.402305677225], [1323.7654384496977, 1445.5523056771112], [1398.8654384462507, 1408.85230567811], [1425.4154384474305, 1386.1523056775127]], "source": 1316471876, "length": 49.933821917298225}, {"destination": 1316472083, "path": [[1186.4154384468861, 1444.7523056766443], [1103.8154384479526, 1431.802305678076], [1053.5154384498924, 1411.9523056770333]], "source": 1316471876, "length": 26.50602403255065}, {"destination": 1316471900, "path": [[1186.4154384468861, 1444.7523056766443], [1198.3154384438421, 1562.9023056771275]], "source": 1316471876, "length": 26.372577755286073}, {"destination": 602360352, "path": [[10943.515438448514, -5164.297694323139], [10843.465438448164, -5147.747694323357]], "source": 554689606, "length": 19.377063573707254}, {"destination": 602361950, "path": [[10943.515438448514, -5164.297694323139], [11204.16543844982, -5266.447694323162], [11428.66543844434, -5354.4476943230275]], "source": 554689606, "length": 101.48186814815807}, {"destination": 115548383, "path": [[10943.515438448514, -5164.297694323139], [10566.76543844759, -5761.997694323284], [10329.365438444427, -6138.547694321872], [9986.115438444187, -6704.547694322827], [9963.765438449456, -6748.64769432304]], "source": 554689606, "length": 398.6077899023853}, {"destination": 1320104057, "path": [[3167.865438449269, 1587.0023056780979], [3134.2654384474145, 1693.2523056780724], [3131.115438449683, 1708.1523056781123]], "source": 1316471879, "length": 27.84337318720439}, {"destination": 476556047, "path": [[3167.865438449269, 1587.0023056780979], [3198.815438445024, 1598.6023056768772], [3336.9654384429737, 1631.8523056781942]], "source": 1316471879, "length": 33.72011965276738}, {"destination": 1316472064, "path": [[2747.7654384497896, 2256.402305677696], [2983.7654384436973, 2259.852305677157]], "source": 1316471881, "length": 44.88910249566408}, {"destination": 1316471788, "path": [[2747.7654384497896, 2256.402305677696], [2752.915438449577, 2184.052305677753]], "source": 1316471881, "length": 16.12002518455265}, {"destination": 1316471895, "path": [[2747.7654384497896, 2256.402305677696], [2688.965438444768, 2258.352305677391]], "source": 1316471881, "length": 11.19151445759196}, {"destination": 1320103888, "path": [[1767.6154384460574, 2106.552305678022], [1897.6154384446886, 2092.652305677234]], "source": 1316471883, "length": 24.91580369632166}, {"destination": 1320103889, "path": [[1767.6154384460574, 2106.552305678022], [1780.6154384487627, 2166.4023056775504]], "source": 1316471883, "length": 13.537539628121248}, {"destination": 1316471699, "path": [[1767.6154384460574, 2106.552305678022], [1733.9654384471714, 1963.902305677223], [1713.9154384437916, 1851.9023056775552]], "source": 1316471883, "length": 57.56062140262323}, {"destination": 1316471886, "path": [[1767.6154384460574, 2106.552305678022], [1562.7654384431366, 2130.3523056772633]], "source": 1316471883, "length": 39.31633752735843}, {"destination": 1316472128, "path": [[402.1654384445128, 4790.002305677277], [593.415438444822, 4747.2023056780445]], "source": 1316471884, "length": 37.59874610161031}, {"destination": 1316471979, "path": [[402.1654384445128, 4790.002305677277], [319.16543844801026, 4648.40230567809]], "source": 1316471884, "length": 35.22552310218704}, {"destination": 476559990, "path": [[402.1654384445128, 4790.002305677277], [206.96543844422877, 4831.202305677351]], "source": 1316471884, "length": 38.239185976402226}, {"destination": 2991483745, "path": [[-4411.184561554648, 9441.902305677984], [-4528.734561553449, 9244.252305677492]], "source": 2991483746, "length": 49.3153704853047}, {"destination": 1316471883, "path": [[1562.7654384431366, 2130.3523056772633], [1767.6154384460574, 2106.552305678022]], "source": 1316471886, "length": 39.31633752735843}, {"destination": 1316471894, "path": [[1562.7654384431366, 2130.3523056772633], [1559.8154384477425, 2218.502305677106]], "source": 1316471886, "length": 19.611693451790515}, {"destination": 1316472111, "path": [[1562.7654384431366, 2130.3523056772633], [1497.765438443821, 2137.9023056766755]], "source": 1316471886, "length": 12.475252694791836}, {"destination": 1320103728, "path": [[2508.165438449339, 3142.002305677849], [2511.965438444008, 3117.9023056768783], [2611.2154384492214, 3126.802305677856], [2697.065438447055, 3152.052305678055], [2761.4154384494327, 3186.4523056768235]], "source": 1316471887, "length": 56.08457827997541}, {"destination": 1316472082, "path": [[2508.165438449339, 3142.002305677849], [2277.965438445051, 3145.4523056773096]], "source": 1316471887, "length": 43.78705771754765}, {"destination": 1320104103, "path": [[2508.165438449339, 3142.002305677849], [2482.4654384474343, 3305.1023056778204]], "source": 1316471887, "length": 36.59954835662637}, {"destination": 1320103905, "path": [[2678.365438448793, 2835.052305677266], [2782.9154384448884, 2861.702305677838]], "source": 1316471889, "length": 20.747899222716182}, {"destination": 1320104026, "path": [[2678.365438448793, 2835.052305677266], [2547.865438444319, 2890.152305678129]], "source": 1316471889, "length": 27.679010930372517}, {"destination": 1320103802, "path": [[2678.365438448793, 2835.052305677266], [2678.565438444025, 2806.5023056775826]], "source": 1316471889, "length": 6.3486184773199135}, {"destination": 1320103632, "path": [[1634.9154384442954, 2585.502305677778], [1538.4654384433816, 2603.8023056766947], [1415.065438443719, 2648.652305676791]], "source": 1316471890, "length": 44.28908032867457}, {"destination": 1320103661, "path": [[1634.9154384442954, 2585.502305677778], [1599.8154384462282, 2515.352305676899]], "source": 1316471890, "length": 16.969293551010615}, {"destination": 1320103807, "path": [[1634.9154384442954, 2585.502305677778], [1648.2654384475381, 2642.7023056765365]], "source": 1316471890, "length": 12.971807354428552}, {"destination": 1316471930, "path": [[491.1654384471831, 2206.9523056771345], [481.06543844994576, 2163.7523056767805]], "source": 1316471891, "length": 9.79768615250641}, {"destination": 1316471931, "path": [[491.1654384471831, 2206.9523056771345], [438.6154384476981, 2223.102305677571], [326.71543844742246, 2256.90230567821]], "source": 1316471891, "length": 33.18993442034294}, {"destination": 1316471974, "path": [[491.1654384471831, 2206.9523056771345], [508.365438449232, 2280.452305678082], [362.86543844710195, 2337.2523056774953]], "source": 1316471891, "length": 47.087783063555634}, {"destination": 1316471918, "path": [[1087.7154384445475, 1670.3023056781062], [1070.9654384442047, 1567.7023056781536]], "source": 1316471893, "length": 23.0386211400152}, {"destination": 1320103987, "path": [[1559.8154384477425, 2218.502305677106], [1675.0154384439497, 2203.2023056777207]], "source": 1316471894, "length": 22.171031455801366}, {"destination": 1320104059, "path": [[1559.8154384477425, 2218.502305677106], [1562.1154384461988, 2284.102305678104]], "source": 1316471894, "length": 14.595377155976358}, {"destination": 1316471886, "path": [[1559.8154384477425, 2218.502305677106], [1562.7654384431366, 2130.3523056772633]], "source": 1316471894, "length": 19.611693451790515}, {"destination": 1316471881, "path": [[2688.965438444768, 2258.352305677391], [2747.7654384497896, 2256.402305677696]], "source": 1316471895, "length": 11.19151445759196}, {"destination": 1316472162, "path": [[2688.965438444768, 2258.352305677391], [2672.6154384490997, 2098.552305676904]], "source": 1316471895, "length": 35.673875576174694}, {"destination": 1316471700, "path": [[2688.965438444768, 2258.352305677391], [2501.465438449202, 2264.7023056769913]], "source": 1316471895, "length": 35.68675801643068}, {"destination": 1320103726, "path": [[2688.965438444768, 2258.352305677391], [2690.665438443318, 2347.752305677631]], "source": 1316471895, "length": 19.884384322426335}, {"destination": 1316471713, "path": [[598.2154384440719, 3725.902305676598], [991.1654384495705, 3617.7023056769285]], "source": 1316471896, "length": 78.512004109057}, {"destination": 1316471978, "path": [[598.2154384440719, 3725.902305676598], [595.5654384450781, 3713.2523056779833], [550.265438448605, 3497.302305676797]], "source": 1316471896, "length": 51.65094226166686}, {"destination": 1316471975, "path": [[112.46543844833923, 2272.202305677595], [307.41543844925445, 2214.002305677809]], "source": 1316471898, "length": 39.27000447052023}, {"destination": 1316472009, "path": [[2707.915438449504, 1874.4023056775916], [2697.3154384464237, 1941.752305677724]], "source": 1316471899, "length": 15.112933612995686}, {"destination": 1320103834, "path": [[2707.915438449504, 1874.4023056775916], [2712.3154384440795, 1846.5523056772072]], "source": 1316471899, "length": 6.249895916429223}, {"destination": 1316472166, "path": [[2707.915438449504, 1874.4023056775916], [2492.915438445209, 1883.5023056773537]], "source": 1316471899, "length": 40.938641704741215}, {"destination": 1316471968, "path": [[1198.3154384438421, 1562.9023056771275], [1326.465438445723, 1569.4023056767037]], "source": 1316471900, "length": 24.41410043507409}, {"destination": 1316471793, "path": [[1198.3154384438421, 1562.9023056771275], [1200.365438450035, 1583.1523056775154], [1186.9654384497608, 1624.4523056769822], [1198.3154384438421, 1691.1023056778163]], "source": 1316471900, "length": 29.031355028676153}, {"destination": 1316471876, "path": [[1198.3154384438421, 1562.9023056771275], [1186.4154384468861, 1444.7523056766443]], "source": 1316471900, "length": 26.372577755286073}, {"destination": 1316471918, "path": [[1198.3154384438421, 1562.9023056771275], [1070.9654384442047, 1567.7023056781536]], "source": 1316471900, "length": 24.242576312632774}, {"destination": 1324294410, "path": [[3253.3154384495333, 5899.802305677326], [3304.1654384433627, 5820.552305676685], [3354.1654384450226, 5690.002305676955]], "source": 1324294330, "length": 50.65483286656314}, {"destination": 476561947, "path": [[3253.3154384495333, 5899.802305677326], [3115.865438445553, 5761.902305676969]], "source": 1324294330, "length": 40.298050144431635}, {"destination": 1316471795, "path": [[8.365438446844564, 2386.0523056775664], [-253.38456155310496, 2484.602305678152]], "source": 1316471903, "length": 54.390960665430335}, {"destination": 1316236342, "path": [[8.365438446844564, 2386.0523056775664], [73.8154384478662, 2523.65230567797]], "source": 1316471903, "length": 33.03562068669018}, {"destination": 1315785335, "path": [[-4657.934561556942, -2821.59769432333], [-4491.284561552789, -2588.8476943229934]], "source": 477619297, "length": 60.69188834546094}, {"destination": 3355916999, "path": [[-4657.934561556942, -2821.59769432333], [-4596.8345615534645, -2849.7976943224758], [-4462.334561551984, -2916.647694322094], [-4191.984561551009, -3018.29769432338], [-4024.584561555855, -3077.5976943218097], [-3979.9345615563197, -3093.397694323485]], "source": 477619297, "length": 142.59293486726804}, {"destination": 1316471873, "path": [[1393.1154384465572, 1778.0523056778463], [1382.765438449951, 1697.8523056767613], [1355.9654384494024, 1658.8523056775273]], "source": 1316471906, "length": 28.003625071265223}, {"destination": 1316472028, "path": [[1393.1154384465572, 1778.0523056778463], [1436.4154384480798, 1764.352305677619], [1690.815438443849, 1722.9523056769835]], "source": 1316471906, "length": 58.029906738304106}, {"destination": 1316471799, "path": [[1393.1154384465572, 1778.0523056778463], [1252.3654384466454, 1822.6023056779895]], "source": 1316471906, "length": 28.54242883146565}, {"destination": 1319641234, "path": [[4586.06543844553, 4303.352305678132], [4687.365438449831, 4312.702305677263], [4711.51543844428, 4301.252305676684]], "source": 1319641275, "length": 24.629562418877228}, {"destination": 1319204581, "path": [[4586.06543844553, 4303.352305678132], [4560.215438445425, 4564.702305676959]], "source": 1319641275, "length": 58.32915149424631}, {"destination": 1319641255, "path": [[4586.06543844553, 4303.352305678132], [4591.565438445855, 4247.702305677947]], "source": 1319641275, "length": 12.419862364397925}, {"destination": 1316471860, "path": [[3005.5154384456273, 1966.2023056774558], [3004.365438449952, 1981.502305676841], [2994.7654384443467, 2111.102305677903]], "source": 1316471908, "length": 32.28948178334196}, {"destination": 1316471756, "path": [[3005.5154384456273, 1966.2023056774558], [3012.2654384499015, 1966.4523056768246], [3090.8154384476916, 1969.2523056775713]], "source": 1316471908, "length": 16.239419281304674}, {"destination": 1320103943, "path": [[3005.5154384456273, 1966.2023056774558], [2801.765438448456, 1952.352305677252]], "source": 1316471908, "length": 38.8711616640814}, {"destination": 1316471714, "path": [[785.7154384467435, 2498.802305677117], [1027.715438446819, 2387.00230567801]], "source": 1316471909, "length": 52.31028455022912}, {"destination": 1316471790, "path": [[785.7154384467435, 2498.802305677117], [748.8154384489576, 2392.5523056771426]], "source": 1316471909, "length": 24.648865633102094}, {"destination": 1316471774, "path": [[785.7154384467435, 2498.802305677117], [907.5654384460563, 2708.7523056774644]], "source": 1316471909, "length": 52.12525839913589}, {"destination": 1316471773, "path": [[785.7154384467435, 2498.802305677117], [712.2154384475721, 2532.7523056777322], [684.1154384460424, 2540.0523056777756]], "source": 1316471909, "length": 21.471947441371558}, {"destination": 2629549328, "path": [[7618.865438445255, 2301.9023056782826], [7680.515438444501, 2427.652305676986]], "source": 2629549316, "length": 30.3238096225718}, {"destination": 2629549317, "path": [[7618.865438445255, 2301.9023056782826], [7503.915438448416, 2331.502305677802]], "source": 2629549316, "length": 22.830737812569836}, {"destination": 654391797, "path": [[7618.865438445255, 2301.9023056782826], [7547.665438444539, 2158.4523056770167]], "source": 2629549316, "length": 34.65650422976561}, {"destination": 1316472139, "path": [[2294.715438445394, 1890.502305677444], [2302.7654384435436, 1922.6523056765643], [2308.115438445668, 2062.552305677201]], "source": 1316471913, "length": 38.441001489247476}, {"destination": 1316472166, "path": [[2294.715438445394, 1890.502305677444], [2402.015438448757, 1890.502305677444], [2492.915438445209, 1883.5023056773537]], "source": 1316471913, "length": 37.76335481805583}, {"destination": 1316471775, "path": [[2294.715438445394, 1890.502305677444], [2200.865438446442, 1872.1523056779433]], "source": 1316471913, "length": 18.309006324387205}, {"destination": 1316471952, "path": [[2758.5654384481018, 2104.202305677205], [2764.0654384484264, 2026.1023056775684]], "source": 1316471914, "length": 17.399880360655533}, {"destination": 1316471788, "path": [[2758.5654384481018, 2104.202305677205], [2752.915438449577, 2184.052305677753]], "source": 1316471914, "length": 17.790200859764994}, {"destination": 1316472162, "path": [[2758.5654384481018, 2104.202305677205], [2672.6154384490997, 2098.552305676904]], "source": 1316471914, "length": 16.394169942856678}, {"destination": 1316471860, "path": [[2758.5654384481018, 2104.202305677205], [2994.7654384443467, 2111.102305677903]], "source": 1316471914, "length": 44.94668879329769}, {"destination": 1316472140, "path": [[726.0154384454154, 2334.902305676678], [697.2154384499163, 2266.5023056767095]], "source": 1316471915, "length": 16.167478996906585}, {"destination": 1316472148, "path": [[726.0154384454154, 2334.902305676678], [894.615438447488, 2305.702305678281]], "source": 1316471915, "length": 32.71527883889848}, {"destination": 1316471780, "path": [[726.0154384454154, 2334.902305676678], [623.7154384436394, 2353.8523056778613], [647.6154384458255, 2427.5023056770096]], "source": 1316471915, "length": 36.904531376602506}, {"destination": 1316471790, "path": [[726.0154384454154, 2334.902305676678], [741.715438444146, 2372.2023056773623], [748.8154384489576, 2392.5523056771426]], "source": 1316471915, "length": 13.540157963473622}, {"destination": 1316471825, "path": [[-1530.4845615560225, 3994.0023056779237], [-1650.7345615508484, 4055.8023056771476]], "source": 1316471916, "length": 26.682092551575344}, {"destination": 1316471853, "path": [[-1530.4845615560225, 3994.0023056779237], [-1475.9345615544817, 4069.4023056779824]], "source": 1316471916, "length": 19.718251504876317}, {"destination": 1316472038, "path": [[-1530.4845615560225, 3994.0023056779237], [-1433.484561552234, 3944.152305678017]], "source": 1316471916, "length": 21.52293238557483}, {"destination": 1320103994, "path": [[1381.8154384495074, 3673.302305676529], [1376.0154384456769, 3626.45230567793]], "source": 1316471917, "length": 10.477362630451376}, {"destination": 1316471859, "path": [[1381.8154384495074, 3673.302305676529], [1211.1154384442102, 3698.0023056774057]], "source": 1316471917, "length": 32.92603862707262}, {"destination": 1316472083, "path": [[1070.9654384442047, 1567.7023056781536], [1052.8654384458491, 1457.0023056776904], [1053.5154384498924, 1411.9523056770333]], "source": 1316471918, "length": 34.87784666310747}, {"destination": 1316471900, "path": [[1070.9654384442047, 1567.7023056781536], [1198.3154384438421, 1562.9023056771275]], "source": 1316471918, "length": 24.242576312632774}, {"destination": 1316471893, "path": [[1070.9654384442047, 1567.7023056781536], [1087.7154384445475, 1670.3023056781062]], "source": 1316471918, "length": 23.0386211400152}, {"destination": 1316472026, "path": [[1054.7154384497048, 3357.25230567796], [902.7654384468065, 3397.5523056781753]], "source": 1316471919, "length": 30.25656413466079}, {"destination": 1316471830, "path": [[1054.7154384497048, 3357.25230567796], [1093.065438446672, 3347.052305677778]], "source": 1316471919, "length": 7.638616011437192}, {"destination": 1316472006, "path": [[1054.7154384497048, 3357.25230567796], [1012.6154384479946, 3246.1023056775675], [955.3154384462914, 3141.1023056779895]], "source": 1316471919, "length": 51.75181905460616}, {"destination": 1316471721, "path": [[289.1154384485617, 4597.0523056766415], [374.26543844532034, 4576.402305676907], [506.3654384471761, 4544.352305677179]], "source": 1316471921, "length": 42.948305408242256}, {"destination": 1316471979, "path": [[289.1154384485617, 4597.0523056766415], [319.16543844801026, 4648.40230567809]], "source": 1316471921, "length": 12.77013899503848}, {"destination": 1316471951, "path": [[289.1154384485617, 4597.0523056766415], [261.61543844693824, 4569.552305676794], [291.9154384457556, 4520.352305677377]], "source": 1316471921, "length": 20.41355348532258}, {"destination": 1316471707, "path": [[266.96543844906273, 2544.2523056771192], [434.2154384460173, 2495.902305676978]], "source": 1316471924, "length": 33.57601975803009}, {"destination": 1316471858, "path": [[3260.1654384478707, 2364.4023056768046], [3248.815438446684, 2407.2023056778135]], "source": 1320104126, "length": 9.75989803068685}, {"destination": 1320104058, "path": [[3260.1654384478707, 2364.4023056768046], [3481.565438448797, 2387.052305676818]], "source": 1320104126, "length": 42.40628775545974}, {"destination": 1316471719, "path": [[3260.1654384478707, 2364.4023056768046], [3269.415438445833, 2288.40230567684]], "source": 1320104126, "length": 16.99317715685005}, {"destination": 1316472009, "path": [[2683.5154384485804, 2029.2023056782682], [2697.3154384464237, 1941.752305677724]], "source": 1316471926, "length": 19.62432726341208}, {"destination": 1316472162, "path": [[2683.5154384485804, 2029.2023056782682], [2672.6154384490997, 2098.552305676904]], "source": 1316471926, "length": 15.561883671378666}, {"destination": 1316471828, "path": [[2683.5154384485804, 2029.2023056782682], [2501.2654384468647, 2032.7523056771213]], "source": 1316471926, "length": 34.669244779510166}, {"destination": 93466273, "path": [[3121.4654384470464, -8005.79769432197], [3077.9654384431865, -7973.347694322896]], "source": 1776116855, "length": 10.976851602683563}, {"destination": 1769172074, "path": [[3121.4654384470464, -8005.79769432197], [3202.765438444999, -7942.74769432235]], "source": 1776116855, "length": 20.870254386204728}, {"destination": 1765493273, "path": [[3121.4654384470464, -8005.79769432197], [3356.8654384481533, -8181.397694322357], [3570.165438446793, -8297.79769432193]], "source": 1776116855, "length": 107.51378145221122}, {"destination": 1316472160, "path": [[404.51543844710613, 4377.45230567721], [461.2154384489031, 4462.702305676913]], "source": 1316471929, "length": 21.811195999653954}, {"destination": 599406827, "path": [[404.51543844710613, 4377.45230567721], [693.6154384433735, 4291.552305677015]], "source": 1316471929, "length": 58.20765332298248}, {"destination": 1316471891, "path": [[481.06543844994576, 2163.7523056767805], [491.1654384471831, 2206.9523056771345]], "source": 1316471930, "length": 9.79768615250641}, {"destination": 1320103646, "path": [[481.06543844994576, 2163.7523056767805], [548.1154384483489, 2145.2523056773034]], "source": 1316471930, "length": 13.398682533502315}, {"destination": 1316472014, "path": [[481.06543844994576, 2163.7523056767805], [478.8654384455526, 2154.302305678257], [505.66543844610123, 2108.402305676549], [499.2154384453329, 2090.552305677562]], "source": 1316471930, "length": 17.707239558643565}, {"destination": 1316471891, "path": [[326.71543844742246, 2256.90230567821], [438.6154384476981, 2223.102305677571], [491.1654384471831, 2206.9523056771345]], "source": 1316471931, "length": 33.18993442034294}, {"destination": 1316471805, "path": [[326.71543844742246, 2256.90230567821], [351.41543844474654, 2311.752305677928]], "source": 1316471931, "length": 13.071130071575501}, {"destination": 1316471975, "path": [[326.71543844742246, 2256.90230567821], [307.41543844925445, 2214.002305677809]], "source": 1316471931, "length": 10.221773403048852}, {"destination": 3356046288, "path": [[3439.015438445381, 1669.9523056775688], [3836.415438449592, 1755.7023056777866], [4106.065438449491, 1796.8023056766924], [4623.865438446728, 1655.302305676898], [5082.86543844605, 1491.5523056782122], [5417.315438450032, 1346.5023056777882], [6041.915438444789, 1080.5023056779105], [6160.31543844997, 1033.1023056782128], [6339.915438445587, 967.2523056778459]], "source": 602393450, "length": 594.0397888059122}, {"destination": 602393484, "path": [[3439.015438445381, 1669.9523056775688], [3830.465438447561, 1778.6523056777526], [4049.9654384476003, 1833.7523056768391]], "source": 602393450, "length": 121.77733316943181}, {"destination": 1320104089, "path": [[3278.4154384444264, 1982.3023056773081], [3285.765438448607, 1780.1523056775181]], "source": 1316471934, "length": 44.977758744998326}, {"destination": 1316471756, "path": [[3278.4154384444264, 1982.3023056773081], [3143.6154384465453, 1971.1523056766823], [3090.8154384476916, 1969.2523056775713]], "source": 1316471934, "length": 35.806197920308904}, {"destination": 1320103645, "path": [[3278.4154384444264, 1982.3023056773081], [3277.5154384481198, 1999.7023056781416], [3275.0154384473262, 2046.4523056773487]], "source": 1316471934, "length": 14.280073315406247}, {"destination": 1316471945, "path": [[2760.1654384454832, 1543.052305677861], [2776.4154384470885, 1439.8523056780023]], "source": 1316471935, "length": 23.157824722762545}, {"destination": 1320103571, "path": [[2760.1654384454832, 1543.052305677861], [2887.465438448089, 1599.2023056767835], [2994.7654384443467, 1642.8023056782592], [2984.315438446572, 1689.9523056768116]], "source": 1316471935, "length": 60.505097855733055}, {"destination": 1320104015, "path": [[2760.1654384454832, 1543.052305677861], [2748.8654384484335, 1614.6523056779215]], "source": 1316471935, "length": 16.0676641198815}, {"destination": 2001675426, "path": [[10809.265438446402, 3862.002305677237], [10669.565438448102, 3876.0523056780016], [10594.665438446782, 3807.4523056774724], [10541.76543844676, 3543.2023056767293], [10444.765438442972, 3300.0023056768414], [10258.115438446679, 2800.102305677399], [10037.815438444397, 2371.102305676942], [9919.415438446322, 2137.402305677938]], "source": 2001675397, "length": 441.9345752432912}, {"destination": 4867879883, "path": [[10809.265438446402, 3862.002305677237], [10781.815438448917, 3767.352305677818]], "source": 2001675397, "length": 21.686876888505275}, {"destination": 4867879887, "path": [[10809.265438446402, 3862.002305677237], [10841.11543844557, 3938.0023056772015]], "source": 2001675397, "length": 17.954094942438445}, {"destination": 618426817, "path": [[11683.815438445323, 3777.2523056780474], [11844.265438448076, 4286.802305676573], [11952.315438449546, 4634.202305677349], [12034.265438444436, 4934.452305677794], [12069.165438447271, 5210.502305677877], [12066.865438448815, 5565.152305678112], [11916.865438443836, 5973.552305677643], [11659.915438443135, 6461.202305677815]], "source": 2001675399, "length": 620.6395403243813}, {"destination": 4867879887, "path": [[11683.815438445323, 3777.2523056780474], [10918.515438447685, 3955.352305677451], [10848.765438446151, 3956.2023056767257], [10841.11543844557, 3938.0023056772015]], "source": 2001675399, "length": 168.41095633127523}, {"destination": 115006151, "path": [[11683.815438445323, 3777.2523056780474], [11678.415438446165, 3760.1523056771666], [11663.765438449047, 3713.6523056773285]], "source": 2001675399, "length": 14.649580895721083}, {"destination": 1316471935, "path": [[2776.4154384470885, 1439.8523056780023], [2760.1654384454832, 1543.052305677861]], "source": 1316471945, "length": 23.157824722762545}, {"destination": 1316471879, "path": [[2776.4154384470885, 1439.8523056780023], [3122.365438443353, 1569.952305677802], [3167.865438449269, 1587.0023056780979]], "source": 1316471945, "length": 81.31961612403664}, {"destination": 1320103936, "path": [[1895.7654384479383, 2650.252305677725], [1901.8154384440322, 2675.9523056778535]], "source": 1316471946, "length": 5.829066453005973}, {"destination": 1320104043, "path": [[1895.7654384479383, 2650.252305677725], [1875.365438444021, 2573.7023056766616]], "source": 1316471946, "length": 17.46037848532493}, {"destination": 1316471709, "path": [[1895.7654384479383, 2650.252305677725], [1830.7154384444857, 2652.0523056774437], [1653.6654384466942, 2665.8023056782554]], "source": 1316471946, "length": 46.18804669471809}, {"destination": 1316471848, "path": [[1062.5154384484858, 2907.9023056777232], [1212.3654384481597, 2846.302305677284]], "source": 1316471947, "length": 31.62048284904882}, {"destination": 1316471697, "path": [[1062.5154384484858, 2907.9023056777232], [1015.31543844402, 2927.30230567706], [964.4654384430851, 2940.152305678012]], "source": 1316471947, "length": 20.043361225437998}, {"destination": 1316471874, "path": [[1062.5154384484858, 2907.9023056777232], [1130.6154384485012, 3014.4523056776507]], "source": 1316471947, "length": 27.00424973630304}, {"destination": 1887854524, "path": [[-4011.034561550275, -7817.347694322408], [-3982.1345615536075, -7713.997694322572]], "source": 1887854544, "length": 23.6314867150227}, {"destination": 1316471958, "path": [[1265.4154384463823, 3114.10230567688], [1299.6154384481429, 3163.552305677442], [1329.1154384447168, 3239.2523056774535], [1345.2154384481219, 3287.402305677034], [1379.3654384457454, 3303.202305676933]], "source": 1316471949, "length": 49.044031263881834}, {"destination": 1316472160, "path": [[291.9154384457556, 4520.352305677377], [406.46543844502503, 4480.102305677747], [461.2154384489031, 4462.702305676913]], "source": 1316471951, "length": 34.66181225204826}, {"destination": 1316471921, "path": [[291.9154384457556, 4520.352305677377], [261.61543844693824, 4569.552305676794], [289.1154384485617, 4597.0523056766415]], "source": 1316471951, "length": 20.41355348532258}, {"destination": 1316472002, "path": [[291.9154384457556, 4520.352305677377], [283.3654384488682, 4483.352305676646]], "source": 1316471951, "length": 8.387157238120889}, {"destination": 1316471914, "path": [[2764.0654384484264, 2026.1023056775684], [2758.5654384481018, 2104.202305677205]], "source": 1316471952, "length": 17.399880360655533}, {"destination": 1316471693, "path": [[2764.0654384484264, 2026.1023056775684], [2769.4654384475825, 1950.1523056781878]], "source": 1316471952, "length": 16.921957823061074}, {"destination": 1316471741, "path": [[2764.0654384484264, 2026.1023056775684], [2925.0154384499183, 2035.0023056767695]], "source": 1316471952, "length": 30.67340157246344}, {"destination": 1316471862, "path": [[-1377.9845615502495, 4021.052305677841], [-1328.9345615561388, 4088.9023056767114]], "source": 1316471954, "length": 17.739975333990724}, {"destination": 1316472038, "path": [[-1377.9845615502495, 4021.052305677841], [-1433.484561552234, 3944.152305678017]], "source": 1316471954, "length": 20.096958729581182}, {"destination": 1316471853, "path": [[-1377.9845615502495, 4021.052305677841], [-1475.9345615544817, 4069.4023056779824]], "source": 1316471954, "length": 21.509528199222736}, {"destination": 1317670816, "path": [[2061.715438443912, 461.3523056775648], [2256.3654384484266, 447.80230567731394]], "source": 1317671107, "length": 37.13977967347295}, {"destination": 1317671401, "path": [[2061.715438443912, 461.3523056775648], [2064.1154384435367, 498.2023056765428]], "source": 1317671107, "length": 8.208484409819945}, {"destination": 1317670845, "path": [[2061.715438443912, 461.3523056775648], [1975.665438443741, 459.0023056767478]], "source": 1317671107, "length": 16.3729907904137}, {"destination": 1317671357, "path": [[2061.715438443912, 461.3523056775648], [2058.515438449149, 411.15230567712047]], "source": 1317671107, "length": 11.180637368923746}, {"destination": 1320103937, "path": [[1379.3654384457454, 3303.202305676933], [1503.6154384446832, 3271.3023056771817], [1567.965438447061, 3252.952305677681]], "source": 1316471958, "length": 37.57318216178859}, {"destination": 476554810, "path": [[1379.3654384457454, 3303.202305676933], [1394.9154384462759, 3230.052305676523], [1399.215438446788, 3175.002305678021], [1322.5154384457483, 3072.9023056768056]], "source": 1316471958, "length": 55.79246881412992}, {"destination": 1316471949, "path": [[1379.3654384457454, 3303.202305676933], [1345.2154384481219, 3287.402305677034], [1329.1154384447168, 3239.2523056774535], [1299.6154384481429, 3163.552305677442], [1265.4154384463823, 3114.10230567688]], "source": 1316471958, "length": 49.04403126388183}, {"destination": 1316472177, "path": [[779.2654384459752, 2087.8023056774], [690.765438449148, 2115.3023056772467]], "source": 1316471960, "length": 17.907349224747716}, {"destination": 1316472146, "path": [[1508.8154384486074, 1934.1023056771432], [1278.1654384497187, 1963.902305677223], [1272.165438443551, 1898.252305677417]], "source": 1316471961, "length": 59.00728122837187}, {"destination": 1316471746, "path": [[2428.5154384457996, 2268.302305678205], [2317.1154384442616, 2273.8523056773374]], "source": 1316471962, "length": 21.222263229028833}, {"destination": 1316471700, "path": [[2428.5154384457996, 2268.302305678205], [2501.465438449202, 2264.7023056769913]], "source": 1316471962, "length": 13.89693896709908}, {"destination": 1316471734, "path": [[2428.5154384457996, 2268.302305678205], [2415.415438449031, 2087.8023056774]], "source": 1316471962, "length": 40.21879943718479}, {"destination": 479283552, "path": [[-2652.534561555342, -2578.44769432225], [-2944.3845615517716, -2441.947694322266]], "source": 479282332, "length": 63.25813632958326}, {"destination": 479282364, "path": [[-2652.534561555342, -2578.44769432225], [-2445.2845615527963, -2063.74769432216]], "source": 479282332, "length": 121.0590185821891}, {"destination": 479283989, "path": [[-2652.534561555342, -2578.44769432225], [-2458.38456155667, -2662.59769432331]], "source": 479282332, "length": 41.39195725617198}, {"destination": 620136803, "path": [[4614.415438446429, -7037.997694322229], [4656.065438446432, -7063.99769432231], [4702.2654384463185, -7083.697694323377], [4751.615438443934, -7096.497694321968], [4802.8154384454065, -7102.097694323462], [4854.365438447417, -7100.297694321966], [4904.815438443677, -7091.197694322204], [4952.815438443281, -7074.997694322959], [4996.965438444078, -7052.147694322386], [5036.065438446258, -7023.3476943233345], [5068.965438447038, -6989.397694322719], [5094.765438443005, -6951.197694322175]], "source": 1785693343, "length": 107.9092166126275}, {"destination": 1785693357, "path": [[4614.415438446429, -7037.997694322229], [4575.815438442987, -7003.747694323437], [4545.115438446601, -6964.097694321936], [4523.21543844647, -6920.3476943222595], [4510.865438447809, -6873.997694322398], [4508.515438445215, -6826.447694322724]], "source": 1785693343, "length": 52.890619288145956}, {"destination": 1769172179, "path": [[4614.415438446429, -7037.997694322229], [4510.065438445565, -7096.747694323113], [4493.515438447559, -7103.797694322012], [4484.36543844366, -7090.647694322883]], "source": 1785693343, "length": 30.67793313030367}, {"destination": 1316471873, "path": [[1326.465438445723, 1569.4023056767037], [1355.9654384494024, 1658.8523056775273]], "source": 1316471968, "length": 20.668470514766877}, {"destination": 1316471739, "path": [[1326.465438445723, 1569.4023056767037], [1374.7154384446958, 1551.052305677203], [1468.6154384477845, 1509.7523056777363]], "source": 1316471968, "length": 30.12334313889826}, {"destination": 1316471900, "path": [[1326.465438445723, 1569.4023056767037], [1198.3154384438421, 1562.9023056771275]], "source": 1316471968, "length": 24.41410043507409}, {"destination": 1316471713, "path": [[928.3654384475426, 3438.3523056771282], [940.215438447467, 3457.1523056765586], [991.1654384495705, 3617.7023056769285]], "source": 1316471969, "length": 41.74689442107645}, {"destination": 1316472026, "path": [[928.3654384475426, 3438.3523056771282], [902.7654384468065, 3397.5523056781753]], "source": 1316471969, "length": 10.297322085892379}, {"destination": 1316471868, "path": [[928.3654384475426, 3438.3523056771282], [1055.4654384478113, 3412.152305678262]], "source": 1316471969, "length": 24.864929015454152}, {"destination": 2001675427, "path": [[9919.415438446322, 2137.402305677938], [9999.265438445093, 2120.2523056782497]], "source": 2001675426, "length": 15.657440375257947}, {"destination": 2001675397, "path": [[9919.415438446322, 2137.402305677938], [10037.815438444397, 2371.102305676942], [10258.115438446679, 2800.102305677399], [10444.765438442972, 3300.0023056768414], [10541.76543844676, 3543.2023056767293], [10594.665438446782, 3807.4523056774724], [10669.565438448102, 3876.0523056780016], [10809.265438446402, 3862.002305677237]], "source": 2001675426, "length": 441.93457524329114}, {"destination": 2001675430, "path": [[9919.415438446322, 2137.402305677938], [9873.665438448143, 2044.852305678191]], "source": 2001675426, "length": 22.345751882843125}, {"destination": 4867879849, "path": [[9999.265438445093, 2120.2523056782497], [10045.06543844741, 2145.40230567728], [10056.815438446165, 2208.852305678022], [10133.965438448911, 2345.352305678006], [10284.115438444986, 2633.2023056774287], [10416.665438448546, 2947.502305676863], [10551.465438446428, 3318.6523056780716], [10638.615438445242, 3311.652305677981], [10692.865438443278, 3462.552305677491], [10711.16543844397, 3525.1523056771816]], "source": 2001675427, "length": 355.29005468783964}, {"destination": 2001675426, "path": [[9999.265438445093, 2120.2523056782497], [9919.415438446322, 2137.402305677938]], "source": 2001675427, "length": 15.657440375257947}, {"destination": 4867879894, "path": [[9999.265438445093, 2120.2523056782497], [10009.815438444037, 2118.502305677339]], "source": 2001675427, "length": 2.044971791072925}, {"destination": 2001675431, "path": [[9999.265438445093, 2120.2523056782497], [9983.865438449868, 2027.602305677334]], "source": 2001675427, "length": 20.81144045666252}, {"destination": 482731178, "path": [[-1758.13456155538, 5816.302305676757], [-1675.184561555909, 6180.052305676753]], "source": 482731172, "length": 82.41850031737103}, {"destination": 654393155, "path": [[-1758.13456155538, 5816.302305676757], [-1925.1845615499974, 5851.902305677115], [-2194.6345615546647, 5951.702305678097]], "source": 482731172, "length": 88.59120387756337}, {"destination": 482731179, "path": [[-1758.13456155538, 5816.302305676757], [-1891.1345615535424, 5541.052305677141]], "source": 482731172, "length": 66.23364175327751}, {"destination": 481500495, "path": [[-1758.13456155538, 5816.302305676757], [-1397.6345615560604, 5897.0523056771635], [-1238.8345615548246, 5915.402305676665], [-1161.5845615509102, 5908.052305677813], [-1075.7845615501083, 5853.002305677535], [-923.5845615549465, 5737.702305676607]], "source": 482731172, "length": 175.21042190869315}, {"destination": 2001675426, "path": [[9873.665438448143, 2044.852305678191], [9919.415438446322, 2137.402305677938]], "source": 2001675430, "length": 22.345751882843125}, {"destination": 4867879898, "path": [[9873.665438448143, 2044.852305678191], [9795.865438448458, 1881.9523056770038], [9764.26543844866, 1729.0523056772145], [9671.765438447721, 1562.202305677829], [9710.8654384499, 1543.30230567723], [9732.265438444188, 1534.6523056773976], [9760.215438447518, 1526.252305676934], [9616.565438449243, 1261.702305678014], [9358.915438447468, 830.2523056773481], [9232.365438442968, 646.9023056769885], [9145.215438444155, 458.55230567681815], [9015.365438443723, 273.0023056773945], [8991.115438448105, 213.00230567788958], [8969.065438449776, 158.50230567693302], [9016.315438444166, 66.90230567762967]], "source": 2001675430, "length": 495.6994248613731}, {"destination": 2001675431, "path": [[9873.665438448143, 2044.852305678191], [9983.865438449868, 2027.602305677334]], "source": 2001675430, "length": 21.30576153649599}, {"destination": 1316471898, "path": [[307.41543844925445, 2214.002305677809], [112.46543844833923, 2272.202305677595]], "source": 1316471975, "length": 39.27000447052023}, {"destination": 1316471931, "path": [[307.41543844925445, 2214.002305677809], [326.71543844742246, 2256.90230567821]], "source": 1316471975, "length": 10.221773403048852}, {"destination": 1316471740, "path": [[307.41543844925445, 2214.002305677809], [277.9154384455751, 2148.352305678003]], "source": 1316471975, "length": 15.640450366444314}, {"destination": 4867862906, "path": [[10072.315438449663, 2015.9523056779703], [10104.26543845, 2010.8523056769911]], "source": 2001675432, "length": 6.181747467943469}, {"destination": 4867879894, "path": [[10072.315438449663, 2015.9523056779703], [10048.615438449815, 2076.8023056767506], [10009.815438444037, 2118.502305677339]], "source": 2001675432, "length": 26.114050241382547}, {"destination": 2001675431, "path": [[10072.315438449663, 2015.9523056779703], [9983.865438449868, 2027.602305677334]], "source": 2001675432, "length": 17.019410412061344}, {"destination": 482731178, "path": [[-1663.184561550679, 6252.802305677818], [-1675.184561555909, 6180.052305676753]], "source": 482731177, "length": 16.339102204911836}, {"destination": 1404152847, "path": [[-1663.184561550679, 6252.802305677818], [-1031.7345615504792, 6187.85230567731]], "source": 482731177, "length": 120.96495280981068}, {"destination": 1785693357, "path": [[4609.715438448347, -6643.647694323462], [4576.415438449999, -6673.797694322303], [4549.015438449544, -6707.997694322287], [4528.265438445089, -6745.497694321756], [4514.665438449583, -6785.297694323233], [4508.515438445215, -6826.447694322724]], "source": 1785693354, "length": 46.11409632723528}, {"destination": 3344153901, "path": [[4609.715438448347, -6643.647694323462], [4503.165438443091, -6586.397694322343], [4471.865438446798, -6633.547694322672]], "source": 1785693354, "length": 35.98523739243173}, {"destination": 1785693367, "path": [[4609.715438448347, -6643.647694323462], [4622.36543844341, -6634.397694321948], [4635.615438445484, -6625.747694322115]], "source": 1785693354, "length": 6.334403638424227}, {"destination": 1316471921, "path": [[319.16543844801026, 4648.40230567809], [289.1154384485617, 4597.0523056766415]], "source": 1316471979, "length": 12.77013899503848}, {"destination": 1316471884, "path": [[319.16543844801026, 4648.40230567809], [402.1654384445128, 4790.002305677277]], "source": 1316471979, "length": 35.22552310218704}, {"destination": 1316471772, "path": [[319.16543844801026, 4648.40230567809], [250.86543844565767, 4663.602305678083], [245.51543844353318, 4645.252305676806], [178.46543844513008, 4663.602305678083]], "source": 1316471979, "length": 31.01691639680275}, {"destination": 1316472141, "path": [[319.16543844801026, 4648.40230567809], [433.26543844557364, 4622.30230567684], [452.065438445004, 4640.652305678117], [540.015438446062, 4622.7523056767695]], "source": 1316471979, "length": 45.08360013168854}, {"destination": 483108104, "path": [[-2519.7845615565484, 5922.502305677924], [-2611.8345615557814, 5946.452305677141]], "source": 482731180, "length": 18.299651051548373}, {"destination": 482732359, "path": [[-2519.7845615565484, 5922.502305677924], [-2631.084561556918, 5422.652305677289], [-2678.2845615542783, 5268.502305677103], [-2806.484561553191, 4985.002305677]], "source": 482731180, "length": 216.1947016993288}, {"destination": 1785693354, "path": [[4508.515438445215, -6826.447694322724], [4514.665438449583, -6785.297694323233], [4528.265438445089, -6745.497694321756], [4549.015438449544, -6707.997694322287], [4576.415438449999, -6673.797694322303], [4609.715438448347, -6643.647694323462]], "source": 1785693357, "length": 46.11409632723529}, {"destination": 3344153899, "path": [[4508.515438445215, -6826.447694322724], [4389.1654384466965, -6784.947694322696], [4388.815438446159, -6758.347694322709]], "source": 1785693357, "length": 30.415034334800048}, {"destination": 1785693343, "path": [[4508.515438445215, -6826.447694322724], [4510.865438447809, -6873.997694322398], [4523.21543844647, -6920.3476943222595], [4545.115438446601, -6964.097694321936], [4575.815438442987, -7003.747694323437], [4614.415438446429, -7037.997694322229]], "source": 1785693357, "length": 52.890619288145956}, {"destination": 1785693356, "path": [[4793.865438443845, -6576.447694323307], [4761.065438444234, -6579.997694322159], [4728.9154384486665, -6586.54769432232]], "source": 1785693361, "length": 12.56953706676316}, {"destination": 3344153900, "path": [[4793.865438443845, -6576.447694323307], [4772.715438448927, -6463.747694322564], [4825.76543844715, -6461.897694322261]], "source": 1785693361, "length": 35.47952598683112}, {"destination": 620136814, "path": [[4793.865438443845, -6576.447694323307], [4837.565438450042, -6576.397694322722], [4880.86543844446, -6581.647694321901], [4922.865438445001, -6592.097694323229]], "source": 1785693361, "length": 24.94183303165335}, {"destination": 1316471715, "path": [[-1386.634561555411, 4192.85230567823], [-1426.2845615533593, 4138.05230567732]], "source": 1316471988, "length": 14.331477478263329}, {"destination": 1316471716, "path": [[-1386.634561555411, 4192.85230567823], [-1340.8345615530948, 4256.102305676634]], "source": 1316471988, "length": 16.544933538593714}, {"destination": 1316471862, "path": [[-1386.634561555411, 4192.85230567823], [-1289.2345615540535, 4144.952305678018], [-1328.9345615561388, 4088.9023056767114]], "source": 1316471988, "length": 35.94234845378807}, {"destination": 1316471695, "path": [[-1386.634561555411, 4192.85230567823], [-1493.5345615540996, 4258.302305677475]], "source": 1316471988, "length": 25.004269927410064}, {"destination": 1316471801, "path": [[2493.215438448715, 1791.9023056780502], [2404.6654384477506, 1803.3523056768531], [2399.315438445626, 1826.302305676819], [2313.515438444824, 1826.302305676819], [2305.1654384431686, 1733.452305677119]], "source": 1316471990, "length": 59.26424725604575}, {"destination": 1316472166, "path": [[2493.215438448715, 1791.9023056780502], [2492.915438445209, 1883.5023056773537]], "source": 1316471990, "length": 20.371117507857278}, {"destination": 1316472103, "path": [[2493.215438448715, 1791.9023056780502], [2495.8654384477086, 1729.9523056770738]], "source": 1316471990, "length": 13.786572999187776}, {"destination": 1785693354, "path": [[4635.615438445484, -6625.747694322115], [4622.36543844341, -6634.397694321948], [4609.715438448347, -6643.647694323462]], "source": 1785693367, "length": 6.334403638424227}, {"destination": 1785693356, "path": [[4635.615438445484, -6625.747694322115], [4664.915438446826, -6609.697694322847], [4696.165438446087, -6596.547694321942], [4728.9154384486665, -6586.54769432232]], "source": 1785693367, "length": 19.853534345875076}, {"destination": 1776086159, "path": [[4635.615438445484, -6625.747694322115], [4609.565438443042, -6601.047694323014], [4639.965438443028, -6578.397694323002]], "source": 1785693367, "length": 15.06332005568365}, {"destination": 1316471728, "path": [[1957.3654384430483, 1272.7523056774714], [2056.3154384447557, 1284.1023056768818], [2180.7654384460307, 1303.0523056780653]], "source": 1316471992, "length": 43.026467694575864}, {"destination": 1320104116, "path": [[1957.3654384430483, 1272.7523056774714], [1971.3654384432289, 1380.652305677188]], "source": 1316471992, "length": 24.143295505074363}, {"destination": 1316472172, "path": [[674.8154384439431, 3175.052305676829], [617.6154384434085, 3068.9523056768307]], "source": 1316471993, "length": 25.982320611313767}, {"destination": 1316471757, "path": [[674.8154384439431, 3175.052305676829], [791.6654384487742, 3391.8023056767056]], "source": 1316471993, "length": 53.079095402390905}, {"destination": 1316472006, "path": [[674.8154384439431, 3175.052305676829], [704.1654384494223, 3175.002305678021], [846.3154384443783, 3133.752305677362], [883.8654384462075, 3163.552305677442], [955.3154384462914, 3141.1023056779895]], "source": 1316471993, "length": 58.34972141952443}, {"destination": 1316471816, "path": [[1118.3654384439023, 3926.352305677838], [1291.565438449993, 3908.902305678197]], "source": 1316471994, "length": 33.168217306264786}, {"destination": 1316471850, "path": [[1118.3654384439023, 3926.352305677838], [1095.7654384498028, 3863.152305678241], [1076.3654384433607, 3817.60230567707]], "source": 1316471994, "length": 25.477610215507347}, {"destination": 1316471797, "path": [[1118.3654384439023, 3926.352305677838], [1154.7654384429507, 4028.202305677908]], "source": 1316471994, "length": 23.68482067730495}, {"destination": 1316471707, "path": [[478.0654384433092, 2593.50230567712], [434.2154384460173, 2495.902305676978]], "source": 1316471995, "length": 23.25220496456806}, {"destination": 1316471773, "path": [[478.0654384433092, 2593.50230567712], [684.1154384460424, 2540.0523056777756]], "source": 1316471995, "length": 40.95008802433264}, {"destination": 1316472134, "path": [[478.0654384433092, 2593.50230567712], [440.5154384485854, 2603.2523056773725]], "source": 1316471995, "length": 7.463156846047278}, {"destination": 714081275, "path": [[4192.515438447231, 8437.652305676835], [4339.515438445574, 8484.552305677795], [4740.315438446885, 8611.80230567804], [4808.765438447437, 8642.452305677394], [4874.365438446659, 8683.002305676979], [4917.865438443414, 8714.952305677314]], "source": 4402078908, "length": 152.15707193866945}, {"destination": 4402078150, "path": [[4192.515438447231, 8437.652305676835], [4209.365438448742, 8418.202305676914], [4240.0154384480975, 8377.752305676722], [4262.465438443996, 8338.402305676951]], "source": 4402078908, "length": 25.840314673590278}, {"destination": 2001675432, "path": [[9983.865438449868, 2027.602305677334], [10072.315438449663, 2015.9523056779703]], "source": 2001675431, "length": 17.019410412061344}, {"destination": 2001675427, "path": [[9983.865438449868, 2027.602305677334], [9999.265438445093, 2120.2523056782497]], "source": 2001675431, "length": 20.81144045666252}, {"destination": 2001675430, "path": [[9983.865438449868, 2027.602305677334], [9873.665438448143, 2044.852305678191]], "source": 2001675431, "length": 21.30576153649599}, {"destination": 1316472130, "path": [[-1433.534561556371, 4335.552305677837], [-1451.134561555989, 4312.902305677824]], "source": 1316471998, "length": 6.0476180234419905}, {"destination": 4402078908, "path": [[3963.815438446261, 8520.75230567806], [4021.8654384460706, 8499.402305677251], [4130.465438443309, 8462.052305677758], [4192.515438447231, 8437.652305676835]], "source": 4402078911, "length": 47.27257523807567}, {"destination": 4402078150, "path": [[3963.815438446261, 8520.75230567806], [4064.8654384440874, 8470.552305677615], [4135.665438447233, 8434.902305676673], [4193.015438445968, 8394.802305677018], [4262.465438443996, 8338.402305676951]], "source": 4402078911, "length": 70.15921228806391}, {"destination": 1316471705, "path": [[283.3654384488682, 4483.352305676646], [124.81543844700127, 4532.852305677792]], "source": 1316472002, "length": 32.10081288625119}, {"destination": 1316472118, "path": [[283.3654384488682, 4483.352305676646], [256.86543844472, 4420.752305676956]], "source": 1316472002, "length": 14.805971232521562}, {"destination": 1316471951, "path": [[283.3654384488682, 4483.352305676646], [291.9154384457556, 4520.352305677377]], "source": 1316472002, "length": 8.387157238120889}, {"destination": 1316471993, "path": [[955.3154384462914, 3141.1023056779895], [883.8654384462075, 3163.552305677442], [846.3154384443783, 3133.752305677362], [704.1654384494223, 3175.002305678021], [674.8154384439431, 3175.052305676829]], "source": 1316472006, "length": 58.349721419524435}, {"destination": 1316471851, "path": [[955.3154384462914, 3141.1023056779895], [918.7654384490429, 3074.102305676618], [870.4654384459332, 2964.0023056778373]], "source": 1316472006, "length": 42.59339401902531}, {"destination": 1316471919, "path": [[955.3154384462914, 3141.1023056779895], [1012.6154384479946, 3246.1023056775675], [1054.7154384497048, 3357.25230567796]], "source": 1316472006, "length": 51.75181905460616}, {"destination": 75355692, "path": [[-87.78456155056347, -2499.5976943227306], [183.71543844608595, -2509.9976943234738]], "source": 152847559, "length": 51.68055077139086}, {"destination": 75355694, "path": [[-87.78456155056347, -2499.5976943227306], [-316.33456155333306, -2526.047694322742]], "source": 152847559, "length": 43.85749819472635}, {"destination": 481385214, "path": [[-87.78456155056347, -2499.5976943227306], [-128.53456155426102, -2368.7476943230477], [-172.98456155145914, -2138.3476943217515]], "source": 152847559, "length": 82.04508561974757}, {"destination": 1316471899, "path": [[2697.3154384464237, 1941.752305677724], [2707.915438449504, 1874.4023056775916]], "source": 1316472009, "length": 15.112933612995686}, {"destination": 1316471693, "path": [[2697.3154384464237, 1941.752305677724], [2769.4654384475825, 1950.1523056781878]], "source": 1316472009, "length": 13.848212961091564}, {"destination": 1316471926, "path": [[2697.3154384464237, 1941.752305677724], [2683.5154384485804, 2029.2023056782682]], "source": 1316472009, "length": 19.62432726341208}, {"destination": 1320104059, "path": [[1567.965438447061, 2451.7023056773724], [1562.1154384461988, 2284.102305678104]], "source": 1316472011, "length": 37.28908604413799}, {"destination": 1320104101, "path": [[1567.965438447061, 2451.7023056773724], [1707.5154384471602, 2447.652305678005]], "source": 1316472011, "length": 26.555122118588642}, {"destination": 1320103661, "path": [[1567.965438447061, 2451.7023056773724], [1599.8154384462282, 2515.352305676899]], "source": 1316472011, "length": 15.396525231487281}, {"destination": 476556639, "path": [[1567.965438447061, 2451.7023056773724], [1440.3154384439176, 2481.2523056780833]], "source": 1316472011, "length": 25.15018601221071}, {"destination": 1316471872, "path": [[660.9654384490682, 1970.9523056778976], [704.1654384494223, 1961.6023056769905], [880.8654384466763, 1925.752305677264]], "source": 1316472013, "length": 43.01279985305237}, {"destination": 1316471724, "path": [[660.9654384490682, 1970.9523056778976], [470.8154384474028, 2012.102305677388]], "source": 1316472013, "length": 37.30261873473026}, {"destination": 1316471727, "path": [[660.9654384490682, 1970.9523056778976], [674.6654384457429, 2030.4523056768885], [673.3154384477302, 2048.652305678189]], "source": 1316472013, "length": 17.542156348459784}, {"destination": 1316471740, "path": [[499.2154384453329, 2090.552305677562], [277.9154384455751, 2148.352305678003]], "source": 1316472014, "length": 44.00602901887579}, {"destination": 1316471930, "path": [[499.2154384453329, 2090.552305677562], [505.66543844610123, 2108.402305676549], [478.8654384455526, 2154.302305678257], [481.06543844994576, 2163.7523056767805]], "source": 1316472014, "length": 17.707239558643565}, {"destination": 1316471724, "path": [[499.2154384453329, 2090.552305677562], [470.8154384474028, 2012.102305677388]], "source": 1316472014, "length": 18.26366253285349}, {"destination": 1316471727, "path": [[499.2154384453329, 2090.552305677562], [673.3154384477302, 2048.652305678189]], "source": 1316472014, "length": 34.3966412244998}, {"destination": 1316623520, "path": [[2691.7154384449304, -1357.347694321831], [2506.6654384460207, -1302.2976943233289], [2461.0654384460418, -1306.8976943220177], [2407.415438447913, -1327.5476943217514]], "source": 1316623297, "length": 57.179673542738556}, {"destination": 1316623734, "path": [[2691.7154384449304, -1357.347694321831], [2568.315438445268, -1446.7976943226545], [2533.715438445938, -1471.447694322947]], "source": 1316623297, "length": 39.32715599576029}, {"destination": 1316623375, "path": [[2691.7154384449304, -1357.347694321831], [2718.4154384443104, -1315.697694321827]], "source": 1316623297, "length": 10.562606790296838}, {"destination": 103781196, "path": [[-1330.1345615559512, -8118.147694322175], [-1339.1845615515763, -8103.397694322112], [-1345.8845615517134, -8088.497694322072], [-1355.7345615566874, -8065.497694323298], [-1367.8345615559806, -8007.047694322367], [-1387.7345615540548, -7909.04769432288], [-1389.7345615561107, -7899.247694322043], [-1409.234561556616, -7776.247694321725], [-1445.9345615520647, -7520.297694322054]], "source": 1883276500, "length": 135.18172462283343}, {"destination": 1883305150, "path": [[-1330.1345615559512, -8118.147694322175], [-938.5845615526023, -8110.647694323347]], "source": 1883276500, "length": 74.4675126797819}, {"destination": 103831022, "path": [[-1330.1345615559512, -8118.147694322175], [-1608.2845615557062, -8119.847694322501], [-1743.2845615559245, -8122.497694323272]], "source": 1883276500, "length": 78.56392185286958}, {"destination": 3724314425, "path": [[-8086.684561554592, 2162.852305676921], [-8088.684561556647, 2189.8523056780305], [-8080.6845615555285, 2216.8023056767793], [-8080.58456155436, 2217.1023056767326]], "source": 1462576341, "length": 12.33516209834635}, {"destination": 2629533650, "path": [[-8086.684561554592, 2162.852305676921], [-7896.2345615565255, 2117.8023056780403], [-7988.334561552791, 1854.8023056776942], [-8046.684561556105, 1698.8523056777894]], "source": 1462576341, "length": 135.04837654719873}, {"destination": 2629533646, "path": [[-8086.684561554592, 2162.852305676921], [-8120.984561550415, 2048.5023056782125], [-8135.284561554101, 2008.8023056779036], [-8227.484561551535, 1761.8023056780175]], "source": 1462576341, "length": 93.1534064871602}, {"destination": 477636580, "path": [[-7952.43456155248, -6478.997694323141], [-7904.734561556381, -6490.297694321967], [-7655.634561551495, -6574.347694321858]], "source": 477635800, "length": 60.33202986924857}, {"destination": 477633764, "path": [[-7952.43456155248, -6478.997694323141], [-7901.084561552807, -6247.897694322546]], "source": 477635800, "length": 52.313644170906514}, {"destination": 476559394, "path": [[-357.1345615540622, 4970.202305678129], [-474.58456155169415, 4652.152305677504]], "source": 481498557, "length": 74.17465152300737}, {"destination": 1404036994, "path": [[-357.1345615540622, 4970.202305678129], [-456.38456155217, 4990.2523056779555], [-561.7845615546457, 5009.302305676755]], "source": 481498557, "length": 39.88479698456595}, {"destination": 476559990, "path": [[-357.1345615540622, 4970.202305678129], [-132.33456155603562, 4905.402305677598], [206.96543844422877, 4831.202305677351]], "source": 481498557, "length": 111.72645723210071}, {"destination": 654397600, "path": [[-2541.984561553079, 4842.702305676738], [-2136.6845615560237, 4624.652305677657]], "source": 654394586, "length": 91.06846783292194}, {"destination": 482732359, "path": [[-2541.984561553079, 4842.702305676738], [-2806.484561553191, 4985.002305677]], "source": 654394586, "length": 59.43170359877955}, {"destination": 654393951, "path": [[-2541.984561553079, 4842.702305676738], [-2434.7845615508845, 4975.602305677285], [-2391.8845615540363, 5026.102305677682], [-2391.8845615540363, 5062.802305676683], [-2440.134561553009, 5081.152305677961], [-2483.0845615539943, 5108.652305677808], [-2477.684561554838, 5140.75230567812], [-2429.4345615558655, 5195.8523056772065], [-2015.5845615548174, 5614.302305676943]], "source": 654394586, "length": 222.6018776619995}, {"destination": 1316471745, "path": [[1690.815438443849, 1722.9523056769835], [1660.915438449706, 1596.952305677135]], "source": 1316472028, "length": 28.592433981646867}, {"destination": 1316471906, "path": [[1690.815438443849, 1722.9523056769835], [1436.4154384480798, 1764.352305677619], [1393.1154384465572, 1778.0523056778463]], "source": 1316472028, "length": 58.029906738304106}, {"destination": 1316471699, "path": [[1690.815438443849, 1722.9523056769835], [1713.9154384437916, 1851.9023056775552]], "source": 1316472028, "length": 29.01174614154088}, {"destination": 1784682703, "path": [[8182.865438449482, -5661.64769432298], [8594.815438449643, -5523.447694322669]], "source": 63298507, "length": 84.14557451602816}, {"destination": 71129881, "path": [[-8012.334561556145, 4116.602305677119], [-8198.53456155073, 3087.4523056780845]], "source": 76482085, "length": 231.59626592120753}, {"destination": 71128708, "path": [[-8012.334561556145, 4116.602305677119], [-8821.984561556917, 4366.652305677121]], "source": 76482085, "length": 163.71936619034574}, {"destination": 1807311606, "path": [[-8012.334561556145, 4116.602305677119], [-7852.984561552034, 4957.85230567769]], "source": 76482085, "length": 189.52455615980512}, {"destination": 1316471848, "path": [[1294.31543844305, 3014.9523056781645], [1212.3654384481597, 2846.302305677284]], "source": 1316472033, "length": 40.615503736804705}, {"destination": 1316471815, "path": [[1294.31543844305, 3014.9523056781645], [1160.1654384492122, 3067.2023056776966]], "source": 1316472033, "length": 28.034579368897475}, {"destination": 1320103892, "path": [[1252.415438443677, 2170.002305676988], [1264.9654384446762, 2168.0023056767086]], "source": 1316472035, "length": 2.4278240291168594}, {"destination": 1320104070, "path": [[1252.415438443677, 2170.002305676988], [1229.2154384496712, 2074.852305677055]], "source": 1316472035, "length": 21.615695070366037}, {"destination": 1316472087, "path": [[1252.415438443677, 2170.002305676988], [1146.9654384441696, 2186.652305677939]], "source": 1316472035, "length": 20.39366881210471}, {"destination": 483103066, "path": [[-4009.8845615545997, 6125.452305678181], [-3912.9345615549482, 6471.802305677344]], "source": 483108069, "length": 79.2013031081826}, {"destination": 1316471916, "path": [[-1433.484561552234, 3944.152305678017], [-1530.4845615560225, 3994.0023056779237]], "source": 1316472038, "length": 21.52293238557483}, {"destination": 1316471954, "path": [[-1433.484561552234, 3944.152305678017], [-1377.9845615502495, 4021.052305677841]], "source": 1316472038, "length": 20.096958729581182}, {"destination": 481498188, "path": [[-1433.484561552234, 3944.152305678017], [-1230.4345615561374, 3834.302305676829], [-1042.9345615534658, 3743.502305677993]], "source": 1316472038, "length": 86.67624506899642}, {"destination": 483099864, "path": [[-704.8845615500454, 3106.552305677468], [-452.3845615551636, 3444.2023056779904]], "source": 483099888, "length": 89.1323892457874}, {"destination": 1316236682, "path": [[-704.8845615500454, 3106.552305677468], [-1000.2345615518493, 3270.602305677883]], "source": 483099888, "length": 66.97894895101373}, {"destination": 1316237212, "path": [[-704.8845615500454, 3106.552305677468], [-659.5845615535723, 3081.4023056766614]], "source": 483099888, "length": 10.271908461299741}, {"destination": 3723332410, "path": [[9115.065438443537, -5564.197694322815], [9110.465438446625, -5590.497694322849]], "source": 1784595697, "length": 5.9134944578099935}, {"destination": 1784595697, "path": [[9551.315438443453, -5302.897694322794], [9386.315438447924, -5357.797694323097], [9317.615438448001, -5379.047694322736], [9273.065438449634, -5396.397694322985], [9244.715438448737, -5410.59769432195], [9205.565438449525, -5439.497694322171], [9184.76543844804, -5456.9976943223965], [9164.61543844349, -5480.147694322924], [9147.665438447915, -5503.197694322282], [9128.965438449653, -5531.147694322059], [9115.065438443537, -5564.197694322815]], "source": 1784595703, "length": 105.9431360105733}, {"destination": 476913948, "path": [[9551.315438443453, -5302.897694322794], [9378.965438443742, -5349.997694322539], [9332.315438449257, -5360.597694322067], [9293.915438448152, -5368.197694322063], [9263.46543844403, -5372.89769432192], [9237.515438449862, -5374.147694322318], [9212.365438443725, -5373.547694322411], [9185.815438449652, -5372.09769432323], [9167.56543844599, -5369.597694322437], [9142.115438443454, -5363.3476943222295], [9110.815438447162, -5352.397694322164], [9090.31543844918, -5338.497694323152], [9079.665438449068, -5328.2476943223855], [9071.265438443277, -5316.997694322367], [9061.715438448915, -5299.147694323381], [9054.065438448333, -5275.797694322293]], "source": 1784595703, "length": 107.47848260963588}, {"destination": 1316471831, "path": [[1565.165438449867, 1450.1523056775768], [1450.7154384446608, 1458.5523056780403]], "source": 1316472056, "length": 21.84587857303063}, {"destination": 495641404, "path": [[2287.0154384477814, -6158.947694322236], [2257.0154384453645, -6224.997694323164]], "source": 495641851, "length": 15.75756593071206}, {"destination": 1316471724, "path": [[360.2654384451398, 2043.602305677794], [470.8154384474028, 2012.102305677388]], "source": 1316472060, "length": 22.16066303756934}, {"destination": 1316471867, "path": [[360.2654384451398, 2043.602305677794], [315.26543844506705, 1943.302305678074], [334.01543844746584, 1908.8523056769445], [712.2154384475721, 1828.6023056770518], [771.2154384478254, 1787.302305677585], [776.5654384499499, 1739.1523056780045], [647.8654384451943, 1413.452305676799], [519.1154384434071, 1376.7523056777975], [478.2654384456464, 1371.002305678104], [430.5654384495483, 1337.752305676787], [424.06543844464295, 1324.9523056781954]], "source": 1316472060, "length": 256.6514023008521}, {"destination": 1316471740, "path": [[360.2654384451398, 2043.602305677794], [325.965438449316, 2053.352305678047], [339.36543844959033, 2085.502305677167], [258.9154384438075, 2106.1523056769006], [277.9154384455751, 2148.352305678003]], "source": 1316472060, "length": 40.49632605787213}, {"destination": 3356022885, "path": [[199.8654384465226, 2665.752305677671], [24.315438444943993, 2297.6023056777703], [11.36543844637572, 2273.0023056780624], [-252.5845615508615, 1771.4523056771013], [-402.534561551704, 1504.902305677902]], "source": 1316472061, "length": 282.51402676149166}, {"destination": 1316472134, "path": [[199.8654384465226, 2665.752305677671], [296.46543844563666, 2640.5523056780567], [440.5154384485854, 2603.2523056773725]], "source": 1316472061, "length": 47.831419544935}, {"destination": 1316471816, "path": [[1313.0154384484172, 4019.0023056769774], [1291.565438449993, 3908.902305678197]], "source": 1316472063, "length": 24.822665598081187}, {"destination": 1316471881, "path": [[2983.7654384436973, 2259.852305677157], [2747.7654384497896, 2256.402305677696]], "source": 1316472064, "length": 44.88910249566408}, {"destination": 1316471722, "path": [[2983.7654384436973, 2259.852305677157], [2989.0654384487902, 2188.652305678218]], "source": 1316472064, "length": 15.866434675547445}, {"destination": 1316471858, "path": [[2983.7654384436973, 2259.852305677157], [3005.5154384456273, 2303.4023056780484], [3029.665438447182, 2342.4023056772826], [3248.815438446684, 2407.2023056778135]], "source": 1316472064, "length": 64.44440723839932}, {"destination": 1315785440, "path": [[-4423.534561553311, -1251.1976943230252], [-4660.1345615542305, -1125.7476943224988]], "source": 1315785600, "length": 52.94095458440175}, {"destination": 1315785337, "path": [[-4423.534561553311, -1251.1976943230252], [-4471.334561550577, -1312.6476943217112]], "source": 1315785600, "length": 16.41257631954604}, {"destination": 601145285, "path": [[-2611.8345615557814, 5946.452305677141], [-2550.484561552935, 6288.902305676913]], "source": 483108104, "length": 77.04628860120263}, {"destination": 483108069, "path": [[-2611.8345615557814, 5946.452305677141], [-2831.0345615523147, 5976.902305677711], [-3042.684561556541, 5958.502305677626], [-3169.5345615503356, 5952.652305676765], [-3322.0345615561087, 5976.652305676566], [-4009.8845615545997, 6125.452305678181]], "source": 483108104, "length": 271.29909726725816}, {"destination": 1320103913, "path": [[2535.265438446288, 1372.0523056779398], [2512.5654384439144, 1508.0523056774098]], "source": 1316472081, "length": 30.551809175102665}, {"destination": 1316471945, "path": [[2535.265438446288, 1372.0523056779398], [2776.4154384470885, 1439.8523056780023]], "source": 1316472081, "length": 48.27623077317121}, {"destination": 1320103625, "path": [[2277.965438445051, 3145.4523056773096], [2277.4154384492817, 3327.652305676665]], "source": 1316472082, "length": 40.519639095121605}, {"destination": 1320103948, "path": [[2277.965438445051, 3145.4523056773096], [2278.565438444957, 2930.802305677105]], "source": 1316472082, "length": 47.73619366832498}, {"destination": 1316471887, "path": [[2277.965438445051, 3145.4523056773096], [2508.165438449339, 3142.002305677849]], "source": 1316472082, "length": 43.78705771754765}, {"destination": 1316471849, "path": [[1053.5154384498924, 1411.9523056770333], [934.8154384483109, 1365.252305676634], [852.715438448115, 1285.8023056772083]], "source": 1316472083, "length": 48.427610094171484}, {"destination": 1316471876, "path": [[1053.5154384498924, 1411.9523056770333], [1103.8154384479526, 1431.802305678076], [1186.4154384468861, 1444.7523056766443]], "source": 1316472083, "length": 26.50602403255065}, {"destination": 1316471918, "path": [[1053.5154384498924, 1411.9523056770333], [1052.8654384458491, 1457.0023056776904], [1070.9654384442047, 1567.7023056781536]], "source": 1316472083, "length": 34.87784666310747}, {"destination": 1320103913, "path": [[2506.615438448989, 1539.602305676624], [2512.5654384439144, 1508.0523056774098]], "source": 1316472084, "length": 7.106854017137291}, {"destination": 1320103954, "path": [[1146.9654384441696, 2186.652305677939], [1171.015438444556, 2273.5523056773845], [1289.0154384450625, 2241.402305678264]], "source": 1316472087, "length": 43.41222954630416}, {"destination": 1316472035, "path": [[1146.9654384441696, 2186.652305677939], [1252.415438443677, 2170.002305676988]], "source": 1316472087, "length": 20.39366881210471}, {"destination": 1316471796, "path": [[1146.9654384441696, 2186.652305677939], [1060.6154384475985, 2200.302305677582]], "source": 1316472087, "length": 16.700542997512468}, {"destination": 1316472149, "path": [[1146.9654384441696, 2186.652305677939], [1125.2654384463767, 2062.552305677201], [1122.615438447383, 2012.102305677388]], "source": 1316472087, "length": 39.13683401863102}, {"destination": 2629549315, "path": [[7233.165438449873, 2397.8523056769063], [7027.865438445247, 2448.152305676743]], "source": 2629549322, "length": 40.6150599266989}, {"destination": 4063114957, "path": [[7233.165438449873, 2397.8523056769063], [7271.665438445041, 2388.402305676607]], "source": 2629549322, "length": 7.617939931566838}, {"destination": 2629549319, "path": [[7233.165438449873, 2397.8523056769063], [7296.215438444165, 2561.252305676831]], "source": 2629549322, "length": 38.265692333958704}, {"destination": 1777869681, "path": [[7259.1154384440415, -8432.547694322779], [7269.515438444785, -8448.397694323263]], "source": 1769172027, "length": 4.042287823226357}, {"destination": 481397312, "path": [[-3922.5845615504795, 494.45230567712883], [-3874.98456155555, 656.7523056766333], [-3818.534561553122, 820.652305677072]], "source": 1315785605, "length": 75.20956124953376}, {"destination": 1315785524, "path": [[-3922.5845615504795, 494.45230567712883], [-4489.284561550732, 632.6023056768548]], "source": 1315785605, "length": 112.06507502825103}, {"destination": 1315785477, "path": [[-3922.5845615504795, 494.45230567712883], [-3954.784561550184, 394.10230567682447], [-3973.4345615514144, 339.502305678252]], "source": 1315785605, "length": 35.791613747578324}, {"destination": 1316196949, "path": [[-2530.5845615548606, 1550.9523056778107], [-2332.0845615515395, 1473.0023056781506], [-2297.234561552841, 1493.6023056772997], [-2246.2845615507376, 1486.7523056771859], [-2203.3845615538894, 1447.7523056779519], [-2141.6845615505054, 1429.4023056766746], [-2096.0845615505264, 1427.1023056782183], [-2066.5845615539524, 1397.3023056781385], [-1967.3345615558446, 1358.302305677128], [-1924.434561551891, 1342.25230567786], [-1884.1845615540365, 1291.802305678047], [-1830.5345615559077, 1294.0523056776954], [-1760.7845615543738, 1268.4023056781512]], "source": 1316196971, "length": 169.02140042882488}, {"destination": 1316471801, "path": [[2495.8654384477086, 1729.9523056770738], [2305.1654384431686, 1733.452305677119]], "source": 1316472103, "length": 36.275398800869944}, {"destination": 1316471990, "path": [[2495.8654384477086, 1729.9523056770738], [2493.215438448715, 1791.9023056780502]], "source": 1316472103, "length": 13.786572999187776}, {"destination": 1316471927, "path": [[2495.8654384477086, 1729.9523056770738], [2517.065438446764, 1670.552305677475]], "source": 1316472103, "length": 13.811392508286888}, {"destination": 1316471872, "path": [[866.7654384453272, 1879.4523056779867], [880.8654384466763, 1925.752305677264]], "source": 1316472107, "length": 10.64039439789024}, {"destination": 476554611, "path": [[866.7654384453272, 1879.4523056779867], [742.6154384475581, 1472.152305677099], [702.4654384437667, 1299.4523056768514]], "source": 1316472107, "length": 132.76467889016115}, {"destination": 1316471799, "path": [[866.7654384453272, 1879.4523056779867], [1240.6154384478896, 1826.302305676819], [1252.3654384466454, 1822.6023056779895]], "source": 1316472107, "length": 74.45705016714268}, {"destination": 1316471699, "path": [[1497.765438443821, 2137.9023056766755], [1492.7154384452024, 2057.9523056767357], [1605.4154384477215, 2046.502305677933], [1573.2154384480168, 1867.6023056780623], [1713.9154384437916, 1851.9023056775552]], "source": 1316472111, "length": 106.62891613194418}, {"destination": 1316471886, "path": [[1497.765438443821, 2137.9023056766755], [1562.7654384431366, 2130.3523056772633]], "source": 1316472111, "length": 12.475252694791836}, {"destination": 1320104078, "path": [[1497.765438443821, 2137.9023056766755], [1434.3154384448553, 2145.3023056778875]], "source": 1316472111, "length": 12.178776649942021}, {"destination": 1316471866, "path": [[-1540.4345615550596, 4197.902305676848], [-1506.2845615503306, 4241.90230567767]], "source": 1316472115, "length": 11.744783033907664}, {"destination": 1316471827, "path": [[-1540.4345615550596, 4197.902305676848], [-1552.3345615520157, 4182.502305678071]], "source": 1316472115, "length": 4.1042422049097596}, {"destination": 1316471715, "path": [[-1540.4345615550596, 4197.902305676848], [-1479.13456155635, 4165.85230567712], [-1426.2845615533593, 4138.05230567732]], "source": 1316472115, "length": 25.464394974517095}, {"destination": 856909116, "path": [[-5265.634561553156, 7905.402305677711], [-4981.684561556676, 7783.6023056772065], [-4938.784561552722, 7756.052305676775], [-4928.034561551442, 7728.552305676928], [-5291.934561554967, 6995.052305677874]], "source": 856909109, "length": 254.27220140263714}, {"destination": 856909198, "path": [[-5265.634561553156, 7905.402305677711], [-5367.934561554932, 7696.402305677808]], "source": 856909109, "length": 50.387914045640855}, {"destination": 623416847, "path": [[-5265.634561553156, 7905.402305677711], [-5174.784561553735, 8091.002305677719], [-5137.234561551906, 8169.002305677964], [-5150.834561554519, 8207.65230567666], [-5321.434561551541, 8277.702305678147], [-5409.13456155323, 8302.252305677272]], "source": 856909109, "length": 126.02850304937687}, {"destination": 1316472002, "path": [[256.86543844472, 4420.752305676956], [283.3654384488682, 4483.352305676646]], "source": 1316472118, "length": 14.805971232521562}, {"destination": 1316237110, "path": [[256.86543844472, 4420.752305676956], [292.61543844683047, 4410.2523056768205]], "source": 1316472118, "length": 7.188812818203106}, {"destination": 2991482170, "path": [[-3420.53456155611, 8182.0523056777], [-3376.2845615541437, 8134.052305678097], [-3278.484561555217, 8027.902305677515]], "source": 2991482169, "length": 43.64865433770072}, {"destination": 601712455, "path": [[-3420.53456155611, 8182.0523056777], [-3447.6845615500906, 8160.402305676939], [-3603.2345615524264, 8050.3023056781585], [-3800.5845615529665, 7871.652305677657]], "source": 2991482169, "length": 100.1214608635606}, {"destination": 2991482169, "path": [[-3278.484561555217, 8027.902305677515], [-3376.2845615541437, 8134.052305678097], [-3420.53456155611, 8182.0523056777]], "source": 2991482170, "length": 43.64865433770072}, {"destination": 2991482210, "path": [[-3278.484561555217, 8027.902305677515], [-3241.2845615539254, 7990.052305677508], [-3214.7845615568826, 7977.2023056765565], [-3165.234561556929, 7956.752305677383], [-3109.4845615555755, 7934.852305677254], [-3084.6845615499774, 7918.202305678079], [-3051.0845615552284, 7888.6523056773685], [-3012.1345615512496, 7843.25230567795], [-2984.7345615507948, 7792.552305676992], [-2968.7845615526953, 7731.252305678282], [-2967.034561550008, 7707.802305677802], [-2970.5345615553824, 7684.352305677322], [-2975.8845615504015, 7657.852305676726], [-2974.084561550683, 7638.952305677904], [-2966.1345615537016, 7620.00230567672], [-2951.084561551909, 7600.352305678015], [-2923.684561551454, 7583.702305677065], [-2888.2845615569863, 7572.352305677654], [-2753.7845615555057, 7538.3023056776465], [-2721.0345615529263, 7536.802305677881], [-2683.8845615557716, 7542.102305677645], [-2649.384561550505, 7552.652305676588], [-2621.9345615530187, 7576.152305677652], [-2600.7345615539634, 7601.102305677898], [-2529.0345615545107, 7722.202305677328], [-2465.8845615519454, 7845.152305677061]], "source": 2991482170, "length": 258.31302164766186}, {"destination": 2991482210, "path": [[-3278.484561555217, 8027.902305677515], [-3249.2845615550436, 8060.452305677756], [-3209.434561554758, 8084.65230567812], [-3151.9345615507177, 8102.802305677059], [-3114.784561553563, 8109.652305677173], [-3065.234561553609, 8110.402305677056], [-3024.5345615540487, 8103.602305677527], [-2980.2845615520823, 8086.952305676576], [-2950.184561555602, 8068.7523056770515], [-2862.634561552113, 8024.902305677983], [-2738.734561553713, 7974.202305677025], [-2683.8845615557716, 7951.45230567762], [-2628.1345615544183, 7924.252305677726], [-2568.834561550659, 7895.502305677482], [-2465.8845615519454, 7845.152305677061]], "source": 2991482170, "length": 175.57208064030786}, {"destination": 483103400, "path": [[-5291.934561554967, 6995.052305677874], [-5042.734561556017, 6836.7523056771515], [-4859.03456155512, 6747.9523056768185], [-4631.684561552163, 6671.6523056769], [-4503.134561552713, 6635.552305677806]], "source": 856909116, "length": 171.3615161806354}, {"destination": 856909109, "path": [[-5291.934561554967, 6995.052305677874], [-4928.034561551442, 7728.552305676928], [-4938.784561552722, 7756.052305676775], [-4981.684561556676, 7783.6023056772065], [-5265.634561553156, 7905.402305677711]], "source": 856909116, "length": 254.27220140263717}, {"destination": 856909118, "path": [[-5291.934561554967, 6995.052305677874], [-5341.834561555459, 6899.602305677988]], "source": 856909116, "length": 23.252398767665827}, {"destination": 63305187, "path": [[6993.91543844996, -5065.397694322016], [6577.065438449381, -5100.197694321906]], "source": 1765485450, "length": 79.64132208696564}, {"destination": 1993253276, "path": [[6993.91543844996, -5065.397694322016], [6993.565438449423, -5074.247694322409]], "source": 1765485450, "length": 1.9709107868158522}, {"destination": 856909116, "path": [[-5341.834561555459, 6899.602305677988], [-5291.934561554967, 6995.052305677874]], "source": 856909118, "length": 23.252398767665827}, {"destination": 423833614, "path": [[-5341.834561555459, 6899.602305677988], [-5409.5345615507995, 6934.702305677831], [-5488.384561552095, 6982.252305677505]], "source": 856909118, "length": 33.40876908481242}, {"destination": 476553848, "path": [[593.415438444822, 4747.2023056780445], [784.1654384463936, 4682.902305678027]], "source": 1316472128, "length": 38.99535709704416}, {"destination": 1316471884, "path": [[593.415438444822, 4747.2023056780445], [402.1654384445128, 4790.002305677277]], "source": 1316472128, "length": 37.59874610161031}, {"destination": 1316472141, "path": [[593.415438444822, 4747.2023056780445], [540.015438446062, 4622.7523056767695]], "source": 1316472128, "length": 29.481082219621122}, {"destination": 1316472169, "path": [[1070.1654384490666, 3466.252305678097], [1083.565438449341, 3515.5023056780974]], "source": 1316472129, "length": 11.244940630236414}, {"destination": 1316471868, "path": [[1070.1654384490666, 3466.252305678097], [1055.4654384478113, 3412.152305678262]], "source": 1316472129, "length": 12.35182575449089}, {"destination": 1316471854, "path": [[1070.1654384490666, 3466.252305678097], [1280.865438445744, 3413.552305676859]], "source": 1316472129, "length": 41.750871790485654}, {"destination": 1316471716, "path": [[-1451.134561555989, 4312.902305677824], [-1340.8345615530948, 4256.102305676634]], "source": 1316472130, "length": 24.48745329932829}, {"destination": 1316471998, "path": [[-1451.134561555989, 4312.902305677824], [-1433.534561556371, 4335.552305677837]], "source": 1316472130, "length": 6.0476180234419905}, {"destination": 1316471695, "path": [[-1451.134561555989, 4312.902305677824], [-1493.5345615540996, 4258.302305677475]], "source": 1316472130, "length": 14.57684019770346}, {"destination": 1316471868, "path": [[1235.565438449271, 3367.302305678166], [1093.065438446672, 3404.402305678289], [1055.4654384478113, 3412.152305678262]], "source": 1316472131, "length": 35.68555697376304}, {"destination": 1316472164, "path": [[1235.565438449271, 3367.302305678166], [1211.1154384442102, 3273.652305677999], [1170.8654384463557, 3140.6023056774757]], "source": 1316472131, "length": 51.90274070639953}, {"destination": 1316471804, "path": [[1235.565438449271, 3367.302305678166], [1278.1654384497187, 3356.2523056769323], [1365.7154384461023, 3367.402305677558]], "source": 1316472131, "length": 25.300954816463506}, {"destination": 1316471995, "path": [[440.5154384485854, 2603.2523056773725], [478.0654384433092, 2593.50230567712]], "source": 1316472134, "length": 7.463156846047278}, {"destination": 1316472061, "path": [[440.5154384485854, 2603.2523056773725], [296.46543844563666, 2640.5523056780567], [199.8654384465226, 2665.752305677671]], "source": 1316472134, "length": 47.831419544935}, {"destination": 1316472151, "path": [[440.5154384485854, 2603.2523056773725], [489.6154384468332, 2716.2523056780683], [537.8654384458059, 2810.302305677581]], "source": 1316472134, "length": 49.649541469017834}, {"destination": 1316471873, "path": [[1506.1654384496137, 1610.7023056779467], [1355.9654384494024, 1658.8523056775273]], "source": 1316472135, "length": 30.50575470559041}, {"destination": 1316471739, "path": [[1506.1654384496137, 1610.7023056779467], [1506.1654384496137, 1530.4023056774695], [1468.6154384477845, 1509.7523056777363]], "source": 1316472135, "length": 26.34817959566216}, {"destination": 1316471745, "path": [[1506.1654384496137, 1610.7023056779467], [1660.915438449706, 1596.952305677135]], "source": 1316472135, "length": 29.588497345583768}, {"destination": 1316471866, "path": [[-1610.5845615541625, 4296.552305676826], [-1506.2845615503306, 4241.90230567767]], "source": 1316472136, "length": 23.263830292754832}, {"destination": 1315678824, "path": [[-1607.9345615551688, -4570.547694322969], [-1695.134561551015, -4808.847694322438]], "source": 95386508, "length": 55.529031879260415}, {"destination": 599408783, "path": [[-1607.9345615551688, -4570.547694322969], [-2389.834561554949, -4407.947694321734]], "source": 95386508, "length": 153.01500808610427}, {"destination": 1316471913, "path": [[2308.115438445668, 2062.552305677201], [2302.7654384435436, 1922.6523056765643], [2294.715438445394, 1890.502305677444]], "source": 1316472139, "length": 38.441001489247476}, {"destination": 1320103923, "path": [[2308.115438445668, 2062.552305677201], [2310.315438442956, 2114.3023056779953]], "source": 1316472139, "length": 11.51657183602549}, {"destination": 1320103996, "path": [[2308.115438445668, 2062.552305677201], [2179.365438443881, 2062.552305677201], [2097.315438447822, 2071.302305678202]], "source": 1316472139, "length": 40.21130040781365}, {"destination": 1316471777, "path": [[697.2154384499163, 2266.5023056767095], [669.3154384436184, 2200.152305677605], [743.0154384451271, 2183.1523056778933]], "source": 1316472140, "length": 30.198098529931475}, {"destination": 1316471915, "path": [[697.2154384499163, 2266.5023056767095], [726.0154384454154, 2334.902305676678]], "source": 1316472140, "length": 16.167478996906585}, {"destination": 1316472156, "path": [[697.2154384499163, 2266.5023056767095], [771.9654384459318, 2249.602305678167]], "source": 1316472140, "length": 14.704576012206442}, {"destination": 1316472128, "path": [[540.015438446062, 4622.7523056767695], [593.415438444822, 4747.2023056780445]], "source": 1316472141, "length": 29.481082219621122}, {"destination": 1316471721, "path": [[540.015438446062, 4622.7523056767695], [506.3654384471761, 4544.352305677179]], "source": 1316472141, "length": 18.57292297273347}, {"destination": 1316471979, "path": [[540.015438446062, 4622.7523056767695], [452.065438445004, 4640.652305678117], [433.26543844557364, 4622.30230567684], [319.16543844801026, 4648.40230567809]], "source": 1316472141, "length": 45.08360013168854}, {"destination": 856909256, "path": [[-2367.634561551313, 8055.952305676684], [-1916.4845615549098, 7909.652305677639]], "source": 2991482193, "length": 91.77133779030471}, {"destination": 2991482210, "path": [[-2367.634561551313, 8055.952305676684], [-2398.634561551205, 7989.202305678234], [-2461.7845615537703, 7853.102305677595], [-2465.8845615519454, 7845.152305677061]], "source": 2991482193, "length": 50.46763836421874}, {"destination": 856909251, "path": [[-2367.634561551313, 8055.952305676684], [-2498.6845615515563, 8098.452305677739], [-2651.434561556698, 8161.452305676775], [-2962.8345615506646, 8321.902305677753], [-3282.884561556898, 8474.402305678197]], "source": 2991482193, "length": 197.74596120935132}, {"destination": 1316471961, "path": [[1272.165438443551, 1898.252305677417], [1278.1654384497187, 1963.902305677223], [1508.8154384486074, 1934.1023056771432]], "source": 1316472146, "length": 59.00728122837187}, {"destination": 1316471835, "path": [[1272.165438443551, 1898.252305677417], [1208.415438448185, 1908.8523056769445], [1208.415438448185, 1954.7523056768769]], "source": 1316472146, "length": 22.559558518259664}, {"destination": 1316471702, "path": [[1272.165438443551, 1898.252305677417], [1401.5654384493814, 1876.7523056766322]], "source": 1316472146, "length": 25.06942610292853}, {"destination": 1316471799, "path": [[1272.165438443551, 1898.252305677417], [1252.3654384466454, 1822.6023056779895]], "source": 1316472146, "length": 17.240389474590398}, {"destination": 1320103625, "path": [[2277.315438448113, 3366.7023056782596], [2277.4154384492817, 3327.652305676665]], "source": 1316472147, "length": 8.684386970497103}, {"destination": 1320103771, "path": [[2277.315438448113, 3366.7023056782596], [2312.715438449686, 3383.7023056779713], [2340.1154384430356, 3403.0023056779155]], "source": 1316472147, "length": 14.47303805065208}, {"destination": 476557955, "path": [[2277.315438448113, 3366.7023056782596], [2226.8654384447473, 3342.4023056767282], [2162.515438449475, 3333.2523056781583], [2009.2654384455955, 3346.2523056773107]], "source": 1316472147, "length": 52.70771353902397}, {"destination": 1316471915, "path": [[894.615438447488, 2305.702305678281], [726.0154384454154, 2334.902305676678]], "source": 1316472148, "length": 32.71527883889848}, {"destination": 1316471835, "path": [[1122.615438447383, 2012.102305677388], [1106.515438443978, 1952.452305676644], [1208.415438448185, 1954.7523056768769]], "source": 1316472149, "length": 32.99978552044628}, {"destination": 1316472174, "path": [[1122.615438447383, 2012.102305677388], [1034.0654384464187, 2037.3023056770023], [1034.0654384464187, 2071.7023056775474]], "source": 1316472149, "length": 25.39876195075043}, {"destination": 1316472087, "path": [[1122.615438447383, 2012.102305677388], [1125.2654384463767, 2062.552305677201], [1146.9654384441696, 2186.652305677939]], "source": 1316472149, "length": 39.13683401863102}, {"destination": 476554809, "path": [[1382.5654384476138, 2503.7523056781197], [1102.7654384463403, 2612.6023056782797]], "source": 1316472150, "length": 58.46011056676324}, {"destination": 1320104005, "path": [[1382.5654384476138, 2503.7523056781197], [1401.8154384487502, 2589.452305677753]], "source": 1316472150, "length": 19.40727308134131}, {"destination": 476556639, "path": [[1382.5654384476138, 2503.7523056781197], [1440.3154384439176, 2481.2523056780833]], "source": 1316472150, "length": 12.069127702175754}, {"destination": 1316472134, "path": [[537.8654384458059, 2810.302305677581], [489.6154384468332, 2716.2523056780683], [440.5154384485854, 2603.2523056773725]], "source": 1316472151, "length": 49.649541469017834}, {"destination": 1316471697, "path": [[1036.7654384495495, 3122.252305677975], [964.4654384430851, 2940.152305678012]], "source": 1316472154, "length": 42.767964339536604}, {"destination": 1315785370, "path": [[-3821.134561555084, -1620.4976943221538], [-3763.584561554012, -1536.9476943227767]], "source": 1315785615, "length": 21.564139851103434}, {"destination": 1315785452, "path": [[-3821.134561555084, -1620.4976943221538], [-3580.58456155419, -1732.3476943218452]], "source": 1315785615, "length": 52.06981274435017}, {"destination": 1316471777, "path": [[771.9654384459318, 2249.602305678167], [743.0154384451271, 2183.1523056778933]], "source": 1316472156, "length": 15.770144084831111}, {"destination": 1316472140, "path": [[771.9654384459318, 2249.602305678167], [697.2154384499163, 2266.5023056767095]], "source": 1316472156, "length": 14.704576012206442}, {"destination": 1316471753, "path": [[771.9654384459318, 2249.602305678167], [889.2654384453635, 2223.102305677571], [970.3654384480842, 2214.6023056777153]], "source": 1316472156, "length": 38.61279261204312}, {"destination": 1316471707, "path": [[393.41543844528815, 2405.2023056775342], [434.2154384460173, 2495.902305676978]], "source": 1316472158, "length": 21.611942164514105}, {"destination": 1316471789, "path": [[393.41543844528815, 2405.2023056775342], [224.06543844510907, 2457.0523056777206]], "source": 1316472158, "length": 34.20917644256905}, {"destination": 1316471974, "path": [[393.41543844528815, 2405.2023056775342], [362.86543844710195, 2337.2523056774953]], "source": 1316472158, "length": 16.189483724944296}, {"destination": 1316471721, "path": [[461.2154384489031, 4462.702305676913], [489.6154384468332, 4505.302305677361], [506.3654384471761, 4544.352305677179]], "source": 1316472160, "length": 20.155423588325633}, {"destination": 1316471951, "path": [[461.2154384489031, 4462.702305676913], [406.46543844502503, 4480.102305677747], [291.9154384457556, 4520.352305677377]], "source": 1316472160, "length": 34.66181225204826}, {"destination": 1316471929, "path": [[461.2154384489031, 4462.702305676913], [404.51543844710613, 4377.45230567721]], "source": 1316472160, "length": 21.811195999653954}, {"destination": 1316471744, "path": [[1044.9654384458995, 3743.952305677922], [1060.6654384446301, 3780.8023056769002]], "source": 1316472161, "length": 8.722701389870126}, {"destination": 1316471713, "path": [[1044.9654384458995, 3743.952305677922], [991.1654384495705, 3617.7023056769285]], "source": 1316472161, "length": 29.88310449846215}, {"destination": 1316471834, "path": [[1044.9654384458995, 3743.952305677922], [827.5654384490849, 3808.1023056779627]], "source": 1316472161, "length": 43.73855764402487}, {"destination": 2991482193, "path": [[-2465.8845615519454, 7845.152305677061], [-2461.7845615537703, 7853.102305677595], [-2398.634561551205, 7989.202305678234], [-2367.634561551313, 8055.952305676684]], "source": 2991482210, "length": 50.46763836421875}, {"destination": 2991482170, "path": [[-2465.8845615519454, 7845.152305677061], [-2568.834561550659, 7895.502305677482], [-2628.1345615544183, 7924.252305677726], [-2683.8845615557716, 7951.45230567762], [-2738.734561553713, 7974.202305677025], [-2862.634561552113, 8024.902305677983], [-2950.184561555602, 8068.7523056770515], [-2980.2845615520823, 8086.952305676576], [-3024.5345615540487, 8103.602305677527], [-3065.234561553609, 8110.402305677056], [-3114.784561553563, 8109.652305677173], [-3151.9345615507177, 8102.802305677059], [-3209.434561554758, 8084.65230567812], [-3249.2845615550436, 8060.452305677756], [-3278.484561555217, 8027.902305677515]], "source": 2991482210, "length": 175.57208064030786}, {"destination": 2991482170, "path": [[-2465.8845615519454, 7845.152305677061], [-2529.0345615545107, 7722.202305677328], [-2600.7345615539634, 7601.102305677898], [-2621.9345615530187, 7576.152305677652], [-2649.384561550505, 7552.652305676588], [-2683.8845615557716, 7542.102305677645], [-2721.0345615529263, 7536.802305677881], [-2753.7845615555057, 7538.3023056776465], [-2888.2845615569863, 7572.352305677654], [-2923.684561551454, 7583.702305677065], [-2951.084561551909, 7600.352305678015], [-2966.1345615537016, 7620.00230567672], [-2974.084561550683, 7638.952305677904], [-2975.8845615504015, 7657.852305676726], [-2970.5345615553824, 7684.352305677322], [-2967.034561550008, 7707.802305677802], [-2968.7845615526953, 7731.252305678282], [-2984.7345615507948, 7792.552305676992], [-3012.1345615512496, 7843.25230567795], [-3051.0845615552284, 7888.6523056773685], [-3084.6845615499774, 7918.202305678079], [-3109.4845615555755, 7934.852305677254], [-3165.234561556929, 7956.752305677383], [-3214.7845615568826, 7977.2023056765565], [-3241.2845615539254, 7990.052305677508], [-3278.484561555217, 8027.902305677515]], "source": 2991482210, "length": 258.31302164766186}, {"destination": 601712458, "path": [[-2584.3845615511896, 7387.452305676945], [-2137.1845615547613, 7211.502305677797]], "source": 2991482211, "length": 93.62660149015451}, {"destination": 3064901891, "path": [[-2584.3845615511896, 7387.452305676945], [-2907.7345615533545, 7514.7523056777745]], "source": 2991482211, "length": 67.70460630286675}, {"destination": 3064901926, "path": [[-2584.3845615511896, 7387.452305676945], [-2831.0845615564517, 7025.9523056765975]], "source": 2991482211, "length": 93.08553456802262}, {"destination": 2991482218, "path": [[-2949.534561551559, 6852.402305677075], [-2980.4345615502825, 6799.502305677052], [-3001.434561554106, 6755.102305676885], [-3075.434561552015, 6616.252305677861], [-3100.834561550414, 6575.652305677693], [-3130.634561550494, 6535.0023056769405], [-3191.5845615557714, 6449.802305677821]], "source": 2991482212, "length": 100.86030224229962}, {"destination": 2991482229, "path": [[-2949.534561551559, 6852.402305677075], [-2781.634561550561, 6775.9023056765955], [-2672.284561555216, 6726.802305676571], [-2631.43456155035, 6707.902305677749], [-2599.3845615559508, 6703.152305677307], [-2582.8345615508397, 6706.002305676861], [-2556.2845615567653, 6715.452305677161], [-2511.0345615502183, 6738.102305677174], [-2455.784561554708, 6749.452305676585], [-2422.6345615545597, 6743.802305678059], [-2376.2845615564743, 6734.352305677759], [-2315.934561551103, 6712.102305677092]], "source": 2991482212, "length": 132.14520174102208}, {"destination": 3064901926, "path": [[-2949.534561551559, 6852.402305677075], [-2831.0845615564517, 7025.9523056765975]], "source": 2991482212, "length": 44.690092084675776}, {"destination": 1316471913, "path": [[2492.915438445209, 1883.5023056773537], [2402.015438448757, 1890.502305677444], [2294.715438445394, 1890.502305677444]], "source": 1316472166, "length": 37.76335481805583}, {"destination": 1316471899, "path": [[2492.915438445209, 1883.5023056773537], [2707.915438449504, 1874.4023056775916]], "source": 1316472166, "length": 40.938641704741215}, {"destination": 1316471990, "path": [[2492.915438445209, 1883.5023056773537], [2493.215438448715, 1791.9023056780502]], "source": 1316472166, "length": 20.371117507857278}, {"destination": 623412587, "path": [[2453.7654384459984, 8263.902305676751], [2518.7154384482824, 7925.952305678053], [2539.8654384432007, 7801.052305676848]], "source": 623412583, "length": 104.23186823871835}, {"destination": 623411694, "path": [[2453.7654384459984, 8263.902305676751], [2384.0154384444645, 8507.102305676639]], "source": 623412583, "length": 55.68867453879042}, {"destination": 1404618566, "path": [[2453.7654384459984, 8263.902305676751], [2340.4154384465414, 8237.45230567674], [2222.415438446035, 8219.10230567724], [2039.8654384479187, 8194.002305677017], [1956.8654384443107, 8166.352305677194], [1916.5154384452876, 8132.0523056778175], [1924.665438444606, 8086.052305676716], [1959.4154384492413, 8065.55230567696]], "source": 623412583, "length": 126.46456711487008}, {"destination": 1316471832, "path": [[1083.565438449341, 3515.5023056780974], [1200.365438450035, 3496.152305677569]], "source": 1316472169, "length": 22.626521401108857}, {"destination": 1316472129, "path": [[1083.565438449341, 3515.5023056780974], [1070.1654384490666, 3466.252305678097]], "source": 1316472169, "length": 11.244940630236414}, {"destination": 1316471875, "path": [[1083.565438449341, 3515.5023056780974], [1095.7654384498028, 3560.3523056781937]], "source": 1316472169, "length": 10.241152859852887}, {"destination": 2991482212, "path": [[-3191.5845615557714, 6449.802305677821], [-3130.634561550494, 6535.0023056769405], [-3100.834561550414, 6575.652305677693], [-3075.434561552015, 6616.252305677861], [-3001.434561554106, 6755.102305676885], [-2980.4345615502825, 6799.502305677052], [-2949.534561551559, 6852.402305677075]], "source": 2991482218, "length": 100.86030224229961}, {"destination": 601145286, "path": [[-3191.5845615557714, 6449.802305677821], [-2522.2845615502365, 6358.752305677839]], "source": 2991482218, "length": 128.89927992851506}, {"destination": 1316471865, "path": [[-1728.584561554669, 4202.552305677898], [-1591.4345615541947, 4132.15230567765]], "source": 1316472171, "length": 30.422029212931648}, {"destination": 1316471792, "path": [[617.6154384434085, 3068.9523056768307], [594.2154384470655, 3078.7023056770836], [420.5154384493426, 3141.402305677943]], "source": 1316472172, "length": 40.80751806644555}, {"destination": 1316471993, "path": [[617.6154384434085, 3068.9523056768307], [674.8154384439431, 3175.052305676829]], "source": 1316472172, "length": 25.982320611313767}, {"destination": 1316471851, "path": [[617.6154384434085, 3068.9523056768307], [870.4654384459332, 2964.0023056778373]], "source": 1316472172, "length": 53.452695087117775}, {"destination": 1316471819, "path": [[1034.0654384464187, 2071.7023056775474], [934.1654384442677, 2100.652305676576]], "source": 1316472174, "length": 20.060375723488566}, {"destination": 1316471796, "path": [[1034.0654384464187, 2071.7023056775474], [1044.8154384476993, 2117.6023056774793], [1060.6154384475985, 2200.302305677582]], "source": 1316472174, "length": 29.046141334678488}, {"destination": 1316472149, "path": [[1034.0654384464187, 2071.7023056775474], [1034.0654384464187, 2037.3023056770023], [1122.615438447383, 2012.102305677388]], "source": 1316472174, "length": 25.39876195075043}, {"destination": 1316471960, "path": [[690.765438449148, 2115.3023056772467], [779.2654384459752, 2087.8023056774]], "source": 1316472177, "length": 17.907349224747716}, {"destination": 1316471777, "path": [[690.765438449148, 2115.3023056772467], [743.0154384451271, 2183.1523056778933]], "source": 1316472177, "length": 18.067187993520758}, {"destination": 1320103646, "path": [[690.765438449148, 2115.3023056772467], [631.7654384488947, 2122.202305677945], [548.1154384483489, 2145.2523056773034]], "source": 1316472177, "length": 28.039631314947282}, {"destination": 1316471727, "path": [[690.765438449148, 2115.3023056772467], [671.9654384497176, 2067.1523056776664], [673.3154384477302, 2048.652305678189]], "source": 1316472177, "length": 15.411108247805384}, {"destination": 1887593856, "path": [[780.2654384434504, -4336.847694322188], [725.265438447309, -4286.097694322421], [648.2654384498687, -4207.147694321733]], "source": 1887593843, "length": 38.248372127494235}, {"destination": 601712458, "path": [[-2315.934561551103, 6712.102305677092], [-2236.7845615534065, 6860.4023056781925], [-2137.1845615547613, 7211.502305677797]], "source": 2991482229, "length": 116.60029873300178}, {"destination": 2991482212, "path": [[-2315.934561551103, 6712.102305677092], [-2376.2845615564743, 6734.352305677759], [-2422.6345615545597, 6743.802305678059], [-2455.784561554708, 6749.452305676585], [-2511.0345615502183, 6738.102305677174], [-2556.2845615567653, 6715.452305677161], [-2582.8345615508397, 6706.002305676861], [-2599.3845615559508, 6703.152305677307], [-2631.43456155035, 6707.902305677749], [-2672.284561555216, 6726.802305676571], [-2781.634561550561, 6775.9023056765955], [-2949.534561551559, 6852.402305677075]], "source": 2991482229, "length": 132.1452017410221}, {"destination": 1883856720, "path": [[-2216.3345615524577, -6792.547694322692], [-2681.9345615507473, -6647.947694322198], [-3008.784561551181, -6547.397694323109]], "source": 599409562, "length": 160.23996124203882}, {"destination": 1887913979, "path": [[-2216.3345615524577, -6792.547694322692], [-1928.8845615506034, -6894.09769432281]], "source": 599409562, "length": 59.13875469683978}, {"destination": 2354289885, "path": [[-2216.3345615524577, -6792.547694322692], [-2232.984561551632, -6837.397694322789]], "source": 599409562, "length": 10.464451519409538}, {"destination": 599723323, "path": [[-137.03456155411686, -8037.997694323451], [-227.5845615500316, -8053.297694322836], [-245.03456155144931, -8059.197694322506], [-268.48456155192935, -8072.047694323459], [-290.2845615508909, -8090.497694322352]], "source": 1887593849, "length": 32.247869794617856}, {"destination": 1324294330, "path": [[3470.465438446979, 6219.302305677133], [3318.2154384476803, 5997.60230567803], [3253.3154384495333, 5899.802305677326]], "source": 476562811, "length": 82.18695549938383}, {"destination": 1887593843, "path": [[648.2654384498687, -4207.147694321733], [725.265438447309, -4286.097694322421], [780.2654384434504, -4336.847694322188]], "source": 1887593856, "length": 38.248372127494235}, {"destination": 1888322988, "path": [[648.2654384498687, -4207.147694321733], [575.3154384464665, -4272.0476943234335], [531.7154384485434, -4315.697694321941]], "source": 1887593856, "length": 32.784452722625005}, {"destination": 857780856, "path": [[-4964.834561555164, 3104.1023056772588], [-5621.684561553764, 3310.1523056782157]], "source": 478373250, "length": 133.06175356957863}, {"destination": 483108446, "path": [[-4964.834561555164, 3104.1023056772588], [-4808.984561556428, 3410.002305678006], [-4568.234561553198, 3894.052305676965]], "source": 478373250, "length": 191.1869357542243}, {"destination": 85011298, "path": [[-8311.13456155208, 1582.4523056782168], [-8300.484561551968, 1576.9523056778921], [-8260.384561552313, 1559.0023056777368], [-8122.884561551302, 1501.3523056772726], [-8101.684561552247, 1492.3523056769027], [-7957.134561550561, 1459.9023056778292], [-7889.084561554682, 1444.6523056772521]], "source": 2629524985, "length": 86.40105889457877}, {"destination": 85011021, "path": [[-8311.13456155208, 1582.4523056782168], [-8326.68456155261, 1589.5523056776995], [-8416.034561555818, 1632.652305676885], [-8471.334561555466, 1656.6523056766869]], "source": 2629524985, "length": 34.653915385761536}, {"destination": 2629533646, "path": [[-8311.13456155208, 1582.4523056782168], [-8280.134561552188, 1636.5023056774676], [-8249.234561553465, 1694.5023056766927], [-8227.484561551535, 1761.8023056780175]], "source": 2629524985, "length": 43.09026830528775}, {"destination": 856909109, "path": [[-5367.934561554932, 7696.402305677808], [-5265.634561553156, 7905.402305677711]], "source": 856909198, "length": 50.387914045640855}, {"destination": 3113821603, "path": [[-7290.434561554093, 2887.302305676798], [-6908.63456155455, 2803.502305678052]], "source": 3113821585, "length": 74.96521556269909}, {"destination": 857780844, "path": [[-7290.434561554093, 2887.302305676798], [-7469.334561555741, 2926.6023056777613], [-7515.984561550226, 2936.8523056767517]], "source": 3113821585, "length": 44.2887096834268}, {"destination": 3113821589, "path": [[-7290.434561554093, 2887.302305676798], [-7333.084561551573, 2834.552305676752], [-7373.334561556532, 2758.85230567674], [-7358.584561551141, 2674.0023056781583], [-7350.53456155299, 2662.552305677579]], "source": 3113821585, "length": 54.80455667120912}, {"destination": 1888322976, "path": [[-1213.6345615516575, -3550.3476943219425], [-1107.8345615516128, -3586.8976943227435], [-967.4345615522384, -3625.797694322586], [-905.0345615548849, -3644.247694323255], [-843.7345615561753, -3664.0976943225214], [-776.9345615500356, -3689.397694323304], [-689.4845615548206, -3737.647694322277], [-637.9345615528109, -3770.3476943224955], [-596.6345615533442, -3800.9476943230425], [-574.3845615526766, -3816.9976943223105], [-546.2845615511469, -3838.9476943230247], [-509.2845615521924, -3865.647694322405]], "source": 1888322965, "length": 153.0432859329317}, {"destination": 1888323026, "path": [[-1213.6345615516575, -3550.3476943219425], [-1110.884561555281, -3566.8976943217244], [-1014.5345615555357, -3588.897694323023], [-935.0345615501965, -3610.197694323247], [-850.084561555775, -3636.1976943233285], [-767.3345615515359, -3667.097694322052], [-703.684561550233, -3701.6976943231584], [-637.8345615516423, -3742.2976943233266], [-565.5845615564203, -3793.2976943224617], [-471.98456155683743, -3847.3976943222965], [-406.3345615534786, -3864.6476943231532]], "source": 1888322965, "length": 171.15488320369562}, {"destination": 3113821589, "path": [[-7369.284561555389, 2516.902305677249], [-7400.134561549976, 2557.0023056769032], [-7388.08456155482, 2621.2523056781124], [-7350.53456155299, 2662.552305677579]], "source": 3113821592, "length": 36.780557643541016}, {"destination": 93246664, "path": [[-9255.134561556133, 1495.8023056781399], [-8684.984561554644, 1317.0023056776613], [-8634.084561556676, 1299.8523056779732]], "source": 483122165, "length": 125.8945700105754}, {"destination": 857781031, "path": [[-9255.134561556133, 1495.8023056781399], [-9129.834561555583, 1931.00230567822]], "source": 483122165, "length": 99.67456334657459}, {"destination": 677800163, "path": [[-509.2845615521924, -3865.647694322405], [-488.5845615518747, -3879.0976943232636], [-293.38456155159065, -3999.6476943233715], [-193.73456155591384, -4055.047694322411], [-60.88456155595168, -4126.147694321958], [133.61543844325752, -4220.04769432327], [251.3654384443953, -4270.747694322452], [321.51543844349817, -4318.097694323342], [361.06543844738326, -4357.897694323043], [375.9654384438704, -4407.4476943229965], [383.2154384468822, -4457.497694323464], [384.06543844615726, -4547.7476943229785], [366.0154384448333, -4649.897694323002], [343.2154384483965, -4738.647694322751], [308.11543844322387, -4819.697694323111], [190.0154384486541, -5038.847694322612]], "source": 1888322976, "length": 358.01666067037416}, {"destination": 1807311608, "path": [[-5853.734561554802, 5629.852305677474], [-6013.284561554145, 4903.652305676686], [-6116.284561556995, 4411.052305677287]], "source": 478373282, "length": 275.613077932149}, {"destination": 95612191, "path": [[-5853.734561554802, 5629.852305677474], [-4945.33456155466, 5321.8523056770555]], "source": 478373282, "length": 185.85419122194688}, {"destination": 971168079, "path": [[-5853.734561554802, 5629.852305677474], [-5750.98456155132, 6139.552305677754]], "source": 478373282, "length": 115.02460947247559}, {"destination": 3113821585, "path": [[-6908.63456155455, 2803.502305678052], [-7290.434561554093, 2887.302305676798]], "source": 3113821603, "length": 74.96521556269909}, {"destination": 3113821604, "path": [[-6908.63456155455, 2803.502305678052], [-6921.384561550781, 2758.85230567674], [-6911.984561554618, 2710.7023056771595], [-6908.534561553381, 2657.9023056765295]], "source": 3113821603, "length": 32.83856539201344}, {"destination": 857780853, "path": [[-6908.63456155455, 2803.502305678052], [-6539.284561554837, 2722.4023056771075], [-6490.33456155479, 2712.102305677533]], "source": 3113821603, "length": 82.10900482294004}, {"destination": 3113821603, "path": [[-6908.534561553381, 2657.9023056765295], [-6911.984561554618, 2710.7023056771595], [-6921.384561550781, 2758.85230567674], [-6908.63456155455, 2803.502305678052]], "source": 3113821604, "length": 32.83856539201344}, {"destination": 3113821627, "path": [[-6908.534561553381, 2657.9023056765295], [-6854.284561555346, 2628.102305678226], [-6803.334561553243, 2573.0523056779475], [-6757.734561553263, 2514.6023056770164], [-6598.834561550859, 2507.152305676996]], "source": 3113821604, "length": 73.76706537758702}, {"destination": 3113821589, "path": [[-6908.534561553381, 2657.9023056765295], [-6907.934561553475, 2648.752305677959], [-6949.534561556447, 2606.3523056780723], [-7024.634561553001, 2537.5023056781743], [-7137.2845615513825, 2512.3023056767834], [-7248.584561551752, 2543.2523056778678], [-7267.384561551182, 2592.5523056766765], [-7260.684561551045, 2641.9023056778456], [-7282.134561556575, 2652.20230567742], [-7350.53456155299, 2662.552305677579]], "source": 3113821604, "length": 120.15751362409488}, {"destination": 3113821611, "path": [[-6392.984561550464, 2318.452305678065], [-6335.284561551191, 2323.052305676754], [-6261.534561552651, 2307.0023056774858], [-6197.184561550273, 2319.602305677293]], "source": 3113821608, "length": 38.048474102858435}, {"destination": 156380673, "path": [[-3644.984561553599, -8002.54769432307], [-3635.9345615508687, -7979.4476943231275]], "source": 874300841, "length": 5.417145860515287}, {"destination": 93246200, "path": [[-6197.184561550273, 2319.602305677293], [-6120.834561556876, 2297.202305676649]], "source": 3113821611, "length": 15.350798101294616}, {"destination": 3113821608, "path": [[-6197.184561550273, 2319.602305677293], [-6261.534561552651, 2307.0023056774858], [-6335.284561551191, 2323.052305676754], [-6392.984561550464, 2318.452305678065]], "source": 3113821611, "length": 38.048474102858435}, {"destination": 3113821627, "path": [[-6197.184561550273, 2319.602305677293], [-6182.434561551986, 2368.9523056766857], [-6191.784561551117, 2411.9523056782555], [-6209.234561552535, 2432.002305678083], [-6235.384561556146, 2441.752305676559], [-6252.834561550458, 2464.7023056765247], [-6280.984561556124, 2487.652305678267], [-6313.184561555829, 2508.852305677323], [-6352.734561552608, 2518.6023056775753], [-6371.534561552039, 2539.252305677309], [-6393.634561554507, 2553.602305678027], [-6441.234561556541, 2569.052305677388], [-6473.434561556246, 2570.802305676523], [-6523.0345615532315, 2567.9023056781602], [-6557.234561554992, 2557.0023056769032], [-6579.384561554491, 2539.8023056766306], [-6598.834561550859, 2507.152305676996]], "source": 3113821611, "length": 118.2265491995864}, {"destination": 1722215053, "path": [[531.7154384485434, -4315.697694321941], [484.0654384494769, -4393.747694322769]], "source": 1888322988, "length": 19.580188333591067}, {"destination": 1315785257, "path": [[-4016.3845615523996, -1641.7976943223778], [-4131.334561556343, -1581.4976943229199]], "source": 1315785630, "length": 25.645221594366287}, {"destination": 3113821611, "path": [[-6598.834561550859, 2507.152305676996], [-6579.384561554491, 2539.8023056766306], [-6557.234561554992, 2557.0023056769032], [-6523.0345615532315, 2567.9023056781602], [-6473.434561556246, 2570.802305676523], [-6441.234561556541, 2569.052305677388], [-6393.634561554507, 2553.602305678027], [-6371.534561552039, 2539.252305677309], [-6352.734561552608, 2518.6023056775753], [-6313.184561555829, 2508.852305677323], [-6280.984561556124, 2487.652305678267], [-6252.834561550458, 2464.7023056765247], [-6235.384561556146, 2441.752305676559], [-6209.234561552535, 2432.002305678083], [-6191.784561551117, 2411.9523056782555], [-6182.434561551986, 2368.9523056766857], [-6197.184561550273, 2319.602305677293]], "source": 3113821627, "length": 118.22654919958639}, {"destination": 3113821604, "path": [[-6598.834561550859, 2507.152305676996], [-6757.734561553263, 2514.6023056770164], [-6803.334561553243, 2573.0523056779475], [-6854.284561555346, 2628.102305678226], [-6908.534561553381, 2657.9023056765295]], "source": 3113821627, "length": 73.76706537758703}, {"destination": 3113822031, "path": [[-6598.834561550859, 2507.152305676996], [-6601.53456155399, 2458.4023056775095], [-6612.234561551133, 2429.152305676752], [-6638.384561554744, 2411.9523056782555], [-6679.284561556642, 2406.2023056767857]], "source": 3113821627, "length": 31.82524329975383}, {"destination": 619530378, "path": [[-741.4345615543994, 8098.952305678253], [-604.2345615568934, 8055.952305676684]], "source": 856909246, "length": 27.792905105520095}, {"destination": 1404152819, "path": [[-741.4345615543994, 8098.952305678253], [-924.0845615536841, 7752.55230567673]], "source": 856909246, "length": 84.50714694150643}, {"destination": 622622484, "path": [[-741.4345615543994, 8098.952305678253], [-1668.8345615563094, 8367.052305677802]], "source": 856909246, "length": 186.19962946767745}, {"destination": 1404152841, "path": [[-1146.1345615515484, 7389.002305677294], [-1067.384561551421, 7517.902305677282]], "source": 856909249, "length": 32.34359748252639}, {"destination": 1404152862, "path": [[-1146.1345615515484, 7389.002305677294], [-1044.1845615503098, 7311.00230567705], [-920.8345615547842, 7246.802305678201], [-841.5345615517822, 7223.402305676529]], "source": 856909249, "length": 69.4369562339105}, {"destination": 856909263, "path": [[-1146.1345615515484, 7389.002305677294], [-1335.6845615533075, 7487.802305677249], [-1417.6345615553032, 7525.552305677863]], "source": 856909249, "length": 59.92420601393404}, {"destination": 2991482193, "path": [[-3282.884561556898, 8474.402305678197], [-2962.8345615506646, 8321.902305677753], [-2651.434561556698, 8161.452305676775], [-2498.6845615515563, 8098.452305677739], [-2367.634561551313, 8055.952305676684]], "source": 856909251, "length": 197.7459612093513}, {"destination": 2991482169, "path": [[-3282.884561556898, 8474.402305678197], [-3296.1845615560037, 8391.90230567688], [-3316.534561555784, 8302.602305677809], [-3335.984561552152, 8263.252305678037], [-3367.1845615543816, 8224.652305678148], [-3420.53456155611, 8182.0523056777]], "source": 856909251, "length": 72.5738787226988}, {"destination": 479294032, "path": [[-3258.6345615541745, -2273.7976943218996], [-3469.7345615555264, -2587.947694323134], [-3534.434561551336, -2697.547694323177]], "source": 75351492, "length": 107.87877331968086}, {"destination": 1315785201, "path": [[-3258.6345615541745, -2273.7976943218996], [-3102.5345615560695, -2355.8976943220955]], "source": 75351492, "length": 34.8499682630133}, {"destination": 479284692, "path": [[-3258.6345615541745, -2273.7976943218996], [-3572.734561551272, -2116.0976943228607], [-4007.0845615503004, -1891.5476943224262]], "source": 75351492, "length": 165.7849828056809}, {"destination": 1889255121, "path": [[-2052.184561556203, -3181.1976943227905], [-2059.5845615503094, -3208.647694322053]], "source": 476792263, "length": 6.263580521970322}, {"destination": 1889255114, "path": [[-2052.184561556203, -3181.1976943227905], [-1972.3345615503263, -3180.9476943234217], [-1900.4845615526733, -3187.8976943229277]], "source": 476792263, "length": 28.934274250230388}, {"destination": 845390842, "path": [[-1814.4845615566396, -3194.947694321826], [-1806.1845615520156, -3165.097694322938], [-1737.6845615544312, -2894.5476943231797]], "source": 476792264, "length": 68.38505734203248}, {"destination": 1888323059, "path": [[-1814.4845615566396, -3194.947694321826], [-1780.0845615525418, -3206.697694322358], [-1746.184561554287, -3225.9976943223023], [-1722.3845615532696, -3241.497694322248], [-1696.484561556133, -3261.047694323338], [-1659.2345615507043, -3289.39769432246], [-1623.8345615562366, -3317.5476943227977], [-1551.9345615544466, -3368.797694323078], [-1499.3845615549617, -3405.7976943220324], [-1445.6845615526959, -3442.8976943221555]], "source": 476792264, "length": 89.59624662227556}, {"destination": 856909256, "path": [[-1857.9345615563625, 7856.60230567764], [-1916.4845615549098, 7909.652305677639]], "source": 856909257, "length": 16.224240361668105}, {"destination": 1404152816, "path": [[-1857.9345615563625, 7856.60230567764], [-1704.73456155662, 7808.502305676868], [-1586.0345615550386, 7742.302305677739], [-1533.334561550248, 7715.152305676654]], "source": 856909257, "length": 69.69486305798193}, {"destination": 601712459, "path": [[-1857.9345615563625, 7856.60230567764], [-2000.2345615566242, 7408.302305677239], [-2058.234561552297, 7186.802305676921]], "source": 856909257, "length": 153.78565527161368}, {"destination": 476792268, "path": [[-1236.4345615551997, -3503.247694322198], [-1125.834561555905, -3526.7476943232623], [-1019.5345615500173, -3549.5476943232516], [-909.534561550629, -3582.447694322255], [-813.1345615538521, -3614.3976943225907], [-742.8845615535806, -3644.247694323255]], "source": 476792266, "length": 99.24850602231166}, {"destination": 1888338492, "path": [[-1236.4345615551997, -3503.247694322198], [-1270.1845615552543, -3571.3976943227976]], "source": 476792266, "length": 16.458639103437452}, {"destination": 1888323026, "path": [[-742.8845615535806, -3644.247694323255], [-658.8345615554658, -3690.5976943231167], [-589.3845615503324, -3738.4976943233282], [-490.484561552762, -3805.9976943234374], [-406.3345615534786, -3864.6476943231532]], "source": 476792268, "length": 80.69230932431012}, {"destination": 479280511, "path": [[-742.8845615535806, -3644.247694323255], [-570.584561550902, -3287.747694322718]], "source": 476792268, "length": 85.78539205737147}, {"destination": 1404152816, "path": [[-1417.6345615553032, 7525.552305677863], [-1479.5845615509506, 7656.202305676985], [-1533.334561550248, 7715.152305676654]], "source": 856909263, "length": 47.978799989744914}, {"destination": 856909249, "path": [[-1417.6345615553032, 7525.552305677863], [-1335.6845615533075, 7487.802305677249], [-1146.1345615515484, 7389.002305677294]], "source": 856909263, "length": 59.92420601393404}, {"destination": 1404152861, "path": [[-1417.6345615553032, 7525.552305677863], [-1519.7845615517735, 7321.252305677816]], "source": 856909263, "length": 49.41423438116163}, {"destination": 677799505, "path": [[-406.3345615534786, -3864.6476943231532], [-384.1845615539796, -3877.3476943223527]], "source": 1888323026, "length": 5.069943177553976}, {"destination": 1315785217, "path": [[-2218.3345615545136, -628.447694323242], [-2430.384561556309, -576.8476943224243]], "source": 1315785635, "length": 41.926328752217124}, {"destination": 1315785418, "path": [[-2218.3345615545136, -628.447694323242], [-2243.184561550038, -694.1976943224404]], "source": 1315785635, "length": 15.367228623843312}, {"destination": 1315785235, "path": [[-2218.3345615545136, -628.447694323242], [-2197.18456155249, -560.6476943231797]], "source": 1315785635, "length": 15.605548583030277}, {"destination": 1316236563, "path": [[-1809.1345615545151, 3711.7023056776334], [-1967.3845615528762, 3762.1523056774463]], "source": 1316236336, "length": 32.12046031791903}, {"destination": 479302313, "path": [[-8547.4345615566, 130.6523056765485], [-8457.284561551149, 109.30230567751664], [-8061.384561550256, 23.802305676667856], [-8004.834561553764, 9.20230567658109]], "source": 87752549, "length": 106.67604423010808}, {"destination": 1572286538, "path": [[-8547.4345615566, 130.6523056765485], [-8578.734561552892, 67.4523056769516], [-8719.334561554604, -216.4976943230812]], "source": 87752549, "length": 83.83855704457154}, {"destination": 479305781, "path": [[-8547.4345615566, 130.6523056765485], [-8628.734561554553, 151.20230567688964], [-8857.134561552015, 208.8523056773539]], "source": 87752549, "length": 61.41042387972267}, {"destination": 85010431, "path": [[-8547.4345615566, 130.6523056765485], [-8510.934561556383, 208.00230567807887], [-8315.184561553224, 611.7523056765606], [-8290.284561553563, 663.1023056780094]], "source": 87752549, "length": 128.11310475653352}, {"destination": 85011298, "path": [[-7514.334561555814, 1367.0523056781292], [-7570.18456155123, 1378.7023056774929], [-7753.334561556358, 1414.9023056777564], [-7830.834561552536, 1430.1523056765575], [-7889.084561554682, 1444.6523056772521]], "source": 4779853276, "length": 73.34339269968083}, {"destination": 4779853277, "path": [[-7514.334561555814, 1367.0523056781292], [-7473.734561550316, 1513.902305678272]], "source": 4779853276, "length": 33.55803027789782}, {"destination": 483115423, "path": [[-7514.334561555814, 1367.0523056781292], [-7476.634561555784, 1359.1523056781796], [-7427.734561552768, 1350.2023056766177]], "source": 4779853276, "length": 16.891807920019197}, {"destination": 4779853276, "path": [[-7473.734561550316, 1513.902305678272], [-7514.334561555814, 1367.0523056781292]], "source": 4779853277, "length": 33.55803027789782}, {"destination": 482733092, "path": [[-4407.084561556474, -448.8976943228806], [-4998.834561554588, -220.19769432191083], [-5115.084561552408, -177.29769432328624]], "source": 1562117598, "length": 147.5711888353549}, {"destination": 1315785534, "path": [[-4407.084561556474, -448.8976943228806], [-4321.934561552609, -262.14769432186813], [-4212.734561555464, -26.49769432316873]], "source": 1562117598, "length": 100.94729305906104}, {"destination": 1562117605, "path": [[-4687.034561555947, -84.39769432300182], [-4870.584561551539, -27.14769432188291]], "source": 1562117599, "length": 37.155307352192025}, {"destination": 848690432, "path": [[-195.98456155023314, -2532.8476943222713], [-510.73456155137364, -2527.5976943230917], [-613.9845615535933, -2521.847694323398], [-742.1845615525058, -2507.4476943220957], [-946.5845615537205, -2477.1476943232783], [-1453.534561555614, -2378.4976943233005]], "source": 624738555, "length": 242.44442990127254}, {"destination": 848690530, "path": [[-195.98456155023314, -2532.8476943222713], [-798.634561554934, -2481.2476943232296], [-1062.434561553971, -2434.0476943223166], [-1374.9345615536868, -2379.5476943231365], [-1811.484561550003, -2273.4476943231384], [-1998.5845615551057, -2216.147694323212], [-2142.08456155518, -2143.3476943233386], [-2343.984561555601, -2055.147694322912], [-2525.084561554536, -1987.447694322242], [-2814.08456155674, -1880.247694321824], [-2958.234561553752, -1825.7476943226436], [-3105.0845615538947, -1759.2476943217862], [-3220.4345615554075, -1713.7476943229758]], "source": 624738555, "length": 609.2340077379922}, {"destination": 93792082, "path": [[11280.465438446186, -798.2976943221587], [11233.515438448194, -891.4976943223962]], "source": 602392037, "length": 22.568290846359567}, {"destination": 96243750, "path": [[11280.465438446186, -798.2976943221587], [11296.615438446623, -758.8476943229949]], "source": 602392037, "length": 9.294949694449073}, {"destination": 856909292, "path": [[484.66543844938315, 6466.852305678117], [870.9154384476392, 6439.302305677686], [1096.2154384444034, 6439.302305677686], [1348.3154384488216, 6466.852305678117], [1507.2154384441205, 6485.202305677618]], "source": 856909286, "length": 195.4055927125756}, {"destination": 1404037076, "path": [[484.66543844938315, 6466.852305678117], [304.6154384449551, 6530.802305677596], [-298.5345615513779, 6715.802305677698]], "source": 856909286, "length": 158.9531980249606}, {"destination": 856909277, "path": [[484.66543844938315, 6466.852305678117], [448.66543844790385, 6559.55230567784], [296.06543844806765, 6687.552305677968], [97.81543844411544, 6816.152305678002], [-213.9845615545255, 6891.202305677524]], "source": 856909286, "length": 171.30970890058705}, {"destination": 856909354, "path": [[1507.2154384441205, 6485.202305677618], [1508.46543844807, 6691.7023056767275]], "source": 856909292, "length": 45.92422413166917}, {"destination": 856909299, "path": [[1507.2154384441205, 6485.202305677618], [1756.0154384455018, 6471.452305676806], [2110.065438444053, 6393.452305676561], [2313.9154384494987, 6352.152305677095], [2487.1654384455155, 6337.002305677686]], "source": 856909292, "length": 189.92540878341111}, {"destination": 856909334, "path": [[1507.2154384441205, 6485.202305677618], [1505.4154384444018, 6182.40230567757]], "source": 856909292, "length": 67.34061368181835}, {"destination": 856909286, "path": [[1507.2154384441205, 6485.202305677618], [1348.3154384488216, 6466.852305678117], [1096.2154384444034, 6439.302305677686], [870.9154384476392, 6439.302305677686], [484.66543844938315, 6466.852305678117]], "source": 856909292, "length": 195.40559271257558}, {"destination": 84489700, "path": [[7145.315438449984, -2852.4476943232457], [7016.21543844766, -3017.84769432345]], "source": 602392045, "length": 44.223202816017114}, {"destination": 85647366, "path": [[7145.315438449984, -2852.4476943232457], [7620.015438448036, -2355.0976943234045], [7665.365438448645, -2288.847694321916], [7774.065438447053, -2129.9476943230643], [7879.91543844413, -1902.6976943230522], [7964.915438449793, -1743.8476943230085], [8044.865438449733, -1645.597694322376], [8130.26543844586, -1559.5476943222052], [8249.16543844978, -1487.697694322776]], "source": 602392045, "length": 373.4309450725432}, {"destination": 75352048, "path": [[-4791.6345615561795, -3832.1976943223035], [-4681.184561555085, -3861.9976943223833], [-4467.084561554202, -3907.2976943224094], [-4382.98456155195, -3919.597694322263], [-4312.434561555278, -3927.747694323358], [-4270.234561552399, -3927.6976943227737], [-4234.08456155272, -3922.8976943217476]], "source": 1887913947, "length": 108.70575303473387}, {"destination": 477615666, "path": [[-4791.6345615561795, -3832.1976943223035], [-4786.884561553961, -3916.3976943221714], [-4805.884561555729, -4006.897694322831], [-4841.484561552534, -4113.847694322104], [-4918.734561556448, -4275.497694322894], [-4997.8345615500075, -4418.9476943223835]], "source": 1887913947, "length": 138.02957503435942}, {"destination": 477615693, "path": [[-4791.6345615561795, -3832.1976943223035], [-4828.184561553428, -3712.597694322639]], "source": 1887913947, "length": 27.49098009610263}, {"destination": 623413761, "path": [[2487.1654384455155, 6337.002305677686], [2582.165438447248, 6590.702305677709], [2603.615438445672, 6723.752305678232]], "source": 856909299, "length": 89.1119064856021}, {"destination": 476555428, "path": [[2487.1654384455155, 6337.002305677686], [2450.9654384488044, 6216.702305676947], [2412.0654384489626, 6104.302305677933], [2401.8654384434512, 5999.202305677187], [2398.765438449857, 5790.502305677236]], "source": 856909299, "length": 123.56388473204564}, {"destination": 856909292, "path": [[2487.1654384455155, 6337.002305677686], [2313.9154384494987, 6352.152305677095], [2110.065438444053, 6393.452305676561], [1756.0154384455018, 6471.452305676806], [1507.2154384441205, 6485.202305677618]], "source": 856909299, "length": 189.92540878341111}, {"destination": 1316694062, "path": [[912.2654384441375, 778.0023056778163], [911.6154384471997, 706.0523056772183]], "source": 1317671166, "length": 16.001056583078046}, {"destination": 1317671422, "path": [[912.2654384441375, 778.0023056778163], [1004.665438443908, 775.7523056781679], [1004.665438443908, 812.4523056771693], [1101.1154384448218, 812.4523056771693]], "source": 1317671166, "length": 44.08334838115688}, {"destination": 1317670863, "path": [[912.2654384441375, 778.0023056778163], [913.46543844395, 913.3523056767956], [918.1154384449997, 963.852305677193]], "source": 1317671166, "length": 41.36637936370891}, {"destination": 856909286, "path": [[440.86543844912285, 6237.552305677241], [457.8154384446975, 6338.402305678059], [484.66543844938315, 6466.852305678117]], "source": 856909306, "length": 51.67725548927035}, {"destination": 856909334, "path": [[440.86543844912285, 6237.552305677241], [763.6154384442762, 6196.1523056766055], [827.9654384466539, 6182.40230567757], [881.6154384447827, 6164.052305678069], [935.265438450017, 6154.852305677139], [999.6154384452893, 6154.852305677139], [1069.3654384468232, 6177.802305677104], [1203.4654384436294, 6173.202305676639], [1505.4154384444018, 6182.40230567757]], "source": 856909306, "length": 205.52970701251354}, {"destination": 602392067, "path": [[9152.615438445366, -6977.747694323355], [9207.865438447981, -6881.697694321787]], "source": 602392061, "length": 23.804006572205658}, {"destination": 602392062, "path": [[9152.615438445366, -6977.747694323355], [9603.915438447075, -7191.497694321924]], "source": 602392061, "length": 98.09825702305746}, {"destination": 115548357, "path": [[9603.915438447075, -7191.497694321924], [9729.565438448162, -6989.447694323303], [9843.715438449863, -6791.897694322202]], "source": 602392062, "length": 99.8930239107616}, {"destination": 602392063, "path": [[9603.915438447075, -7191.497694321924], [9659.315438447891, -7219.847694322823]], "source": 602392062, "length": 12.276439866631263}, {"destination": 495768484, "path": [[9659.315438447891, -7219.847694322823], [9412.015438449827, -7589.597694321881]], "source": 602392063, "length": 94.72406036909572}, {"destination": 1491042413, "path": [[9659.315438447891, -7219.847694322823], [10059.265438449927, -7330.947694322632]], "source": 602392063, "length": 79.9603222286772}, {"destination": 554691058, "path": [[10825.815438444408, -7543.847694321926], [11019.565438445512, -7160.797694321986]], "source": 602392064, "length": 92.81126923369739}, {"destination": 554691077, "path": [[10825.815438444408, -7543.847694321926], [10702.415438444747, -7763.347694321965]], "source": 602392064, "length": 54.16072640252606}, {"destination": 1316237067, "path": [[-305.8345615514213, 4009.9523056778], [-35.934561552153355, 3919.0023056772106]], "source": 654403074, "length": 55.17292518102232}, {"destination": 1316237012, "path": [[-305.8345615514213, 4009.9523056778], [-251.43456155518606, 4091.902305678019]], "source": 654403074, "length": 20.956875676561342}, {"destination": 495771014, "path": [[9207.865438447981, -6881.697694321787], [9444.665438444134, -6532.547694321877]], "source": 602392067, "length": 89.75792414107171}, {"destination": 93792610, "path": [[10473.11543844387, -2367.74769432202], [10826.365438447283, -1674.5476943231806]], "source": 602392070, "length": 168.16088102561253}, {"destination": 85647366, "path": [[10473.11543844387, -2367.74769432202], [9735.165438449656, -2276.747694322623], [9496.615438443712, -2167.947694323047], [9186.515438443621, -2003.947694323216], [8665.865438445053, -1704.7976943231902], [8249.16543844978, -1487.697694322776]], "source": 602392070, "length": 474.60747687720954}, {"destination": 1800806199, "path": [[10473.11543844387, -2367.74769432202], [10273.315438446672, -2751.147694322498], [10186.015438449658, -2913.9976943231004], [10029.31543844454, -3170.097694322749], [9684.76543844332, -3668.147694321888]], "source": 602392070, "length": 326.15338621336434}, {"destination": 482733604, "path": [[7321.365438443195, 6100.152305677398], [7994.815438443937, 6375.052305678253]], "source": 103736843, "length": 141.929518735727}, {"destination": 654392159, "path": [[7321.365438443195, 6100.152305677398], [7422.565438446327, 6021.1523056779015], [7566.415438446938, 5895.302305678029]], "source": 103736843, "length": 65.1995066231438}, {"destination": 4397155843, "path": [[-4896.284561553443, 4013.2023056767], [-4782.234561552912, 4342.602305676735], [-4521.534561554574, 5126.152305678033]], "source": 4397155856, "length": 257.56999095899135}, {"destination": 483108446, "path": [[-4896.284561553443, 4013.2023056767], [-4568.234561553198, 3894.052305676965]], "source": 4397155856, "length": 67.78469627495349}, {"destination": 1317670848, "path": [[1826.115438447573, 585.3523056771337], [1938.0654384448803, 583.1023056774853], [1982.7154384444157, 582.9023056769245]], "source": 1317671171, "length": 29.786889850705826}, {"destination": 1316694010, "path": [[1826.115438447573, 585.3523056771337], [1826.3654384469419, 664.8023056765595]], "source": 1317671171, "length": 17.668705631618973}, {"destination": 1317671027, "path": [[1826.115438447573, 585.3523056771337], [1825.9654384493729, 534.9523056779049]], "source": 1317671171, "length": 11.208413392517198}, {"destination": 3758885813, "path": [[71.36543844410426, -156.29769432301543], [78.11543844837843, -33.297694322698135]], "source": 3758885806, "length": 27.384223707693263}, {"destination": 3758885822, "path": [[71.36543844410426, -156.29769432301543], [137.96543844790676, -165.54769432275407], [153.06543844673115, -165.69769432273063], [133.1154384445199, -344.29769432264834]], "source": 3758885806, "length": 55.60443209774786}, {"destination": 3758885823, "path": [[71.36543844410426, -156.29769432301543], [-61.3845615546893, -145.9976943234409], [-68.08456155482645, -222.84769432268092], [-5.034561553429739, -228.54769432179012]], "source": 3758885806, "length": 54.5445877789075}, {"destination": 856909306, "path": [[1505.4154384444018, 6182.40230567757], [1203.4654384436294, 6173.202305676639], [1069.3654384468232, 6177.802305677104], [999.6154384452893, 6154.852305677139], [935.265438450017, 6154.852305677139], [881.6154384447827, 6164.052305678069], [827.9654384466539, 6182.40230567757], [763.6154384442762, 6196.1523056766055], [440.86543844912285, 6237.552305677241]], "source": 856909334, "length": 205.52970701251354}, {"destination": 856909292, "path": [[1505.4154384444018, 6182.40230567757], [1507.2154384441205, 6485.202305677618]], "source": 856909334, "length": 67.34061368181835}, {"destination": 623414118, "path": [[1505.4154384444018, 6182.40230567757], [1502.5154384460393, 5919.402305677224]], "source": 856909334, "length": 58.49124441255038}, {"destination": 479322299, "path": [[-5225.234561549996, 1497.1023056773447], [-5421.234561552524, 1076.6023056767438]], "source": 4153722393, "length": 100.67006217895405}, {"destination": 147477301, "path": [[-5225.234561549996, 1497.1023056773447], [-4966.234561550209, 2052.7523056781406]], "source": 4153722393, "length": 133.0262564887338}, {"destination": 483110054, "path": [[-5225.234561549996, 1497.1023056773447], [-5659.884561552531, 1652.3523056779509]], "source": 4153722393, "length": 89.58142785396856}, {"destination": 601145287, "path": [[-5225.234561549996, 1497.1023056773447], [-4766.084561552475, 1333.1023056775139]], "source": 4153722393, "length": 94.63057961772104}, {"destination": 482731177, "path": [[-2062.834561556315, 6303.152305678239], [-1856.73456155655, 6277.902305678041], [-1663.184561550679, 6252.802305677818]], "source": 603884627, "length": 76.83313081539433}, {"destination": 603884628, "path": [[-2062.834561556315, 6303.152305678239], [-2088.9345615557886, 6234.052305677195]], "source": 603884627, "length": 16.14907231149892}, {"destination": 103764456, "path": [[2109.8654384488214, -2700.7476943232687], [2220.3654384469473, -2744.197694322992]], "source": 103736869, "length": 23.12803271447589}, {"destination": 75355691, "path": [[2109.8654384488214, -2700.7476943232687], [1929.665438446193, -2614.8976943218827], [1815.3654384462925, -2560.3976943227026], [1565.9154384479734, -2435.9976943220117]], "source": 103736869, "length": 119.02676628436495}, {"destination": 1883258214, "path": [[2109.8654384488214, -2700.7476943232687], [2183.8654384467304, -2641.097694322525], [2257.365438445902, -2579.797694322039]], "source": 103736869, "length": 38.86329854430573}, {"destination": 3055920274, "path": [[-7110.384561556771, 1361.6023056766126], [-7022.334561554544, 1362.2523056771029], [-6973.134561555127, 1357.3523056766844], [-6797.18456155598, 1331.6523056765561], [-6551.084561550624, 1253.952305678041]], "source": 483116582, "length": 110.00279462864015}, {"destination": 654575691, "path": [[-7110.384561556771, 1361.6023056766126], [-7085.034561555403, 1418.00230567668], [-7027.334561556131, 1655.4523056768744]], "source": 483116582, "length": 67.3719944577173}, {"destination": 483115423, "path": [[-7110.384561556771, 1361.6023056766126], [-7383.084561553233, 1343.2023056765274], [-7427.734561552768, 1350.2023056766177]], "source": 483116582, "length": 60.65461854086937}, {"destination": 1404036979, "path": [[1508.46543844807, 6691.7023056767275], [1121.715438443971, 6699.352305677308], [809.965438449467, 6725.902305676712]], "source": 856909354, "length": 133.166486626432}, {"destination": 856909292, "path": [[1508.46543844807, 6691.7023056767275], [1507.2154384441205, 6485.202305677618]], "source": 856909354, "length": 45.92422413166917}, {"destination": 1328999422, "path": [[1508.46543844807, 6691.7023056767275], [1509.265438443208, 6823.902305677976]], "source": 856909354, "length": 29.400569885045087}, {"destination": 4573378144, "path": [[3900.865438446033, 8876.502305676937], [3523.1154384476326, 9103.152305677042]], "source": 4573378141, "length": 87.76779411932412}, {"destination": 4573378140, "path": [[3900.865438446033, 8876.502305676937], [3932.8154384463687, 8923.702305677849]], "source": 4573378141, "length": 12.129464405575419}, {"destination": 4573378142, "path": [[3900.865438446033, 8876.502305676937], [3874.315438444853, 8814.40230567776]], "source": 4573378141, "length": 14.7048824692692}, {"destination": 623413761, "path": [[2899.5154384432453, 6726.8523056771555], [2603.615438445672, 6723.752305678232]], "source": 856909363, "length": 56.2839022861518}, {"destination": 1328999437, "path": [[2899.5154384432453, 6726.8523056771555], [2899.9654384449514, 6858.252305677936]], "source": 856909363, "length": 29.22223015958353}, {"destination": 1328999487, "path": [[2899.5154384432453, 6726.8523056771555], [3183.7654384432312, 6739.552305678131], [3285.265438449869, 6749.502305677169]], "source": 856909363, "length": 73.56899772870386}, {"destination": 1469016652, "path": [[-7037.734561556874, -512.797694321776], [-6962.684561550248, -543.7976943234446]], "source": 3569237097, "length": 15.84995301602274}, {"destination": 71127148, "path": [[-7037.734561556874, -512.797694321776], [-6983.534561555871, -419.09769432280086]], "source": 3569237097, "length": 23.247747047407017}, {"destination": 5017787788, "path": [[-7037.734561556874, -512.797694321776], [-7450.184561555772, -1229.7476943228248]], "source": 3569237097, "length": 177.69062565218945}, {"destination": 3569237100, "path": [[-7037.734561556874, -512.797694321776], [-7219.234561553378, -419.7476943232914], [-7353.134561554953, -476.19769432216685], [-7484.484561551597, -436.39769432246567], [-7557.434561554999, -492.44769432199575], [-7544.634561554631, -555.7476943227613], [-7498.13456155124, -583.7976943219303]], "source": 3569237097, "length": 138.89258882852997}, {"destination": 1316472150, "path": [[1102.7654384463403, 2612.6023056782797], [1382.5654384476138, 2503.7523056781197]], "source": 476554809, "length": 58.46011056676324}, {"destination": 1316471774, "path": [[1102.7654384463403, 2612.6023056782797], [907.5654384460563, 2708.7523056774644]], "source": 476554809, "length": 42.84123758935248}, {"destination": 1316471999, "path": [[1102.7654384463403, 2612.6023056782797], [1046.8654384467868, 2444.60230567789]], "source": 476554809, "length": 38.84472042951334}, {"destination": 1316472033, "path": [[1322.5154384457483, 3072.9023056768056], [1294.31543844305, 3014.9523056781645]], "source": 476554810, "length": 13.95906006928398}, {"destination": 1316471841, "path": [[1322.5154384457483, 3072.9023056768056], [1433.715438444949, 3044.2523056777304], [1500.7654384433522, 3030.5023056769187]], "source": 476554810, "length": 35.20066280304018}, {"destination": 267198568, "path": [[-8005.0845615531325, -7450.747694322857], [-7859.984561555677, -7494.547694323117], [-7780.984561556181, -7511.997694322758], [-7700.28456155103, -7524.447694322589], [-7298.7345615516115, -7573.24769432266], [-7218.084561550597, -7591.697694323329]], "source": 477643018, "length": 153.35753407606558}, {"destination": 477626820, "path": [[-8005.0845615531325, -7450.747694322857], [-7765.534561556819, -6836.547694321737]], "source": 477643018, "length": 143.9863511927454}, {"destination": 156253588, "path": [[-8005.0845615531325, -7450.747694322857], [-8075.184561555205, -7429.59769432261], [-8433.434561553098, -7314.997694322756], [-8597.134561554754, -7262.947694322009], [-8908.034561549983, -7159.697694323341]], "source": 477643018, "length": 183.49115965937983}, {"destination": 1320103768, "path": [[1487.9654384429841, 4185.40230567821], [1439.015438450042, 4045.9023056769183]], "source": 476554817, "length": 32.39023872650505}, {"destination": 1320104093, "path": [[1487.9654384429841, 4185.40230567821], [1511.71543844697, 4186.65230567683], [1567.9154384500293, 4248.952305676567], [1921.5654384439063, 4221.702305677865]], "source": 476554817, "length": 89.55753085860596}, {"destination": 1317671186, "path": [[1087.7654384486846, 8.70230567784347], [1084.1654384492472, -89.0476943222751]], "source": 1317671179, "length": 21.749539662456755}, {"destination": 1317670876, "path": [[1087.7654384486846, 8.70230567784347], [1026.0654384453005, 11.952305676743435], [1000.8654384492388, 16.0523056766948]], "source": 1317671179, "length": 16.633775628357085}, {"destination": 1316694050, "path": [[1087.7654384486846, 8.70230567784347], [1207.665438442973, 2.402305677051686]], "source": 1317671179, "length": 22.84455034805359}, {"destination": 1317671398, "path": [[1087.7654384486846, 8.70230567784347], [1087.8154384457162, 78.50230567818528]], "source": 1317671179, "length": 15.52303181540919}, {"destination": 4573378136, "path": [[3595.115438443486, 9218.302305677995], [3511.115438449508, 9268.302305677878]], "source": 4573378146, "length": 19.466162525384874}, {"destination": 4573378145, "path": [[3595.115438443486, 9218.302305677995], [3541.915438447063, 9154.002305677977]], "source": 4573378146, "length": 17.517581005986724}, {"destination": 4573378147, "path": [[3595.115438443486, 9218.302305677995], [3640.315438445896, 9269.702305678251]], "source": 4573378146, "length": 14.302834953602236}, {"destination": 476794281, "path": [[-384.1845615539796, -3877.3476943223527], [-490.084561555193, -4005.0476943225276]], "source": 677799505, "length": 34.81426105383086}, {"destination": 4676163090, "path": [[-384.1845615539796, -3877.3476943223527], [-320.6345615538453, -3917.847694323129], [-162.634561554853, -4020.597694323058], [-58.48456155632675, -4087.447694322677], [50.61543844675498, -4140.497694322676], [132.06543845001306, -4173.197694322895], [210.61543844780317, -4203.447694322904], [289.6154384472993, -4229.19769432184]], "source": 677799505, "length": 151.01622367137384}, {"destination": 479280655, "path": [[-384.1845615539796, -3877.3476943223527], [-307.7345615523086, -3764.0476943234803]], "source": 677799505, "length": 29.089616838066576}, {"destination": 482731178, "path": [[-664.2845615516535, 6052.602305677723], [-805.0845615557023, 6070.202305677341], [-1675.184561555909, 6180.052305676753]], "source": 482731602, "length": 194.34691854528756}, {"destination": 481500495, "path": [[-664.2845615516535, 6052.602305677723], [-923.5845615549465, 5737.702305676607]], "source": 482731602, "length": 85.65343847397347}, {"destination": 608700679, "path": [[-664.2845615516535, 6052.602305677723], [-610.3845615541559, 6134.702305677919]], "source": 482731602, "length": 20.93902053614192}, {"destination": 4573378146, "path": [[3640.315438445896, 9269.702305678251], [3595.115438443486, 9218.302305677995]], "source": 4573378147, "length": 14.302834953602236}, {"destination": 4573378148, "path": [[3640.315438445896, 9269.702305678251], [3663.665438445207, 9299.002305677817]], "source": 4573378147, "length": 7.885929255227625}, {"destination": 4573378134, "path": [[3640.315438445896, 9269.702305678251], [3604.665438444954, 9291.102305677867]], "source": 4573378147, "length": 8.283898472979155}, {"destination": 1888322988, "path": [[481.41543844337775, -4296.297694322604], [531.7154384485434, -4315.697694321941]], "source": 677799508, "length": 10.492405513475122}, {"destination": 103764845, "path": [[481.41543844337775, -4296.297694322604], [592.565438445547, -4180.8476943234755], [716.0654384463783, -4074.5976943217242], [919.5654384441809, -3871.4476943226828], [1040.0154384484495, -3764.4976943234096]], "source": 677799508, "length": 159.07472180424728}, {"destination": 476681033, "path": [[-8767.684561554745, -3642.4476943217596], [-8837.234561553942, -3726.947694323357]], "source": 1582517312, "length": 22.979277728973464}, {"destination": 1582517346, "path": [[-8767.684561554745, -3642.4476943217596], [-8715.834561556334, -3579.4476943227237]], "source": 1582517312, "length": 17.131834590097352}, {"destination": 1582517287, "path": [[-8767.684561554745, -3642.4476943217596], [-8764.534561557013, -3668.2976943218646], [-8757.834561556876, -3686.647694323142], [-8764.534561557013, -3708.4476943221034], [-8800.384561553186, -3746.097694323325]], "source": 1582517312, "length": 25.864579610187082}, {"destination": 2932033121, "path": [[4450.365438444237, 9355.552305677862], [4487.415438447329, 9307.802305677626]], "source": 2932033117, "length": 12.745059657682674}, {"destination": 2932033124, "path": [[4450.365438444237, 9355.552305677862], [4358.265438447972, 9304.202305678189], [4255.265438445122, 9171.802305678157]], "source": 2932033117, "length": 56.27840013137052}, {"destination": 483108462, "path": [[-4568.234561553198, 3894.052305676965], [-4106.184561550208, 3727.152305676995]], "source": 483108446, "length": 95.39291540127672}, {"destination": 4402078908, "path": [[3901.6654384482763, 8639.302305677887], [3950.5154384471552, 8616.40230567673], [4006.365438449677, 8585.202305678053], [4054.4654384433443, 8554.002305677599], [4119.065438445091, 8508.952305676943], [4142.715438447908, 8489.252305677652], [4172.31543844565, 8461.252305677292], [4192.515438447231, 8437.652305676835]], "source": 4573378149, "length": 71.7986780728325}, {"destination": 4573378119, "path": [[3901.6654384482763, 8639.302305677887], [3921.3154384469817, 8685.052305677842], [3930.115438443238, 8743.502305676997], [3918.5654384468194, 8788.052305677142]], "source": 4573378149, "length": 34.09265311653084}, {"destination": 2932033117, "path": [[4487.415438447329, 9307.802305677626], [4450.365438444237, 9355.552305677862]], "source": 2932033121, "length": 12.745059657682674}, {"destination": 476675164, "path": [[-7088.984561555379, -3257.897694322054], [-7183.134561550731, -3400.9476943221985]], "source": 477641659, "length": 36.504864860160666}, {"destination": 714081217, "path": [[4255.265438445122, 9171.802305678157], [4958.5654384429745, 8744.652305678002]], "source": 2932033124, "length": 164.07023615890935}, {"destination": 2932033117, "path": [[4255.265438445122, 9171.802305678157], [4358.265438447972, 9304.202305678189], [4450.365438444237, 9355.552305677862]], "source": 2932033124, "length": 56.27840013137052}, {"destination": 79811522, "path": [[10861.115438444813, 7754.502305678201], [11392.165438444124, 6873.602305677906], [11490.915438443495, 6720.852305678093], [11640.965438445506, 6492.502305677661]], "source": 619349605, "length": 317.47917561744464}, {"destination": 4907066148, "path": [[10861.115438444813, 7754.502305678201], [10727.015438448007, 8025.202305677936], [10681.61543844326, 8247.552305677531]], "source": 619349605, "length": 115.57824386332655}, {"destination": 1720121311, "path": [[10861.115438444813, 7754.502305678201], [11292.815438444848, 7819.35230567754], [11647.115438449873, 7876.75230567686]], "source": 619349605, "length": 151.95465007580412}, {"destination": 618178241, "path": [[4996.865438450015, 8042.352305677625], [5057.76543844405, 7961.1023056767035], [5120.865438449584, 7880.95230567798], [5198.665438449269, 7815.90230567808], [5277.26543844409, 7766.952305678032], [5383.51543844584, 7732.752305678048], [5544.065438449763, 7711.4523056778235], [5698.66543844455, 7741.102305677927], [5807.965438449969, 7799.8523056770355], [5929.815438449282, 7904.052305677922], [5998.465438445066, 8007.102305677805], [6043.315438446939, 8117.352305676562], [6054.515438449926, 8221.55230567745], [6037.715438445446, 8311.402305677617], [6004.06543844656, 8408.452305676661], [5939.615438443014, 8507.902305677106], [5821.965438443044, 8601.352305676714], [5718.3154384432555, 8648.102305677696], [5568.41543844655, 8668.452305677476], [5419.915438444888, 8656.50230567816], [5219.615438448955, 8594.152305677839], [4894.4654384470705, 8427.702305677798], [4696.115438449056, 8331.652305678006]], "source": 618178152, "length": 631.7803293283858}, {"destination": 476562811, "path": [[4996.865438450015, 8042.352305677625], [4981.115438447148, 7968.25230567677], [5000.415438445316, 7712.602305677052], [5035.715438445721, 7156.952305678033], [5003.615438447185, 6972.2023056773], [4945.0154384444995, 6872.052305677556], [4823.8654384462625, 6724.102305676994], [4673.665438446051, 6632.352305677713], [4350.865438446761, 6546.802305678057], [3964.7654384467046, 6492.202305677708], [3798.765438446594, 6457.452305676626], [3674.4154384464878, 6399.952305677914], [3555.8654384431065, 6335.752305677289], [3470.465438446979, 6219.302305677133]], "source": 618178152, "length": 594.5510574686239}, {"destination": 654392159, "path": [[4996.865438450015, 8042.352305677625], [5026.715438447127, 7941.902305677928], [5159.065438448351, 7661.652305676725], [5261.01543844959, 7556.102305677825], [5480.965438444229, 7436.802305678114], [5724.765438444024, 7319.252305677537], [6030.415438445402, 7162.452305676581], [6168.465438449289, 7079.102305677765], [6268.565438446672, 7009.502305677984], [6403.315438447521, 6901.902305678221], [6614.315438447704, 6727.452305677062], [7237.515438447417, 6224.302305676943], [7402.665438448253, 6083.752305677592], [7566.415438446938, 5895.302305678029]], "source": 618178152, "length": 698.3661930380251}, {"destination": 1404152874, "path": [[-481.3845615529999, 8688.402305677911], [-428.78456155648337, 8936.502305678217]], "source": 1575913067, "length": 56.07478446786686}, {"destination": 856909476, "path": [[-481.3845615529999, 8688.402305677911], [-541.8345615524345, 8403.252305678066]], "source": 1575913067, "length": 64.44843381895019}, {"destination": 1404152850, "path": [[-481.3845615529999, 8688.402305677911], [-617.9345615535681, 8703.10230567739], [-974.7345615522818, 8750.15230567655]], "source": 1575913067, "length": 94.84492890193641}, {"destination": 601145322, "path": [[-4106.184561550208, 3727.152305676995], [-4060.1345615556284, 3707.20230567656], [-4015.484561556093, 3675.6023056767617], [-3900.0345615534115, 3568.952305677442], [-3849.2345615566137, 3530.8023056774828], [-3799.234561554954, 3509.70230567782], [-3736.884561554632, 3501.1523056773794], [-3644.984561553599, 3507.8023056769325]], "source": 483108462, "length": 106.17320554058641}, {"destination": 64813782, "path": [[-4106.184561550208, 3727.152305676995], [-4512.484561551844, 2950.6523056781475]], "source": 483108462, "length": 189.18618951540097}, {"destination": 4573378153, "path": [[3960.81543844673, 8958.702305676525], [4026.6654384453204, 8917.652305678203]], "source": 4573378152, "length": 15.499208765888493}, {"destination": 4573378139, "path": [[3960.81543844673, 8958.702305676525], [3983.565438446135, 8987.102305678007]], "source": 4573378152, "length": 7.656293924484025}, {"destination": 4573378140, "path": [[3960.81543844673, 8958.702305676525], [3932.8154384463687, 8923.702305677849]], "source": 4573378152, "length": 9.43163331142523}, {"destination": 1319641217, "path": [[4137.365438445784, 4413.202305677543], [4137.365438445784, 4470.502305677471]], "source": 1319641364, "length": 12.743291646845906}, {"destination": 1319641301, "path": [[4137.365438445784, 4413.202305677543], [3941.3154384462246, 4397.002305676523]], "source": 1319641364, "length": 37.460179000709104}, {"destination": 1319641175, "path": [[4137.365438445784, 4413.202305677543], [4137.365438445784, 4381.052305676647]], "source": 1319641364, "length": 7.149841962366826}, {"destination": 601662226, "path": [[-5872.984561555939, -955.4976943224602], [-5671.434561556054, -1032.5476943222611]], "source": 479299194, "length": 41.98411479058252}, {"destination": 479299222, "path": [[-5872.984561555939, -955.4976943224602], [-5702.23456155361, -416.14769432207765]], "source": 479299194, "length": 124.26366303817048}, {"destination": 479299959, "path": [[-5872.984561555939, -955.4976943224602], [-6006.784561556344, -899.0476943218084], [-6196.334561550998, -823.0976943224277]], "source": 479299194, "length": 68.18026780172907}, {"destination": 654379432, "path": [[7393.765438443723, 7414.352305676885], [6444.765438445188, 6811.002305678216]], "source": 654379967, "length": 224.90933196022615}, {"destination": 654381492, "path": [[7393.765438443723, 7414.352305676885], [7280.015438446697, 7596.752305676801], [7167.565438443546, 7787.352305676621]], "source": 654379967, "length": 93.45122899329786}, {"destination": 482733604, "path": [[7393.765438443723, 7414.352305676885], [7600.915438445099, 7082.152305677881], [7994.815438443937, 6375.052305678253]], "source": 654379967, "length": 257.91465554899366}, {"destination": 5021317153, "path": [[-9017.084561556032, -4327.347694323081], [-8869.384561556615, -4420.547694323318]], "source": 5021317141, "length": 34.905526274880565}, {"destination": 5021317155, "path": [[-9017.084561556032, -4327.347694323081], [-8967.734561551311, -4271.497694322335], [-8863.234561552246, -4291.897694322699], [-8762.384561556757, -4306.147694322249], [-8615.084561554908, -4306.147694322249], [-8601.834561552834, -4305.197694321805]], "source": 5021317141, "length": 85.92539155841536}, {"destination": 5021317148, "path": [[-9017.084561556032, -4327.347694323081], [-9058.8345615501, -4300.997694322461]], "source": 5021317141, "length": 9.866892982028913}, {"destination": 601097043, "path": [[-384.63456155568565, -6712.897694322706], [-428.58456155414615, -6711.797694322286]], "source": 1887541364, "length": 8.3607883874698}, {"destination": 2354289915, "path": [[-384.63456155568565, -6712.897694322706], [-412.4345615537095, -6985.8976943226735], [-427.5845615566709, -7130.447694322584]], "source": 1887541364, "length": 93.21744302454424}, {"destination": 3064901891, "path": [[-3114.7345615565314, 7324.652305676693], [-3062.5845615546154, 7341.852305676965], [-3012.634561549987, 7367.002305677772], [-2973.434561553745, 7401.302305677149], [-2942.63456155619, 7441.602305677364], [-2921.1845615506604, 7479.152305677417], [-2907.7345615533545, 7514.7523056777745]], "source": 3064901910, "length": 60.643277543267175}, {"destination": 3064901918, "path": [[-3114.7345615565314, 7324.652305676693], [-3024.5845615510802, 7131.752305676642]], "source": 3064901910, "length": 46.198843197506264}, {"destination": 1316196985, "path": [[-2543.984561555135, 1477.5523056780316], [-2417.9345615564785, 1429.4023056766746], [-2281.1345615565415, 1369.7523056777072], [-2002.184561554543, 1273.4523056767698], [-1802.5345615555466, 1191.1523056777896]], "source": 1316196983, "length": 154.81732572581706}, {"destination": 3064901886, "path": [[-3396.634561553924, 7711.002305677895], [-3375.984561550638, 7702.852305676799]], "source": 1575913101, "length": 4.325556667426294}, {"destination": 601712455, "path": [[-3396.634561553924, 7711.002305677895], [-3800.5845615529665, 7871.652305677657]], "source": 1575913101, "length": 84.73262541391199}, {"destination": 479300368, "path": [[-5702.23456155361, -416.14769432207765], [-6130.884561549976, -260.69769432268686]], "source": 479299222, "length": 88.54397253343714}, {"destination": 479299194, "path": [[-5702.23456155361, -416.14769432207765], [-5872.984561555939, -955.4976943224602]], "source": 479299222, "length": 124.26366303817048}, {"destination": 601145315, "path": [[-5702.23456155361, -416.14769432207765], [-5360.2345615502145, -553.8976943224583]], "source": 479299222, "length": 71.8915131383994}, {"destination": 483113556, "path": [[-5702.23456155361, -416.14769432207765], [-5558.734561553536, -18.69769432261137]], "source": 479299222, "length": 92.50579819825649}, {"destination": 475978728, "path": [[4474.315438443455, -505.09769432238727], [3827.1154384474926, -341.99769432241567]], "source": 103736983, "length": 128.31133879869472}, {"destination": 75354586, "path": [[4474.315438443455, -505.09769432238727], [4583.715438450043, -573.247694322987]], "source": 103736983, "length": 25.73958513134876}, {"destination": 1888382882, "path": [[4474.315438443455, -505.09769432238727], [4803.865438447019, -135.7976943232586], [4956.715438446225, 26.352305678045695], [5066.215438446875, 130.6523056765485], [5166.065438444889, 211.65230567810056], [5230.415438447267, 266.20230567786507], [5299.965438446463, 322.25230567739516]], "source": 103736983, "length": 242.3773503972883}, {"destination": 3064901908, "path": [[-3712.4845615537083, 7222.052305676741], [-3885.334561552156, 7334.802305678068]], "source": 3064901914, "length": 41.346969241044725}, {"destination": 3064901908, "path": [[-3712.4845615537083, 7222.052305676741], [-3862.634561556888, 6937.102305677456], [-4052.2845615527103, 7005.45230567684], [-3885.334561552156, 7334.802305678068]], "source": 3064901914, "length": 188.4825226458147}, {"destination": 619530378, "path": [[-541.8345615524345, 8403.252305678066], [-604.2345615568934, 8055.952305676684]], "source": 856909476, "length": 78.14276068760117}, {"destination": 1575913067, "path": [[-541.8345615524345, 8403.252305678066], [-481.3845615529999, 8688.402305677911]], "source": 856909476, "length": 64.44843381895019}, {"destination": 856909486, "path": [[-541.8345615524345, 8403.252305678066], [-207.33456155141994, 8375.452305678265], [37.765438449355315, 8355.852305676592], [280.81543844393764, 8274.502305678056], [507.66543844815715, 8213.302305676962]], "source": 856909476, "length": 205.63268954819264}, {"destination": 623411689, "path": [[507.66543844815715, 8213.302305676962], [887.0654384480758, 8882.652305677751], [1081.7654384496223, 9226.102305676775], [1151.2154384476503, 9347.952305677865], [1197.9154384462731, 9416.002305677295]], "source": 856909486, "length": 298.0057225091273}, {"destination": 856909476, "path": [[507.66543844815715, 8213.302305676962], [280.81543844393764, 8274.502305678056], [37.765438449355315, 8355.852305676592], [-207.33456155141994, 8375.452305678265], [-541.8345615524345, 8403.252305678066]], "source": 856909486, "length": 205.63268954819267}, {"destination": 623413798, "path": [[507.66543844815715, 8213.302305676962], [641.9154384431636, 8189.452305677136], [886.5654384493382, 8155.602305677689], [1191.665438447842, 8087.00230567716], [1380.5154384485263, 8035.952305677441], [1439.5154384487796, 8017.552305677355], [1460.9654384472037, 7976.302305676697], [1455.6154384450792, 7912.052305677264], [1450.015438443586, 7857.802305677453], [1442.0154384495731, 7665.752305676677]], "source": 856909486, "length": 262.0514547612355}, {"destination": 622622486, "path": [[507.66543844815715, 8213.302305676962], [390.3154384445884, 7985.102305678282], [307.16543844988564, 7801.352305676801]], "source": 856909486, "length": 99.25881048743099}, {"destination": 475979698, "path": [[5869.865438448585, 1164.2023056772643], [6070.615438446225, 1077.702305677164]], "source": 3356049693, "length": 42.75036428841106}, {"destination": 2367476059, "path": [[5869.865438448585, 1164.2023056772643], [5896.215438447427, 1208.1523056775013], [5988.165438445492, 1165.652305678222]], "source": 3356049693, "length": 30.861186056794388}, {"destination": 1883880248, "path": [[-582.084561550289, -7266.4976943226375], [-580.7845615564133, -7231.647694322163]], "source": 1887596162, "length": 7.754545528292847}, {"destination": 4824459322, "path": [[-582.084561550289, -7266.4976943226375], [-1279.2345615508793, -7108.197694321916], [-1442.584561551996, -7073.597694322587], [-1560.534561555471, -7039.5976943231635], [-1626.3345615570302, -7021.247694321886]], "source": 1887596162, "length": 205.97946351968167}, {"destination": 1887596197, "path": [[-582.084561550289, -7266.4976943226375], [-555.0845615545086, -7310.597694322852]], "source": 1887596162, "length": 11.069650502123453}, {"destination": 654575691, "path": [[-6919.484561556999, 2001.452305677276], [-6977.284561550334, 1853.4023056773208], [-7016.534561550714, 1698.2023056772987], [-7027.334561556131, 1655.4523056768744]], "source": 483116732, "length": 79.75025772124948}, {"destination": 857780861, "path": [[-6919.484561556999, 2001.452305677276], [-7013.084561556581, 2098.1023056769745]], "source": 483116732, "length": 27.908110692487014}, {"destination": 93246167, "path": [[-6919.484561556999, 2001.452305677276], [-6807.134561555017, 2197.802305676788]], "source": 483116732, "length": 48.61352321480522}, {"destination": 4402078168, "path": [[4696.115438449056, 8331.652305678006], [4585.065438448055, 8268.302305676656], [4474.715438448129, 8230.90230567658], [4340.6654384483545, 8209.302305678179], [4236.215438446323, 8209.152305678203], [4118.115438444647, 8231.452305677678], [4015.3154384441336, 8263.702305677967], [3905.7154384494197, 8319.752305677497], [3672.2654384462317, 8448.80230567746], [3360.4654384475907, 8610.652305677035], [3279.5654384472073, 8651.252305677204], [3179.4654384498244, 8705.252305677646], [3126.8654384462025, 8738.702305677747], [3060.615438450043, 8786.802305676743], [2993.5654384445343, 8833.402305677751]], "source": 618178241, "length": 369.9255962973301}, {"destination": 1618037688, "path": [[4696.115438449056, 8331.652305678006], [4603.865438447485, 8306.302305676638], [4476.16543844731, 8266.452305678129], [4362.665438449653, 8259.502305676848], [4246.065438444191, 8263.852305677943], [4144.7154384499645, 8282.052305677467], [4022.1154384454394, 8320.202305677427], [3869.065438443897, 8395.602305677485], [3653.1654384432954, 8506.552305677318], [3330.865438449848, 8673.852305676632], [3091.2654384493976, 8814.002305676639]], "source": 618178241, "length": 341.06470313327793}, {"destination": 1581175514, "path": [[2467.2154384433043, -6496.597694322759], [2504.5154384457646, -6421.147694322116], [2581.265438443836, -6253.497694322263], [2601.6154384436163, -6197.997694322055]], "source": 1581175468, "length": 71.18965102500997}, {"destination": 495629563, "path": [[2467.2154384433043, -6496.597694322759], [2459.7654384450607, -6511.647694322775]], "source": 1581175468, "length": 3.6349238454683555}, {"destination": 1581175517, "path": [[2467.2154384433043, -6496.597694322759], [2447.365438449367, -6480.7476943222755]], "source": 1581175468, "length": 5.163300675688157}, {"destination": 4333704544, "path": [[-8041.73456155155, 2326.3523056780145], [-7985.634561556764, 2478.102305676799]], "source": 251086533, "length": 35.393986631780415}, {"destination": 3724314425, "path": [[-8041.73456155155, 2326.3523056780145], [-8080.58456155436, 2217.1023056767326]], "source": 251086533, "length": 25.394828816166743}, {"destination": 71129470, "path": [[-8041.73456155155, 2326.3523056780145], [-8018.534561550439, 2320.5523056777365], [-7862.384561555302, 2281.6523056778947], [-7705.134561554416, 2240.7523056777736]], "source": 251086533, "length": 66.78588780901748}, {"destination": 1319641032, "path": [[4912.665438446595, 4388.402305677275], [5046.815438447538, 4375.002305677001]], "source": 1319641377, "length": 25.687008814863596}, {"destination": 1319641200, "path": [[4912.665438446595, 4388.402305677275], [4865.715438448604, 4606.352305676964]], "source": 1319641377, "length": 49.28566350184585}, {"destination": 1319641221, "path": [[4912.665438446595, 4388.402305677275], [4708.415438443581, 4378.852305677583]], "source": 1319641377, "length": 38.904072103238924}, {"destination": 1319641101, "path": [[4912.665438446595, 4388.402305677275], [4921.315438444652, 4277.752305677396]], "source": 1319641377, "length": 24.66239079007194}, {"destination": 63312200, "path": [[5197.715438448824, -6742.497694322225], [5330.015438445912, -6713.747694321981], [5479.315438449817, -6685.447694323443], [5577.615438447481, -6657.797694321843], [5981.115438444817, -6499.347694322922], [6294.165438447408, -6378.297694322299], [6688.565438444983, -6197.397694322149]], "source": 2049850521, "length": 309.57177435168296}, {"destination": 2049850503, "path": [[5197.715438448824, -6742.497694322225], [5223.6154384459605, -6722.09769432186], [5246.065438448966, -6702.147694323202]], "source": 2049850521, "length": 12.852384635782265}, {"destination": 4715107668, "path": [[-200.08456155551357, -4184.097694322375], [-206.98456155088252, -4198.547694322486]], "source": 4715079372, "length": 3.4700166639504486}, {"destination": 4715107669, "path": [[109.91543844340868, -4308.397694321897], [102.86543844983953, -4319.897694323061]], "source": 4715079375, "length": 2.8889087524601744}, {"destination": 1315785441, "path": [[-4796.434561555429, 645.9023056777369], [-4811.084561552548, 579.7023056768325]], "source": 301639384, "length": 14.983265584934983}, {"destination": 1315785327, "path": [[-4796.434561555429, 645.9023056777369], [-4753.984561553181, 638.0523056765952], [-4094.1845615520833, 463.7523056771897]], "source": 301639384, "length": 139.58682942806817}, {"destination": 476559359, "path": [[3673.6654384483813, 4625.302305678148], [3491.2654384484654, 4550.6023056773865]], "source": 1319641380, "length": 38.46326341059163}, {"destination": 1319641127, "path": [[3673.6654384483813, 4625.302305678148], [3694.9654384486053, 4477.852305678099], [3701.965438445143, 4441.752305677227]], "source": 1319641380, "length": 41.17871425978036}, {"destination": 476561683, "path": [[7908.165438443859, 5216.002305678202], [7800.96543844877, 5193.202305678213]], "source": 476559301, "length": 21.009706595849547}, {"destination": 654391101, "path": [[7908.165438443859, 5216.002305678202], [7941.765438445714, 4948.1023056774375], [7941.515438446345, 4684.452305676601], [7869.915438448061, 4534.10230567819], [7768.715438444929, 4381.102305677231], [7573.865438445182, 4035.302305677391], [7364.115438448948, 3574.052305676645], [7195.815438443276, 2908.70230567819]], "source": 476559301, "length": 540.5649236070549}, {"destination": 1489398792, "path": [[3428.6154384446377, -7231.897694323308], [3462.1154384453234, -7200.9476943222235], [3470.1654384434732, -7175.697694322025]], "source": 1489398735, "length": 15.198524119121299}, {"destination": 1489398789, "path": [[3428.6154384446377, -7231.897694323308], [3429.9654384497558, -7260.547694322384]], "source": 1489398735, "length": 6.376241313253919}, {"destination": 1489398823, "path": [[3428.6154384446377, -7231.897694323308], [3389.715438444796, -7205.4976943221045], [3353.5154384480848, -7190.597694322065], [3305.215438444975, -7176.84769432303]], "source": 1489398735, "length": 26.762579589739588}, {"destination": 1404152800, "path": [[-1631.8345615502494, 7418.702305677982], [-1551.3345615545404, 7551.752305676729], [-1610.5845615541625, 7617.902305677049]], "source": 1404152786, "length": 51.84685289044371}, {"destination": 1887596173, "path": [[-420.0845615542903, -6224.397694323258], [-423.6345615566961, -6280.147694322835], [-474.58456155169415, -6530.097694323445], [-505.734561556892, -6697.197694322199]], "source": 1887596164, "length": 106.47141166614313}, {"destination": 1887596198, "path": [[-420.0845615542903, -6224.397694323258], [-394.13456155301674, -6051.997694322964], [-359.2845615543183, -5814.647694322161], [-319.0345615564638, -5581.847694323016], [-311.4845615570516, -5556.997694322164]], "source": 1887596164, "length": 149.9010756996522}, {"destination": 1883254799, "path": [[-420.0845615542903, -6224.397694323258], [-361.53456155574304, -6229.897694321807]], "source": 1887596164, "length": 11.200369460526197}, {"destination": 1890862891, "path": [[-8430.834561551137, -1797.8976943222592], [-8400.38456155412, -1815.8976943229986]], "source": 1890862842, "length": 7.039319851872387}, {"destination": 1890862891, "path": [[-8430.834561551137, -1797.8976943222592], [-8427.834561551606, -1791.997694322589], [-8422.43456155245, -1787.99769432203], [-8415.734561552312, -1785.6976943217974], [-8409.034561552176, -1785.6976943217974], [-8403.034561553113, -1786.8476943228018], [-8398.334561555032, -1790.2976943222625], [-8393.634561556952, -1795.4476943220498], [-8392.33456155597, -1801.7476943228417], [-8393.634561556952, -1807.4976943225352], [-8400.38456155412, -1815.8976943229986]], "source": 1890862842, "length": 14.222541109322693}, {"destination": 1890818645, "path": [[-8430.834561551137, -1797.8976943222592], [-8438.534561555854, -1793.2976943217936], [-8487.484561555902, -1765.0476943220638]], "source": 1890862842, "length": 13.016302724459461}, {"destination": 2716408652, "path": [[-7320.934561555248, 7612.602305677285], [-7455.234561554391, 7654.052305676729]], "source": 601661206, "length": 27.15651224847899}, {"destination": 601661132, "path": [[-7320.934561555248, 7612.602305677285], [-7338.434561553697, 7577.302305676881], [-7348.884561551472, 7537.9023056765245], [-7434.884561554611, 7051.452305677941], [-7549.684561553249, 6515.702305676996], [-7616.084561554715, 6208.702305677605]], "source": 601661206, "length": 317.48517521829325}, {"destination": 623406700, "path": [[-7320.934561555248, 7612.602305677285], [-7288.334561550869, 7657.052305678036], [-7252.434561550558, 7687.002305678092]], "source": 601661206, "length": 21.20795445820214}, {"destination": 1581175394, "path": [[3018.2154384448268, -5689.197694323411], [2929.6654384438625, -5635.997694323436]], "source": 495640875, "length": 20.578883632299608}, {"destination": 4451234412, "path": [[3018.2154384448268, -5689.197694323411], [3150.5654384460513, -5555.047694322468]], "source": 495640875, "length": 39.03047203083928}, {"destination": 1721498218, "path": [[3018.2154384448268, -5689.197694323411], [3069.7654384468365, -5725.647694323044], [3105.3654384436413, -5749.747694322238]], "source": 495640875, "length": 21.35400502492616}, {"destination": 623411689, "path": [[1269.7154384468945, 9514.002305676782], [1197.9154384462731, 9416.002305677295]], "source": 1404618503, "length": 25.719618791885377}, {"destination": 1404618557, "path": [[1269.7154384468945, 9514.002305676782], [1601.0154384460407, 9271.452305677385]], "source": 1404618503, "length": 82.9496674025366}, {"destination": 1316623602, "path": [[1719.4654384482533, -1628.9976943220097], [1826.3654384469419, -1630.397694322383]], "source": 152848137, "length": 20.330816769597863}, {"destination": 1316623714, "path": [[1719.4654384482533, -1628.9976943220097], [1715.4154384471099, -1536.2476943234783], [1736.865438445534, -1442.2476943227734]], "source": 152848137, "length": 41.93997248329492}, {"destination": 1404618576, "path": [[2314.615438443468, 9041.652305677771], [2267.8654384478136, 9001.352305677558], [2232.16543844984, 8967.902305677455]], "source": 1404618506, "length": 22.697449711412727}, {"destination": 1404152836, "path": [[2314.615438443468, 9041.652305677771], [2093.565438443079, 9225.902305677992]], "source": 1404618506, "length": 58.70956337072577}, {"destination": 1404618518, "path": [[2314.615438443468, 9041.652305677771], [2384.16543844977, 8988.402305677213]], "source": 1404618506, "length": 17.75521019381107}, {"destination": 477602810, "path": [[-8101.784561553415, -1104.5976943222513], [-8434.634561552912, -968.3476943234126]], "source": 78604047, "length": 70.17590921782637}, {"destination": 1404618560, "path": [[2384.16543844977, 8988.402305677213], [2778.01543844447, 8690.752305676951]], "source": 1404618518, "length": 99.96831724701376}, {"destination": 1404618506, "path": [[2384.16543844977, 8988.402305677213], [2314.615438443468, 9041.652305677771]], "source": 1404618518, "length": 17.75521019381107}, {"destination": 1404618604, "path": [[2384.16543844977, 8988.402305677213], [2434.1654384443245, 9029.00230567738], [2461.7654384471166, 9061.80230567699]], "source": 1404618518, "length": 22.101486262209107}, {"destination": 1404618601, "path": [[1715.4154384471099, 9381.952305677289], [2011.6154384481888, 9145.102305677]], "source": 1404618520, "length": 77.12742874719675}, {"destination": 1404152810, "path": [[1715.4154384471099, 9381.952305677289], [1801.1654384437747, 9464.752305676782]], "source": 1404618520, "length": 24.59872125258759}, {"destination": 1404618557, "path": [[1715.4154384471099, 9381.952305677289], [1601.0154384460407, 9271.452305677385]], "source": 1404618520, "length": 32.82350518982271}, {"destination": 1404618560, "path": [[2650.765438446001, 8641.702305677512], [2778.01543844447, 8690.752305676951]], "source": 1404618523, "length": 26.548333305174033}, {"destination": 1404618536, "path": [[2650.765438446001, 8641.702305677512], [2555.2154384484993, 8601.752305677834], [2494.3154384473587, 8570.402305677404]], "source": 1404618523, "length": 33.74904310778229}, {"destination": 1404618499, "path": [[2650.765438446001, 8641.702305677512], [2351.015438449622, 8870.752305677242]], "source": 1404618523, "length": 76.45503471350814}, {"destination": 477626820, "path": [[-8595.034561551529, -6639.847694323464], [-8269.534561556213, -6730.247694322955], [-7765.534561556819, -6836.547694321737]], "source": 477636380, "length": 163.78068203646387}, {"destination": 156253438, "path": [[-8595.034561551529, -6639.847694323464], [-8697.88456155618, -6603.597694322616]], "source": 477636380, "length": 21.152926618798375}, {"destination": 477636511, "path": [[-8595.034561551529, -6639.847694323464], [-8466.034561550372, -6581.847694322462], [-8364.884561551378, -6548.597694322922], [-8276.484561555719, -6526.547694322815]], "source": 477636380, "length": 65.82827117905518}, {"destination": 622622524, "path": [[3256.9654384460023, 8358.40230567797], [3244.565438443203, 8405.102305676593], [3226.4654384448477, 8534.652305677071], [3222.2154384484725, 8642.952305677909]], "source": 1404618525, "length": 63.76460897968651}, {"destination": 1404618598, "path": [[3256.9654384460023, 8358.40230567797], [2986.715438446197, 8301.802305677342]], "source": 1404618525, "length": 52.921713822514334}, {"destination": 622622495, "path": [[3256.9654384460023, 8358.40230567797], [3346.5154384444418, 8021.502305677331]], "source": 1404618525, "length": 76.83497012936331}, {"destination": 601712418, "path": [[-9075.484561556379, 9219.6023056772], [-9068.2845615504, 9237.352305676794]], "source": 601712416, "length": 4.179316077870522}, {"destination": 601712416, "path": [[-9068.2845615504, 9237.352305676794], [-9075.484561556379, 9219.6023056772]], "source": 601712418, "length": 4.179316077870522}, {"destination": 601712535, "path": [[-9068.2845615504, 9237.352305676794], [-8584.934561554292, 9153.302305676902]], "source": 601712418, "length": 93.81811251104548}, {"destination": 1404618523, "path": [[2494.3154384473587, 8570.402305677404], [2555.2154384484993, 8601.752305677834], [2650.765438446001, 8641.702305677512]], "source": 1404618536, "length": 33.74904310778229}, {"destination": 623411694, "path": [[2494.3154384473587, 8570.402305677404], [2384.0154384444645, 8507.102305676639]], "source": 1404618536, "length": 25.26477825736346}, {"destination": 1404618559, "path": [[2494.3154384473587, 8570.402305677404], [2121.9654384481146, 8864.652305677013]], "source": 1404618536, "length": 96.42673666970882}, {"destination": 1890862842, "path": [[-8400.38456155412, -1815.8976943229986], [-8430.834561551137, -1797.8976943222592]], "source": 1890862891, "length": 7.039319851872387}, {"destination": 1890862842, "path": [[-8400.38456155412, -1815.8976943229986], [-8393.634561556952, -1807.4976943225352], [-8392.33456155597, -1801.7476943228417], [-8393.634561556952, -1795.4476943220498], [-8398.334561555032, -1790.2976943222625], [-8403.034561553113, -1786.8476943228018], [-8409.034561552176, -1785.6976943217974], [-8415.734561552312, -1785.6976943217974], [-8422.43456155245, -1787.99769432203], [-8427.834561551606, -1791.997694322589], [-8430.834561551137, -1797.8976943222592]], "source": 1890862891, "length": 14.222541109322693}, {"destination": 1890818669, "path": [[-8400.38456155412, -1815.8976943229986], [-8395.084561556132, -1818.9976943219222], [-8222.08456155238, -1928.9476943225027]], "source": 1890862891, "length": 42.21317251325355}, {"destination": 1404152785, "path": [[1897.2154384471196, 9033.702305677238], [1807.0154384446369, 8950.352305676646]], "source": 1404618542, "length": 25.257642624425635}, {"destination": 1404618601, "path": [[1897.2154384471196, 9033.702305677238], [2011.6154384481888, 9145.102305677]], "source": 1404618542, "length": 32.97363267659791}, {"destination": 1404618557, "path": [[1897.2154384471196, 9033.702305677238], [1601.0154384460407, 9271.452305677385]], "source": 1404618542, "length": 77.26414494112805}, {"destination": 1404618559, "path": [[1897.2154384471196, 9033.702305677238], [2121.9654384481146, 8864.652305677013]], "source": 1404618542, "length": 56.9288137328454}, {"destination": 1404618528, "path": [[1745.3154384483582, 9504.602305677068], [1787.7654384435004, 9547.502305677468], [1815.1154384469237, 9575.402305676662]], "source": 1404618543, "length": 20.59629196064663}, {"destination": 1404152810, "path": [[1745.3154384483582, 9504.602305677068], [1801.1654384437747, 9464.752305676782]], "source": 1404618543, "length": 13.834538925915647}, {"destination": 1319204555, "path": [[4505.615438446853, 2310.7523056768996], [4477.365438447123, 2170.0523056775723]], "source": 1319204488, "length": 31.748202669941577}, {"destination": 1319204501, "path": [[4505.615438446853, 2310.7523056768996], [4674.565438449463, 2284.152305676912], [4968.815438445517, 2159.4523056780445]], "source": 1319204488, "length": 95.12634793788564}, {"destination": 476560879, "path": [[4505.615438446853, 2310.7523056768996], [4445.665438446156, 2318.2023056769194], [4385.965438444828, 2326.952305677921], [4277.215438449389, 2319.8523056766617], [3938.7154384442624, 2181.8523056769122]], "source": 1319204488, "length": 115.09982923641985}, {"destination": 1319204565, "path": [[5017.165438445659, 2062.452305677809], [4958.165438445405, 1908.7523056775524]], "source": 1319204489, "length": 35.975894407134255}, {"destination": 1172174596, "path": [[-7904.084561552338, -4084.64769432193], [-7922.834561554737, -4112.6476943222915]], "source": 1990203575, "length": 7.175636715555411}, {"destination": 5021317181, "path": [[-7904.084561552338, -4084.64769432193], [-7685.134561555174, -4185.24769432338], [-7528.884561551763, -4247.247694323164], [-7513.984561555276, -4221.097694323106], [-7640.034561553932, -4170.697694322101], [-7401.184561551589, -3797.8976943229272], [-7282.484561550007, -3621.097694322728]], "source": 1990203575, "length": 252.81760944045936}, {"destination": 1990174510, "path": [[-7904.084561552338, -4084.64769432193], [-7838.034561551411, -3987.347694321741]], "source": 1990203575, "length": 25.019584272828883}, {"destination": 3724314427, "path": [[-8080.58456155436, 2217.1023056767326], [-8133.834561554921, 2249.252305677629], [-8181.284561551649, 2268.402305677597], [-8348.43456155454, 2312.0523056778807]], "source": 3724314425, "length": 55.61307426191594}, {"destination": 1462576341, "path": [[-8080.58456155436, 2217.1023056767326], [-8080.6845615555285, 2216.8023056767793], [-8088.684561556647, 2189.8523056780305], [-8086.684561554592, 2162.852305676921]], "source": 3724314425, "length": 12.33516209834635}, {"destination": 251086533, "path": [[-8080.58456155436, 2217.1023056767326], [-8041.73456155155, 2326.3523056780145]], "source": 3724314425, "length": 25.394828816166743}, {"destination": 3724314425, "path": [[-8348.43456155454, 2312.0523056778807], [-8181.284561551649, 2268.402305677597], [-8133.834561554921, 2249.252305677629], [-8080.58456155436, 2217.1023056767326]], "source": 3724314427, "length": 55.61307426191593}, {"destination": 623406666, "path": [[-8380.284561553708, 9104.452305678024], [-6866.234561556439, 8840.352305677257]], "source": 601712444, "length": 293.91178770059315}, {"destination": 623417131, "path": [[-8380.284561553708, 9104.452305678024], [-8476.184561551747, 8864.252305677666], [-8547.4345615566, 8645.452305676927]], "source": 601712444, "length": 106.95760240345476}, {"destination": 601712540, "path": [[-8380.284561553708, 9104.452305678024], [-8592.484561553703, 9131.052305678011]], "source": 601712444, "length": 40.79330335035085}, {"destination": 1404618520, "path": [[1601.0154384460407, 9271.452305677385], [1715.4154384471099, 9381.952305677289]], "source": 1404618557, "length": 32.82350518982271}, {"destination": 1404152821, "path": [[1601.0154384460407, 9271.452305677385], [1507.0154384488887, 9179.702305678105]], "source": 1404618557, "length": 27.12961655142017}, {"destination": 1404618542, "path": [[1601.0154384460407, 9271.452305677385], [1897.2154384471196, 9033.702305677238]], "source": 1404618557, "length": 77.26414494112805}, {"destination": 1404618503, "path": [[1601.0154384460407, 9271.452305677385], [1269.7154384468945, 9514.002305676782]], "source": 1404618557, "length": 82.9496674025366}, {"destination": 1404618536, "path": [[2121.9654384481146, 8864.652305677013], [2494.3154384473587, 8570.402305677404]], "source": 1404618559, "length": 96.42673666970882}, {"destination": 1404152809, "path": [[2121.9654384481146, 8864.652305677013], [2033.515438448319, 8774.05230567696]], "source": 1404618559, "length": 26.24891734674619}, {"destination": 1404618576, "path": [[2121.9654384481146, 8864.652305677013], [2232.16543844984, 8967.902305677455]], "source": 1404618559, "length": 31.09015823044943}, {"destination": 1404618542, "path": [[2121.9654384481146, 8864.652305677013], [1897.2154384471196, 9033.702305677238]], "source": 1404618559, "length": 56.9288137328454}, {"destination": 1404618523, "path": [[2778.01543844447, 8690.752305676951], [2650.765438446001, 8641.702305677512]], "source": 1404618560, "length": 26.548333305174033}, {"destination": 1404618501, "path": [[2778.01543844447, 8690.752305676951], [2877.215438445546, 8730.402305676676]], "source": 1404618560, "length": 20.82724138306486}, {"destination": 1404618518, "path": [[2778.01543844447, 8690.752305676951], [2384.16543844977, 8988.402305677213]], "source": 1404618560, "length": 99.96831724701376}, {"destination": 1572286538, "path": [[-8852.084561553398, -581.6476943234505], [-8719.334561554604, -216.4976943230812]], "source": 2531707872, "length": 85.03936382444672}, {"destination": 1469016587, "path": [[-8852.084561553398, -581.6476943234505], [-8820.334561555399, -612.5976943227585]], "source": 2531707872, "length": 9.156225899544626}, {"destination": 5002561614, "path": [[-8852.084561553398, -581.6476943234505], [-8883.334561552658, -642.8476943227679]], "source": 2531707872, "length": 14.851251861089867}, {"destination": 623412583, "path": [[1959.4154384492413, 8065.55230567696], [1924.665438444606, 8086.052305676716], [1916.5154384452876, 8132.0523056778175], [1956.8654384443107, 8166.352305677194], [2039.8654384479187, 8194.002305677017], [2222.415438446035, 8219.10230567724], [2340.4154384465414, 8237.45230567674], [2453.7654384459984, 8263.902305676751]], "source": 1404618566, "length": 126.46456711487008}, {"destination": 3047470160, "path": [[-3800.5845615529665, 7871.652305677657], [-4679.884561554104, 8423.952305676608]], "source": 601712455, "length": 207.50336023653838}, {"destination": 483103400, "path": [[-3800.5845615529665, 7871.652305677657], [-3967.3845615553205, 7673.05230567672], [-4036.784561556317, 7564.252305677144], [-4147.63456155498, 7390.452305678253], [-4503.134561552713, 6635.552305677806]], "source": 601712455, "length": 306.95808745518036}, {"destination": 1575913101, "path": [[-3800.5845615529665, 7871.652305677657], [-3396.634561553924, 7711.002305677895]], "source": 601712455, "length": 84.73262541391199}, {"destination": 856909256, "path": [[-2137.1845615547613, 7211.502305677797], [-2070.4845615568956, 7452.252305677476], [-1916.4845615549098, 7909.652305677639]], "source": 601712458, "length": 160.87750727254192}, {"destination": 2991482211, "path": [[-2137.1845615547613, 7211.502305677797], [-2584.3845615511896, 7387.452305676945]], "source": 601712458, "length": 93.62660149015451}, {"destination": 601712459, "path": [[-2137.1845615547613, 7211.502305677797], [-2058.234561552297, 7186.802305676921]], "source": 601712458, "length": 15.989223772647506}, {"destination": 3047465736, "path": [[-2058.234561552297, 7186.802305676921], [-1629.4345615506245, 7059.80230567782]], "source": 601712459, "length": 86.30972718014041}, {"destination": 601712458, "path": [[-2058.234561552297, 7186.802305676921], [-2137.1845615547613, 7211.502305677797]], "source": 601712459, "length": 15.989223772647506}, {"destination": 479297947, "path": [[-2058.234561552297, 7186.802305676921], [-2159.0345615507545, 6843.052305677944], [-2231.9845615541567, 6685.252305677735], [-2410.884561555804, 6349.252305676956]], "source": 601712459, "length": 198.655998352059}, {"destination": 1315785491, "path": [[-4854.334561557039, 436.9523056766411], [-4705.984561553578, 397.75230567684616]], "source": 481390556, "length": 29.528429641309557}, {"destination": 482733092, "path": [[-4854.334561557039, 436.9523056766411], [-4913.784561551893, 287.85230567685005], [-5115.084561552408, -177.29769432328624]], "source": 481390556, "length": 145.33376547502763}, {"destination": 601145318, "path": [[-4854.334561557039, 436.9523056766411], [-4928.3845615519795, 455.5023056767027]], "source": 481390556, "length": 14.673897984939178}, {"destination": 3113821627, "path": [[-6679.284561556642, 2406.2023056767857], [-6638.384561554744, 2411.9523056782555], [-6612.234561551133, 2429.152305676752], [-6601.53456155399, 2458.4023056775095], [-6598.834561550859, 2507.152305676996]], "source": 3113822031, "length": 31.82524329975383}, {"destination": 1404618601, "path": [[2232.16543844984, 8967.902305677455], [2011.6154384481888, 9145.102305677]], "source": 1404618576, "length": 57.55687137901539}, {"destination": 1404618506, "path": [[2232.16543844984, 8967.902305677455], [2267.8654384478136, 9001.352305677558], [2314.615438443468, 9041.652305677771]], "source": 1404618576, "length": 22.697449711412727}, {"destination": 1404618559, "path": [[2232.16543844984, 8967.902305677455], [2121.9654384481146, 8864.652305677013]], "source": 1404618576, "length": 31.09015823044943}, {"destination": 93180322, "path": [[11233.515438448194, -891.4976943223962], [11201.665438449027, -950.4976943226495]], "source": 93792082, "length": 14.452029275206856}, {"destination": 602392037, "path": [[11233.515438448194, -891.4976943223962], [11280.465438446186, -798.2976943221587]], "source": 93792082, "length": 22.568290846359567}, {"destination": 85521110, "path": [[11233.515438448194, -891.4976943223962], [9977.16543844973, -409.9976943230388]], "source": 93792082, "length": 261.8174296899926}, {"destination": 495646546, "path": [[7909.515438448978, -7200.197694322341], [7905.765438444234, -7226.747694321744], [7893.415438445572, -7262.297694323294]], "source": 495646350, "length": 14.193754163174528}, {"destination": 495646348, "path": [[7909.515438448978, -7200.197694322341], [7989.315438443611, -7188.297694321833]], "source": 495646350, "length": 15.402377866066509}, {"destination": 495646351, "path": [[7909.515438448978, -7200.197694322341], [7856.015438449049, -7160.347694322056]], "source": 495646350, "length": 13.49152406433696}, {"destination": 1404037047, "path": [[-969.4345615542943, 5120.052305677802], [-1090.1345615508262, 5154.452305676571]], "source": 1404036950, "length": 24.19754996064769}, {"destination": 1404037044, "path": [[-491.28456155500544, 5158.852305678252], [-453.0345615521014, 5233.2523056772825]], "source": 1404036952, "length": 18.074669127846498}, {"destination": 1404037125, "path": [[-491.28456155500544, 5158.852305678252], [-559.084561551515, 5161.352305677269], [-660.8845615545533, 5147.602305678234], [-746.8345615535554, 5129.252305676957]], "source": 1404036952, "length": 49.35667827216929}, {"destination": 1404037015, "path": [[-491.28456155500544, 5158.852305678252], [-505.33456155221756, 5131.552305677189]], "source": 1404036952, "length": 6.633263031014306}, {"destination": 1404036985, "path": [[821.6154384470542, 6831.202305678019], [1380.0154384497887, 6819.852305676833]], "source": 1404036954, "length": 106.23703280456611}, {"destination": 1404036979, "path": [[821.6154384470542, 6831.202305678019], [809.965438449467, 6725.902305676712]], "source": 1404036954, "length": 23.52215719740721}, {"destination": 1404037100, "path": [[821.6154384470542, 6831.202305678019], [832.7654384459038, 6955.052305677611]], "source": 1404036954, "length": 27.624579493118958}, {"destination": 1316197000, "path": [[-1339.684561550314, 1207.352305677034], [-1309.1345615521277, 1274.0023056778682]], "source": 1316196990, "length": 15.920306818761043}, {"destination": 1316196984, "path": [[-1339.684561550314, 1207.352305677034], [-1346.7845615551255, 1191.80230567828], [-1373.834561555043, 1136.402305677464]], "source": 1316196990, "length": 17.064595679333266}, {"destination": 1316196998, "path": [[-1339.684561550314, 1207.352305677034], [-1522.0845615502299, 1271.1523056765373], [-1713.0845615511703, 1356.7523056767782]], "source": 1316196990, "length": 78.48753746280016}, {"destination": 601662226, "path": [[-5607.434561554214, -1058.4976943217584], [-5671.434561556054, -1032.5476943222611]], "source": 601663327, "length": 13.469461050286645}, {"destination": 601663332, "path": [[-5607.434561554214, -1058.4976943217584], [-5910.8345615541675, -1536.1476943223097]], "source": 601663327, "length": 120.88237085993356}, {"destination": 479292469, "path": [[-5607.434561554214, -1058.4976943217584], [-4985.584561552514, -1379.5476943219142]], "source": 601663327, "length": 138.13751304716237}, {"destination": 477640288, "path": [[-4866.484561553363, -6123.2976943230715], [-4921.234561550136, -6328.79769432293], [-4948.934561554097, -6436.7476943232305], [-4933.3845615535665, -6474.44769432326]], "source": 1314685709, "length": 80.34041517065147}, {"destination": 477640296, "path": [[-4866.484561553363, -6123.2976943230715], [-4763.934561552219, -5880.547694323112]], "source": 1314685709, "length": 57.39881328592927}, {"destination": 1314685710, "path": [[-4866.484561553363, -6123.2976943230715], [-4647.43456155503, -6168.297694323144], [-4319.384561554784, -6235.697694322084]], "source": 1314685709, "length": 106.98992502644568}, {"destination": 1314685711, "path": [[-4866.484561553363, -6123.2976943230715], [-5232.734561552377, -6048.897694322264]], "source": 1314685709, "length": 71.57980486134346}, {"destination": 1315785624, "path": [[-5910.8345615541675, -1536.1476943223097], [-5580.134561554928, -1709.4476943224636]], "source": 601663332, "length": 73.75768272912663}, {"destination": 3355899009, "path": [[-5910.8345615541675, -1536.1476943223097], [-5973.384561556827, -1601.8976943232842], [-6130.634561550607, -1836.797694322101], [-6225.48456155414, -1990.2976943217964]], "source": 601663332, "length": 117.65122390293942}, {"destination": 1404618525, "path": [[2986.715438446197, 8301.802305677342], [3256.9654384460023, 8358.40230567797]], "source": 1404618598, "length": 52.921713822514334}, {"destination": 1404037024, "path": [[-709.2845615517263, 5324.202305677872], [-734.584561556062, 5271.952305676564]], "source": 1404036968, "length": 12.57670550761334}, {"destination": 1404037134, "path": [[-709.2845615517263, 5324.202305677872], [-572.5345615559263, 5275.702305677754], [-550.4345615534589, 5267.852305676613]], "source": 1404036968, "length": 32.706612327807136}, {"destination": 1404036975, "path": [[-709.2845615517263, 5324.202305677872], [-801.0345615545589, 5369.052305677968]], "source": 1404036968, "length": 20.099425123057333}, {"destination": 1404618520, "path": [[2011.6154384481888, 9145.102305677], [1715.4154384471099, 9381.952305677289]], "source": 1404618601, "length": 77.12742874719675}, {"destination": 1404618576, "path": [[2011.6154384481888, 9145.102305677], [2232.16543844984, 8967.902305677455]], "source": 1404618601, "length": 57.55687137901539}, {"destination": 1404152836, "path": [[2011.6154384481888, 9145.102305677], [2093.565438443079, 9225.902305677992]], "source": 1404618601, "length": 23.787909666618614}, {"destination": 1404618542, "path": [[2011.6154384481888, 9145.102305677], [1897.2154384471196, 9033.702305677238]], "source": 1404618601, "length": 32.97363267659791}, {"destination": 601662226, "path": [[-5982.7845615529895, -1511.1976943220639], [-5671.434561556054, -1032.5476943222611]], "source": 601663340, "length": 121.80556307290516}, {"destination": 601663332, "path": [[-5982.7845615529895, -1511.1976943220639], [-5910.8345615541675, -1536.1476943223097]], "source": 601663340, "length": 14.76482525269692}, {"destination": 1404036968, "path": [[-801.0345615545589, 5369.052305677968], [-709.2845615517263, 5324.202305677872]], "source": 1404036975, "length": 20.099425123057333}, {"destination": 1404037029, "path": [[-801.0345615545589, 5369.052305677968], [-744.1345615504247, 5466.45230567755], [-718.534561556794, 5455.0023056769705]], "source": 1404036975, "length": 29.706705562088047}, {"destination": 1404037030, "path": [[-801.0345615545589, 5369.052305677968], [-821.9345615501084, 5379.25230567815]], "source": 1404036975, "length": 4.576636218498792}, {"destination": 1404036954, "path": [[809.965438449467, 6725.902305676712], [821.6154384470542, 6831.202305678019]], "source": 1404036979, "length": 23.52215719740721}, {"destination": 1404037067, "path": [[809.965438449467, 6725.902305676712], [582.1154384477722, 6749.70230567773]], "source": 1404036979, "length": 43.658739868572134}, {"destination": 856909354, "path": [[809.965438449467, 6725.902305676712], [1121.715438443971, 6699.352305677308], [1508.46543844807, 6691.7023056767275]], "source": 1404036979, "length": 133.166486626432}, {"destination": 1404037018, "path": [[-226.48456155138774, 5090.252305677723], [-216.23456155595022, 5125.952305677472]], "source": 1404036983, "length": 8.175478709558503}, {"destination": 1404036954, "path": [[1380.0154384497887, 6819.852305676833], [821.6154384470542, 6831.202305678019]], "source": 1404036985, "length": 106.23703280456611}, {"destination": 476558313, "path": [[-561.7845615546457, 5009.302305676755], [-709.8345615546009, 4992.702305678165], [-895.8345615539542, 4911.602305677221]], "source": 1404036994, "length": 68.10708052292037}, {"destination": 481498557, "path": [[-561.7845615546457, 5009.302305676755], [-456.38456155217, 4990.2523056779555], [-357.1345615540622, 4970.202305678129]], "source": 1404036994, "length": 39.88479698456595}, {"destination": 1404037015, "path": [[-561.7845615546457, 5009.302305676755], [-524.184561555785, 5094.852305678188], [-505.33456155221756, 5131.552305677189]], "source": 1404036994, "length": 29.239383911629453}, {"destination": 482732480, "path": [[-1388.6845615544985, 5223.452305678222], [-1924.9345615506286, 4510.702305676517]], "source": 482731911, "length": 188.48585499233698}, {"destination": 1404152790, "path": [[-1388.6845615544985, 5223.452305678222], [-1683.4845615534277, 5409.802305678113]], "source": 482731911, "length": 69.72217389785835}, {"destination": 1404037126, "path": [[-1388.6845615544985, 5223.452305678222], [-1047.1845615569464, 5007.602305678205]], "source": 482731911, "length": 80.76422300741503}, {"destination": 481500495, "path": [[-1388.6845615544985, 5223.452305678222], [-923.5845615549465, 5737.702305676607]], "source": 482731911, "length": 144.58264242487368}, {"destination": 482732480, "path": [[-2078.634561556214, 4302.602305678249], [-1924.9345615506286, 4510.702305676517]], "source": 482731912, "length": 54.738489167183296}, {"destination": 476556645, "path": [[-2078.634561556214, 4302.602305678249], [-1901.7845615536544, 4198.652305676731]], "source": 482731912, "length": 40.81329322043809}, {"destination": 1319641336, "path": [[6747.2154384446985, 6350.8523056778895], [6689.915438442995, 6300.402305678077]], "source": 2932000650, "length": 15.64102660114531}, {"destination": 1404037043, "path": [[-146.58456155558497, 5359.4523056776925], [-350.03456155635604, 5433.702305676747]], "source": 1404037003, "length": 42.07085925419243}, {"destination": 1404037020, "path": [[-146.58456155558497, 5359.4523056776925], [-161.98456155080976, 5301.302305676714]], "source": 1404037003, "length": 13.259730729892713}, {"destination": 481500502, "path": [[-146.58456155558497, 5359.4523056776925], [-56.68456155660806, 5326.652305678082]], "source": 1404037003, "length": 18.589414563590015}, {"destination": 1315678657, "path": [[-6512.984561553026, -3489.447694322578], [-6466.48456155674, -3403.1476943230386]], "source": 477641710, "length": 21.131185613717605}, {"destination": 477641659, "path": [[-6512.984561553026, -3489.447694322578], [-7088.984561555379, -3257.897694322054]], "source": 477641710, "length": 121.03176714043917}, {"destination": 1404037086, "path": [[-320.33456155033946, 5305.852305676595], [-258.68456155109243, 5271.452305677826], [-178.18456155538343, 5264.602305677712]], "source": 1404037005, "length": 29.38659876970999}, {"destination": 1404037042, "path": [[838.3654384473971, 7017.152305676788], [1001.8154384496825, 7005.652305677401]], "source": 1404037006, "length": 31.193044004678143}, {"destination": 1404037100, "path": [[838.3654384473971, 7017.152305676788], [832.7654384459038, 6955.052305677611]], "source": 1404037006, "length": 13.851466694122319}, {"destination": 1404037022, "path": [[838.3654384473971, 7017.152305676788], [672.8154384489926, 7038.852305678134]], "source": 1404037006, "length": 31.8553292462494}, {"destination": 2971714378, "path": [[5299.965438446463, 322.25230567739516], [5246.165438443029, 372.7523056777926], [5218.91543844788, 387.6023056772482]], "source": 1888382882, "length": 21.3372327238587}, {"destination": 1888382823, "path": [[5299.965438446463, 322.25230567739516], [5318.115438448956, 336.9023056780662], [5513.61543844564, 492.852305677971], [5659.415438444171, 620.3023056770007]], "source": 1888382882, "length": 95.24113137642713}, {"destination": 1404037033, "path": [[-878.2345615543363, 5156.752305676804], [-1047.1845615569464, 5227.902305676935]], "source": 1404037011, "length": 35.817466482550415}, {"destination": 1404037073, "path": [[-1084.6345615505015, 5358.652305677225], [-996.1345615536743, 5317.3523056777585]], "source": 1404037013, "length": 19.174842264579805}, {"destination": 1404037029, "path": [[-511.8845615541545, 5362.802305677761], [-718.534561556794, 5455.0023056769705]], "source": 1404037014, "length": 44.33027256690295}, {"destination": 1404037134, "path": [[-511.8845615541545, 5362.802305677761], [-550.4345615534589, 5267.852305676613]], "source": 1404037014, "length": 22.35260745959066}, {"destination": 1404037053, "path": [[-511.8845615541545, 5362.802305677761], [-489.3345615499811, 5418.252305677384]], "source": 1404037014, "length": 13.05629708947804}, {"destination": 1404036952, "path": [[-505.33456155221756, 5131.552305677189], [-491.28456155500544, 5158.852305678252]], "source": 1404037015, "length": 6.633263031014306}, {"destination": 1404036994, "path": [[-505.33456155221756, 5131.552305677189], [-524.184561555785, 5094.852305678188], [-561.7845615546457, 5009.302305676755]], "source": 1404037015, "length": 29.239383911629453}, {"destination": 1404037085, "path": [[-505.33456155221756, 5131.552305677189], [-355.2345615531749, 5106.302305676991], [-347.1845615550251, 5154.452305676571]], "source": 1404037015, "length": 39.91210833025623}, {"destination": 1404037141, "path": [[-216.23456155595022, 5125.952305677472], [-200.7345615524514, 5179.952305677915]], "source": 1404037018, "length": 12.365681681465006}, {"destination": 1404037085, "path": [[-216.23456155595022, 5125.952305677472], [-347.1845615550251, 5154.452305676571]], "source": 1404037018, "length": 25.69963694035106}, {"destination": 1404036983, "path": [[-216.23456155595022, 5125.952305677472], [-226.48456155138774, 5090.252305677723]], "source": 1404037018, "length": 8.175478709558503}, {"destination": 1581175202, "path": [[2285.515438444463, -7417.197694323363], [2171.0654384463624, -7097.047694323066], [2156.2654384439384, -6993.49769432267]], "source": 495642523, "length": 97.64973241505089}, {"destination": 601712416, "path": [[-8592.484561553703, 9131.052305678011], [-9075.484561556379, 9219.6023056772]], "source": 601712540, "length": 93.95749688686618}, {"destination": 601712535, "path": [[-8592.484561553703, 9131.052305678011], [-8584.934561554292, 9153.302305676902]], "source": 601712540, "length": 5.152816805631581}, {"destination": 1404037006, "path": [[672.8154384489926, 7038.852305678134], [838.3654384473971, 7017.152305676788]], "source": 1404037022, "length": 31.8553292462494}, {"destination": 477635800, "path": [[-8276.484561555719, -6526.547694322815], [-8016.184561554951, -6476.697694322908], [-7983.484561556508, -6476.1476943218095], [-7952.43456155248, -6478.997694323141]], "source": 477636511, "length": 62.87848365609928}, {"destination": 477633771, "path": [[-8276.484561555719, -6526.547694322815], [-8165.884561556424, -6160.297694322026]], "source": 477636511, "length": 84.12147157125662}, {"destination": 1404036968, "path": [[-734.584561556062, 5271.952305676564], [-709.2845615517263, 5324.202305677872]], "source": 1404037024, "length": 12.57670550761334}, {"destination": 1404037115, "path": [[-734.584561556062, 5271.952305676564], [-888.9845615556169, 5344.852305677606]], "source": 1404037024, "length": 33.54379295918049}, {"destination": 1404037149, "path": [[-734.584561556062, 5271.952305676564], [-759.3845615545547, 5220.752305676868]], "source": 1404037024, "length": 12.324432816545281}, {"destination": 1404037134, "path": [[-734.584561556062, 5271.952305676564], [-553.5845615511903, 5202.652305676736], [-550.4345615534589, 5267.852305676613]], "source": 1404037024, "length": 52.22898950780687}, {"destination": 1404037141, "path": [[-188.934561556664, 5221.002305678013], [-200.7345615524514, 5179.952305677915]], "source": 1404037025, "length": 9.401004829289212}, {"destination": 1404037086, "path": [[-188.934561556664, 5221.002305678013], [-178.18456155538343, 5264.602305677712]], "source": 1404037025, "length": 9.909731294418874}, {"destination": 1404037117, "path": [[-188.934561556664, 5221.002305678013], [-132.58456155540443, 5184.302305677235]], "source": 1404037025, "length": 13.47146827197282}, {"destination": 1404037105, "path": [[-718.534561556794, 5455.0023056769705], [-638.0845615510111, 5583.902305676957]], "source": 1404037029, "length": 32.49400065779656}, {"destination": 1404037014, "path": [[-718.534561556794, 5455.0023056769705], [-511.8845615541545, 5362.802305677761]], "source": 1404037029, "length": 44.33027256690295}, {"destination": 1404036975, "path": [[-718.534561556794, 5455.0023056769705], [-744.1345615504247, 5466.45230567755], [-801.0345615545589, 5369.052305677968]], "source": 1404037029, "length": 29.706705562088047}, {"destination": 1404036975, "path": [[-821.9345615501084, 5379.25230567815], [-801.0345615545589, 5369.052305677968]], "source": 1404037030, "length": 4.576636218498792}, {"destination": 1890812024, "path": [[-8928.934561552636, -1754.647694323097], [-8925.684561553737, -1761.3976943220423], [-8918.484561554862, -1768.7476943226698], [-8908.784561555194, -1773.4976943231118], [-8895.484561556088, -1775.0476943234617]], "source": 1890761713, "length": 8.435065962811144}, {"destination": 1890761668, "path": [[-8928.934561552636, -1754.647694323097], [-8947.684561555036, -1754.097694321999], [-8981.034561550416, -1754.7476943224892], [-9015.88456155622, -1762.7476943218312], [-9053.634561553281, -1774.747694321732], [-9073.784561550725, -1785.047694323083], [-9095.234561556254, -1799.947694323123], [-9127.384561551822, -1833.2476943232477]], "source": 1890761713, "length": 43.75232867427641}, {"destination": 1890812022, "path": [[-8928.934561552636, -1754.647694323097], [-8929.684561550745, -1743.497694322471], [-8923.984561555188, -1731.5476943231545], [-8915.984561554069, -1724.8476943230173], [-8907.184561550708, -1721.2476943218035]], "source": 1890761713, "length": 9.34223100418997}, {"destination": 1404037073, "path": [[-1047.1845615569464, 5227.902305676935], [-996.1345615536743, 5317.3523056777585]], "source": 1404037033, "length": 22.135840450286445}, {"destination": 1404037011, "path": [[-1047.1845615569464, 5227.902305676935], [-878.2345615543363, 5156.752305676804]], "source": 1404037033, "length": 35.817466482550415}, {"destination": 1404037047, "path": [[-1047.1845615569464, 5227.902305676935], [-1090.1345615508262, 5154.452305676571]], "source": 1404037033, "length": 18.263169047058327}, {"destination": 1317670956, "path": [[3541.8654384500314, 406.45230567726287], [3431.9154384476747, 463.80230567777403], [3411.815438447263, 469.7523056780284]], "source": 1317671240, "length": 28.538236391004315}, {"destination": 1404037006, "path": [[1001.8154384496825, 7005.652305677401], [838.3654384473971, 7017.152305676788]], "source": 1404037042, "length": 31.193044004678143}, {"destination": 1324294320, "path": [[-350.03456155635604, 5433.702305676747], [-378.53456155545473, 5444.102305677489], [-586.8845615566443, 5556.302305677718]], "source": 1404037043, "length": 52.72203536907151}, {"destination": 1404037003, "path": [[-350.03456155635604, 5433.702305676747], [-146.58456155558497, 5359.4523056776925]], "source": 1404037043, "length": 42.07085925419243}, {"destination": 1404037044, "path": [[-350.03456155635604, 5433.702305676747], [-453.0345615521014, 5233.2523056772825]], "source": 1404037043, "length": 48.69271535724629}, {"destination": 1404036952, "path": [[-453.0345615521014, 5233.2523056772825], [-491.28456155500544, 5158.852305678252]], "source": 1404037044, "length": 18.074669127846498}, {"destination": 1404037043, "path": [[-453.0345615521014, 5233.2523056772825], [-350.03456155635604, 5433.702305676747]], "source": 1404037044, "length": 48.69271535724629}, {"destination": 1404037134, "path": [[-453.0345615521014, 5233.2523056772825], [-550.4345615534589, 5267.852305676613]], "source": 1404037044, "length": 20.05925249071389}, {"destination": 1582473540, "path": [[8696.765438443777, -7174.997694322727], [8627.46543844395, -7128.6976943234495], [8580.515438445957, -7105.797694322291], [8521.515438445704, -7083.99769432333], [8469.215438445588, -7069.09769432329], [8386.06543844378, -7057.597694322127], [8300.465438445315, -7056.047694321776]], "source": 1777868857, "length": 81.99928023497746}, {"destination": 1404037033, "path": [[-1090.1345615508262, 5154.452305676571], [-1047.1845615569464, 5227.902305676935]], "source": 1404037047, "length": 18.263169047058327}, {"destination": 1404037107, "path": [[-1090.1345615508262, 5154.452305676571], [-1162.5845615554908, 5193.4523056775815]], "source": 1404037047, "length": 16.281910958361102}, {"destination": 1404036950, "path": [[-1090.1345615508262, 5154.452305676571], [-969.4345615542943, 5120.052305677802]], "source": 1404037047, "length": 24.19754996064769}, {"destination": 1316623323, "path": [[2892.715438449045, -1197.1976943225827], [2785.9654384485566, -1175.4976943230133]], "source": 152848312, "length": 20.865935479139836}, {"destination": 385113795, "path": [[2892.715438449045, -1197.1976943225827], [2971.7654384455727, -966.1476943225722], [3039.315438449819, -768.7476943232241], [3094.7654384476664, -606.7476943218963], [3164.2154384456944, -421.19769432247267]], "source": 152848312, "length": 180.14300468861924}, {"destination": 475974959, "path": [[2892.715438449045, -1197.1976943225827], [2831.1154384468296, -1353.497694323025], [2729.9654384478345, -1479.447694322289], [2603.3654384463034, -1589.847694322799], [2463.9654384444043, -1672.6976943228779]], "source": 152848312, "length": 137.3281163130291}, {"destination": 1404037014, "path": [[-489.3345615499811, 5418.252305677384], [-511.8845615541545, 5362.802305677761]], "source": 1404037053, "length": 13.05629708947804}, {"destination": 1404037020, "path": [[-239.88456155166205, 5321.952305678224], [-161.98456155080976, 5301.302305676714]], "source": 1404037055, "length": 15.511705903217978}, {"destination": 477621305, "path": [[-3374.5845615555936, -3229.2976943217864], [-3288.3345615530857, -3251.547694322454], [-3222.8345615550325, -3263.3476943217943], [-3131.134561556337, -3273.7476943225374], [-3038.13456155666, -3277.297694323167], [-2910.5345615505485, -3279.1476943234698]], "source": 479283141, "length": 89.42101035511786}, {"destination": 1404037100, "path": [[1388.0654384479385, 6932.252305677622], [832.7654384459038, 6955.052305677611]], "source": 1404037062, "length": 105.73932120272268}, {"destination": 93792440, "path": [[11383.4154384449, -4373.447694321797], [11247.565438445406, -4327.6976943218415], [11001.965438445894, -4247.147694321995], [10394.965438443649, -4056.4976943233687], [10100.815438448763, -3960.5476943229687], [9651.81543844551, -3816.297694323012]], "source": 63301576, "length": 351.8220446191866}, {"destination": 495771172, "path": [[11383.4154384449, -4373.447694321797], [11421.815438446003, -4306.697694323347]], "source": 63301576, "length": 16.543299228959796}, {"destination": 479283141, "path": [[-3756.234561556937, -3150.74769432222], [-3719.984561556089, -3156.347694321937], [-3682.0345615566907, -3159.3476943232445], [-3617.4845615519757, -3161.2976943229396], [-3556.434561552635, -3169.147694322305], [-3489.1845615518946, -3187.1476943230446], [-3374.5845615555936, -3229.2976943217864]], "source": 1889249225, "length": 75.39659645085702}, {"destination": 1404036979, "path": [[582.1154384477722, 6749.70230567773], [809.965438449467, 6725.902305676712]], "source": 1404037067, "length": 43.658739868572134}, {"destination": 1889249340, "path": [[-3772.3845615502682, -3107.297694322497], [-3788.4845615536733, -3094.69769432269], [-3824.6845615503844, -3078.647694323422]], "source": 1889249229, "length": 11.904646611354725}, {"destination": 3355916997, "path": [[-3772.3845615502682, -3107.297694322497], [-3730.0345615562946, -3040.6476943234393], [-3749.1845615562625, -3028.9976943222996]], "source": 1889249229, "length": 21.336634048172982}, {"destination": 1889249343, "path": [[-3772.3845615502682, -3107.297694322497], [-3757.6345615519813, -3126.7976943230024], [-3749.5845615538315, -3145.1476943225034], [-3746.9345615548377, -3157.7976943228946]], "source": 1889249229, "length": 12.385539477283906}, {"destination": 1404037033, "path": [[-996.1345615536743, 5317.3523056777585], [-1047.1845615569464, 5227.902305676935]], "source": 1404037073, "length": 22.135840450286445}, {"destination": 1404037149, "path": [[-996.1345615536743, 5317.3523056777585], [-759.3845615545547, 5220.752305676868]], "source": 1404037073, "length": 49.89017286443166}, {"destination": 1404037013, "path": [[-996.1345615536743, 5317.3523056777585], [-1084.6345615505015, 5358.652305677225]], "source": 1404037073, "length": 19.174842264579805}, {"destination": 1889249337, "path": [[-4746.084561553233, -2939.0976943233227], [-4690.884561554753, -2865.5476943217905]], "source": 1889249235, "length": 19.43534896886715}, {"destination": 1889249313, "path": [[-4746.084561553233, -2939.0976943233227], [-4977.98456155607, -2824.0476943217627], [-5151.384561550287, -2759.5476943229614]], "source": 1889249235, "length": 86.94188515014696}, {"destination": 856909277, "path": [[-298.5345615513779, 6715.802305677698], [-213.9845615545255, 6891.202305677524]], "source": 1404037076, "length": 42.19215141835032}, {"destination": 856909286, "path": [[-298.5345615513779, 6715.802305677698], [304.6154384449551, 6530.802305677596], [484.66543844938315, 6466.852305678117]], "source": 1404037076, "length": 158.9531980249606}, {"destination": 856909573, "path": [[-298.5345615513779, 6715.802305677698], [-327.83456155272006, 6657.952305676673]], "source": 1404037076, "length": 14.020263118356697}, {"destination": 874312328, "path": [[-3613.9345615566754, -3651.6476943226908], [-3533.034561556292, -3382.147694322768]], "source": 1887913942, "length": 61.87693082695196}, {"destination": 874312265, "path": [[-3613.9345615566754, -3651.6476943226908], [-3634.384561550519, -3754.6976943225727]], "source": 1887913942, "length": 23.245033114033884}, {"destination": 95386126, "path": [[-3613.9345615566754, -3651.6476943226908], [-2954.384561554946, -3750.997694321967]], "source": 1887913942, "length": 127.34893782164886}, {"destination": 874312265, "path": [[-4023.684561552443, -3684.2476943217407], [-3634.384561550519, -3754.6976943225727]], "source": 1887913945, "length": 75.66764875492301}, {"destination": 1889249347, "path": [[-4294.034561553417, -3023.5976943231435], [-4133.434561552463, -3080.4476943231407], [-3901.4345615555612, -3158.4476943233853], [-3779.0845615504054, -3192.1476943228554], [-3553.784561553641, -3242.5976943226688], [-3346.93456155577, -3280.6976943220434]], "source": 1889249242, "length": 189.42481941381283}, {"destination": 1889249267, "path": [[-4294.034561553417, -3023.5976943231435], [-4174.984561551299, -3079.297694322136], [-4064.6845615555094, -3127.9476943222307], [-3922.1845615529105, -3184.797694322228]], "source": 1889249242, "length": 79.30822540502187}, {"destination": 476794305, "path": [[-3834.5345615553583, -3327.5976943230035], [-3939.034561554422, -3321.2976943222116]], "source": 1889249243, "length": 19.920611880264207}, {"destination": 1889249238, "path": [[-3834.5345615553583, -3327.5976943230035], [-3875.184561550782, -3334.447694323117], [-3905.184561553199, -3342.947694322973], [-3929.034561551248, -3361.597694322427], [-3957.4345615562834, -3387.6976943219006], [-3977.684561554895, -3407.797694322312]], "source": 1889249243, "length": 33.86310276202345}, {"destination": 2629549320, "path": [[7130.015438448822, 2696.152305677657], [7251.615438448766, 2665.6023056776944]], "source": 2629549321, "length": 24.103506073208614}, {"destination": 2629549315, "path": [[7130.015438448822, 2696.152305677657], [7107.315438446449, 2622.7023056772937], [7027.865438445247, 2448.152305676743]], "source": 2629549321, "length": 58.55054658640352}, {"destination": 1404037018, "path": [[-347.1845615550251, 5154.452305676571], [-216.23456155595022, 5125.952305677472]], "source": 1404037085, "length": 25.69963694035106}, {"destination": 1404037141, "path": [[-347.1845615550251, 5154.452305676571], [-331.08456155162, 5216.402305677548], [-237.0845615544681, 5184.302305677235], [-200.7345615524514, 5179.952305677915]], "source": 1404037085, "length": 40.34490944201296}, {"destination": 1404037015, "path": [[-347.1845615550251, 5154.452305676571], [-355.2345615531749, 5106.302305676991], [-505.33456155221756, 5131.552305677189]], "source": 1404037085, "length": 39.91210833025623}, {"destination": 1404037025, "path": [[-178.18456155538343, 5264.602305677712], [-188.934561556664, 5221.002305678013]], "source": 1404037086, "length": 9.909731294418874}, {"destination": 1404037020, "path": [[-178.18456155538343, 5264.602305677712], [-161.98456155080976, 5301.302305676714]], "source": 1404037086, "length": 8.724251128070126}, {"destination": 1404037005, "path": [[-178.18456155538343, 5264.602305677712], [-258.68456155109243, 5271.452305677826], [-320.33456155033946, 5305.852305676595]], "source": 1404037086, "length": 29.38659876970999}, {"destination": 1404037117, "path": [[-167.48456155113445, 5071.902305678222], [-132.58456155540443, 5184.302305677235]], "source": 1404037087, "length": 25.86289300399375}, {"destination": 1316694017, "path": [[-354.63456155326867, -15.49769432251935], [-266.78456155337926, -17.897694322144275], [-266.78456155337926, -54.59769432292205], [-215.08456155316935, -57.19769432310784]], "source": 1316693988, "length": 34.72513240031252}, {"destination": 1316694063, "path": [[-354.63456155326867, -15.49769432251935], [-363.33456155546173, -61.44769432303576]], "source": 1316693988, "length": 10.351880707076871}, {"destination": 1316694047, "path": [[-354.63456155326867, -15.49769432251935], [-349.93456155518743, 9.65230567828712], [-387.4845615570166, 14.202305678168159], [-368.6845615504808, 85.35230567652263]], "source": 1316693988, "length": 29.097413312297462}, {"destination": 1316694016, "path": [[991.2154384466021, 367.4523056780288], [1205.7654384491912, 362.85230567756344]], "source": 1316693989, "length": 40.814507758839355}, {"destination": 874312265, "path": [[-3687.8845615504474, -3985.347694323238], [-3680.2845615540036, -3955.047694322644], [-3634.384561550519, -3754.6976943225727]], "source": 1887913958, "length": 52.2944811246378}, {"destination": 95386187, "path": [[-3687.8845615504474, -3985.347694323238], [-3108.934561552701, -4073.5476943218882], [-3040.1845615557477, -4082.997694322188]], "source": 1887913958, "length": 125.06505151982445}, {"destination": 1324294864, "path": [[3494.4654384432283, 4772.802305677004], [3496.315438447084, 4858.602305677806]], "source": 1404037095, "length": 19.084383279171224}, {"destination": 1324294220, "path": [[3494.4654384432283, 4772.802305677004], [3461.4654384483856, 4782.902305677794], [3284.4154384434887, 4810.4523056782255], [3187.8654384485117, 4835.65230567784], [3078.315438443724, 4866.052305677826]], "source": 1404037095, "length": 81.9956259378201}, {"destination": 476559405, "path": [[3494.4654384432283, 4772.802305677004], [3574.1154384467677, 4748.502305677249], [3635.8154384430463, 4714.102305676704], [3713.7654384480356, 4634.502305677302]], "source": 1404037095, "length": 53.18188836297378}, {"destination": 1316694040, "path": [[-668.0845615534281, 24.152305677205277], [-612.0345615556744, -17.447694322214602]], "source": 1316693992, "length": 14.114443749912247}, {"destination": 1316694004, "path": [[-668.0845615534281, 24.152305677205277], [-645.3345615540229, 88.5023056778067]], "source": 1316693992, "length": 14.950446793857699}, {"destination": 1316694022, "path": [[-668.0845615534281, 24.152305677205277], [-682.4845615511776, 34.85230567790154], [-838.084561550545, 78.45230567760098], [-875.484561554174, 72.55230567793092]], "source": 1316693992, "length": 41.9988592882776}, {"destination": 1316694057, "path": [[-433.0845615569956, 227.55230567739204], [-478.43456155050035, 120.65230567692709]], "source": 1316693994, "length": 25.289558927240726}, {"destination": 475977684, "path": [[221.41543844611533, 720.6523056773051], [266.7654384467255, 729.9023056770437], [712.9154384486469, 714.5023056782662]], "source": 1316693995, "length": 93.7814495457861}, {"destination": 1316694014, "path": [[221.41543844611533, 720.6523056773051], [199.9154384435542, 404.1523056770302], [183.86543844428616, 369.75230567826145], [154.36543844771222, 344.5023056780627], [108.76543844773323, 335.35230567771634], [-25.384561553210006, 355.9523056768654], [-132.63456155243603, 392.6523056776432], [-301.6345615520777, 443.15230567804065]], "source": 1316693995, "length": 177.52112958869535}, {"destination": 1316694062, "path": [[889.2654384453635, 546.3523056778996], [911.6154384471997, 706.0523056772183]], "source": 1316693996, "length": 35.76912096352668}, {"destination": 1316694033, "path": [[-572.5345615559263, 280.30230567743786], [-618.1345615559053, 165.6023056781919]], "source": 1316693998, "length": 26.941932989195692}, {"destination": 1316694040, "path": [[-577.8845615509454, 80.75230567783365], [-612.0345615556744, -17.447694322214602]], "source": 1316693999, "length": 22.784108130627047}, {"destination": 1316694052, "path": [[-931.9345615566021, 154.15230567761284], [-861.9345615556995, 150.95230567752083]], "source": 1316694000, "length": 13.330908957929559}, {"destination": 1324294320, "path": [[-638.0845615510111, 5583.902305676957], [-586.8845615566443, 5556.302305677718]], "source": 1404037105, "length": 11.511092413261474}, {"destination": 1324295098, "path": [[-638.0845615510111, 5583.902305676957], [-692.4845615543518, 5613.202305676524]], "source": 1404037105, "length": 12.227152944970381}, {"destination": 1404037029, "path": [[-638.0845615510111, 5583.902305676957], [-718.534561556794, 5455.0023056769705]], "source": 1404037105, "length": 32.49400065779656}, {"destination": 1317670833, "path": [[1623.3654384478768, 18.202305676950914], [1535.5154384479874, 19.552305676739934]], "source": 1316694003, "length": 16.70917544261824}, {"destination": 1316694018, "path": [[1623.3654384478768, 18.202305676950914], [1599.1154384451534, 332.75230567753056]], "source": 1316694003, "length": 70.10478682304557}, {"destination": 1316694030, "path": [[1623.3654384478768, 18.202305676950914], [1626.5154384456082, -22.59769432200187]], "source": 1316694003, "length": 9.093010639043479}, {"destination": 1316693992, "path": [[-645.3345615540229, 88.5023056778067], [-668.0845615534281, 24.152305677205277]], "source": 1316694004, "length": 14.950446793857699}, {"destination": 1316694033, "path": [[-645.3345615540229, 88.5023056778067], [-618.1345615559053, 165.6023056781919]], "source": 1316694004, "length": 17.909362304313934}, {"destination": 1316694052, "path": [[-645.3345615540229, 88.5023056778067], [-744.1845615545617, 126.60230567718145], [-861.9345615556995, 150.95230567752083]], "source": 1316694004, "length": 43.658022204887914}, {"destination": 856909354, "path": [[1509.265438443208, 6823.902305677976], [1508.46543844807, 6691.7023056767275]], "source": 1328999422, "length": 29.400569885045087}, {"destination": 1328999582, "path": [[1509.265438443208, 6823.902305677976], [1509.6154384437455, 6882.952305677037], [1502.1154384484703, 7004.902305677519]], "source": 1328999422, "length": 40.29070231672321}, {"destination": 1328999519, "path": [[1509.265438443208, 6823.902305677976], [1938.615438447755, 6806.952305677072]], "source": 1328999422, "length": 81.74883386091051}, {"destination": 1316694016, "path": [[1208.6654384475537, 431.2523056775319], [1205.7654384491912, 362.85230567756344]], "source": 1316694008, "length": 15.221676118722101}, {"destination": 1317670870, "path": [[1208.6654384475537, 431.2523056775319], [998.9154384442145, 438.70230567755186]], "source": 1316694008, "length": 39.92325584503033}, {"destination": 1317671318, "path": [[1208.6654384475537, 431.2523056775319], [1211.415438447716, 495.7523056781099]], "source": 1316694008, "length": 14.353785249357783}, {"destination": 2049820744, "path": [[3516.715438443896, -7656.2976943233], [3476.315438447841, -7604.497694321921], [3518.66543844892, -7567.397694321798]], "source": 2049820665, "length": 25.37534680614094}, {"destination": 1769172084, "path": [[3516.715438443896, -7656.2976943233], [3548.5154384460316, -7698.497694322626]], "source": 2049820665, "length": 11.16410004382658}, {"destination": 1769172142, "path": [[3516.715438443896, -7656.2976943233], [3169.0654384490813, -7907.647694322506]], "source": 2049820665, "length": 86.56825726005204}, {"destination": 93466391, "path": [[3516.715438443896, -7656.2976943233], [3537.2654384460134, -7641.447694322068]], "source": 2049820665, "length": 5.115954076155337}, {"destination": 1316694056, "path": [[1826.3654384469419, 664.8023056765595], [1986.8654384467277, 656.5023056772645]], "source": 1316694010, "length": 30.578789619736785}, {"destination": 1317671171, "path": [[1826.3654384469419, 664.8023056765595], [1826.115438447573, 585.3523056771337]], "source": 1316694010, "length": 17.668705631618973}, {"destination": 599409562, "path": [[-1928.8845615506034, -6894.09769432281], [-2216.3345615524577, -6792.547694322692]], "source": 1887913979, "length": 59.13875469683978}, {"destination": 2354289892, "path": [[-1928.8845615506034, -6894.09769432281], [-1941.6345615539399, -6918.0976943226115]], "source": 1887913979, "length": 5.862983550135168}, {"destination": 479279693, "path": [[-1928.8845615506034, -6894.09769432281], [-1874.2345615549993, -6913.347694322169]], "source": 1887913979, "length": 11.238526860639919}, {"destination": 1315678636, "path": [[-2137.384561549993, -7279.747694322936], [-2091.684561555951, -7191.1976943219715]], "source": 1887913980, "length": 21.524607321949784}, {"destination": 1317671059, "path": [[1219.8654384434349, 692.9523056768971], [1213.9154384485096, 553.3523056779899]], "source": 1316694013, "length": 31.066233072435608}, {"destination": 1317671325, "path": [[1219.8654384434349, 692.9523056768971], [1360.8654384498209, 686.9523056778348]], "source": 1316694013, "length": 26.847767047078328}, {"destination": 1316693995, "path": [[-301.6345615520777, 443.15230567804065], [-132.63456155243603, 392.6523056776432], [-25.384561553210006, 355.9523056768654], [108.76543844773323, 335.35230567771634], [154.36543844771222, 344.5023056780627], [183.86543844428616, 369.75230567826145], [199.9154384435542, 404.1523056770302], [221.41543844611533, 720.6523056773051]], "source": 1316694014, "length": 177.52112958869535}, {"destination": 93246696, "path": [[-8290.284561553563, 663.1023056780094], [-8356.084561555122, 687.5023056771568], [-8796.78456155375, 850.9523056776658], [-8825.534561552216, 862.9523056775668]], "source": 85010431, "length": 111.07572704333366}, {"destination": 479302873, "path": [[-8290.284561553563, 663.1023056780094], [-8218.384561551773, 632.4023056780703], [-7850.884561555915, 482.10230567669043], [-7805.534561555305, 462.452305677985]], "source": 85010431, "length": 102.42221120609615}, {"destination": 87752549, "path": [[-8290.284561553563, 663.1023056780094], [-8315.184561553224, 611.7523056765606], [-8510.934561556383, 208.00230567807887], [-8547.4345615566, 130.6523056765485]], "source": 85010431, "length": 128.11310475653352}, {"destination": 93246685, "path": [[-8290.284561553563, 663.1023056780094], [-8259.28456155367, 721.702305677141], [-8067.284561555254, 1075.4523056775156], [-8049.784561556806, 1107.7023056778046]], "source": 85010431, "length": 108.94108191712003}, {"destination": 1316694008, "path": [[1205.7654384491912, 362.85230567756344], [1208.6654384475537, 431.2523056775319]], "source": 1316694016, "length": 15.221676118722101}, {"destination": 1317671168, "path": [[1205.7654384491912, 362.85230567756344], [1210.2654384449352, 124.25230567814083]], "source": 1316694016, "length": 53.06924619145755}, {"destination": 1316694018, "path": [[1205.7654384491912, 362.85230567756344], [1599.1154384451534, 332.75230567753056]], "source": 1316694016, "length": 75.10346771781644}, {"destination": 1316693989, "path": [[1205.7654384491912, 362.85230567756344], [991.2154384466021, 367.4523056780288]], "source": 1316694016, "length": 40.814507758839355}, {"destination": 1887877284, "path": [[-5547.5345615505485, -6281.197694322671], [-5668.684561555892, -6566.697694323054]], "source": 477628417, "length": 67.5422066292738}, {"destination": 1316694016, "path": [[1599.1154384451534, 332.75230567753056], [1205.7654384491912, 362.85230567756344]], "source": 1316694018, "length": 75.10346771781644}, {"destination": 1317670896, "path": [[1599.1154384451534, 332.75230567753056], [1596.9654384448972, 360.4523056779385]], "source": 1316694018, "length": 6.173723484132286}, {"destination": 1316694003, "path": [[1599.1154384451534, 332.75230567753056], [1623.3654384478768, 18.202305676950914]], "source": 1316694018, "length": 70.10478682304557}, {"destination": 1889249272, "path": [[-3416.234561555598, -3363.947694323244], [-3490.634561551076, -3365.3476943218407], [-3537.0345615532983, -3363.5976943227065], [-3588.6845615564766, -3360.1476943232456], [-3667.4845615536356, -3354.247694321799]], "source": 1889249283, "length": 47.87600307250253}, {"destination": 1889249355, "path": [[-3416.234561555598, -3363.947694323244], [-3727.93456155307, -3303.0976943226874], [-3781.4345615529987, -3291.39769432274]], "source": 1889249283, "length": 71.29779444085577}, {"destination": 1316693995, "path": [[-269.434561552373, 679.4023056766463], [20.215438446768985, 644.9523056772932], [103.36543844857715, 729.8523056782358], [221.41543844611533, 720.6523056773051]], "source": 1316694021, "length": 102.78531019221668}, {"destination": 1316693992, "path": [[-875.484561554174, 72.55230567793092], [-838.084561550545, 78.45230567760098], [-682.4845615511776, 34.85230567790154], [-668.0845615534281, 24.152305677205277]], "source": 1316694022, "length": 41.9988592882776}, {"destination": 1316694068, "path": [[-875.484561554174, 72.55230567793092], [-969.4845615513259, 57.802305677867594], [-1049.0845615507283, 31.352305677856407]], "source": 1316694022, "length": 34.41496140405279}, {"destination": 1316694052, "path": [[-875.484561554174, 72.55230567793092], [-865.4345615539683, 130.75230567771712], [-861.9345615556995, 150.95230567752083]], "source": 1316694022, "length": 17.624241616440308}, {"destination": 1316694059, "path": [[1508.865438445639, 424.8023056767636], [1504.1154384434208, 680.8523056776039]], "source": 1316694025, "length": 56.95026149682246}, {"destination": 1469016601, "path": [[-8396.534561555312, -608.0476943228774], [-8313.384561553505, -608.0476943228774]], "source": 1469016582, "length": 15.812378993160372}, {"destination": 1469016587, "path": [[-8396.534561555312, -608.0476943228774], [-8549.384561554518, -605.7476943226447], [-8702.284561550754, -569.047694321867], [-8780.534561552144, -542.6976943230244], [-8820.334561555399, -612.5976943227585]], "source": 1469016582, "length": 92.55447867994025}, {"destination": 1469016764, "path": [[-8396.534561555312, -608.0476943228774], [-8316.034561552498, -672.2476943217259]], "source": 1469016582, "length": 20.933208954526226}, {"destination": 1316694028, "path": [[-844.3845615531131, 229.95230567701697], [-829.834561550058, 267.8523056776072]], "source": 1316694027, "length": 8.87125769286805}, {"destination": 1316694036, "path": [[-844.3845615531131, 229.95230567701697], [-851.4845615508193, 211.502305678124]], "source": 1316694027, "length": 4.320344523507165}, {"destination": 1316694033, "path": [[-844.3845615531131, 229.95230567701697], [-752.2345615527115, 216.05230567800504], [-682.4845615511776, 195.40230567827166], [-618.1345615559053, 165.6023056781919]], "source": 1316694027, "length": 45.74900916218372}, {"destination": 1316694027, "path": [[-829.834561550058, 267.8523056776072], [-844.3845615531131, 229.95230567701697]], "source": 1316694028, "length": 8.87125769286805}, {"destination": 1316694051, "path": [[-829.834561550058, 267.8523056776072], [-945.384561553908, 287.15230567755157]], "source": 1316694028, "length": 22.389671809007016}, {"destination": 1316694061, "path": [[-829.834561550058, 267.8523056776072], [-795.1845615536968, 358.2523056770981]], "source": 1316694028, "length": 21.15633494536532}, {"destination": 1317671280, "path": [[1825.3654384494666, 355.9523056768654], [1744.9154384436838, 360.60230567791507]], "source": 1316694029, "length": 15.334349973701249}, {"destination": 1317670873, "path": [[1825.3654384494666, 355.9523056768654], [1825.5654384446984, 413.3523056779609]], "source": 1316694029, "length": 12.765197673554168}, {"destination": 1317671106, "path": [[1825.3654384494666, 355.9523056768654], [1969.465438449447, 349.152305677336]], "source": 1316694029, "length": 27.445700418017488}, {"destination": 1404037024, "path": [[-550.4345615534589, 5267.852305676613], [-553.5845615511903, 5202.652305676736], [-734.584561556062, 5271.952305676564]], "source": 1404037134, "length": 52.22898950780687}, {"destination": 1404036968, "path": [[-550.4345615534589, 5267.852305676613], [-572.5345615559263, 5275.702305677754], [-709.2845615517263, 5324.202305677872]], "source": 1404037134, "length": 32.706612327807136}, {"destination": 1404037044, "path": [[-550.4345615534589, 5267.852305676613], [-453.0345615521014, 5233.2523056772825]], "source": 1404037134, "length": 20.05925249071389}, {"destination": 1404037014, "path": [[-550.4345615534589, 5267.852305676613], [-511.8845615541545, 5362.802305677761]], "source": 1404037134, "length": 22.35260745959066}, {"destination": 1316694047, "path": [[-315.034561552352, 183.9523056776926], [-331.13456155575705, 108.25230567768074], [-368.6845615504808, 85.35230567652263]], "source": 1316694031, "length": 25.881657706657485}, {"destination": 1316694057, "path": [[-618.1345615559053, 165.6023056781919], [-478.43456155050035, 120.65230567692709]], "source": 1316694033, "length": 28.385376679301217}, {"destination": 1316694027, "path": [[-618.1345615559053, 165.6023056781919], [-682.4845615511776, 195.40230567827166], [-752.2345615527115, 216.05230567800504], [-844.3845615531131, 229.95230567701697]], "source": 1316694033, "length": 45.74900916218372}, {"destination": 1316694004, "path": [[-618.1345615559053, 165.6023056781919], [-645.3345615540229, 88.5023056778067]], "source": 1316694033, "length": 17.909362304313934}, {"destination": 1316693998, "path": [[-618.1345615559053, 165.6023056781919], [-572.5345615559263, 280.30230567743786]], "source": 1316694033, "length": 26.941932989195692}, {"destination": 1316694041, "path": [[-481.1845615506627, -27.547694323004634], [-467.934561555694, 9.65230567828712], [-442.8845615507271, 109.20230567812439]], "source": 1316694034, "length": 31.29362035518737}, {"destination": 1316694011, "path": [[-481.1845615506627, -27.547694323004634], [-515.6845615559291, -13.5476943228241]], "source": 1316694034, "length": 7.262405428937412}, {"destination": 1316694063, "path": [[-481.1845615506627, -27.547694323004634], [-408.9345615554407, -56.897694323154724], [-363.33456155546173, -61.44769432303576]], "source": 1316694034, "length": 23.942054438664826}, {"destination": 1316694064, "path": [[-851.4845615508193, 211.502305678124], [-918.5345615563278, 213.75230567777237]], "source": 1316694036, "length": 12.760960732239171}, {"destination": 1316694027, "path": [[-851.4845615508193, 211.502305678124], [-844.3845615531131, 229.95230567701697]], "source": 1316694036, "length": 4.320344523507165}, {"destination": 1316694052, "path": [[-851.4845615508193, 211.502305678124], [-861.9345615556995, 150.95230567752083]], "source": 1316694036, "length": 13.611238247619546}, {"destination": 1316694050, "path": [[1203.3654384495662, -94.69769432257635], [1207.665438442973, 2.402305677051686]], "source": 1316694037, "length": 21.609439865187152}, {"destination": 1317671186, "path": [[1203.3654384495662, -94.69769432257635], [1120.665438449464, -96.49769432229505], [1084.1654384492472, -89.0476943222751]], "source": 1316694037, "length": 22.868341889591708}, {"destination": 475977438, "path": [[1203.3654384495662, -94.69769432257635], [1631.365438448995, -85.49769432342202]], "source": 1316694037, "length": 81.41885378202564}, {"destination": 1316693992, "path": [[-612.0345615556744, -17.447694322214602], [-668.0845615534281, 24.152305677205277]], "source": 1316694040, "length": 14.114443749912247}, {"destination": 1316694053, "path": [[-612.0345615556744, -17.447694322214602], [-580.5845615540761, -40.79769432330238]], "source": 1316694040, "length": 7.920141690289868}, {"destination": 1316693999, "path": [[-612.0345615556744, -17.447694322214602], [-577.8845615509454, 80.75230567783365]], "source": 1316694040, "length": 22.784108130627047}, {"destination": 1316694057, "path": [[-442.8845615507271, 109.20230567812439], [-478.43456155050035, 120.65230567692709]], "source": 1316694041, "length": 7.223831598668383}, {"destination": 1316694034, "path": [[-442.8845615507271, 109.20230567812439], [-467.934561555694, 9.65230567828712], [-481.1845615506627, -27.547694323004634]], "source": 1316694041, "length": 31.29362035518737}, {"destination": 1316694047, "path": [[-442.8845615507271, 109.20230567812439], [-368.6845615504808, 85.35230567652263]], "source": 1316694041, "length": 15.074419372327966}, {"destination": 1316694063, "path": [[-108.53456155501817, -116.49769432331425], [-172.68456155505874, -107.04769432301475], [-186.28456155056483, -105.0476943227352], [-363.33456155546173, -61.44769432303576]], "source": 1316694045, "length": 50.04183850548608}, {"destination": 78011931, "path": [[-4192.784561553253, -3233.847694323444], [-4261.034561551469, -3207.4476943222407], [-4375.8345615501075, -3155.447694322078], [-4465.684561552052, -3111.8976943229627], [-4693.684561551947, -2990.3476943218266], [-4961.884561552665, -2846.997694321729], [-5090.634561554452, -2778.1976943224154], [-5247.534561554801, -2679.547694322437], [-5419.234561550467, -2578.647694322811], [-5622.934561550608, -2460.5476943229123]], "source": 1889249311, "length": 322.14898894364893}, {"destination": 477618769, "path": [[-5151.384561550287, -2759.5476943229614], [-5434.484561554598, -2602.7476943220054]], "source": 1889249313, "length": 64.14144398811594}, {"destination": 1317671168, "path": [[1207.665438442973, 2.402305677051686], [1211.1154384442102, 80.75230567783365], [1210.2654384449352, 124.25230567814083]], "source": 1316694050, "length": 27.112117489380054}, {"destination": 1317670833, "path": [[1207.665438442973, 2.402305677051686], [1433.765438449086, 21.102305677089817], [1535.5154384479874, 19.552305676739934]], "source": 1316694050, "length": 62.551300283510884}, {"destination": 1317671179, "path": [[1207.665438442973, 2.402305677051686], [1087.7654384486846, 8.70230567784347]], "source": 1316694050, "length": 22.84455034805359}, {"destination": 1316694037, "path": [[1207.665438442973, 2.402305677051686], [1203.3654384495662, -94.69769432257635]], "source": 1316694050, "length": 21.609439865187152}, {"destination": 1316694028, "path": [[-945.384561553908, 287.15230567755157], [-829.834561550058, 267.8523056776072]], "source": 1316694051, "length": 22.389671809007016}, {"destination": 1316694000, "path": [[-861.9345615556995, 150.95230567752083], [-931.9345615566021, 154.15230567761284]], "source": 1316694052, "length": 13.330908957929559}, {"destination": 1316694004, "path": [[-861.9345615556995, 150.95230567752083], [-744.1845615545617, 126.60230567718145], [-645.3345615540229, 88.5023056778067]], "source": 1316694052, "length": 43.658022204887914}, {"destination": 1316694036, "path": [[-861.9345615556995, 150.95230567752083], [-851.4845615508193, 211.502305678124]], "source": 1316694052, "length": 13.611238247619546}, {"destination": 1316694022, "path": [[-861.9345615556995, 150.95230567752083], [-865.4345615539683, 130.75230567771712], [-875.484561554174, 72.55230567793092]], "source": 1316694052, "length": 17.624241616440308}, {"destination": 1316694040, "path": [[-580.5845615540761, -40.79769432330238], [-612.0345615556744, -17.447694322214602]], "source": 1316694053, "length": 7.920141690289868}, {"destination": 267198568, "path": [[-6316.234561552392, -7848.447694323469], [-6648.584561553151, -7762.747694322059], [-6940.934561555423, -7682.347694322189], [-7218.084561550597, -7591.697694323329]], "source": 477644839, "length": 180.8189768522765}, {"destination": 874287211, "path": [[-6316.234561552392, -7848.447694323469], [-6273.084561556175, -7820.547694322499], [-6147.23456155275, -7750.447694322204], [-6090.784561550322, -7727.197694322285]], "source": 477644839, "length": 50.75961689706048}, {"destination": 1317670848, "path": [[1986.8654384467277, 656.5023056772645], [1982.7154384444157, 582.9023056769245]], "source": 1316694056, "length": 16.386746603159196}, {"destination": 1317670980, "path": [[1986.8654384467277, 656.5023056772645], [2034.5154384457942, 654.0523056770553]], "source": 1316694056, "length": 9.078130886578554}, {"destination": 1316694033, "path": [[-478.43456155050035, 120.65230567692709], [-618.1345615559053, 165.6023056781919]], "source": 1316694057, "length": 28.385376679301217}, {"destination": 1316693994, "path": [[-478.43456155050035, 120.65230567692709], [-433.0845615569956, 227.55230567739204]], "source": 1316694057, "length": 25.289558927240726}, {"destination": 1316694041, "path": [[-478.43456155050035, 120.65230567692709], [-442.8845615507271, 109.20230567812439]], "source": 1316694057, "length": 7.223831598668383}, {"destination": 1316694025, "path": [[1504.1154384434208, 680.8523056776039], [1508.865438445639, 424.8023056767636]], "source": 1316694059, "length": 56.95026149682246}, {"destination": 475977686, "path": [[1504.1154384434208, 680.8523056776039], [1576.0654384493478, 677.8023056774884]], "source": 1316694059, "length": 13.69967955654776}, {"destination": 1316694028, "path": [[-795.1845615536968, 358.2523056770981], [-829.834561550058, 267.8523056776072]], "source": 1316694061, "length": 21.15633494536532}, {"destination": 1316693996, "path": [[911.6154384471997, 706.0523056772183], [889.2654384453635, 546.3523056778996]], "source": 1316694062, "length": 35.76912096352668}, {"destination": 1317671166, "path": [[911.6154384471997, 706.0523056772183], [912.2654384441375, 778.0023056778163]], "source": 1316694062, "length": 16.001056583078046}, {"destination": 1317671031, "path": [[911.6154384471997, 706.0523056772183], [1090.665438447047, 698.4523056772218]], "source": 1316694062, "length": 34.09252841931515}, {"destination": 1316694034, "path": [[-363.33456155546173, -61.44769432303576], [-408.9345615554407, -56.897694323154724], [-481.1845615506627, -27.547694323004634]], "source": 1316694063, "length": 23.942054438664826}, {"destination": 1316693988, "path": [[-363.33456155546173, -61.44769432303576], [-354.63456155326867, -15.49769432251935]], "source": 1316694063, "length": 10.351880707076871}, {"destination": 1316694045, "path": [[-363.33456155546173, -61.44769432303576], [-186.28456155056483, -105.0476943227352], [-172.68456155505874, -107.04769432301475], [-108.53456155501817, -116.49769432331425]], "source": 1316694063, "length": 50.04183850548608}, {"destination": 1316694036, "path": [[-918.5345615563278, 213.75230567777237], [-851.4845615508193, 211.502305678124]], "source": 1316694064, "length": 12.760960732239171}, {"destination": 1316694012, "path": [[-202.3845615539699, 147.25230567691483], [-210.2345615568879, 65.70230567781721]], "source": 1316694066, "length": 18.197416184593997}, {"destination": 1316694017, "path": [[-175.58456155342128, -59.14769432280309], [-215.08456155316935, -57.19769432310784]], "source": 1316694067, "length": 7.524493950265623}, {"destination": 599407025, "path": [[-1049.0845615507283, 31.352305677856407], [-1151.184561550167, 63.85230567751421]], "source": 1316694068, "length": 20.71812195368777}, {"destination": 1316694022, "path": [[-1049.0845615507283, 31.352305677856407], [-969.4845615513259, 57.802305677867594], [-875.484561554174, 72.55230567793092]], "source": 1316694068, "length": 34.41496140405279}, {"destination": 856909249, "path": [[-1067.384561551421, 7517.902305677282], [-1146.1345615515484, 7389.002305677294]], "source": 1404152841, "length": 32.34359748252639}, {"destination": 1404152844, "path": [[-1067.384561551421, 7517.902305677282], [-934.4345615502903, 7482.952305677415], [-918.3345615539906, 7441.652305677948], [-765.5345615518172, 7393.802305676544]], "source": 1404152841, "length": 67.0860664901937}, {"destination": 1404152853, "path": [[-1067.384561551421, 7517.902305677282], [-1326.0345615506708, 7648.102305678251]], "source": 1404152841, "length": 57.08438401170582}, {"destination": 1404152806, "path": [[-1067.384561551421, 7517.902305677282], [-1019.6345615511859, 7596.152305676896]], "source": 1404152841, "length": 19.6296080825767}, {"destination": 477619297, "path": [[-4690.884561554753, -2865.5476943217905], [-4657.934561556942, -2821.59769432333]], "source": 1889249337, "length": 11.610102650605077}, {"destination": 1889249267, "path": [[-4690.884561554753, -2865.5476943217905], [-4555.534561553997, -2939.8476943232054], [-4408.334561553318, -3016.2476943225156], [-4351.684561555658, -3040.797694323416], [-4265.884561554856, -3071.747694322724], [-4167.98456155476, -3107.297694322497], [-3995.034561555144, -3164.597694322424], [-3922.1845615529105, -3184.797694322228]], "source": 1889249337, "length": 163.17363533716608}, {"destination": 103781336, "path": [[-1626.3345615570302, -7021.247694321886], [-1710.1345615557761, -7195.997694322998], [-1729.4845615509757, -7240.147694322019], [-1845.7845615529322, -7481.6476943233565]], "source": 4824459322, "length": 110.57006018183031}, {"destination": 1887596162, "path": [[-1626.3345615570302, -7021.247694321886], [-1560.534561555471, -7039.5976943231635], [-1442.584561551996, -7073.597694322587], [-1279.2345615508793, -7108.197694321916], [-582.084561550289, -7266.4976943226375]], "source": 4824459322, "length": 205.97946351968167}, {"destination": 2354289892, "path": [[-1626.3345615570302, -7021.247694321886], [-1667.0845615536223, -7008.647694322079], [-1941.6345615539399, -6918.0976943226115]], "source": 4824459322, "length": 64.19231329963822}, {"destination": 3355916993, "path": [[-3824.6845615503844, -3078.647694323422], [-3805.934561555091, -3052.2476943222186], [-3767.034561555249, -2994.897694323484], [-3735.784561555988, -3008.247694323174]], "source": 1889249340, "length": 28.254753690599202}, {"destination": 1889249229, "path": [[-3824.6845615503844, -3078.647694323422], [-3788.4845615536733, -3094.69769432269], [-3772.3845615502682, -3107.297694322497]], "source": 1889249340, "length": 11.904646611354725}, {"destination": 3355916999, "path": [[-3824.6845615503844, -3078.647694323422], [-3838.3845615541645, -3094.2476943227603], [-3854.2345615510953, -3102.697694322032], [-3868.9845615564877, -3106.147694323269], [-3887.734561551781, -3104.9976943222646], [-3973.4845615555514, -3079.7976943226504], [-3979.9345615563197, -3093.397694323485]], "source": 1889249340, "length": 34.881905842992026}, {"destination": 3355916994, "path": [[-3746.9345615548377, -3157.7976943228946], [-3665.684561553917, -3182.8476943225323], [-3668.1845615547104, -3188.9476943227637]], "source": 1889249343, "length": 17.85704895551391}, {"destination": 1889249229, "path": [[-3746.9345615548377, -3157.7976943228946], [-3749.5845615538315, -3145.1476943225034], [-3757.6345615519813, -3126.7976943230024], [-3772.3845615502682, -3107.297694322497]], "source": 1889249343, "length": 12.385539477283908}, {"destination": 3355916998, "path": [[-3746.9345615548377, -3157.7976943228946], [-3749.5845615538315, -3178.3976943220437], [-3763.0345615511374, -3200.197694322782], [-3789.834561551686, -3220.797694321931], [-3836.784561556783, -3249.497694323367], [-3870.2845615503634, -3274.697694322981], [-3898.4845615530617, -3313.6976943222153], [-3927.984561556741, -3367.5976943232654], [-3950.684561552009, -3406.5976943224996], [-3984.9345615508014, -3482.8476943218334], [-4012.7845615529623, -3474.3976943225616]], "source": 1889249343, "length": 93.3079500560815}, {"destination": 1765488318, "path": [[-3346.93456155577, -3280.6976943220434], [-3230.934561550214, -3302.2476943234124], [-3100.834561550414, -3313.097694322309], [-2997.2345615547624, -3315.0976943225887], [-2902.684561554736, -3313.147694322893], [-2800.0845615565595, -3304.247694321916], [-2653.134561555248, -3277.297694323167], [-2248.384561553962, -3209.147694322567], [-2065.834561555846, -3175.74769432305], [-1905.4345615501234, -3145.897694322386], [-1738.334561551369, -3116.4476943228437], [-1586.8845615543137, -3099.297694323155], [-1446.684561550171, -3093.9476943228074], [-1325.2845615525644, -3101.5476943228036], [-1205.484561552339, -3126.2476943219044], [-1061.1845615500215, -3170.147694323333], [-912.2345615537597, -3224.597694321929], [-756.9345615507928, -3284.647694322018], [-629.7845615534925, -3343.497694322295], [-560.5345615506963, -3381.0476943223475], [-479.93456155381864, -3428.3476943226533], [-333.33456155304475, -3515.8476943220053], [-217.9845615515319, -3592.347694322484], [228.3154384485897, -3888.097694321857], [457.5154384482971, -4048.8976943233724], [598.8654384481151, -4151.897694322671], [843.7654384465532, -4339.3976943217895], [2510.0154384460893, -5689.797694323317], [2817.6154384453866, -5967.397694321974], [2996.6154384482024, -6104.947694321794], [3168.5154384462066, -6221.347694323143], [3331.6154384479546, -6315.247694322678], [3538.7154384451946, -6421.597694322046], [3817.4154384478243, -6557.597694323292], [4055.1154384473875, -6667.097694322166], [4270.215438445746, -6758.797694322638], [4367.065438444229, -6795.947694323346], [4434.265438447937, -6817.347694322962], [4491.065438443798, -6829.6976943234], [4545.815438447676, -6838.347694323233], [4616.165438449116, -6846.147694322013], [4686.715438445788, -6846.897694321896], [4748.665438448541, -6842.447694323184], [4815.915438449281, -6835.59769432307], [4898.465438444077, -6829.747694322208], [5022.515438447783, -6814.5976943228], [5147.415438443659, -6796.6976943232285], [5188.165438447357, -6781.147694322698], [5224.515438449373, -6764.597694322916], [5257.765438443585, -6746.4476943222], [5287.3654384484325, -6728.947694321974], [5321.315438443718, -6709.8476943225905], [5354.815438444404, -6692.997694322856], [5399.46543844394, -6673.49769432235], [5492.815438444154, -6638.197694321945], [5612.515438443211, -6592.397694323182], [6055.165438446864, -6423.897694322278], [6295.165438444883, -6338.097694323253]], "source": 1889249347, "length": 2153.070305768688}, {"destination": 1769171872, "path": [[3518.66543844892, -7567.397694321798], [3586.3154384472296, -7508.19769432276]], "source": 2049820744, "length": 18.406215149965476}, {"destination": 2049820665, "path": [[3518.66543844892, -7567.397694321798], [3476.315438447841, -7604.497694321921], [3516.715438443896, -7656.2976943233]], "source": 2049820744, "length": 25.37534680614094}, {"destination": 1581175183, "path": [[3518.66543844892, -7567.397694321798], [3370.165438447259, -7486.547694321999]], "source": 2049820744, "length": 33.474669522623884}, {"destination": 1404152841, "path": [[-765.5345615518172, 7393.802305676544], [-918.3345615539906, 7441.652305677948], [-934.4345615502903, 7482.952305677415], [-1067.384561551421, 7517.902305677282]], "source": 1404152844, "length": 67.0860664901937}, {"destination": 1404152830, "path": [[-765.5345615518172, 7393.802305676544], [-705.5845615511203, 7528.302305678025]], "source": 1404152844, "length": 32.01112403871419}, {"destination": 1404152862, "path": [[-765.5345615518172, 7393.802305676544], [-841.5345615517822, 7223.402305676529]], "source": 1404152844, "length": 40.558878785044826}, {"destination": 477615722, "path": [[-4107.734561550558, -3290.797694322833], [-4208.084561554415, -3265.2476943226816], [-4358.184561553458, -3206.8476943223345], [-4455.834561554184, -3157.9976943234556]], "source": 1889249354, "length": 72.78209953731772}, {"destination": 850261273, "path": [[-4343.83456155274, -7829.797694322238], [-4939.534561550829, -7617.94769432278]], "source": 210643019, "length": 122.67428551074143}, {"destination": 267198766, "path": [[-4343.83456155274, -7829.797694322238], [-4463.684561549997, -8044.14769432249]], "source": 210643019, "length": 52.83632303800039}, {"destination": 156380673, "path": [[-4343.83456155274, -7829.797694322238], [-4284.784561555454, -7845.597694322138], [-3751.0845615500443, -7955.047694322204], [-3635.9345615508687, -7979.4476943231275]], "source": 210643019, "length": 138.6772740581965}, {"destination": 2531707872, "path": [[-8883.334561552658, -642.8476943227679], [-8852.084561553398, -581.6476943234505]], "source": 5002561614, "length": 14.851251861089867}, {"destination": 476791768, "path": [[-8883.334561552658, -642.8476943227679], [-8903.284561554869, -690.597694323003]], "source": 5002561614, "length": 11.276555145183389}, {"destination": 5017787783, "path": [[-8883.334561552658, -642.8476943227679], [-8290.134561555362, -877.8976943233374]], "source": 5002561614, "length": 124.3304806738828}, {"destination": 1889249225, "path": [[-3765.684561550131, -3054.547694322451], [-3780.4345615555235, -3083.197694323303], [-3790.684561550961, -3102.6476943232237], [-3792.1845615542793, -3128.84769432209], [-3788.1845615501675, -3135.8476943221804], [-3778.534561554636, -3142.447694322925], [-3756.234561556937, -3150.74769432222]], "source": 1889249359, "length": 26.24720878945632}, {"destination": 1889249255, "path": [[-3765.684561550131, -3054.547694322451], [-3822.9345615548027, -3140.6976943220143]], "source": 1889249359, "length": 22.036065992087973}, {"destination": 479302873, "path": [[-7265.384561556231, 225.8523056770656], [-7805.534561555305, 462.452305677985]], "source": 486131798, "length": 115.4138836896647}, {"destination": 3113807404, "path": [[-7265.384561556231, 225.8523056770656], [-7118.234561552583, 168.652305676531]], "source": 486131798, "length": 30.739588612739702}, {"destination": 479302935, "path": [[-7265.384561556231, 225.8523056770656], [-7469.784561550341, -213.8976943228954]], "source": 486131798, "length": 105.2379711682945}, {"destination": 1889249235, "path": [[-3908.2845615538986, -3271.7976943228423], [-4008.33456155425, -3247.79769432304], [-4174.684561554897, -3202.4976943230145], [-4285.984561555268, -3166.947694323241], [-4387.884561552369, -3125.6476943219977], [-4746.084561553233, -2939.0976943233227]], "source": 1889249369, "length": 176.74953768364432}, {"destination": 1889249311, "path": [[-3908.2845615538986, -3271.7976943228423], [-4087.484561551946, -3254.0976943220558], [-4192.784561553253, -3233.847694323444]], "source": 1889249369, "length": 54.826597644276006}, {"destination": 1769171872, "path": [[3622.315438448709, -7548.447694322391], [3586.3154384472296, -7508.19769432276]], "source": 2049820777, "length": 11.268559855504652}, {"destination": 2049820826, "path": [[3622.315438448709, -7548.447694322391], [3647.21543844837, -7576.747694322705]], "source": 2049820777, "length": 7.875636543525299}, {"destination": 1769171909, "path": [[3622.315438448709, -7548.447694322391], [4008.8654384433653, -7281.747694323215]], "source": 2049820777, "length": 94.44563082579316}, {"destination": 4273214059, "path": [[727.2154384452278, -1488.3976943220746], [728.3654384480087, -1495.0476943234037], [723.2154384482214, -1518.647694322084]], "source": 4273219690, "length": 6.833421967037996}, {"destination": 4273219692, "path": [[727.2154384452278, -1488.3976943220746], [708.7154384493033, -1483.99769432217], [691.7654384466232, -1469.09769432213]], "source": 4273219690, "length": 8.274662609227253}, {"destination": 4273219735, "path": [[727.2154384452278, -1488.3976943220746], [739.7654384462271, -1448.2976943224203], [752.4654384454266, -1424.297694322618], [761.6154384493257, -1412.5976943226703], [776.265438446444, -1359.0476943221574], [748.5654384495888, -1352.3476943220203], [769.8154384456757, -1283.2976943233375]], "source": 4273219690, "length": 51.80226931043205}, {"destination": 1317670893, "path": [[819.5654384479667, 67.00230567702192], [902.7154384497749, 48.65230567752121], [932.5154384498546, 45.40230567684489]], "source": 1317671054, "length": 22.043541495843137}, {"destination": 4273219690, "path": [[691.7654384466232, -1469.09769432213], [708.7154384493033, -1483.99769432217], [727.2154384452278, -1488.3976943220746]], "source": 4273219692, "length": 8.274662609227253}, {"destination": 4273219699, "path": [[691.7654384466232, -1469.09769432213], [679.9154384466988, -1474.7976943230155], [659.3654384445813, -1471.6976943223158], [638.3154384437262, -1469.09769432213], [619.8154384478016, -1465.547694323277], [609.0154384494895, -1459.3976943224618], [609.5154384482271, -1448.847694321742], [595.7654384474154, -1446.347694322725]], "source": 4273219692, "length": 21.69670237785584}, {"destination": 4273219701, "path": [[691.7654384466232, -1469.09769432213], [691.2154384437486, -1448.4476943223967], [702.5654384449354, -1417.6476943230655]], "source": 4273219692, "length": 11.774631283454603}, {"destination": 1404152866, "path": [[-974.7345615522818, 8750.15230567655], [-1057.8345615570584, 8459.952305678087]], "source": 1404152850, "length": 66.44503694900138}, {"destination": 1575913067, "path": [[-974.7345615522818, 8750.15230567655], [-617.9345615535681, 8703.10230567739], [-481.3845615529999, 8688.402305677911]], "source": 1404152850, "length": 94.84492890193641}, {"destination": 1404152802, "path": [[-974.7345615522818, 8750.15230567655], [-898.7345615523168, 9015.502305677714]], "source": 1404152850, "length": 60.75593223985172}, {"destination": 1316236976, "path": [[-1452.9845615527393, 2758.9023056773244], [-1496.4845615565991, 2692.652305677612]], "source": 482732142, "length": 16.89690679848486}, {"destination": 1316236809, "path": [[-1452.9845615527393, 2758.9023056773244], [-2025.0845615521484, 2889.1523056771007]], "source": 482732142, "length": 112.59334239737275}, {"destination": 1316236883, "path": [[-1452.9845615527393, 2758.9023056773244], [-1459.384561556476, 2762.052305676832], [-1573.984561552777, 2818.4023056780916]], "source": 482732142, "length": 26.548987028429448}, {"destination": 1316236717, "path": [[-1452.9845615527393, 2758.9023056773244], [-1351.3345615550065, 2705.202305676835]], "source": 482732142, "length": 22.723505143605273}, {"destination": 4273219692, "path": [[595.7654384474154, -1446.347694322725], [609.5154384482271, -1448.847694321742], [609.0154384494895, -1459.3976943224618], [619.8154384478016, -1465.547694323277], [638.3154384437262, -1469.09769432213], [659.3654384445813, -1471.6976943223158], [679.9154384466988, -1474.7976943230155], [691.7654384466232, -1469.09769432213]], "source": 4273219699, "length": 21.696702377855843}, {"destination": 1316623433, "path": [[1703.9654384447545, -969.597694322033], [1721.5654384443724, -857.4476943223885]], "source": 773662836, "length": 25.164516195426536}, {"destination": 1316623595, "path": [[1703.9654384447545, -969.597694322033], [1606.7654384457342, -952.197694322976]], "source": 773662836, "length": 18.88523231049029}, {"destination": 1316623678, "path": [[1703.9654384447545, -969.597694322033], [1784.4154384434319, -983.9976943233353]], "source": 773662836, "length": 15.630651126304603}, {"destination": 4273219692, "path": [[702.5654384449354, -1417.6476943230655], [691.2154384437486, -1448.4476943223967], [691.7654384466232, -1469.09769432213]], "source": 4273219701, "length": 11.774631283454603}, {"destination": 4273219729, "path": [[702.5654384449354, -1417.6476943230655], [716.4654384439473, -1413.0976943231844], [725.6154384478464, -1398.397694321929], [736.3654384491269, -1383.69769432245], [736.9154384448962, -1376.3476943218222], [727.2154384452278, -1346.0476943230049], [730.0154384495272, -1331.5476943223102]], "source": 4273219701, "length": 22.27709440020483}, {"destination": 4273219708, "path": [[702.5654384449354, -1417.6476943230655], [682.5154384486609, -1415.4476943222248], [654.215438444794, -1407.5476943222752], [636.2654384446387, -1398.7976943230506], [631.1154384448514, -1389.547694323312], [635.2154384430264, -1367.147694322668], [643.9654384493565, -1345.1476943231455], [653.9654384454252, -1333.347694322029]], "source": 4273219701, "length": 29.16314546445148}, {"destination": 75355692, "path": [[515.3654384457695, -2502.6976943234304], [183.71543844608595, -2509.9976943234738]], "source": 4075546746, "length": 63.08786262373065}, {"destination": 476078805, "path": [[515.3654384457695, -2502.6976943234304], [658.5154384453062, -2493.597694321892]], "source": 4075546746, "length": 27.296702092323052}, {"destination": 1316623703, "path": [[515.3654384457695, -2502.6976943234304], [514.2154384429887, -2302.397694322167]], "source": 4075546746, "length": 44.54525863360515}, {"destination": 4273219754, "path": [[653.9654384454252, -1333.347694322029], [659.6654384480871, -1319.7476943229703]], "source": 4273219708, "length": 3.2124107803574873}, {"destination": 4273219709, "path": [[653.9654384454252, -1333.347694322029], [681.4654384470487, -1331.5476943223102]], "source": 4273219708, "length": 5.244699331356843}, {"destination": 4273219701, "path": [[653.9654384454252, -1333.347694322029], [643.9654384493565, -1345.1476943231455], [635.2154384430264, -1367.147694322668], [631.1154384448514, -1389.547694323312], [636.2654384446387, -1398.7976943230506], [654.215438444794, -1407.5476943222752], [682.5154384486609, -1415.4476943222248], [702.5654384449354, -1417.6476943230655]], "source": 4273219708, "length": 29.16314546445148}, {"destination": 1581175514, "path": [[2679.915438449143, -6038.347694323321], [2644.465438443433, -6081.097694321968], [2601.6154384436163, -6197.997694322055]], "source": 1581175146, "length": 38.89858565181388}, {"destination": 1769172092, "path": [[2679.915438449143, -6038.347694323321], [2702.71543844558, -6010.8976943222815]], "source": 1581175146, "length": 7.488474145763692}, {"destination": 1581175157, "path": [[2679.915438449143, -6038.347694323321], [2558.1654384438934, -5984.597694322247]], "source": 1581175146, "length": 26.05437166071645}, {"destination": 4273219729, "path": [[713.8654384490906, -1340.797694322049], [730.0154384495272, -1331.5476943223102]], "source": 4273219711, "length": 3.6951719092984145}, {"destination": 4273219709, "path": [[713.8654384490906, -1340.797694322049], [701.5154384433231, -1336.3976943221446], [681.4654384470487, -1331.5476943223102]], "source": 4273219711, "length": 6.506190554418204}, {"destination": 4273219719, "path": [[713.8654384490906, -1340.797694322049], [707.2654384430166, -1362.2476943222496], [722.9154384447156, -1366.097694322832], [718.9654384447408, -1377.6976943233876]], "source": 4273219711, "length": 10.718223724733242}, {"destination": 882614840, "path": [[246.06543844640782, -2129.147694322597], [512.465438447407, -2115.5476943217623]], "source": 967329921, "length": 50.74953759029468}, {"destination": 481385192, "path": [[246.06543844640782, -2129.147694322597], [169.76543845004244, -2133.647694321894]], "source": 967329921, "length": 14.544033831968594}, {"destination": 481385195, "path": [[246.06543844640782, -2129.147694322597], [248.76543844953858, -1679.6476943223838]], "source": 967329921, "length": 99.96570269095434}, {"destination": 4273219719, "path": [[715.8154384470095, -1376.8976943229204], [718.9654384447408, -1377.6976943233876]], "source": 4273219716, "length": 0.6152519183788118}, {"destination": 4955392152, "path": [[-3003.7845615566994, -259.0476943229447], [-2922.2345615522727, -61.99769432235769], [-2991.1345615545315, -40.34769432337271], [-2837.8345615536205, 293.10230567780593], [-2777.2345615559857, 270.60230567776955], [-2740.2845615540627, 353.9023056777779]], "source": 4955392133, "length": 172.50294726644802}, {"destination": 1316237077, "path": [[-3003.7845615566994, -259.0476943229447], [-3245.284561550932, -192.1476943227418]], "source": 4955392133, "length": 48.27595073590672}, {"destination": 481392303, "path": [[-3003.7845615566994, -259.0476943229447], [-2794.684561550298, -316.9476943227778], [-2768.73456155613, -323.7476943223072]], "source": 4955392133, "length": 46.95902841872144}, {"destination": 267198558, "path": [[-7080.684561550754, -6770.397694323194], [-6978.834561550684, -6571.147694321766]], "source": 477636742, "length": 48.3583050320881}, {"destination": 3681386681, "path": [[718.9654384447408, -1377.6976943233876], [724.1154384445281, -1378.9976943225925], [761.9654384498631, -1260.8476943221092], [781.3654384491997, -1264.9976943226447], [797.1654384490989, -1206.7976943228587], [826.2154384439668, -1210.2476943223196], [845.2654384498715, -1209.5976943218288], [854.2654384484649, -1200.9476943219966], [854.0154384490961, -1189.0976943220721]], "source": 4273219719, "length": 59.7697461917937}, {"destination": 4273219716, "path": [[718.9654384447408, -1377.6976943233876], [715.8154384470095, -1376.8976943229204]], "source": 4273219719, "length": 0.6152519183788118}, {"destination": 4273219711, "path": [[718.9654384447408, -1377.6976943233876], [722.9154384447156, -1366.097694322832], [707.2654384430166, -1362.2476943222496], [713.8654384490906, -1340.797694322049]], "source": 4273219719, "length": 10.718223724733242}, {"destination": 856909476, "path": [[-604.2345615568934, 8055.952305676684], [-541.8345615524345, 8403.252305678066]], "source": 619530378, "length": 78.14276068760117}, {"destination": 856909246, "path": [[-604.2345615568934, 8055.952305676684], [-741.4345615543994, 8098.952305678253]], "source": 619530378, "length": 27.792905105520095}, {"destination": 622622486, "path": [[-604.2345615568934, 8055.952305676684], [-472.53456155260665, 8028.202305677468], [-91.13456155063204, 7914.402305678081], [307.16543844988564, 7801.352305676801]], "source": 619530378, "length": 182.450802755131}, {"destination": 1582517386, "path": [[-8448.684561550124, -3649.097694323089], [-8497.53456155611, -3619.297694323009]], "source": 1582517271, "length": 11.410828225831864}, {"destination": 476681028, "path": [[-8448.684561550124, -3649.097694323089], [-8321.434561551654, -3726.5976943228197], [-8475.934561552378, -3921.097694322029]], "source": 1582517271, "length": 81.99709797601476}, {"destination": 1582517359, "path": [[-8448.684561550124, -3649.097694323089], [-8422.58456155065, -3624.74769432275], [-8419.884561554625, -3606.397694323249], [-8418.534561556611, -3579.997694322046]], "source": 1582517271, "length": 17.33303897946505}, {"destination": 1890502904, "path": [[-6235.934561551914, -2013.847694323445], [-6307.834561553705, -2128.5976943232754]], "source": 1890502796, "length": 28.9512600723126}, {"destination": 3355899010, "path": [[-6235.934561551914, -2013.847694323445], [-6021.434561553462, -2155.8976943225616]], "source": 1890502796, "length": 51.59249438769456}, {"destination": 4273219711, "path": [[730.0154384495272, -1331.5476943223102], [713.8654384490906, -1340.797694322049]], "source": 4273219729, "length": 3.6951719092984145}, {"destination": 4273219701, "path": [[730.0154384495272, -1331.5476943223102], [727.2154384452278, -1346.0476943230049], [736.9154384448962, -1376.3476943218222], [736.3654384491269, -1383.69769432245], [725.6154384478464, -1398.397694321929], [716.4654384439473, -1413.0976943231844], [702.5654384449354, -1417.6476943230655]], "source": 4273219729, "length": 22.27709440020483}, {"destination": 4273219735, "path": [[730.0154384495272, -1331.5476943223102], [732.6154384443839, -1318.0476943226438], [741.1654384483768, -1299.9476943225118], [763.7654384495818, -1283.147694323361], [769.8154384456757, -1283.2976943233375]], "source": 4273219729, "length": 14.222669120007714}, {"destination": 1319204487, "path": [[4443.165438445362, 4126.852305677886], [4602.165438448936, 4140.302305676968]], "source": 1319204547, "length": 30.38734738582474}, {"destination": 4955392152, "path": [[-2584.3845615511896, 288.60230567673284], [-2740.2845615540627, 353.9023056777779]], "source": 4955392148, "length": 33.013514973116266}, {"destination": 481391756, "path": [[-2584.3845615511896, 288.60230567673284], [-2568.3345615519215, 341.2023056768021], [-2558.634561552253, 373.0023056771614], [-2535.634561553479, 411.60230567705014], [-2496.9345615559746, 476.45230567816554], [-2462.034561553139, 534.9523056779049], [-2400.4345615509237, 638.2023056765718], [-2364.4845615535814, 698.7023056765906]], "source": 4955392148, "length": 100.69833427955318}, {"destination": 481392303, "path": [[-2584.3845615511896, 288.60230567673284], [-2624.084561553275, 150.70230567815202], [-2649.1845615552734, 82.15230567820697], [-2666.2845615561537, 7.25230567688584], [-2768.73456155613, -323.7476943223072]], "source": 4955392148, "length": 140.6754245256647}, {"destination": 1745207295, "path": [[883.065438443964, -1705.7476943218576], [951.8154384480226, -1765.847694322531], [981.0154384481962, -1791.3976943226828]], "source": 773662870, "length": 26.641874560435014}, {"destination": 4273219729, "path": [[769.8154384456757, -1283.2976943233375], [763.7654384495818, -1283.147694323361], [741.1654384483768, -1299.9476943225118], [732.6154384443839, -1318.0476943226438], [730.0154384495272, -1331.5476943223102]], "source": 4273219735, "length": 14.222669120007716}, {"destination": 4273219690, "path": [[769.8154384456757, -1283.2976943233375], [748.5654384495888, -1352.3476943220203], [776.265438446444, -1359.0476943221574], [761.6154384493257, -1412.5976943226703], [752.4654384454266, -1424.297694322618], [739.7654384462271, -1448.2976943224203], [727.2154384452278, -1488.3976943220746]], "source": 4273219735, "length": 51.80226931043205}, {"destination": 4273219742, "path": [[769.8154384456757, -1283.2976943233375], [779.3154384430068, -1283.5976943232909], [808.8654384437177, -1289.4976943229608]], "source": 4273219735, "length": 7.5762825864948935}, {"destination": 4955392148, "path": [[-2740.2845615540627, 353.9023056777779], [-2584.3845615511896, 288.60230567673284]], "source": 4955392152, "length": 33.013514973116266}, {"destination": 4955392133, "path": [[-2740.2845615540627, 353.9023056777779], [-2777.2345615559857, 270.60230567776955], [-2837.8345615536205, 293.10230567780593], [-2991.1345615545315, -40.34769432337271], [-2922.2345615522727, -61.99769432235769], [-3003.7845615566994, -259.0476943229447]], "source": 4955392152, "length": 172.502947266448}, {"destination": 1316237078, "path": [[-2740.2845615540627, 353.9023056777779], [-2949.4845615545273, 434.2523056770631]], "source": 4955392152, "length": 43.612783668029515}, {"destination": 1890531875, "path": [[-7276.434561553913, -1525.8976943233192], [-7533.984561554518, -1427.2976943221493]], "source": 1890502809, "length": 53.661701882770075}, {"destination": 1890811948, "path": [[-7276.434561553913, -1525.8976943233192], [-7370.484561555202, -1460.5476943234662], [-7465.734561556303, -1402.0476943219505], [-7661.334561554157, -1297.5976943234714], [-7855.784561556334, -1204.1976943226728]], "source": 1890502809, "length": 131.61224163987174}, {"destination": 2360181090, "path": [[562.4654384490668, -1237.7976943227509], [571.6154384458605, -1238.947694321979]], "source": 773662874, "length": 1.7607899575641686}, {"destination": 3485520292, "path": [[562.4654384490668, -1237.7976943227509], [569.0154384438983, -1208.5976943225774], [548.0654384442118, -1205.2476943225088], [552.8654384434617, -1183.497694322355], [528.7154384490123, -1179.5976943229648], [533.1654384477247, -1159.397694323161], [510.11543844481366, -1155.6476943219707], [515.0654384493691, -1133.247694323103], [469.36543844822154, -1125.8976943224752]], "source": 773662874, "length": 43.207122433100956}, {"destination": 4273147781, "path": [[562.4654384490668, -1237.7976943227509], [460.56543844485986, -1224.6976943224297]], "source": 773662874, "length": 19.595832241699192}, {"destination": 476553962, "path": [[2274.465438446782, 4718.102305677263], [1775.965438447713, 4666.402305677053], [1422.1154384443935, 4627.75230567658], [1293.3654384497117, 4627.402305677819], [1125.465438448714, 4634.8523056778395], [862.2154384454461, 4659.602305677524]], "source": 476555419, "length": 270.1820787315282}, {"destination": 476559347, "path": [[2274.465438446782, 4718.102305677263], [2206.0154384462294, 4415.502305677776], [2165.515438449006, 4213.002305677449]], "source": 476555419, "length": 114.23083885183038}, {"destination": 1324294395, "path": [[2274.465438446782, 4718.102305677263], [2304.8154384497366, 4799.652305678137], [2329.5154384470607, 4935.552305678215]], "source": 476555419, "length": 49.61846338838512}, {"destination": 1324294551, "path": [[2274.465438446782, 4718.102305677263], [2484.0654384448158, 4739.852305677417], [2814.7654384440557, 4744.602305677859]], "source": 476555419, "length": 103.06110815422386}, {"destination": 4273219744, "path": [[808.8654384437177, -1289.4976943229608], [830.0154384457414, -1281.8976943229643], [846.7654384460843, -1253.797694323211]], "source": 4273219742, "length": 11.37785147132143}, {"destination": 3681386682, "path": [[808.8654384437177, -1289.4976943229608], [840.8654384481906, -1295.947694321953], [836.2654384441726, -1323.097694323039], [842.8154384461095, -1324.4976943234121], [837.2654384487532, -1349.2976943219048], [879.9654384432642, -1358.4976943228355], [888.6154384484257, -1360.2976943225542], [928.71543844808, -1172.5976943228743]], "source": 4273219742, "length": 71.75384246958357}, {"destination": 4273219735, "path": [[808.8654384437177, -1289.4976943229608], [779.3154384430068, -1283.5976943232909], [769.8154384456757, -1283.2976943233375]], "source": 4273219742, "length": 7.5762825864948935}, {"destination": 1316623636, "path": [[81.5154384454786, -339.84769432215955], [11.91543844925036, -610.9976943218243]], "source": 773662879, "length": 61.73650491013839}, {"destination": 1316623495, "path": [[81.5154384454786, -339.84769432215955], [15.715438443919538, -327.8976943228429], [-82.83456155311342, -310.0476943220798], [-96.93456155446256, -307.4976943224783]], "source": 773662879, "length": 34.68920880470773}, {"destination": 2376753461, "path": [[1820.0654384443737, -2376.7476943223896], [1818.5154384440239, -2377.097694322927], [1756.2654384448706, -2394.0976943226387]], "source": 210643104, "length": 12.726241234571066}, {"destination": 475974959, "path": [[1820.0654384443737, -2376.7476943223896], [1927.8654384464744, -2321.34769432335], [2021.6154384442575, -2248.297694322332], [2122.715438446221, -2119.747694322882], [2195.9654384460237, -1994.1976943229633], [2241.1654384484336, -1898.7476943230774], [2331.965438443717, -1768.497694323301], [2463.9654384444043, -1672.6976943228779]], "source": 210643104, "length": 203.23841601076012}, {"destination": 115005745, "path": [[9954.165438443852, -461.84769432322526], [9858.015438446444, -628.1476943232889], [9804.365438448314, -712.0976943220114], [9726.315438449263, -799.3476943219946], [9553.615438449015, -942.9476943232373], [9374.21543844863, -1066.0476943229469]], "source": 114903203, "length": 176.51277052293733}, {"destination": 93180322, "path": [[9954.165438443852, -461.84769432322526], [10034.365438443161, -493.54769432241596], [11201.665438449027, -950.4976943226495]], "source": 114903203, "length": 260.940456382487}, {"destination": 4867879907, "path": [[9954.165438443852, -461.84769432322526], [9074.265438449913, -109.9976943219616], [9086.115438449837, -52.19769432329713]], "source": 114903203, "length": 197.77307226923432}, {"destination": 85521110, "path": [[9954.165438443852, -461.84769432322526], [9977.16543844973, -409.9976943230388]], "source": 114903203, "length": 12.332839785856294}, {"destination": 4273147784, "path": [[552.6154384440929, -1303.4976943231413], [535.8154384467184, -1297.4976943223028], [519.6654384462818, -1296.5476943218591], [499.2654384494699, -1299.747694321951], [482.76543844849584, -1298.7476943226993]], "source": 4273219748, "length": 13.632437975136574}, {"destination": 4273219753, "path": [[552.6154384440929, -1303.4976943231413], [540.3654384465995, -1317.0976943222001], [527.615438443263, -1337.3476943225883], [523.515438445088, -1357.9476943217373], [510.3154384471509, -1394.8976943218838], [503.96543844755115, -1422.097694321778]], "source": 4273219748, "length": 28.34003745191362}, {"destination": 4273219747, "path": [[552.6154384440929, -1303.4976943231413], [574.9154384488975, -1293.3976943223513]], "source": 4273219748, "length": 4.797762855445235}, {"destination": 4273219748, "path": [[503.96543844755115, -1422.097694321778], [510.3154384471509, -1394.8976943218838], [523.515438445088, -1357.9476943217373], [527.615438443263, -1337.3476943225883], [540.3654384465995, -1317.0976943222001], [552.6154384440929, -1303.4976943231413]], "source": 4273219753, "length": 28.340037451913616}, {"destination": 4273219747, "path": [[659.6654384480871, -1319.7476943229703], [634.515438449057, -1306.5976943220649], [598.1154384500087, -1289.4976943229608], [574.9154384488975, -1293.3976943223513]], "source": 4273219754, "length": 18.00010863727807}, {"destination": 4273219708, "path": [[659.6654384480871, -1319.7476943229703], [653.9654384454252, -1333.347694322029]], "source": 4273219754, "length": 3.2124107803574873}, {"destination": 4273219709, "path": [[659.6654384480871, -1319.7476943229703], [681.4654384470487, -1331.5476943223102]], "source": 4273219754, "length": 4.9055077029458545}, {"destination": 3681386687, "path": [[659.6654384480871, -1319.7476943229703], [671.9154384455805, -1279.2976943227786], [680.6154384477736, -1258.9476943229984], [694.4154384456169, -1230.0976943233622], [718.1654384496028, -1166.0476943227138]], "source": 4273219754, "length": 35.98587064097259}, {"destination": 495637616, "path": [[5044.615438443145, -5214.847694322344], [4966.015438448323, -5364.947694323163], [4902.61543844639, -5549.097694322214], [4896.865438446695, -5759.647694322467]], "source": 554686151, "length": 126.10154025323443}, {"destination": 602360657, "path": [[5044.615438443145, -5214.847694322344], [5003.415438444847, -5193.397694322144]], "source": 554686151, "length": 9.172452944561167}, {"destination": 4273219747, "path": [[576.4654384492474, -1253.3476943232813], [587.2154384434225, -1265.9976943218965], [589.2154384454784, -1276.8476943225692], [574.9154384488975, -1293.3976943223513]], "source": 4273219757, "length": 10.496079326243072}, {"destination": 1316694034, "path": [[-515.6845615559291, -13.5476943228241], [-481.1845615506627, -27.547694323004634]], "source": 1316694011, "length": 7.262405428937412}, {"destination": 1316623608, "path": [[1013.7654384436701, -846.147694321786], [1024.3654384467504, -796.997694322954]], "source": 773662896, "length": 11.115151312540885}, {"destination": 1316623429, "path": [[1013.7654384436701, -846.147694321786], [999.3654384459205, -915.0976943228528]], "source": 773662896, "length": 15.576355806628825}, {"destination": 1316623614, "path": [[1013.7654384436701, -846.147694321786], [1317.4154384429926, -900.4476943221817]], "source": 773662896, "length": 58.99364442649297}, {"destination": 95679584, "path": [[-2950.434561554971, 4667.3023056769125], [-3193.2845615543215, 4207.852305677662]], "source": 76482738, "length": 112.13144549438132}, {"destination": 654397601, "path": [[-2950.434561554971, 4667.3023056769125], [-2596.484561550483, 4538.602305677486], [-2278.8845615551168, 4400.152305677807]], "source": 76482738, "length": 140.9484950916476}, {"destination": 601145290, "path": [[-2950.434561554971, 4667.3023056769125], [-3031.534561550586, 4697.352305678138]], "source": 76482738, "length": 16.809738467173286}, {"destination": 385114252, "path": [[-3506.1845615516063, 3554.552305677916], [-2653.634561553986, 3230.3523056782524]], "source": 76482739, "length": 177.44958572964973}, {"destination": 482732933, "path": [[-3506.1845615516063, 3554.552305677916], [-3721.0345615505958, 3196.2523056776604], [-3948.984561553459, 2833.3523056769395]], "source": 76482739, "length": 181.1606230743771}, {"destination": 2367475184, "path": [[1187.3154384431928, -1971.7976943223193], [1504.6154384492638, -2212.847694321951]], "source": 773662900, "length": 80.71242716421477}, {"destination": 3117897473, "path": [[1187.3154384431928, -1971.7976943223193], [1059.9154384465237, -1860.3976943225575]], "source": 773662900, "length": 34.65104256014082}, {"destination": 2367475198, "path": [[1187.3154384431928, -1971.7976943223193], [1159.1654384446315, -1989.4976943231059], [1097.0654384436784, -2042.2476943231516], [1056.415438448255, -2093.3976943222633], [1017.5154384484131, -2160.79769432298], [991.5154384430025, -2208.3976943232387], [970.165438445747, -2274.5476943217823], [965.4154384435287, -2313.1976943222553]], "source": 773662900, "length": 89.34551664903374}, {"destination": 2367475224, "path": [[1187.3154384431928, -1971.7976943223193], [1265.1154384499819, -1927.997694322059], [1366.4654384442088, -1885.7976943227327], [1478.3654384444844, -1872.8476943223882], [1593.51543844366, -1871.2476943232305], [1693.715438449317, -1889.4976943233387], [1771.2154384454948, -1921.1476943219452], [1850.4654384443597, -1965.6476943232803]], "source": 773662900, "length": 136.36707922697593}, {"destination": 856909249, "path": [[-841.5345615517822, 7223.402305676529], [-920.8345615547842, 7246.802305678201], [-1044.1845615503098, 7311.00230567705], [-1146.1345615515484, 7389.002305677294]], "source": 1404152862, "length": 69.4369562339105}, {"destination": 1404152844, "path": [[-841.5345615517822, 7223.402305676529], [-765.5345615518172, 7393.802305676544]], "source": 1404152862, "length": 40.558878785044826}, {"destination": 856909277, "path": [[-841.5345615517822, 7223.402305676529], [-713.5345615552069, 7205.302305678174], [-644.8845615523169, 7188.102305677901], [-600.0845615545813, 7158.602305677775], [-451.73456155112035, 7062.602305676791], [-303.934561550534, 6930.202305676758], [-213.9845615545255, 6891.202305677524]], "source": 1404152862, "length": 144.30928577972819}, {"destination": 1315785516, "path": [[-2662.5345615514107, -1985.7976943224999], [-2795.984561551279, -2200.2476943221436]], "source": 479283382, "length": 54.023015756300275}, {"destination": 848690687, "path": [[-2662.5345615514107, -1985.7976943224999], [-2866.384561556856, -1908.9476943232598], [-2981.934561553601, -1861.6476943229543]], "source": 479283382, "length": 66.72668720602707}, {"destination": 1891590920, "path": [[-6907.3845615506, -2496.8476943225683], [-6910.834561551837, -2450.697694323267], [-6922.634561554731, -2365.347694322395], [-6933.384561556011, -2328.647694323394], [-6965.284561552209, -2213.7476943218103], [-7028.584561552975, -2018.9976943232323], [-7075.984561552673, -1900.047694322282], [-7087.534561556196, -1871.0976943232538], [-7099.434561553153, -1850.7476943234735]], "source": 1890502839, "length": 148.83700683731874}, {"destination": 1890935453, "path": [[-6907.3845615506, -2496.8476943225683], [-6924.03456155688, -2466.2476943220213], [-6957.484561553429, -2424.2976943220638]], "source": 1890502839, "length": 18.79723680697601}, {"destination": 63302402, "path": [[9651.81543844551, -3816.297694323012], [9557.265438445484, -3784.7476943220217]], "source": 93792440, "length": 19.299698554640475}, {"destination": 848698030, "path": [[9651.81543844551, -3816.297694323012], [9458.265438446744, -4142.797694322909], [9278.56543844996, -4444.247694323167]], "source": 93792440, "length": 156.6513561978749}, {"destination": 2367475198, "path": [[960.3154384478785, -2422.647694322322], [960.3154384478785, -2354.647694323475], [965.4154384435287, -2313.1976943222553]], "source": 773662907, "length": 24.391989010317225}, {"destination": 4273219775, "path": [[820.7654384477792, -1100.6976943228608], [802.2654384447492, -1089.1976943234738], [784.9654384486371, -1082.8476943220976]], "source": 4273219772, "length": 7.928375513780965}, {"destination": 4273219788, "path": [[784.9654384486371, -1082.8476943220976], [788.4154384498743, -1075.34769432327], [798.015438448374, -1047.3476943229089], [811.5154384498169, -1033.8476943232422], [820.7154384436421, -1019.4976943225242], [822.9154384480353, -1009.4976943229028]], "source": 4273219775, "length": 18.137693273337682}, {"destination": 4273219772, "path": [[784.9654384486371, -1082.8476943220976], [802.2654384447492, -1089.1976943234738], [820.7654384477792, -1100.6976943228608]], "source": 4273219775, "length": 7.928375513780965}, {"destination": 3681386687, "path": [[784.9654384486371, -1082.8476943220976], [778.0154384491311, -1080.2976943224962], [758.7654384479947, -1076.6476943224745], [733.2654384484272, -1077.8976943228713], [728.0154384474713, -1088.3476943224223], [718.1654384496028, -1166.0476943227138]], "source": 4273219775, "length": 29.957257653849908}, {"destination": 654397602, "path": [[-2337.5345615548326, 3782.35230567725], [-2586.6845615567513, 3901.852305677522]], "source": 639305926, "length": 54.32878656762593}, {"destination": 385114252, "path": [[-2337.5345615548326, 3782.35230567725], [-2386.8345615554176, 3690.1523056780406], [-2653.634561553986, 3230.3523056782524]], "source": 639305926, "length": 136.69894136551807}, {"destination": 476556645, "path": [[-2337.5345615548326, 3782.35230567725], [-2229.984561552101, 3939.7023056775283], [-1901.7845615536544, 4198.652305676731]], "source": 639305926, "length": 125.45976581284734}, {"destination": 483099095, "path": [[-2337.5345615548326, 3782.35230567725], [-1676.7845615532906, 3574.652305676551]], "source": 639305926, "length": 133.88575392578326}, {"destination": 3681386687, "path": [[794.0654384483992, -1193.9976943224906], [787.6654384446624, -1174.597694323154], [769.9654384438759, -1169.7476943233198], [740.1654384437961, -1163.697694321897], [718.1654384496028, -1166.0476943227138]], "source": 4273219783, "length": 18.057720747234985}, {"destination": 3681386681, "path": [[849.3154384439094, -1012.7476943218028], [845.3654384439346, -1029.047694322216], [843.8654384477218, -1035.5976943223766], [839.3654384448723, -1052.0976943233507], [837.5654384451536, -1063.8976943226908], [841.9654384468345, -1074.1476943234575], [849.8654384467841, -1086.4476943233115], [855.8654384458464, -1097.1976943228156], [859.1154384447464, -1106.2476943219935], [859.5654384464524, -1114.2976943219196], [859.7154384446526, -1128.3476943226844], [857.9654384490709, -1139.647694323287], [853.0154384445154, -1152.3476943224864], [849.9654384479527, -1163.8976943224577], [850.8654384442593, -1177.7476943226616], [854.0154384490961, -1189.0976943220721]], "source": 4273219785, "length": 40.647665428251635}, {"destination": 4273219788, "path": [[849.3154384439094, -1012.7476943218028], [822.9154384480353, -1009.4976943229028]], "source": 4273219785, "length": 5.071720545944266}, {"destination": 4273350989, "path": [[849.3154384439094, -1012.7476943218028], [897.5154384458506, -1016.9976943217307], [906.0154384457064, -1022.4976943220554]], "source": 4273219785, "length": 11.23916025076905}, {"destination": 4273219785, "path": [[822.9154384480353, -1009.4976943229028], [849.3154384439094, -1012.7476943218028]], "source": 4273219788, "length": 5.071720545944266}, {"destination": 3485520289, "path": [[822.9154384480353, -1009.4976943229028], [810.365438447036, -1007.8976943219686], [787.365438448262, -992.7976943231442], [779.9154384500184, -983.6976943233822]], "source": 4273219788, "length": 10.399332238941252}, {"destination": 4273219775, "path": [[822.9154384480353, -1009.4976943229028], [820.7154384436421, -1019.4976943225242], [811.5154384498169, -1033.8476943232422], [798.015438448374, -1047.3476943229089], [788.4154384498743, -1075.34769432327], [784.9654384486371, -1082.8476943220976]], "source": 4273219788, "length": 18.13769327333768}, {"destination": 1890502938, "path": [[-7287.084561554025, -3546.097694322015], [-7351.184561557034, -3520.9976943217926]], "source": 1890502861, "length": 13.406415873291477}, {"destination": 654577319, "path": [[-7287.084561554025, -3546.097694322015], [-7491.984561553977, -3826.7976943231474], [-7595.584561556734, -3988.1476943222083], [-7609.734561555115, -4010.197694322315], [-7728.834561554266, -4199.2476943217835]], "source": 1890502861, "length": 167.87008402849258}, {"destination": 4273147828, "path": [[671.865438448549, -1640.3476943231965], [652.7154384485812, -1640.9976943219108]], "source": 4273219790, "length": 3.6435917054740456}, {"destination": 4867879881, "path": [[2383.565438449864, -7271.647694322425], [2337.065438446473, -7254.747694322105]], "source": 1581175160, "length": 9.606790272442625}, {"destination": 495632202, "path": [[2383.565438449864, -7271.647694322425], [2363.4654384494524, -7217.297694323222], [2323.365438449798, -7076.147694322188], [2320.0154384497296, -6970.647694322096]], "source": 1581175160, "length": 68.45042077136746}, {"destination": 93466273, "path": [[2383.565438449864, -7271.647694322425], [2433.1654384468493, -7405.597694322807], [2491.815438446565, -7504.29769432337], [2622.6654384444714, -7619.1476943225925], [2805.6654384442936, -7786.597694321884], [3077.9654384431865, -7973.347694322896]], "source": 1581175160, "length": 208.86325858037458}, {"destination": 495646343, "path": [[8292.015438449596, -7056.297694322921], [8240.16543844408, -7057.89769432208], [8153.065438449403, -7029.997694322887], [8116.415438443881, -7025.3476943218375], [8077.26543844467, -7026.747694322211]], "source": 3733749299, "length": 42.047386145145765}, {"destination": 1582473540, "path": [[8292.015438449596, -7056.297694322921], [8300.465438445315, -7056.047694321776]], "source": 3733749299, "length": 1.6083082128860957}, {"destination": 1777868870, "path": [[8292.015438449596, -7056.297694322921], [8239.465438443005, -7140.597694322181], [8240.815438448124, -7155.497694322222]], "source": 3733749299, "length": 24.56800709200769}, {"destination": 1771400903, "path": [[8292.015438449596, -7056.297694322921], [8306.915438446083, -7032.397694322512], [8319.015438445376, -7023.197694323358], [8530.865438444835, -6667.747694322657], [8660.965438444635, -6391.397694322621], [8702.915438448144, -6283.847694323441]], "source": 3733749299, "length": 189.2829556837356}, {"destination": 476560259, "path": [[-3038.6845615524294, 2633.102305678037], [-2994.1345615540627, 2695.7023056777275]], "source": 639305947, "length": 16.297126278902507}, {"destination": 482732943, "path": [[-3038.6845615524294, 2633.102305678037], [-3113.7845615560877, 2517.402305677763], [-3329.284561552015, 2134.002305677285], [-3427.884561553185, 1918.4523056772207], [-3470.234561554264, 1824.5523056776847]], "source": 639305947, "length": 197.88698577680913}, {"destination": 479297279, "path": [[-3038.6845615524294, 2633.102305678037], [-3146.884561552099, 2648.952305676744], [-3233.4345615510074, 2663.8523056767835], [-3775.8345615515054, 2731.5523056774537], [-3976.084561550408, 2783.4023056776405]], "source": 639305947, "length": 181.70706595731298}, {"destination": 1722215093, "path": [[118.51543844443313, -4980.897694322195], [154.96543844761845, -4998.297694323029]], "source": 75349972, "length": 7.938328032696878}, {"destination": 1888323015, "path": [[118.51543844443313, -4980.897694322195], [240.51543844905154, -4772.2476943228285], [282.41543844842454, -4691.197694322469], [324.81543844653515, -4600.947694322955], [384.01543844912567, -4484.59769432219], [402.76543844441903, -4446.697694323376], [435.61543844816697, -4377.197694322987]], "source": 75349972, "length": 147.2545161746754}, {"destination": 1769172185, "path": [[3281.765438444495, -7983.697694323056], [3220.315438447585, -7926.547694323105]], "source": 1489398821, "length": 17.264159065403412}, {"destination": 1489398763, "path": [[3281.765438444495, -7983.697694323056], [3430.565438449662, -8128.097694322989]], "source": 1489398821, "length": 42.79872069042309}, {"destination": 1489398814, "path": [[3281.765438444495, -7983.697694323056], [3462.4154384488293, -7846.297694323212], [3886.715438447652, -7869.3476943225705], [4049.0154384471566, -8040.197694322515], [4042.815438445757, -8073.49769432264], [3909.8154384475947, -8160.797694323208]], "source": 1489398821, "length": 215.14010443066252}, {"destination": 1582517312, "path": [[-8800.384561553186, -3746.097694323325], [-8764.534561557013, -3708.4476943221034], [-8757.834561556876, -3686.647694323142], [-8764.534561557013, -3668.2976943218646], [-8767.684561554745, -3642.4476943217596]], "source": 1582517287, "length": 25.86457961018708}, {"destination": 476681033, "path": [[-8800.384561553186, -3746.097694323325], [-8837.234561553942, -3726.947694323357]], "source": 1582517287, "length": 8.199695880094602}, {"destination": 476681030, "path": [[-8800.384561553186, -3746.097694323325], [-8746.334561550384, -3774.1976943230784]], "source": 1582517287, "length": 12.02873509455433}, {"destination": 601145290, "path": [[-3761.6845615531247, 4869.152305676749], [-3031.534561550586, 4697.352305678138]], "source": 483103101, "length": 144.02768884629708}, {"destination": 4397155843, "path": [[-3761.6845615531247, 4869.152305676749], [-4227.784561550152, 5007.55230567762], [-4521.534561554574, 5126.152305678033]], "source": 483103101, "length": 155.62115799895815}, {"destination": 3027169573, "path": [[-3761.6845615531247, 4869.152305676749], [-3868.884561555319, 4974.802305676818], [-3927.6345615562036, 5043.002305678002], [-4117.584561555532, 5250.652305678116], [-4158.38456155626, 5333.152305677658], [-4169.5345615551105, 5455.752305676853]], "source": 483103101, "length": 155.8466918899488}, {"destination": 267198471, "path": [[-6858.3345615564895, -2942.7976943221524], [-6886.634561553251, -2977.447694322066]], "source": 1890502898, "length": 9.398607775569815}, {"destination": 601145306, "path": [[-6307.834561553705, -2128.5976943232754], [-6360.884561551928, -2112.397694322254]], "source": 1890502904, "length": 10.711729336161994}, {"destination": 1891590934, "path": [[-6307.834561553705, -2128.5976943232754], [-6356.884561554921, -2103.1476943225157]], "source": 1890502904, "length": 10.910555465644524}, {"destination": 3355899007, "path": [[-6307.834561553705, -2128.5976943232754], [-6366.084561555852, -2224.2976943225303]], "source": 1890502904, "length": 23.992946684926}, {"destination": 1890502815, "path": [[-6782.234561555356, -1722.7976943221533], [-6293.734561552355, -1989.5476943219137]], "source": 1890502906, "length": 110.22093611284569}, {"destination": 1575913067, "path": [[-428.78456155648337, 8936.502305678217], [-481.3845615529999, 8688.402305677911]], "source": 1404152874, "length": 56.07478446786686}, {"destination": 1404152838, "path": [[-428.78456155648337, 8936.502305678217], [-674.9845615559025, 8980.00230567675]], "source": 1404152874, "length": 47.81787548128975}, {"destination": 4687869271, "path": [[-428.78456155648337, 8936.502305678217], [-405.48456155420354, 9046.452305677021]], "source": 1404152874, "length": 24.850244733326573}, {"destination": 639308680, "path": [[-1419.134561551516, 1726.9023056769583], [-1306.1345615525966, 1895.1023056779093], [-1239.4845615517625, 2003.7523056775085]], "source": 4460275969, "length": 70.42541073070808}, {"destination": 1316236338, "path": [[-1419.134561551516, 1726.9023056769583], [-1282.4345615527477, 1657.4023056765695], [-1162.3845615531536, 1590.9523056780727]], "source": 4460275969, "length": 57.44110453643388}, {"destination": 482731602, "path": [[-610.3845615541559, 6134.702305677919], [-664.2845615516535, 6052.602305677723]], "source": 608700679, "length": 20.93902053614192}, {"destination": 856909573, "path": [[-610.3845615541559, 6134.702305677919], [-327.83456155272006, 6657.952305676673]], "source": 608700679, "length": 128.17552589575155}, {"destination": 477445174, "path": [[-610.3845615541559, 6134.702305677919], [395.96543844311327, 6008.50230567751]], "source": 608700679, "length": 193.45022602569284}, {"destination": 1404152802, "path": [[-827.1345615540326, 9331.702305678036], [-898.7345615523168, 9015.502305677714]], "source": 1404152876, "length": 71.6263770466102}, {"destination": 1489398832, "path": [[4092.2154384475107, -5280.647694322127], [4107.165438448135, -5256.947694322278], [4126.81543844684, -5227.447694322152], [4209.915438444512, -5245.797694323429], [4256.465438444934, -5219.347694323417], [4285.065438445201, -5160.94769432307], [4274.865438446795, -5109.397694322837], [4244.815438447347, -5082.9976943234105], [4188.465438446087, -5066.947694322365], [4149.565438446245, -5090.997694322752], [4127.3154384455775, -5097.947694322258], [4047.9654384455444, -5054.047694322606]], "source": 1489398829, "length": 117.28542973571726}, {"destination": 602360653, "path": [[4092.2154384475107, -5280.647694322127], [4372.715438449859, -5406.69769432256], [4293.8654384485635, -5510.947694322254], [4846.765438443867, -5742.797694322732]], "source": 1489398829, "length": 204.96135157452036}, {"destination": 84487949, "path": [[4092.2154384475107, -5280.647694322127], [4037.9654384494756, -5256.247694322979], [3940.1654384434437, -5212.097694322182]], "source": 1489398829, "length": 32.68563043218897}, {"destination": 1890732755, "path": [[-7351.184561557034, -3520.9976943217926], [-7320.884561551111, -3471.397694323031]], "source": 1890502938, "length": 12.444510726280457}, {"destination": 554685947, "path": [[4047.9654384455444, -5054.047694322606], [4120.415438443104, -4947.897694322023], [4274.915438443827, -4790.097694321816], [4347.815438443093, -4717.447694321919]], "source": 1489398832, "length": 94.38796492794387}, {"destination": 1489398829, "path": [[4047.9654384455444, -5054.047694322606], [4127.3154384455775, -5097.947694322258], [4149.565438446245, -5090.997694322752], [4188.465438446087, -5066.947694322365], [4244.815438447347, -5082.9976943234105], [4274.865438446795, -5109.397694322837], [4285.065438445201, -5160.94769432307], [4256.465438444934, -5219.347694323417], [4209.915438444512, -5245.797694323429], [4126.81543844684, -5227.447694322152], [4107.165438448135, -5256.947694322278], [4092.2154384475107, -5280.647694322127]], "source": 1489398832, "length": 117.28542973571729}, {"destination": 84487949, "path": [[4047.9654384455444, -5054.047694322606], [3985.7654384434227, -5145.247694322563], [3940.1654384434437, -5212.097694322182]], "source": 1489398832, "length": 40.68945602400558}, {"destination": 1404152818, "path": [[-1165.0845615562844, 7661.852305677286], [-1095.384561551782, 7772.00230567665], [-947.5345615541642, 7714.152305677402]], "source": 1404152882, "length": 58.77810482366223}, {"destination": 1404152813, "path": [[-1165.0845615562844, 7661.852305677286], [-1368.9345615546245, 7726.102305676719]], "source": 1404152882, "length": 41.32167603820956}, {"destination": 1404152806, "path": [[-1165.0845615562844, 7661.852305677286], [-1019.6345615511859, 7596.152305676896]], "source": 1404152882, "length": 31.286230548023187}, {"destination": 1404152808, "path": [[-1193.7845615506149, 9052.202305676716], [-1149.0345615570163, 9244.50230567686], [-1068.534561554202, 9469.352305677248]], "source": 1404152884, "length": 95.90048177858196}, {"destination": 1404152802, "path": [[-1193.7845615506149, 9052.202305676716], [-898.7345615523168, 9015.502305677714]], "source": 1404152884, "length": 56.711188355751425}, {"destination": 1404152851, "path": [[-1193.7845615506149, 9052.202305676716], [-1411.8845615556097, 9079.352305677801]], "source": 1404152884, "length": 41.92149173761742}, {"destination": 1404152807, "path": [[-1193.7845615506149, 9052.202305676716], [-1299.2345615501222, 8593.002305676833]], "source": 1404152884, "length": 104.07261830746491}, {"destination": 1317670767, "path": [[3176.965438449031, 310.6023056780316], [3178.365438444075, 328.10230567825727]], "source": 1317671306, "length": 3.9004485399580817}, {"destination": 1317670957, "path": [[3176.965438449031, 310.6023056780316], [3167.5154384487314, 192.95230567806243]], "source": 1317671306, "length": 26.225902371834508}, {"destination": 1317670775, "path": [[3176.965438449031, 310.6023056780316], [3252.1654384467524, 294.40230567701065]], "source": 1317671306, "length": 14.747723604404776}, {"destination": 1581175241, "path": [[3168.415438445038, -7224.99769432261], [3218.0654384461604, -7190.597694322065], [3266.315438445133, -7183.747694321952], [3276.0154384448015, -7189.897694322766]], "source": 1489398837, "length": 23.747456542939222}, {"destination": 1581175140, "path": [[3168.415438445038, -7224.99769432261], [3141.6154384444894, -7259.3976943231555], [3126.915438443234, -7297.197694322577], [3118.265438445178, -7316.697694323082], [3106.8654384469596, -7344.297694322321]], "source": 1489398837, "length": 29.19756175306755}, {"destination": 1489398838, "path": [[3168.415438445038, -7224.99769432261], [3151.0154384477573, -7196.347694321758], [3133.5654384463396, -7181.447694321719], [3120.1654384460653, -7159.647694322757], [3151.0154384477573, -7117.24769432287], [3203.3154384478735, -7079.3976943228645], [3260.9654384430087, -7058.74769432313], [3301.2154384479686, -7056.447694322898], [3338.215438446923, -7106.397694322197], [3340.1154384478104, -7120.647694321747]], "source": 1489398837, "length": 77.3736901691154}, {"destination": 599406834, "path": [[73.8154384478662, 2523.65230567797], [158.76543844939306, 2746.852305676839], [320.46543844899134, 3042.352305676843]], "source": 1316236342, "length": 124.75639508217458}, {"destination": 1316236963, "path": [[73.8154384478662, 2523.65230567797], [-259.9845615520735, 2662.652305676971]], "source": 1316236342, "length": 70.60886183688412}, {"destination": 76482738, "path": [[-2806.484561553191, 4985.002305677], [-2950.434561554971, 4667.3023056769125]], "source": 482732359, "length": 75.77233315126536}, {"destination": 601145284, "path": [[-2806.484561553191, 4985.002305677], [-2880.3845615570367, 5000.352305676969]], "source": 482732359, "length": 14.463561850843911}, {"destination": 654394586, "path": [[-2806.484561553191, 4985.002305677], [-2541.984561553079, 4842.702305676738]], "source": 482732359, "length": 59.43170359877955}, {"destination": 1784682721, "path": [[8688.36543844509, -4554.8976943230455], [8718.415438444537, -4454.79769432211], [8742.865438449599, -4375.847694323198]], "source": 1784682705, "length": 41.1457172396849}, {"destination": 4273219785, "path": [[906.0154384457064, -1022.4976943220554], [897.5154384458506, -1016.9976943217307], [849.3154384439094, -1012.7476943218028]], "source": 4273350989, "length": 11.23916025076905}, {"destination": 3681386682, "path": [[906.0154384457064, -1022.4976943220554], [922.1154384491115, -1032.3476943234766], [945.8654384459919, -1079.497694322029], [928.71543844808, -1172.5976943228743]], "source": 4273350989, "length": 36.141446628471414}, {"destination": 4273350990, "path": [[906.0154384457064, -1022.4976943220554], [910.7154384437877, -1002.3976943234203]], "source": 4273350989, "length": 4.558878132142945}, {"destination": 4273351027, "path": [[910.7154384437877, -1002.3976943234203], [919.7154384494866, -961.3976943221303], [963.9654384443475, -970.1476943231313], [982.1654384438716, -900.6976943233269], [974.2154384468904, -871.0976943220317], [892.2654384448947, -854.3476943234651]], "source": 4273350990, "length": 56.519286226552026}, {"destination": 4273350989, "path": [[910.7154384437877, -1002.3976943234203], [906.0154384457064, -1022.4976943220554]], "source": 4273350990, "length": 4.558878132142945}, {"destination": 4273347031, "path": [[910.7154384437877, -1002.3976943234203], [897.2654384464818, -990.4976943229116]], "source": 4273350990, "length": 3.6792838797573126}, {"destination": 1315678736, "path": [[-4474.934561550015, -4785.747694322496], [-4534.684561555479, -4893.297694323451]], "source": 1315678544, "length": 26.479328359299522}, {"destination": 1315678714, "path": [[-4474.934561550015, -4785.747694322496], [-4176.834561555153, -4875.897694322617], [-4118.284561556607, -4884.697694322426], [-3949.284561556965, -4934.24769432238], [-3991.6345615509385, -5034.0476943233625]], "source": 1315678544, "length": 129.0113534010277}, {"destination": 3836778602, "path": [[-4474.934561550015, -4785.747694322496], [-4445.534561554609, -4719.547694323367], [-4404.284561552175, -4629.6476943226135]], "source": 1315678544, "length": 37.224240360039104}, {"destination": 2991483745, "path": [[-4928.884561550717, 9389.202305676747], [-4788.584561552511, 9327.352305676939], [-4528.734561553449, 9244.252305677492]], "source": 622622435, "length": 82.79036188536192}, {"destination": 622622441, "path": [[-4928.884561550717, 9389.202305676747], [-5242.3845615550135, 8641.802305676905]], "source": 622622435, "length": 176.5870236817173}, {"destination": 1888393442, "path": [[4444.715438445712, -790.047694323448], [4324.01543844918, -921.8476943217979], [4181.46543844955, -1069.2976943218468], [4081.2154384468613, -1166.5976943220357], [3664.9154384491567, -1522.5476943232507], [3276.11543844597, -1828.3476943228293], [3078.6654384442613, -1993.5476943224728], [2801.8154384454874, -2234.0476943227827], [2293.9654384472874, -2679.6476943218295]], "source": 677734741, "length": 586.9749374038182}, {"destination": 478373250, "path": [[-5401.134561552112, 2238.9023056774704], [-4964.834561555164, 3104.1023056772588]], "source": 93310009, "length": 209.54105901206051}, {"destination": 147477301, "path": [[-5401.134561552112, 2238.9023056774704], [-4966.234561550209, 2052.7523056781406]], "source": 93310009, "length": 92.49118271174498}, {"destination": 857780858, "path": [[-5401.134561552112, 2238.9023056774704], [-5727.934561555514, 2367.352305677528], [-6002.284561553495, 2452.8523056766007], [-6061.384561554916, 2479.3023056766115]], "source": 93310009, "length": 136.62042303041164}, {"destination": 1489398803, "path": [[3370.165438447259, -7486.547694321999], [3398.115438443483, -7463.447694322056], [3420.5154384494563, -7436.397694322139], [3447.465438448205, -7405.347694323438], [3461.2654384460484, -7372.19769432329]], "source": 1581175183, "length": 31.186844545855408}, {"destination": 1581175140, "path": [[3370.165438447259, -7486.547694321999], [3106.8654384469596, -7344.297694322321]], "source": 1581175183, "length": 59.22160217477965}, {"destination": 1776116728, "path": [[3540.815438448419, -8419.54769432185], [3523.8154384487075, -8443.747694322212], [3506.4154384443214, -8468.99769432241], [3497.6654384450967, -8482.847694322614], [3452.265438447455, -8460.397694323163], [3170.0654384465565, -8297.247694322607], [2972.7154384460164, -8162.247694322388], [2929.7154384479995, -8132.997694323407]], "source": 1765493085, "length": 149.54423479179212}, {"destination": 4867880024, "path": [[3540.815438448419, -8419.54769432185], [3548.215438449631, -8388.797694323102]], "source": 1765493085, "length": 6.9808212251125665}, {"destination": 1489390329, "path": [[8130.565438449366, -3828.9976943222114], [8116.515438445049, -3826.247694322049], [8097.715438445619, -3822.8476943231726], [8065.515438445914, -3822.8476943231726], [8017.265438446941, -3835.4476943229797], [7979.715438445111, -3859.547694322174], [7926.665438446889, -3881.0476943229587], [7872.415438448854, -3870.997694322753], [7838.965438445201, -3842.2476943225092], [7834.965438448194, -3859.447694322782], [7821.515438443783, -3885.8476943222086], [7798.715438447345, -3911.047694321823], [7772.415438445534, -3932.847694322561]], "source": 1782376799, "length": 86.13225684022301}, {"destination": 1782376803, "path": [[8130.565438449366, -3828.9976943222114], [8193.815438445996, -3842.8476943224155]], "source": 1782376799, "length": 12.415507573813702}, {"destination": 848698196, "path": [[8130.565438449366, -3828.9976943222114], [8271.665438449816, -3423.3476943228425]], "source": 1782376799, "length": 94.11812744207121}, {"destination": 1315785201, "path": [[-2944.3845615517716, -2441.947694322266], [-3102.5345615560695, -2355.8976943220955]], "source": 479283552, "length": 35.64620049013172}, {"destination": 1315785515, "path": [[-2944.3845615517716, -2441.947694322266], [-3130.0845615547246, -2777.397694321948]], "source": 479283552, "length": 82.53651740226434}, {"destination": 479282332, "path": [[-2944.3845615517716, -2441.947694322266], [-2652.534561555342, -2578.44769432225]], "source": 479283552, "length": 63.25813632958326}, {"destination": 115005745, "path": [[10826.365438447283, -1674.5476943231806], [10026.615438448516, -1367.5976943225976], [9374.21543844863, -1066.0476943229469]], "source": 93792610, "length": 307.7313353881847}, {"destination": 93180322, "path": [[10826.365438447283, -1674.5476943231806], [11201.665438449027, -950.4976943226495]], "source": 93792610, "length": 176.12932975740918}, {"destination": 1489367542, "path": [[10826.365438447283, -1674.5476943231806], [10912.76543844799, -1709.8476943218088]], "source": 93792610, "length": 18.20929891939759}, {"destination": 602392070, "path": [[10826.365438447283, -1674.5476943231806], [10473.11543844387, -2367.74769432202]], "source": 93792610, "length": 168.16088102561253}, {"destination": 1316236561, "path": [[-2279.184561551517, 1186.752305677885], [-2168.534561555191, 1149.6023056771776], [-1999.5345615555493, 1106.002305677478], [-1875.7845615553492, 1055.6523056770573]], "source": 1316236347, "length": 82.23913232502414}, {"destination": 1316195130, "path": [[-2279.184561551517, 1186.752305677885], [-2240.584561555181, 1261.402305678061]], "source": 1316236347, "length": 18.152041897789157}, {"destination": 1316196946, "path": [[-2279.184561551517, 1186.752305677885], [-2297.234561552841, 1151.8523056768258], [-2375.034561552525, 993.6023056766885]], "source": 1316236347, "length": 46.663830565919596}, {"destination": 1316693988, "path": [[-215.08456155316935, -57.19769432310784], [-266.78456155337926, -54.59769432292205], [-266.78456155337926, -17.897694322144275], [-354.63456155326867, -15.49769432251935]], "source": 1316694017, "length": 34.72513240031252}, {"destination": 1316694067, "path": [[-215.08456155316935, -57.19769432310784], [-175.58456155342128, -59.14769432280309]], "source": 1316694017, "length": 7.524493950265623}, {"destination": 1316694012, "path": [[-215.08456155316935, -57.19769432310784], [-202.3845615539699, -4.147694323108908], [-210.2345615568879, 65.70230567781721]], "source": 1316694017, "length": 27.64747416452315}, {"destination": 1315678744, "path": [[-4368.684561555369, -5251.547694323122], [-4339.734561554565, -5184.047694323013], [-4321.284561555672, -5140.947694322051]], "source": 1315678567, "length": 26.196156596803917}, {"destination": 1315678579, "path": [[-4368.684561555369, -5251.547694323122], [-4119.534561553451, -5335.3976943224525]], "source": 1315678567, "length": 50.91363413126907}, {"destination": 477641795, "path": [[-5858.784561553421, -3550.997694322433], [-6134.7845615529195, -3996.5476943226718]], "source": 1315678568, "length": 112.12718545747691}, {"destination": 477641820, "path": [[-5858.784561553421, -3550.997694322433], [-5776.584561552056, -3418.3476943230316]], "source": 1315678568, "length": 33.385431976273594}, {"destination": 1315678691, "path": [[-5858.784561553421, -3550.997694322433], [-5914.184561554237, -3529.2976943228637], [-5938.8345615545295, -3519.647694322003]], "source": 1315678568, "length": 16.743882345406146}, {"destination": 1315678744, "path": [[-4302.2845615539045, -5096.197694323124], [-4321.284561555672, -5140.947694322051]], "source": 1315678569, "length": 10.58732265068514}, {"destination": 1315678588, "path": [[-4302.2845615539045, -5096.197694323124], [-4129.6845615548245, -5143.447694322845], [-4045.384561550236, -5163.747694322041]], "source": 1315678569, "length": 51.1141541086033}, {"destination": 1315678726, "path": [[-4302.2845615539045, -5096.197694323124], [-4288.634561554261, -5064.797694322109]], "source": 1315678569, "length": 7.449861066550461}, {"destination": 1315678817, "path": [[-2763.884561552743, -5322.747694322061], [-2973.134561550239, -5272.24769432344]], "source": 1315678570, "length": 41.34337244496631}, {"destination": 1315678788, "path": [[-2957.0345615539395, -4928.247694323318], [-3053.6345615530536, -4903.197694321903]], "source": 1315678571, "length": 19.19504288065494}, {"destination": 1315678739, "path": [[-5471.98456155229, -3724.6976943219324], [-5417.634561553086, -3666.9476943220757]], "source": 1315678572, "length": 16.48490290594705}, {"destination": 1315678779, "path": [[-5471.98456155229, -3724.6976943219324], [-4973.88456155079, -3958.147694323344]], "source": 1315678572, "length": 108.01207598464553}, {"destination": 1315678630, "path": [[-954.1845615501643, -6882.197694322301], [-1466.8845615517512, -6746.597694322176]], "source": 1315678573, "length": 102.04441739999729}, {"destination": 1785693361, "path": [[4922.865438445001, -6592.097694323229], [4880.86543844446, -6581.647694321901], [4837.565438450042, -6576.397694322722], [4793.865438443845, -6576.447694323307]], "source": 620136814, "length": 24.941833031653353}, {"destination": 620136803, "path": [[4922.865438445001, -6592.097694323229], [4973.915438448274, -6612.947694321747], [5019.665438446453, -6641.497694323206], [5058.515438449263, -6676.697694322442], [5089.215438445649, -6717.347694323194], [5110.615438447041, -6762.147694322706], [5122.115438446428, -6809.547694322404], [5123.265438449209, -6857.94769432313], [5114.065438448279, -6905.697694323365], [5094.765438443005, -6951.197694322175]], "source": 620136814, "length": 96.87014888614836}, {"destination": 1205015989, "path": [[4922.865438445001, -6592.097694323229], [4936.715438446981, -6561.097694323336]], "source": 620136814, "length": 7.380581140862841}, {"destination": 1315678736, "path": [[-4252.684561556918, -4980.947694322779], [-4534.684561555479, -4893.297694323451]], "source": 1315678575, "length": 57.05564180688814}, {"destination": 1315678714, "path": [[-4252.684561556918, -4980.947694322779], [-3991.6345615509385, -5034.0476943233625]], "source": 1315678575, "length": 51.02424005821684}, {"destination": 1315678726, "path": [[-4252.684561556918, -4980.947694322779], [-4288.634561554261, -5064.797694322109]], "source": 1315678575, "length": 19.861027869846207}, {"destination": 1889255141, "path": [[-3922.1845615529105, -3184.797694322228], [-3857.584561551164, -3199.3976943223147], [-3594.9845615519394, -3260.4976943222396], [-3367.6345615560876, -3310.397694322731], [-3236.2345615553068, -3336.1976943222517], [-3177.8845615519913, -3345.947694322504], [-3106.134561555507, -3352.7976943226176], [-3013.584561550431, -3352.7976943226176], [-2892.884561553899, -3347.0976943217324], [-2823.83456155344, -3340.7476943221327], [-2670.934561550098, -3316.6976943217464], [-2296.9845615534723, -3246.2976943232748], [-2139.8845615507867, -3222.597694323426]], "source": 1889249267, "length": 346.2666839264728}, {"destination": 1887913969, "path": [[-4119.534561553451, -5335.3976943224525], [-3894.4345615519183, -5407.997694321764]], "source": 1315678579, "length": 45.746566512334255}, {"destination": 1315678588, "path": [[-4119.534561553451, -5335.3976943224525], [-4045.384561550236, -5163.747694322041]], "source": 1315678579, "length": 40.69376040127653}, {"destination": 1315678718, "path": [[-3611.4845615529134, -7531.19769432331], [-4222.9345615538705, -7467.847694321961]], "source": 1315678581, "length": 117.1123505503234}, {"destination": 479300368, "path": [[-6196.334561550998, -823.0976943224277], [-6183.934561555305, -690.9476943217641], [-6130.884561549976, -260.69769432268686]], "source": 479299959, "length": 125.697051464976}, {"destination": 479299194, "path": [[-6196.334561550998, -823.0976943224277], [-6006.784561556344, -899.0476943218084], [-5872.984561555939, -955.4976943224602]], "source": 479299959, "length": 68.18026780172907}, {"destination": 71127148, "path": [[-6196.334561550998, -823.0976943224277], [-6360.38456155319, -752.5976943227874], [-6550.634561556024, -664.2476943223841], [-6747.234561551351, -556.9476943225737], [-6983.534561555871, -419.09769432280086]], "source": 479299959, "length": 174.83733193399252}, {"destination": 1315678701, "path": [[-2925.5345615553097, -5116.69769432288], [-2936.034561550116, -5151.147694322233]], "source": 1315678584, "length": 7.916727100051283}, {"destination": 1315678693, "path": [[-2925.5345615553097, -5116.69769432288], [-2731.73456155007, -5166.7976943221565]], "source": 1315678584, "length": 38.49862956709191}, {"destination": 1315678677, "path": [[-2925.5345615553097, -5116.69769432288], [-2900.1845615539423, -5033.897694323386]], "source": 1315678584, "length": 19.03449494456577}, {"destination": 1315678701, "path": [[-3016.034561554193, -5132.397694323387], [-2936.034561550116, -5151.147694322233]], "source": 1315678586, "length": 15.773572749744945}, {"destination": 1328999570, "path": [[5131.06543844799, 6428.452305677012], [5039.265438448127, 6538.3023056782]], "source": 1328999531, "length": 30.02752339569552}, {"destination": 1328999407, "path": [[5131.06543844799, 6428.452305677012], [5199.7154384437745, 6319.752305676829], [5213.165438448186, 6278.502305677946], [5213.165438448186, 6253.252305677748], [5178.265438445351, 6221.152305677435], [4987.8154384472855, 6127.102305677923]], "source": 1328999531, "length": 94.18847921127625}, {"destination": 1328999542, "path": [[5131.06543844799, 6428.452305677012], [5261.4154384471585, 6473.452305677085], [5320.415438447412, 6512.452305678096], [5223.865438445329, 6654.702305677773]], "source": 1328999531, "length": 77.49683738125562}, {"destination": 1328999479, "path": [[5131.06543844799, 6428.452305677012], [4637.165438445834, 6257.952305677605]], "source": 1328999531, "length": 101.3021560890631}, {"destination": 1315678569, "path": [[-4045.384561550236, -5163.747694322041], [-4129.6845615548245, -5143.447694322845], [-4302.2845615539045, -5096.197694323124]], "source": 1315678588, "length": 51.1141541086033}, {"destination": 1315678714, "path": [[-4045.384561550236, -5163.747694322041], [-4015.3845615549244, -5090.047694322308], [-3991.6345615509385, -5034.0476943233625]], "source": 1315678588, "length": 30.60198854655027}, {"destination": 1315678579, "path": [[-4045.384561550236, -5163.747694322041], [-4119.534561553451, -5335.3976943224525]], "source": 1315678588, "length": 40.69376040127653}, {"destination": 1315678699, "path": [[-4045.384561550236, -5163.747694322041], [-3808.5845615540848, -5275.347694322363]], "source": 1315678588, "length": 51.414526853643686}, {"destination": 423833602, "path": [[-5898.384561554338, 7286.102305677388], [-5653.084561551224, 7203.6523056766555], [-5427.084561553385, 7071.252305676623]], "source": 622622442, "length": 102.23272596788163}, {"destination": 622622443, "path": [[-5898.384561554338, 7286.102305677388], [-5953.284561556416, 7199.0023056773825]], "source": 622622442, "length": 22.005369662155687}, {"destination": 623416847, "path": [[-5898.384561554338, 7286.102305677388], [-5409.13456155323, 8302.252305677272]], "source": 622622442, "length": 244.3916837230526}, {"destination": 1315678828, "path": [[-1815.0345615524088, -7107.947694322547], [-2006.0345615533492, -7044.447694322997]], "source": 1315678591, "length": 38.96610902888948}, {"destination": 654382714, "path": [[5651.065438449621, 6832.552305677808], [5649.365438443965, 6824.502305677882], [5660.115438445246, 6760.302305677257], [5756.665438447328, 6457.50230567721], [5799.465438443008, 6375.052305678253]], "source": 1328999488, "length": 106.10500137956541}, {"destination": 654382693, "path": [[5651.065438449621, 6832.552305677808], [5676.215438448651, 6952.95230567794], [5886.3654384495585, 7099.602305677521]], "source": 1328999488, "length": 78.78740010736347}, {"destination": 1328999542, "path": [[5651.065438449621, 6832.552305677808], [5518.915438443628, 6923.102305677276], [5430.4154384468, 6888.652305677922], [5231.91543844348, 6751.052305677518], [5205.115438450037, 6714.352305676741], [5223.865438445329, 6654.702305677773]], "source": 1328999488, "length": 122.65903222712326}, {"destination": 1315678622, "path": [[-3064.2845615531655, -5363.997694322719], [-3074.9345615532775, -5390.847694322076]], "source": 1315678594, "length": 6.3058855361285415}, {"destination": 620136910, "path": [[4807.615438444656, -6597.047694322456], [4825.4654384436435, -6531.497694322042]], "source": 1785697731, "length": 14.967918961540912}, {"destination": 1315678721, "path": [[-5537.734561556817, -3793.9976943217603], [-4989.984561554194, -4047.5976943223914]], "source": 1315678607, "length": 118.44651436386584}, {"destination": 1315678572, "path": [[-5537.734561556817, -3793.9976943217603], [-5471.98456155229, -3724.6976943219324]], "source": 1315678607, "length": 19.845365938793424}, {"destination": 1315678756, "path": [[-934.3345615562271, -5158.447694322277], [-1476.0845615526819, -5044.247694321768]], "source": 1315678610, "length": 106.09874478225686}, {"destination": 103788196, "path": [[-934.3345615562271, -5158.447694322277], [-1026.2845615542915, -5423.647694323464]], "source": 1315678610, "length": 61.51508329761984}, {"destination": 1887575214, "path": [[-934.3345615562271, -5158.447694322277], [-885.3345615520425, -5024.447694323087]], "source": 1315678610, "length": 31.2227900410595}, {"destination": 1315678568, "path": [[-6134.7845615529195, -3996.5476943226718], [-5858.784561553421, -3550.997694322433]], "source": 477641795, "length": 112.12718545747691}, {"destination": 267194982, "path": [[-6134.7845615529195, -3996.5476943226718], [-6360.584561555526, -3910.7976943224544]], "source": 477641795, "length": 46.981530143589524}, {"destination": 1315678788, "path": [[-2822.984561554165, -5052.597694323424], [-2774.6345615540235, -4845.697694323192], [-2928.7845615542096, -4804.297694322557], [-3020.784561556411, -4775.89769432285], [-3053.6345615530536, -4903.197694321903]], "source": 1315678612, "length": 125.23632550163816}, {"destination": 1315678677, "path": [[-2822.984561554165, -5052.597694323424], [-2900.1845615539423, -5033.897694323386]], "source": 1315678612, "length": 15.25745604454309}, {"destination": 1315678673, "path": [[-3343.234561555164, -7742.14769432291], [-3278.884561552786, -7760.49769432241]], "source": 1315678615, "length": 12.897948904866011}, {"destination": 1315678808, "path": [[-3074.9345615532775, -5390.847694322076], [-2940.9345615505345, -5423.647694323464]], "source": 1315678622, "length": 26.503653552770686}, {"destination": 1315678632, "path": [[-3074.9345615532775, -5390.847694322076], [-3113.9845615513195, -5476.897694322247]], "source": 1315678622, "length": 20.52670018100819}, {"destination": 1315678594, "path": [[-3074.9345615532775, -5390.847694322076], [-3064.2845615531655, -5363.997694322719]], "source": 1315678622, "length": 6.3058855361285415}, {"destination": 602360659, "path": [[5286.065438447451, -4865.697694322435], [5236.865438448035, -4827.297694323107]], "source": 63308187, "length": 12.666677976630105}, {"destination": 554686151, "path": [[5286.065438447451, -4865.697694322435], [5059.815438443138, -5182.64769432264], [5044.615438443145, -5214.847694322344]], "source": 63308187, "length": 90.30048142554419}, {"destination": 599408890, "path": [[-2408.3345615508733, -7313.647694322966], [-3211.234561554477, -7048.197694322411]], "source": 477629510, "length": 163.6816251274096}, {"destination": 654414267, "path": [[-2408.3345615508733, -7313.647694322966], [-2494.434561555181, -7547.997694322461]], "source": 477629510, "length": 54.62789675834152}, {"destination": 1315678573, "path": [[-1466.8845615517512, -6746.597694322176], [-954.1845615501643, -6882.197694322301]], "source": 1315678630, "length": 102.04441739999729}, {"destination": 103787886, "path": [[-1466.8845615517512, -6746.597694322176], [-1498.3345615533494, -6796.947694322597]], "source": 1315678630, "length": 12.694397362309205}, {"destination": 1315678673, "path": [[-3104.53456155102, -7794.897694322955], [-3278.884561552786, -7760.49769432241]], "source": 1315678631, "length": 34.0221357108807}, {"destination": 1315678832, "path": [[-3113.9845615513195, -5476.897694322247], [-2941.6345615516093, -5523.097694322132]], "source": 1315678632, "length": 34.344983759482346}, {"destination": 1315678622, "path": [[-3113.9845615513195, -5476.897694322247], [-3074.9345615532775, -5390.847694322076]], "source": 1315678632, "length": 20.52670018100819}, {"destination": 1315678663, "path": [[-3113.9845615513195, -5476.897694322247], [-3141.734561552312, -5560.397694322816]], "source": 1315678632, "length": 19.30483474412019}, {"destination": 1315678867, "path": [[-2876.534561551125, -7804.097694322109], [-2812.1845615558527, -7602.297694322857]], "source": 1315678634, "length": 46.51642421941981}, {"destination": 874312328, "path": [[-2899.3345615546673, -3467.1476943231028], [-3006.834561553262, -3462.6476943220296], [-3109.8845615531445, -3451.7976943231333], [-3255.3345615511375, -3433.897694321786], [-3416.184561551461, -3406.0976943219857], [-3533.034561556292, -3382.147694322768]], "source": 477621319, "length": 122.2087959655777}, {"destination": 1887913980, "path": [[-2091.684561555951, -7191.1976943219715], [-2137.384561549993, -7279.747694322936]], "source": 1315678636, "length": 21.524607321949784}, {"destination": 1315678758, "path": [[-2091.684561555951, -7191.1976943219715], [-2016.1345615505866, -7066.44769432252]], "source": 1315678636, "length": 31.241979960801785}, {"destination": 1315678782, "path": [[-2091.684561555951, -7191.1976943219715], [-1894.5845615547796, -7257.597694323436]], "source": 1315678636, "length": 40.28149650244034}, {"destination": 1315678760, "path": [[-918.5345615563278, -6418.947694323052], [-1285.634561554616, -6319.947694322536]], "source": 1315678637, "length": 73.19232445203065}, {"destination": 1315678681, "path": [[-5853.034561553727, -4434.797694322868], [-6529.134561553463, -4206.897694322364]], "source": 1315678639, "length": 138.19269901342133}, {"destination": 267198437, "path": [[-5853.034561553727, -4434.797694322868], [-5759.834561551714, -4222.7476943228485], [-5744.0345615518145, -4175.397694321959], [-5740.284561554176, -4137.147694322607]], "source": 1315678639, "length": 69.86477884323926}, {"destination": 1315678650, "path": [[-3893.134561550937, -7061.047694323363], [-4003.3845615568, -7018.097694322379]], "source": 1315678640, "length": 23.03666505096863}, {"destination": 1315678640, "path": [[-4003.3845615568, -7018.097694322379], [-3893.134561550937, -7061.047694323363]], "source": 1315678650, "length": 23.03666505096863}, {"destination": 1315678856, "path": [[-4003.3845615568, -7018.097694322379], [-4052.0345615533415, -7084.447694323259]], "source": 1315678650, "length": 17.41541273530258}, {"destination": 1765488324, "path": [[5246.065438448966, -6702.147694323202], [5434.515438444976, -6627.747694322395], [5587.815438445887, -6566.297694321932], [5637.665438449347, -6546.2976943226895], [6294.165438447408, -6298.647694322312], [6311.915438445226, -6290.847694321755], [6333.065438447249, -6279.147694321808], [6350.215438445161, -6266.647694323168], [6365.065438444617, -6253.19769432231], [6378.965438443629, -6237.047694321874], [6398.565438445303, -6206.797694321864]], "source": 2049850503, "length": 247.7076395872257}, {"destination": 1315678689, "path": [[-3202.734561554621, -7522.847694323431], [-3240.8845615563564, -7633.697694322094]], "source": 1315678655, "length": 25.696831226546973}, {"destination": 1315678867, "path": [[-3202.734561554621, -7522.847694323431], [-2812.1845615558527, -7602.297694322857]], "source": 1315678655, "length": 76.33257425608133}, {"destination": 1315678804, "path": [[-3202.734561554621, -7522.847694323431], [-3164.034561550011, -7410.497694323226]], "source": 1315678655, "length": 26.04658729090788}, {"destination": 482731912, "path": [[-1924.9345615506286, 4510.702305676517], [-2078.634561556214, 4302.602305678249]], "source": 482732480, "length": 54.738489167183296}, {"destination": 654397600, "path": [[-1924.9345615506286, 4510.702305676517], [-2136.6845615560237, 4624.652305677657]], "source": 482732480, "length": 47.58225983812291}, {"destination": 482731911, "path": [[-1924.9345615506286, 4510.702305676517], [-1388.6845615544985, 5223.452305678222]], "source": 482732480, "length": 188.48585499233698}, {"destination": 1315678593, "path": [[-6466.48456155674, -3403.1476943230386], [-6221.134561556596, -3504.047694322665], [-6130.984561551145, -3540.647694322274]], "source": 1315678657, "length": 70.74736123110185}, {"destination": 1315678764, "path": [[-6466.48456155674, -3403.1476943230386], [-6426.334561552949, -3328.6476943228395]], "source": 1315678657, "length": 18.242924635809295}, {"destination": 1315785400, "path": [[-3938.0845615539783, -4297.797694322369], [-4003.1845615544626, -4278.54769432301]], "source": 1315678660, "length": 13.098337585849045}, {"destination": 1315785505, "path": [[-3938.0845615539783, -4297.797694322369], [-3957.784561556821, -4381.097694322378]], "source": 1315678660, "length": 18.90002087484368}, {"destination": 1315678773, "path": [[-3938.0845615539783, -4297.797694322369], [-3829.9345615513403, -4321.547694322802]], "source": 1315678660, "length": 21.23224093605234}, {"destination": 1776093676, "path": [[10148.415438443692, -6741.697694321758], [10052.515438445653, -6932.397694322745]], "source": 1776093638, "length": 46.16381202272112}, {"destination": 1771401026, "path": [[10148.415438443692, -6741.697694321758], [10123.765438443399, -6690.747694323207], [10121.065438447375, -6660.9476943231275], [9918.06543844831, -6591.047694323393], [9852.565438443151, -6607.497694322006]], "source": 1776093638, "length": 73.50251924918994}, {"destination": 93438340, "path": [[10148.415438443692, -6741.697694321758], [10371.565438447305, -6823.097694322655], [11093.365438448189, -7017.347694322496]], "source": 1776093638, "length": 190.01472351483116}, {"destination": 1315678632, "path": [[-3141.734561552312, -5560.397694322816], [-3113.9845615513195, -5476.897694322247]], "source": 1315678663, "length": 19.30483474412019}, {"destination": 1315678844, "path": [[-3141.734561552312, -5560.397694322816], [-2970.434561554214, -5597.947694322869]], "source": 1315678663, "length": 33.62591025803883}, {"destination": 1315678766, "path": [[-3141.734561552312, -5560.397694322816], [-3163.784561550642, -5623.797694322974]], "source": 1315678663, "length": 14.709784913969253}, {"destination": 1315678867, "path": [[-2774.134561555286, -7479.847694321862], [-2812.1845615558527, -7602.297694322857]], "source": 1315678666, "length": 28.176477991123615}, {"destination": 654414267, "path": [[-2774.134561555286, -7479.847694321862], [-2640.8845615506493, -7511.397694322852], [-2494.434561555181, -7547.997694322461]], "source": 1315678666, "length": 55.3010412475176}, {"destination": 1315678776, "path": [[-6365.984561554683, -3724.197694323195], [-6594.934561555021, -3635.5976943234227]], "source": 1315678667, "length": 47.78752048879752}, {"destination": 4867879881, "path": [[2156.2654384439384, -6993.49769432267], [2178.6654384499116, -7002.847694321801], [2208.1654384464855, -7120.947694323476], [2240.36543844619, -7204.64769432283], [2236.3154384450468, -7166.797694322824], [2278.615438449094, -7155.047694322292], [2312.765438446718, -7245.947694322296], [2337.065438446473, -7254.747694322105]], "source": 1581175202, "length": 94.35133333013536}, {"destination": 495641874, "path": [[2156.2654384439384, -6993.49769432267], [2136.0654384494637, -6852.397694322221], [2139.5654384477325, -6619.947694321837], [2174.3654384493993, -6471.947694322466]], "source": 1581175202, "length": 116.88461925415208}, {"destination": 495642523, "path": [[2156.2654384439384, -6993.49769432267], [2171.0654384463624, -7097.047694323066], [2285.515438444463, -7417.197694323363]], "source": 1581175202, "length": 97.64973241505089}, {"destination": 3344153900, "path": [[4825.4654384436435, -6531.497694322042], [4825.76543844715, -6461.897694322261]], "source": 620136910, "length": 15.478260734256256}, {"destination": 1315678699, "path": [[-3657.9345615521675, -4833.0476943228], [-3742.4845615561253, -5098.847694322118], [-3778.1845615540988, -5202.447694323098], [-3808.5845615540848, -5275.347694322363]], "source": 477620688, "length": 102.48901626786733}, {"destination": 1315678742, "path": [[-3657.9345615521675, -4833.0476943228], [-4060.384561554997, -4723.597694322734]], "source": 477620688, "length": 80.3043775355721}, {"destination": 1315678689, "path": [[-3278.884561552786, -7760.49769432241], [-3273.5345615506617, -7728.397694322098], [-3240.8845615563564, -7633.697694322094]], "source": 1315678673, "length": 29.16688575565237}, {"destination": 1315678615, "path": [[-3278.884561552786, -7760.49769432241], [-3343.234561555164, -7742.14769432291]], "source": 1315678673, "length": 12.897948904866011}, {"destination": 1315678631, "path": [[-3278.884561552786, -7760.49769432241], [-3104.53456155102, -7794.897694322955]], "source": 1315678673, "length": 34.0221357108807}, {"destination": 3560335842, "path": [[1950.3154384494792, 5389.8523056776785], [1937.9654384437117, 5503.152305676551], [1739.4654384474961, 5537.552305677096], [1382.765438449951, 5560.502305677062], [1077.1654384456042, 5540.252305676674]], "source": 3560335826, "length": 190.15782385045998}, {"destination": 3560335827, "path": [[1950.3154384494792, 5389.8523056776785], [1506.1154384454767, 5379.302305676958], [1133.3154384445265, 5388.452305677305], [1093.065438446672, 5363.202305677106], [1094.7654384452221, 5344.602305678237]], "source": 3560335826, "length": 169.09268187003897}, {"destination": 3560335839, "path": [[1950.3154384494792, 5389.8523056776785], [2058.26543844978, 5399.952305676692]], "source": 3560335826, "length": 20.653639082589436}, {"destination": 3560335826, "path": [[1094.7654384452221, 5344.602305678237], [1093.065438446672, 5363.202305677106], [1133.3154384445265, 5388.452305677305], [1506.1154384454767, 5379.302305676958], [1950.3154384494792, 5389.8523056776785]], "source": 3560335827, "length": 169.09268187003897}, {"destination": 3560335835, "path": [[1094.7654384452221, 5344.602305678237], [1062.265438449117, 5347.202305676646], [1028.9154384466315, 5353.352305677461]], "source": 3560335827, "length": 12.696270266822795}, {"destination": 3560335839, "path": [[1094.7654384452221, 5344.602305678237], [1097.3654384471843, 5315.752305676824], [1204.6654384434419, 5297.402305677323], [1928.815438446918, 5292.802305676858], [2072.0654384476234, 5303.602305676946], [2058.26543844978, 5399.952305676692]], "source": 3560335827, "length": 213.91625761612573}, {"destination": 1315678574, "path": [[-2745.134561550344, -5244.747694321816], [-2951.3845615554146, -5201.197694322701]], "source": 1315678676, "length": 40.39656023509458}, {"destination": 1315678584, "path": [[-2900.1845615539423, -5033.897694323386], [-2925.5345615553097, -5116.69769432288]], "source": 1315678677, "length": 19.03449494456577}, {"destination": 267194971, "path": [[-2900.1845615539423, -5033.897694323386], [-3203.5345615568644, -4951.747694322606]], "source": 1315678677, "length": 60.506425664521636}, {"destination": 210643019, "path": [[-4277.334561550106, -7653.64769432253], [-4343.83456155274, -7829.797694322238]], "source": 1315678678, "length": 41.16411720072012}, {"destination": 1887854524, "path": [[-4277.334561550106, -7653.64769432253], [-3982.1345615536075, -7713.997694322572]], "source": 1315678678, "length": 57.711685651543554}, {"destination": 95386562, "path": [[-1288.484561555947, -4530.647694322099], [-1191.6345615503587, -4568.047694322175], [-1100.7345615539066, -4600.397694321856], [-1027.884561551673, -4620.79769432222], [-778.7345615568597, -4687.19769432191]], "source": 1315785175, "length": 103.13120656291338}, {"destination": 1315785438, "path": [[-1288.484561555947, -4530.647694322099], [-1266.584561555817, -4467.347694323109], [-1249.5345615519682, -4408.347694322856]], "source": 1315785175, "length": 28.195897419362815}, {"destination": 1315785647, "path": [[-3968.134561553427, 1314.7023056774287], [-4098.734561551964, 1348.7523056774364]], "source": 1315785176, "length": 25.965838603905343}, {"destination": 1315785300, "path": [[-1103.6345615522691, -2822.9476943231193], [-1260.5345615526176, -2780.7476943220167]], "source": 1315785177, "length": 31.277443069918306}, {"destination": 1315678866, "path": [[-4329.684561554359, -4364.297694323227], [-3976.9345615567886, -4465.097694323461]], "source": 1315678682, "length": 70.72339248247249}, {"destination": 3560335827, "path": [[1028.9154384466315, 5353.352305677461], [1062.265438449117, 5347.202305676646], [1094.7654384452221, 5344.602305678237]], "source": 3560335835, "length": 12.696270266822795}, {"destination": 481500509, "path": [[1028.9154384466315, 5353.352305677461], [956.3654384479037, 5038.202305676976]], "source": 3560335835, "length": 71.43157920902847}, {"destination": 1315785203, "path": [[-2442.084561550928, -2306.89769432324], [-2332.0845615515395, -2341.2976943220087], [-2251.634561552862, -2375.6976943225536], [-2091.684561555951, -2425.4476943230684]], "source": 1315785180, "length": 71.74411698716628}, {"destination": 3560335826, "path": [[2058.26543844978, 5399.952305676692], [1950.3154384494792, 5389.8523056776785]], "source": 3560335839, "length": 20.653639082589436}, {"destination": 3560335827, "path": [[2058.26543844978, 5399.952305676692], [2072.0654384476234, 5303.602305676946], [1928.815438446918, 5292.802305676858], [1204.6654384434419, 5297.402305677323], [1097.3654384471843, 5315.752305676824], [1094.7654384452221, 5344.602305678237]], "source": 3560335839, "length": 213.91625761612573}, {"destination": 1324294302, "path": [[2058.26543844978, 5399.952305676692], [2147.415438443545, 5408.302305676571], [2410.7154384438445, 5394.302305678167]], "source": 3560335839, "length": 67.23166284314968}, {"destination": 1315785618, "path": [[-4168.634561551698, 1911.6023056771069], [-4402.634561550656, 1979.852305677099]], "source": 1315785184, "length": 47.01921075459068}, {"destination": 1315785509, "path": [[-4168.634561551698, 1911.6023056771069], [-4177.484561552092, 1887.3023056773518]], "source": 1315785184, "length": 5.6596170082995965}, {"destination": 1315785446, "path": [[-4168.634561551698, 1911.6023056771069], [-4145.684561557062, 1974.552305677335]], "source": 1315785184, "length": 14.663760151329017}, {"destination": 1315678673, "path": [[-3240.8845615563564, -7633.697694322094], [-3273.5345615506617, -7728.397694322098], [-3278.884561552786, -7760.49769432241]], "source": 1315678689, "length": 29.16688575565237}, {"destination": 1315678819, "path": [[-3240.8845615563564, -7633.697694322094], [-2999.9345615507877, -7689.397694322864]], "source": 1315678689, "length": 47.45945593705482}, {"destination": 1315678655, "path": [[-3240.8845615563564, -7633.697694322094], [-3202.734561554621, -7522.847694323431]], "source": 1315678689, "length": 25.696831226546973}, {"destination": 3560335826, "path": [[1077.1654384456042, 5540.252305676674], [1382.765438449951, 5560.502305677062], [1739.4654384474961, 5537.552305677096], [1937.9654384437117, 5503.152305676551], [1950.3154384494792, 5389.8523056776785]], "source": 3560335842, "length": 190.15782385045998}, {"destination": 3560335835, "path": [[1077.1654384456042, 5540.252305676674], [1049.415438444612, 5442.302305677771], [1028.9154384466315, 5353.352305677461]], "source": 3560335842, "length": 42.57551354449544}, {"destination": 1315678568, "path": [[-5938.8345615545295, -3519.647694322003], [-5914.184561554237, -3529.2976943228637], [-5858.784561553421, -3550.997694322433]], "source": 1315678691, "length": 16.743882345406146}, {"destination": 1315678849, "path": [[-5938.8345615545295, -3519.647694322003], [-6030.684561551425, -3685.2476943227684]], "source": 1315678691, "length": 40.75970714332488}, {"destination": 1315678711, "path": [[-5938.8345615545295, -3519.647694322003], [-6080.634561556053, -3464.097694322987]], "source": 1315678691, "length": 29.659384859913125}, {"destination": 1315785232, "path": [[-2428.6845615506536, -2513.3476943217656], [-2219.08456155262, -2576.4976943225547]], "source": 1315785188, "length": 42.25970543394577}, {"destination": 1315785312, "path": [[-2428.6845615506536, -2513.3476943217656], [-2463.5345615564574, -2550.0476943225435], [-2533.284561550886, -2524.797694322345]], "source": 1315785188, "length": 24.91673329261331}, {"destination": 1315785532, "path": [[-2428.6845615506536, -2513.3476943217656], [-2417.9345615564785, -2451.3976943225657], [-2425.784561552291, -2441.3976943229445], [-2487.684561550907, -2439.9476943219865]], "source": 1315785188, "length": 28.381930613674726}, {"destination": 1315678584, "path": [[-2731.73456155007, -5166.7976943221565], [-2925.5345615553097, -5116.69769432288]], "source": 1315678693, "length": 38.49862956709191}, {"destination": 1315785444, "path": [[-3350.5345615552073, -1818.2476943220395], [-3330.3345615536273, -1788.1476943220064]], "source": 1315785190, "length": 7.717847754767079}, {"destination": 1315785340, "path": [[-3350.5345615552073, -1818.2476943220395], [-3442.0845615557027, -1774.3476943223868]], "source": 1315785190, "length": 19.960160483579436}, {"destination": 1315785262, "path": [[-3350.5345615552073, -1818.2476943220395], [-3396.784561552124, -1887.1976943231061], [-3439.7345615531094, -1891.797694321795]], "source": 1315785190, "length": 25.908629868872772}, {"destination": 1315785470, "path": [[-3126.034561553581, -1878.0476943227598], [-3230.6345615538135, -1832.1476943228276]], "source": 1315785191, "length": 22.357445424575538}, {"destination": 1315785501, "path": [[-4169.684561553311, -1203.0476943234448], [-4011.3845615508126, -1302.947694322043]], "source": 1315785192, "length": 37.4138357737306}, {"destination": 554691058, "path": [[11062.915438444066, -7078.69769432179], [11019.565438445512, -7160.797694321986]], "source": 554691049, "length": 20.032500963954753}, {"destination": 93438340, "path": [[11062.915438444066, -7078.69769432179], [11093.365438448189, -7017.347694322496]], "source": 554691049, "length": 14.820877444172126}, {"destination": 1315785306, "path": [[-4196.234561554491, 1835.9523056776793], [-4209.834561549997, 1798.6023056781873]], "source": 1315785194, "length": 8.699940180325736}, {"destination": 1315785509, "path": [[-4196.234561554491, 1835.9523056776793], [-4177.484561552092, 1887.3023056773518]], "source": 1315785194, "length": 11.96337125834961}, {"destination": 1315785598, "path": [[-4196.234561554491, 1835.9523056776793], [-4440.184561552485, 1901.8523056768545]], "source": 1315785194, "length": 48.65392268221903}, {"destination": 477620688, "path": [[-3808.5845615540848, -5275.347694322363], [-3778.1845615540988, -5202.447694323098], [-3742.4845615561253, -5098.847694322118], [-3657.9345615521675, -4833.0476943228]], "source": 1315678699, "length": 102.48901626786733}, {"destination": 477620748, "path": [[-3808.5845615540848, -5275.347694322363], [-3864.334561555438, -5417.747694322017]], "source": 1315678699, "length": 33.395419008089966}, {"destination": 1315678588, "path": [[-3808.5845615540848, -5275.347694322363], [-4045.384561550236, -5163.747694322041]], "source": 1315678699, "length": 51.414526853643686}, {"destination": 1315785490, "path": [[-4221.23456155532, 1767.35230567715], [-4256.884561556262, 1669.5023056776392]], "source": 1315785196, "length": 22.792809034950082}, {"destination": 1315785627, "path": [[-4221.23456155532, 1767.35230567715], [-4467.034561550065, 1837.6523056780059]], "source": 1315785196, "length": 49.29105779202486}, {"destination": 1315785306, "path": [[-4221.23456155532, 1767.35230567715], [-4209.834561549997, 1798.6023056781873]], "source": 1315785196, "length": 7.2797588716686805}, {"destination": 1315678584, "path": [[-2936.034561550116, -5151.147694322233], [-2925.5345615553097, -5116.69769432288]], "source": 1315678701, "length": 7.916727100051283}, {"destination": 1315678586, "path": [[-2936.034561550116, -5151.147694322233], [-3016.034561554193, -5132.397694323387]], "source": 1315678701, "length": 15.773572749744945}, {"destination": 1315678574, "path": [[-2936.034561550116, -5151.147694322233], [-2951.3845615554146, -5201.197694322701]], "source": 1315678701, "length": 11.506785322050066}, {"destination": 1315785607, "path": [[-5266.284561550094, -2063.797694322744], [-5114.984561551239, -2134.1976943229924]], "source": 1315785198, "length": 32.75561327821704}, {"destination": 75351492, "path": [[-3198.134561550603, -2177.097694323393], [-3258.6345615541745, -2273.7976943218996]], "source": 1315785200, "length": 24.389354099577282}, {"destination": 1315785271, "path": [[-3198.134561550603, -2177.097694323393], [-3510.834561552656, -2009.7976943223016]], "source": 1315785200, "length": 70.14443665594145}, {"destination": 479283552, "path": [[-3102.5345615560695, -2355.8976943220955], [-2944.3845615517716, -2441.947694322266]], "source": 1315785201, "length": 35.64620049013172}, {"destination": 1315785233, "path": [[-3102.5345615560695, -2355.8976943220955], [-3147.0345615502993, -2452.4476943224017]], "source": 1315785201, "length": 23.079270204579178}, {"destination": 75351492, "path": [[-3102.5345615560695, -2355.8976943220955], [-3258.6345615541745, -2273.7976943218996]], "source": 1315785201, "length": 34.8499682630133}, {"destination": 602392064, "path": [[11019.565438445512, -7160.797694321986], [10825.815438444408, -7543.847694321926]], "source": 554691058, "length": 92.81126923369739}, {"destination": 554691049, "path": [[11019.565438445512, -7160.797694321986], [11062.915438444066, -7078.69769432179]], "source": 554691058, "length": 20.032500963954753}, {"destination": 115548081, "path": [[11019.565438445512, -7160.797694321986], [10478.715438445362, -6997.3976943220605], [9920.565438449103, -6829.04769432291]], "source": 554691058, "length": 221.60909111823315}, {"destination": 1315785316, "path": [[-2091.684561555951, -2425.4476943230684], [-2068.63456155304, -2353.6976943230316]], "source": 1315785203, "length": 16.547657029293262}, {"destination": 1315785180, "path": [[-2091.684561555951, -2425.4476943230684], [-2251.634561552862, -2375.6976943225536], [-2332.0845615515395, -2341.2976943220087], [-2442.084561550928, -2306.89769432324]], "source": 1315785203, "length": 71.74411698716628}, {"destination": 301639384, "path": [[-4792.684561550686, 706.6523056771246], [-4796.434561555429, 645.9023056777369]], "source": 1315785206, "length": 13.528881995202001}, {"destination": 1315785524, "path": [[-4792.684561550686, 706.6523056771246], [-4732.534561554758, 693.1023056768737], [-4489.284561550732, 632.6023056768548]], "source": 1315785206, "length": 60.005609145962154}, {"destination": 1315785314, "path": [[-4077.084561551203, 1406.7523056766618], [-4046.8845615535542, 1477.2023056774942]], "source": 1315785207, "length": 16.68704586194288}, {"destination": 1315785276, "path": [[-4077.084561551203, 1406.7523056766618], [-4255.134561553576, 1470.6523056773335], [-4563.5845615521475, 1544.0523056771126]], "source": 1315785207, "length": 97.61114765044934}, {"destination": 1315785253, "path": [[-4077.084561551203, 1406.7523056766618], [-3957.3845615521464, 1369.702305677123]], "source": 1315785207, "length": 24.209465901149272}, {"destination": 1315785647, "path": [[-4077.084561551203, 1406.7523056766618], [-4098.734561551964, 1348.7523056774364]], "source": 1315785207, "length": 13.54020240148062}, {"destination": 1315785370, "path": [[-3528.234561557042, -1657.8476943234223], [-3763.584561554012, -1536.9476943227767]], "source": 1315785208, "length": 52.21069008681489}, {"destination": 1315785331, "path": [[-4201.484561555446, -2300.047694323126], [-3821.4845615556214, -2485.59769432255]], "source": 1315785209, "length": 83.2134921234445}, {"destination": 1315678544, "path": [[-3991.6345615509385, -5034.0476943233625], [-3949.284561556965, -4934.24769432238], [-4118.284561556607, -4884.697694322426], [-4176.834561555153, -4875.897694322617], [-4474.934561550015, -4785.747694322496]], "source": 1315678714, "length": 129.01135340102766}, {"destination": 1315678588, "path": [[-3991.6345615509385, -5034.0476943233625], [-4015.3845615549244, -5090.047694322308], [-4045.384561550236, -5163.747694322041]], "source": 1315678714, "length": 30.60198854655027}, {"destination": 1315678575, "path": [[-3991.6345615509385, -5034.0476943233625], [-4252.684561556918, -4980.947694322779]], "source": 1315678714, "length": 51.02424005821684}, {"destination": 1315785225, "path": [[-3353.184561554201, -2012.1976943219265], [-3310.9845615513223, -1951.8476943218843]], "source": 1315785211, "length": 15.637280696026053}, {"destination": 1315785506, "path": [[-3353.184561554201, -2012.1976943219265], [-3252.0845615522376, -2063.797694322744]], "source": 1315785211, "length": 22.389873078052652}, {"destination": 1315785543, "path": [[-3353.184561554201, -2012.1976943219265], [-3474.8345615511766, -1950.09769432275]], "source": 1315785211, "length": 26.94226751160411}, {"destination": 1315785516, "path": [[-2616.434561552694, -2254.147694323194], [-2795.984561551279, -2200.2476943221436]], "source": 1315785212, "length": 36.18671686138736}, {"destination": 1315785464, "path": [[-4813.934561553879, 118.30230567788647], [-4782.284561557049, 199.50230567822302]], "source": 1315785213, "length": 19.034968433575795}, {"destination": 1315785649, "path": [[-4813.934561553879, 118.30230567788647], [-4838.884561550572, 54.30230567782246]], "source": 1315785213, "length": 15.002802253106848}, {"destination": 1315785252, "path": [[-4813.934561553879, 118.30230567788647], [-4630.634561550551, 66.95230567821397], [-4365.084561555932, -50.047694323041014]], "source": 1315785213, "length": 93.49061831888866}, {"destination": 1315678810, "path": [[-4222.9345615538705, -7467.847694321961], [-4250.934561554232, -7548.047694323046]], "source": 1315678718, "length": 18.613640359783684}, {"destination": 1315678581, "path": [[-4222.9345615538705, -7467.847694321961], [-3611.4845615529134, -7531.19769432331]], "source": 1315678718, "length": 117.1123505503234}, {"destination": 1315785528, "path": [[-3123.3345615504504, -5302.147694322912], [-3104.4845615539884, -5238.747694322754]], "source": 1315785216, "length": 14.548370988297512}, {"destination": 1315678607, "path": [[-4989.984561554194, -4047.5976943223914], [-5537.734561556817, -3793.9976943217603]], "source": 1315678721, "length": 118.44651436386584}, {"destination": 1469016601, "path": [[-8117.584561553314, -633.2476943224918], [-8203.984561554023, -621.2476943225909], [-8269.634561550276, -560.3976943220346], [-8313.384561553505, -608.0476943228774]], "source": 1469016578, "length": 48.53062492690745}, {"destination": 1469016586, "path": [[-8117.584561553314, -633.2476943224918], [-8050.534561554912, -642.4476943234225], [-8015.634561552077, -692.8976943232357]], "source": 1469016578, "length": 25.949582377865482}, {"destination": 1469016710, "path": [[-8117.584561553314, -633.2476943224918], [-8192.684561556973, -656.1976943224579], [-8254.384561553252, -653.8976943222252]], "source": 1469016578, "length": 26.909845742413573}, {"destination": 1469016809, "path": [[-6066.884561555242, -1051.3476943234677], [-6025.434561550469, -997.9476943229315]], "source": 1469016579, "length": 14.253283415290964}, {"destination": 1469016738, "path": [[-6066.884561555242, -1051.3476943234677], [-5998.684561554057, -1095.8976943218345]], "source": 1469016579, "length": 16.320336846910763}, {"destination": 1469016599, "path": [[-6066.884561555242, -1051.3476943234677], [-6138.334561555325, -1004.6476943230687]], "source": 1469016579, "length": 17.102085171834293}, {"destination": 1315785468, "path": [[-2460.8345615533267, -2366.5476943222075], [-2364.284561551244, -2403.2476943229854], [-2338.984561554014, -2412.297694322163], [-2202.6845615528146, -2459.147694322539], [-2187.184561556421, -2462.9476943225372]], "source": 1315785220, "length": 56.31007601441158}, {"destination": 618170117, "path": [[4709.115438444655, 8459.102305677035], [4815.565438448743, 8498.702305677953], [5162.815438445989, 8619.50230567743], [5270.115438449352, 8656.152305677622]], "source": 1618037846, "length": 115.35978658054734}, {"destination": 1315785616, "path": [[-5478.1845615536895, -2210.5976943223027], [-5253.384561555663, -2318.2976943232347]], "source": 1315785222, "length": 49.001031555007756}, {"destination": 1469016778, "path": [[-6486.534561553015, -1694.7976943217923], [-6438.434561552242, -1627.2476943228753]], "source": 1469016583, "length": 17.587925802593116}, {"destination": 1469016653, "path": [[-6486.534561553015, -1694.7976943217923], [-6609.134561550434, -1636.197694322661]], "source": 1469016583, "length": 26.709101458735066}, {"destination": 1469016741, "path": [[-6486.534561553015, -1694.7976943217923], [-6283.634561555118, -1772.5976943232524], [-6243.984561550064, -1727.6476943219877]], "source": 1469016583, "length": 54.80733360942246}, {"destination": 1315785540, "path": [[-2752.684561556862, -4538.747694322609], [-2648.584561555367, -4561.397694322622]], "source": 1315785224, "length": 20.425904805229358}, {"destination": 1315785322, "path": [[-2752.684561556862, -4538.747694322609], [-2720.1845615536513, -4399.597694321855]], "source": 1315785224, "length": 31.55657189494617}, {"destination": 1315785588, "path": [[-2752.684561556862, -4538.747694322609], [-2770.3345615535113, -4596.297694321905]], "source": 1315785224, "length": 13.231152224319805}, {"destination": 1315785599, "path": [[-3310.9845615513223, -1951.8476943218843], [-3203.834561553265, -2001.897694322352]], "source": 1315785225, "length": 23.217876332594095}, {"destination": 1315785211, "path": [[-3310.9845615513223, -1951.8476943218843], [-3353.184561554201, -2012.1976943219265]], "source": 1315785225, "length": 15.637280696026053}, {"destination": 1315785262, "path": [[-3310.9845615513223, -1951.8476943218843], [-3439.7345615531094, -1891.797694321795]], "source": 1315785225, "length": 27.888727365594853}, {"destination": 1315785639, "path": [[-3310.9845615513223, -1951.8476943218843], [-3272.434561552018, -1894.4476943225652]], "source": 1315785225, "length": 14.720809445160457}, {"destination": 1469016649, "path": [[-8015.634561552077, -692.8976943232357], [-7951.284561556804, -660.7976943229232], [-7878.834561552139, -548.3976943221336], [-7876.184561553146, -481.8976943230524]], "source": 1469016586, "length": 57.50673230273986}, {"destination": 1469016578, "path": [[-8015.634561552077, -692.8976943232357], [-8050.534561554912, -642.4476943234225], [-8117.584561553314, -633.2476943224918]], "source": 1469016586, "length": 25.949582377865482}, {"destination": 3569237116, "path": [[-8015.634561552077, -692.8976943232357], [-8053.534561554443, -740.5476943223022], [-8007.734561552126, -767.1476943222899], [-7982.984561550666, -810.9476943225502], [-7919.484561554668, -806.0476943221317], [-7883.584561554358, -769.2476943219617], [-7846.334561556034, -757.5476943220139], [-7666.83456155448, -844.3976943226517]], "source": 1469016586, "length": 103.71115976817572}, {"destination": 2531707872, "path": [[-8820.334561555399, -612.5976943227585], [-8852.084561553398, -581.6476943234505]], "source": 1469016587, "length": 9.156225899544626}, {"destination": 1469016626, "path": [[-8820.334561555399, -612.5976943227585], [-8380.684561551278, -796.49769432244]], "source": 1469016587, "length": 93.07435094448729}, {"destination": 1469016582, "path": [[-8820.334561555399, -612.5976943227585], [-8780.534561552144, -542.6976943230244], [-8702.284561550754, -569.047694321867], [-8549.384561554518, -605.7476943226447], [-8396.534561555312, -608.0476943228774]], "source": 1469016587, "length": 92.55447867994025}, {"destination": 1315678699, "path": [[-3864.334561555438, -5417.747694322017], [-3808.5845615540848, -5275.347694322363]], "source": 477620748, "length": 33.395419008089966}, {"destination": 267198230, "path": [[-3864.334561555438, -5417.747694322017], [-3818.984561554828, -5432.347694322104], [-3297.4845615569848, -5589.9476943217505]], "source": 477620748, "length": 114.38909901659862}, {"destination": 1315785584, "path": [[-2934.5845615509347, -4372.847694321891], [-3113.534561556719, -4342.897694321835]], "source": 1315785229, "length": 34.67366387641426}, {"destination": 1315785322, "path": [[-2934.5845615509347, -4372.847694321891], [-2782.7345615563104, -4398.547694322019], [-2720.1845615536513, -4399.597694321855]], "source": 1315785229, "length": 41.331169712251906}, {"destination": 1315785398, "path": [[-2934.5845615509347, -4372.847694321891], [-2881.934561550281, -4180.697694321722]], "source": 1315785229, "length": 43.889441883879186}, {"destination": 1315785310, "path": [[-4260.4845615557, -1238.1476943232883], [-4063.184561552191, -1362.597694322787]], "source": 1315785230, "length": 46.62306036205194}, {"destination": 1315785617, "path": [[-2219.08456155262, -2576.4976943225547], [-2238.234561552588, -2648.6476943219373]], "source": 1315785232, "length": 16.453162200985233}, {"destination": 1315785468, "path": [[-2219.08456155262, -2576.4976943225547], [-2187.184561556421, -2462.9476943225372]], "source": 1315785232, "length": 25.970871062706095}, {"destination": 1315785188, "path": [[-2219.08456155262, -2576.4976943225547], [-2428.6845615506536, -2513.3476943217656]], "source": 1315785232, "length": 42.25970543394577}, {"destination": 1315785201, "path": [[-3147.0345615502993, -2452.4476943224017], [-3102.5345615560695, -2355.8976943220955]], "source": 1315785233, "length": 23.079270204579178}, {"destination": 1315785397, "path": [[-3147.0345615502993, -2452.4476943224017], [-3053.6345615530536, -2493.897694321845]], "source": 1315785233, "length": 20.010668640834645}, {"destination": 1315785295, "path": [[-3147.0345615502993, -2452.4476943224017], [-3159.3845615560667, -2481.547694323183], [-3166.084561556204, -2492.797694323201]], "source": 1315785233, "length": 9.690587294249179}, {"destination": 1315678824, "path": [[-2259.6345615539803, -4703.497694322323], [-2021.484561552711, -4750.197694322722], [-1695.134561551015, -4808.847694322438]], "source": 1315678738, "length": 109.87252900783817}, {"destination": 1315785393, "path": [[-2259.6345615539803, -4703.497694322323], [-2216.684561552995, -4538.547694322048]], "source": 1315678738, "length": 37.58148313187491}, {"destination": 1315785326, "path": [[-2259.6345615539803, -4703.497694322323], [-2310.6345615531154, -4903.097694322511], [-2071.934561556077, -4951.247694322092], [-2007.5345615566675, -4939.797694323289], [-1902.9345615564353, -4958.14769432279], [-1730.1845615520506, -5000.097694322747]], "source": 1315678738, "length": 159.03099603740134}, {"destination": 618170117, "path": [[4954.665438447137, 8346.50230567746], [4985.215438445322, 8416.952305676517], [5054.715438447488, 8503.302305676641], [5177.265438447876, 8604.852305676757], [5270.115438449352, 8656.152305677622]], "source": 618170115, "length": 93.50452094040264}, {"destination": 3836778602, "path": [[-4060.384561554997, -4723.597694322734], [-4404.284561552175, -4629.6476943226135]], "source": 1315678742, "length": 68.65013406307834}, {"destination": 1315678866, "path": [[-4060.384561554997, -4723.597694322734], [-3976.9345615567886, -4465.097694323461]], "source": 1315678742, "length": 59.63774023856796}, {"destination": 1315785249, "path": [[-4258.284561551307, 172.05230567718388], [-4406.734561555936, 217.952305677116]], "source": 1315785239, "length": 30.019868616128214}, {"destination": 1315785362, "path": [[-4258.284561551307, 172.05230567718388], [-4292.684561555405, 69.20230567786234], [-4315.134561551304, 21.702305676996048]], "source": 1315785239, "length": 35.18420624830135}, {"destination": 1315785462, "path": [[-4258.284561551307, 172.05230567718388], [-4185.384561552041, 149.5023056765632]], "source": 1315785239, "length": 14.742833775489059}, {"destination": 1315678569, "path": [[-4321.284561555672, -5140.947694322051], [-4302.2845615539045, -5096.197694323124]], "source": 1315678744, "length": 10.58732265068514}, {"destination": 1315678745, "path": [[-4321.284561555672, -5140.947694322051], [-4609.1345615550945, -5038.3476943220985]], "source": 1315678744, "length": 59.30045844387119}, {"destination": 1315678567, "path": [[-4321.284561555672, -5140.947694322051], [-4339.734561554565, -5184.047694323013], [-4368.684561555369, -5251.547694323122]], "source": 1315678744, "length": 26.196156596803917}, {"destination": 1469016649, "path": [[-8313.384561553505, -608.0476943228774], [-8375.084561556889, -546.0976943219009], [-8340.184561554053, -495.6476943220878], [-8340.184561554053, -433.6976943228876], [-8302.634561552224, -401.5976943225752], [-8262.434561551401, -376.3976943229608], [-8232.88456155069, -348.8476943225294], [-8184.634561551718, -353.4476943229947], [-8147.084561556994, -385.54769432330716], [-8104.18456155304, -399.2976943223425], [-8031.734561555481, -399.2976943223425], [-8015.634561552077, -422.2476943223086], [-7991.484561550522, -463.54769432177534], [-7948.584561553673, -484.1976943232851], [-7876.184561553146, -481.8976943230524]], "source": 1469016601, "length": 153.97810311689847}, {"destination": 1469016578, "path": [[-8313.384561553505, -608.0476943228774], [-8269.634561550276, -560.3976943220346], [-8203.984561554023, -621.2476943225909], [-8117.584561553314, -633.2476943224918]], "source": 1469016601, "length": 48.53062492690745}, {"destination": 1469016582, "path": [[-8313.384561553505, -608.0476943228774], [-8396.534561555312, -608.0476943228774]], "source": 1469016601, "length": 15.812378993160372}, {"destination": 1469016710, "path": [[-8313.384561553505, -608.0476943228774], [-8254.384561553252, -653.8976943222252]], "source": 1469016601, "length": 15.160864517871225}, {"destination": 1315785448, "path": [[-4335.584561552252, 1287.1523056769975], [-4352.184561554395, 1223.552305678055]], "source": 1315785242, "length": 14.492197664586074}, {"destination": 1315785611, "path": [[-4335.584561552252, 1287.1523056769975], [-4421.434561550086, 1316.9523056770772]], "source": 1315785242, "length": 17.620435622963246}, {"destination": 1315785535, "path": [[-4335.584561552252, 1287.1523056769975], [-4161.384561555792, 1239.852305676692]], "source": 1315785242, "length": 34.758557164113434}, {"destination": 1315785593, "path": [[-4255.134561553576, 1126.602305676627], [-4370.334561556888, 1153.8523056771055]], "source": 1315785243, "length": 22.731039791207763}, {"destination": 1315785528, "path": [[-3088.484561551752, -5095.747694323194], [-3104.4845615539884, -5238.747694322754]], "source": 1315785244, "length": 31.94700717159616}, {"destination": 1315785543, "path": [[-3779.8345615556173, -1791.197694322122], [-3474.8345615511766, -1950.09769432275]], "source": 1315785246, "length": 67.91726194915448}, {"destination": 1404618560, "path": [[2877.215438445546, 8730.402305676676], [2778.01543844447, 8690.752305676951]], "source": 1404618501, "length": 20.82724138306486}, {"destination": 623411698, "path": [[2877.215438445546, 8730.402305676676], [3015.2654384494326, 8785.952305677469]], "source": 1404618501, "length": 29.0188904000366}, {"destination": 1404618604, "path": [[2877.215438445546, 8730.402305676676], [2461.7654384471166, 9061.80230567699]], "source": 1404618501, "length": 108.05604093494759}, {"destination": 476914699, "path": [[10843.465438448164, -5147.747694323357], [10925.165438443684, -5012.497694321994], [11024.665438448266, -4868.74769432255]], "source": 602360352, "length": 71.00102191139078}, {"destination": 554689606, "path": [[10843.465438448164, -5147.747694323357], [10943.515438448514, -5164.297694323139]], "source": 602360352, "length": 19.377063573707254}, {"destination": 1315785288, "path": [[-4406.734561555936, 217.952305677116], [-4437.484561556459, 149.5023056765632], [-4460.084561550559, 89.95230567698798]], "source": 1315785249, "length": 30.230581473153606}, {"destination": 1315785239, "path": [[-4406.734561555936, 217.952305677116], [-4258.284561551307, 172.05230567718388]], "source": 1315785249, "length": 30.019868616128214}, {"destination": 1315785495, "path": [[-4406.734561555936, 217.952305677116], [-4563.5845615521475, 266.4523056772339]], "source": 1315785249, "length": 31.71866522457811}, {"destination": 1315785316, "path": [[-2404.534561556204, -2238.09769432215], [-2254.334561555993, -2300.047694323126], [-2068.63456155304, -2353.6976943230316]], "source": 1315785250, "length": 68.9854951537396}, {"destination": 1315785530, "path": [[-3675.7345615541226, -2513.3476943217656], [-3802.5845615550224, -2457.7476943221654]], "source": 1315785251, "length": 27.106351859853646}, {"destination": 1315785396, "path": [[-3675.7345615541226, -2513.3476943217656], [-3615.534561554057, -2408.147694323404]], "source": 1315785251, "length": 26.04624126491876}, {"destination": 1315785270, "path": [[-3675.7345615541226, -2513.3476943217656], [-3589.9345615533207, -2552.297694322192]], "source": 1315785251, "length": 18.472688499796277}, {"destination": 1315678610, "path": [[-1476.0845615526819, -5044.247694321768], [-934.3345615562271, -5158.447694322277]], "source": 1315678756, "length": 106.09874478225686}, {"destination": 1315785207, "path": [[-3957.3845615521464, 1369.702305677123], [-4077.084561551203, 1406.7523056766618]], "source": 1315785253, "length": 24.209465901149272}, {"destination": 1315678828, "path": [[-2016.1345615505866, -7066.44769432252], [-2006.0345615533492, -7044.447694322997]], "source": 1315678758, "length": 5.255857365621806}, {"destination": 1315678636, "path": [[-2016.1345615505866, -7066.44769432252], [-2091.684561555951, -7191.1976943219715]], "source": 1315678758, "length": 31.241979960801785}, {"destination": 1315678702, "path": [[-2016.1345615505866, -7066.44769432252], [-2175.634561552897, -7005.147694322033]], "source": 1315678758, "length": 33.250991088934306}, {"destination": 1315785446, "path": [[-4370.434561550951, 2046.3523056779563], [-4145.684561557062, 1974.552305677335]], "source": 1315785255, "length": 45.62810593718322}, {"destination": 1315678637, "path": [[-1285.634561554616, -6319.947694322536], [-918.5345615563278, -6418.947694323052]], "source": 1315678760, "length": 73.19232445203065}, {"destination": 267195118, "path": [[-1285.634561554616, -6319.947694322536], [-1345.7345615535132, -6476.34769432237]], "source": 1315678760, "length": 36.61087422672781}, {"destination": 1315678743, "path": [[-1285.634561554616, -6319.947694322536], [-1245.8845615554992, -6197.297694322757]], "source": 1315678760, "length": 28.30413575778514}, {"destination": 1315785297, "path": [[-4131.334561556343, -1581.4976943229199], [-4215.034561553921, -1537.5976943232672]], "source": 1315785257, "length": 18.67261939556622}, {"destination": 1315785363, "path": [[-4131.334561556343, -1581.4976943229199], [-4080.784561551809, -1522.5476943232507], [-3970.7845615524207, -1579.8476943231776]], "source": 1315785257, "length": 40.7508758639464}, {"destination": 1315785630, "path": [[-4131.334561556343, -1581.4976943229199], [-4016.3845615523996, -1641.7976943223778]], "source": 1315785257, "length": 25.645221594366287}, {"destination": 1315785616, "path": [[-5212.3345615555645, -2265.047694322675], [-5253.384561555663, -2318.2976943232347]], "source": 1315785258, "length": 14.183556893058501}, {"destination": 1315785385, "path": [[-5212.3345615555645, -2265.047694322675], [-5344.084561556883, -2189.947694322569]], "source": 1315785258, "length": 30.11025060833165}, {"destination": 1771400900, "path": [[6304.6654384493195, -5831.79769432185], [6320.765438445619, -5967.097694322021], [6339.515438448017, -6072.597694322113], [6353.515438448198, -6142.647694321823]], "source": 1782221355, "length": 69.78058253353734}, {"destination": 267198470, "path": [[-6426.334561552949, -3328.6476943228395], [-6354.234561555927, -3193.2976943220838]], "source": 1315678764, "length": 33.07583697130927}, {"destination": 1315678711, "path": [[-6426.334561552949, -3328.6476943228395], [-6080.634561556053, -3464.097694322987]], "source": 1315678764, "length": 72.31045590026709}, {"destination": 501838913, "path": [[11541.315438449828, 6420.25230567711], [10552.215438444535, 5945.852305677235]], "source": 618426802, "length": 215.68715921123058}, {"destination": 79811522, "path": [[11541.315438449828, 6420.25230567711], [11640.965438445506, 6492.502305677661]], "source": 618426802, "length": 24.84770582968446}, {"destination": 267198017, "path": [[-3163.784561550642, -5623.797694322974], [-2821.7845615543524, -5696.047694321749]], "source": 1315678766, "length": 66.9864839280585}, {"destination": 1315678663, "path": [[-3163.784561550642, -5623.797694322974], [-3141.734561552312, -5560.397694322816]], "source": 1315678766, "length": 14.709784913969253}, {"destination": 1315678806, "path": [[-3458.584561556677, -4391.597694322513], [-3725.184561552908, -4343.847694322278]], "source": 1315678767, "length": 51.795348386025836}, {"destination": 1315785540, "path": [[-2505.284561550525, -4585.647694321793], [-2557.4345615524408, -4575.147694323434], [-2648.584561555367, -4561.397694322622]], "source": 1315785264, "length": 27.787478599146446}, {"destination": 95386222, "path": [[-2505.284561550525, -4585.647694321793], [-2460.0345615510832, -4405.447694322717], [-2403.084561557023, -4155.1476943233465]], "source": 1315785264, "length": 97.69588696412427}, {"destination": 1315785579, "path": [[-4150.534561553342, 314.65230567739866], [-4509.934561554019, 420.1523056774903], [-4827.434561555321, 512.9523056766061]], "source": 1315785265, "length": 136.07255880698884}, {"destination": 1469016587, "path": [[-8380.684561551278, -796.49769432244], [-8820.334561555399, -612.5976943227585]], "source": 1469016626, "length": 93.07435094448729}, {"destination": 1469016764, "path": [[-8380.684561551278, -796.49769432244], [-8316.034561552498, -672.2476943217259]], "source": 1469016626, "length": 30.243752708884756}, {"destination": 5017787782, "path": [[-8380.684561551278, -796.49769432244], [-8269.534561556213, -842.9976943222783]], "source": 1469016626, "length": 23.531159721185084}, {"destination": 1315785283, "path": [[-1488.184561551975, -4187.947694322957], [-1368.5345615570554, -4221.947694322381], [-1167.3345615506037, -4267.797694321729]], "source": 1315785267, "length": 63.57022400592689}, {"destination": 95386499, "path": [[-1488.184561551975, -4187.947694322957], [-1562.8345615539274, -4418.697694323015]], "source": 1315785267, "length": 53.24362957034254}, {"destination": 5021317178, "path": [[-7656.334561552569, -3987.1976943217646], [-7703.184561556498, -3966.447694322639]], "source": 850279563, "length": 10.032658600354617}, {"destination": 1890502938, "path": [[-7656.334561552569, -3987.1976943217646], [-7581.334561550079, -3866.0476943217504], [-7434.084561552368, -3644.8476943231612], [-7351.184561557034, -3520.9976943217926]], "source": 850279563, "length": 118.82273643032079}, {"destination": 1315678660, "path": [[-3829.9345615513403, -4321.547694322802], [-3938.0845615539783, -4297.797694322369]], "source": 1315678773, "length": 21.23224093605234}, {"destination": 874312382, "path": [[-3829.9345615513403, -4321.547694322802], [-3744.1345615505384, -3977.8976943232183]], "source": 1315678773, "length": 78.14645137816936}, {"destination": 1315678806, "path": [[-3829.9345615513403, -4321.547694322802], [-3725.184561552908, -4343.847694322278]], "source": 1315678773, "length": 20.52670018100819}, {"destination": 1315785251, "path": [[-3589.9345615533207, -2552.297694322192], [-3675.7345615541226, -2513.3476943217656]], "source": 1315785270, "length": 18.472688499796277}, {"destination": 1315785200, "path": [[-3510.834561552656, -2009.7976943223016], [-3198.134561550603, -2177.097694323393]], "source": 1315785271, "length": 70.14443665594145}, {"destination": 1315785376, "path": [[-3510.834561552656, -2009.7976943223016], [-3847.434561556895, -1836.747694323293]], "source": 1315785271, "length": 74.68746082652379}, {"destination": 1315785543, "path": [[-3510.834561552656, -2009.7976943223016], [-3474.8345615511766, -1950.09769432275]], "source": 1315785271, "length": 14.937781776853646}, {"destination": 1315678697, "path": [[-6594.934561555021, -3635.5976943234227], [-6564.084561553329, -3580.597694321952]], "source": 1315678776, "length": 13.565472679899191}, {"destination": 1315678667, "path": [[-6594.934561555021, -3635.5976943234227], [-6365.984561554683, -3724.197694323195]], "source": 1315678776, "length": 47.78752048879752}, {"destination": 1469016754, "path": [[-6835.484561555915, -1589.6976943228224], [-6798.534561553993, -1545.6976943220013]], "source": 1469016633, "length": 12.046330004584373}, {"destination": 1315785344, "path": [[-4738.184561553282, -1642.2476943223073], [-4796.534561556598, -1714.4476943222742]], "source": 1315785274, "length": 19.517487310491795}, {"destination": 1315785333, "path": [[-4738.184561553282, -1642.2476943223073], [-4979.334561554083, -1513.34769432232]], "source": 1315785274, "length": 54.08079194719857}, {"destination": 1315678572, "path": [[-4973.88456155079, -3958.147694323344], [-5471.98456155229, -3724.6976943219324]], "source": 1315678779, "length": 108.01207598464553}, {"destination": 1315785207, "path": [[-4563.5845615521475, 1544.0523056771126], [-4255.134561553576, 1470.6523056773335], [-4077.084561551203, 1406.7523056766618]], "source": 1315785276, "length": 97.61114765044934}, {"destination": 1315678636, "path": [[-1894.5845615547796, -7257.597694323436], [-2091.684561555951, -7191.1976943219715]], "source": 1315678782, "length": 40.28149650244034}, {"destination": 1315678830, "path": [[-3600.3845615510954, -7442.747694321739], [-4194.234561552435, -7380.397694323193]], "source": 1315678783, "length": 113.76370740247758}, {"destination": 481397090, "path": [[-3818.534561553122, 820.652305677072], [-4758.484561556032, 1015.3023056780341]], "source": 481397312, "length": 183.9218602115855}, {"destination": 385113763, "path": [[-3818.534561553122, 820.652305677072], [-3632.1345615561995, 1420.2023056775204]], "source": 481397312, "length": 137.96591084870857}, {"destination": 1315785605, "path": [[-3818.534561553122, 820.652305677072], [-3874.98456155555, 656.7523056766333], [-3922.5845615504795, 494.45230567712883]], "source": 481397312, "length": 75.20956124953376}, {"destination": 483098150, "path": [[-3818.534561553122, 820.652305677072], [-3602.884561551889, 754.6523056767285]], "source": 481397312, "length": 43.55850333443454}, {"destination": 1315785647, "path": [[-4118.334561553638, 1296.3523056779281], [-4098.734561551964, 1348.7523056774364]], "source": 1315785281, "length": 12.235258449967288}, {"destination": 1315785214, "path": [[-4118.334561553638, 1296.3523056779281], [-4230.984561552021, 1323.8523056777751]], "source": 1315785281, "length": 22.279102859913632}, {"destination": 1315785535, "path": [[-4118.334561553638, 1296.3523056779281], [-4161.384561555792, 1239.852305676692]], "source": 1315785281, "length": 14.996793681335918}, {"destination": 1315785289, "path": [[-2468.6345615521077, -729.4476943222605], [-2560.0845615514345, -705.9976943217805]], "source": 1315785282, "length": 18.156261773161713}, {"destination": 1315785354, "path": [[-2468.6345615521077, -729.4476943222605], [-2262.1845615518055, -782.3976943228672]], "source": 1315785282, "length": 40.98814604184726}, {"destination": 1315785508, "path": [[-2468.6345615521077, -729.4476943222605], [-2446.9345615543148, -643.647694323235]], "source": 1315785282, "length": 19.52210453922628}, {"destination": 1315785197, "path": [[-2468.6345615521077, -729.4476943222605], [-2494.634561550413, -812.5476943234844]], "source": 1315785282, "length": 19.130844053262024}, {"destination": 1315785626, "path": [[-1167.3345615506037, -4267.797694321729], [-1111.684561550419, -4029.297694323475]], "source": 1315785283, "length": 54.08537471563527}, {"destination": 1315785267, "path": [[-1167.3345615506037, -4267.797694321729], [-1368.5345615570554, -4221.947694322381], [-1488.184561551975, -4187.947694322957]], "source": 1315785283, "length": 63.57022400592689}, {"destination": 1315785634, "path": [[-1167.3345615506037, -4267.797694321729], [-1065.4345615535021, -4302.197694322274]], "source": 1315785283, "length": 20.83221727427283}, {"destination": 1315678571, "path": [[-3053.6345615530536, -4903.197694321903], [-2957.0345615539395, -4928.247694323318]], "source": 1315678788, "length": 19.19504288065494}, {"destination": 1315678723, "path": [[-3053.6345615530536, -4903.197694321903], [-3200.184561556796, -4865.1976943219215]], "source": 1315678788, "length": 29.11996401256682}, {"destination": 1315678612, "path": [[-3053.6345615530536, -4903.197694321903], [-3020.784561556411, -4775.89769432285], [-2928.7845615542096, -4804.297694322557], [-2774.6345615540235, -4845.697694323192], [-2822.984561554165, -5052.597694323424]], "source": 1315678788, "length": 125.23632550163816}, {"destination": 1315785479, "path": [[-4603.78456155297, -1061.4976943230658], [-4370.68456155032, -1191.4976943234733]], "source": 1315785285, "length": 52.92256533157421}, {"destination": 1315785340, "path": [[-3399.484561555255, -1699.147694322889], [-3442.0845615557027, -1774.3476943223868]], "source": 1315785286, "length": 18.582383175076586}, {"destination": 1315785193, "path": [[-3440.8345615517533, -4129.147694323266], [-3455.684561551209, -4199.697694321713]], "source": 1315785287, "length": 15.941804702088135}, {"destination": 1315785187, "path": [[-3440.8345615517533, -4129.147694323266], [-3346.7845615504643, -4143.697694322767]], "source": 1315785287, "length": 18.174123323741075}, {"destination": 1315785348, "path": [[-3440.8345615517533, -4129.147694323266], [-3686.484561555403, -4084.347694321977]], "source": 1315785287, "length": 47.76224137484118}, {"destination": 1315785249, "path": [[-4460.084561550559, 89.95230567698798], [-4437.484561556459, 149.5023056765632], [-4406.734561555936, 217.952305677116]], "source": 1315785288, "length": 30.230581473153606}, {"destination": 1315785362, "path": [[-4460.084561550559, 89.95230567698798], [-4315.134561551304, 21.702305676996048]], "source": 1315785288, "length": 31.467909579085283}, {"destination": 1315785294, "path": [[-4460.084561550559, 89.95230567698798], [-4601.134561553977, 156.4023056772612]], "source": 1315785288, "length": 30.62517569796374}, {"destination": 1469016689, "path": [[-7876.184561553146, -481.8976943230524], [-7886.884561550289, -417.64769432184323]], "source": 1469016649, "length": 14.432683760240016}, {"destination": 1469016586, "path": [[-7876.184561553146, -481.8976943230524], [-7878.834561552139, -548.3976943221336], [-7951.284561556804, -660.7976943229232], [-8015.634561552077, -692.8976943232357]], "source": 1469016649, "length": 57.50673230273987}, {"destination": 1469016601, "path": [[-7876.184561553146, -481.8976943230524], [-7948.584561553673, -484.1976943232851], [-7991.484561550522, -463.54769432177534], [-8015.634561552077, -422.2476943223086], [-8031.734561555481, -399.2976943223425], [-8104.18456155304, -399.2976943223425], [-8147.084561556994, -385.54769432330716], [-8184.634561551718, -353.4476943229947], [-8232.88456155069, -348.8476943225294], [-8262.434561551401, -376.3976943229608], [-8302.634561552224, -401.5976943225752], [-8340.184561554053, -433.6976943228876], [-8340.184561554053, -495.6476943220878], [-8375.084561556889, -546.0976943219009], [-8313.384561553505, -608.0476943228774]], "source": 1469016649, "length": 153.97810311689844}, {"destination": 479293180, "path": [[-4894.034561552018, -2388.1476943223843], [-4702.584561556478, -2143.0476943233857]], "source": 1315785290, "length": 65.54794890857846}, {"destination": 1315785335, "path": [[-4894.034561552018, -2388.1476943223843], [-4770.084561556587, -2453.6976943227983], [-4491.284561552789, -2588.8476943229934]], "source": 1315785290, "length": 88.65804434435327}, {"destination": 1315785353, "path": [[-3369.9845615515756, -2630.2976943224367], [-3174.1345615543537, -2715.2976943227713]], "source": 1315785291, "length": 41.76554833109966}, {"destination": 3569237097, "path": [[-6962.684561550248, -543.7976943234446], [-7037.734561556874, -512.797694321776]], "source": 1469016652, "length": 15.84995301602274}, {"destination": 1469016730, "path": [[-6962.684561550248, -543.7976943234446], [-6510.934561553939, -796.0976943230946], [-6280.734561556756, -921.9476943229665]], "source": 1469016652, "length": 154.56734633683914}, {"destination": 1469016668, "path": [[-6962.684561550248, -543.7976943234446], [-6936.134561556173, -1305.1476943228836]], "source": 1469016652, "length": 169.39202807827408}, {"destination": 639308705, "path": [[-287.08456155612794, 2865.652305677813], [-301.28456155154026, 2882.352305677571], [-390.73456155591657, 2932.052305677502]], "source": 1316236386, "length": 24.879689980238027}, {"destination": 1316236963, "path": [[-287.08456155612794, 2865.652305677813], [-349.984561552219, 2700.152305678216], [-259.9845615520735, 2662.652305676971]], "source": 1316236386, "length": 57.74100984766974}, {"destination": 1316237051, "path": [[-287.08456155612794, 2865.652305677813], [-199.78456155200774, 2947.852305677401], [-218.58456155143813, 2973.1023056775994], [-162.23456155017857, 3044.202305677146]], "source": 1316236386, "length": 50.45394594717398}, {"destination": 1315785464, "path": [[-4601.134561553977, 156.4023056772612], [-4782.284561557049, 199.50230567822302]], "source": 1315785294, "length": 35.7582846230735}, {"destination": 1315785288, "path": [[-4601.134561553977, 156.4023056772612], [-4460.084561550559, 89.95230567698798]], "source": 1315785294, "length": 30.62517569796374}, {"destination": 1315785495, "path": [[-4601.134561553977, 156.4023056772612], [-4587.034561552628, 194.80230567658907], [-4563.5845615521475, 266.4523056772339]], "source": 1315785294, "length": 25.497494343035264}, {"destination": 1315785233, "path": [[-3166.084561556204, -2492.797694323201], [-3159.3845615560667, -2481.547694323183], [-3147.0345615502993, -2452.4476943224017]], "source": 1315785295, "length": 9.690587294249179}, {"destination": 1315785466, "path": [[-3166.084561556204, -2492.797694323201], [-3186.384561551847, -2534.6476943219895]], "source": 1315785295, "length": 10.07568664025286}, {"destination": 1315785590, "path": [[-3166.084561556204, -2492.797694323201], [-3241.384561555094, -2462.8976943219527]], "source": 1315785295, "length": 15.787850838688396}, {"destination": 1315785314, "path": [[-4256.734561550957, 1559.7523056776197], [-4046.8845615535542, 1477.2023056774942]], "source": 1315785296, "length": 43.92854381145414}, {"destination": 1315785257, "path": [[-4215.034561553921, -1537.5976943232672], [-4131.334561556343, -1581.4976943229199]], "source": 1315785297, "length": 18.67261939556622}, {"destination": 1315785261, "path": [[-4215.034561553921, -1537.5976943232672], [-4171.234561553661, -1487.0976943228698]], "source": 1315785297, "length": 13.982284327993554}, {"destination": 1315785391, "path": [[-1197.5345615553579, -3926.0976943218393], [-1402.0845615547728, -3884.847694322957]], "source": 1315785298, "length": 39.96341941548033}, {"destination": 1782221369, "path": [[5807.065438446557, -8167.197694323391], [5815.215438445875, -8170.99769432339], [5821.265438449074, -8172.147694322618], [5830.865438447574, -8171.547694322711], [5839.665438443831, -8168.197694322643], [5846.615438443337, -8162.497694321757], [5850.815438449786, -8155.097694322322], [5851.765438443124, -8150.99769432237], [5851.0654384491545, -8142.797694322468], [5847.165438446211, -8135.297694321864], [5844.065438445512, -8132.047694322963], [5842.565438449299, -8130.897694321959]], "source": 1782221395, "length": 16.17245616255488}, {"destination": 1782221407, "path": [[5807.065438446557, -8167.197694323391], [5741.315438449135, -8232.747694322028]], "source": 1782221395, "length": 19.204196622208922}, {"destination": 1782221471, "path": [[5807.065438446557, -8167.197694323391], [5806.765438443052, -8167.047694323415], [5800.415438443451, -8160.847694322016], [5796.4154384464455, -8149.54769432319], [5797.715438447426, -8141.397694322094], [5801.365438443895, -8135.44769432184]], "source": 1782221395, "length": 7.780644420747481}, {"destination": 1315785480, "path": [[-1260.5345615526176, -2780.7476943220167], [-1277.5345615523293, -2855.7976943233143]], "source": 1315785300, "length": 17.000600768780785}, {"destination": 1315785177, "path": [[-1260.5345615526176, -2780.7476943220167], [-1103.6345615522691, -2822.9476943231193]], "source": 1315785300, "length": 31.277443069918306}, {"destination": 1315785293, "path": [[-1260.5345615526176, -2780.7476943220167], [-1569.6845615522648, -2678.7976943225544]], "source": 1315785300, "length": 63.00866844054509}, {"destination": 1315785573, "path": [[-1260.5345615526176, -2780.7476943220167], [-1240.434561552206, -2692.2476943234133]], "source": 1315785300, "length": 20.049140563983073}, {"destination": 1315678736, "path": [[-4573.634561552353, -4969.147694323439], [-4534.684561555479, -4893.297694323451]], "source": 1315678805, "length": 18.42236675186479}, {"destination": 1315678745, "path": [[-4573.634561552353, -4969.147694323439], [-4609.1345615550945, -5038.3476943220985]], "source": 1315678805, "length": 16.80491231997422}, {"destination": 1315678726, "path": [[-4573.634561552353, -4969.147694323439], [-4288.634561554261, -5064.797694322109]], "source": 1315678805, "length": 58.21825873586942}, {"destination": 1315678866, "path": [[-3725.184561552908, -4343.847694322278], [-3777.3345615548237, -4520.647694322477], [-3976.9345615567886, -4465.097694323461]], "source": 1315678806, "length": 80.46443982925464}, {"destination": 1315678773, "path": [[-3725.184561552908, -4343.847694322278], [-3829.9345615513403, -4321.547694322802]], "source": 1315678806, "length": 20.52670018100819}, {"destination": 1315678767, "path": [[-3725.184561552908, -4343.847694322278], [-3458.584561556677, -4391.597694322513]], "source": 1315678806, "length": 51.795348386025836}, {"destination": 1315785531, "path": [[-3858.734561553945, -4076.897694321957], [-4264.634561550906, -3982.8976943230286]], "source": 1315785303, "length": 79.96477435145258}, {"destination": 1315678622, "path": [[-2940.9345615505345, -5423.647694323464], [-3074.9345615532775, -5390.847694322076]], "source": 1315678808, "length": 26.503653552770686}, {"destination": 1320104026, "path": [[2644.8654384481074, 3037.25230567764], [2547.865438444319, 2890.152305678129]], "source": 3779390041, "length": 37.556773699575125}, {"destination": 1320103998, "path": [[2644.8654384481074, 3037.25230567764], [2831.165438443861, 3130.352305676709]], "source": 3779390041, "length": 41.0371514157765}, {"destination": 1320103998, "path": [[2644.8654384481074, 3037.25230567764], [2831.165438443861, 3130.352305676709]], "source": 3779390041, "length": 41.0371514157765}, {"destination": 1315678678, "path": [[-4250.934561554232, -7548.047694323046], [-4277.334561550106, -7653.64769432253]], "source": 1315678810, "length": 24.0150992815937}, {"destination": 1315678799, "path": [[-4250.934561554232, -7548.047694323046], [-3699.984561556846, -7613.747694323436]], "source": 1315678810, "length": 105.77213175187404}, {"destination": 1993253290, "path": [[5521.51543844559, -6576.147694323353], [6030.315438444233, -6383.29769432211]], "source": 1782221403, "length": 105.82601271289451}, {"destination": 1469016652, "path": [[-6936.134561556173, -1305.1476943228836], [-6962.684561550248, -543.7976943234446]], "source": 1469016668, "length": 169.39202807827408}, {"destination": 1469016770, "path": [[-6936.134561556173, -1305.1476943228836], [-6834.684561553672, -1352.3976943226046]], "source": 1469016668, "length": 21.968477449306334}, {"destination": 1469016770, "path": [[-6936.134561556173, -1305.1476943228836], [-6932.034561550892, -1413.0976943231844], [-6834.684561553672, -1352.3976943226046]], "source": 1469016668, "length": 46.93151712009269}, {"destination": 1469016732, "path": [[-6936.134561556173, -1305.1476943228836], [-7248.53456155472, -1103.4476943230231]], "source": 1469016668, "length": 74.44051829709306}, {"destination": 1315785466, "path": [[-3285.4845615517547, -2495.997694323293], [-3186.384561551847, -2534.6476943219895]], "source": 1315785309, "length": 20.71290109128979}, {"destination": 1315785339, "path": [[-4063.184561552191, -1362.597694322787], [-4031.534561555361, -1327.5476943217514]], "source": 1315785310, "length": 9.848149822784277}, {"destination": 1315785230, "path": [[-4063.184561552191, -1362.597694322787], [-4260.4845615557, -1238.1476943232883]], "source": 1315785310, "length": 46.62306036205194}, {"destination": 1315785569, "path": [[-2849.3345615530075, -2725.64769432293], [-2918.434561550498, -2849.1976943225695]], "source": 1315785311, "length": 30.456671546939322}, {"destination": 1315785278, "path": [[-2849.3345615530075, -2725.64769432293], [-2774.684561551055, -2749.54769432334], [-2720.6345615553573, -2777.9976943218544]], "source": 1315785311, "length": 27.227316852033816}, {"destination": 1315785609, "path": [[-2849.3345615530075, -2725.64769432293], [-2829.5845615531334, -2690.2976943219414]], "source": 1315785311, "length": 8.712362757115391}, {"destination": 1807311608, "path": [[-6303.88456155373, 3529.0523056765724], [-6220.884561550121, 3923.0023056777695], [-6116.284561556995, 4411.052305677287]], "source": 1572268640, "length": 199.36689965928161}, {"destination": 857780853, "path": [[-6303.88456155373, 3529.0523056765724], [-6479.784561555845, 2758.40230567681], [-6490.33456155479, 2712.102305677533]], "source": 1572268640, "length": 185.10965652241342}, {"destination": 857780845, "path": [[-6303.88456155373, 3529.0523056765724], [-6590.784561552709, 3635.0023056765936], [-7010.78456155102, 3781.1523056774377], [-7271.234561549989, 3865.9023056766273]], "source": 1572268640, "length": 198.67071325551638}, {"destination": 1315785528, "path": [[-2973.134561550239, -5272.24769432344], [-3021.3845615563173, -5258.497694322628], [-3104.4845615539884, -5238.747694322754]], "source": 1315678817, "length": 26.07114058582405}, {"destination": 1315678570, "path": [[-2973.134561550239, -5272.24769432344], [-2763.884561552743, -5322.747694322061]], "source": 1315678817, "length": 41.34337244496631}, {"destination": 1315678574, "path": [[-2973.134561550239, -5272.24769432344], [-2951.3845615554146, -5201.197694322701]], "source": 1315678817, "length": 16.333309321782288}, {"destination": 4705342936, "path": [[-4046.8845615535542, 1477.2023056774942], [-4001.534561552944, 1567.602305676985]], "source": 1315785314, "length": 21.875974723931243}, {"destination": 1315785296, "path": [[-4046.8845615535542, 1477.2023056774942], [-4256.734561550957, 1559.7523056776197]], "source": 1315785314, "length": 43.92854381145414}, {"destination": 1315785445, "path": [[-4046.8845615535542, 1477.2023056774942], [-3935.9345615537222, 1427.0523056776342]], "source": 1315785314, "length": 23.866397546688656}, {"destination": 1315785207, "path": [[-4046.8845615535542, 1477.2023056774942], [-4077.084561551203, 1406.7523056766618]], "source": 1315785314, "length": 16.68704586194288}, {"destination": 1315678689, "path": [[-2999.9345615507877, -7689.397694322864], [-3240.8845615563564, -7633.697694322094]], "source": 1315678819, "length": 47.45945593705482}, {"destination": 1315785250, "path": [[-2068.63456155304, -2353.6976943230316], [-2254.334561555993, -2300.047694323126], [-2404.534561556204, -2238.09769432215]], "source": 1315785316, "length": 68.9854951537396}, {"destination": 479284103, "path": [[-2068.63456155304, -2353.6976943230316], [-2036.234561550998, -2234.0476943227827]], "source": 1315785316, "length": 27.31287596118109}, {"destination": 1315785488, "path": [[-3686.8345615559406, -2286.947694322805], [-4056.634561550254, -2098.1976943232894]], "source": 1315785317, "length": 81.89742486829763}, {"destination": 1315785426, "path": [[-3686.8345615559406, -2286.947694322805], [-3735.0345615507763, -2358.0476943223516]], "source": 1315785317, "length": 18.276488486568237}, {"destination": 1315785373, "path": [[-3686.8345615559406, -2286.947694322805], [-3638.1845615522934, -2215.1976943227683]], "source": 1315785317, "length": 18.44436886976438}, {"destination": 1315785527, "path": [[-3686.8345615559406, -2286.947694322805], [-3469.234561556789, -2389.4976943221736]], "source": 1315785317, "length": 47.24790625125316}, {"destination": 1315785200, "path": [[-3075.1845615526463, -2003.6976943220707], [-3198.134561550603, -2177.097694323393]], "source": 1315785318, "length": 45.09672854144428}, {"destination": 1315785355, "path": [[-3075.1845615526463, -2003.6976943220707], [-2983.0845615563817, -2054.147694321884]], "source": 1315785318, "length": 20.799527720280427}, {"destination": 1315785227, "path": [[-2656.634561553517, -2396.347694322287], [-2881.8845615532496, -2340.147694322781]], "source": 1315785320, "length": 44.62025904275296}, {"destination": 1315785424, "path": [[-2720.1845615536513, -4399.597694321855], [-2609.8345615537255, -4420.19769432278]], "source": 1315785322, "length": 21.477659729148723}, {"destination": 1315785224, "path": [[-2720.1845615536513, -4399.597694321855], [-2752.684561556862, -4538.747694322609]], "source": 1315785322, "length": 31.55657189494617}, {"destination": 1315785229, "path": [[-2720.1845615536513, -4399.597694321855], [-2782.7345615563104, -4398.547694322019], [-2934.5845615509347, -4372.847694321891]], "source": 1315785322, "length": 41.331169712251906}, {"destination": 4868927533, "path": [[-2720.1845615536513, -4399.597694321855], [-2667.3845615547975, -4203.597694322881], [-2649.7845615551796, -4127.097694322401]], "source": 1315785322, "length": 62.068974960318954}, {"destination": 1315678743, "path": [[-920.8845615518158, -6273.0476943233525], [-1245.8845615554992, -6197.297694322757]], "source": 1315678827, "length": 64.05250756611359}, {"destination": 2354289892, "path": [[-2006.0345615533492, -7044.447694322997], [-1941.6345615539399, -6918.0976943226115]], "source": 1315678828, "length": 30.651356472203084}, {"destination": 1315678758, "path": [[-2006.0345615533492, -7044.447694322997], [-2016.1345615505866, -7066.44769432252]], "source": 1315678828, "length": 5.255857365621806}, {"destination": 1315678591, "path": [[-2006.0345615533492, -7044.447694322997], [-1815.0345615524088, -7107.947694322547]], "source": 1315678828, "length": 38.96610902888948}, {"destination": 1315785539, "path": [[-4467.784561555277, 731.7023056767624], [-4782.084561554711, 801.1523056765668]], "source": 1315785325, "length": 61.73504502139986}, {"destination": 1315785219, "path": [[-4467.784561555277, 731.7023056767624], [-4451.284561554303, 803.9023056767292]], "source": 1315785325, "length": 16.360325227661228}, {"destination": 1315785524, "path": [[-4467.784561555277, 731.7023056767624], [-4489.284561550732, 632.6023056768548]], "source": 1315785325, "length": 22.415017476777756}, {"destination": 1315785549, "path": [[-4467.784561555277, 731.7023056767624], [-4260.4845615557, 688.5023056781847]], "source": 1315785325, "length": 40.57687409811977}, {"destination": 1315678718, "path": [[-4194.234561552435, -7380.397694323193], [-4222.9345615538705, -7467.847694321961]], "source": 1315678830, "length": 20.1991725239163}, {"destination": 1315678783, "path": [[-4194.234561552435, -7380.397694323193], [-3600.3845615510954, -7442.747694321739]], "source": 1315678830, "length": 113.76370740247758}, {"destination": 301639384, "path": [[-4094.1845615520833, 463.7523056771897], [-4753.984561553181, 638.0523056765952], [-4796.434561555429, 645.9023056777369]], "source": 1315785327, "length": 139.58682942806817}, {"destination": 1315678632, "path": [[-2941.6345615516093, -5523.097694322132], [-3113.9845615513195, -5476.897694322247]], "source": 1315678832, "length": 34.344983759482346}, {"destination": 1469016800, "path": [[-7886.884561550289, -417.64769432184323], [-7860.084561556846, -390.14769432199614], [-7860.084561556846, -355.7476943232274], [-7897.634561551569, -337.3976943219503]], "source": 1469016689, "length": 23.835208987082623}, {"destination": 1469016800, "path": [[-7886.884561550289, -417.64769432184323], [-7929.834561551274, -403.89769432280787], [-7927.134561555249, -369.49769432226276], [-7897.634561551569, -337.3976943219503]], "source": 1469016689, "length": 25.469344595674468}, {"destination": 1469016649, "path": [[-7886.884561550289, -417.64769432184323], [-7876.184561553146, -481.8976943230524]], "source": 1469016689, "length": 14.432683760240016}, {"destination": 1315785209, "path": [[-3821.4845615556214, -2485.59769432255], [-4201.484561555446, -2300.047694323126]], "source": 1315785331, "length": 83.2134921234445}, {"destination": 1315785530, "path": [[-3821.4845615556214, -2485.59769432255], [-3802.5845615550224, -2457.7476943221654]], "source": 1315785331, "length": 7.159919264002788}, {"destination": 1315785238, "path": [[-3821.4845615556214, -2485.59769432255], [-3861.7845615505075, -2545.0976943233172]], "source": 1315785331, "length": 15.291089460375586}, {"destination": 1315785464, "path": [[-4733.73456155457, 324.05230567711385], [-4782.284561557049, 199.50230567822302]], "source": 1315785332, "length": 29.19723740741535}, {"destination": 1315785491, "path": [[-4733.73456155457, 324.05230567711385], [-4705.984561553578, 397.75230567684616]], "source": 1315785332, "length": 17.21868090550761}, {"destination": 1315785495, "path": [[-4733.73456155457, 324.05230567711385], [-4563.5845615521475, 266.4523056772339]], "source": 1315785332, "length": 34.80131461738085}, {"destination": 1315785274, "path": [[-4979.334561554083, -1513.34769432232], [-4738.184561553282, -1642.2476943223073]], "source": 1315785333, "length": 54.08079194719857}, {"destination": 1315678858, "path": [[-3950.4845615567774, -6942.847694322296], [-3846.934561551052, -6978.9476943231675]], "source": 1315678839, "length": 21.263205653453486}, {"destination": 1315678650, "path": [[-3950.4845615567774, -6942.847694322296], [-4003.3845615568, -7018.097694322379]], "source": 1315678839, "length": 19.525335949687758}, {"destination": 1315785401, "path": [[-4471.334561550577, -1312.6476943217112], [-4535.684561552955, -1393.5476943220947]], "source": 1315785337, "length": 21.75865427650286}, {"destination": 1315785485, "path": [[-4471.334561550577, -1312.6476943217112], [-4729.884561555764, -1180.7976943227773]], "source": 1315785337, "length": 57.24708888357641}, {"destination": 1315785537, "path": [[-5698.134561555435, -1900.9476943221416], [-5666.484561551499, -1850.1476943217908]], "source": 1315785338, "length": 12.800450979214272}, {"destination": 1315785292, "path": [[-4031.534561555361, -1327.5476943217514], [-3871.5845615513444, -1421.5976943230403]], "source": 1315785339, "length": 36.91438265275391}, {"destination": 1315785501, "path": [[-4031.534561555361, -1327.5476943217514], [-4011.3845615508126, -1302.947694322043]], "source": 1315785339, "length": 6.679299701656015}, {"destination": 1315678663, "path": [[-2970.434561554214, -5597.947694322869], [-3141.734561552312, -5560.397694322816]], "source": 1315678844, "length": 33.62591025803883}, {"destination": 1315785427, "path": [[-4308.7845615517035, -1311.4976943224833], [-4117.834561554901, -1425.597694321823]], "source": 1315785341, "length": 44.299562294725845}, {"destination": 1320103936, "path": [[1924.0654384446998, 2770.302305677319], [1901.8154384440322, 2675.9523056778535]], "source": 1320103989, "length": 21.40494010021764}, {"destination": 1320104088, "path": [[1924.0654384446998, 2770.302305677319], [1948.565438446792, 2874.102305677084], [1957.065438446648, 2940.2023056768203]], "source": 1320103989, "length": 38.338340966515446}, {"destination": 1320103826, "path": [[1924.0654384446998, 2770.302305677319], [1814.7154384493547, 2791.902305677496], [1647.9654384440323, 2821.2523056776463]], "source": 1320103989, "length": 53.721936371963096}, {"destination": 1315785443, "path": [[-4796.534561556598, -1714.4476943222742], [-4829.034561552703, -1754.6976943219051]], "source": 1315785344, "length": 10.87746301615509}, {"destination": 1315785451, "path": [[-4796.534561556598, -1714.4476943222742], [-5006.134561554632, -1600.497694322911]], "source": 1315785344, "length": 47.232261817321145}, {"destination": 1315785592, "path": [[-5303.88456155606, -2123.447694321712], [-5165.784561555142, -2200.0476943233593]], "source": 1315785345, "length": 31.302790395975418}, {"destination": 1315785373, "path": [[-3415.5845615515545, -2320.6976943228597], [-3638.1845615522934, -2215.1976943227683]], "source": 1315785346, "length": 48.39752088220496}, {"destination": 1315785340, "path": [[-3541.634561550211, -1726.647694322736], [-3442.0845615557027, -1774.3476943223868]], "source": 1315785347, "length": 21.700171526926972}, {"destination": 1315785287, "path": [[-3686.484561555403, -4084.347694321977], [-3440.8345615517533, -4129.147694323266]], "source": 1315785348, "length": 47.76224137484118}, {"destination": 1315785610, "path": [[-4898.634561556037, -99.14769432306514], [-4703.034561551078, -162.4476943220543]], "source": 1315785349, "length": 39.77205462235152}, {"destination": 1562117605, "path": [[-4898.634561556037, -99.14769432306514], [-4870.584561551539, -27.14769432188291]], "source": 1315785349, "length": 16.877159621013867}, {"destination": 1315785646, "path": [[-4898.634561556037, -99.14769432306514], [-4924.234561556773, -165.24769432280095]], "source": 1315785349, "length": 15.485246560127619}, {"destination": 1469016601, "path": [[-8254.384561553252, -653.8976943222252], [-8313.384561553505, -608.0476943228774]], "source": 1469016710, "length": 15.160864517871225}, {"destination": 1469016578, "path": [[-8254.384561553252, -653.8976943222252], [-8192.684561556973, -656.1976943224579], [-8117.584561553314, -633.2476943224918]], "source": 1469016710, "length": 26.909845742413573}, {"destination": 1469016764, "path": [[-8254.384561553252, -653.8976943222252], [-8273.134561555651, -690.597694323003], [-8316.034561552498, -672.2476943217259]], "source": 1469016710, "length": 18.028442276668066}, {"destination": 1315785304, "path": [[-762.08456155058, -3058.5976943218184], [-862.2345615520999, -3024.797694322956]], "source": 1315785352, "length": 20.47416363014644}, {"destination": 1315785562, "path": [[-762.08456155058, -3058.5976943218184], [-792.3345615523658, -3123.447694322934]], "source": 1315785352, "length": 15.52709551235825}, {"destination": 1315785650, "path": [[-762.08456155058, -3058.5976943218184], [-719.6845615524694, -2959.047694321981]], "source": 1315785352, "length": 23.561398306415654}, {"destination": 1315785512, "path": [[-3174.1345615543537, -2715.2976943227713], [-3128.734561556712, -2644.0476943232484], [-3226.634561556807, -2601.097694322263]], "source": 1315785353, "length": 38.968211016331125}, {"destination": 1315785291, "path": [[-3174.1345615543537, -2715.2976943227713], [-3369.9845615515756, -2630.2976943224367]], "source": 1315785353, "length": 41.76554833109966}, {"destination": 1315785279, "path": [[-3174.1345615543537, -2715.2976943227713], [-3209.1845615553893, -2770.1976943230734], [-3407.5345615534047, -2687.6476943229477]], "source": 1315785353, "length": 55.85869042886771}, {"destination": 1315678839, "path": [[-3846.934561551052, -6978.9476943231675], [-3950.4845615567774, -6942.847694322296]], "source": 1315678858, "length": 21.263205653453486}, {"destination": 1315785318, "path": [[-2983.0845615563817, -2054.147694321884], [-3075.1845615526463, -2003.6976943220707]], "source": 1315785355, "length": 20.799527720280427}, {"destination": 1315785517, "path": [[-2983.0845615563817, -2054.147694321884], [-2873.9345615562684, -2107.397694322444]], "source": 1315785355, "length": 23.897154806954475}, {"destination": 1315785478, "path": [[-2983.0845615563817, -2054.147694321884], [-3042.884561551773, -2160.1476943224898], [-2946.334561556796, -2222.047694322882]], "source": 1315785355, "length": 49.120780723224456}, {"destination": 1722215093, "path": [[484.0654384494769, -4393.747694322769], [425.1154384462552, -4509.247694322483], [361.06543844738326, -4643.147694322281], [302.6654384470362, -4756.947694323443], [154.96543844761845, -4998.297694323029]], "source": 1722215053, "length": 148.41276287326914}, {"destination": 1888323015, "path": [[484.0654384494769, -4393.747694322769], [435.61543844816697, -4377.197694322987]], "source": 1722215053, "length": 9.920639092211243}, {"destination": 479293036, "path": [[-4958.534561552597, -1914.1976943224392], [-4998.2845615517135, -1992.9476943225666]], "source": 1315785358, "length": 19.075172042003487}, {"destination": 1315785494, "path": [[-4958.534561552597, -1914.1976943224392], [-5156.334561554842, -1809.1976943228615]], "source": 1315785358, "length": 44.27320770863592}, {"destination": 1315785573, "path": [[-981.2845615542187, -2760.8976943227503], [-1074.1345615556952, -2731.197694322063], [-1240.434561552206, -2692.2476943234133]], "source": 1315785360, "length": 51.640070211719575}, {"destination": 479280077, "path": [[-981.2845615542187, -2760.8976943227503], [-1099.1845615535567, -3113.547694322705]], "source": 1315785360, "length": 81.5676039351927}, {"destination": 1315678739, "path": [[-4955.1345615554965, -3877.897694323451], [-5417.634561553086, -3666.9476943220757]], "source": 1315678865, "length": 99.67732116806918}, {"destination": 1315785505, "path": [[-3976.9345615567886, -4465.097694323461], [-3957.784561556821, -4381.097694322378]], "source": 1315678866, "length": 19.032127322820855}, {"destination": 1315678682, "path": [[-3976.9345615567886, -4465.097694323461], [-4329.684561554359, -4364.297694323227]], "source": 1315678866, "length": 70.72339248247249}, {"destination": 1315678742, "path": [[-3976.9345615567886, -4465.097694323461], [-4060.384561554997, -4723.597694322734]], "source": 1315678866, "length": 59.63774023856796}, {"destination": 1315678806, "path": [[-3976.9345615567886, -4465.097694323461], [-3777.3345615548237, -4520.647694322477], [-3725.184561552908, -4343.847694322278]], "source": 1315678866, "length": 80.46443982925464}, {"destination": 1315785257, "path": [[-3970.7845615524207, -1579.8476943231776], [-4080.784561551809, -1522.5476943232507], [-4131.334561556343, -1581.4976943229199]], "source": 1315785363, "length": 40.7508758639464}, {"destination": 4273347031, "path": [[909.815438447481, -944.5976943229795], [897.2654384464818, -990.4976943229116]], "source": 4273351022, "length": 10.482952506875394}, {"destination": 4273347087, "path": [[909.815438447481, -944.5976943229795], [916.0154384488806, -922.0476943223588], [950.6154384482102, -919.1476943222199], [955.1654384480912, -895.7976943229085], [892.1654384437261, -885.1476943227965], [881.7654384429829, -918.8976943228511]], "source": 4273351022, "length": 37.000272022134816}, {"destination": 4273347087, "path": [[909.815438447481, -944.5976943229795], [876.5654384461641, -937.5976943228892], [881.7654384429829, -918.8976943228511]], "source": 4273351022, "length": 10.784363430123179}, {"destination": 1317671049, "path": [[1607.1154384462716, -614.9976943223834], [1614.3654384492834, -567.8976943226388]], "source": 475977497, "length": 10.564739745386188}, {"destination": 385113786, "path": [[1607.1154384462716, -614.9976943223834], [1677.5654384488803, -621.547694322544], [1757.9654384434207, -616.0976943228036]], "source": 475977497, "length": 28.813439059637535}, {"destination": 1316623507, "path": [[1607.1154384462716, -614.9976943223834], [1579.2654384441107, -607.4976943217791], [1543.4654384449686, -596.0476943229764]], "source": 475977497, "length": 12.822127762388854}, {"destination": 1315785208, "path": [[-3763.584561554012, -1536.9476943227767], [-3528.234561557042, -1657.8476943234223]], "source": 1315785370, "length": 52.21069008681489}, {"destination": 385113975, "path": [[-3763.584561554012, -1536.9476943227767], [-3599.38456155362, -1277.7476943224287]], "source": 1315785370, "length": 65.55764182713403}, {"destination": 1315785569, "path": [[-2860.484561551857, -2868.7976943224667], [-2918.434561550498, -2849.1976943225695]], "source": 1315785371, "length": 11.85058886547703}, {"destination": 1315785472, "path": [[758.3654384433203, -3211.3976943222156], [996.5154384445896, -3273.647694323145]], "source": 1315785372, "length": 47.3549887624052}, {"destination": 1315785484, "path": [[758.3654384433203, -3211.3976943222156], [727.7154384439655, -3272.94769432207]], "source": 1315785372, "length": 14.877324260773193}, {"destination": 1315785357, "path": [[758.3654384433203, -3211.3976943222156], [780.0654384482186, -3150.647694322828]], "source": 1315785372, "length": 14.126570933791818}, {"destination": 1315785375, "path": [[758.3654384433203, -3211.3976943222156], [519.6654384462818, -3135.6476943233956]], "source": 1315785372, "length": 48.41613961063182}, {"destination": 1315785346, "path": [[-3638.1845615522934, -2215.1976943227683], [-3415.5845615515545, -2320.6976943228597]], "source": 1315785373, "length": 48.39752088220496}, {"destination": 1315785317, "path": [[-3638.1845615522934, -2215.1976943227683], [-3686.8345615559406, -2286.947694322805]], "source": 1315785373, "length": 18.44436886976438}, {"destination": 1315785518, "path": [[-3638.1845615522934, -2215.1976943227683], [-4013.734561553406, -2020.2476943218528]], "source": 1315785373, "length": 83.54555357996827}, {"destination": 1469016778, "path": [[-6540.434561550512, -1559.8476943221585], [-6438.434561552242, -1627.2476943228753]], "source": 1469016734, "length": 24.513387462771163}, {"destination": 1469016653, "path": [[-6540.434561550512, -1559.8476943221585], [-6609.134561550434, -1636.197694322661]], "source": 1469016734, "length": 21.423669018666292}, {"destination": 1469016717, "path": [[-6540.434561550512, -1559.8476943221585], [-6604.7845615528895, -1509.3976943223452]], "source": 1469016734, "length": 16.6017615835057}, {"destination": 1315785514, "path": [[519.6654384462818, -3135.6476943233956], [498.46543844722646, -3201.4976943219863]], "source": 1315785375, "length": 15.189075774196535}, {"destination": 1315785372, "path": [[519.6654384462818, -3135.6476943233956], [758.3654384433203, -3211.3976943222156]], "source": 1315785375, "length": 48.41613961063182}, {"destination": 1315785542, "path": [[519.6654384462818, -3135.6476943233956], [546.4154384497988, -3074.0976943217647]], "source": 1315785375, "length": 14.602785350593965}, {"destination": 1315785271, "path": [[-3847.434561556895, -1836.747694323293], [-3510.834561552656, -2009.7976943223016]], "source": 1315785376, "length": 74.68746082652379}, {"destination": 1315785396, "path": [[-3506.7845615515125, -2453.6976943227983], [-3615.534561554057, -2408.147694323404]], "source": 1315785377, "length": 23.027664901209494}, {"destination": 1469016579, "path": [[-5998.684561554057, -1095.8976943218345], [-6066.884561555242, -1051.3476943234677]], "source": 1469016738, "length": 16.320336846910763}, {"destination": 1469016670, "path": [[-5998.684561554057, -1095.8976943218345], [-5853.784561551834, -1190.5976943218377]], "source": 1469016738, "length": 34.68159084480748}, {"destination": 1469016670, "path": [[-5998.684561554057, -1095.8976943218345], [-5950.3345615539165, -1000.2476943231642], [-5794.78456155158, -1087.3976943219786], [-5853.784561551834, -1190.5976943218377]], "source": 1469016738, "length": 84.08429377567018}, {"destination": 1890502811, "path": [[-7219.184561556347, -3317.097694322868], [-6963.034561550785, -2958.8476943231967], [-6901.534561556844, -2876.1476943230946]], "source": 1890732708, "length": 115.17630453822443}, {"destination": 1315785609, "path": [[-2946.334561556796, -2639.4976943233673], [-2829.5845615531334, -2690.2976943219414]], "source": 1315785381, "length": 24.910377189952964}, {"destination": 1315785446, "path": [[-4123.684561555763, 2034.9023056773774], [-4145.684561557062, 1974.552305677335]], "source": 1315785383, "length": 14.058459856019635}, {"destination": 1315785297, "path": [[-4284.484561551949, -1617.547694323207], [-4215.034561553921, -1537.5976943232672]], "source": 1315785384, "length": 22.148662145266062}, {"destination": 1315785511, "path": [[-4284.484561551949, -1617.547694323207], [-4078.0845615557837, -1708.2976943232352]], "source": 1315785384, "length": 44.13466451928423}, {"destination": 1315785258, "path": [[-5344.084561556883, -2189.947694322569], [-5212.3345615555645, -2265.047694322675]], "source": 1315785385, "length": 30.11025060833165}, {"destination": 1315785357, "path": [[1007.2154384488385, -3221.4476943224213], [780.0654384482186, -3150.647694322828]], "source": 1315785386, "length": 45.97473133441402}, {"destination": 1315785217, "path": [[-2729.084561551076, -504.1976943225279], [-2430.384561556309, -576.8476943224243]], "source": 1315785387, "length": 59.05655405965328}, {"destination": 1315785650, "path": [[-701.334561554745, -2928.4476943232107], [-719.6845615524694, -2959.047694321981]], "source": 1315785388, "length": 7.647460076008101}, {"destination": 1315785298, "path": [[-1402.0845615547728, -3884.847694322957], [-1197.5345615553579, -3926.0976943218393]], "source": 1315785391, "length": 39.96341941548033}, {"destination": 1315785419, "path": [[-1402.0845615547728, -3884.847694322957], [-1424.384561552472, -3965.4976943221955]], "source": 1315785391, "length": 18.43019273639446}, {"destination": 1315785646, "path": [[-4737.934561553913, -222.04769432221383], [-4924.234561556773, -165.24769432280095]], "source": 1315785392, "length": 37.61312585740499}, {"destination": 1315678738, "path": [[-2216.684561552995, -4538.547694322048], [-2259.6345615539803, -4703.497694322323]], "source": 1315785393, "length": 37.58148313187491}, {"destination": 1315785261, "path": [[-4362.384561552801, -1384.8976943222624], [-4171.234561553661, -1487.0976943228698]], "source": 1315785394, "length": 42.87078512317476}, {"destination": 3569237100, "path": [[-7566.534561554761, -689.0976943232374], [-7498.13456155124, -583.7976943219303]], "source": 3569237107, "length": 26.787609744652976}, {"destination": 3569237100, "path": [[-7566.534561554761, -689.0976943232374], [-7489.984561551921, -667.4976943230604], [-7440.684561551336, -682.0476943225628], [-7410.584561554856, -653.9976943233938], [-7408.884561556306, -613.2976943220569], [-7448.884561554792, -584.9976943217428], [-7498.13456155124, -583.7976943219303]], "source": 3569237107, "length": 62.013640848077195}, {"destination": 3569237116, "path": [[-7566.534561554761, -689.0976943232374], [-7666.83456155448, -844.3976943226517]], "source": 3569237107, "length": 39.4540965050088}, {"destination": 3569237116, "path": [[-7566.534561554761, -689.0976943232374], [-7566.534561554761, -745.2476943221598], [-7530.9845615549875, -836.4476943221177], [-7550.134561554955, -866.897694322688], [-7623.984561554664, -862.1976943228304], [-7666.83456155448, -844.3976943226517]], "source": 3569237107, "length": 64.696958898412}, {"destination": 1315785377, "path": [[-3615.534561554057, -2408.147694323404], [-3506.7845615515125, -2453.6976943227983]], "source": 1315785396, "length": 23.027664901209494}, {"destination": 1315785426, "path": [[-3615.534561554057, -2408.147694323404], [-3735.0345615507763, -2358.0476943223516]], "source": 1315785396, "length": 25.30879622287173}, {"destination": 1315785251, "path": [[-3615.534561554057, -2408.147694323404], [-3675.7345615541226, -2513.3476943217656]], "source": 1315785396, "length": 26.04624126491876}, {"destination": 1888422935, "path": [[154.96543844761845, -4998.297694323029], [109.86543844637708, -5064.4476943233485], [-102.43456155478725, -5394.247694322729], [-135.934561555473, -5452.0976943219775], [-179.8845615539335, -5533.747694322245], [-198.03456155642607, -5579.847694322737]], "source": 1722215093, "length": 145.91071632723936}, {"destination": 1315785229, "path": [[-2881.934561550281, -4180.697694321722], [-2934.5845615509347, -4372.847694321891]], "source": 1315785398, "length": 43.889441883879186}, {"destination": 1315785642, "path": [[-4853.284561555427, -1783.7976943226863], [-5067.83456155091, -1671.5976943224575]], "source": 1315785399, "length": 47.82513142936912}, {"destination": 1315785563, "path": [[-4853.284561555427, -1783.7976943226863], [-4913.6845615507245, -1859.4476943221139]], "source": 1315785399, "length": 20.3706750758634}, {"destination": 1315785602, "path": [[-4003.1845615544626, -4278.54769432301], [-3961.4845615503214, -4155.547694322692], [-4197.634561556641, -4091.2476943226748]], "source": 1315785400, "length": 75.60680962825414}, {"destination": 1315678660, "path": [[-4003.1845615544626, -4278.54769432301], [-3938.0845615539783, -4297.797694322369]], "source": 1315785400, "length": 13.098337585849045}, {"destination": 1315785302, "path": [[-4003.1845615544626, -4278.54769432301], [-4253.534561556194, -4199.1476943223915]], "source": 1315785400, "length": 50.77448320287283}, {"destination": 1315785601, "path": [[-4535.684561552955, -1393.5476943220947], [-4692.334561553935, -1311.4976943224833], [-4863.784561550233, -1215.4976943232755]], "source": 1315785401, "length": 73.90591042105903}, {"destination": 479288842, "path": [[-4535.684561552955, -1393.5476943220947], [-4658.8845615502805, -1549.6976943225604]], "source": 1315785401, "length": 41.89052161841873}, {"destination": 1315785603, "path": [[892.2154384478631, -3469.697694322704], [781.9154384449689, -3437.597694322392], [665.4154384477806, -3410.147694323129]], "source": 1315785402, "length": 45.13486372537423}, {"destination": 1469016626, "path": [[-8316.034561552498, -672.2476943217259], [-8380.684561551278, -796.49769432244]], "source": 1469016764, "length": 30.243752708884756}, {"destination": 1469016582, "path": [[-8316.034561552498, -672.2476943217259], [-8396.534561555312, -608.0476943228774]], "source": 1469016764, "length": 20.933208954526226}, {"destination": 1469016710, "path": [[-8316.034561552498, -672.2476943217259], [-8273.134561555651, -690.597694323003], [-8254.384561553252, -653.8976943222252]], "source": 1469016764, "length": 18.028442276668066}, {"destination": 1315785449, "path": [[-5065.484561555422, -2073.547694322997], [-5218.034561551121, -1994.9976943234306]], "source": 1315785405, "length": 33.86295095749253}, {"destination": 1315785607, "path": [[-5065.484561555422, -2073.547694322997], [-5114.984561551239, -2134.1976943229924]], "source": 1315785405, "length": 16.447683474783254}, {"destination": 845390852, "path": [[-1711.9345615554948, -2792.1976943225955], [-1595.734561554707, -2371.847694321971]], "source": 1315785406, "length": 96.05777002934195}, {"destination": 1315785430, "path": [[-1711.9345615554948, -2792.1976943225955], [-1615.1845615510751, -2830.197694322578]], "source": 1315785406, "length": 20.245968617635523}, {"destination": 1315785647, "path": [[-4402.634561550656, 1417.9023056772876], [-4180.034561557022, 1367.4523056774747], [-4098.734561551964, 1348.7523056774364]], "source": 1315785407, "length": 59.806173528032744}, {"destination": 1404618604, "path": [[1815.1154384469237, 9575.402305676662], [2461.7654384471166, 9061.80230567699]], "source": 1404618528, "length": 167.85341495337306}, {"destination": 1404618543, "path": [[1815.1154384469237, 9575.402305676662], [1787.7654384435004, 9547.502305677468], [1745.3154384483582, 9504.602305677068]], "source": 1404618528, "length": 20.59629196064663}, {"destination": 1469016667, "path": [[-6834.684561553672, -1352.3976943226046], [-6553.834561550786, -1009.3976943217342], [-6422.434561550006, -1089.6976943222114]], "source": 1469016770, "length": 123.83188137473286}, {"destination": 1469016668, "path": [[-6834.684561553672, -1352.3976943226046], [-6936.134561556173, -1305.1476943228836]], "source": 1469016770, "length": 21.968477449306334}, {"destination": 1469016668, "path": [[-6834.684561553672, -1352.3976943226046], [-6932.034561550892, -1413.0976943231844], [-6936.134561556173, -1305.1476943228836]], "source": 1469016770, "length": 46.93151712009269}, {"destination": 1469016799, "path": [[-6834.684561553672, -1352.3976943226046], [-6699.584561552285, -1429.4476943224054]], "source": 1469016770, "length": 30.881607390037367}, {"destination": 1315785509, "path": [[-4043.23456154998, 1842.252305676695], [-4177.484561552092, 1887.3023056773518]], "source": 1315785411, "length": 27.426976127555847}, {"destination": 1320103959, "path": [[3027.765438446295, 4111.502305677916], [3005.5154384456273, 4161.302305677239], [2972.0154384449415, 4253.25230567708]], "source": 1320104083, "length": 33.27508129032165}, {"destination": 1320103997, "path": [[3027.765438446295, 4111.502305677916], [3071.0154384436805, 4014.702305678242]], "source": 1320104083, "length": 23.045270600843818}, {"destination": 1320103919, "path": [[3027.765438446295, 4111.502305677916], [2520.0154384492635, 3952.5523056767042], [2187.5654384473364, 3936.502305677436]], "source": 1320104083, "length": 166.16263376527885}, {"destination": 1769171993, "path": [[6186.615438444676, -8111.297694322062], [6128.8654384483725, -8065.6976943220825]], "source": 1769172086, "length": 14.946829312627056}, {"destination": 1769172100, "path": [[6186.615438444676, -8111.297694322062], [6183.965438445683, -8142.247694323146]], "source": 1769172086, "length": 6.902269473810276}, {"destination": 1777868868, "path": [[6186.615438444676, -8111.297694322062], [6199.665438444413, -8070.497694323109], [6646.615438448578, -7611.447694323204], [6808.915438448083, -7440.597694323259], [6862.5654384462105, -7423.397694322986], [6921.565438446464, -7442.897694321715], [7538.465438443609, -7923.347694323013]], "source": 1769172086, "length": 372.7753857229991}, {"destination": 848690593, "path": [[-3039.5845615558414, -1063.3476943233688], [-3146.5845615556987, -1355.44769432272], [-3202.3845615540836, -1428.8476943224991], [-3272.0845615514804, -1506.9476943221362]], "source": 1315785414, "length": 109.3901186787393}, {"destination": 1315785186, "path": [[-3039.5845615558414, -1063.3476943233688], [-2771.534561553324, -1122.2476943224535], [-2611.034561553538, -1167.0476943219655], [-2359.834561552532, -1233.4476943234308]], "source": 1315785414, "length": 134.7370660360462}, {"destination": 481392303, "path": [[-3039.5845615558414, -1063.3476943233688], [-2895.8345615563985, -670.7476943219604], [-2768.73456155613, -323.7476943223072]], "source": 1315785414, "length": 172.3558763684032}, {"destination": 1328999530, "path": [[3255.515438446821, 6874.752305677134], [3230.91543844356, 6998.552305677918]], "source": 1328999521, "length": 27.926835120197246}, {"destination": 1328999437, "path": [[3255.515438446821, 6874.752305677134], [3166.6154384453193, 6874.902305677111], [2899.9654384449514, 6858.252305677936]], "source": 1328999521, "length": 67.76045467782286}, {"destination": 1328999487, "path": [[3255.515438446821, 6874.752305677134], [3285.265438449869, 6749.502305677169]], "source": 1328999521, "length": 28.423452744680308}, {"destination": 1315785354, "path": [[-2243.184561550038, -694.1976943224404], [-2253.9345615513184, -742.597694323166], [-2262.1845615518055, -782.3976943228672]], "source": 1315785418, "length": 19.94564344505617}, {"destination": 1315785635, "path": [[-2243.184561550038, -694.1976943224404], [-2218.3345615545136, -628.447694323242]], "source": 1315785418, "length": 15.367228623843312}, {"destination": 1315785508, "path": [[-2243.184561550038, -694.1976943224404], [-2446.9345615543148, -643.647694323235]], "source": 1315785418, "length": 40.3447663173467}, {"destination": 1315785578, "path": [[-1424.384561552472, -3965.4976943221955], [-1446.0345615532333, -4043.997694322954]], "source": 1315785419, "length": 17.936265523441087}, {"destination": 1315785412, "path": [[-1424.384561552472, -3965.4976943221955], [-1192.1845615532334, -4013.2476943224306]], "source": 1315785419, "length": 45.41318532085693}, {"destination": 1315785454, "path": [[-427.7345615548711, -3254.14769432264], [-708.8345615500202, -3134.3476943224146]], "source": 1315785420, "length": 59.725177348889}, {"destination": 210686289, "path": [[-1526.0845615543417, -5331.9976943218], [-1809.2845615527153, -5278.097694322525]], "source": 1315785421, "length": 55.16851443778824}, {"destination": 1315785179, "path": [[-1526.0845615543417, -5331.9976943218], [-1691.03456155284, -5818.147694322207], [-1732.534561554644, -5942.397694322921]], "source": 1315785421, "length": 141.30948145876707}, {"destination": 1315785459, "path": [[-2712.9845615547765, -426.1976943222834], [-2412.984561551923, -504.3976943230888]], "source": 1315785422, "length": 59.64257603326488}, {"destination": 1315785322, "path": [[-2609.8345615537255, -4420.19769432278], [-2720.1845615536513, -4399.597694321855]], "source": 1315785424, "length": 21.477659729148723}, {"destination": 1315785540, "path": [[-2609.8345615537255, -4420.19769432278], [-2643.2345615532427, -4538.447694322656], [-2648.584561555367, -4561.397694322622]], "source": 1315785424, "length": 32.25792573731026}, {"destination": 1315785374, "path": [[-2609.8345615537255, -4420.19769432278], [-2530.8345615542294, -4140.54769432326]], "source": 1315785424, "length": 63.979931184858046}, {"destination": 1315785576, "path": [[-3735.0345615507763, -2358.0476943223516], [-3777.93456155473, -2421.347694323117]], "source": 1315785426, "length": 16.270282404830287}, {"destination": 1315785396, "path": [[-3735.0345615507763, -2358.0476943223516], [-3615.534561554057, -2408.147694323404]], "source": 1315785426, "length": 25.30879622287173}, {"destination": 1315785525, "path": [[-3735.0345615507763, -2358.0476943223516], [-4104.934561553364, -2164.697694322371]], "source": 1315785426, "length": 82.44266385793878}, {"destination": 1315785317, "path": [[-3735.0345615507763, -2358.0476943223516], [-3686.8345615559406, -2286.947694322805]], "source": 1315785426, "length": 18.276488486568237}, {"destination": 601145300, "path": [[-7320.884561551111, -3471.397694323031], [-7288.234561556806, -3417.94769432191]], "source": 1890732755, "length": 13.41044888893747}, {"destination": 1469016730, "path": [[-6248.084561555344, -883.2476943219092], [-6280.734561556756, -921.9476943229665]], "source": 1469016788, "length": 10.613254817528269}, {"destination": 1315785328, "path": [[-2793.434561553454, -4671.4476943225945], [-3176.834561550379, -4572.597694322056]], "source": 1315785429, "length": 76.14685729049782}, {"destination": 1315785651, "path": [[-2793.434561553454, -4671.4476943225945], [-2619.084561551688, -4715.047694322294], [-2547.234561554035, -4730.1976943234795]], "source": 1315785429, "length": 48.61380504022487}, {"destination": 1315785588, "path": [[-2793.434561553454, -4671.4476943225945], [-2770.3345615535113, -4596.297694321905]], "source": 1315785429, "length": 17.280335004967096}, {"destination": 1315785272, "path": [[-1615.1845615510751, -2830.197694322578], [-1433.5845615534026, -2889.4476943222003], [-1296.4845615499598, -2939.3476943226915]], "source": 1315785430, "length": 65.29568494941563}, {"destination": 1315785406, "path": [[-1615.1845615510751, -2830.197694322578], [-1711.9345615554948, -2792.1976943225955]], "source": 1315785430, "length": 20.245968617635523}, {"destination": 1315785575, "path": [[-1615.1845615510751, -2830.197694322578], [-1589.1345615557384, -2754.1476943220287]], "source": 1315785430, "length": 17.623248612043444}, {"destination": 1315785193, "path": [[-3471.934561552814, -4283.897694323357], [-3455.684561551209, -4199.697694321713]], "source": 1315785431, "length": 18.978540303102882}, {"destination": 1315785436, "path": [[-3471.934561552814, -4283.897694323357], [-3269.5345615536553, -4327.547694321865]], "source": 1315785431, "length": 39.692434896668466}, {"destination": 1315785437, "path": [[-3471.934561552814, -4283.897694323357], [-3734.7845615514075, -4235.697694323193]], "source": 1315785431, "length": 51.11865316418885}, {"destination": 1315785466, "path": [[-3105.7845615549695, -2567.5476943227695], [-3186.384561551847, -2534.6476943219895]], "source": 1315785432, "length": 16.98415840867982}, {"destination": 1315785609, "path": [[-2922.184561555241, -2568.397694322044], [-2793.434561553454, -2625.697694321971], [-2829.5845615531334, -2690.2976943219414]], "source": 1315785433, "length": 43.526882632566256}, {"destination": 1993253330, "path": [[4111.865438446216, -7216.947694322684], [4143.215438446646, -7249.6976943217105]], "source": 1993253327, "length": 9.411544612767722}, {"destination": 1993253323, "path": [[4111.865438446216, -7216.947694322684], [4071.1654384466556, -7174.547694322797]], "source": 1993253327, "length": 12.198371846731886}, {"destination": 1785697742, "path": [[4111.865438446216, -7216.947694322684], [4388.265438443284, -7063.597694322965]], "source": 1993253327, "length": 62.650840037712165}, {"destination": 1315785566, "path": [[-3269.5345615536553, -4327.547694321865], [-3119.78456155515, -4363.947694322689]], "source": 1315785436, "length": 29.603723563024555}, {"destination": 1315785582, "path": [[-3269.5345615536553, -4327.547694321865], [-3249.434561553244, -4265.54769432208], [-3232.034561555963, -4192.897694322184]], "source": 1315785436, "length": 30.799883977653003}, {"destination": 1315785431, "path": [[-3269.5345615536553, -4327.547694321865], [-3471.934561552814, -4283.897694323357]], "source": 1315785436, "length": 39.692434896668466}, {"destination": 1315785431, "path": [[-3734.7845615514075, -4235.697694323193], [-3471.934561552814, -4283.897694323357]], "source": 1315785437, "length": 51.11865316418885}, {"destination": 1315785625, "path": [[-1249.5345615519682, -4408.347694322856], [-1109.0345615514252, -4454.747694323302], [-994.5845615533244, -4488.497694323357]], "source": 1315785438, "length": 51.66115944833038}, {"destination": 1315785183, "path": [[-1249.5345615519682, -4408.347694322856], [-1272.384561552542, -4406.297694321992], [-1302.784561552528, -4402.5476943225785], [-1428.2345615512781, -4372.1476943225925]], "source": 1315785438, "length": 35.00330162355904}, {"destination": 1315785175, "path": [[-1249.5345615519682, -4408.347694322856], [-1266.584561555817, -4467.347694323109], [-1288.484561555947, -4530.647694322099]], "source": 1315785438, "length": 28.195897419362815}, {"destination": 1489292002, "path": [[-6699.584561552285, -1429.4476943224054], [-6656.034561551394, -1372.0976943218943]], "source": 1469016799, "length": 15.206866444146117}, {"destination": 1469016770, "path": [[-6699.584561552285, -1429.4476943224054], [-6834.684561553672, -1352.3976943226046]], "source": 1469016799, "length": 30.881607390037367}, {"destination": 1469016717, "path": [[-6699.584561552285, -1429.4476943224054], [-6604.7845615528895, -1509.3976943223452]], "source": 1469016799, "length": 25.32054515298282}, {"destination": 1469016754, "path": [[-6699.584561552285, -1429.4476943224054], [-6798.534561553993, -1545.6976943220013]], "source": 1469016799, "length": 31.975629042812013}, {"destination": 1469016712, "path": [[-7897.634561551569, -337.3976943219503], [-7999.534561555776, -153.8976943233905], [-7994.184561553652, -96.54769432287935]], "source": 1469016800, "length": 57.97071790940746}, {"destination": 1469016689, "path": [[-7897.634561551569, -337.3976943219503], [-7860.084561556846, -355.7476943232274], [-7860.084561556846, -390.14769432199614], [-7886.884561550289, -417.64769432184323]], "source": 1469016800, "length": 23.835208987082623}, {"destination": 1469016689, "path": [[-7897.634561551569, -337.3976943219503], [-7927.134561555249, -369.49769432226276], [-7929.834561551274, -403.89769432280787], [-7886.884561550289, -417.64769432184323]], "source": 1469016800, "length": 25.46934459567447}, {"destination": 1315785579, "path": [[-4811.084561552548, 579.7023056768325], [-4827.434561555321, 512.9523056766061]], "source": 1315785441, "length": 15.167105208007928}, {"destination": 1315785477, "path": [[-4811.084561552548, 579.7023056768325], [-4745.9845615520635, 562.3523056765833], [-3973.4345615514144, 339.502305678252]], "source": 1315785441, "length": 168.0197244117828}, {"destination": 1469016799, "path": [[-6656.034561551394, -1372.0976943218943], [-6699.584561552285, -1429.4476943224054]], "source": 1489292002, "length": 15.206866444146117}, {"destination": 1315785507, "path": [[-4829.034561552703, -1754.6976943219051], [-4729.884561555764, -1804.6476943229804], [-4523.834561553031, -1914.1976943224392]], "source": 1315785443, "length": 68.02359319707006}, {"destination": 1315785399, "path": [[-4829.034561552703, -1754.6976943219051], [-4853.284561555427, -1783.7976943226863]], "source": 1315785443, "length": 7.946838553705132}, {"destination": 1315785178, "path": [[-3330.3345615536273, -1788.1476943220064], [-3302.9345615531724, -1747.2976943224694]], "source": 1315785444, "length": 10.472630404586996}, {"destination": 1315785190, "path": [[-3330.3345615536273, -1788.1476943220064], [-3350.5345615552073, -1818.2476943220395]], "source": 1315785444, "length": 7.717847754767079}, {"destination": 1315785470, "path": [[-3330.3345615536273, -1788.1476943220064], [-3230.6345615538135, -1832.1476943228276]], "source": 1315785444, "length": 21.335563514076537}, {"destination": 1315785314, "path": [[-3935.9345615537222, 1427.0523056776342], [-4046.8845615535542, 1477.2023056774942]], "source": 1315785445, "length": 23.866397546688656}, {"destination": 1315785184, "path": [[-4145.684561557062, 1974.552305677335], [-4168.634561551698, 1911.6023056771069]], "source": 1315785446, "length": 14.663760151329017}, {"destination": 1315785255, "path": [[-4145.684561557062, 1974.552305677335], [-4370.434561550951, 2046.3523056779563]], "source": 1315785446, "length": 45.62810593718322}, {"destination": 1315785383, "path": [[-4145.684561557062, 1974.552305677335], [-4123.684561555763, 2034.9023056773774]], "source": 1315785446, "length": 14.058459856019635}, {"destination": 622622496, "path": [[4419.065438447944, 8068.65230567766], [4327.965438449155, 8114.102305677662], [4270.965438443853, 8136.5523056771135], [4212.96543844818, 8150.852305677247], [4157.165438449794, 8164.302305678106], [4103.465438447529, 8181.3023056778175], [4060.9654384482496, 8195.852305677321], [4016.415438449883, 8214.002305678037], [3916.5654384447635, 8261.202305677174], [3820.8654384490615, 8313.752305676659]], "source": 4402078161, "length": 126.81787323200544}, {"destination": 482734340, "path": [[4419.065438447944, 8068.65230567766], [4357.5154384498655, 8118.202305677613], [4302.215438443113, 8155.80230567825]], "source": 4402078161, "length": 29.51444665035421}, {"destination": 1315785248, "path": [[-4352.184561554395, 1223.552305678055], [-4233.6345615510145, 1197.70230567795]], "source": 1315785448, "length": 23.266735717200444}, {"destination": 1315785593, "path": [[-4352.184561554395, 1223.552305678055], [-4370.334561556888, 1153.8523056771055]], "source": 1315785448, "length": 15.880345506012405}, {"destination": 1315785242, "path": [[-4352.184561554395, 1223.552305678055], [-4335.584561552252, 1287.1523056769975]], "source": 1315785448, "length": 14.492197664586074}, {"destination": 1315785595, "path": [[-4352.184561554395, 1223.552305678055], [-4477.7345615543145, 1236.702305677184]], "source": 1315785448, "length": 24.055034947572647}, {"destination": 1469016579, "path": [[-6025.434561550469, -997.9476943229315], [-6066.884561555242, -1051.3476943234677]], "source": 1469016809, "length": 14.253283415290964}, {"destination": 1315785344, "path": [[-5006.134561554632, -1600.497694322911], [-4796.534561556598, -1714.4476943222742]], "source": 1315785451, "length": 47.232261817321145}, {"destination": 1315785615, "path": [[-3580.58456155419, -1732.3476943218452], [-3821.134561555084, -1620.4976943221538]], "source": 1315785452, "length": 52.06981274435017}, {"destination": 1730911786, "path": [[-8487.484561555902, -1765.0476943220638], [-8538.934561556744, -1745.547694323335]], "source": 1890818645, "length": 10.701206799450462}, {"destination": 1890818667, "path": [[-8487.484561555902, -1765.0476943220638], [-8447.28456155508, -1722.597694323369], [-8436.534561553799, -1718.0476943217116], [-8412.384561552244, -1712.297694322018], [-8385.584561551696, -1713.4476943230225], [-8361.43456155014, -1722.597694323369]], "source": 1890818645, "length": 29.318880895767386}, {"destination": 1890862842, "path": [[-8487.484561555902, -1765.0476943220638], [-8438.534561555854, -1793.2976943217936], [-8430.834561551137, -1797.8976943222592]], "source": 1890818645, "length": 13.016302724459461}, {"destination": 479280217, "path": [[-708.8345615500202, -3134.3476943224146], [-739.8345615570179, -3214.5976943223077]], "source": 1315785454, "length": 18.795057803843694}, {"destination": 1315785420, "path": [[-708.8345615500202, -3134.3476943224146], [-427.7345615548711, -3254.14769432264]], "source": 1315785454, "length": 59.725177348889}, {"destination": 4810815126, "path": [[-708.8345615500202, -3134.3476943224146], [-660.8845615545533, -3012.3476943231253]], "source": 1315785454, "length": 28.62283597223909}, {"destination": 1316236763, "path": [[-2079.684561550721, 2137.002305676816], [-2010.2845615568299, 2246.002305676953], [-1969.1345615555633, 2318.5023056768728]], "source": 1316236413, "length": 45.52294276437948}, {"destination": 639308684, "path": [[-2079.684561550721, 2137.002305676816], [-2023.3845615535984, 2102.9023056780006], [-1912.484561550798, 2029.9523056781509]], "source": 1316236413, "length": 39.72954341864321}, {"destination": 1315785228, "path": [[24.415438446112603, -2817.4476943227946], [-92.38456155458152, -2793.347694321824]], "source": 1315785457, "length": 22.84810079322786}, {"destination": 476078083, "path": [[24.415438446112603, -2817.4476943227946], [39.11543844736798, -2772.847694322067], [38.86543844799917, -2752.5976943234555], [35.46543844379357, -2734.447694322739]], "source": 1315785457, "length": 18.896118624671075}, {"destination": 602334140, "path": [[24.415438446112603, -2817.4476943227946], [-27.38456155526592, -2971.6976943223726], [-190.68456155224567, -3421.547694323124]], "source": 1315785457, "length": 140.44040444794905}, {"destination": 1315785578, "path": [[-1224.3345615559065, -4091.2476943226748], [-1446.0345615532333, -4043.997694322954]], "source": 1315785458, "length": 43.44714629584503}, {"destination": 1315785217, "path": [[-2412.984561551923, -504.3976943230888], [-2430.384561556309, -576.8476943224243]], "source": 1315785459, "length": 16.448231429524125}, {"destination": 1315785235, "path": [[-2412.984561551923, -504.3976943230888], [-2197.18456155249, -560.6476943231797]], "source": 1315785459, "length": 42.90283325886327}, {"destination": 1315785422, "path": [[-2412.984561551923, -504.3976943230888], [-2712.9845615547765, -426.1976943222834]], "source": 1315785459, "length": 59.64257603326488}, {"destination": 1315785550, "path": [[-2412.984561551923, -504.3976943230888], [-2390.184561555486, -423.24769432333653]], "source": 1315785459, "length": 18.560544663388768}, {"destination": 1315785492, "path": [[-3480.884561554376, -1847.5976943221895], [-3579.18456155204, -1804.6476943229804]], "source": 1315785460, "length": 20.992111062731926}, {"destination": 1315785340, "path": [[-3480.884561554376, -1847.5976943221895], [-3442.0845615557027, -1774.3476943223868]], "source": 1315785460, "length": 17.883174594455294}, {"destination": 1315785262, "path": [[-3480.884561554376, -1847.5976943221895], [-3458.484561555508, -1857.3976943230264], [-3439.7345615531094, -1891.797694321795]], "source": 1315785460, "length": 13.224776800774363}, {"destination": 1315785624, "path": [[-5624.784561554463, -1783.2476943233644], [-5580.134561554928, -1709.4476943224636]], "source": 1315785461, "length": 18.478542314826434}, {"destination": 1315785537, "path": [[-5624.784561554463, -1783.2476943233644], [-5666.484561551499, -1850.1476943217908]], "source": 1315785461, "length": 16.85899317299996}, {"destination": 1315785447, "path": [[-5624.784561554463, -1783.2476943233644], [-5499.684561556251, -1850.4976943223282]], "source": 1315785461, "length": 28.0999256947467}, {"destination": 1315785239, "path": [[-4185.384561552041, 149.5023056765632], [-4258.284561551307, 172.05230567718388]], "source": 1315785462, "length": 14.742833775489059}, {"destination": 1730911786, "path": [[-8614.83456155554, -1740.4976943229399], [-8580.23456155621, -1740.3476943229634], [-8557.23456155033, -1742.0976943220978], [-8538.934561556744, -1745.547694323335]], "source": 476678903, "length": 14.53339374892009}, {"destination": 1890818619, "path": [[-8614.83456155554, -1740.4976943229399], [-8629.834561553196, -1741.4976943221916], [-8660.684561554888, -1748.3476943223054], [-8694.234561552605, -1756.3976943222315], [-8726.234561549973, -1757.6976943232125]], "source": 476678903, "length": 21.64101766174923}, {"destination": 1730911844, "path": [[-8614.83456155554, -1740.4976943229399], [-8610.934561552596, -1721.8476943217097], [-8597.834561555828, -1701.597694323098], [-8583.034561553404, -1695.6476943228438], [-8563.884561553437, -1692.6476943233126]], "source": 476678903, "length": 16.169954858152664}, {"destination": 1315785332, "path": [[-4782.284561557049, 199.50230567822302], [-4733.73456155457, 324.05230567711385]], "source": 1315785464, "length": 29.19723740741535}, {"destination": 1315785213, "path": [[-4782.284561557049, 199.50230567822302], [-4813.934561553879, 118.30230567788647]], "source": 1315785464, "length": 19.034968433575795}, {"destination": 1315785294, "path": [[-4782.284561557049, 199.50230567822302], [-4601.134561553977, 156.4023056772612]], "source": 1315785464, "length": 35.7582846230735}, {"destination": 1315785629, "path": [[-690.5845615534645, -2857.347694321888], [-789.8345615515723, -2829.8476943220408]], "source": 1315785465, "length": 19.839461134359716}, {"destination": 1315785512, "path": [[-3186.384561551847, -2534.6476943219895], [-3226.634561556807, -2601.097694322263]], "source": 1315785466, "length": 16.642427650889722}, {"destination": 1315785432, "path": [[-3186.384561551847, -2534.6476943219895], [-3105.7845615549695, -2567.5476943227695]], "source": 1315785466, "length": 16.98415840867982}, {"destination": 1315785309, "path": [[-3186.384561551847, -2534.6476943219895], [-3285.4845615517547, -2495.997694323293]], "source": 1315785466, "length": 20.71290109128979}, {"destination": 1315785295, "path": [[-3186.384561551847, -2534.6476943219895], [-3166.084561556204, -2492.797694323201]], "source": 1315785466, "length": 10.07568664025286}, {"destination": 1315785232, "path": [[-2187.184561556421, -2462.9476943225372], [-2219.08456155262, -2576.4976943225547]], "source": 1315785468, "length": 25.970871062706095}, {"destination": 1315785521, "path": [[-2187.184561556421, -2462.9476943225372], [-2111.434561555825, -2487.1476943229]], "source": 1315785468, "length": 15.377195732981683}, {"destination": 1315785220, "path": [[-2187.184561556421, -2462.9476943225372], [-2202.6845615528146, -2459.147694322539], [-2338.984561554014, -2412.297694322163], [-2364.284561551244, -2403.2476943229854], [-2460.8345615533267, -2366.5476943222075]], "source": 1315785468, "length": 56.31007601441159}, {"destination": 1315785535, "path": [[-4107.584561552358, 1225.202305677797], [-4161.384561555792, 1239.852305676692]], "source": 1315785469, "length": 10.737361048380086}, {"destination": 1315785639, "path": [[-3230.6345615538135, -1832.1476943228276], [-3272.434561552018, -1894.4476943225652]], "source": 1315785470, "length": 15.973433056830242}, {"destination": 1315785444, "path": [[-3230.6345615538135, -1832.1476943228276], [-3330.3345615536273, -1788.1476943220064]], "source": 1315785470, "length": 21.335563514076537}, {"destination": 1315785191, "path": [[-3230.6345615538135, -1832.1476943228276], [-3126.034561553581, -1878.0476943227598]], "source": 1315785470, "length": 22.357445424575538}, {"destination": 1582473388, "path": [[6681.415438443139, -6606.097694323409], [6687.665438448676, -6637.097694323302]], "source": 1765485311, "length": 6.995652786627108}, {"destination": 1315785372, "path": [[996.5154384445896, -3273.647694323145], [758.3654384433203, -3211.3976943222156]], "source": 1315785472, "length": 47.3549887624052}, {"destination": 1328999547, "path": [[2810.015438448943, 7139.75230567776], [2578.6654384489793, 7135.952305677762]], "source": 1328999552, "length": 44.010841716723945}, {"destination": 1328999436, "path": [[2810.015438448943, 7139.75230567776], [2887.665438443321, 7141.0023056781565], [2884.9654384472956, 7274.052305676903]], "source": 1328999552, "length": 44.36490892786743}, {"destination": 1328999557, "path": [[2810.015438448943, 7139.75230567776], [2820.615438444918, 7042.352305678179], [2823.615438444449, 6992.55230567708]], "source": 1328999552, "length": 32.84409182196098}, {"destination": 495771171, "path": [[9557.265438445484, -3784.7476943220217], [9607.265438447143, -3717.3476943230808]], "source": 63302402, "length": 17.75013336009455}, {"destination": 63302403, "path": [[9557.265438445484, -3784.7476943220217], [9353.115438443638, -3715.5976943221704]], "source": 63302402, "length": 41.75540480211685}, {"destination": 1315785608, "path": [[-4520.634561551162, 1112.8523056775919], [-4388.184561555874, 1085.4023056765527]], "source": 1315785475, "length": 25.917894574893936}, {"destination": 1315785608, "path": [[-4405.734561551355, 1018.1523056775887], [-4388.184561555874, 1085.4023056765527]], "source": 1315785476, "length": 15.323766854480123}, {"destination": 1315785529, "path": [[-4405.734561551355, 1018.1523056775887], [-4424.084561556185, 947.7023056767564], [-4438.6845615562725, 863.3023056781042]], "source": 1315785476, "length": 35.02517988496054}, {"destination": 1315785210, "path": [[-4405.734561551355, 1018.1523056775887], [-4531.384561552442, 1044.0023056776936]], "source": 1315785476, "length": 24.57746142008834}, {"destination": 1315785574, "path": [[-4405.734561551355, 1018.1523056775887], [-4273.884561555974, 993.5523056778806], [-4043.23456154998, 961.4523056775681]], "source": 1315785476, "length": 70.10568402704433}, {"destination": 1315785441, "path": [[-3973.4345615514144, 339.502305678252], [-4745.9845615520635, 562.3523056765833], [-4811.084561552548, 579.7023056768325]], "source": 1315785477, "length": 168.0197244117828}, {"destination": 385113971, "path": [[-3973.4345615514144, 339.502305678252], [-4002.2845615510505, 194.1023056772906]], "source": 1315785477, "length": 32.797684347050556}, {"destination": 1315785605, "path": [[-3973.4345615514144, 339.502305678252], [-3954.784561550184, 394.10230567682447], [-3922.5845615504795, 494.45230567712883]], "source": 1315785477, "length": 35.791613747578324}, {"destination": 1315785355, "path": [[-2946.334561556796, -2222.047694322882], [-3042.884561551773, -2160.1476943224898], [-2983.0845615563817, -2054.147694321884]], "source": 1315785478, "length": 49.120780723224456}, {"destination": 1320104096, "path": [[3227.4154384452913, 3266.7523056773007], [3026.9654384440514, 3241.502305677102], [3032.315438446176, 3184.152305676591]], "source": 476556039, "length": 51.32854635104062}, {"destination": 1320104092, "path": [[3227.4154384452913, 3266.7523056773007], [3223.0154384436105, 3015.652305677463]], "source": 476556039, "length": 55.84850637409062}, {"destination": 1320103877, "path": [[3227.4154384452913, 3266.7523056773007], [3224.015438448191, 3341.5023056768687]], "source": 476556039, "length": 16.636198639744507}, {"destination": 1315785272, "path": [[-1277.5345615523293, -2855.7976943233143], [-1296.4845615499598, -2939.3476943226915]], "source": 1315785480, "length": 18.92670641001876}, {"destination": 1315785547, "path": [[-1277.5345615523293, -2855.7976943233143], [-1128.7845615512992, -2897.6476943221032]], "source": 1315785480, "length": 29.778114157260255}, {"destination": 1315785300, "path": [[-1277.5345615523293, -2855.7976943233143], [-1260.5345615526176, -2780.7476943220167]], "source": 1315785480, "length": 17.000600768780785}, {"destination": 1315785575, "path": [[-1277.5345615523293, -2855.7976943233143], [-1589.1345615557384, -2754.1476943220287]], "source": 1315785480, "length": 63.4195688291434}, {"destination": 1887575216, "path": [[-79.23456155367603, -5275.197694322386], [-135.18456155026115, -5249.197694322305]], "source": 1315785483, "length": 12.108641275360434}, {"destination": 75349972, "path": [[-79.23456155367603, -5275.197694322386], [118.51543844443313, -4980.897694322195]], "source": 1315785483, "length": 75.48220623642453}, {"destination": 1315785256, "path": [[727.7154384439655, -3272.94769432207], [967.0154384480156, -3348.1476943233447]], "source": 1315785484, "length": 48.480691143620774}, {"destination": 1315785514, "path": [[727.7154384439655, -3272.94769432207], [498.46543844722646, -3201.4976943219863]], "source": 1315785484, "length": 46.399443555145105}, {"destination": 1315785603, "path": [[727.7154384439655, -3272.94769432207], [665.4154384477806, -3410.147694323129]], "source": 1315785484, "length": 32.73111568793814}, {"destination": 1315785372, "path": [[727.7154384439655, -3272.94769432207], [758.3654384433203, -3211.3976943222156]], "source": 1315785484, "length": 14.877324260773193}, {"destination": 84466496, "path": [[6066.215438444544, -8194.047694322748], [6059.965438446114, -8135.7476943217935]], "source": 602360589, "length": 13.019313764884577}, {"destination": 1993253326, "path": [[6066.215438444544, -8194.047694322748], [5594.6654384442245, -7901.997694322205], [5250.615438448847, -7609.197694321779], [5031.7654384457455, -7326.697694322704], [4969.2654384472235, -7204.047694322924]], "source": 602360589, "length": 308.12327576538655}, {"destination": 1320104089, "path": [[3336.9654384429737, 1631.8523056781942], [3285.765438448607, 1780.1523056775181]], "source": 476556047, "length": 34.38786230921165}, {"destination": 602393450, "path": [[3336.9654384429737, 1631.8523056781942], [3439.015438445381, 1669.9523056775688]], "source": 476556047, "length": 21.176773385050602}, {"destination": 1315785317, "path": [[-4056.634561550254, -2098.1976943232894], [-3686.8345615559406, -2286.947694322805]], "source": 1315785488, "length": 81.89742486829763}, {"destination": 1315785267, "path": [[-1469.3845615525447, -4128.447694322191], [-1488.184561551975, -4187.947694322957]], "source": 1315785489, "length": 13.706914319054116}, {"destination": 1315785628, "path": [[-1469.3845615525447, -4128.447694322191], [-1245.8345615513622, -4173.7976943228]], "source": 1315785489, "length": 43.68917856986345}, {"destination": 4705342936, "path": [[-4256.884561556262, 1669.5023056776392], [-4001.534561552944, 1567.602305676985]], "source": 1315785490, "length": 53.5893485968274}, {"destination": 385114569, "path": [[-4256.884561556262, 1669.5023056776392], [-4598.034561553277, 1791.1523056781675]], "source": 1315785490, "length": 70.29396609435167}, {"destination": 1315785196, "path": [[-4256.884561556262, 1669.5023056776392], [-4221.23456155532, 1767.35230567715]], "source": 1315785490, "length": 22.792809034950082}, {"destination": 481390560, "path": [[-4705.984561553578, 397.75230567684616], [-4103.184561550677, 221.30230567718456]], "source": 1315785491, "length": 121.16628944855977}, {"destination": 1315785332, "path": [[-4705.984561553578, 397.75230567684616], [-4733.73456155457, 324.05230567711385]], "source": 1315785491, "length": 17.21868090550761}, {"destination": 481390556, "path": [[-4705.984561553578, 397.75230567684616], [-4854.334561557039, 436.9523056766411]], "source": 1315785491, "length": 29.528429641309557}, {"destination": 1315785460, "path": [[-3579.18456155204, -1804.6476943229804], [-3480.884561554376, -1847.5976943221895]], "source": 1315785492, "length": 20.992111062731926}, {"destination": 479282332, "path": [[-2458.38456155667, -2662.59769432331], [-2652.534561555342, -2578.44769432225]], "source": 479283989, "length": 41.39195725617198}, {"destination": 479294061, "path": [[-2458.38456155667, -2662.59769432331], [-2643.984561551349, -3139.147694323441]], "source": 479283989, "length": 111.70233810576164}, {"destination": 479284039, "path": [[-2458.38456155667, -2662.59769432331], [-2327.884561552196, -2708.497694323242], [-2194.4845615564645, -2749.7976943227086]], "source": 479283989, "length": 53.812033746542}, {"destination": 476912576, "path": [[6821.165438445576, -6148.297694322125], [7265.16543844724, -5978.297694323232]], "source": 1765485334, "length": 92.50375216916053}, {"destination": 647286028, "path": [[6821.165438445576, -6148.297694322125], [6953.8154384432, -6062.2476943219535]], "source": 1765485334, "length": 31.660931014514517}, {"destination": 1315785249, "path": [[-4563.5845615521475, 266.4523056772339], [-4406.734561555936, 217.952305677116]], "source": 1315785495, "length": 31.71866522457811}, {"destination": 1315785332, "path": [[-4563.5845615521475, 266.4523056772339], [-4733.73456155457, 324.05230567711385]], "source": 1315785495, "length": 34.80131461738085}, {"destination": 1315785294, "path": [[-4563.5845615521475, 266.4523056772339], [-4587.034561552628, 194.80230567658907], [-4601.134561553977, 156.4023056772612]], "source": 1315785495, "length": 25.497494343035264}, {"destination": 1315785582, "path": [[-3166.2845615514357, -4203.597694322881], [-3232.034561555963, -4192.897694322184]], "source": 1315785496, "length": 12.727368497246905}, {"destination": 1890935383, "path": [[-7399.034561551332, -2824.147694322932], [-7354.6345615511655, -2824.0476943217627]], "source": 1890732826, "length": 8.443384620200355}, {"destination": 1317670969, "path": [[3541.765438448863, 228.95230567776537], [3713.1154384439924, 528.7023056776974], [3776.3654384477263, 690.7023056772488]], "source": 1317671386, "length": 112.18210141837801}, {"destination": 1317671173, "path": [[3541.765438448863, 228.95230567776537], [3434.6154384437, 255.10230567782344]], "source": 1317671386, "length": 21.190813377385552}, {"destination": 1317670965, "path": [[3541.765438448863, 228.95230567776537], [3439.2654384447496, 40.20230567824967], [3381.5654384454774, -73.39769432235244]], "source": 1317671386, "length": 73.824578624581}, {"destination": 602360609, "path": [[7707.665438445588, -7965.697694322315], [7744.715438448679, -7887.697694322071]], "source": 602360606, "length": 18.722509220140118}, {"destination": 848698004, "path": [[7707.665438445588, -7965.697694322315], [7621.26543844488, -7898.347694322183], [7437.76543844632, -7787.897694322865], [7085.865438448025, -7516.397694322663], [7023.765438447072, -7462.5976943227815], [6990.665438443955, -7436.997694322045], [6962.915438442962, -7417.497694323316], [6934.9654384467385, -7404.1476943218495], [6902.615438448834, -7395.347694322041], [6869.965438447423, -7393.597694322906], [6839.965438445006, -7398.69769432211], [6810.015438446726, -7408.847694323484], [6781.915438445196, -7425.6976943232185], [6743.165438443555, -7452.397694322599], [6682.065438447182, -7483.297694323099]], "source": 602360606, "length": 247.34658963243675}, {"destination": 1328999552, "path": [[2823.615438444449, 6992.55230567708], [2820.615438444918, 7042.352305678179], [2810.015438448943, 7139.75230567776]], "source": 1328999557, "length": 32.84409182196098}, {"destination": 1328999494, "path": [[2823.615438444449, 6992.55230567708], [2718.6654384436792, 6996.502305677055], [2587.265438450004, 6993.752305676892]], "source": 1328999557, "length": 44.98086453442863}, {"destination": 1328999423, "path": [[2823.615438444449, 6992.55230567708], [2901.065438443595, 6989.602305678133]], "source": 1328999557, "length": 14.745278892642531}, {"destination": 1315785561, "path": [[-3960.084561555277, -1676.1976943229229], [-3669.0345615539854, -1233.6976943227996]], "source": 1315785504, "length": 112.90453452702253}, {"destination": 84466490, "path": [[7744.715438448679, -7887.697694322071], [7844.165438449125, -7959.3976943233]], "source": 602360609, "length": 24.735007348192248}, {"destination": 848698050, "path": [[7744.715438448679, -7887.697694322071], [8190.965438444664, -7310.047694321753], [8263.665438448697, -7217.647694321982]], "source": 602360609, "length": 178.72195635981544}, {"destination": 1315785211, "path": [[-3252.0845615522376, -2063.797694322744], [-3353.184561554201, -2012.1976943219265]], "source": 1315785506, "length": 22.389873078052652}, {"destination": 1315785307, "path": [[-4523.834561553031, -1914.1976943224392], [-4163.284561556679, -2102.3476943220485]], "source": 1315785507, "length": 80.32278150605977}, {"destination": 479286446, "path": [[-4523.834561553031, -1914.1976943224392], [-4360.684561554252, -1705.347694322512]], "source": 1315785507, "length": 55.855283850885485}, {"destination": 1315785443, "path": [[-4523.834561553031, -1914.1976943224392], [-4729.884561555764, -1804.6476943229804], [-4829.034561552703, -1754.6976943219051]], "source": 1315785507, "length": 68.02359319707006}, {"destination": 602360606, "path": [[7787.865438444896, -8022.24769432236], [7707.665438445588, -7965.697694322315]], "source": 602360612, "length": 19.765730230689105}, {"destination": 1315785184, "path": [[-4177.484561552092, 1887.3023056773518], [-4168.634561551698, 1911.6023056771069]], "source": 1315785509, "length": 5.6596170082995965}, {"destination": 1315785194, "path": [[-4177.484561552092, 1887.3023056773518], [-4196.234561554491, 1835.9523056776793]], "source": 1315785509, "length": 11.96337125834961}, {"destination": 1315785411, "path": [[-4177.484561552092, 1887.3023056773518], [-4043.23456154998, 1842.252305676695]], "source": 1315785509, "length": 27.426976127555847}, {"destination": 1315785384, "path": [[-4078.0845615557837, -1708.2976943232352], [-4284.484561551949, -1617.547694323207]], "source": 1315785511, "length": 44.13466451928423}, {"destination": 1315785353, "path": [[-3226.634561556807, -2601.097694322263], [-3128.734561556712, -2644.0476943232484], [-3174.1345615543537, -2715.2976943227713]], "source": 1315785512, "length": 38.968211016331125}, {"destination": 1315785466, "path": [[-3226.634561556807, -2601.097694322263], [-3186.384561551847, -2534.6476943219895]], "source": 1315785512, "length": 16.642427650889722}, {"destination": 1315785247, "path": [[-3226.634561556807, -2601.097694322263], [-3337.784561551871, -2552.1976943227996]], "source": 1315785512, "length": 23.769716523886125}, {"destination": 1315785484, "path": [[498.46543844722646, -3201.4976943219863], [727.7154384439655, -3272.94769432207]], "source": 1315785514, "length": 46.399443555145105}, {"destination": 1315785581, "path": [[498.46543844722646, -3201.4976943219863], [433.8154384484483, -3355.5476943227804]], "source": 1315785514, "length": 36.39817532601206}, {"destination": 1315785375, "path": [[498.46543844722646, -3201.4976943219863], [519.6654384462818, -3135.6476943233956]], "source": 1315785514, "length": 15.189075774196535}, {"destination": 1315785569, "path": [[-3130.0845615547246, -2777.397694321948], [-2918.434561550498, -2849.1976943225695]], "source": 1315785515, "length": 43.299196122020284}, {"destination": 479294044, "path": [[-3130.0845615547246, -2777.397694321948], [-3177.6345615526225, -2863.3476943227265]], "source": 1315785515, "length": 21.1452558753679}, {"destination": 1315785212, "path": [[-2795.984561551279, -2200.2476943221436], [-2616.434561552694, -2254.147694323194]], "source": 1315785516, "length": 36.18671686138736}, {"destination": 1315785174, "path": [[-2795.984561551279, -2200.2476943221436], [-2838.8345615510957, -2270.0476943224858]], "source": 1315785516, "length": 17.531466911229614}, {"destination": 1315785355, "path": [[-2873.9345615562684, -2107.397694322444], [-2983.0845615563817, -2054.147694321884]], "source": 1315785517, "length": 23.897154806954475}, {"destination": 1315785373, "path": [[-4013.734561553406, -2020.2476943218528], [-3638.1845615522934, -2215.1976943227683]], "source": 1315785518, "length": 83.54555357996827}, {"destination": 1315785193, "path": [[-3718.5345615569076, -4147.897694322111], [-3455.684561551209, -4199.697694321713]], "source": 1315785520, "length": 51.29237606803822}, {"destination": 1315785203, "path": [[-2111.434561555825, -2487.1476943229], [-2091.684561555951, -2425.4476943230684]], "source": 1315785521, "length": 14.226067369373137}, {"destination": 1315785468, "path": [[-2111.434561555825, -2487.1476943229], [-2187.184561556421, -2462.9476943225372]], "source": 1315785521, "length": 15.377195732981683}, {"destination": 1315785629, "path": [[-905.1845615530851, -2797.7476943217284], [-789.8345615515723, -2829.8476943220408]], "source": 1315785522, "length": 23.067551864039725}, {"destination": 1315785576, "path": [[-4150.534561553342, -2240.3976943223824], [-3777.93456155473, -2421.347694323117]], "source": 1315785523, "length": 81.48441472853234}, {"destination": 1315785605, "path": [[-4489.284561550732, 632.6023056768548], [-3922.5845615504795, 494.45230567712883]], "source": 1315785524, "length": 112.06507502825103}, {"destination": 1315785206, "path": [[-4489.284561550732, 632.6023056768548], [-4732.534561554758, 693.1023056768737], [-4792.684561550686, 706.6523056771246]], "source": 1315785524, "length": 60.005609145962154}, {"destination": 1315785325, "path": [[-4489.284561550732, 632.6023056768548], [-4467.784561555277, 731.7023056767624]], "source": 1315785524, "length": 22.415017476777756}, {"destination": 1315785426, "path": [[-4104.934561553364, -2164.697694322371], [-3735.0345615507763, -2358.0476943223516]], "source": 1315785525, "length": 82.44266385793878}, {"destination": 1315785588, "path": [[-3085.7845615557267, -4515.49769432269], [-2946.334561556796, -4545.347694323354], [-2770.3345615535113, -4596.297694321905]], "source": 1315785526, "length": 62.66838065598599}, {"destination": 1315785317, "path": [[-3469.234561556789, -2389.4976943221736], [-3686.8345615559406, -2286.947694322805]], "source": 1315785527, "length": 47.24790625125316}, {"destination": 1315785216, "path": [[-3104.4845615539884, -5238.747694322754], [-3123.3345615504504, -5302.147694322912]], "source": 1315785528, "length": 14.548370988297512}, {"destination": 1315678817, "path": [[-3104.4845615539884, -5238.747694322754], [-3021.3845615563173, -5258.497694322628], [-2973.134561550239, -5272.24769432344]], "source": 1315785528, "length": 26.07114058582405}, {"destination": 1315785244, "path": [[-3104.4845615539884, -5238.747694322754], [-3088.484561551752, -5095.747694323194]], "source": 1315785528, "length": 31.94700717159616}, {"destination": 1315785636, "path": [[-4438.6845615562725, 863.3023056781042], [-4220.23456155074, 814.6523056780097]], "source": 1315785529, "length": 42.92939929596637}, {"destination": 1315785219, "path": [[-4438.6845615562725, 863.3023056781042], [-4451.284561554303, 803.9023056767292]], "source": 1315785529, "length": 13.425226247568434}, {"destination": 1315785476, "path": [[-4438.6845615562725, 863.3023056781042], [-4424.084561556185, 947.7023056767564], [-4405.734561551355, 1018.1523056775887]], "source": 1315785529, "length": 35.02517988496054}, {"destination": 1315785613, "path": [[-4438.6845615562725, 863.3023056781042], [-4759.0345615518, 939.7023056774145]], "source": 1315785529, "length": 63.247449762441704}, {"destination": 1771400938, "path": [[9110.465438446625, -5590.497694322849], [9179.565438444115, -5603.347694322025]], "source": 3723332410, "length": 13.44669159753683}, {"destination": 1771400916, "path": [[9110.465438446625, -5590.497694322849], [8939.115438444389, -5554.397694321978]], "source": 3723332410, "length": 33.55641880918081}, {"destination": 4345393151, "path": [[9110.465438446625, -5590.497694322849], [9086.715438449744, -5701.497694323265], [9043.765438448758, -5884.9476943230175], [9021.66543844629, -5973.197694322252]], "source": 3723332410, "length": 86.77242802786466}, {"destination": 267194970, "path": [[-4264.634561550906, -3982.8976943230286], [-4585.234561552908, -4580.1976943220525]], "source": 1315785531, "length": 146.1550941211656}, {"destination": 1315785303, "path": [[-4264.634561550906, -3982.8976943230286], [-3858.734561553945, -4076.897694321957]], "source": 1315785531, "length": 79.96477435145258}, {"destination": 1315785188, "path": [[-2487.684561550907, -2439.9476943219865], [-2425.784561552291, -2441.3976943229445], [-2417.9345615564785, -2451.3976943225657], [-2428.6845615506536, -2513.3476943217656]], "source": 1315785532, "length": 28.381930613674726}, {"destination": 1582517308, "path": [[-8497.53456155611, -3619.297694323009], [-8559.03456155005, -3581.897694322933]], "source": 1582517386, "length": 14.350959422920445}, {"destination": 1582517359, "path": [[-8497.53456155611, -3619.297694323009], [-8458.784561554467, -3592.597694321853], [-8441.334561553049, -3584.597694322511], [-8418.534561556611, -3579.997694322046]], "source": 1582517386, "length": 17.684442038768395}, {"destination": 1582517388, "path": [[-8497.53456155611, -3619.297694323009], [-8501.684561551316, -3648.797694323136], [-8496.334561556296, -3675.1976943225627], [-8485.584561555015, -3714.147694322989], [-8482.934561556021, -3749.6976943227623], [-8497.684561554308, -3788.697694321996], [-8511.084561554582, -3824.24769432177], [-8554.784561553675, -3867.247694323339]], "source": 1582517386, "length": 59.4788986043094}, {"destination": 1582517271, "path": [[-8497.53456155611, -3619.297694323009], [-8448.684561550124, -3649.097694323089]], "source": 1582517386, "length": 11.410828225831864}, {"destination": 481390560, "path": [[-4212.734561555464, -26.49769432316873], [-4148.984561552993, 111.05230567665103], [-4133.134561556062, 145.20230567782733], [-4103.184561550677, 221.30230567718456]], "source": 1315785534, "length": 58.931756537570436}, {"destination": 1315785362, "path": [[-4212.734561555464, -26.49769432316873], [-4315.134561551304, 21.702305676996048]], "source": 1315785534, "length": 22.228680863087334}, {"destination": 1315785281, "path": [[-4161.384561555792, 1239.852305676692], [-4118.334561553638, 1296.3523056779281]], "source": 1315785535, "length": 14.996793681335918}, {"destination": 1315785242, "path": [[-4161.384561555792, 1239.852305676692], [-4335.584561552252, 1287.1523056769975]], "source": 1315785535, "length": 34.758557164113434}, {"destination": 1315785469, "path": [[-4161.384561555792, 1239.852305676692], [-4107.584561552358, 1225.202305677797]], "source": 1315785535, "length": 10.737361048380086}, {"destination": 1315785568, "path": [[-5666.484561551499, -1850.1476943217908], [-5547.934561555223, -1907.8476943228395]], "source": 1315785537, "length": 25.940140505345248}, {"destination": 1315785338, "path": [[-5666.484561551499, -1850.1476943217908], [-5698.134561555435, -1900.9476943221416]], "source": 1315785537, "length": 12.800450979214272}, {"destination": 1315785461, "path": [[-5666.484561551499, -1850.1476943217908], [-5624.784561554463, -1783.2476943233644]], "source": 1315785537, "length": 16.85899317299996}, {"destination": 1316623352, "path": [[320.2654384466541, -1206.7976943228587], [299.1654384487674, -1204.0976943232806], [261.61543844693824, -1153.6976943222753]], "source": 4273376066, "length": 17.347469299036796}, {"destination": 1316623705, "path": [[320.2654384466541, -1206.7976943228587], [308.96543844960433, -1253.4976943232577], [263.1154384431511, -1395.3476943218134]], "source": 4273376066, "length": 43.33494695226881}, {"destination": 4273147781, "path": [[320.2654384466541, -1206.7976943228587], [340.36543844706557, -1209.3976943230446], [447.8154384486288, -1223.0476943226877], [460.56543844485986, -1224.6976943224297]], "source": 4273376066, "length": 26.974360832116183}, {"destination": 1315785325, "path": [[-4782.084561554711, 801.1523056765668], [-4467.784561555277, 731.7023056767624]], "source": 1315785539, "length": 61.73504502139986}, {"destination": 1315785206, "path": [[-4782.084561554711, 801.1523056765668], [-4792.684561550686, 706.6523056771246]], "source": 1315785539, "length": 21.112410678323602}, {"destination": 1315785224, "path": [[-2648.584561555367, -4561.397694322622], [-2752.684561556862, -4538.747694322609]], "source": 1315785540, "length": 20.425904805229358}, {"destination": 1315785424, "path": [[-2648.584561555367, -4561.397694322622], [-2643.2345615532427, -4538.447694322656], [-2609.8345615537255, -4420.19769432278]], "source": 1315785540, "length": 32.25792573731026}, {"destination": 1315785264, "path": [[-2648.584561555367, -4561.397694322622], [-2557.4345615524408, -4575.147694323434], [-2505.284561550525, -4585.647694321793]], "source": 1315785540, "length": 27.787478599146446}, {"destination": 1315785218, "path": [[546.4154384497988, -3074.0976943217647], [569.3654384444358, -3015.5976943220253], [808.1154384456113, -3086.697694323348]], "source": 1315785542, "length": 61.79757044111153}, {"destination": 1315785357, "path": [[546.4154384497988, -3074.0976943217647], [780.0654384482186, -3150.647694322828]], "source": 1315785542, "length": 47.58046037307369}, {"destination": 1315785375, "path": [[546.4154384497988, -3074.0976943217647], [519.6654384462818, -3135.6476943233956]], "source": 1315785542, "length": 14.602785350593965}, {"destination": 4273376072, "path": [[-124.1845615567172, -1226.3976943227563], [105.46543844469625, -1252.1976943222767]], "source": 4273376071, "length": 44.04697134327835}, {"destination": 475975643, "path": [[-124.1845615567172, -1226.3976943227563], [-138.28456155096092, -1290.1476943234513]], "source": 4273376071, "length": 14.428936471130964}, {"destination": 1316623295, "path": [[-124.1845615567172, -1226.3976943227563], [-50.43456155107151, -892.4476943228399]], "source": 4273376071, "length": 75.5798140699329}, {"destination": 63308065, "path": [[4804.465438446925, -6762.797694323197], [4846.715438446836, -6762.797694323197], [4887.615438448734, -6771.947694321767], [4924.41543844535, -6789.647694322553]], "source": 602360648, "length": 24.101632872760227}, {"destination": 620136910, "path": [[4804.465438446925, -6762.797694323197], [4818.065438449537, -6696.747694322269], [4825.315438445443, -6663.3976943233365], [4830.3654384440615, -6617.497694323404], [4825.4654384436435, -6531.497694322042]], "source": 602360648, "length": 51.85916054764026}, {"destination": 1582517386, "path": [[-8554.784561553675, -3867.247694323339], [-8511.084561554582, -3824.24769432177], [-8497.684561554308, -3788.697694321996], [-8482.934561556021, -3749.6976943227623], [-8485.584561555015, -3714.147694322989], [-8496.334561556296, -3675.1976943225627], [-8501.684561551316, -3648.797694323136], [-8497.53456155611, -3619.297694323009]], "source": 1582517388, "length": 59.47889860430939}, {"destination": 476681028, "path": [[-8554.784561553675, -3867.247694323339], [-8475.934561552378, -3921.097694322029]], "source": 1582517388, "length": 19.189642473379227}, {"destination": 476681029, "path": [[-8554.784561553675, -3867.247694323339], [-8612.334561554746, -3827.9476943223754]], "source": 1582517388, "length": 14.005148314229528}, {"destination": 495635912, "path": [[4827.765438449205, -5987.397694322994], [4879.415438445278, -5988.897694322759]], "source": 602360650, "length": 9.827078358489}, {"destination": 495636197, "path": [[4827.765438449205, -5987.397694322994], [4542.665438449944, -5970.197694322721], [4451.965438448724, -5954.197694322261], [4371.365438444741, -5928.297694323348], [3683.4654384492183, -5631.8476943229]], "source": 602360650, "length": 234.80599981069452}, {"destination": 602360653, "path": [[4827.765438449205, -5987.397694322994], [4833.015438443055, -5855.997694322213], [4846.765438443867, -5742.797694322732]], "source": 602360650, "length": 54.54940899526687}, {"destination": 1315785480, "path": [[-1128.7845615512992, -2897.6476943221032], [-1277.5345615523293, -2855.7976943233143]], "source": 1315785547, "length": 29.778114157260255}, {"destination": 495637616, "path": [[4846.765438443867, -5742.797694322732], [4896.865438446695, -5759.647694322467]], "source": 602360653, "length": 10.237191864593584}, {"destination": 602360657, "path": [[4846.765438443867, -5742.797694322732], [4857.715438447485, -5539.197694321984], [4924.41543844535, -5349.497694322025], [5003.415438444847, -5193.397694322144]], "source": 602360653, "length": 127.20495827103925}, {"destination": 1489398829, "path": [[4846.765438443867, -5742.797694322732], [4293.8654384485635, -5510.947694322254], [4372.715438449859, -5406.69769432256], [4092.2154384475107, -5280.647694322127]], "source": 602360653, "length": 204.9613515745204}, {"destination": 1315785459, "path": [[-2390.184561555486, -423.24769432333653], [-2412.984561551923, -504.3976943230888]], "source": 1315785550, "length": 18.560544663388768}, {"destination": 481394324, "path": [[-2390.184561555486, -423.24769432333653], [-2321.6845615507964, -441.2476943222998], [-2172.18456155166, -480.5476943232634]], "source": 1315785550, "length": 43.37122108819328}, {"destination": 481392303, "path": [[-2390.184561555486, -423.24769432333653], [-2768.73456155613, -323.7476943223072]], "source": 1315785550, "length": 75.31282336857814}, {"destination": 1315785553, "path": [[-763.8845615502987, -2745.547694322781], [-701.7845615564511, -2543.5476943229673]], "source": 1315785551, "length": 46.4489489409776}, {"destination": 1315785629, "path": [[-763.8845615502987, -2745.547694322781], [-789.8345615515723, -2829.8476943220408]], "source": 1315785551, "length": 19.385898914352868}, {"destination": 1315785583, "path": [[-763.8845615502987, -2745.547694322781], [-872.9845615533804, -2722.0476943217163]], "source": 1315785551, "length": 21.394832304864046}, {"destination": 554685947, "path": [[5003.415438444847, -5193.397694322144], [4926.765438447945, -5149.647694322468], [4669.315438448507, -4991.84769432226], [4347.815438443093, -4717.447694321919]], "source": 602360657, "length": 164.1356393189868}, {"destination": 602360659, "path": [[5003.415438444847, -5193.397694322144], [5180.465438449744, -4912.447694323419], [5236.865438448035, -4827.297694323107]], "source": 602360657, "length": 92.73622281213093}, {"destination": 554686151, "path": [[5003.415438444847, -5193.397694322144], [5044.615438443145, -5214.847694322344]], "source": 602360657, "length": 9.172452944561167}, {"destination": 602360660, "path": [[5236.865438448035, -4827.297694323107], [5275.015438449771, -4782.747694322964]], "source": 602360659, "length": 12.279376111558836}, {"destination": 84488206, "path": [[5236.865438448035, -4827.297694323107], [4698.115438444006, -4407.047694321875]], "source": 602360659, "length": 138.67086984511084}, {"destination": 3485520289, "path": [[496.26543844993876, -947.4476943225341], [521.9654384447381, -949.0976943222762], [607.76543844554, -958.2976943232069], [775.6654384465378, -983.1476943222839], [779.9154384500184, -983.6976943233822]], "source": 4273376084, "length": 54.56437588144924}, {"destination": 1316623322, "path": [[496.26543844993876, -947.4476943225341], [466.6654384450908, -945.5976943222311], [309.86543844591097, -935.5976943226096], [197.4154384498661, -928.4476943225428]], "source": 4273376084, "length": 56.98808711661242}, {"destination": 4273376085, "path": [[496.26543844993876, -947.4476943225341], [529.5154384441503, -819.2976943224295]], "source": 4273376084, "length": 29.192298036717485}, {"destination": 4273376084, "path": [[529.5154384441503, -819.2976943224295], [496.26543844993876, -947.4476943225341]], "source": 4273376085, "length": 29.192298036717485}, {"destination": 385113782, "path": [[583.1654384493845, -697.6476943219012], [652.2654384468751, -389.94769432321164]], "source": 4273376086, "length": 69.67976161019925}, {"destination": 2991483736, "path": [[-3488.4845615508198, 7532.802305677322], [-3467.4845615541017, 7525.452305676694]], "source": 2991483735, "length": 4.316170276616086}, {"destination": 1575913101, "path": [[-3488.4845615508198, 7532.802305677322], [-3439.2845615514034, 7628.252305677208], [-3396.634561553924, 7711.002305677895]], "source": 2991483735, "length": 43.30998765380997}, {"destination": 3064901910, "path": [[-3467.4845615541017, 7525.452305676694], [-3436.7345615535783, 7506.652305677264], [-3415.3845615563228, 7485.252305677648], [-3390.1845615531556, 7440.1523056781825], [-3366.0345615516007, 7406.802305677474], [-3336.7345615502586, 7379.252305677042], [-3293.484561552873, 7350.202305676845], [-3235.134561556663, 7329.852305677065], [-3177.284561552085, 7321.052305677256], [-3114.7345615565314, 7324.652305676693]], "source": 2991483736, "length": 87.11469459420064}, {"destination": 1315785504, "path": [[-3669.0345615539854, -1233.6976943227996], [-3960.084561555277, -1676.1976943229229]], "source": 1315785561, "length": 112.90453452702253}, {"destination": 479286375, "path": [[-3669.0345615539854, -1233.6976943227996], [-3875.634561552488, -1146.5476943222086]], "source": 1315785561, "length": 43.80876751189734}, {"destination": 385113975, "path": [[-3669.0345615539854, -1233.6976943227996], [-3599.38456155362, -1277.7476943224287]], "source": 1315785561, "length": 16.47423828600955}, {"destination": 1316471803, "path": [[1957.065438446648, 2940.2023056768203], [1961.615438446529, 2975.7023056777853]], "source": 1320104088, "length": 7.942300744025369}, {"destination": 1320103948, "path": [[1957.065438446648, 2940.2023056768203], [2147.315438449482, 2924.952305678019], [2278.565438444957, 2930.802305677105]], "source": 1320104088, "length": 61.33654891452937}, {"destination": 1320103989, "path": [[1957.065438446648, 2940.2023056768203], [1948.565438446792, 2874.102305677084], [1924.0654384446998, 2770.302305677319]], "source": 1320104088, "length": 38.338340966515446}, {"destination": 1315785358, "path": [[-4913.6845615507245, -1859.4476943221139], [-4958.534561552597, -1914.1976943224392]], "source": 1315785563, "length": 14.86580953672472}, {"destination": 1315785263, "path": [[-4913.6845615507245, -1859.4476943221139], [-5116.084561556989, -1751.8976943229347]], "source": 1315785563, "length": 45.31553686363385}, {"destination": 602360660, "path": [[4742.165438443635, -4363.797694322713], [5275.015438449771, -4782.747694322964]], "source": 602360669, "length": 137.6483558726791}, {"destination": 84488206, "path": [[4742.165438443635, -4363.797694322713], [4698.115438444006, -4407.047694321875]], "source": 602360669, "length": 12.754602681267897}, {"destination": 84488167, "path": [[4742.165438443635, -4363.797694322713], [4790.015438445039, -4316.747694321776], [5323.9154384456815, -3896.1976943223676], [5640.565438447709, -3622.2976943225403]], "source": 602360669, "length": 237.55356756537662}, {"destination": 63308187, "path": [[5322.365438445331, -4826.94769432257], [5286.065438447451, -4865.697694322435]], "source": 602360670, "length": 11.041117275924286}, {"destination": 495771300, "path": [[5322.365438445331, -4826.94769432257], [5454.065438449617, -4930.79769432292], [5577.415438445143, -5013.347694323045], [5845.665438449998, -5077.547694321894], [6070.965438446763, -5086.747694322824], [6478.215438448842, -5042.997694323148]], "source": 602360670, "length": 237.75831141534204}, {"destination": 1315785537, "path": [[-5547.934561555223, -1907.8476943228395], [-5666.484561551499, -1850.1476943217908]], "source": 1315785568, "length": 25.940140505345248}, {"destination": 1316236381, "path": [[-1326.3345615541766, 2475.352305676637], [-1562.884561550959, 2591.402305677448]], "source": 1316236432, "length": 51.86473057838222}, {"destination": 1315785306, "path": [[-4088.834561549959, 1757.3523056775286], [-4209.834561549997, 1798.6023056781873]], "source": 1315785570, "length": 24.77269111182074}, {"destination": 1315785639, "path": [[-3171.63456155356, -1944.547694321841], [-3272.434561552018, -1894.4476943225652]], "source": 1315785571, "length": 22.1714379616357}, {"destination": 1315785360, "path": [[-1240.434561552206, -2692.2476943234133], [-1074.1345615556952, -2731.197694322063], [-981.2845615542187, -2760.8976943227503]], "source": 1315785573, "length": 51.640070211719575}, {"destination": 1315785300, "path": [[-1240.434561552206, -2692.2476943234133], [-1260.5345615526176, -2780.7476943220167]], "source": 1315785573, "length": 20.049140563983073}, {"destination": 1315785293, "path": [[-1240.434561552206, -2692.2476943234133], [-1548.8845615507785, -2598.1976943221243], [-1569.6845615522648, -2678.7976943225544]], "source": 1315785573, "length": 80.62836161676964}, {"destination": 1315785476, "path": [[-4043.23456154998, 961.4523056775681], [-4273.884561555974, 993.5523056778806], [-4405.734561551355, 1018.1523056775887]], "source": 1315785574, "length": 70.10568402704433}, {"destination": 1315785480, "path": [[-1589.1345615557384, -2754.1476943220287], [-1277.5345615523293, -2855.7976943233143]], "source": 1315785575, "length": 63.4195688291434}, {"destination": 1315785293, "path": [[-1589.1345615557384, -2754.1476943220287], [-1569.6845615522648, -2678.7976943225544]], "source": 1315785575, "length": 17.160482064184077}, {"destination": 1315785430, "path": [[-1589.1345615557384, -2754.1476943220287], [-1615.1845615510751, -2830.197694322578]], "source": 1315785575, "length": 17.623248612043444}, {"destination": 1315785426, "path": [[-3777.93456155473, -2421.347694323117], [-3735.0345615507763, -2358.0476943223516]], "source": 1315785576, "length": 16.270282404830287}, {"destination": 1315785523, "path": [[-3777.93456155473, -2421.347694323117], [-4150.534561553342, -2240.3976943223824]], "source": 1315785576, "length": 81.48441472853234}, {"destination": 1315785530, "path": [[-3777.93456155473, -2421.347694323117], [-3802.5845615550224, -2457.7476943221654]], "source": 1315785576, "length": 9.353910607146702}, {"destination": 1315785649, "path": [[-4657.434561551099, -15.647694322495909], [-4838.884561550572, 54.30230567782246]], "source": 1315785577, "length": 37.851031787813525}, {"destination": 477444686, "path": [[1509.6154384437455, 5853.652305678025], [1151.1654384435133, 5844.152305677142]], "source": 623414122, "length": 68.20805237169803}, {"destination": 623414118, "path": [[1509.6154384437455, 5853.652305678025], [1502.5154384460393, 5919.402305677224]], "source": 623414122, "length": 14.684642584742274}, {"destination": 1315785265, "path": [[-4827.434561555321, 512.9523056766061], [-4509.934561554019, 420.1523056774903], [-4150.534561553342, 314.65230567739866]], "source": 1315785579, "length": 136.07255880698884}, {"destination": 481390556, "path": [[-4827.434561555321, 512.9523056766061], [-4854.334561557039, 436.9523056766411]], "source": 1315785579, "length": 17.659011147818806}, {"destination": 1315785514, "path": [[433.8154384484483, -3355.5476943227804], [498.46543844722646, -3201.4976943219863]], "source": 1315785581, "length": 36.39817532601206}, {"destination": 1315785603, "path": [[433.8154384484483, -3355.5476943227804], [665.4154384477806, -3410.147694323129]], "source": 1315785581, "length": 45.68387294662921}, {"destination": 1315785260, "path": [[433.8154384484483, -3355.5476943227804], [359.31543844469616, -3336.347694322228]], "source": 1315785581, "length": 14.796228457881503}, {"destination": 1315785496, "path": [[-3232.034561555963, -4192.897694322184], [-3166.2845615514357, -4203.597694322881]], "source": 1315785582, "length": 12.727368497246905}, {"destination": 1315785240, "path": [[-3232.034561555963, -4192.897694322184], [-3278.7845615516176, -4185.24769432338]], "source": 1315785582, "length": 9.051285689647633}, {"destination": 1315785436, "path": [[-3232.034561555963, -4192.897694322184], [-3249.434561553244, -4265.54769432208], [-3269.5345615536553, -4327.547694321865]], "source": 1315785582, "length": 30.799883977653003}, {"destination": 1315785551, "path": [[-872.9845615533804, -2722.0476943217163], [-763.8845615502987, -2745.547694322781]], "source": 1315785583, "length": 21.394832304864046}, {"destination": 95386187, "path": [[-3113.534561556719, -4342.897694321835], [-3040.1845615557477, -4082.997694322188]], "source": 1315785584, "length": 59.45831197639011}, {"destination": 1315785229, "path": [[-3113.534561556719, -4342.897694321835], [-2934.5845615509347, -4372.847694321891]], "source": 1315785584, "length": 34.67366387641426}, {"destination": 1315785639, "path": [[-3337.784561551871, -1861.9476943229074], [-3272.434561552018, -1894.4476943225652]], "source": 1315785435, "length": 14.376371864822387}, {"destination": 1317671123, "path": [[3401.815438444089, 1515.8523056779673], [3364.465438444597, 1505.8023056777615]], "source": 602393460, "length": 7.446230824606709}, {"destination": 1315785614, "path": [[-4547.484561555848, -990.397694321743], [-4314.784561550767, -1123.4976943228503]], "source": 1315785589, "length": 53.2389743452046}, {"destination": 1315785295, "path": [[-3241.384561555094, -2462.8976943219527], [-3166.084561556204, -2492.797694323201]], "source": 1315785590, "length": 15.787850838688396}, {"destination": 714088176, "path": [[2687.665438443787, 9236.502305677519], [2830.4154384457547, 9160.052305677624], [2890.515438444652, 9123.152305678062]], "source": 4402078185, "length": 46.108127407572}, {"destination": 4370661333, "path": [[2687.665438443787, 9236.502305677519], [2840.6154384441606, 9119.552305676847], [2885.265438443696, 9086.302305677307]], "source": 4402078185, "length": 50.28427206981495}, {"destination": 1315785345, "path": [[-5165.784561555142, -2200.0476943233593], [-5303.88456155606, -2123.447694321712]], "source": 1315785592, "length": 31.302790395975418}, {"destination": 1315785258, "path": [[-5165.784561555142, -2200.0476943233593], [-5212.3345615555645, -2265.047694322675]], "source": 1315785592, "length": 16.950162436076965}, {"destination": 1315785448, "path": [[-4370.334561556888, 1153.8523056771055], [-4352.184561554395, 1223.552305678055]], "source": 1315785593, "length": 15.880345506012405}, {"destination": 1315785608, "path": [[-4370.334561556888, 1153.8523056771055], [-4388.184561555874, 1085.4023056765527]], "source": 1315785593, "length": 15.596305300194809}, {"destination": 1315785243, "path": [[-4370.334561556888, 1153.8523056771055], [-4255.134561553576, 1126.602305676627]], "source": 1315785593, "length": 22.731039791207763}, {"destination": 1315785380, "path": [[-4370.334561556888, 1153.8523056771055], [-4501.884561555869, 1177.0523056782167]], "source": 1315785593, "length": 25.544159410888103}, {"destination": 1315785448, "path": [[-4477.7345615543145, 1236.702305677184], [-4352.184561554395, 1223.552305678055]], "source": 1315785595, "length": 24.055034947572647}, {"destination": 1315785588, "path": [[-2627.134561556943, -4632.497694322168], [-2770.3345615535113, -4596.297694321905]], "source": 1315785596, "length": 28.395059185321227}, {"destination": 479280217, "path": [[-815.2345615499712, -3189.647694322062], [-739.8345615570179, -3214.5976943223077]], "source": 1315785597, "length": 15.373971787132009}, {"destination": 1315785562, "path": [[-815.2345615499712, -3189.647694322062], [-792.3345615523658, -3123.447694322934]], "source": 1315785597, "length": 15.352559355504598}, {"destination": 479280077, "path": [[-815.2345615499712, -3189.647694322062], [-1099.1845615535567, -3113.547694322705]], "source": 1315785597, "length": 56.58573848271066}, {"destination": 1315785194, "path": [[-4440.184561552485, 1901.8523056768545], [-4196.234561554491, 1835.9523056776793]], "source": 1315785598, "length": 48.65392268221903}, {"destination": 1315785225, "path": [[-3203.834561553265, -2001.897694322352], [-3310.9845615513223, -1951.8476943218843]], "source": 1315785599, "length": 23.217876332594095}, {"destination": 1993253276, "path": [[6965.7154384472615, -5939.447694322197], [6993.565438449423, -5074.247694322409]], "source": 1765485440, "length": 192.48481351057234}, {"destination": 1993253284, "path": [[6965.7154384472615, -5939.447694322197], [7685.41543844492, -5654.097694321791], [7754.21543844601, -5635.697694323482]], "source": 1765485440, "length": 164.55399845822296}, {"destination": 4470914109, "path": [[6965.7154384472615, -5939.447694322197], [6873.41543844866, -5972.347694322977]], "source": 1765485440, "length": 19.01459775931537}, {"destination": 647286028, "path": [[6965.7154384472615, -5939.447694322197], [6953.8154384432, -6062.2476943219535]], "source": 1765485440, "length": 27.40297721064331}, {"destination": 1315785401, "path": [[-4863.784561550233, -1215.4976943232755], [-4692.334561553935, -1311.4976943224833], [-4535.684561552955, -1393.5476943220947]], "source": 1315785601, "length": 73.90591042105903}, {"destination": 479290062, "path": [[-4863.784561550233, -1215.4976943232755], [-4667.584561552474, -957.0476943228101], [-4605.234561552152, -859.5476943220604]], "source": 1315785601, "length": 93.23810633139439}, {"destination": 1315785400, "path": [[-4197.634561556641, -4091.2476943226748], [-3961.4845615503214, -4155.547694322692], [-4003.1845615544626, -4278.54769432301]], "source": 1315785602, "length": 75.60680962825414}, {"destination": 1315785402, "path": [[665.4154384477806, -3410.147694323129], [781.9154384449689, -3437.597694322392], [892.2154384478631, -3469.697694322704]], "source": 1315785603, "length": 45.13486372537423}, {"destination": 1315785484, "path": [[665.4154384477806, -3410.147694323129], [727.7154384439655, -3272.94769432207]], "source": 1315785603, "length": 32.73111568793814}, {"destination": 1315785581, "path": [[665.4154384477806, -3410.147694323129], [433.8154384484483, -3355.5476943227804]], "source": 1315785603, "length": 45.68387294662921}, {"destination": 476560259, "path": [[-3948.984561553459, 2833.3523056769395], [-3853.634561551189, 2800.702305677305], [-3588.9345615558454, 2769.252305677483], [-3279.284561550355, 2730.502305677618], [-3133.0845615542557, 2715.2023056782327], [-2994.1345615540627, 2695.7023056777275]], "source": 482732933, "length": 184.66678703169643}, {"destination": 479297279, "path": [[-3948.984561553459, 2833.3523056769395], [-3976.084561550408, 2783.4023056776405]], "source": 482732933, "length": 12.24556678773487}, {"destination": 1315785622, "path": [[-3922.934561551017, -1483.5476943222402], [-4087.784561555452, -1390.947694321909]], "source": 1315785606, "length": 37.50778658259577}, {"destination": 1315785592, "path": [[-5114.984561551239, -2134.1976943229924], [-5165.784561555142, -2200.0476943233593]], "source": 1315785607, "length": 17.54328697615308}, {"destination": 1315785198, "path": [[-5114.984561551239, -2134.1976943229924], [-5266.284561550094, -2063.797694322744]], "source": 1315785607, "length": 32.75561327821704}, {"destination": 1315785593, "path": [[-4388.184561555874, 1085.4023056765527], [-4370.334561556888, 1153.8523056771055]], "source": 1315785608, "length": 15.596305300194809}, {"destination": 1315785266, "path": [[-4388.184561555874, 1085.4023056765527], [-4257.784561552569, 1057.8023056773134], [-4045.884561556079, 1034.8523056773474]], "source": 1315785608, "length": 66.16749813034636}, {"destination": 1315785475, "path": [[-4388.184561555874, 1085.4023056765527], [-4520.634561551162, 1112.8523056775919]], "source": 1315785608, "length": 25.917894574893936}, {"destination": 1315785476, "path": [[-4388.184561555874, 1085.4023056765527], [-4405.734561551355, 1018.1523056775887]], "source": 1315785608, "length": 15.323766854480123}, {"destination": 1315785433, "path": [[-2829.5845615531334, -2690.2976943219414], [-2793.434561553454, -2625.697694321971], [-2922.184561555241, -2568.397694322044]], "source": 1315785609, "length": 43.526882632566256}, {"destination": 1315785381, "path": [[-2829.5845615531334, -2690.2976943219414], [-2946.334561556796, -2639.4976943233673]], "source": 1315785609, "length": 24.910377189952964}, {"destination": 1315785311, "path": [[-2829.5845615531334, -2690.2976943219414], [-2849.3345615530075, -2725.64769432293]], "source": 1315785609, "length": 8.712362757115391}, {"destination": 1315785349, "path": [[-4703.034561551078, -162.4476943220543], [-4898.634561556037, -99.14769432306514]], "source": 1315785610, "length": 39.77205462235152}, {"destination": 1316236809, "path": [[-2056.3845615555465, 2836.0023056777095], [-2025.0845615521484, 2889.1523056771007]], "source": 1316236439, "length": 13.234557663396176}, {"destination": 1316237227, "path": [[-2056.3845615555465, 2836.0023056777095], [-2083.8845615500645, 2789.252305676726]], "source": 1316236439, "length": 11.638402523749814}, {"destination": 1316237199, "path": [[-2056.3845615555465, 2836.0023056777095], [-2120.2345615520812, 2872.2023056779735]], "source": 1316236439, "length": 14.569418810613492}, {"destination": 1316236407, "path": [[-2056.3845615555465, 2836.0023056777095], [-1967.3845615528762, 2789.6023056772633], [-1826.284561552427, 2730.502305677618]], "source": 1316236439, "length": 49.70424644494024}, {"destination": 1320103881, "path": [[4049.9654384476003, 1833.7523056768391], [4041.1654384442386, 1880.2523056766772], [4016.6154384451147, 1958.7023056768517], [3980.6654384477724, 2059.602305678254]], "source": 602393484, "length": 51.99379248473092}, {"destination": 475980598, "path": [[4049.9654384476003, 1833.7523056768391], [4077.565438443287, 1665.0023056765663]], "source": 602393484, "length": 37.89362963592215}, {"destination": 1319204529, "path": [[4049.9654384476003, 1833.7523056768391], [4189.865438448237, 1801.6023056777185], [4428.465438444107, 1773.752305677334]], "source": 602393484, "length": 73.34719834985982}, {"destination": 1315785529, "path": [[-4759.0345615518, 939.7023056774145], [-4438.6845615562725, 863.3023056781042]], "source": 1315785613, "length": 63.247449762441704}, {"destination": 1315785621, "path": [[-4759.0345615518, 939.7023056774145], [-4770.834561554693, 881.7023056781892]], "source": 1315785613, "length": 13.092143379146206}, {"destination": 1315785589, "path": [[-4314.784561550767, -1123.4976943228503], [-4547.484561555848, -990.397694321743]], "source": 1315785614, "length": 53.2389743452046}, {"destination": 1315785479, "path": [[-4314.784561550767, -1123.4976943228503], [-4370.68456155032, -1191.4976943234733]], "source": 1315785614, "length": 18.484881855821623}, {"destination": 385113763, "path": [[-3470.234561554264, 1824.5523056776847], [-3632.1345615561995, 1420.2023056775204]], "source": 482732943, "length": 95.04866998107698}, {"destination": 482732996, "path": [[-3470.234561554264, 1824.5523056776847], [-3033.4845615556105, 1619.4023056765873]], "source": 482732943, "length": 94.76563060679077}, {"destination": 639305947, "path": [[-3470.234561554264, 1824.5523056776847], [-3427.884561553185, 1918.4523056772207], [-3329.284561552015, 2134.002305677285], [-3113.7845615560877, 2517.402305677763], [-3038.6845615524294, 2633.102305678037]], "source": 482732943, "length": 197.88698577680915}, {"destination": 1315785222, "path": [[-5253.384561555663, -2318.2976943232347], [-5478.1845615536895, -2210.5976943223027]], "source": 1315785616, "length": 49.001031555007756}, {"destination": 477618799, "path": [[-5253.384561555663, -2318.2976943232347], [-5357.43456155302, -2487.3976943222688]], "source": 1315785616, "length": 42.493761140667104}, {"destination": 1315785232, "path": [[-2238.234561552588, -2648.6476943219373], [-2219.08456155262, -2576.4976943225547]], "source": 1315785617, "length": 16.453162200985233}, {"destination": 1315785184, "path": [[-4402.634561550656, 1979.852305677099], [-4168.634561551698, 1911.6023056771069]], "source": 1315785618, "length": 47.01921075459068}, {"destination": 1315785219, "path": [[-4770.834561554693, 881.7023056781892], [-4451.284561554303, 803.9023056767292]], "source": 1315785621, "length": 63.1853607109029}, {"destination": 1315785539, "path": [[-4770.834561554693, 881.7023056781892], [-4782.084561554711, 801.1523056765668]], "source": 1315785621, "length": 18.040729806448624}, {"destination": 1315785606, "path": [[-4087.784561555452, -1390.947694321909], [-3922.934561551017, -1483.5476943222402]], "source": 1315785622, "length": 37.50778658259577}, {"destination": 1315785310, "path": [[-4087.784561555452, -1390.947694321909], [-4063.184561552191, -1362.597694322787]], "source": 1315785622, "length": 7.8504197703126115}, {"destination": 1315785508, "path": [[-2712.9845615547765, -577.5976943223071], [-2446.9345615543148, -643.647694323235]], "source": 1315785623, "length": 52.683605227210215}, {"destination": 1315785461, "path": [[-5580.134561554928, -1709.4476943224636], [-5624.784561554463, -1783.2476943233644]], "source": 1315785624, "length": 18.478542314826434}, {"destination": 479292967, "path": [[-5580.134561554928, -1709.4476943224636], [-5335.884561553428, -1824.1976943222937]], "source": 1315785624, "length": 52.9964241845767}, {"destination": 1315785438, "path": [[-994.5845615533244, -4488.497694323357], [-1109.0345615514252, -4454.747694323302], [-1249.5345615519682, -4408.347694322856]], "source": 1315785625, "length": 51.66115944833038}, {"destination": 1315785283, "path": [[-1111.684561550419, -4029.297694323475], [-1167.3345615506037, -4267.797694321729]], "source": 1315785626, "length": 54.08537471563527}, {"destination": 1315785196, "path": [[-4467.034561550065, 1837.6523056780059], [-4221.23456155532, 1767.35230567715]], "source": 1315785627, "length": 49.29105779202486}, {"destination": 1315785489, "path": [[-1245.8345615513622, -4173.7976943228], [-1469.3845615525447, -4128.447694322191]], "source": 1315785628, "length": 43.68917856986345}, {"destination": 1315785465, "path": [[-789.8345615515723, -2829.8476943220408], [-690.5845615534645, -2857.347694321888]], "source": 1315785629, "length": 19.839461134359716}, {"destination": 1315785522, "path": [[-789.8345615515723, -2829.8476943220408], [-905.1845615530851, -2797.7476943217284]], "source": 1315785629, "length": 23.067551864039725}, {"destination": 1315785551, "path": [[-789.8345615515723, -2829.8476943220408], [-763.8845615502987, -2745.547694322781]], "source": 1315785629, "length": 19.385898914352868}, {"destination": 1769172096, "path": [[3421.9154384445005, -6177.847694322835], [3440.2154384451933, -6148.54769432327]], "source": 4451470238, "length": 7.386684326509133}, {"destination": 1785697718, "path": [[3421.9154384445005, -6177.847694322835], [3448.765438449186, -6177.297694321737], [4384.665438443846, -6594.947694322784]], "source": 4451470238, "length": 205.8433303580906}, {"destination": 3283676143, "path": [[3421.9154384445005, -6177.847694322835], [3407.065438445045, -6201.697694322661]], "source": 4451470238, "length": 6.0087454157882325}, {"destination": 1315785544, "path": [[370.51543844768275, -3305.9976943228266], [264.265438445932, -3277.047694322022], [218.665438445953, -3391.747694323044]], "source": 1315785631, "length": 48.14686756399392}, {"destination": 476078803, "path": [[370.51543844768275, -3305.9976943228266], [529.7154384464875, -2895.447694323039]], "source": 1315785631, "length": 96.19034879427464}, {"destination": 2049820744, "path": [[3586.3154384472296, -7508.19769432276], [3518.66543844892, -7567.397694321798]], "source": 1769171872, "length": 18.406215149965476}, {"destination": 2049820777, "path": [[3586.3154384472296, -7508.19769432276], [3622.315438448709, -7548.447694322391]], "source": 1769171872, "length": 11.268559855504652}, {"destination": 1769171926, "path": [[3586.3154384472296, -7508.19769432276], [3775.8654384489887, -7350.647694321921]], "source": 1769171872, "length": 50.26542010828354}, {"destination": 3056370065, "path": [[7417.265438448339, -1525.6476943221742], [7402.915438447621, -1547.2476943223512], [7356.465438448367, -1552.2976943227463], [7310.515438447851, -1600.4476943223267], [7294.965438447321, -1656.9476943217865], [7246.165438445473, -1671.5476943218732], [7171.065438448921, -1747.197694323077], [7139.415438444985, -1810.6476943220428], [7123.16543844338, -1824.7976943222]], "source": 1473995248, "length": 92.80822035542653}, {"destination": 393749269, "path": [[7417.265438448339, -1525.6476943221742], [7431.765438447257, -1505.597694322347], [7463.965438446962, -1432.1976943225677], [7498.815438445661, -1425.2976943218698], [7519.765438445347, -1382.5476943232218], [7610.915438448274, -1281.5976943230112], [7673.165438447427, -1246.397694321999], [7683.365438445833, -1205.9476943218074], [7749.81543844433, -1139.7976943232634]], "source": 1473995248, "length": 110.93858358991018}, {"destination": 1473995269, "path": [[7417.265438448339, -1525.6476943221742], [7512.215438445935, -1592.747694322938], [7602.315438447249, -1600.3476943229343]], "source": 1473995248, "length": 40.641620059157034}, {"destination": 1315785283, "path": [[-1065.4345615535021, -4302.197694322274], [-1167.3345615506037, -4267.797694321729]], "source": 1315785634, "length": 20.83221727427283}, {"destination": 1769172096, "path": [[3390.315438444702, -6125.797694322088], [3440.2154384451933, -6148.54769432327]], "source": 1769171875, "length": 10.752459290262744}, {"destination": 4451234430, "path": [[3390.315438444702, -6125.797694322088], [3435.1654384465746, -6047.097694322545]], "source": 1769171875, "length": 19.46894029730075}, {"destination": 84487663, "path": [[3390.315438444702, -6125.797694322088], [3356.5654384446475, -6179.247694323209]], "source": 1769171875, "length": 13.50821447830026}, {"destination": 1315785529, "path": [[-4220.23456155074, 814.6523056780097], [-4438.6845615562725, 863.3023056781042]], "source": 1315785636, "length": 42.92939929596637}, {"destination": 1315785228, "path": [[-379.43456155176136, -2731.197694322063], [-92.38456155458152, -2793.347694321824]], "source": 1315785638, "length": 56.3081567416744}, {"destination": 1315785225, "path": [[-3272.434561552018, -1894.4476943225652], [-3310.9845615513223, -1951.8476943218843]], "source": 1315785639, "length": 14.720809445160457}, {"destination": 1315785571, "path": [[-3272.434561552018, -1894.4476943225652], [-3171.63456155356, -1944.547694321841]], "source": 1315785639, "length": 22.1714379616357}, {"destination": 1315785435, "path": [[-3272.434561552018, -1894.4476943225652], [-3337.784561551871, -1861.9476943229074]], "source": 1315785639, "length": 14.376371864822387}, {"destination": 1315785470, "path": [[-3272.434561552018, -1894.4476943225652], [-3230.6345615538135, -1832.1476943228276]], "source": 1315785639, "length": 15.973433056830242}, {"destination": 1315785399, "path": [[-5067.83456155091, -1671.5976943224575], [-4853.284561555427, -1783.7976943226863]], "source": 1315785642, "length": 47.82513142936912}, {"destination": 3758885813, "path": [[-144.53456155649747, -26.74769432253754], [78.11543844837843, -33.297694322698135]], "source": 3758885805, "length": 42.36663180585081}, {"destination": 1315785392, "path": [[-4924.234561556773, -165.24769432280095], [-4737.934561553913, -222.04769432221383]], "source": 1315785646, "length": 37.61312585740499}, {"destination": 1315785560, "path": [[-4924.234561556773, -165.24769432280095], [-4947.134561554378, -224.3476943224465]], "source": 1315785646, "length": 13.845609424132833}, {"destination": 1315785349, "path": [[-4924.234561556773, -165.24769432280095], [-4898.634561556037, -99.14769432306514]], "source": 1315785646, "length": 15.485246560127619}, {"destination": 1315785176, "path": [[-4098.734561551964, 1348.7523056774364], [-3968.134561553427, 1314.7023056774287]], "source": 1315785647, "length": 25.965838603905343}, {"destination": 1315785281, "path": [[-4098.734561551964, 1348.7523056774364], [-4118.334561553638, 1296.3523056779281]], "source": 1315785647, "length": 12.235258449967288}, {"destination": 1315785207, "path": [[-4098.734561551964, 1348.7523056774364], [-4077.084561551203, 1406.7523056766618]], "source": 1315785647, "length": 13.54020240148062}, {"destination": 1315785407, "path": [[-4098.734561551964, 1348.7523056774364], [-4180.034561557022, 1367.4523056774747], [-4402.634561550656, 1417.9023056772876]], "source": 1315785647, "length": 59.806173528032744}, {"destination": 1315785577, "path": [[-4838.884561550572, 54.30230567782246], [-4657.434561551099, -15.647694322495909]], "source": 1315785649, "length": 37.851031787813525}, {"destination": 1315785213, "path": [[-4838.884561550572, 54.30230567782246], [-4813.934561553879, 118.30230567788647]], "source": 1315785649, "length": 15.002802253106848}, {"destination": 1562117605, "path": [[-4838.884561550572, 54.30230567782246], [-4870.584561551539, -27.14769432188291]], "source": 1315785649, "length": 19.09028558070568}, {"destination": 1315785352, "path": [[-719.6845615524694, -2959.047694321981], [-762.08456155058, -3058.5976943218184]], "source": 1315785650, "length": 23.561398306415654}, {"destination": 1315785388, "path": [[-719.6845615524694, -2959.047694321981], [-701.334561554745, -2928.4476943232107]], "source": 1315785650, "length": 7.647460076008101}, {"destination": 1315785308, "path": [[-719.6845615524694, -2959.047694321981], [-857.0845615523126, -2928.8976943231405]], "source": 1315785650, "length": 26.974696467281536}, {"destination": 1315785264, "path": [[-2547.234561554035, -4730.1976943234795], [-2505.284561550525, -4585.647694321793]], "source": 1315785651, "length": 33.121447100042744}, {"destination": 1315785429, "path": [[-2547.234561554035, -4730.1976943234795], [-2619.084561551688, -4715.047694322294], [-2793.434561553454, -4671.4476943225945]], "source": 1315785651, "length": 48.61380504022487}, {"destination": 3758885817, "path": [[78.11543844837843, -33.297694322698135], [127.71543844536382, -34.74769432187941], [139.81543844465705, 61.702305677258096], [167.4154384474491, 116.10230567704605]], "source": 3758885813, "length": 44.19898562752563}, {"destination": 3758885805, "path": [[78.11543844837843, -33.297694322698135], [-144.53456155649747, -26.74769432253754]], "source": 3758885813, "length": 42.36663180585081}, {"destination": 3758885806, "path": [[78.11543844837843, -33.297694322698135], [71.36543844410426, -156.29769432301543]], "source": 3758885813, "length": 27.384223707693263}, {"destination": 1317671028, "path": [[167.4154384474491, 116.10230567704605], [259.5154384437137, 85.15230567773813]], "source": 3758885817, "length": 18.818779416846294}, {"destination": 2969936436, "path": [[167.4154384474491, 116.10230567704605], [-448.7845615557262, 323.30230567723106]], "source": 3758885817, "length": 125.91831455753915}, {"destination": 3758885813, "path": [[167.4154384474491, 116.10230567704605], [139.81543844465705, 61.702305677258096], [127.71543844536382, -34.74769432187941], [78.11543844837843, -33.297694322698135]], "source": 3758885817, "length": 44.19898562752563}, {"destination": 85654851, "path": [[11118.26543844785, -4752.097694321833], [11164.01543844603, -4694.397694322561]], "source": 87739322, "length": 15.5029880326349}, {"destination": 115547773, "path": [[11118.26543844785, -4752.097694321833], [11252.515438449962, -4716.647694323228]], "source": 87739322, "length": 26.717536142881553}, {"destination": 3758885806, "path": [[133.1154384445199, -344.29769432264834], [153.06543844673115, -165.69769432273063], [137.96543844790676, -165.54769432275407], [71.36543844410426, -156.29769432301543]], "source": 3758885822, "length": 55.60443209774786}, {"destination": 773662879, "path": [[133.1154384445199, -344.29769432264834], [81.5154384454786, -339.84769432215955]], "source": 3758885822, "length": 9.8623247642823}, {"destination": 3758885806, "path": [[-5.034561553429739, -228.54769432179012], [-68.08456155482645, -222.84769432268092], [-61.3845615546893, -145.9976943234409], [71.36543844410426, -156.29769432301543]], "source": 3758885823, "length": 54.5445877789075}, {"destination": 1887596174, "path": [[-248.5845615538551, -8152.797694322089], [-287.68456155603417, -8162.947694323464]], "source": 1889012672, "length": 7.768480032843728}, {"destination": 2049820826, "path": [[4042.265438449988, -7317.8976943228945], [3647.21543844837, -7576.747694322705]], "source": 1769171905, "length": 94.63686533255776}, {"destination": 1769172116, "path": [[4042.265438449988, -7317.8976943228945], [4065.5654384451623, -7339.197694323118]], "source": 1769171905, "length": 6.486251065000688}, {"destination": 1769171909, "path": [[4042.265438449988, -7317.8976943228945], [4008.8654384433653, -7281.747694323215]], "source": 1769171905, "length": 10.245112323700745}, {"destination": 4333704544, "path": [[-7600.584561551215, 2602.1023056781446], [-7615.084561550134, 2605.6023056781896], [-7663.684561556749, 2616.6023056770628], [-7789.684561551268, 2651.902305677467], [-7851.73456155519, 2669.6023056782537], [-7863.434561556915, 2671.352305677388], [-7875.084561554502, 2672.102305677271], [-7886.734561552089, 2669.4023056776928], [-7898.234561551476, 2665.202305676573], [-7906.9845615507, 2659.152305676926], [-7915.334561552356, 2651.2023056781686], [-7920.684561554481, 2641.4023056773317], [-7979.884561549966, 2492.7023056768858], [-7985.634561556764, 2478.102305676799]], "source": 85010251, "length": 104.51821731132877}, {"destination": 857780844, "path": [[-7600.584561551215, 2602.1023056781446], [-7527.834561550151, 2889.0023056771242], [-7515.984561550226, 2936.8523056767517]], "source": 85010251, "length": 76.16412549382653}, {"destination": 1316236792, "path": [[-3033.4845615556105, 1619.4023056765873], [-3005.6845615504812, 1674.7023056780108]], "source": 482732996, "length": 13.386569206786788}, {"destination": 1316236506, "path": [[-3033.4845615556105, 1619.4023056765873], [-2869.9345615521565, 1555.002305677178], [-2889.38456155563, 1502.8023056782304]], "source": 482732996, "length": 46.426073800573775}, {"destination": 482732943, "path": [[-3033.4845615556105, 1619.4023056765873], [-3470.234561554264, 1824.5523056776847]], "source": 482732996, "length": 94.76563060679077}, {"destination": 1769171905, "path": [[4008.8654384433653, -7281.747694323215], [4042.265438449988, -7317.8976943228945]], "source": 1769171909, "length": 10.245112323700745}, {"destination": 1769172005, "path": [[4008.8654384433653, -7281.747694323215], [3961.815438444205, -7238.7476943234215], [3995.8654384477654, -7217.947694321936]], "source": 1769171909, "length": 21.051935885253812}, {"destination": 93466295, "path": [[4008.8654384433653, -7281.747694323215], [4054.8154384438817, -7248.797694321851]], "source": 1769171909, "length": 11.403322270743457}, {"destination": 1316198769, "path": [[-2599.234561550645, 1378.0023056781943], [-2742.834561551888, 1439.7523056768337]], "source": 482732999, "length": 30.56773494042949}, {"destination": 1316237189, "path": [[-2599.234561550645, 1378.0023056781943], [-2419.284561554491, 1319.5023056766786]], "source": 482732999, "length": 36.611858919418324}, {"destination": 1316236445, "path": [[-2599.234561550645, 1378.0023056781943], [-2636.6845615513057, 1305.3023056777135]], "source": 482732999, "length": 17.667175277310818}, {"destination": 1769171905, "path": [[4097.815438449004, -7276.647694322236], [4042.265438449988, -7317.8976943228945]], "source": 84487112, "length": 13.990017180088783}, {"destination": 602364835, "path": [[3597.5654384472477, -7609.797694323462], [3561.8654384492743, -7590.147694322979]], "source": 84487113, "length": 8.073978040236147}, {"destination": 93466391, "path": [[3597.5654384472477, -7609.797694323462], [3537.2654384460134, -7641.447694322068]], "source": 84487113, "length": 13.454062402005787}, {"destination": 1765493273, "path": [[3771.865438444877, -8409.247694322275], [3570.165438446793, -8297.79769432193]], "source": 84487116, "length": 45.662758587752286}, {"destination": 1767289558, "path": [[3771.865438444877, -8409.247694322275], [3963.0654384481545, -8263.797694322506], [4118.015438443479, -8400.897694322395], [4165.515438444345, -8424.997694323367]], "source": 84487116, "length": 101.56159142290758}, {"destination": 1404152847, "path": [[-870.0345615508809, 6556.3523056777485], [-1031.7345615504792, 6187.85230567731]], "source": 1404152783, "length": 87.53165248589967}, {"destination": 1404152809, "path": [[1807.0154384446369, 8950.352305676646], [2033.515438448319, 8774.05230567696]], "source": 1404152785, "length": 58.251687978139664}, {"destination": 1404152821, "path": [[1807.0154384446369, 8950.352305676646], [1507.0154384488887, 9179.702305678105]], "source": 1404152785, "length": 76.53521194260006}, {"destination": 1404618542, "path": [[1807.0154384446369, 8950.352305676646], [1897.2154384471196, 9033.702305677238]], "source": 1404152785, "length": 25.257642624425635}, {"destination": 1993253323, "path": [[4470.865438449323, -6942.847694322296], [4071.1654384466556, -7174.547694322797]], "source": 1769171922, "length": 91.8212142147243}, {"destination": 1769172134, "path": [[4470.865438449323, -6942.847694322296], [4565.31543844818, -6889.047694322415], [4557.265438450031, -6831.697694321903]], "source": 1769171922, "length": 34.425032500760075}, {"destination": 1785697735, "path": [[4470.865438449323, -6942.847694322296], [4500.365438445897, -6976.997694323472]], "source": 1769171922, "length": 9.442138905935673}, {"destination": 1404152800, "path": [[-1744.484561555737, 7464.602305677914], [-1626.4345615510933, 7602.202305676542], [-1610.5845615541625, 7617.902305677049]], "source": 1404152787, "length": 42.56774907712276}, {"destination": 1404152818, "path": [[-970.784561552307, 7676.052305678028], [-947.5345615541642, 7714.152305677402]], "source": 1404152789, "length": 9.557881290709224}, {"destination": 1404152806, "path": [[-970.784561552307, 7676.052305678028], [-1019.6345615511859, 7596.152305676896]], "source": 1404152789, "length": 20.05183757637973}, {"destination": 1404152830, "path": [[-970.784561552307, 7676.052305678028], [-875.434561550037, 7629.752305676973], [-880.7845615521614, 7593.052305677972], [-705.5845615511203, 7528.302305678025]], "source": 1404152789, "length": 65.38200482506753}, {"destination": 482731179, "path": [[-1683.4845615534277, 5409.802305678113], [-1891.1345615535424, 5541.052305677141]], "source": 1404152790, "length": 49.10933831268436}, {"destination": 1404152885, "path": [[-1683.4845615534277, 5409.802305678113], [-1942.934561554921, 5097.252305677813]], "source": 1404152790, "length": 85.2428199783695}, {"destination": 1404152838, "path": [[-585.7345615538634, 9327.10230567757], [-674.9845615559025, 8980.00230567675]], "source": 1404152792, "length": 79.03635574730356}, {"destination": 1404152880, "path": [[-722.8845615543378, 6457.002305676696], [-846.8345615568751, 6163.852305677508]], "source": 1404152799, "length": 69.32536016232943}, {"destination": 1404152848, "path": [[-722.8845615543378, 6457.002305676696], [-816.7845615503211, 6483.502305677292], [-703.0345615532951, 6774.352305678022]], "source": 1404152799, "length": 87.0112871514937}, {"destination": 1404152835, "path": [[-722.8845615543378, 6457.002305676696], [-569.8845615569326, 6413.102305677043], [-437.3345615533708, 6690.302305678131]], "source": 1404152799, "length": 97.29665511186187}, {"destination": 1404152816, "path": [[-1610.5845615541625, 7617.902305677049], [-1533.334561550248, 7715.152305676654]], "source": 1404152800, "length": 26.146396904032997}, {"destination": 1404152786, "path": [[-1610.5845615541625, 7617.902305677049], [-1551.3345615545404, 7551.752305676729], [-1631.8345615502494, 7418.702305677982]], "source": 1404152800, "length": 51.84685289044371}, {"destination": 1404152787, "path": [[-1610.5845615541625, 7617.902305677049], [-1626.4345615510933, 7602.202305676542], [-1744.484561555737, 7464.602305677914]], "source": 1404152800, "length": 42.56774907712276}, {"destination": 1404152876, "path": [[-898.7345615523168, 9015.502305677714], [-827.1345615540326, 9331.702305678036]], "source": 1404152802, "length": 71.6263770466102}, {"destination": 1404152850, "path": [[-898.7345615523168, 9015.502305677714], [-974.7345615522818, 8750.15230567655]], "source": 1404152802, "length": 60.75593223985172}, {"destination": 1404152884, "path": [[-898.7345615523168, 9015.502305677714], [-1193.7845615506149, 9052.202305676716]], "source": 1404152802, "length": 56.711188355751425}, {"destination": 1404152838, "path": [[-898.7345615523168, 9015.502305677714], [-821.7845615519082, 9005.952305678022], [-674.9845615559025, 8980.00230567675]], "source": 1404152802, "length": 43.30240457861521}, {"destination": 1776086120, "path": [[4445.115438443281, -6601.997694323458], [4006.5154384478774, -6406.997694321959], [3746.765438449984, -6288.44769432213]], "source": 1769171939, "length": 149.98540249063353}, {"destination": 1769171922, "path": [[4557.265438450031, -6831.697694321903], [4565.31543844818, -6889.047694322415], [4470.865438449323, -6942.847694322296]], "source": 1769172134, "length": 34.425032500760075}, {"destination": 3344153899, "path": [[4557.265438450031, -6831.697694321903], [4455.3154384487925, -6788.147694322788], [4388.815438446159, -6758.347694322709]], "source": 1769172134, "length": 35.945860252267096}, {"destination": 3344153902, "path": [[4557.265438450031, -6831.697694321903], [4593.015438445036, -6842.747694323137]], "source": 1769172134, "length": 7.2281970172211425}, {"destination": 1404152841, "path": [[-1019.6345615511859, 7596.152305676896], [-1067.384561551421, 7517.902305677282]], "source": 1404152806, "length": 19.6296080825767}, {"destination": 1404152882, "path": [[-1019.6345615511859, 7596.152305676896], [-1165.0845615562844, 7661.852305677286]], "source": 1404152806, "length": 31.286230548023187}, {"destination": 1404152789, "path": [[-1019.6345615511859, 7596.152305676896], [-970.784561552307, 7676.052305678028]], "source": 1404152806, "length": 20.05183757637973}, {"destination": 1404152884, "path": [[-1299.2345615501222, 8593.002305676833], [-1193.7845615506149, 9052.202305676716]], "source": 1404152807, "length": 104.07261830746491}, {"destination": 1404152812, "path": [[-1068.534561554202, 9469.352305677248], [-1310.3345615519402, 9531.00230567827]], "source": 1404152808, "length": 47.99265443296455}, {"destination": 1404152884, "path": [[-1068.534561554202, 9469.352305677248], [-1149.0345615570163, 9244.50230567686], [-1193.7845615506149, 9052.202305676716]], "source": 1404152808, "length": 95.90048177858196}, {"destination": 1404152785, "path": [[2033.515438448319, 8774.05230567696], [1807.0154384446369, 8950.352305676646]], "source": 1404152809, "length": 58.251687978139664}, {"destination": 623411694, "path": [[2033.515438448319, 8774.05230567696], [2334.865438449185, 8544.002305677977], [2384.0154384444645, 8507.102305676639]], "source": 1404152809, "length": 89.26948343062244}, {"destination": 1404618559, "path": [[2033.515438448319, 8774.05230567696], [2121.9654384481146, 8864.652305677013]], "source": 1404152809, "length": 26.24891734674619}, {"destination": 1404618520, "path": [[1801.1654384437747, 9464.752305676782], [1715.4154384471099, 9381.952305677289]], "source": 1404152810, "length": 24.59872125258759}, {"destination": 1404152836, "path": [[1801.1654384437747, 9464.752305676782], [2093.565438443079, 9225.902305677992]], "source": 1404152810, "length": 76.90754450816051}, {"destination": 1404618543, "path": [[1801.1654384437747, 9464.752305676782], [1745.3154384483582, 9504.602305677068]], "source": 1404152810, "length": 13.834538925915647}, {"destination": 1489398821, "path": [[3430.565438449662, -8128.097694322989], [3281.765438444495, -7983.697694323056]], "source": 1489398763, "length": 42.79872069042309}, {"destination": 1489398814, "path": [[3430.565438449662, -8128.097694322989], [3515.7654384434522, -8067.7976943217545], [3586.3154384472296, -8050.49769432209], [3756.665438444884, -8060.847694322249], [3822.3654384452743, -8088.347694322096], [3894.765438445802, -8142.247694323146], [3909.8154384475947, -8160.797694323208]], "source": 1489398763, "length": 104.64071602064502}, {"destination": 1404152808, "path": [[-1310.3345615519402, 9531.00230567827], [-1068.534561554202, 9469.352305677248]], "source": 1404152812, "length": 47.99265443296455}, {"destination": 479298075, "path": [[-1310.3345615519402, 9531.00230567827], [-1460.9345615568259, 9567.952305676641]], "source": 1404152812, "length": 29.800654027489}, {"destination": 1404152882, "path": [[-1368.9345615546245, 7726.102305676719], [-1165.0845615562844, 7661.852305677286]], "source": 1404152813, "length": 41.32167603820956}, {"destination": 1769172179, "path": [[4205.415438448767, -7256.247694321872], [4484.36543844366, -7090.647694322883]], "source": 1489398766, "length": 64.57200749679448}, {"destination": 4483338910, "path": [[4205.415438448767, -7256.247694321872], [4254.715438449352, -7285.747694321998], [4282.615438448545, -7316.897694321867], [4292.465438446414, -7327.447694322586], [4300.615438445731, -7331.8976943230755], [4317.115438446706, -7336.147694323003], [4334.315438448755, -7335.347694322536], [4350.1154384486545, -7329.547694322258], [4358.465438443204, -7323.747694321981], [4368.21543844701, -7311.597694322103], [4372.465438443385, -7297.347694322553], [4368.265438444041, -7276.69769432282], [4358.61543844851, -7264.497694322358], [4337.715438445855, -7253.547694322293], [4320.665438449112, -7251.697694321991], [4296.815438443957, -7258.097694322174], [4284.015438443589, -7267.947694321819], [4276.865438448851, -7278.647694322515], [4273.465438444646, -7293.047694322041], [4276.665438446515, -7310.447694322875], [4294.115438447932, -7341.147694322814], [4324.265438448549, -7427.147694322401]], "source": 1489398766, "length": 104.79443131125097}, {"destination": 1993253331, "path": [[4205.415438448767, -7256.247694321872], [4169.7654384478255, -7277.347694323311]], "source": 1489398766, "length": 8.243544833815367}, {"destination": 1993253320, "path": [[4931.365438444856, -7216.947694322684], [4839.76543844733, -7085.197694323142], [4720.315438447642, -7067.647694322332], [4629.765438444621, -7012.347694322685], [4562.865438444419, -7049.297694322831]], "source": 1769171951, "length": 93.43351532963378}, {"destination": 1782221468, "path": [[4931.365438444856, -7216.947694322684], [5019.865438448789, -7368.347694322708], [5100.315438447467, -7481.847694322141], [5212.665438449449, -7628.5476943223075], [5352.465438448917, -7756.997694322365], [5566.865438446201, -7921.647694322686], [5631.765438444347, -7967.697694322595], [5813.015438448588, -8081.047694322052], [5858.8154384437985, -8114.347694322177]], "source": 1769171951, "length": 270.13354451866974}, {"destination": 1993253326, "path": [[4931.365438444856, -7216.947694322684], [4969.2654384472235, -7204.047694322924]], "source": 1769171951, "length": 7.756288710405076}, {"destination": 1404152800, "path": [[-1533.334561550248, 7715.152305676654], [-1610.5845615541625, 7617.902305677049]], "source": 1404152816, "length": 26.146396904032997}, {"destination": 856909257, "path": [[-1533.334561550248, 7715.152305676654], [-1586.0345615550386, 7742.302305677739], [-1704.73456155662, 7808.502305676868], [-1857.9345615563625, 7856.60230567764]], "source": 1404152816, "length": 69.69486305798193}, {"destination": 856909263, "path": [[-1533.334561550248, 7715.152305676654], [-1479.5845615509506, 7656.202305676985], [-1417.6345615553032, 7525.552305677863]], "source": 1404152816, "length": 47.978799989744914}, {"destination": 1404152882, "path": [[-947.5345615541642, 7714.152305677402], [-1095.384561551782, 7772.00230567665], [-1165.0845615562844, 7661.852305677286]], "source": 1404152818, "length": 58.77810482366223}, {"destination": 1404152819, "path": [[-947.5345615541642, 7714.152305677402], [-924.0845615536841, 7752.55230567673]], "source": 1404152818, "length": 9.634894058292028}, {"destination": 1404152789, "path": [[-947.5345615541642, 7714.152305677402], [-970.784561552307, 7676.052305678028]], "source": 1404152818, "length": 9.557881290709224}, {"destination": 1404152818, "path": [[-924.0845615536841, 7752.55230567673], [-947.5345615541642, 7714.152305677402]], "source": 1404152819, "length": 9.634894058292028}, {"destination": 856909246, "path": [[-924.0845615536841, 7752.55230567673], [-741.4345615543994, 8098.952305678253]], "source": 1404152819, "length": 84.50714694150643}, {"destination": 1404152830, "path": [[-924.0845615536841, 7752.55230567673], [-746.6845615553552, 7684.802305677252], [-650.1345615532728, 7652.702305676939], [-705.5845615511203, 7528.302305678025]], "source": 1404152819, "length": 86.26349270310203}, {"destination": 1404152785, "path": [[1507.0154384488887, 9179.702305678105], [1807.0154384446369, 8950.352305676646]], "source": 1404152821, "length": 76.53521194260006}, {"destination": 1404618557, "path": [[1507.0154384488887, 9179.702305678105], [1601.0154384460407, 9271.452305677385]], "source": 1404152821, "length": 27.12961655142017}, {"destination": 623411689, "path": [[1507.0154384488887, 9179.702305678105], [1197.9154384462731, 9416.002305677295]], "source": 1404152821, "length": 78.85597810705792}, {"destination": 1404152861, "path": [[-1889.2845615567921, 7340.702305677738], [-1757.8845615560112, 7331.302305678022], [-1645.2345615505237, 7303.802305678175], [-1621.0845615560743, 7345.302305678203], [-1519.7845615517735, 7321.252305677816]], "source": 1404152825, "length": 77.66655886624172}, {"destination": 1328999593, "path": [[2564.365438445293, 7372.052305678168], [2571.115438449567, 7259.9523056773305]], "source": 1328999420, "length": 24.96314504894546}, {"destination": 1328999482, "path": [[2564.365438445293, 7372.052305678168], [2884.9654384472956, 7388.7523056779255]], "source": 1328999420, "length": 61.09144845250853}, {"destination": 1328999588, "path": [[2564.365438445293, 7372.052305678168], [2556.0154384436373, 7509.8023056767715]], "source": 1328999420, "length": 30.6754583068174}, {"destination": 1404152819, "path": [[-705.5845615511203, 7528.302305678025], [-650.1345615532728, 7652.702305676939], [-746.6845615553552, 7684.802305677252], [-924.0845615536841, 7752.55230567673]], "source": 1404152830, "length": 86.26349270310203}, {"destination": 1404152844, "path": [[-705.5845615511203, 7528.302305678025], [-765.5345615518172, 7393.802305676544]], "source": 1404152830, "length": 32.01112403871419}, {"destination": 1404152789, "path": [[-705.5845615511203, 7528.302305678025], [-880.7845615521614, 7593.052305677972], [-875.434561550037, 7629.752305676973], [-970.784561552307, 7676.052305678028]], "source": 1404152830, "length": 65.38200482506753}, {"destination": 1328999530, "path": [[2901.065438443595, 6989.602305678133], [3230.91543844356, 6998.552305677918]], "source": 1328999423, "length": 62.76890697719881}, {"destination": 1328999557, "path": [[2901.065438443595, 6989.602305678133], [2823.615438444449, 6992.55230567708]], "source": 1328999423, "length": 14.745278892642531}, {"destination": 1328999437, "path": [[2901.065438443595, 6989.602305678133], [2899.9654384449514, 6858.252305677936]], "source": 1328999423, "length": 29.21158771271234}, {"destination": 1328999570, "path": [[4892.715438444384, 6721.102305677462], [5039.265438448127, 6538.3023056782]], "source": 1328999425, "length": 49.29087494439724}, {"destination": 481501843, "path": [[4892.715438444384, 6721.102305677462], [4847.915438446648, 6678.552305677598], [4677.965438446563, 6569.952305676808], [4538.115438442957, 6522.352305676549]], "source": 1328999425, "length": 81.71154464940004}, {"destination": 1404152848, "path": [[-437.3345615533708, 6690.302305678131], [-703.0345615532951, 6774.352305678022]], "source": 1404152835, "length": 53.8816915254836}, {"destination": 856909573, "path": [[-437.3345615533708, 6690.302305678131], [-327.83456155272006, 6657.952305676673]], "source": 1404152835, "length": 22.034020900530628}, {"destination": 1404152799, "path": [[-437.3345615533708, 6690.302305678131], [-569.8845615569326, 6413.102305677043], [-722.8845615543378, 6457.002305676696]], "source": 1404152835, "length": 97.29665511186187}, {"destination": 1404618601, "path": [[2093.565438443079, 9225.902305677992], [2011.6154384481888, 9145.102305677]], "source": 1404152836, "length": 23.787909666618614}, {"destination": 1404152810, "path": [[2093.565438443079, 9225.902305677992], [1801.1654384437747, 9464.752305676782]], "source": 1404152836, "length": 76.90754450816051}, {"destination": 1404618506, "path": [[2093.565438443079, 9225.902305677992], [2314.615438443468, 9041.652305677771]], "source": 1404152836, "length": 58.70956337072577}, {"destination": 1581175241, "path": [[3429.9654384497558, -7260.547694322384], [3395.0654384469203, -7266.2976943220765], [3348.1654384459603, -7251.397694322037], [3315.9654384462556, -7230.747694322304], [3297.165438446825, -7204.347694322877], [3276.0154384448015, -7189.897694322766]], "source": 1489398789, "length": 35.94745188937272}, {"destination": 1489398803, "path": [[3429.9654384497558, -7260.547694322384], [3448.715438445049, -7281.197694322117], [3459.4654384463297, -7315.5976943226615], [3461.2654384460484, -7372.19769432329]], "source": 1489398789, "length": 26.324333398577295}, {"destination": 1489398735, "path": [[3429.9654384497558, -7260.547694322384], [3428.6154384446377, -7231.897694323308]], "source": 1489398789, "length": 6.376241313253919}, {"destination": 1404152792, "path": [[-674.9845615559025, 8980.00230567675], [-585.7345615538634, 9327.10230567757]], "source": 1404152838, "length": 79.03635574730356}, {"destination": 1404152874, "path": [[-674.9845615559025, 8980.00230567675], [-428.78456155648337, 8936.502305678217]], "source": 1404152838, "length": 47.81787548128975}, {"destination": 1404152802, "path": [[-674.9845615559025, 8980.00230567675], [-821.7845615519082, 9005.952305678022], [-898.7345615523168, 9015.502305677714]], "source": 1404152838, "length": 43.30240457861521}, {"destination": 482733394, "path": [[4702.465438448655, 6007.052305676552], [4715.515438448392, 5943.25230567705], [4779.215438446727, 5798.402305677186]], "source": 1328999431, "length": 48.82008608641277}, {"destination": 1328999518, "path": [[4702.465438448655, 6007.052305676552], [4419.215438446145, 5945.852305677235], [4403.115438449845, 5906.852305678001], [4239.51543844936, 5872.452305677456], [4185.865438444125, 5904.552305677768], [3980.6154384436354, 5878.852305677639]], "source": 1328999431, "length": 148.71233175642683}, {"destination": 1328999479, "path": [[4702.465438448655, 6007.052305676552], [4685.465438448944, 6090.052305676608], [4637.165438445834, 6257.952305677605]], "source": 1328999431, "length": 57.19182718167983}, {"destination": 1489398735, "path": [[3470.1654384434732, -7175.697694322025], [3462.1154384453234, -7200.9476943222235], [3428.6154384446377, -7231.897694323308]], "source": 1489398792, "length": 15.198524119121299}, {"destination": 1489398803, "path": [[3470.1654384434732, -7175.697694322025], [3531.8654384468573, -7171.097694323336], [3582.815438448961, -7163.097694322218], [3635.1654384461085, -7184.897694322955], [3702.2154384445116, -7226.147694321839], [3708.9154384446488, -7273.147694322191], [3710.265438449767, -7299.547694323393], [3686.115438448212, -7346.54769432197], [3670.015438444807, -7372.947694323173], [3631.115438444965, -7396.997694321783], [3580.165438449967, -7403.897694322481], [3514.4654384495766, -7393.547694322322], [3461.2654384460484, -7372.19769432329]], "source": 1489398792, "length": 125.65845032673793}, {"destination": 1489398838, "path": [[3470.1654384434732, -7175.697694322025], [3421.9154384445005, -7175.697694322025], [3377.6654384496396, -7153.897694323064], [3340.1154384478104, -7120.647694321747]], "source": 1489398792, "length": 29.164200999585074}, {"destination": 1993253319, "path": [[3470.1654384434732, -7175.697694322025], [3476.9154384477474, -7135.547694321786], [3506.4154384443214, -7121.797694322751], [3557.3154384493932, -7094.597694322857], [3560.8654384446936, -7079.3476943222795], [3606.3154384464724, -7058.097694322641], [3633.315438449358, -7028.247694321976]], "source": 1489398792, "length": 48.520784227849845}, {"destination": 623412587, "path": [[2546.9654384480123, 7659.202305676516], [2539.8654384432007, 7801.052305676848]], "source": 1328999433, "length": 31.575130806936844}, {"destination": 1328999588, "path": [[2546.9654384480123, 7659.202305676516], [2556.0154384436373, 7509.8023056767715]], "source": 1328999433, "length": 33.269552946568126}, {"destination": 1328999590, "path": [[2546.9654384480123, 7659.202305676516], [2858.9654384489904, 7661.202305676796]], "source": 1328999433, "length": 59.34474531830949}, {"destination": 1883305117, "path": [[-734.6845615501252, -8393.647694322937], [-888.234561550405, -8392.5976943231]], "source": 1883305092, "length": 29.19646568582671}, {"destination": 1328999552, "path": [[2884.9654384472956, 7274.052305676903], [2887.665438443321, 7141.0023056781565], [2810.015438448943, 7139.75230567776]], "source": 1328999436, "length": 44.36490892786743}, {"destination": 1328999593, "path": [[2884.9654384472956, 7274.052305676903], [2571.115438449567, 7259.9523056773305]], "source": 1328999436, "length": 59.77676405561443}, {"destination": 1328999482, "path": [[2884.9654384472956, 7274.052305676903], [2884.9654384472956, 7388.7523056779255]], "source": 1328999436, "length": 25.508145401245766}, {"destination": 1328999463, "path": [[2884.9654384472956, 7274.052305676903], [3171.965438447444, 7294.702305676637]], "source": 1328999436, "length": 54.780459032398646}, {"destination": 1328999521, "path": [[2899.9654384449514, 6858.252305677936], [3166.6154384453193, 6874.902305677111], [3255.515438446821, 6874.752305677134]], "source": 1328999437, "length": 67.76045467782286}, {"destination": 856909363, "path": [[2899.9654384449514, 6858.252305677936], [2899.5154384432453, 6726.8523056771555]], "source": 1328999437, "length": 29.22223015958353}, {"destination": 1328999423, "path": [[2899.9654384449514, 6858.252305677936], [2901.065438443595, 6989.602305678133]], "source": 1328999437, "length": 29.21158771271234}, {"destination": 1316471754, "path": [[1840.7654384446914, 2443.7523056768387], [1858.6154384436782, 2510.852305677602]], "source": 476556302, "length": 15.303756550093905}, {"destination": 1320104101, "path": [[1840.7654384446914, 2443.7523056768387], [1707.5154384471602, 2447.652305678005]], "source": 476556302, "length": 25.356647891741247}, {"destination": 1320103934, "path": [[1840.7654384446914, 2443.7523056768387], [1835.865438444273, 2421.202305677994]], "source": 476556302, "length": 5.101841072506443}, {"destination": 1404152880, "path": [[-1031.7345615504792, 6187.85230567731], [-846.8345615568751, 6163.852305677508]], "source": 1404152847, "length": 35.570014649308}, {"destination": 1404152783, "path": [[-1031.7345615504792, 6187.85230567731], [-870.0345615508809, 6556.3523056777485]], "source": 1404152847, "length": 87.53165248589967}, {"destination": 3047465736, "path": [[-703.0345615532951, 6774.352305678022], [-970.9845615546442, 6855.602305677166], [-1629.4345615506245, 7059.80230567782]], "source": 1404152848, "length": 187.2882373731743}, {"destination": 1404152835, "path": [[-703.0345615532951, 6774.352305678022], [-437.3345615533708, 6690.302305678131]], "source": 1404152848, "length": 53.8816915254836}, {"destination": 1404152799, "path": [[-703.0345615532951, 6774.352305678022], [-816.7845615503211, 6483.502305677292], [-722.8845615543378, 6457.002305676696]], "source": 1404152848, "length": 87.0112871514937}, {"destination": 1769172084, "path": [[3676.4154384485437, -7609.597694322901], [3548.5154384460316, -7698.497694322626]], "source": 1769171985, "length": 31.341635652364047}, {"destination": 2049820826, "path": [[3676.4154384485437, -7609.597694322901], [3647.21543844837, -7576.747694322705]], "source": 1769171985, "length": 9.175891355832066}, {"destination": 1769172116, "path": [[3676.4154384485437, -7609.597694322901], [4065.5654384451623, -7339.197694323118]], "source": 1769171985, "length": 95.34760141019845}, {"destination": 476562811, "path": [[3691.8154384437685, 6359.702305678283], [3591.5654384481854, 6290.102305676726], [3470.465438446979, 6219.302305677133]], "source": 1328999442, "length": 52.459478184801746}, {"destination": 1328999452, "path": [[3691.8154384437685, 6359.702305678283], [3764.7654384471707, 6083.502305678223]], "source": 1328999442, "length": 62.971753403716484}, {"destination": 1404152884, "path": [[-1411.8845615556097, 9079.352305677801], [-1193.7845615506149, 9052.202305676716]], "source": 1404152851, "length": 41.92149173761742}, {"destination": 1404152841, "path": [[-1326.0345615506708, 7648.102305678251], [-1067.384561551421, 7517.902305677282]], "source": 1404152853, "length": 57.08438401170582}, {"destination": 1887566506, "path": [[-198.03456155642607, -5579.847694322737], [-207.63456155492577, -5604.247694321884], [-247.18456155170543, -5748.647694321818], [-279.43456155554713, -5917.84769432202], [-317.0845615514395, -6187.947694321849], [-322.2845615553638, -6232.447694323184]], "source": 1888422935, "length": 147.271013418682}, {"destination": 476671870, "path": [[-198.03456155642607, -5579.847694322737], [-243.63456155640506, -5570.397694322438]], "source": 1888422935, "length": 8.921405379387354}, {"destination": 1887854488, "path": [[-5899.084561555412, -7707.347694323019], [-5763.084561550613, -7689.247694322887], [-5705.784561556015, -7679.797694322588]], "source": 267198763, "length": 37.26601659626005}, {"destination": 1887877323, "path": [[-5899.084561555412, -7707.347694323019], [-5899.43456155595, -7668.247694322617], [-5896.584561554619, -7637.497694322093], [-5890.234561555018, -7605.897694322294], [-5802.7845615526985, -7347.997694322928]], "source": 267198763, "length": 82.40318424253876}, {"destination": 1328999442, "path": [[3764.7654384471707, 6083.502305678223], [3691.8154384437685, 6359.702305678283]], "source": 1328999452, "length": 62.971753403716484}, {"destination": 3047465736, "path": [[-1519.7845615517735, 7321.252305677816], [-1629.4345615506245, 7059.80230567782]], "source": 1404152861, "length": 61.77109417444803}, {"destination": 1404152825, "path": [[-1519.7845615517735, 7321.252305677816], [-1621.0845615560743, 7345.302305678203], [-1645.2345615505237, 7303.802305678175], [-1757.8845615560112, 7331.302305678022], [-1889.2845615567921, 7340.702305677738]], "source": 1404152861, "length": 77.66655886624172}, {"destination": 856909263, "path": [[-1519.7845615517735, 7321.252305677816], [-1417.6345615553032, 7525.552305677863]], "source": 1404152861, "length": 49.41423438116163}, {"destination": 1489398763, "path": [[3909.8154384475947, -8160.797694323208], [3930.165438447375, -8185.897694323429], [3887.2654384434213, -8229.447694322545], [3830.965438446299, -8266.147694323323], [3772.715438444152, -8305.047694323164], [3725.815438443192, -8310.797694322859], [3639.9654384453584, -8285.597694323244], [3568.0654384435684, -8250.097694322278], [3491.1154384431597, -8209.897694323232], [3422.715438446744, -8160.597694322647], [3425.4154384498747, -8123.897694321869], [3430.565438449662, -8128.097694322989]], "source": 1489398814, "length": 132.71374868799055}, {"destination": 1489398821, "path": [[3909.8154384475947, -8160.797694323208], [4042.815438445757, -8073.49769432264], [4049.0154384471566, -8040.197694322515], [3886.715438447652, -7869.3476943225705], [3462.4154384488293, -7846.297694323212], [3281.765438444495, -7983.697694323056]], "source": 1489398814, "length": 215.14010443066252}, {"destination": 1582517384, "path": [[-8679.734561553687, -3800.897694322458], [-8657.284561550681, -3756.59769432346], [-8650.584561550546, -3721.0476943219105], [-8653.234561556645, -3684.3476943229093], [-8655.934561552669, -3651.0976943233686], [-8646.534561556507, -3616.6976943228237], [-8630.434561553102, -3582.2976943222784], [-8605.734561555779, -3553.3976943220578]], "source": 1582517279, "length": 58.39117699967433}, {"destination": 476681029, "path": [[-8679.734561553687, -3800.897694322458], [-8612.334561554746, -3827.9476943223754]], "source": 1582517279, "length": 14.1577983634914}, {"destination": 476681030, "path": [[-8679.734561553687, -3800.897694322458], [-8746.334561550384, -3774.1976943230784]], "source": 1582517279, "length": 13.986795677943674}, {"destination": 1316198765, "path": [[-2586.93456155612, 920.3523056768859], [-2457.784561556764, 851.6023056781563]], "source": 1316236320, "length": 28.93117378878155}, {"destination": 1404152850, "path": [[-1057.8345615570584, 8459.952305678087], [-974.7345615522818, 8750.15230567655]], "source": 1404152866, "length": 66.44503694900138}, {"destination": 1328999568, "path": [[2075.0154384430175, 6801.552305677916], [2072.2654384499606, 6707.452305677819]], "source": 1328999459, "length": 20.933208954526226}, {"destination": 1328999428, "path": [[2075.0154384430175, 6801.552305677916], [2133.965438446239, 6799.202305677099], [2120.565438445965, 6886.402305678274], [2096.41543844441, 6897.852305677077], [2099.315438449878, 6979.302305676782]], "source": 1328999459, "length": 54.15703363892862}, {"destination": 1328999519, "path": [[2075.0154384430175, 6801.552305677916], [1938.615438447755, 6806.952305677072]], "source": 1328999459, "length": 25.970871062706095}, {"destination": 152878617, "path": [[-5115.084561552408, -177.29769432328624], [-5295.884561554942, -589.1476943222784]], "source": 482733092, "length": 97.83228705230181}, {"destination": 601145316, "path": [[-5115.084561552408, -177.29769432328624], [-5188.18456155401, -153.8976943233905]], "source": 482733092, "length": 14.843360492108006}, {"destination": 1562117598, "path": [[-5115.084561552408, -177.29769432328624], [-4998.834561554588, -220.19769432191083], [-4407.084561556474, -448.8976943228806]], "source": 482733092, "length": 147.5711888353549}, {"destination": 1993253323, "path": [[3995.8654384477654, -7217.947694321936], [4071.1654384466556, -7174.547694322797]], "source": 1769172005, "length": 17.267552050217684}, {"destination": 1769171909, "path": [[3995.8654384477654, -7217.947694321936], [3961.815438444205, -7238.7476943234215], [4008.8654384433653, -7281.747694323215]], "source": 1769172005, "length": 21.051935885253812}, {"destination": 93466295, "path": [[3995.8654384477654, -7217.947694321936], [4054.8154384438817, -7248.797694321851]], "source": 1769172005, "length": 13.141615284358046}, {"destination": 1328999436, "path": [[3171.965438447444, 7294.702305676637], [2884.9654384472956, 7274.052305676903]], "source": 1328999463, "length": 54.780459032398646}, {"destination": 1328999530, "path": [[3171.965438447444, 7294.702305676637], [3230.91543844356, 6998.552305677918]], "source": 1328999463, "length": 66.80844532766092}, {"destination": 1328999572, "path": [[3171.965438447444, 7294.702305676637], [3147.7154384447203, 7406.052305677591]], "source": 1328999463, "length": 25.18885879673253}, {"destination": 1404152878, "path": [[-2393.534561555555, 8950.902305677744], [-2457.934561554964, 8831.602305678032], [-2538.3845615536416, 8739.852305676975], [-2564.8845615506843, 8664.95230567743]], "source": 1404152872, "length": 72.12998419281533}, {"destination": 1316236809, "path": [[-2077.334561555233, 2908.9023056769747], [-2025.0845615521484, 2889.1523056771007]], "source": 1316236330, "length": 10.864197812419851}, {"destination": 1316237187, "path": [[253.5154384446514, 3966.302305677516], [582.4654384483097, 3851.852305677639]], "source": 1316236331, "length": 67.541339272923}, {"destination": 1316236659, "path": [[-848.8845615559626, 3383.7023056779713], [-811.3345615541334, 3452.502305677285]], "source": 1316236332, "length": 16.8846342420723}, {"destination": 1316237196, "path": [[-848.8845615559626, 3383.7023056779713], [-923.9845615525155, 3312.6023056766485]], "source": 1316236332, "length": 21.307876525188227}, {"destination": 1316236566, "path": [[-848.8845615559626, 3383.7023056779713], [-1159.9845615535287, 3511.0023056770247]], "source": 1316236332, "length": 65.5908343715047}, {"destination": 1316237157, "path": [[71.11543844473545, 4181.952305676972], [-81.78456155150116, 4234.702305677019], [-101.08456155677459, 4239.402305676876]], "source": 1316236333, "length": 35.17322999525146}, {"destination": 1316236974, "path": [[71.11543844473545, 4181.952305676972], [37.365438444680876, 4099.102305676894]], "source": 1316236333, "length": 19.511252318497963}, {"destination": 1316236389, "path": [[71.11543844473545, 4181.952305676972], [159.6154384486681, 4168.152305677353]], "source": 1316236333, "length": 17.108934752565013}, {"destination": 1404152872, "path": [[-2564.8845615506843, 8664.95230567743], [-2538.3845615536416, 8739.852305676975], [-2457.934561554964, 8831.602305678032], [-2393.534561555555, 8950.902305677744]], "source": 1404152878, "length": 72.12998419281533}, {"destination": 622622483, "path": [[-2564.8845615506843, 8664.95230567743], [-2400.3345615568605, 8612.05230567741], [-1745.5345615502438, 8401.452305676572]], "source": 1404152878, "length": 166.4981013519483}, {"destination": 622622429, "path": [[-2564.8845615506843, 8664.95230567743], [-3147.2345615526365, 8808.552305676898]], "source": 1404152878, "length": 115.27851238273581}, {"destination": 1328999519, "path": [[1820.1654384455423, 6521.65230567725], [1844.2654384429602, 6535.402305678062], [1892.56543844607, 6585.852305677875], [1930.1154384478991, 6739.552305678131], [1938.615438447755, 6806.952305677072]], "source": 1328999472, "length": 70.00549914008973}, {"destination": 1328999522, "path": [[1973.4654384464534, 6984.702305677714], [1989.1154384481524, 7102.002305677146], [1959.615438444473, 7147.902305677078], [1750.4154384440085, 7166.252305676579], [1745.0654384489894, 7225.902305677323], [1720.9154384474346, 7244.252305676824], [1460.3154384431605, 7234.952305678277]], "source": 1328999473, "length": 146.9602684575773}, {"destination": 1328999428, "path": [[1973.4654384464534, 6984.702305677714], [2099.315438449878, 6979.302305676782]], "source": 1328999473, "length": 23.96663738509853}, {"destination": 1328999582, "path": [[1973.4654384464534, 6984.702305677714], [1502.1154384484703, 7004.902305677519]], "source": 1328999473, "length": 89.76294458038221}, {"destination": 639309882, "path": [[-1162.3845615531536, 1590.9523056780727], [-1008.8345615528738, 1506.0023056765458], [-882.7845615542174, 1462.4523056774308], [-765.0345615530796, 1432.7523056767432]], "source": 1316236338, "length": 83.98202535026194}, {"destination": 1316237180, "path": [[-1162.3845615531536, 1590.9523056780727], [-1110.6345615559121, 1666.9023056774536]], "source": 1316236338, "length": 19.548632440935307}, {"destination": 1316236344, "path": [[-1717.9345615545571, 2087.7023056780076], [-1610.3345615547937, 2013.8523056765223]], "source": 1316236467, "length": 26.23895811904555}, {"destination": 599408890, "path": [[-3266.8845615546616, -7029.797694322326], [-3211.234561554477, -7048.197694322411]], "source": 477629492, "length": 11.345479245759332}, {"destination": 2354289894, "path": [[-3266.8845615546616, -7029.797694322326], [-3129.53456155185, -6692.74769432171], [-3084.7345615541144, -6578.597694321787]], "source": 477629492, "length": 106.15285491719483}, {"destination": 477629479, "path": [[-3266.8845615546616, -7029.797694322326], [-3866.134561555157, -6834.04769432272]], "source": 477629492, "length": 121.97632977062116}, {"destination": 1404152790, "path": [[-1942.934561554921, 5097.252305677813], [-1683.4845615534277, 5409.802305678113]], "source": 1404152885, "length": 85.2428199783695}, {"destination": 1489398792, "path": [[3340.1154384478104, -7120.647694321747], [3377.6654384496396, -7153.897694323064], [3421.9154384445005, -7175.697694322025], [3470.1654384434732, -7175.697694322025]], "source": 1489398838, "length": 29.164200999585074}, {"destination": 1489398837, "path": [[3340.1154384478104, -7120.647694321747], [3338.215438446923, -7106.397694322197], [3301.2154384479686, -7056.447694322898], [3260.9654384430087, -7058.74769432313], [3203.3154384478735, -7079.3976943228645], [3151.0154384477573, -7117.24769432287], [3120.1654384460653, -7159.647694322757], [3133.5654384463396, -7181.447694321719], [3151.0154384477573, -7196.347694321758], [3168.415438445038, -7224.99769432261]], "source": 1489398838, "length": 77.37369016911542}, {"destination": 1489398823, "path": [[3340.1154384478104, -7120.647694321747], [3315.9654384462556, -7144.7476943227175], [3305.215438444975, -7176.84769432303]], "source": 1489398838, "length": 14.482847805498713}, {"destination": 1328999531, "path": [[4637.165438445834, 6257.952305677605], [5131.06543844799, 6428.452305677012]], "source": 1328999479, "length": 101.3021560890631}, {"destination": 481501843, "path": [[4637.165438445834, 6257.952305677605], [4538.115438442957, 6522.352305676549]], "source": 1328999479, "length": 61.744095775150555}, {"destination": 1328999431, "path": [[4637.165438445834, 6257.952305677605], [4685.465438448944, 6090.052305676608], [4702.465438448655, 6007.052305676552]], "source": 1328999479, "length": 57.19182718167983}, {"destination": 1316236984, "path": [[-1610.3345615547937, 2013.8523056765223], [-1553.1845615512907, 2088.8023056766515]], "source": 1316236344, "length": 19.898656795536688}, {"destination": 1316236467, "path": [[-1610.3345615547937, 2013.8523056765223], [-1717.9345615545571, 2087.7023056780076]], "source": 1316236344, "length": 26.23895811904555}, {"destination": 1316236702, "path": [[-1610.3345615547937, 2013.8523056765223], [-1438.9845615525587, 1934.0523056765592]], "source": 1316236344, "length": 37.106276005352015}, {"destination": 1316237054, "path": [[-1610.3345615547937, 2013.8523056765223], [-1658.8845615501668, 1950.1023056776035]], "source": 1316236344, "length": 16.918761885264985}, {"destination": 479294057, "path": [[-2910.5345615505485, -3279.1476943234698], [-2816.5345615533965, -3044.6476943222224]], "source": 477621305, "length": 55.12888361090379}, {"destination": 479294074, "path": [[-2910.5345615505485, -3279.1476943234698], [-2820.334561555171, -3272.94769432207], [-2758.5345615506185, -3261.697694322052], [-2630.584561551075, -3242.947694323206], [-2530.5345615507235, -3229.747694321716]], "source": 477621305, "length": 73.15869741645689}, {"destination": 1328999572, "path": [[2884.9654384472956, 7388.7523056779255], [3147.7154384447203, 7406.052305677591]], "source": 1328999482, "length": 50.12321103461585}, {"destination": 1328999420, "path": [[2884.9654384472956, 7388.7523056779255], [2564.365438445293, 7372.052305678168]], "source": 1328999482, "length": 61.09144845250853}, {"destination": 1328999436, "path": [[2884.9654384472956, 7388.7523056779255], [2884.9654384472956, 7274.052305676903]], "source": 1328999482, "length": 25.508145401245766}, {"destination": 1328999601, "path": [[2884.9654384472956, 7388.7523056779255], [2872.7654384468337, 7516.552305677493]], "source": 1328999482, "length": 28.51605015852064}, {"destination": 1317671343, "path": [[694.865438447323, 1227.9023056773754], [712.7154384463097, 1012.0023056767735]], "source": 475974715, "length": 48.13385565623199}, {"destination": 1831147407, "path": [[694.865438447323, 1227.9023056773754], [590.7654384458283, 1239.2523056767857], [448.76543844907246, 1251.7523056772006], [42.665438449773774, 1266.00230567675]], "source": 475974715, "length": 124.40130902938492}, {"destination": 1582517384, "path": [[-8559.03456155005, -3581.897694322933], [-8605.734561555779, -3553.3976943220578]], "source": 1582517308, "length": 10.910555465644524}, {"destination": 1582517386, "path": [[-8559.03456155005, -3581.897694322933], [-8497.53456155611, -3619.297694323009]], "source": 1582517308, "length": 14.350959422920445}, {"destination": 476681029, "path": [[-8559.03456155005, -3581.897694322933], [-8570.084561554835, -3592.597694321853], [-8578.134561552986, -3605.2476943222446], [-8580.834561556116, -3624.74769432275], [-8575.484561553993, -3656.847694323062], [-8570.084561554835, -3713.0476943225685], [-8574.13456155598, -3761.1976943221493], [-8591.53456155326, -3803.597694322036], [-8612.334561554746, -3827.9476943223754]], "source": 1582517308, "length": 57.93262773515959}, {"destination": 1316237000, "path": [[-539.0845615522721, 2157.8523056771105], [-738.9345615536058, 2225.3523056772196]], "source": 1316236349, "length": 40.8644933056042}, {"destination": 1316236747, "path": [[-539.0845615522721, 2157.8523056771105], [-506.1845615514926, 2235.602305677986]], "source": 1316236349, "length": 18.38784383572614}, {"destination": 1316236955, "path": [[-539.0845615522721, 2157.8523056771105], [-161.73456155144095, 2044.1523056771161]], "source": 1316236349, "length": 76.08866114916314}, {"destination": 1316237191, "path": [[-539.0845615522721, 2157.8523056771105], [-572.6345615499895, 2078.552305677661]], "source": 1316236349, "length": 18.754013435762428}, {"destination": 1328999521, "path": [[3285.265438449869, 6749.502305677169], [3255.515438446821, 6874.752305677134]], "source": 1328999487, "length": 28.423452744680308}, {"destination": 856909363, "path": [[3285.265438449869, 6749.502305677169], [3183.7654384432312, 6739.552305678131], [2899.5154384432453, 6726.8523056771555]], "source": 1328999487, "length": 73.56899772870386}, {"destination": 856909369, "path": [[3285.265438449869, 6749.502305677169], [3419.5654384490126, 6768.852305677698], [3632.0654384454087, 6796.952305677451]], "source": 1328999487, "length": 66.8010857393169}, {"destination": 1316236504, "path": [[-2252.2845615569054, 2934.9523056776407], [-2268.184561550868, 2913.3523056774634]], "source": 1316236352, "length": 5.6755193071563905}, {"destination": 1316236849, "path": [[-2252.2845615569054, 2934.9523056776407], [-2136.3345615554863, 2881.3523056765434]], "source": 1316236352, "length": 25.067268943684937}, {"destination": 1316236839, "path": [[-2252.2845615569054, 2934.9523056776407], [-2232.4845615528943, 2961.9023056781657]], "source": 1316236352, "length": 7.078899181744607}, {"destination": 1316236744, "path": [[-1723.2845615566816, 3927.3023056782818], [-1870.7845615537622, 3980.7523056776263]], "source": 1316236353, "length": 30.467026984210225}, {"destination": 1316237067, "path": [[179.96543844844837, 3846.202305677338], [152.66543844916214, 3855.402305678268], [-35.934561552153355, 3919.0023056772106]], "source": 1316236355, "length": 44.13826917822321}, {"destination": 654402303, "path": [[179.96543844844837, 3846.202305677338], [548.4154384447493, 3722.002305677208]], "source": 1316236355, "length": 75.32137933569966}, {"destination": 1316237079, "path": [[179.96543844844837, 3846.202305677338], [144.01543844400067, 3766.7023056773273]], "source": 1316236355, "length": 18.956207290165565}, {"destination": 1315678744, "path": [[-4609.1345615550945, -5038.3476943220985], [-4321.284561555672, -5140.947694322051]], "source": 1315678745, "length": 59.30045844387119}, {"destination": 1315678805, "path": [[-4609.1345615550945, -5038.3476943220985], [-4573.634561552353, -4969.147694323439]], "source": 1315678745, "length": 16.80491231997422}, {"destination": 1315678807, "path": [[-4609.1345615550945, -5038.3476943220985], [-4840.4845615550585, -4945.747694321767]], "source": 1315678745, "length": 48.57299737106203}, {"destination": 481390834, "path": [[-3137.634561554137, 608.6523056776372], [-3199.234561556352, 535.1523056766894], [-3296.734561551773, 274.0523056772304], [-3303.1345615555097, 211.30230567756314], [-3423.8345615520416, -117.49769432256585]], "source": 481397829, "length": 171.7131644652808}, {"destination": 481395518, "path": [[-3137.634561554137, 608.6523056776372], [-3073.6345615522964, 651.9023056767992], [-2816.184561552859, 968.102305677121]], "source": 481397829, "length": 101.1979978029478}, {"destination": 483098150, "path": [[-3137.634561554137, 608.6523056776372], [-3346.484561554064, 678.3023056780024], [-3475.3345615570197, 720.6023056767208], [-3602.884561551889, 754.6523056767285]], "source": 481397829, "length": 94.29009337614563}, {"destination": 1316237078, "path": [[-3137.634561554137, 608.6523056776372], [-3101.28456155212, 494.75230567708195], [-2949.4845615545273, 434.2523056770631]], "source": 481397829, "length": 58.106453421096504}, {"destination": 623413761, "path": [[2587.265438450004, 6993.752305676892], [2603.615438445672, 6723.752305678232]], "source": 1328999494, "length": 60.12576532097405}, {"destination": 1328999547, "path": [[2587.265438450004, 6993.752305676892], [2578.6654384489793, 7135.952305677762]], "source": 1328999494, "length": 31.66633917401668}, {"destination": 1328999557, "path": [[2587.265438450004, 6993.752305676892], [2718.6654384436792, 6996.502305677055], [2823.615438444449, 6992.55230567708]], "source": 1328999494, "length": 44.98086453442863}, {"destination": 1316236490, "path": [[-1090.2845615561318, 3101.5523056776574], [-1050.3345615546777, 3176.552305676594]], "source": 1316236359, "length": 18.328194292264797}, {"destination": 1316237188, "path": [[-1090.2845615561318, 3101.5523056776574], [-1127.8345615508556, 3108.452305676579], [-1230.3845615520004, 3146.802305677099]], "source": 1316236359, "length": 28.59057821188469}, {"destination": 1316236706, "path": [[-1090.2845615561318, 3101.5523056776574], [-1150.334561550892, 3010.4023056782835]], "source": 1316236359, "length": 23.266735717200444}, {"destination": 1316237210, "path": [[-2018.3345615549797, 3943.4023056781343], [-1903.9345615539105, 3905.6523056775204]], "source": 1316236361, "length": 23.320903865156012}, {"destination": 1316236426, "path": [[14.765438443475887, 3129.1023056780887], [-159.53456155415324, 3215.5023056770206]], "source": 1316236363, "length": 38.31523941937673}, {"destination": 623412587, "path": [[2845.2154384481787, 7847.852305676639], [2539.8654384432007, 7801.052305676848]], "source": 1328999500, "length": 59.00365032072191}, {"destination": 1328999590, "path": [[2845.2154384481787, 7847.852305676639], [2858.9654384489904, 7661.202305676796]], "source": 1328999500, "length": 41.59147174617669}, {"destination": 622622494, "path": [[2845.2154384481787, 7847.852305676639], [3071.7154384447554, 7909.8523056782]], "source": 1328999500, "length": 45.233719856216375}, {"destination": 1316236673, "path": [[-3060.934561553097, 1213.8523056766103], [-3048.0845615556973, 1233.4523056782841]], "source": 1316236365, "length": 4.996526738647108}, {"destination": 1316236875, "path": [[-3060.934561553097, 1213.8523056766103], [-3093.334561555139, 1164.5523056778018]], "source": 1316236365, "length": 12.57670550761334}, {"destination": 1316236765, "path": [[-3060.934561553097, 1213.8523056766103], [-2940.9845615546715, 1165.652305678222]], "source": 1316236365, "length": 25.204239778267393}, {"destination": 1324294866, "path": [[3385.115438447883, 5582.552305677169], [3392.315438446758, 5554.152305677462]], "source": 1328999502, "length": 6.462586157666451}, {"destination": 1324294410, "path": [[3385.115438447883, 5582.552305677169], [3371.865438445809, 5634.702305677309], [3354.1654384450226, 5690.002305676955]], "source": 1328999502, "length": 24.618430399306664}, {"destination": 1328999518, "path": [[3385.115438447883, 5582.552305677169], [3622.6154384451092, 5663.702305676921], [3649.415438445658, 5810.502305678256], [3980.6154384436354, 5878.852305677639]], "source": 1328999502, "length": 146.4855707709014}, {"destination": 1316237210, "path": [[-1739.3845615529813, 3860.8023056774246], [-1903.9345615539105, 3905.6523056775204]], "source": 1316236367, "length": 32.84628757053182}, {"destination": 476559988, "path": [[-6.584561553779622, 4420.302305677026], [40.36543844421203, 4499.502305677083]], "source": 1316236368, "length": 19.747482691505073}, {"destination": 1316237198, "path": [[-6.584561553779622, 4420.302305677026], [140.8654384462693, 4367.752305677542]], "source": 1316236368, "length": 30.380969923415144}, {"destination": 1328999408, "path": [[2174.2154384440937, 7294.702305676637], [2166.165438445944, 7131.85230567781]], "source": 1328999505, "length": 36.24855593163983}, {"destination": 1316237080, "path": [[-70.28456155211416, 2225.55230567778], [-293.6845615550965, 2303.352305677464]], "source": 1316236371, "length": 45.87415248918871}, {"destination": 476552806, "path": [[-70.28456155211416, 2225.55230567778], [-29.334561553184813, 2306.752305678117]], "source": 1316236371, "length": 19.665846684168027}, {"destination": 479297994, "path": [[-2088.9345615557886, 6234.052305677195], [-2381.6845615556304, 6272.252305677739], [-2439.3345615507656, 6277.70230567748]], "source": 603884628, "length": 67.35653503273666}, {"destination": 654393155, "path": [[-2088.9345615557886, 6234.052305677195], [-2194.6345615546647, 5951.702305678097]], "source": 603884628, "length": 65.9316836105815}, {"destination": 1889249243, "path": [[-3667.4845615536356, -3354.247694321799], [-3834.5345615553583, -3327.5976943230035]], "source": 1889249272, "length": 32.31404645078992}, {"destination": 1316237235, "path": [[-2143.78456155373, 2616.3023056771094], [-2177.484561556753, 2552.8523056781437]], "source": 1316236374, "length": 15.498045729173098}, {"destination": 1316236565, "path": [[-2143.78456155373, 2616.3023056771094], [-2281.184561553573, 2665.752305677671], [-2405.434561552511, 2726.9523056769885]], "source": 1316236374, "length": 55.62019550493146}, {"destination": 1316236471, "path": [[-2143.78456155373, 2616.3023056771094], [-2117.5845615530875, 2665.752305677671], [-2216.7845615541637, 2713.9023056772517], [-2356.2345615530944, 2793.802305676607]], "source": 1316236374, "length": 65.68964464495627}, {"destination": 482731180, "path": [[-2265.83456155538, 5761.602305677016], [-2519.7845615565484, 5922.502305677924]], "source": 603884631, "length": 60.11054874122609}, {"destination": 1328999568, "path": [[2388.7654384466828, 6615.702305676763], [2077.6654384491167, 6622.552305676876], [2072.2654384499606, 6707.452305677819]], "source": 1328999512, "length": 78.09900808979607}, {"destination": 1316236785, "path": [[-352.7845615565184, 2472.7523056782275], [-288.2845615559404, 2457.002305677136]], "source": 1316236378, "length": 12.757075633186906}, {"destination": 1316236843, "path": [[-352.7845615565184, 2472.7523056782275], [-400.9345615543225, 2484.5523056775673]], "source": 1316236378, "length": 9.525766567650514}, {"destination": 1316236963, "path": [[-352.7845615565184, 2472.7523056782275], [-331.23456155692566, 2523.5523056768016], [-259.9845615520735, 2662.652305676971]], "source": 1316236378, "length": 45.789694996453434}, {"destination": 1328999408, "path": [[2402.165438446957, 7108.902305677844], [2166.165438445944, 7131.85230567781]], "source": 1328999515, "length": 45.176499437377245}, {"destination": 4394577740, "path": [[-2090.7345615555073, -8112.847694322411], [-2069.1845615559146, -8037.097694321816], [-2010.5345615561987, -7880.247694322051], [-1982.434561554669, -7808.597694323183]], "source": 103795804, "length": 70.76442583365773}, {"destination": 1315242557, "path": [[-2090.7345615555073, -8112.847694322411], [-2108.834561553863, -8172.747694322524], [-2190.9345615540587, -8403.497694322581]], "source": 103795804, "length": 67.39702838067178}, {"destination": 103831022, "path": [[-2090.7345615555073, -8112.847694322411], [-2053.434561553047, -8121.597694323413], [-2024.8345615527796, -8124.397694322382], [-1743.2845615559245, -8122.497694323272]], "source": 103795804, "length": 66.36348003286156}, {"destination": 103795925, "path": [[-2090.7345615555073, -8112.847694322411], [-2162.684561554329, -8099.347694322745], [-2273.0845615512862, -8084.4476943227055], [-2395.9345615551797, -8067.9476943217305], [-2571.0345615550523, -8055.047694321971], [-2694.7845615552524, -8049.59769432223]], "source": 103795804, "length": 115.88010414892706}, {"destination": 1316236432, "path": [[-1562.884561550959, 2591.402305677448], [-1326.3345615541766, 2475.352305676637]], "source": 1316236381, "length": 51.86473057838222}, {"destination": 1316236385, "path": [[-1562.884561550959, 2591.402305677448], [-1692.6845615543584, 2657.3023056766233]], "source": 1316236381, "length": 28.708198391484345}, {"destination": 1316236722, "path": [[-1562.884561550959, 2591.402305677448], [-1602.284561556644, 2531.3523056773593]], "source": 1316236381, "length": 15.313176421140579}, {"destination": 1316236446, "path": [[-1562.884561550959, 2591.402305677448], [-1529.684561553779, 2641.952305676654]], "source": 1316236381, "length": 12.893755586227453}, {"destination": 1328999608, "path": [[3980.6154384436354, 5878.852305677639], [3965.7154384471482, 6007.852305677019], [3944.6154384492615, 6089.802305677239]], "source": 1328999518, "length": 47.489389800379115}, {"destination": 1328999502, "path": [[3980.6154384436354, 5878.852305677639], [3649.415438445658, 5810.502305678256], [3622.6154384451092, 5663.702305676921], [3385.115438447883, 5582.552305677169]], "source": 1328999518, "length": 146.4855707709014}, {"destination": 1324294654, "path": [[3980.6154384436354, 5878.852305677639], [4040.91543844487, 5356.852305677507]], "source": 1328999518, "length": 116.65277894312837}, {"destination": 1328999431, "path": [[3980.6154384436354, 5878.852305677639], [4185.865438444125, 5904.552305677768], [4239.51543844936, 5872.452305677456], [4403.115438449845, 5906.852305678001], [4419.215438446145, 5945.852305677235], [4702.465438448655, 6007.052305676552]], "source": 1328999518, "length": 148.71233175642683}, {"destination": 1328999472, "path": [[1938.615438447755, 6806.952305677072], [1930.1154384478991, 6739.552305678131], [1892.56543844607, 6585.852305677875], [1844.2654384429602, 6535.402305678062], [1820.1654384455423, 6521.65230567725]], "source": 1328999519, "length": 70.00549914008973}, {"destination": 1328999459, "path": [[1938.615438447755, 6806.952305677072], [2075.0154384430175, 6801.552305677916]], "source": 1328999519, "length": 25.970871062706095}, {"destination": 1328999422, "path": [[1938.615438447755, 6806.952305677072], [1509.265438443208, 6823.902305677976]], "source": 1328999519, "length": 81.74883386091051}, {"destination": 1316236544, "path": [[-1692.6845615543584, 2657.3023056766233], [-1735.984561555881, 2598.5023056769305]], "source": 1316236385, "length": 15.453202258397885}, {"destination": 1316236841, "path": [[-1692.6845615543584, 2657.3023056766233], [-1649.9345615557104, 2715.352305678209]], "source": 1316236385, "length": 15.256569953379882}, {"destination": 1316236381, "path": [[-1692.6845615543584, 2657.3023056766233], [-1562.884561550959, 2591.402305677448]], "source": 1316236385, "length": 28.708198391484345}, {"destination": 1316236407, "path": [[-1692.6845615543584, 2657.3023056766233], [-1826.284561552427, 2730.502305677618]], "source": 1316236385, "length": 30.176030150642912}, {"destination": 1328999473, "path": [[1460.3154384431605, 7234.952305678277], [1720.9154384474346, 7244.252305676824], [1745.0654384489894, 7225.902305677323], [1750.4154384440085, 7166.252305676579], [1959.615438444473, 7147.902305677078], [1989.1154384481524, 7102.002305677146], [1973.4654384464534, 6984.702305677714]], "source": 1328999522, "length": 146.9602684575773}, {"destination": 623414114, "path": [[1460.3154384431605, 7234.952305678277], [1466.7154384468972, 7185.752305677084], [1498.915438446602, 7057.252305678219]], "source": 1328999522, "length": 40.23547535026194}, {"destination": 623413798, "path": [[1460.3154384431605, 7234.952305678277], [1450.6154384434922, 7309.602305676677], [1442.0154384495731, 7665.752305676677]], "source": 1328999522, "length": 95.92439901568828}, {"destination": 1316236747, "path": [[-248.0845615551175, 2188.652305678218], [-331.23456155692566, 2186.3523056779854], [-506.1845615514926, 2235.602305677986]], "source": 1316236387, "length": 50.85053859969514}, {"destination": 1316236333, "path": [[159.6154384486681, 4168.152305677353], [71.11543844473545, 4181.952305676972]], "source": 1316236389, "length": 17.108934752565013}, {"destination": 1316237110, "path": [[159.6154384486681, 4168.152305677353], [292.61543844683047, 4410.2523056768205]], "source": 1316236389, "length": 59.48665082557892}, {"destination": 1316237229, "path": [[159.6154384486681, 4168.152305677353], [296.4154384486051, 4108.5523056771935]], "source": 1316236389, "length": 29.19939811935623}, {"destination": 1316236804, "path": [[-1401.784561551267, 2017.3023056777595], [-1446.0345615532333, 2035.4523056766993]], "source": 1316236392, "length": 9.333654628462671}, {"destination": 1316237221, "path": [[-1401.784561551267, 2017.3023056777595], [-1357.534561556406, 1999.1523056770434], [-1342.734561553982, 2036.602305677704]], "source": 1316236392, "length": 18.124286046263688}, {"destination": 1316236702, "path": [[-1401.784561551267, 2017.3023056777595], [-1438.9845615525587, 1934.0523056765592]], "source": 1316236392, "length": 19.819917325334732}, {"destination": 1320103998, "path": [[2831.165438443861, 3048.8023056776115], [2831.165438443861, 3130.352305676709]], "source": 1320104097, "length": 18.135898025792983}, {"destination": 1328999521, "path": [[3230.91543844356, 6998.552305677918], [3255.515438446821, 6874.752305677134]], "source": 1328999530, "length": 27.926835120197246}, {"destination": 1328999423, "path": [[3230.91543844356, 6998.552305677918], [2901.065438443595, 6989.602305678133]], "source": 1328999530, "length": 62.76890697719881}, {"destination": 1328999463, "path": [[3230.91543844356, 6998.552305677918], [3171.965438447444, 7294.702305676637]], "source": 1328999530, "length": 66.80844532766092}, {"destination": 1776086159, "path": [[4601.0654384431855, -6533.647694322298], [4639.965438443028, -6578.397694323002]], "source": 1776086123, "length": 12.399890348551187}, {"destination": 483106120, "path": [[-4166.5845615526105, 5548.8523056776985], [-4799.934561553699, 5753.502305678282]], "source": 483106129, "length": 128.77045646587104}, {"destination": 601145284, "path": [[-4166.5845615526105, 5548.8523056776985], [-3615.134561556488, 5375.402305677568], [-3250.284561552519, 5206.002305676804], [-2880.3845615570367, 5000.352305676969]], "source": 483106129, "length": 274.62015855888956}, {"destination": 483108069, "path": [[-4166.5845615526105, 5548.8523056776985], [-4127.034561555831, 5789.152305677448], [-4031.734561550593, 6065.452305676899], [-4009.8845615545997, 6125.452305678181]], "source": 483106129, "length": 132.0063350431204}, {"destination": 476681025, "path": [[-8418.534561556611, -3579.997694322046], [-8389.034561552933, -3544.4476943222726], [-8305.384561552386, -3536.1476943229773], [-8254.384561553252, -3576.297694323216], [-8253.584561551008, -3617.8476943220517], [-8209.334561556148, -3656.847694323062], [-8124.834561556327, -3714.147694322989], [-8092.684561553653, -3724.4976943231477], [-8061.834561551961, -3725.647694322376], [-7962.584561553854, -3772.647694322728], [-7907.584561550607, -3799.047694322155], [-7891.484561554307, -3829.9976943232396], [-7909.184561555094, -3883.0476943232384]], "source": 1582517359, "length": 146.49982557129155}, {"destination": 1582517386, "path": [[-8418.534561556611, -3579.997694322046], [-8441.334561553049, -3584.597694322511], [-8458.784561554467, -3592.597694321853], [-8497.53456155611, -3619.297694323009]], "source": 1582517359, "length": 17.684442038768395}, {"destination": 1582517271, "path": [[-8418.534561556611, -3579.997694322046], [-8419.884561554625, -3606.397694323249], [-8422.58456155065, -3624.74769432275], [-8448.684561550124, -3649.097694323089]], "source": 1582517359, "length": 17.33303897946505}, {"destination": 1205027230, "path": [[4645.315438445152, -6514.197694322376], [4682.81543844995, -6561.347694322705]], "source": 1776086130, "length": 12.680189862208726}, {"destination": 1316237089, "path": [[-2635.8845615561677, 1664.702305676613], [-2621.284561556081, 1695.4523056771363]], "source": 1316236404, "length": 7.381191686518091}, {"destination": 1316237156, "path": [[-2635.8845615561677, 1664.702305676613], [-2656.184561551811, 1622.0523056773573]], "source": 1316236404, "length": 10.24027277109091}, {"destination": 1316236669, "path": [[-2635.8845615561677, 1664.702305676613], [-2852.484561550739, 1741.3523056770687], [-2844.434561552589, 1780.3523056780791], [-2935.884561551916, 1820.0023056778036]], "source": 1316236404, "length": 72.88673764044324}, {"destination": 1328999488, "path": [[5223.865438445329, 6654.702305677773], [5205.115438450037, 6714.352305676741], [5231.91543844348, 6751.052305677518], [5430.4154384468, 6888.652305677922], [5518.915438443628, 6923.102305677276], [5651.065438449621, 6832.552305677808]], "source": 1328999542, "length": 122.65903222712325}, {"destination": 1328999570, "path": [[5223.865438445329, 6654.702305677773], [5039.265438448127, 6538.3023056782]], "source": 1328999542, "length": 43.621462253350536}, {"destination": 1328999531, "path": [[5223.865438445329, 6654.702305677773], [5320.415438447412, 6512.452305678096], [5261.4154384471585, 6473.452305677085], [5131.06543844799, 6428.452305677012]], "source": 1328999542, "length": 77.49683738125562}, {"destination": 1316236497, "path": [[-1826.284561552427, 2730.502305677618], [-1790.9845615520226, 2781.2023056768]], "source": 1316236407, "length": 13.122741778591003}, {"destination": 1316236385, "path": [[-1826.284561552427, 2730.502305677618], [-1692.6845615543584, 2657.3023056766233]], "source": 1316236407, "length": 30.176030150642912}, {"destination": 1316237102, "path": [[-1826.284561552427, 2730.502305677618], [-1871.2345615554682, 2665.952305678232]], "source": 1316236407, "length": 16.708096630889536}, {"destination": 1316236439, "path": [[-1826.284561552427, 2730.502305677618], [-1967.3845615528762, 2789.6023056772633], [-2056.3845615555465, 2836.0023056777095]], "source": 1316236407, "length": 49.70424644494024}, {"destination": 1316236681, "path": [[-66.08456155277054, 4305.752305677757], [-37.48456155250324, 4369.752305677821]], "source": 1316236408, "length": 15.23706291084274}, {"destination": 1316236644, "path": [[-66.08456155277054, 4305.752305677757], [92.56543844315956, 4246.152305677598]], "source": 1316236408, "length": 32.95613481052453}, {"destination": 1316236444, "path": [[224.01543844807748, 3936.502305677436], [-0.28456155121148186, 4006.5523056771467]], "source": 1316236410, "length": 45.414574525081555}, {"destination": 1316237003, "path": [[-2973.0845615532075, 1357.402305677269], [-3011.234561554943, 1291.1523056775563]], "source": 1316236411, "length": 16.423006589018296}, {"destination": 1316237213, "path": [[-2973.0845615532075, 1357.402305677269], [-2934.934561551472, 1423.7023056775656]], "source": 1316236411, "length": 16.432881790131223}, {"destination": 1316236550, "path": [[-2973.0845615532075, 1357.402305677269], [-3160.9345615564166, 1420.2523056781047], [-3249.434561553244, 1491.3523056776512], [-3356.6345615554383, 1555.6023056770841]], "source": 1316236411, "length": 86.35032220295685}, {"destination": 1581175146, "path": [[2702.71543844558, -6010.8976943222815], [2679.915438449143, -6038.347694323321]], "source": 1769172092, "length": 7.488474145763692}, {"destination": 93466414, "path": [[2702.71543844558, -6010.8976943222815], [2747.1154384457463, -5957.2976943229605]], "source": 1769172092, "length": 14.607413564333521}, {"destination": 4451470239, "path": [[2702.71543844558, -6010.8976943222815], [3298.965438446544, -6270.447694323167]], "source": 1769172092, "length": 127.22275964722974}, {"destination": 1328999590, "path": [[3091.6654384469666, 7663.45230567822], [2858.9654384489904, 7661.202305676796]], "source": 1328999549, "length": 44.26292618489422}, {"destination": 622622494, "path": [[3091.6654384469666, 7663.45230567822], [3071.7154384447554, 7909.8523056782]], "source": 1328999549, "length": 54.92816756093688}, {"destination": 1328999575, "path": [[3091.6654384469666, 7663.45230567822], [3122.7654384480275, 7520.652305677444]], "source": 1328999549, "length": 32.303446102045775}, {"destination": 1315242513, "path": [[-3292.5845615565663, -8416.097694322389], [-3288.084561553717, -8386.697694323431]], "source": 1315242494, "length": 6.593742468078013}, {"destination": 1315242516, "path": [[-3292.5845615565663, -8416.097694322389], [-3540.984561553273, -8395.647694323216]], "source": 1315242494, "length": 47.44853520574615}, {"destination": 1776086120, "path": [[3440.2154384451933, -6148.54769432327], [3746.765438449984, -6288.44769432213]], "source": 1769172096, "length": 66.07287826573896}, {"destination": 1769171875, "path": [[3440.2154384451933, -6148.54769432327], [3390.315438444702, -6125.797694322088]], "source": 1769172096, "length": 10.752459290262744}, {"destination": 4451470238, "path": [[3440.2154384451933, -6148.54769432327], [3421.9154384445005, -6177.847694322835]], "source": 1769172096, "length": 7.386684326509133}, {"destination": 1769171987, "path": [[6183.965438445683, -8142.247694323146], [6056.365438446675, -8279.19769432306]], "source": 1769172100, "length": 38.93869071189771}, {"destination": 1769172086, "path": [[6183.965438445683, -8142.247694323146], [6186.615438444676, -8111.297694322062]], "source": 1769172100, "length": 6.902269473810276}, {"destination": 1316237165, "path": [[-1292.2345615535846, 2794.9523056776115], [-1312.8345615527337, 2763.7023056765743]], "source": 1316236421, "length": 7.977966125094119}, {"destination": 1316236614, "path": [[-1292.2345615535846, 2794.9523056776115], [-1271.0345615545293, 2827.2023056779008]], "source": 1316236421, "length": 8.227128863656972}, {"destination": 1316236485, "path": [[-1292.2345615535846, 2794.9523056776115], [-1318.2845615560268, 2810.252305676997], [-1404.7845615507981, 2842.902305676631]], "source": 1316236421, "length": 23.992429450181728}, {"destination": 1316236744, "path": [[-1832.3345615556264, 4064.7523056769332], [-1838.634561551089, 4053.502305676915], [-1870.7845615537622, 3980.7523056776263]], "source": 1316236422, "length": 20.07029929662355}, {"destination": 1316236825, "path": [[-1832.3345615556264, 4064.7523056769332], [-1790.5845615544536, 4136.152305678209]], "source": 1316236422, "length": 17.75368729613179}, {"destination": 1316237203, "path": [[-1832.3345615556264, 4064.7523056769332], [-1672.3345615545782, 3993.8523056779472], [-1546.2345615517847, 3892.902305677737]], "source": 1316236422, "length": 67.12330031275144}, {"destination": 639308705, "path": [[-609.1345615502064, 2555.4523056765534], [-390.73456155591657, 2932.052305677502]], "source": 1316236423, "length": 93.4860971209864}, {"destination": 1316236843, "path": [[-609.1345615502064, 2555.4523056765534], [-556.5345615536899, 2530.4023056769156], [-400.9345615543225, 2484.5523056775673]], "source": 1316236423, "length": 42.75041278700698}, {"destination": 1316236948, "path": [[-609.1345615502064, 2555.4523056765534], [-640.5845615518047, 2501.252305677326]], "source": 1316236423, "length": 13.45607192068499}, {"destination": 1582517346, "path": [[-8605.734561555779, -3553.3976943220578], [-8664.784561553062, -3517.4476943229392], [-8715.834561556334, -3579.4476943227237]], "source": 1582517384, "length": 30.647019668096767}, {"destination": 1582517308, "path": [[-8605.734561555779, -3553.3976943220578], [-8559.03456155005, -3581.897694322933]], "source": 1582517384, "length": 10.910555465644524}, {"destination": 1582517279, "path": [[-8605.734561555779, -3553.3976943220578], [-8630.434561553102, -3582.2976943222784], [-8646.534561556507, -3616.6976943228237], [-8655.934561552669, -3651.0976943233686], [-8653.234561556645, -3684.3476943229093], [-8650.584561550546, -3721.0476943219105], [-8657.284561550681, -3756.59769432346], [-8679.734561553687, -3800.897694322458]], "source": 1582517384, "length": 58.39117699967432}, {"destination": 1404618528, "path": [[2461.7654384471166, 9061.80230567699], [1815.1154384469237, 9575.402305676662]], "source": 1404618604, "length": 167.85341495337306}, {"destination": 1404618501, "path": [[2461.7654384471166, 9061.80230567699], [2877.215438445546, 8730.402305676676]], "source": 1404618604, "length": 108.05604093494759}, {"destination": 1404618518, "path": [[2461.7654384471166, 9061.80230567699], [2434.1654384443245, 9029.00230567738], [2384.16543844977, 8988.402305677213]], "source": 1404618604, "length": 22.101486262209107}, {"destination": 4345393208, "path": [[5328.865438443131, -6862.1976943230575], [5519.015438444796, -6788.447694322741], [5773.81543844524, -6691.847694321851], [6133.715438444653, -6551.997694321798], [6234.16543844968, -6512.997694322565], [6327.01543844405, -6473.9976943233305], [6449.2154384439, -6403.997694322427], [6520.465438448753, -6358.197694321888], [6627.61543844681, -6282.647694321852]], "source": 495651978, "length": 279.84354661884856}, {"destination": 1785697745, "path": [[5328.865438443131, -6862.1976943230575], [5288.015438445371, -6872.697694323193]], "source": 495651978, "length": 8.110731285624592}, {"destination": 1316236724, "path": [[-1771.584561552686, 3798.852305678224], [-1933.6845615569587, 3838.3523056779723]], "source": 1316236427, "length": 32.05642156103545}, {"destination": 1316236708, "path": [[-730.884561555456, 3583.4523056781363], [-775.4845615508543, 3510.852305677048]], "source": 1316236428, "length": 18.23798356569461}, {"destination": 476559922, "path": [[-730.884561555456, 3583.4523056781363], [-624.434561551368, 3530.2023056775765]], "source": 1316236428, "length": 23.454239927617234}, {"destination": 481498188, "path": [[-730.884561555456, 3583.4523056781363], [-750.8345615505618, 3593.4023056771734], [-1042.9345615534658, 3743.502305677993]], "source": 1316236428, "length": 69.20259546175984}, {"destination": 1316237156, "path": [[-2686.384561556565, 1558.502305677223], [-2656.184561551811, 1622.0523056773573]], "source": 1316236430, "length": 15.255388418434965}, {"destination": 1316236653, "path": [[-2686.384561556565, 1558.502305677223], [-2700.4345615537773, 1528.9023056777041]], "source": 1316236430, "length": 7.104317213909178}, {"destination": 1316236399, "path": [[-2686.384561556565, 1558.502305677223], [-2562.834561551597, 1523.4523056779635]], "source": 1316236430, "length": 24.755767821846504}, {"destination": 1776086123, "path": [[4639.965438443028, -6578.397694323002], [4601.0654384431855, -6533.647694322298]], "source": 1776086159, "length": 12.399890348551187}, {"destination": 1205027230, "path": [[4639.965438443028, -6578.397694323002], [4682.81543844995, -6561.347694322705]], "source": 1776086159, "length": 8.987332329111133}, {"destination": 1785693367, "path": [[4639.965438443028, -6578.397694323002], [4609.565438443042, -6601.047694323014], [4635.615438445484, -6625.747694322115]], "source": 1776086159, "length": 15.06332005568365}, {"destination": 1328999512, "path": [[2072.2654384499606, 6707.452305677819], [2077.6654384491167, 6622.552305676876], [2388.7654384466828, 6615.702305676763]], "source": 1328999568, "length": 78.09900808979607}, {"destination": 1328999459, "path": [[2072.2654384499606, 6707.452305677819], [2075.0154384430175, 6801.552305677916]], "source": 1328999568, "length": 20.933208954526226}, {"destination": 1328999603, "path": [[2072.2654384499606, 6707.452305677819], [2394.165438445839, 6693.702305677008]], "source": 1328999568, "length": 61.30124272509274}, {"destination": 1328999428, "path": [[2340.51543844771, 6968.952305676623], [2099.315438449878, 6979.302305676782]], "source": 1328999569, "length": 45.93383948952689}, {"destination": 1328999425, "path": [[5039.265438448127, 6538.3023056782], [4892.715438444384, 6721.102305677462]], "source": 1328999570, "length": 49.29087494439724}, {"destination": 1328999531, "path": [[5039.265438448127, 6538.3023056782], [5131.06543844799, 6428.452305677012]], "source": 1328999570, "length": 30.02752339569552}, {"destination": 1328999542, "path": [[5039.265438448127, 6538.3023056782], [5223.865438445329, 6654.702305677773]], "source": 1328999570, "length": 43.621462253350536}, {"destination": 1328999482, "path": [[3147.7154384447203, 7406.052305677591], [2884.9654384472956, 7388.7523056779255]], "source": 1328999572, "length": 50.12321103461585}, {"destination": 1328999575, "path": [[3147.7154384447203, 7406.052305677591], [3122.7654384480275, 7520.652305677444]], "source": 1328999572, "length": 25.923979342773386}, {"destination": 1328999463, "path": [[3147.7154384447203, 7406.052305677591], [3171.965438447444, 7294.702305676637]], "source": 1328999572, "length": 25.18885879673253}, {"destination": 1328999601, "path": [[3122.7654384480275, 7520.652305677444], [2872.7654384468337, 7516.552305677493]], "source": 1328999575, "length": 47.55914574142727}, {"destination": 1328999572, "path": [[3122.7654384480275, 7520.652305677444], [3147.7154384447203, 7406.052305677591]], "source": 1328999575, "length": 25.923979342773386}, {"destination": 1328999549, "path": [[3122.7654384480275, 7520.652305677444], [3091.6654384469666, 7663.45230567822]], "source": 1328999575, "length": 32.303446102045775}, {"destination": 1316237131, "path": [[-633.9345615558045, 1856.652305677997], [-521.6345615508544, 1862.9523056770126]], "source": 1316236440, "length": 21.4028347031712}, {"destination": 639308707, "path": [[-633.9345615558045, 1856.652305677997], [-344.53456155603135, 1962.3523056768731], [-224.88456155400627, 1935.7523056768855]], "source": 1316236440, "length": 83.35886121467705}, {"destination": 1316236925, "path": [[-633.9345615558045, 1856.652305677997], [-509.9345615562356, 1999.1523056770434], [-828.8345615525827, 2095.25230567742]], "source": 1316236440, "length": 103.80578140961103}, {"destination": 1316236640, "path": [[-1917.5845615535536, 3285.7023056767075], [-2007.5845615536991, 3317.1523056765295]], "source": 1316236442, "length": 18.49024438512054}, {"destination": 1316236745, "path": [[-1917.5845615535536, 3285.7023056767075], [-1891.0845615565108, 3338.552305677922]], "source": 1316236442, "length": 12.788475758991254}, {"destination": 1316236461, "path": [[-1917.5845615535536, 3285.7023056767075], [-1943.2345615513213, 3234.6023056781805], [-1980.7845615531505, 3266.7023056767166], [-2045.1345615555283, 3287.352305678226], [-2231.7845615518195, 3333.202305677574]], "source": 1316236442, "length": 72.46843886805758}, {"destination": 1316236501, "path": [[-1917.5845615535536, 3285.7023056767075], [-1836.984561556676, 3249.9023056775654]], "source": 1316236442, "length": 17.273031617770854}, {"destination": 1316236681, "path": [[132.8154384481195, 4301.202305677876], [-37.48456155250324, 4369.752305677821]], "source": 1316236443, "length": 35.79745633648726}, {"destination": 1316236410, "path": [[-0.28456155121148186, 4006.5523056771467], [224.01543844807748, 3936.502305677436]], "source": 1316236444, "length": 45.414574525081555}, {"destination": 1316237067, "path": [[-0.28456155121148186, 4006.5523056771467], [-35.934561552153355, 3919.0023056772106]], "source": 1316236444, "length": 20.617388125902732}, {"destination": 1316237012, "path": [[-0.28456155121148186, 4006.5523056771467], [-251.43456155518606, 4091.902305678019]], "source": 1316236444, "length": 51.398747835492955}, {"destination": 1316236974, "path": [[-0.28456155121148186, 4006.5523056771467], [37.365438444680876, 4099.102305676894]], "source": 1316236444, "length": 21.792179771630764}, {"destination": 1316236448, "path": [[-2636.6845615513057, 1305.3023056777135], [-2793.4845615504855, 1367.5023056780587]], "source": 1316236445, "length": 32.871796058492144}, {"destination": 1316236529, "path": [[-2636.6845615513057, 1305.3023056777135], [-2710.3845615528144, 1162.3023056781535]], "source": 1316236445, "length": 34.75337086787982}, {"destination": 482732999, "path": [[-2636.6845615513057, 1305.3023056777135], [-2599.234561550645, 1378.0023056781943]], "source": 1316236445, "length": 17.667175277310818}, {"destination": 1328999473, "path": [[1502.1154384484703, 7004.902305677519], [1973.4654384464534, 6984.702305677714]], "source": 1328999582, "length": 89.76294458038221}, {"destination": 623414114, "path": [[1502.1154384484703, 7004.902305677519], [1498.915438446602, 7057.252305678219]], "source": 1328999582, "length": 11.658132906013165}, {"destination": 1328999422, "path": [[1502.1154384484703, 7004.902305677519], [1509.6154384437455, 6882.952305677037], [1509.265438443208, 6823.902305677976]], "source": 1328999582, "length": 40.29070231672321}, {"destination": 1317671080, "path": [[2216.065438446435, -323.34769432296184], [2206.265438445598, -237.99769432208961]], "source": 481389765, "length": 19.072336920180202}, {"destination": 481389763, "path": [[2216.065438446435, -323.34769432296184], [2050.4654384438936, -393.9976943225787]], "source": 481389765, "length": 35.1940384824173}, {"destination": 481389838, "path": [[2216.065438446435, -323.34769432296184], [2220.465438448116, -341.34769432192513]], "source": 481389765, "length": 4.089943582145903}, {"destination": 1316236445, "path": [[-2793.4845615504855, 1367.5023056780587], [-2636.6845615513057, 1305.3023056777135]], "source": 1316236448, "length": 32.871796058492144}, {"destination": 622622484, "path": [[-1460.9345615568259, 9567.952305676641], [-1635.4345615567922, 8557.152305677108], [-1668.8345615563094, 8367.052305677802]], "source": 479298075, "length": 269.98028346579304}, {"destination": 1404152812, "path": [[-1460.9345615568259, 9567.952305676641], [-1310.3345615519402, 9531.00230567827]], "source": 479298075, "length": 29.800654027489}, {"destination": 1328999601, "path": [[2556.0154384436373, 7509.8023056767715], [2872.7654384468337, 7516.552305677493]], "source": 1328999588, "length": 60.26508406714079}, {"destination": 1328999420, "path": [[2556.0154384436373, 7509.8023056767715], [2564.365438445293, 7372.052305678168]], "source": 1328999588, "length": 30.6754583068174}, {"destination": 1328999433, "path": [[2556.0154384436373, 7509.8023056767715], [2546.9654384480123, 7659.202305676516]], "source": 1328999588, "length": 33.269552946568126}, {"destination": 476680922, "path": [[-7798.33456155643, -3924.347694322705], [-7840.084561550498, -3905.347694322714]], "source": 1582517413, "length": 8.993347276128542}, {"destination": 5021317187, "path": [[-7798.33456155643, -3924.347694322705], [-7651.084561551614, -3690.797694321901]], "source": 1582517413, "length": 59.006017879485825}, {"destination": 5021317178, "path": [[-7798.33456155643, -3924.347694322705], [-7764.334561557007, -3939.3976943227217], [-7703.184561556498, -3966.447694322639]], "source": 1582517413, "length": 20.373828589689893}, {"destination": 1328999433, "path": [[2858.9654384489904, 7661.202305676796], [2546.9654384480123, 7659.202305676516]], "source": 1328999590, "length": 59.34474531830949}, {"destination": 1328999500, "path": [[2858.9654384489904, 7661.202305676796], [2845.2154384481787, 7847.852305676639]], "source": 1328999590, "length": 41.59147174617669}, {"destination": 1328999549, "path": [[2858.9654384489904, 7661.202305676796], [3091.6654384469666, 7663.45230567822]], "source": 1328999590, "length": 44.26292618489422}, {"destination": 1328999601, "path": [[2858.9654384489904, 7661.202305676796], [2872.7654384468337, 7516.552305677493]], "source": 1328999590, "length": 32.275533811465614}, {"destination": 1316237051, "path": [[-76.38456155234508, 3012.1023056768336], [-162.23456155017857, 3044.202305677146]], "source": 1316236456, "length": 17.81956015274663}, {"destination": 1328999420, "path": [[2571.115438449567, 7259.9523056773305], [2564.365438445293, 7372.052305678168]], "source": 1328999593, "length": 24.96314504894546}, {"destination": 1328999547, "path": [[2571.115438449567, 7259.9523056773305], [2578.6654384489793, 7135.952305677762]], "source": 1328999593, "length": 27.61397407680605}, {"destination": 1328999436, "path": [[2571.115438449567, 7259.9523056773305], [2884.9654384472956, 7274.052305676903]], "source": 1328999593, "length": 59.77676405561443}, {"destination": 856909369, "path": [[3558.615438443269, 7175.252305676949], [3632.0654384454087, 6796.952305677451]], "source": 1328999596, "length": 85.28224820627979}, {"destination": 481501845, "path": [[3558.615438443269, 7175.252305676949], [3767.4154384461644, 7221.302305676858], [3982.015438445785, 7276.352305677136], [4056.3154384472, 7312.352305676839], [4239.51543844936, 7090.552305676567], [4506.065438448559, 6677.9523056776925]], "source": 1328999596, "length": 265.0934069089121}, {"destination": 622622495, "path": [[3558.615438443269, 7175.252305676949], [3540.7154384472506, 7267.302305677958], [3486.515438446247, 7478.752305678071], [3373.3154384449904, 7920.652305678288], [3346.5154384444418, 8021.502305677331]], "source": 1328999596, "length": 192.4983001108958}, {"destination": 1316236985, "path": [[-2231.7845615518195, 3333.202305677574], [-2176.584561553341, 3450.2023056770527]], "source": 1316236461, "length": 28.057877452673253}, {"destination": 1316237162, "path": [[-2231.7845615518195, 3333.202305677574], [-2297.284561556978, 3349.3023056774264]], "source": 1316236461, "length": 12.961381251722372}, {"destination": 1316236701, "path": [[-2231.7845615518195, 3333.202305677574], [-2272.734561550749, 3237.7023056771036]], "source": 1316236461, "length": 22.621342567849158}, {"destination": 1316236442, "path": [[-2231.7845615518195, 3333.202305677574], [-2045.1345615555283, 3287.352305678226], [-1980.7845615531505, 3266.7023056767166], [-1943.2345615513213, 3234.6023056781805], [-1917.5845615535536, 3285.7023056767075]], "source": 1316236461, "length": 72.46843886805759}, {"destination": 2049820665, "path": [[3169.0654384490813, -7907.647694322506], [3516.715438443896, -7656.2976943233]], "source": 1769172142, "length": 86.56825726005204}, {"destination": 1769172074, "path": [[3169.0654384490813, -7907.647694322506], [3177.065438443094, -7917.247694322782], [3202.765438444999, -7942.74769432235]], "source": 1769172142, "length": 10.105493287170086}, {"destination": 93466273, "path": [[3169.0654384490813, -7907.647694322506], [3077.9654384431865, -7973.347694322896]], "source": 1769172142, "length": 22.66114928296217}, {"destination": 1328999482, "path": [[2872.7654384468337, 7516.552305677493], [2884.9654384472956, 7388.7523056779255]], "source": 1328999601, "length": 28.51605015852064}, {"destination": 1328999588, "path": [[2872.7654384468337, 7516.552305677493], [2556.0154384436373, 7509.8023056767715]], "source": 1328999601, "length": 60.26508406714079}, {"destination": 1328999590, "path": [[2872.7654384468337, 7516.552305677493], [2858.9654384489904, 7661.202305676796]], "source": 1328999601, "length": 32.275533811465614}, {"destination": 1328999575, "path": [[2872.7654384468337, 7516.552305677493], [3122.7654384480275, 7520.652305677444]], "source": 1328999601, "length": 47.55914574142727}, {"destination": 1328999568, "path": [[2394.165438445839, 6693.702305677008], [2072.2654384499606, 6707.452305677819]], "source": 1328999603, "length": 61.30124272509274}, {"destination": 4273219754, "path": [[681.4654384470487, -1331.5476943223102], [659.6654384480871, -1319.7476943229703]], "source": 4273219709, "length": 4.9055077029458545}, {"destination": 4273219708, "path": [[681.4654384470487, -1331.5476943223102], [653.9654384454252, -1333.347694322029]], "source": 4273219709, "length": 5.244699331356843}, {"destination": 4273219711, "path": [[681.4654384470487, -1331.5476943223102], [701.5154384433231, -1336.3976943221446], [713.8654384490906, -1340.797694322049]], "source": 4273219709, "length": 6.506190554418204}, {"destination": 1316236492, "path": [[-2356.2345615530944, 2793.802305676607], [-2332.734561555583, 2825.6523056775504]], "source": 1316236471, "length": 8.375328431719295}, {"destination": 1316236565, "path": [[-2356.2345615530944, 2793.802305676607], [-2405.434561552511, 2726.9523056769885]], "source": 1316236471, "length": 17.56613365129386}, {"destination": 1316236374, "path": [[-2356.2345615530944, 2793.802305676607], [-2216.7845615541637, 2713.9023056772517], [-2117.5845615530875, 2665.752305677671], [-2143.78456155373, 2616.3023056771094]], "source": 1316236471, "length": 65.68964464495627}, {"destination": 1324294936, "path": [[3944.6154384492615, 6089.802305677239], [3860.6154384481783, 6416.352305677719]], "source": 1328999608, "length": 74.3581430848105}, {"destination": 1328999560, "path": [[3944.6154384492615, 6089.802305677239], [4191.21543844625, 6127.102305677923], [4115.4654384456535, 6458.202305678285]], "source": 1328999608, "length": 122.65994089117336}, {"destination": 1328999518, "path": [[3944.6154384492615, 6089.802305677239], [3965.7154384471482, 6007.852305677019], [3980.6154384436354, 5878.852305677639]], "source": 1328999608, "length": 47.489389800379115}, {"destination": 481499482, "path": [[-1178.5845615506219, 3237.0523056766133], [-1120.8845615513496, 3337.6023056774784]], "source": 1316236473, "length": 24.908929921930014}, {"destination": 1316237188, "path": [[-1178.5845615506219, 3237.0523056766133], [-1230.3845615520004, 3146.802305677099]], "source": 1316236473, "length": 22.35805009659081}, {"destination": 1316236490, "path": [[-1178.5845615506219, 3237.0523056766133], [-1098.3345615542817, 3209.3523056779813], [-1050.3345615546777, 3176.552305676594]], "source": 1316236473, "length": 28.143798682695042}, {"destination": 1316236957, "path": [[-1245.8345615513622, 1881.3023056782895], [-1029.5345615531915, 1787.0523056782163]], "source": 1316236474, "length": 46.16791175039437}, {"destination": 1993253289, "path": [[6208.765438444175, -6284.297694323371], [6148.265438447708, -6338.497694322597]], "source": 1779952828, "length": 16.662182565988708}, {"destination": 1993253290, "path": [[6208.765438444175, -6284.297694323371], [6051.26543844392, -6346.647694321917], [6026.765438448933, -6374.197694322348], [6030.315438444233, -6383.29769432211]], "source": 1779952828, "length": 42.83041422108272}, {"destination": 4470914101, "path": [[6208.765438444175, -6284.297694323371], [6122.515438448772, -6161.647694321815], [6094.665438446611, -6126.647694323139], [6113.115438445504, -6116.74769432291], [6129.465438448278, -6100.847694321843], [6144.165438449534, -6080.097694322717], [6152.315438448852, -6055.797694322962], [6152.415438450021, -6035.147694323228], [6148.365438448877, -6014.747694322864], [6141.5154384434345, -5991.947694322875], [6210.415438445693, -6000.847694322076], [6627.515438445642, -6047.247694322522]], "source": 1779952828, "length": 168.76762351251176}, {"destination": 1779952829, "path": [[6208.765438444175, -6284.297694323371], [6394.065438449559, -6532.2976943225085]], "source": 1779952828, "length": 65.44653415475044}, {"destination": 1779952828, "path": [[6394.065438449559, -6532.2976943225085], [6208.765438444175, -6284.297694323371]], "source": 1779952829, "length": 65.44653415475044}, {"destination": 1205016002, "path": [[6394.065438449559, -6532.2976943225085], [6029.315438446758, -6675.897694321975], [5820.115438446293, -6753.847694323412], [5880.46543844456, -6877.397694323051], [5369.51543844566, -7042.847694322063], [5350.665438449198, -7075.347694321721]], "source": 1779952829, "length": 261.47775008859287}, {"destination": 4470914092, "path": [[6394.065438449559, -6532.2976943225085], [6456.96543844565, -6511.597694322191], [6628.365438444916, -6511.947694322728], [6772.815438445434, -6531.847694322579], [6829.715438449568, -6544.697694321755]], "source": 1779952829, "length": 84.4176635819196}, {"destination": 1316236563, "path": [[-2149.7345615557606, 3803.452305676913], [-1967.3845615528762, 3762.1523056774463]], "source": 1316236478, "length": 35.87604828193116}, {"destination": 1316237221, "path": [[-1286.0845615563221, 2193.252305676907], [-1331.0345615522579, 2061.8523056779027], [-1342.734561553982, 2036.602305677704]], "source": 1316236479, "length": 36.486320460570276}, {"destination": 1316236497, "path": [[-1755.4845615563863, 2832.2523056765194], [-1790.9845615520226, 2781.2023056768]], "source": 1316236481, "length": 13.20865430654193}, {"destination": 1316236951, "path": [[-1755.4845615563863, 2832.2523056765194], [-1892.2845615563233, 2908.9023056769747]], "source": 1316236481, "length": 31.103780091865985}, {"destination": 1316237164, "path": [[-1755.4845615563863, 2832.2523056765194], [-1617.3345615513313, 2759.5523056778147]], "source": 1316236481, "length": 30.849487402782295}, {"destination": 1316236879, "path": [[-1755.4845615563863, 2832.2523056765194], [-1711.634561551989, 2893.852305676958]], "source": 1316236481, "length": 16.037626616464394}, {"destination": 1317671370, "path": [[2050.4654384438936, -393.9976943225787], [1971.6654384467347, -424.1976943220038]], "source": 481389763, "length": 16.421360144803995}, {"destination": 1317671394, "path": [[2050.4654384438936, -393.9976943225787], [2031.4654384492314, -322.29769432312594]], "source": 481389763, "length": 16.34985497112538}, {"destination": 385113789, "path": [[2050.4654384438936, -393.9976943225787], [2068.6654384434178, -458.5476943219646], [2086.215438446004, -491.94769432325813]], "source": 481389763, "length": 22.91010243872193}, {"destination": 481389765, "path": [[2050.4654384438936, -393.9976943225787], [2216.065438446435, -323.34769432296184]], "source": 481389763, "length": 35.1940384824173}, {"destination": 1316236809, "path": [[-1404.7845615507981, 2842.902305676631], [-2025.0845615521484, 2889.1523056771007]], "source": 1316236485, "length": 118.41797672968168}, {"destination": 1316236421, "path": [[-1404.7845615507981, 2842.902305676631], [-1318.2845615560268, 2810.252305676997], [-1292.2345615535846, 2794.9523056776115]], "source": 1316236485, "length": 23.992429450181728}, {"destination": 1316237025, "path": [[-1404.7845615507981, 2842.902305676631], [-1368.8345615534558, 2905.552305676906]], "source": 1316236485, "length": 15.519838164211214}, {"destination": 1769171993, "path": [[5055.465438445594, -7171.247694323312], [5088.115438447005, -7240.197694322604], [5108.415438449754, -7270.747694322566], [5199.565438445575, -7398.147694322787], [5386.815438448877, -7598.4976943228585], [5662.265438445502, -7826.897694322099], [5978.765438449329, -8040.197694322515], [6036.415438444465, -8039.047694323287], [6080.665438446431, -8032.147694322589], [6128.8654384483725, -8065.6976943220825]], "source": 1769172169, "length": 295.5239148067453}, {"destination": 1205016002, "path": [[5055.465438445594, -7171.247694323312], [5212.665438449449, -7113.197694321727], [5243.865438444573, -7132.14769432291], [5350.665438449198, -7075.347694321721]], "source": 1769172169, "length": 63.75164980731981}, {"destination": 1993253324, "path": [[5055.465438445594, -7171.247694323312], [5035.315438448151, -7178.647694322748], [5018.115438446102, -7186.597694323283]], "source": 1769172169, "length": 7.885446552640934}, {"destination": 1316236473, "path": [[-1050.3345615546777, 3176.552305676594], [-1098.3345615542817, 3209.3523056779813], [-1178.5845615506219, 3237.0523056766133]], "source": 1316236490, "length": 28.143798682695042}, {"destination": 1316236682, "path": [[-1050.3345615546777, 3176.552305676594], [-1000.2345615518493, 3270.602305677883]], "source": 1316236490, "length": 22.98378771828868}, {"destination": 1316236359, "path": [[-1050.3345615546777, 3176.552305676594], [-1090.2845615561318, 3101.5523056776574]], "source": 1316236490, "length": 18.328194292264797}, {"destination": 479291272, "path": [[-3851.1845615545326, -849.4476943230467], [-3780.034561550849, -952.997694323443]], "source": 481396599, "length": 26.709101458735066}, {"destination": 1316196952, "path": [[-3851.1845615545326, -849.4476943230467], [-3717.3345615499898, -797.6476943234445], [-3658.0845615503677, -735.2476943225383]], "source": 481396599, "length": 45.81436645561681}, {"destination": 481439262, "path": [[-3851.1845615545326, -849.4476943230467], [-3931.78456155141, -732.0476943224463], [-4043.3845615552855, -526.5476943225877], [-4073.384561550597, -376.09769432300766], [-4012.9845615552995, 93.40230567822516]], "source": 481396599, "length": 219.64782584474466}, {"destination": 1316237033, "path": [[-2332.734561555583, 2825.6523056775504], [-2501.134561555318, 2876.7523056778546]], "source": 1316236492, "length": 33.98330452743454}, {"destination": 1316236570, "path": [[-2332.734561555583, 2825.6523056775504], [-2308.6345615510595, 2858.4023056765773]], "source": 1316236492, "length": 8.606199312926002}, {"destination": 1316236471, "path": [[-2332.734561555583, 2825.6523056775504], [-2356.2345615530944, 2793.802305676607]], "source": 1316236492, "length": 8.375328431719295}, {"destination": 95663349, "path": [[-2122.084561555937, -3182.0976943226497], [-2086.434561554995, -3045.047694323344], [-2036.4345615533352, -2794.0476943228987]], "source": 1889249276, "length": 87.84709520329224}, {"destination": 476792263, "path": [[-2122.084561555937, -3182.0976943226497], [-2052.184561556203, -3181.1976943227905]], "source": 1889249276, "length": 13.29367265489925}, {"destination": 1316236524, "path": [[-1031.2845615558786, 1950.1023056776035], [-1235.7345615541249, 2016.652305677269]], "source": 1316236495, "length": 41.60360499373267}, {"destination": 1316236809, "path": [[-1790.9845615520226, 2781.2023056768], [-1921.7845615528972, 2849.2523056780074], [-2025.0845615521484, 2889.1523056771007]], "source": 1316236497, "length": 50.67503997613507}, {"destination": 1316236481, "path": [[-1790.9845615520226, 2781.2023056768], [-1755.4845615563863, 2832.2523056765194]], "source": 1316236497, "length": 13.20865430654193}, {"destination": 1316236841, "path": [[-1790.9845615520226, 2781.2023056768], [-1649.9345615557104, 2715.352305678209]], "source": 1316236497, "length": 30.56242727407077}, {"destination": 1316236407, "path": [[-1790.9845615520226, 2781.2023056768], [-1826.284561552427, 2730.502305677618]], "source": 1316236497, "length": 13.122741778591003}, {"destination": 1993253320, "path": [[4484.36543844366, -7090.647694322883], [4562.865438444419, -7049.297694322831]], "source": 1769172179, "length": 17.531466911229614}, {"destination": 1489398766, "path": [[4484.36543844366, -7090.647694322883], [4205.415438448767, -7256.247694321872]], "source": 1769172179, "length": 64.57200749679448}, {"destination": 1785693343, "path": [[4484.36543844366, -7090.647694322883], [4493.515438447559, -7103.797694322012], [4510.065438445565, -7096.747694323113], [4614.415438446429, -7037.997694322229]], "source": 1769172179, "length": 30.67793313030367}, {"destination": 103795804, "path": [[-2694.7845615552524, -8049.59769432223], [-2571.0345615550523, -8055.047694321971], [-2395.9345615551797, -8067.9476943217305], [-2273.0845615512862, -8084.4476943227055], [-2162.684561554329, -8099.347694322745], [-2090.7345615555073, -8112.847694322411]], "source": 103795925, "length": 115.88010414892706}, {"destination": 1315242565, "path": [[-2694.7845615552524, -8049.59769432223], [-3027.6345615547484, -8032.34769432315], [-3508.6345615553682, -8004.697694323326]], "source": 103795925, "length": 155.06727746339232}, {"destination": 1316236352, "path": [[-2268.184561550868, 2913.3523056774634], [-2252.2845615569054, 2934.9523056776407]], "source": 1316236504, "length": 5.6755193071563905}, {"destination": 1316236570, "path": [[-2268.184561550868, 2913.3523056774634], [-2308.6345615510595, 2858.4023056765773]], "source": 1316236504, "length": 14.44017542114434}, {"destination": 1316236462, "path": [[-2268.184561550868, 2913.3523056774634], [-2307.9845615541217, 2936.402305676822], [-2415.7345615520853, 2976.5523056770603]], "source": 1316236504, "length": 31.494258107001947}, {"destination": 1769172084, "path": [[3220.315438447585, -7926.547694323105], [3548.5154384460316, -7698.497694322626]], "source": 1769172185, "length": 80.41372946885421}, {"destination": 1769172074, "path": [[3220.315438447585, -7926.547694323105], [3202.765438444999, -7942.74769432235]], "source": 1769172185, "length": 4.911016416307562}, {"destination": 1489398796, "path": [[3220.315438447585, -7926.547694323105], [3196.3154384442305, -7904.197694323046]], "source": 1769172185, "length": 6.747765823102021}, {"destination": 1489398821, "path": [[3220.315438447585, -7926.547694323105], [3281.765438444495, -7983.697694323056]], "source": 1769172185, "length": 17.264159065403412}, {"destination": 1316198769, "path": [[-2889.38456155563, 1502.8023056782304], [-2742.834561551888, 1439.7523056768337]], "source": 1316236506, "length": 31.19896659289525}, {"destination": 482732996, "path": [[-2889.38456155563, 1502.8023056782304], [-2869.9345615521565, 1555.002305677178], [-3033.4845615556105, 1619.4023056765873]], "source": 1316236506, "length": 46.426073800573775}, {"destination": 1316237213, "path": [[-2889.38456155563, 1502.8023056782304], [-2934.934561551472, 1423.7023056775656]], "source": 1316236506, "length": 19.608246454057273}, {"destination": 1316236426, "path": [[-197.48456155355143, 3154.7023056770486], [-159.53456155415324, 3215.5023056770206]], "source": 1316236508, "length": 15.327001360649861}, {"destination": 1316236909, "path": [[-197.48456155355143, 3154.7023056770486], [-231.3345615547746, 3100.552305676629]], "source": 1316236508, "length": 13.654870479804993}, {"destination": 1316236454, "path": [[-197.48456155355143, 3154.7023056770486], [-20.084561555222535, 3074.05230567781]], "source": 1316236508, "length": 38.2098308398276}, {"destination": 1316237089, "path": [[-2608.5345615527444, 1722.252305677685], [-2621.284561556081, 1695.4523056771363]], "source": 1316236510, "length": 6.433933296083874}, {"destination": 1316198738, "path": [[-2608.5345615527444, 1722.252305677685], [-2586.6345615526143, 1768.3023056775937]], "source": 1316236510, "length": 11.055800703983472}, {"destination": 1316237011, "path": [[-2608.5345615527444, 1722.252305677685], [-2812.2345615528843, 1791.8523056774661]], "source": 1316236510, "length": 41.71707454766048}, {"destination": 1316237005, "path": [[234.71543844522103, 3259.8523056766026], [-51.58456155385238, 3376.9023056766655]], "source": 1316236512, "length": 60.352209637286656}, {"destination": 639309902, "path": [[1173.3154384430122, 1261.6023056768454], [1179.9154384490862, 1322.4023056768174], [1072.915438449229, 1333.7523056780042]], "source": 3356028131, "length": 34.084484246033725}, {"destination": 1316471807, "path": [[1173.3154384430122, 1261.6023056768454], [1537.4654384459063, 1234.1023056769984]], "source": 3356028131, "length": 69.52223522531882}, {"destination": 3356028131, "path": [[984.3654384482647, 1275.8523056781712], [1173.3154384430122, 1261.6023056768454]], "source": 3356028132, "length": 36.07321564826662}, {"destination": 639309902, "path": [[984.3654384482647, 1275.8523056781712], [994.7154384448709, 1342.9523056771586], [1072.915438449229, 1333.7523056780042]], "source": 3356028132, "length": 30.063493280031636}, {"destination": 475974715, "path": [[977.4654384457904, 1207.6023056781792], [944.0154384492416, 1210.252305677173], [694.865438447323, 1227.9023056773754]], "source": 3356028133, "length": 53.932985772809204}, {"destination": 639309879, "path": [[977.4654384457904, 1207.6023056781792], [973.5154384458156, 1146.0023056777402], [1055.0654384431368, 1141.3023056778825]], "source": 3356028133, "length": 29.26397816942015}, {"destination": 3356028133, "path": [[1161.6154384483934, 1192.9023056769238], [977.4654384457904, 1207.6023056781792]], "source": 3356028134, "length": 35.17328931770767}, {"destination": 639309879, "path": [[1161.6154384483934, 1192.9023056769238], [1156.4654384486062, 1134.3523056766003], [1055.0654384431368, 1141.3023056778825]], "source": 3356028134, "length": 32.40366495189929}, {"destination": 1316236610, "path": [[-1884.234561551068, 3512.152305678029], [-1738.2345615502004, 3450.55230567759]], "source": 1316236519, "length": 30.96248929945228}, {"destination": 1316694041, "path": [[-368.6845615504808, 85.35230567652263], [-442.8845615507271, 109.20230567812439]], "source": 1316694047, "length": 15.074419372327966}, {"destination": 1316693988, "path": [[-368.6845615504808, 85.35230567652263], [-387.4845615570166, 14.202305678168159], [-349.93456155518743, 9.65230567828712], [-354.63456155326867, -15.49769432251935]], "source": 1316694047, "length": 29.097413312297462}, {"destination": 1316694012, "path": [[-368.6845615504808, 85.35230567652263], [-210.2345615568879, 65.70230567781721]], "source": 1316694047, "length": 30.44794065743351}, {"destination": 1316694031, "path": [[-368.6845615504808, 85.35230567652263], [-331.13456155575705, 108.25230567768074], [-315.034561552352, 183.9523056776926]], "source": 1316694047, "length": 25.881657706657485}, {"destination": 1316236625, "path": [[-2454.1345615531895, 2047.052305677255], [-2383.0845615506746, 2012.0023056779955], [-2388.484561556936, 1982.2023056779158], [-2307.9845615541217, 1947.802305677371]], "source": 1316236521, "length": 39.41962868081441}, {"destination": 1316198794, "path": [[-2454.1345615531895, 2047.052305677255], [-2462.8345615553826, 2028.7023056777543]], "source": 1316236521, "length": 4.401974893910495}, {"destination": 1316198748, "path": [[-2454.1345615531895, 2047.052305677255], [-2439.7845615524716, 2077.25230567668]], "source": 1316236521, "length": 7.249363086004532}, {"destination": 1316236723, "path": [[-1907.2345615569475, 2614.202305677438], [-1774.034561556448, 2546.852305677305]], "source": 1316236522, "length": 29.429065199398455}, {"destination": 1316237108, "path": [[-1907.2345615569475, 2614.202305677438], [-2020.9845615539734, 2679.5023056767063], [-2116.2845615521064, 2734.302305677616]], "source": 1316236522, "length": 47.89595741098984}, {"destination": 1316236686, "path": [[-1907.2345615569475, 2614.202305677438], [-1943.2345615513213, 2562.502305677228]], "source": 1316236522, "length": 13.381518751028935}, {"destination": 1316237102, "path": [[-1907.2345615569475, 2614.202305677438], [-1871.2345615554682, 2665.952305678232]], "source": 1316236522, "length": 13.391617757838127}, {"destination": 639308680, "path": [[-1235.7345615541249, 2016.652305677269], [-1239.4845615517625, 2003.7523056775085]], "source": 1316236524, "length": 2.9567472289049173}, {"destination": 1316237209, "path": [[-1235.7345615541249, 2016.652305677269], [-1223.3845615554628, 2058.802305677787], [-1191.2345615527897, 2123.05230567722], [-1179.184561550528, 2135.052305677121]], "source": 1316236524, "length": 28.72400219134213}, {"destination": 1316236495, "path": [[-1235.7345615541249, 2016.652305677269], [-1031.2845615558786, 1950.1023056776035]], "source": 1316236524, "length": 41.60360499373267}, {"destination": 1316237129, "path": [[-2784.3845615507234, 1018.6523056781027], [-2766.8345615552425, 1052.8023056775028]], "source": 1316236527, "length": 8.295857647550637}, {"destination": 1316236810, "path": [[-2784.3845615507234, 1018.6523056781027], [-2622.784561552294, 958.8523056773823]], "source": 1316236527, "length": 33.48651400847929}, {"destination": 481395518, "path": [[-2784.3845615507234, 1018.6523056781027], [-2816.184561552859, 968.102305677121]], "source": 1316236527, "length": 12.765197673554168}, {"destination": 1316237129, "path": [[-2710.3845615528144, 1162.3023056781535], [-2766.8345615552425, 1052.8023056775028]], "source": 1316236529, "length": 26.61309577135468}, {"destination": 1316236683, "path": [[-2710.3845615528144, 1162.3023056781535], [-2603.0345615524197, 1131.2523056776768]], "source": 1316236529, "length": 21.55138860040972}, {"destination": 1316236445, "path": [[-2710.3845615528144, 1162.3023056781535], [-2636.6845615513057, 1305.3023056777135]], "source": 1316236529, "length": 34.75337086787982}, {"destination": 1316237028, "path": [[-2283.884561556704, 3188.702305678248], [-2184.6345615514906, 3163.5023056768573], [-2189.984561553615, 3131.352305677737], [-2112.1845615539314, 3096.952305677192], [-2053.184561553678, 3096.952305677192], [-1994.1845615534248, 3076.3023056774587]], "source": 1316236531, "length": 66.91460978483826}, {"destination": 1316236701, "path": [[-2283.884561556704, 3188.702305678248], [-2283.884561556704, 3211.6523056782144], [-2272.734561550749, 3237.7023056771036]], "source": 1316236531, "length": 11.272949699209192}, {"destination": 1316236934, "path": [[-2283.884561556704, 3188.702305678248], [-2340.1845615538264, 3197.9023056774026]], "source": 1316236531, "length": 10.901465056179722}, {"destination": 477628490, "path": [[-3866.134561555157, -6834.04769432272], [-4485.434561551927, -6626.097694322652]], "source": 477629479, "length": 126.51185584231351}, {"destination": 1315678839, "path": [[-3866.134561555157, -6834.04769432272], [-3950.4845615567774, -6942.847694322296]], "source": 477629479, "length": 29.028982550314588}, {"destination": 1316236792, "path": [[-3246.78456155425, 1782.6523056765354], [-3005.6845615504812, 1674.7023056780108]], "source": 1316236539, "length": 51.7565303517943}, {"destination": 1316236442, "path": [[-1836.984561556676, 3249.9023056775654], [-1917.5845615535536, 3285.7023056767075]], "source": 1316236501, "length": 17.273031617770854}, {"destination": 483098883, "path": [[-1836.984561556676, 3249.9023056775654], [-1972.9345615502325, 3002.802305678287]], "source": 1316236501, "length": 60.73137645920908}, {"destination": 1316236596, "path": [[-1836.984561556676, 3249.9023056775654], [-1811.5845615511716, 3300.2023056774024]], "source": 1316236501, "length": 12.184695501709912}, {"destination": 1316236385, "path": [[-1735.984561555881, 2598.5023056769305], [-1692.6845615543584, 2657.3023056766233]], "source": 1316236544, "length": 15.453202258397885}, {"destination": 1316236722, "path": [[-1735.984561555881, 2598.5023056769305], [-1602.284561556644, 2531.3523056773593]], "source": 1316236544, "length": 29.48811276952435}, {"destination": 1316236723, "path": [[-1735.984561555881, 2598.5023056769305], [-1774.034561556448, 2546.852305677305]], "source": 1316236544, "length": 13.57609872494764}, {"destination": 1316237102, "path": [[-1735.984561555881, 2598.5023056769305], [-1871.2345615554682, 2665.952305678232]], "source": 1316236544, "length": 29.776449463694025}, {"destination": 1316236736, "path": [[-612.8345615508124, 2365.2523056778564], [-469.03456155433787, 2323.5523056772677]], "source": 1316236546, "length": 28.877542061643876}, {"destination": 1890935434, "path": [[-6983.134561551196, -2441.597694321729], [-7107.734561550671, -2489.1976943219875], [-7227.334561555665, -2531.997694322996]], "source": 1890935339, "length": 50.60561515178829}, {"destination": 495772553, "path": [[6715.665438449037, -4027.347694322003], [7132.265438443142, -4054.7476943224583], [8022.215438444391, -4132.947694323264]], "source": 478379222, "length": 249.57219882271357}, {"destination": 63303828, "path": [[6715.665438449037, -4027.347694322003], [6703.115438448038, -4098.74769432328]], "source": 478379222, "length": 16.057283675253913}, {"destination": 1316236411, "path": [[-3356.6345615554383, 1555.6023056770841], [-3249.434561553244, 1491.3523056776512], [-3160.9345615564166, 1420.2523056781047], [-2973.0845615532075, 1357.402305677269]], "source": 1316236550, "length": 86.35032220295685}, {"destination": 1765485440, "path": [[6953.8154384432, -6062.2476943219535], [6965.7154384472615, -5939.447694322197]], "source": 647286028, "length": 27.40297721064331}, {"destination": 63312209, "path": [[6953.8154384432, -6062.2476943219535], [7081.165438449943, -5987.047694322456], [7295.715438445427, -5908.097694321767], [7481.41543844838, -5837.8976943220805], [7736.015438446486, -5752.197694322447]], "source": 647286028, "length": 164.47883895385604}, {"destination": 1317671082, "path": [[2220.465438448116, -341.34769432192513], [2477.465438445847, -303.0476943219895]], "source": 481389838, "length": 49.61028112587393}, {"destination": 481389765, "path": [[2220.465438448116, -341.34769432192513], [2216.065438446435, -323.34769432296184]], "source": 481389838, "length": 4.089943582145903}, {"destination": 385113791, "path": [[2220.465438448116, -341.34769432192513], [2243.7154384462588, -460.49769432343624]], "source": 481389838, "length": 26.864211203160515}, {"destination": 1316237178, "path": [[-1875.7845615553492, 1055.6523056770573], [-1839.5345615545011, 1122.6523056766523]], "source": 1316236561, "length": 16.41751779952339}, {"destination": 1316236347, "path": [[-1875.7845615553492, 1055.6523056770573], [-1999.5345615555493, 1106.002305677478], [-2168.534561555191, 1149.6023056771776], [-2279.184561551517, 1186.752305677885]], "source": 1316236561, "length": 82.23913232502414}, {"destination": 1316236612, "path": [[-1875.7845615553492, 1055.6523056770573], [-1887.3345615517678, 1034.2523056774412]], "source": 1316236561, "length": 5.241261311104488}, {"destination": 1316236336, "path": [[-1967.3845615528762, 3762.1523056774463], [-1809.1345615545151, 3711.7023056776334]], "source": 1316236563, "length": 32.12046031791903}, {"destination": 1316236724, "path": [[-1967.3845615528762, 3762.1523056774463], [-1933.6845615569587, 3838.3523056779723]], "source": 1316236563, "length": 18.117501337614378}, {"destination": 1316236478, "path": [[-1967.3845615528762, 3762.1523056774463], [-2149.7345615557606, 3803.452305676913]], "source": 1316236563, "length": 35.87604828193116}, {"destination": 1316236812, "path": [[-2405.434561552511, 2726.9523056769885], [-2416.834561550729, 2711.452305677042]], "source": 1316236565, "length": 4.071169609418922}, {"destination": 1316236374, "path": [[-2405.434561552511, 2726.9523056769885], [-2281.184561553573, 2665.752305677671], [-2143.78456155373, 2616.3023056771094]], "source": 1316236565, "length": 55.62019550493146}, {"destination": 1316236471, "path": [[-2405.434561552511, 2726.9523056769885], [-2356.2345615530944, 2793.802305676607]], "source": 1316236565, "length": 17.56613365129386}, {"destination": 1316236332, "path": [[-1159.9845615535287, 3511.0023056770247], [-848.8845615559626, 3383.7023056779713]], "source": 1316236566, "length": 65.5908343715047}, {"destination": 1316236597, "path": [[-1159.9845615535287, 3511.0023056770247], [-1121.9845615499935, 3586.55230567706]], "source": 1316236566, "length": 18.289798226276126}, {"destination": 481499142, "path": [[-1159.9845615535287, 3511.0023056770247], [-1219.6845615548568, 3392.5023056777804]], "source": 1316236566, "length": 28.695323843985655}, {"destination": 1316236504, "path": [[-2308.6345615510595, 2858.4023056765773], [-2268.184561550868, 2913.3523056774634]], "source": 1316236570, "length": 14.44017542114434}, {"destination": 1316236770, "path": [[-2308.6345615510595, 2858.4023056765773], [-2200.7345615548957, 2801.0523056778425]], "source": 1316236570, "length": 24.161393860100656}, {"destination": 1316236492, "path": [[-2308.6345615510595, 2858.4023056765773], [-2332.734561555583, 2825.6523056775504]], "source": 1316236570, "length": 8.606199312926002}, {"destination": 1316237161, "path": [[-1221.6845615569127, 1780.3523056780791], [-1063.4345615514462, 1716.152305677454], [-859.6345615501377, 1638.1523056772096], [-722.1845615532629, 1596.5023056772054]], "source": 1316236571, "length": 103.50608831142134}, {"destination": 483106120, "path": [[-4945.33456155466, 5321.8523056770555], [-4877.184561550507, 5569.952305677361], [-4799.934561553699, 5753.502305678282]], "source": 95612191, "length": 100.06060795002983}, {"destination": 4397155843, "path": [[-4945.33456155466, 5321.8523056770555], [-4631.684561552163, 5170.602305677008], [-4521.534561554574, 5126.152305678033]], "source": 95612191, "length": 91.64822840104105}, {"destination": 483106759, "path": [[-4945.33456155466, 5321.8523056770555], [-5180.384561555229, 4116.402305676558]], "source": 95612191, "length": 271.78201982590963}, {"destination": 1316198801, "path": [[-2240.584561555181, 1261.402305678061], [-2327.484561554627, 1289.652305677791]], "source": 1316195130, "length": 17.680179066645902}, {"destination": 1316237178, "path": [[-2240.584561555181, 1261.402305678061], [-2140.084561553124, 1228.7023056778423], [-1839.5345615545011, 1122.6523056766523]], "source": 1316195130, "length": 82.28118397145398}, {"destination": 1316236347, "path": [[-2240.584561555181, 1261.402305678061], [-2279.184561551517, 1186.752305677885]], "source": 1316195130, "length": 18.152041897789157}, {"destination": 1316237108, "path": [[-2128.284561550231, 2713.9023056772517], [-2116.2845615521064, 2734.302305677616]], "source": 1316236588, "length": 5.078823799489558}, {"destination": 1316237209, "path": [[-985.584561554731, 2142.5023056771406], [-1073.1845615552515, 2168.9023056765677], [-1125.0345615536617, 2160.602305677273], [-1159.034561553085, 2155.1523056775322], [-1179.184561550528, 2135.052305677121]], "source": 1316236590, "length": 40.16183688544647}, {"destination": 1316237082, "path": [[-985.584561554731, 2142.5023056771406], [-943.0845615554517, 2215.4523056769904]], "source": 1316236590, "length": 18.125458953607012}, {"destination": 1316236925, "path": [[-985.584561554731, 2142.5023056771406], [-828.8345615525827, 2095.25230567742]], "source": 1316236590, "length": 31.60850938846768}, {"destination": 1316236647, "path": [[-985.584561554731, 2142.5023056771406], [-1016.4845615534546, 2081.802305676561]], "source": 1316236590, "length": 14.722646064424241}, {"destination": 210643104, "path": [[2463.9654384444043, -1672.6976943228779], [2331.965438443717, -1768.497694323301], [2241.1654384484336, -1898.7476943230774], [2195.9654384460237, -1994.1976943229633], [2122.715438446221, -2119.747694322882], [2021.6154384442575, -2248.297694322332], [1927.8654384464744, -2321.34769432335], [1820.0654384443737, -2376.7476943223896]], "source": 475974959, "length": 203.23841601076012}, {"destination": 152848312, "path": [[2463.9654384444043, -1672.6976943228779], [2603.3654384463034, -1589.847694322799], [2729.9654384478345, -1479.447694322289], [2831.1154384468296, -1353.497694323025], [2892.715438449045, -1197.1976943225827]], "source": 475974959, "length": 137.3281163130291}, {"destination": 475974969, "path": [[2463.9654384444043, -1672.6976943228779], [2865.515438443822, -1869.1976943223665], [2987.765438447809, -1932.0976943220103]], "source": 475974959, "length": 115.11217308930613}, {"destination": 1316236927, "path": [[100.56543844427779, 3670.552305678143], [-107.83456155394333, 3750.5523056768907]], "source": 1316236592, "length": 43.44476065440455}, {"destination": 1316237163, "path": [[100.56543844427779, 3670.552305678143], [65.01543844450453, 3591.902305677408]], "source": 1316236592, "length": 18.752091031632958}, {"destination": 1316237079, "path": [[100.56543844427779, 3670.552305678143], [144.01543844400067, 3766.7023056773273]], "source": 1316236592, "length": 22.923909206742447}, {"destination": 1316237163, "path": [[473.0154384446905, 3477.1523056775777], [65.01543844450453, 3591.902305677408]], "source": 1316236593, "length": 81.68431266889692}, {"destination": 654402303, "path": [[473.0154384446905, 3477.1523056775777], [507.91543844752596, 3598.252305677008], [548.4154384447493, 3722.002305677208]], "source": 1316236593, "length": 56.31548083417644}, {"destination": 481396599, "path": [[-3780.034561550849, -952.997694323443], [-3851.1845615545326, -849.4476943230467]], "source": 479291272, "length": 26.709101458735066}, {"destination": 385113975, "path": [[-3780.034561550849, -952.997694323443], [-3599.38456155362, -1277.7476943224287]], "source": 479291272, "length": 79.97553732051513}, {"destination": 1316236745, "path": [[-1811.5845615511716, 3300.2023056774024], [-1891.0845615565108, 3338.552305677922]], "source": 1316236596, "length": 17.35891195425233}, {"destination": 483098387, "path": [[-1811.5845615511716, 3300.2023056774024], [-1781.6345615528917, 3357.202305677376]], "source": 1316236596, "length": 13.897263233872359}, {"destination": 1316236501, "path": [[-1811.5845615511716, 3300.2023056774024], [-1836.984561556676, 3249.9023056775654]], "source": 1316236596, "length": 12.184695501709912}, {"destination": 1316236424, "path": [[-1121.9845615499935, 3586.55230567706], [-1082.9845615560885, 3664.0023056779823]], "source": 1316236597, "length": 18.75281195627578}, {"destination": 1316236659, "path": [[-1121.9845615499935, 3586.55230567706], [-811.3345615541334, 3452.502305677285]], "source": 1316236597, "length": 66.17619323060929}, {"destination": 1316236566, "path": [[-1121.9845615499935, 3586.55230567706], [-1159.9845615535287, 3511.0023056770247]], "source": 1316236597, "length": 18.289798226276126}, {"destination": 1316236808, "path": [[-1884.3845615563737, 2464.202305677787], [-1760.8345615514054, 2415.7023056776693]], "source": 1316236599, "length": 25.854528098485527}, {"destination": 1316236721, "path": [[-1884.3845615563737, 2464.202305677787], [-1851.8345615561316, 2522.7023056775265]], "source": 1316236599, "length": 14.40768342316043}, {"destination": 1316237115, "path": [[-1884.3845615563737, 2464.202305677787], [-2035.1345615523542, 2534.4023056774745]], "source": 1316236599, "length": 32.644815228090785}, {"destination": 1316237182, "path": [[-1884.3845615563737, 2464.202305677787], [-1892.2845615563233, 2450.1523056770225], [-1912.484561550798, 2415.502305677109]], "source": 1316236599, "length": 12.07780561802285}, {"destination": 475974959, "path": [[2987.765438447809, -1932.0976943220103], [2865.515438443822, -1869.1976943223665], [2463.9654384444043, -1672.6976943228779]], "source": 475974969, "length": 115.11217308930613}, {"destination": 103736983, "path": [[2987.765438447809, -1932.0976943220103], [3176.3154384449876, -1776.5976943220353], [3532.7154384461323, -1475.8976943234359], [3748.215438449165, -1284.7476943225188], [3877.165438446184, -1164.5476943229482], [3967.6154384480355, -1081.5976943234773], [4150.165438446152, -889.6476943220932], [4267.115438445046, -762.7476943223854], [4414.715438443295, -585.9976943227707], [4474.315438443455, -505.09769432238727]], "source": 475974969, "length": 426.08857072477593}, {"destination": 103781041, "path": [[-290.2845615508909, -8090.497694322352], [-343.4845615544191, -8099.29769432216]], "source": 599723323, "length": 10.303009643401925}, {"destination": 1887596174, "path": [[-290.2845615508909, -8090.497694322352], [-287.63456155189715, -8158.897694322321], [-287.68456155603417, -8162.947694323464]], "source": 599723323, "length": 16.12112846308344}, {"destination": 1887593849, "path": [[-290.2845615508909, -8090.497694322352], [-268.48456155192935, -8072.047694323459], [-245.03456155144931, -8059.197694322506], [-227.5845615500316, -8053.297694322836], [-137.03456155411686, -8037.997694323451]], "source": 599723323, "length": 32.247869794617856}, {"destination": 601145288, "path": [[-4531.88456155118, 1924.0523056769375], [-4603.234561550096, 1940.15230567679]], "source": 93310272, "length": 14.033756191092326}, {"destination": 385114569, "path": [[-4531.88456155118, 1924.0523056769375], [-4565.9845615517725, 1852.4523056768771], [-4598.034561553277, 1791.1523056781675]], "source": 93310272, "length": 32.12596799597469}, {"destination": 483098387, "path": [[-1738.2345615502004, 3450.55230567759], [-1781.6345615528917, 3357.202305677376]], "source": 1316236610, "length": 22.340709675455656}, {"destination": 1316236519, "path": [[-1738.2345615502004, 3450.55230567759], [-1884.234561551068, 3512.152305678029]], "source": 1316236610, "length": 30.96248929945228}, {"destination": 483099095, "path": [[-1738.2345615502004, 3450.55230567759], [-1680.7345615532654, 3566.6523056772094], [-1676.7845615532906, 3574.652305676551]], "source": 1316236610, "length": 29.976354587999833}, {"destination": 1316236561, "path": [[-1887.3345615517678, 1034.2523056774412], [-1875.7845615553492, 1055.6523056770573]], "source": 1316236612, "length": 5.241261311104488}, {"destination": 1316196939, "path": [[-1887.3345615517678, 1034.2523056774412], [-1915.384561556266, 982.3523056766703]], "source": 1316236612, "length": 12.715678848099925}, {"destination": 1316236693, "path": [[-1887.3345615517678, 1034.2523056774412], [-1779.5845615538042, 993.6023056766885], [-1583.784561553614, 918.0523056766532]], "source": 1316236612, "length": 63.248485926751854}, {"destination": 1316236425, "path": [[-1271.0345615545293, 2827.2023056779008], [-1258.5845615546987, 2846.0023056773307]], "source": 1316236614, "length": 4.803395136220971}, {"destination": 1316236948, "path": [[-1271.0345615545293, 2827.2023056779008], [-1162.6845615566594, 2785.002305676798], [-1151.9845615524105, 2750.6023056780296], [-977.6345615506443, 2642.802305677705], [-907.8845615562159, 2642.802305677705], [-776.484561555435, 2576.3023056768475], [-640.5845615518047, 2501.252305677326]], "source": 1316236614, "length": 144.54557855510438}, {"destination": 1316236421, "path": [[-1271.0345615545293, 2827.2023056779008], [-1292.2345615535846, 2794.9523056776115]], "source": 1316236614, "length": 8.227128863656972}, {"destination": 1316198773, "path": [[-3112.6845615503385, 1995.9523056769513], [-2983.8845615515197, 1967.9523056765902], [-2884.0345615535057, 1926.6523056771234]], "source": 1316236621, "length": 46.36806253518654}, {"destination": 1316236521, "path": [[-2307.9845615541217, 1947.802305677371], [-2388.484561556936, 1982.2023056779158], [-2383.0845615506746, 2012.0023056779955], [-2454.1345615531895, 2047.052305677255]], "source": 1316236625, "length": 39.41962868081441}, {"destination": 654382714, "path": [[4779.215438446727, 5798.402305677186], [4883.71543844579, 5836.602305677729], [5059.465438449706, 5900.802305676578], [5197.215438442981, 5951.152305676998], [5249.965438444804, 5970.452305676943], [5438.61543844315, 6110.402305678164], [5734.915438445398, 6330.152305677572], [5799.465438443008, 6375.052305678253]], "source": 482733394, "length": 235.2836895508955}, {"destination": 481500517, "path": [[4779.215438446727, 5798.402305677186], [4873.015438448647, 5585.10230567677], [4891.46543844754, 5543.202305677397]], "source": 482733394, "length": 60.6365188849625}, {"destination": 1328999431, "path": [[4779.215438446727, 5798.402305677186], [4715.515438448392, 5943.25230567705], [4702.465438448655, 6007.052305676552]], "source": 482733394, "length": 48.82008608641277}, {"destination": 2460670081, "path": [[660.1154384497931, -707.3476943233459], [776.4154384446442, -724.5476943218421], [832.515438446535, -411.3976943234121]], "source": 4273384790, "length": 92.89861261251647}, {"destination": 654379432, "path": [[6382.665438444235, 6768.102305677814], [6444.765438445188, 6811.002305678216]], "source": 482733400, "length": 15.183140918433612}, {"destination": 654382693, "path": [[6382.665438444235, 6768.102305677814], [6252.865438447941, 6874.602305677157], [6132.065438443135, 6961.0023056778655], [5964.765438449149, 7060.002305676605], [5886.3654384495585, 7099.602305677521]], "source": 482733400, "length": 120.1764797771587}, {"destination": 1319641071, "path": [[6382.665438444235, 6768.102305677814], [6226.815438445499, 6672.402305676784]], "source": 482733400, "length": 36.49153029049515}, {"destination": 1320103955, "path": [[2058.9654384437495, 3687.3023056767097], [2051.4654384484743, 3650.1523056777787]], "source": 1320104105, "length": 8.384470338408137}, {"destination": 1320104117, "path": [[2058.9654384437495, 3687.3023056767097], [2070.7654384466423, 3745.7023056770568]], "source": 1320104105, "length": 13.179965050924473}, {"destination": 1320103687, "path": [[2058.9654384437495, 3687.3023056767097], [1852.6654384487529, 3700.452305677615]], "source": 1320104105, "length": 39.34429443024098}, {"destination": 1316237194, "path": [[-2058.88456155634, 2504.352305678026], [-2080.0345615512583, 2477.6523056768697], [-2135.5845615502744, 2403.9523056771372]], "source": 1316236639, "length": 26.670708973461565}, {"destination": 1316237115, "path": [[-2058.88456155634, 2504.352305678026], [-2035.1345615523542, 2534.4023056774745]], "source": 1316236639, "length": 8.06560167317122}, {"destination": 1316237235, "path": [[-2058.88456155634, 2504.352305678026], [-2177.484561556753, 2552.8523056781437]], "source": 1316236639, "length": 25.001746664885104}, {"destination": 1316236442, "path": [[-2007.5845615536991, 3317.1523056765295], [-1917.5845615535536, 3285.7023056767075]], "source": 1316236640, "length": 18.49024438512054}, {"destination": 1316471778, "path": [[374.16543844415173, 3011.952305676857], [769.0654384475692, 2776.952305676872]], "source": 476556641, "length": 91.49746724127836}, {"destination": 599406834, "path": [[374.16543844415173, 3011.952305676857], [320.46543844899134, 3042.352305676843]], "source": 476556641, "length": 12.247774588489804}, {"destination": 1316472061, "path": [[374.16543844415173, 3011.952305676857], [301.5154384442553, 2850.5023056766277], [199.8654384465226, 2665.752305677671]], "source": 476556641, "length": 83.87899259492315}, {"destination": 1316236768, "path": [[-827.434561550433, 2435.4023056769593], [-903.8845615521041, 2285.6523056766773]], "source": 1316236642, "length": 36.338327086532175}, {"destination": 1316237112, "path": [[-827.434561550433, 2435.4023056769593], [-874.7345615560675, 2453.3523056771146], [-1020.2345615510922, 2530.2523056769387]], "source": 1316236642, "length": 42.371044865421}, {"destination": 1316236650, "path": [[-827.434561550433, 2435.4023056769593], [-778.1845615539851, 2416.652305678113], [-724.5345615558563, 2398.302305676836], [-686.9845615540271, 2421.202305677994], [-673.0845615550152, 2445.202305677796]], "source": 1316236642, "length": 35.967287582046914}, {"destination": 1316236408, "path": [[92.56543844315956, 4246.152305677598], [-66.08456155277054, 4305.752305677757]], "source": 1316236644, "length": 32.95613481052453}, {"destination": 482731912, "path": [[-1901.7845615536544, 4198.652305676731], [-2078.634561556214, 4302.602305678249]], "source": 476556645, "length": 40.81329322043809}, {"destination": 1316236825, "path": [[-1901.7845615536544, 4198.652305676731], [-1790.5845615544536, 4136.152305678209]], "source": 476556645, "length": 25.307549804297558}, {"destination": 639305926, "path": [[-1901.7845615536544, 4198.652305676731], [-2229.984561552101, 3939.7023056775283], [-2337.5345615548326, 3782.35230567725]], "source": 476556645, "length": 125.45976581284734}, {"destination": 476558313, "path": [[-1901.7845615536544, 4198.652305676731], [-1622.1845615547181, 4422.452305677282], [-1280.9845615535664, 4684.502305677185], [-1065.734561557008, 4826.852305678031], [-895.8345615539542, 4911.602305677221]], "source": 476556645, "length": 249.21392758637668}, {"destination": 1316236699, "path": [[-1016.4845615534546, 2081.802305676561], [-929.33456155464, 2034.9523056779617], [-882.3845615566484, 2013.0523056778316]], "source": 1316236647, "length": 29.74791415484423}, {"destination": 1316236476, "path": [[-1016.4845615534546, 2081.802305676561], [-1047.3845615521782, 2021.20230567715], [-926.1345615527716, 1945.9023056782598]], "source": 1316236647, "length": 43.20124065636571}, {"destination": 1316236590, "path": [[-1016.4845615534546, 2081.802305676561], [-985.584561554731, 2142.5023056771406]], "source": 1316236647, "length": 14.722646064424241}, {"destination": 1316236642, "path": [[-673.0845615550152, 2445.202305677796], [-686.9845615540271, 2421.202305677994], [-724.5345615558563, 2398.302305676836], [-778.1845615539851, 2416.652305678113], [-827.434561550433, 2435.4023056769593]], "source": 1316236650, "length": 35.967287582046914}, {"destination": 1316236948, "path": [[-673.0845615550152, 2445.202305677796], [-640.5845615518047, 2501.252305677326]], "source": 1316236650, "length": 13.913143047796725}, {"destination": 1316237165, "path": [[-673.0845615550152, 2445.202305677796], [-953.4845615561949, 2576.3023056768475], [-1194.8845615563641, 2707.052305677138], [-1312.8345615527337, 2763.7023056765743]], "source": 1316236650, "length": 140.84770055698462}, {"destination": 1721498186, "path": [[2781.1154384451697, -5908.947694322819], [2828.915438449542, -5929.997694321898]], "source": 84487532, "length": 10.223536689831512}, {"destination": 93466414, "path": [[2781.1154384451697, -5908.947694322819], [2747.1154384457463, -5957.2976943229605]], "source": 84487532, "length": 12.546571307695727}, {"destination": 1581175407, "path": [[2781.1154384451697, -5908.947694322819], [2758.7654384433336, -5897.197694322287]], "source": 84487532, "length": 4.989306320512617}, {"destination": 1316198769, "path": [[-2700.4345615537773, 1528.9023056777041], [-2742.834561551888, 1439.7523056768337]], "source": 1316236653, "length": 21.4032557991488}, {"destination": 1316236430, "path": [[-2700.4345615537773, 1528.9023056777041], [-2686.384561556565, 1558.502305677223]], "source": 1316236653, "length": 7.104317213909178}, {"destination": 1316237206, "path": [[-2700.4345615537773, 1528.9023056777041], [-2790.78456155446, 1564.7523056774303], [-2857.8345615528633, 1587.7023056773965]], "source": 1316236653, "length": 32.677007315635166}, {"destination": 479279823, "path": [[-1498.3345615533494, -6796.947694322597], [-1799.3345615536782, -6699.697694322993]], "source": 103787886, "length": 61.18336339354284}, {"destination": 103781535, "path": [[-1498.3345615533494, -6796.947694322597], [-1616.3845615508876, -6999.997694322246]], "source": 103787886, "length": 50.42760689118556}, {"destination": 1890935411, "path": [[-7458.534561550323, -2683.297694321851], [-7416.3345615545495, -2674.39769432265], [-7361.334561551303, -2667.4976943219517], [-7296.98456155603, -2664.0976943230753], [-7271.634561554663, -2665.2476943223037]], "source": 1890935357, "length": 35.923550284952896}, {"destination": 654403074, "path": [[-358.7345615514437, 3930.3523056766207], [-305.8345615514213, 4009.9523056778]], "source": 1316236520, "length": 20.361603101416065}, {"destination": 1316237106, "path": [[-358.7345615514437, 3930.3523056766207], [-186.38456155173344, 3876.8523056766926], [-69.38456155580752, 3840.552305677036]], "source": 1316236520, "length": 58.54216368536768}, {"destination": 1316236332, "path": [[-811.3345615541334, 3452.502305677285], [-848.8845615559626, 3383.7023056779713]], "source": 1316236659, "length": 16.8846342420723}, {"destination": 1316236708, "path": [[-811.3345615541334, 3452.502305677285], [-775.4845615508543, 3510.852305677048]], "source": 1316236659, "length": 14.658534894702965}, {"destination": 1316236597, "path": [[-811.3345615541334, 3452.502305677285], [-1121.9845615499935, 3586.55230567706]], "source": 1316236659, "length": 66.17619323060929}, {"destination": 1316236911, "path": [[-811.3345615541334, 3452.502305677285], [-630.0345615528613, 3373.952305677719]], "source": 1316236659, "length": 38.653063473476976}, {"destination": 1316196984, "path": [[-1457.4345615514517, 965.2023056769821], [-1373.834561555043, 1136.402305677464]], "source": 1316236660, "length": 41.2594674097532}, {"destination": 1316237178, "path": [[-1457.4345615514517, 965.2023056769821], [-1839.5345615545011, 1122.6523056766523]], "source": 1316236660, "length": 80.66238582540393}, {"destination": 1316196972, "path": [[-1457.4345615514517, 965.2023056769821], [-1537.784561556066, 800.7023056766371]], "source": 1316236660, "length": 39.64620037742556}, {"destination": 1316237003, "path": [[-3386.134561552012, 1477.6023056768395], [-3265.4345615554803, 1424.8523056767935], [-3177.0345615527162, 1358.302305677128], [-3011.234561554943, 1291.1523056775563]], "source": 1316236661, "length": 83.06523947013807}, {"destination": 1316236425, "path": [[-1224.4845615541067, 2897.8523056775175], [-1258.5845615546987, 2846.0023056773307]], "source": 1316236665, "length": 13.229789803245882}, {"destination": 1316236898, "path": [[-1224.4845615541067, 2897.8523056775175], [-1259.2345615516365, 2922.6523056777864], [-1339.2345615557133, 2957.1023056771396]], "source": 1316236665, "length": 25.64174256812789}, {"destination": 1316237133, "path": [[-1224.4845615541067, 2897.8523056775175], [-1007.1345615543237, 2764.3523056770646], [-1001.7845615521992, 2736.8523056772174], [-918.634561550391, 2684.102305677172], [-873.034561550412, 2709.302305676786], [-733.5345615544497, 2654.252305678284]], "source": 1316236665, "length": 116.32758766990575}, {"destination": 1316237230, "path": [[-1224.4845615541067, 2897.8523056775175], [-1191.3345615539583, 2948.152305677354]], "source": 1316236665, "length": 12.840521687428133}, {"destination": 677797898, "path": [[-540.3345615562216, -3890.1976943233053], [-643.9845615560102, -3839.3976943229545], [-686.4345615511525, -3816.4476943229884], [-727.3845615500818, -3792.9476943219242], [-783.3845615508039, -3768.6976943227537], [-913.7345615499726, -3729.347694322982], [-1034.4845615506415, -3696.7476943221554], [-1134.0345615522551, -3675.2476943231472], [-1236.6345615504315, -3653.4976943229935], [-1334.7845615570009, -3630.5476943230274], [-1378.6845615513244, -3615.4476943224267], [-1424.2345615542717, -3591.9976943219467]], "source": 1888338495, "length": 182.02960397228384}, {"destination": 1888338501, "path": [[-540.3345615562216, -3890.1976943233053], [-581.1345615569508, -3860.6976943231784], [-618.9345615510433, -3834.197694322583], [-658.2845615525912, -3808.5476943230387], [-705.5345615540887, -3782.4976943223733], [-748.4845615550739, -3759.2476943224538], [-793.3345615569465, -3739.8976943219254], [-845.3345615535568, -3720.597694321981], [-919.7845615531719, -3699.197694322365], [-1040.734561556178, -3665.397694321726], [-1201.8845615529017, -3628.447694323356], [-1238.3845615531186, -3624.047694323451], [-1274.4845615557665, -3625.7476943220013], [-1300.9345615557777, -3627.597694322304]], "source": 1888338495, "length": 159.33971989951576}, {"destination": 1316236873, "path": [[-2935.884561551916, 1820.0023056778036], [-2947.284561550134, 1796.3523056767626]], "source": 1316236669, "length": 5.688209136988695}, {"destination": 1316236932, "path": [[-2935.884561551916, 1820.0023056778036], [-2913.734561552417, 1866.1523056771046]], "source": 1316236669, "length": 11.094049144247329}, {"destination": 1316236404, "path": [[-2935.884561551916, 1820.0023056778036], [-2844.434561552589, 1780.3523056780791], [-2852.484561550739, 1741.3523056770687], [-2635.8845615561677, 1664.702305676613]], "source": 1316236669, "length": 72.88673764044324}, {"destination": 1316237003, "path": [[-3048.0845615556973, 1233.4523056782841], [-3018.784561554355, 1278.0523056772354], [-3011.234561554943, 1291.1523056775563]], "source": 1316236673, "length": 14.623709672720802}, {"destination": 1316236715, "path": [[-3048.0845615556973, 1233.4523056782841], [-3126.0845615506128, 1268.852305678081], [-3238.7345615561003, 1319.3523056767021], [-3380.734561552856, 1424.8523056767935]], "source": 1316236673, "length": 76.75506224559783}, {"destination": 1316236365, "path": [[-3048.0845615556973, 1233.4523056782841], [-3060.934561553097, 1213.8523056766103]], "source": 1316236673, "length": 4.996526738647108}, {"destination": 476913230, "path": [[3376.5654384438903, -6250.597694322124], [3325.3154384453865, -6228.997694321947]], "source": 3283676144, "length": 10.865027362133764}, {"destination": 1769172062, "path": [[3376.5654384438903, -6250.597694322124], [3350.265438449185, -6292.747694322642]], "source": 3283676144, "length": 10.624288633345726}, {"destination": 3283676143, "path": [[3376.5654384438903, -6250.597694322124], [3407.065438445045, -6201.697694322661]], "source": 3283676144, "length": 12.324798456193992}, {"destination": 1890531922, "path": [[-9103.084561552067, -558.6976943234845], [-8833.934561550905, -671.2476943224743]], "source": 1721527687, "length": 56.976288706682226}, {"destination": 1316236368, "path": [[-37.48456155250324, 4369.752305677821], [-6.584561553779622, 4420.302305677026]], "source": 1316236681, "length": 12.685519539443947}, {"destination": 1316236443, "path": [[-37.48456155250324, 4369.752305677821], [132.8154384481195, 4301.202305677876]], "source": 1316236681, "length": 35.79745633648726}, {"destination": 483099888, "path": [[-1000.2345615518493, 3270.602305677883], [-704.8845615500454, 3106.552305677468]], "source": 1316236682, "length": 66.97894895101373}, {"destination": 1316236490, "path": [[-1000.2345615518493, 3270.602305677883], [-1050.3345615546777, 3176.552305676594]], "source": 1316236682, "length": 22.98378771828868}, {"destination": 481499482, "path": [[-1000.2345615518493, 3270.602305677883], [-1120.8845615513496, 3337.6023056774784]], "source": 1316236682, "length": 27.359034329169287}, {"destination": 1316236529, "path": [[-2603.0345615524197, 1131.2523056776768], [-2710.3845615528144, 1162.3023056781535]], "source": 1316236683, "length": 21.55138860040972}, {"destination": 1316236721, "path": [[-1943.2345615513213, 2562.502305677228], [-1851.8345615561316, 2522.7023056775265]], "source": 1316236686, "length": 19.506401502444202}, {"destination": 1316236522, "path": [[-1943.2345615513213, 2562.502305677228], [-1907.2345615569475, 2614.202305677438]], "source": 1316236686, "length": 13.381518751028935}, {"destination": 1316236718, "path": [[-1943.2345615513213, 2562.502305677228], [-1994.384561555762, 2585.9023056771234]], "source": 1316236686, "length": 11.03254291807556}, {"destination": 1782221369, "path": [[5801.365438443895, -8135.44769432184], [5802.165438446138, -8134.097694322051], [5809.265438443845, -8128.547694322919], [5817.3654384461315, -8125.547694323387], [5827.015438448769, -8124.947694323481], [5836.2654384467305, -8127.197694323129], [5842.565438449299, -8130.897694321959]], "source": 1782221471, "length": 8.9933088105491}, {"destination": 1782221395, "path": [[5801.365438443895, -8135.44769432184], [5797.715438447426, -8141.397694322094], [5796.4154384464455, -8149.54769432319], [5800.415438443451, -8160.847694322016], [5806.765438443052, -8167.047694323415], [5807.065438446557, -8167.197694323391]], "source": 1782221471, "length": 7.780644420747481}, {"destination": 1316237180, "path": [[-1256.5845615526428, 1709.2523056767561], [-1110.6345615559121, 1666.9023056774536]], "source": 1316236688, "length": 29.310613199231522}, {"destination": 1316623182, "path": [[-566.7345615520958, -150.1476943222002], [-900.7845615514043, -29.697694323260748]], "source": 475975057, "length": 68.94325856571307}, {"destination": 1316196946, "path": [[-2385.884561554974, 969.45230567691], [-2375.034561552525, 993.6023056766885]], "source": 1316236692, "length": 5.752805190490314}, {"destination": 1316237116, "path": [[-2385.884561554974, 969.45230567691], [-2447.484561550084, 998.2023056771538], [-2431.3845615537844, 1048.652305676967], [-2519.8845615506116, 1089.95230567821]], "source": 1316236692, "length": 44.15038537226709}, {"destination": 1316196981, "path": [[-2385.884561554974, 969.45230567691], [-2415.2345615533477, 904.1523056776413]], "source": 1316236692, "length": 15.558118711145502}, {"destination": 1316236612, "path": [[-1583.784561553614, 918.0523056766532], [-1779.5845615538042, 993.6023056766885], [-1887.3345615517678, 1034.2523056774412]], "source": 1316236693, "length": 63.248485926751854}, {"destination": 1320103835, "path": [[3156.1654384475446, 4432.952305677418], [3286.615438447882, 4061.552305676841]], "source": 654405017, "length": 86.24145963290196}, {"destination": 476559359, "path": [[3156.1654384475446, 4432.952305677418], [3335.065438449192, 4492.602305678161], [3491.2654384484654, 4550.6023056773865]], "source": 654405017, "length": 68.90632804409461}, {"destination": 1316236722, "path": [[-1369.2345615510249, 2401.9523056768576], [-1506.0345615509618, 2470.752305677948], [-1602.284561556644, 2531.3523056773593]], "source": 1316236698, "length": 52.9133414028407}, {"destination": 1316236476, "path": [[-882.3845615566484, 2013.0523056778316], [-926.1345615527716, 1945.9023056782598]], "source": 1316236699, "length": 17.094969240848563}, {"destination": 1316236925, "path": [[-882.3845615566484, 2013.0523056778316], [-828.8345615525827, 2095.25230567742]], "source": 1316236699, "length": 20.925888370649783}, {"destination": 1316236647, "path": [[-882.3845615566484, 2013.0523056778316], [-929.33456155464, 2034.9523056779617], [-1016.4845615534546, 2081.802305676561]], "source": 1316236699, "length": 29.74791415484423}, {"destination": 1316237230, "path": [[-706.7345615539011, 2704.752305676905], [-1082.2345615508766, 2902.002305678053], [-1191.3345615539583, 2948.152305677354]], "source": 1316236700, "length": 106.95897550819558}, {"destination": 1316236961, "path": [[-2272.734561550749, 3237.7023056771036], [-2189.984561553615, 3207.052305677749], [-2130.984561553362, 3184.152305676591], [-2069.2845615499778, 3184.152305676591], [-2007.5845615536991, 3140.5523056768916]], "source": 1316236701, "length": 56.43055980347504}, {"destination": 1316236531, "path": [[-2272.734561550749, 3237.7023056771036], [-2283.884561556704, 3211.6523056782144], [-2283.884561556704, 3188.702305678248]], "source": 1316236701, "length": 11.272949699209192}, {"destination": 1316236461, "path": [[-2272.734561550749, 3237.7023056771036], [-2231.7845615518195, 3333.202305677574]], "source": 1316236701, "length": 22.621342567849158}, {"destination": 1316236392, "path": [[-1438.9845615525587, 1934.0523056765592], [-1401.784561551267, 2017.3023056777595]], "source": 1316236702, "length": 19.819917325334732}, {"destination": 1316237137, "path": [[-1438.9845615525587, 1934.0523056765592], [-1479.1845615533816, 1879.002305678057]], "source": 1316236702, "length": 14.433932640418899}, {"destination": 1316236344, "path": [[-1438.9845615525587, 1934.0523056765592], [-1610.3345615547937, 2013.8523056765223]], "source": 1316236702, "length": 37.106276005352015}, {"destination": 1888338541, "path": [[-1300.9345615557777, -3627.597694322304], [-1331.8345615545013, -3626.5976943230526], [-1365.6845615557245, -3623.0976943230075], [-1416.0845615549533, -3613.347694322755], [-1460.5345615521514, -3597.6976943228324]], "source": 1888338501, "length": 31.330200825741844}, {"destination": 479279454, "path": [[-1300.9345615557777, -3627.597694322304], [-1329.4345615548764, -3686.647694323142]], "source": 1888338501, "length": 14.206096945091547}, {"destination": 1316236896, "path": [[-194.9345615557263, 3517.002305677863], [-325.83456155066415, 3569.502305676764]], "source": 1316236704, "length": 27.497044530022915}, {"destination": 1316236889, "path": [[-194.9345615557263, 3517.002305677863], [-154.18456155202875, 3500.6523056768656], [-19.634561553516505, 3422.9023056777664]], "source": 1316236704, "length": 39.443881692885846}, {"destination": 1316236380, "path": [[-194.9345615557263, 3517.002305677863], [-167.58456155230306, 3551.152305677263], [-135.4345615567354, 3617.6523056781207]], "source": 1316236704, "length": 25.20833863630436}, {"destination": 1316237104, "path": [[-1150.334561550892, 3010.4023056782835], [-1274.784561552167, 3069.452305677345]], "source": 1316236706, "length": 27.067421947139994}, {"destination": 1316236924, "path": [[-1150.334561550892, 3010.4023056782835], [-881.0845615556673, 2892.8023056771226], [-855.4845615549311, 2852.0023056781697]], "source": 1316236706, "length": 67.79622658072087}, {"destination": 1316237230, "path": [[-1150.334561550892, 3010.4023056782835], [-1191.3345615539583, 2948.152305677354]], "source": 1316236706, "length": 15.889139945714449}, {"destination": 1316236359, "path": [[-1150.334561550892, 3010.4023056782835], [-1090.2845615561318, 3101.5523056776574]], "source": 1316236706, "length": 23.266735717200444}, {"destination": 1316236424, "path": [[-775.4845615508543, 3510.852305677048], [-835.4845615556883, 3546.552305676798], [-1082.9845615560885, 3664.0023056779823]], "source": 1316236708, "length": 67.73380257099971}, {"destination": 1316236659, "path": [[-775.4845615508543, 3510.852305677048], [-811.3345615541334, 3452.502305677285]], "source": 1316236708, "length": 14.658534894702965}, {"destination": 1316236428, "path": [[-775.4845615508543, 3510.852305677048], [-730.884561555456, 3583.4523056781363]], "source": 1316236708, "length": 18.23798356569461}, {"destination": 677799505, "path": [[-490.084561555193, -4005.0476943225276], [-384.1845615539796, -3877.3476943223527]], "source": 476794281, "length": 34.81426105383086}, {"destination": 95386562, "path": [[-490.084561555193, -4005.0476943225276], [-525.9845615555037, -4057.897694321966], [-551.4845615550712, -4112.147694321777], [-778.7345615568597, -4687.19769432191]], "source": 476794281, "length": 161.58326876694838}, {"destination": 1888338540, "path": [[-490.084561555193, -4005.0476943225276], [-505.8845615550922, -3995.9476943227655]], "source": 476794281, "length": 3.623748989097143}, {"destination": 1316236673, "path": [[-3380.734561552856, 1424.8523056767935], [-3238.7345615561003, 1319.3523056767021], [-3126.0845615506128, 1268.852305678081], [-3048.0845615556973, 1233.4523056782841]], "source": 1316236715, "length": 76.75506224559783}, {"destination": 1316237001, "path": [[-1351.3345615550065, 2705.202305676835], [-1101.53456155615, 2573.202305677924]], "source": 1316236717, "length": 55.8454401024723}, {"destination": 1316237165, "path": [[-1351.3345615550065, 2705.202305676835], [-1312.8345615527337, 2763.7023056765743]], "source": 1316236717, "length": 14.928728757834483}, {"destination": 482732142, "path": [[-1351.3345615550065, 2705.202305676835], [-1452.9845615527393, 2758.9023056773244]], "source": 1316236717, "length": 22.723505143605273}, {"destination": 1316237232, "path": [[-1994.384561555762, 2585.9023056771234], [-2058.5345615558026, 2615.302305677858]], "source": 1316236718, "length": 13.842354314313749}, {"destination": 1316237115, "path": [[-1994.384561555762, 2585.9023056771234], [-2035.1345615523542, 2534.4023056774745]], "source": 1316236718, "length": 13.829000353467162}, {"destination": 1316236686, "path": [[-1994.384561555762, 2585.9023056771234], [-1943.2345615513213, 2562.502305677228]], "source": 1316236718, "length": 11.03254291807556}, {"destination": 1316236828, "path": [[-1851.8345615561316, 2522.7023056775265], [-1806.4345615513844, 2502.9023056770684]], "source": 1316236721, "length": 9.692716998406112}, {"destination": 1316236686, "path": [[-1851.8345615561316, 2522.7023056775265], [-1943.2345615513213, 2562.502305677228]], "source": 1316236721, "length": 19.506401502444202}, {"destination": 1316236599, "path": [[-1851.8345615561316, 2522.7023056775265], [-1884.3845615563737, 2464.202305677787]], "source": 1316236721, "length": 14.40768342316043}, {"destination": 1316236544, "path": [[-1602.284561556644, 2531.3523056773593], [-1735.984561555881, 2598.5023056769305]], "source": 1316236722, "length": 29.48811276952435}, {"destination": 1316236698, "path": [[-1602.284561556644, 2531.3523056773593], [-1506.0345615509618, 2470.752305677948], [-1369.2345615510249, 2401.9523056768576]], "source": 1316236722, "length": 52.9133414028407}, {"destination": 1316236381, "path": [[-1602.284561556644, 2531.3523056773593], [-1562.884561550959, 2591.402305677448]], "source": 1316236722, "length": 15.313176421140579}, {"destination": 1316237158, "path": [[-1602.284561556644, 2531.3523056773593], [-1635.5345615508554, 2480.702305676985]], "source": 1316236722, "length": 12.917848579370968}, {"destination": 1316236544, "path": [[-1774.034561556448, 2546.852305677305], [-1735.984561555881, 2598.5023056769305]], "source": 1316236723, "length": 13.57609872494764}, {"destination": 1316236522, "path": [[-1774.034561556448, 2546.852305677305], [-1907.2345615569475, 2614.202305677438]], "source": 1316236723, "length": 29.429065199398455}, {"destination": 1316236828, "path": [[-1774.034561556448, 2546.852305677305], [-1806.4345615513844, 2502.9023056770684]], "source": 1316236723, "length": 11.554075018608636}, {"destination": 1316237158, "path": [[-1774.034561556448, 2546.852305677305], [-1635.5345615508554, 2480.702305676985]], "source": 1316236723, "length": 30.170056118641327}, {"destination": 1316237210, "path": [[-1933.6845615569587, 3838.3523056779723], [-1903.9345615539105, 3905.6523056775204]], "source": 1316236724, "length": 16.0004933143431}, {"destination": 1316236563, "path": [[-1933.6845615569587, 3838.3523056779723], [-1967.3845615528762, 3762.1523056774463]], "source": 1316236724, "length": 18.117501337614378}, {"destination": 1316236427, "path": [[-1933.6845615569587, 3838.3523056779723], [-1771.584561552686, 3798.852305678224]], "source": 1316236724, "length": 32.05642156103545}, {"destination": 1316236767, "path": [[-1933.6845615569587, 3838.3523056779723], [-2071.9845615531085, 3865.4023056778897]], "source": 1316236724, "length": 26.982046065811392}, {"destination": 3318976588, "path": [[-1517.8845615508862, -3556.347694322781], [-1578.3845615544578, -3619.3976943224015], [-1641.4345615558545, -3813.197694322312]], "source": 476794296, "length": 62.87303554991063}, {"destination": 1889255133, "path": [[-1517.8845615508862, -3556.347694322781], [-1635.4845615538238, -3449.9976943234146]], "source": 476794296, "length": 32.549426619440105}, {"destination": 1316236792, "path": [[-2975.6345615510327, 1737.2523056771172], [-3005.6845615504812, 1674.7023056780108]], "source": 1316236732, "length": 15.038803270122731}, {"destination": 1316236873, "path": [[-2975.6345615510327, 1737.2523056771172], [-2947.284561550134, 1796.3523056767626]], "source": 1316236732, "length": 14.206096945091547}, {"destination": 1316236794, "path": [[-2975.6345615510327, 1737.2523056771172], [-3198.4845615511404, 1846.9023056777446]], "source": 1316236732, "length": 48.89589500808629}, {"destination": 1889255141, "path": [[-2203.034561553352, -3353.99769432243], [-2139.8845615507867, -3222.597694323426]], "source": 476794301, "length": 31.593250908709074}, {"destination": 477621319, "path": [[-2203.034561553352, -3353.99769432243], [-2236.1345615564687, -3369.9476943223062], [-2271.5345615509364, -3380.7476943223946], [-2306.9345615525094, -3389.897694322741], [-2582.584561551471, -3435.9476943226496], [-2701.93456154999, -3452.097694323086], [-2899.3345615546673, -3467.1476943231028]], "source": 476794301, "length": 135.47663643176122}, {"destination": 1404037047, "path": [[-1162.5845615554908, 5193.4523056775815], [-1090.1345615508262, 5154.452305676571]], "source": 1404037107, "length": 16.281910958361102}, {"destination": 1316236546, "path": [[-469.03456155433787, 2323.5523056772677], [-612.8345615508124, 2365.2523056778564]], "source": 1316236736, "length": 28.877542061643876}, {"destination": 1316236747, "path": [[-469.03456155433787, 2323.5523056772677], [-506.1845615514926, 2235.602305677986]], "source": 1316236736, "length": 20.795844221147487}, {"destination": 1316237142, "path": [[-469.03456155433787, 2323.5523056772677], [-331.23456155692566, 2287.2523056776117]], "source": 1316236736, "length": 27.422046557717223}, {"destination": 1316236998, "path": [[-469.03456155433787, 2323.5523056772677], [-434.13456155150243, 2406.1023056773934]], "source": 1316236736, "length": 19.52118118084623}, {"destination": 1889249354, "path": [[-3939.034561554422, -3321.2976943222116], [-3977.634561550758, -3313.797694323384], [-4107.734561550558, -3290.797694322833]], "source": 476794305, "length": 32.79090261098544}, {"destination": 1889249238, "path": [[-3939.034561554422, -3321.2976943222116], [-3977.684561554895, -3407.797694322312]], "source": 476794305, "length": 20.592893596398646}, {"destination": 1889249311, "path": [[-3939.034561554422, -3321.2976943222116], [-3996.6345615525256, -3292.5976943225523], [-4192.784561553253, -3233.847694323444]], "source": 476794305, "length": 52.198291219739815}, {"destination": 1316237089, "path": [[-2368.4345615535563, 1633.8523056766974], [-2468.9345615556135, 1661.1023056771755], [-2621.284561556081, 1695.4523056771363]], "source": 1316236739, "length": 50.01431332244999}, {"destination": 1316198732, "path": [[-2368.4345615535563, 1633.8523056766974], [-2346.384561555226, 1699.802305678233]], "source": 1316236739, "length": 15.25420679197268}, {"destination": 1316196998, "path": [[-2368.4345615535563, 1633.8523056766974], [-2383.0845615506746, 1589.952305677045], [-1910.984561554585, 1445.452305677719], [-1713.0845615511703, 1356.7523056767782]], "source": 1316236739, "length": 148.005825005482}, {"destination": 3355899008, "path": [[-5796.134561556699, -2398.6976943231043], [-6077.684561553553, -2250.0976943220508]], "source": 476794311, "length": 62.917915962531566}, {"destination": 3344153898, "path": [[4879.415438445278, -5988.897694322759], [4881.065438446796, -6241.39769432297], [4873.015438448647, -6546.797694323203]], "source": 495635912, "length": 124.08962282711198}, {"destination": 602360650, "path": [[4879.415438445278, -5988.897694322759], [4827.765438449205, -5987.397694322994]], "source": 495635912, "length": 9.827078358489}, {"destination": 1316237057, "path": [[-1891.0845615565108, 3338.552305677922], [-1865.8845615533437, 3388.8023056771744]], "source": 1316236745, "length": 12.159891082560405}, {"destination": 1316236442, "path": [[-1891.0845615565108, 3338.552305677922], [-1917.5845615535536, 3285.7023056767075]], "source": 1316236745, "length": 12.788475758991254}, {"destination": 1316236596, "path": [[-1891.0845615565108, 3338.552305677922], [-1811.5845615511716, 3300.2023056774024]], "source": 1316236745, "length": 17.35891195425233}, {"destination": 1316236853, "path": [[-1891.0845615565108, 3338.552305677922], [-1972.7345615550007, 3376.8023056772736]], "source": 1316236745, "length": 17.70590348418524}, {"destination": 1316236736, "path": [[-506.1845615514926, 2235.602305677986], [-469.03456155433787, 2323.5523056772677]], "source": 1316236747, "length": 20.795844221147487}, {"destination": 1316236387, "path": [[-506.1845615514926, 2235.602305677986], [-331.23456155692566, 2186.3523056779854], [-248.0845615551175, 2188.652305678218]], "source": 1316236747, "length": 50.85053859969514}, {"destination": 1316237219, "path": [[-506.1845615514926, 2235.602305677986], [-655.7845615517977, 2278.1023056772656], [-749.6345615507494, 2319.402305676732]], "source": 1316236747, "length": 50.05271332906145}, {"destination": 1316236349, "path": [[-506.1845615514926, 2235.602305677986], [-539.0845615522721, 2157.8523056771105]], "source": 1316236747, "length": 18.38784383572614}, {"destination": 1328999552, "path": [[2578.6654384489793, 7135.952305677762], [2810.015438448943, 7139.75230567776]], "source": 1328999547, "length": 44.010841716723945}, {"destination": 1328999593, "path": [[2578.6654384489793, 7135.952305677762], [2571.115438449567, 7259.9523056773305]], "source": 1328999547, "length": 27.61397407680605}, {"destination": 1328999494, "path": [[2578.6654384489793, 7135.952305677762], [2587.265438450004, 6993.752305676892]], "source": 1328999547, "length": 31.66633917401668}, {"destination": 1316236812, "path": [[-2552.0845615503163, 2762.1023056774166], [-2416.834561550729, 2711.452305677042]], "source": 1316236756, "length": 28.0803538123388}, {"destination": 1316236593, "path": [[403.26543844315665, 3265.802305676857], [446.61543844881635, 3380.252305676734], [473.0154384446905, 3477.1523056775777]], "source": 1316236759, "length": 48.88129471062706}, {"destination": 1316236889, "path": [[403.26543844315665, 3265.802305676857], [268.6654384476128, 3307.55230567803], [-19.634561553516505, 3422.9023056777664]], "source": 1316236759, "length": 87.76484391660642}, {"destination": 848733096, "path": [[2862.115438446722, -7211.997694323458], [2876.0654384498707, -7192.047694323022], [2939.2154384453306, -7101.747694322924]], "source": 495627677, "length": 28.56747584653609}, {"destination": 848733097, "path": [[2862.115438446722, -7211.997694323458], [2715.4654384489163, -7152.997694323204]], "source": 495627677, "length": 30.817333937841482}, {"destination": 1316237216, "path": [[-1969.1345615555633, 2318.5023056768728], [-1938.2345615568397, 2371.4523056774797]], "source": 1316236763, "length": 13.160119301902421}, {"destination": 1316237194, "path": [[-1969.1345615555633, 2318.5023056768728], [-2135.5845615502744, 2403.9523056771372]], "source": 1316236763, "length": 36.92146239434764}, {"destination": 639308676, "path": [[-1969.1345615555633, 2318.5023056768728], [-1883.2345615535928, 2274.402305676659], [-1801.134561553397, 2228.2523056773584]], "source": 1316236763, "length": 37.73953598595213}, {"destination": 1316236413, "path": [[-1969.1345615555633, 2318.5023056768728], [-2010.2845615568299, 2246.002305676953], [-2079.684561550721, 2137.002305676816]], "source": 1316236763, "length": 45.52294276437948}, {"destination": 1316236932, "path": [[-3029.5345615556357, 1920.3023056775237], [-2913.734561552417, 1866.1523056771046]], "source": 1316236764, "length": 25.100325013185145}, {"destination": 1316236365, "path": [[-2940.9845615546715, 1165.652305678222], [-3060.934561553097, 1213.8523056766103]], "source": 1316236765, "length": 25.204239778267393}, {"destination": 1316236724, "path": [[-2071.9845615531085, 3865.4023056778897], [-1933.6845615569587, 3838.3523056779723]], "source": 1316236767, "length": 26.982046065811392}, {"destination": 1316237128, "path": [[-903.8845615521041, 2285.6523056766773], [-1092.5345615504511, 2382.6523056769133]], "source": 1316236768, "length": 41.86340396963411}, {"destination": 1316236642, "path": [[-903.8845615521041, 2285.6523056766773], [-827.434561550433, 2435.4023056769593]], "source": 1316236768, "length": 36.338327086532175}, {"destination": 1316237237, "path": [[-903.8845615521041, 2285.6523056766773], [-822.034561551277, 2248.3023056771854]], "source": 1316236768, "length": 17.64369322287643}, {"destination": 1316237082, "path": [[-903.8845615521041, 2285.6523056766773], [-915.9345615543657, 2262.0523056779975], [-943.0845615554517, 2215.4523056769904]], "source": 1316236768, "length": 17.30591491361374}, {"destination": 1316197000, "path": [[-1679.6345615546215, 1425.0523056773545], [-1309.1345615521277, 1274.0023056778682]], "source": 1316196944, "length": 78.0584039515418}, {"destination": 1316196994, "path": [[-1679.6345615546215, 1425.0523056773545], [-1843.934561556182, 1495.9023056775322], [-2023.6345615529672, 1564.7523056774303]], "source": 1316196944, "length": 72.4421253887819}, {"destination": 1316196980, "path": [[-1679.6345615546215, 1425.0523056773545], [-1645.1845615534921, 1495.3523056782103]], "source": 1316196944, "length": 16.95149168335083}, {"destination": 1316196998, "path": [[-1679.6345615546215, 1425.0523056773545], [-1713.0845615511703, 1356.7523056767782]], "source": 1316196944, "length": 16.467672010150604}, {"destination": 1316236570, "path": [[-2200.7345615548957, 2801.0523056778425], [-2308.6345615510595, 2858.4023056765773]], "source": 1316236770, "length": 24.161393860100656}, {"destination": 1582517312, "path": [[-8715.834561556334, -3579.4476943227237], [-8767.684561554745, -3642.4476943217596]], "source": 1582517346, "length": 17.131834590097352}, {"destination": 1582517384, "path": [[-8715.834561556334, -3579.4476943227237], [-8664.784561553062, -3517.4476943229392], [-8605.734561555779, -3553.3976943220578]], "source": 1582517346, "length": 30.647019668096767}, {"destination": 476681030, "path": [[-8715.834561556334, -3579.4476943227237], [-8712.234561556897, -3629.297694322631], [-8712.234561556897, -3677.4976943227957], [-8713.58456155491, -3715.297694322217], [-8725.684561554204, -3749.6976943227623], [-8746.334561550384, -3774.1976943230784]], "source": 1582517346, "length": 44.942127733986}, {"destination": 267198544, "path": [[-5434.484561554598, -2602.7476943220054], [-5592.63456155179, -2791.5976943226897], [-5681.5345615532915, -2902.79769432189]], "source": 477618769, "length": 81.61130837529016}, {"destination": 476794311, "path": [[-5434.484561554598, -2602.7476943220054], [-5796.134561556699, -2398.6976943231043]], "source": 477618769, "length": 82.39411091935416}, {"destination": 1890935432, "path": [[-8560.084561551663, -1444.497694322422], [-8282.534561551813, -1413.547694323114], [-8239.634561554965, -1413.547694323114]], "source": 1890935378, "length": 61.38519789996815}, {"destination": 1890818618, "path": [[-8560.084561551663, -1444.497694322422], [-8590.934561553353, -1447.9476943218829], [-8623.134561553059, -1452.547694322348], [-8659.334561556876, -1463.9976943229271], [-8704.934561556855, -1478.897694322967], [-8733.084561555415, -1484.6476943226605], [-8883.284561555627, -1512.1476943225075], [-8912.7845615522, -1516.747694322973], [-8926.234561556612, -1523.6476943218945], [-8944.984561551904, -1538.5476943219346], [-8962.434561553324, -1545.3976943220482], [-9045.584561555132, -1563.7476943233253]], "source": 1890935378, "length": 96.99834932282647}, {"destination": 1891528343, "path": [[-8560.084561551663, -1444.497694322422], [-8552.784561551618, -1475.6976943228751]], "source": 1890935378, "length": 7.076352356988047}, {"destination": 1769171875, "path": [[3356.5654384446475, -6179.247694323209], [3390.315438444702, -6125.797694322088]], "source": 84487663, "length": 13.50821447830026}, {"destination": 476913230, "path": [[3356.5654384446475, -6179.247694323209], [3325.3154384453865, -6228.997694321947]], "source": 84487663, "length": 12.558418366808407}, {"destination": 4451470238, "path": [[3356.5654384446475, -6179.247694323209], [3421.9154384445005, -6177.847694322835]], "source": 84487663, "length": 12.429655064791776}, {"destination": 3283676143, "path": [[3356.5654384446475, -6179.247694323209], [3407.065438445045, -6201.697694322661]], "source": 84487663, "length": 10.822639256717077}, {"destination": 1316237194, "path": [[-2230.634561556144, 2452.702305676624], [-2135.5845615502744, 2403.9523056771372]], "source": 1316236784, "length": 21.07844537873433}, {"destination": 1316237235, "path": [[-2230.634561556144, 2452.702305676624], [-2177.484561556753, 2552.8523056781437]], "source": 1316236784, "length": 24.459096624818233}, {"destination": 639308674, "path": [[-2230.634561556144, 2452.702305676624], [-2503.984561556649, 2593.0523056771904]], "source": 1316236784, "length": 60.636472602594495}, {"destination": 1316236378, "path": [[-288.2845615559404, 2457.002305677136], [-352.7845615565184, 2472.7523056782275]], "source": 1316236785, "length": 12.757075633186906}, {"destination": 601661225, "path": [[-8924.584561555093, 7715.552305677776], [-8948.284561554941, 7660.302305676936], [-9102.784561555665, 7330.0023056770415], [-9246.784561554477, 7108.102305677377]], "source": 5016366578, "length": 148.64253667240297}, {"destination": 1316237108, "path": [[-2200.7345615548957, 2764.3523056770646], [-2116.2845615521064, 2734.302305677616]], "source": 1316236787, "length": 17.39573605182917}, {"destination": 1320103920, "path": [[3271.16543844852, 2134.7023056765834], [3281.2654384457574, 2197.1023056774898]], "source": 1320104104, "length": 14.009652301583216}, {"destination": 1320103730, "path": [[3271.16543844852, 2134.7023056765834], [3402.4654384481323, 2147.352305676975], [3614.365438444622, 2147.352305676975], [3689.4654384482806, 2122.1523056773603], [3692.165438444306, 2067.102305677082]], "source": 1320104104, "length": 93.02422975367277}, {"destination": 1320103645, "path": [[3271.16543844852, 2134.7023056765834], [3275.0154384473262, 2046.4523056773487]], "source": 1320104104, "length": 19.63947710950812}, {"destination": 1316236732, "path": [[-3005.6845615504812, 1674.7023056780108], [-2975.6345615510327, 1737.2523056771172]], "source": 1316236792, "length": 15.038803270122731}, {"destination": 1316236539, "path": [[-3005.6845615504812, 1674.7023056780108], [-3246.78456155425, 1782.6523056765354]], "source": 1316236792, "length": 51.7565303517943}, {"destination": 482732996, "path": [[-3005.6845615504812, 1674.7023056780108], [-3033.4845615556105, 1619.4023056765873]], "source": 1316236792, "length": 13.386569206786788}, {"destination": 1316236732, "path": [[-3198.4845615511404, 1846.9023056777446], [-2975.6345615510327, 1737.2523056771172]], "source": 1316236794, "length": 48.89589500808629}, {"destination": 2367475198, "path": [[901.9154384475314, -2303.8476943231244], [965.4154384435287, -2313.1976943222553]], "source": 2367475196, "length": 12.253660112418386}, {"destination": 477626820, "path": [[-7655.634561551495, -6574.347694321858], [-7765.534561556819, -6836.547694321737]], "source": 477636580, "length": 61.94200476884108}, {"destination": 477636653, "path": [[-7655.634561551495, -6574.347694321858], [-7368.384561551977, -6673.197694322397]], "source": 477636580, "length": 58.877038477808874}, {"destination": 2367475184, "path": [[965.4154384435287, -2313.1976943222553], [1186.215438444549, -2303.8476943231244], [1411.5154384484185, -2303.8476943231244], [1504.6154384492638, -2212.847694321951]], "source": 2367475198, "length": 111.7715986551708}, {"destination": 2367475196, "path": [[965.4154384435287, -2313.1976943222553], [901.9154384475314, -2303.8476943231244]], "source": 2367475198, "length": 12.253660112418386}, {"destination": 773662907, "path": [[965.4154384435287, -2313.1976943222553], [960.3154384478785, -2354.647694323475], [960.3154384478785, -2422.647694322322]], "source": 2367475198, "length": 24.391989010317225}, {"destination": 773662900, "path": [[965.4154384435287, -2313.1976943222553], [970.165438445747, -2274.5476943217823], [991.5154384430025, -2208.3976943232387], [1017.5154384484131, -2160.79769432298], [1056.415438448255, -2093.3976943222633], [1097.0654384436784, -2042.2476943231516], [1159.1654384446315, -1989.4976943231059], [1187.3154384431928, -1971.7976943223193]], "source": 2367475198, "length": 89.34551664903374}, {"destination": 477647784, "path": [[-2645.6845615570046, -5100.647694321836], [-2567.6345615508467, -4799.14769432277]], "source": 267194965, "length": 68.6734988258827}, {"destination": 1315678612, "path": [[-2645.6845615570046, -5100.647694321836], [-2822.984561554165, -5052.597694323424]], "source": 267194965, "length": 35.366729621640765}, {"destination": 850261330, "path": [[-3635.9345615508687, -7979.4476943231275], [-3399.234561555886, -7371.947694322145]], "source": 156380673, "length": 142.40131268746362}, {"destination": 210643019, "path": [[-3635.9345615508687, -7979.4476943231275], [-3751.0845615500443, -7955.047694322204], [-4284.784561555454, -7845.597694322138], [-4343.83456155274, -7829.797694322238]], "source": 156380673, "length": 138.6772740581965}, {"destination": 599408887, "path": [[-3635.9345615508687, -7979.4476943231275], [-3585.334561556408, -7988.897694323427]], "source": 156380673, "length": 9.847692226899785}, {"destination": 1316236392, "path": [[-1446.0345615532333, 2035.4523056766993], [-1401.784561551267, 2017.3023056777595]], "source": 1316236804, "length": 9.333654628462671}, {"destination": 1316236984, "path": [[-1446.0345615532333, 2035.4523056766993], [-1491.6345615532123, 2054.202305677322], [-1553.1845615512907, 2088.8023056766515]], "source": 1316236804, "length": 23.630301413337904}, {"destination": 1316236862, "path": [[-1446.0345615532333, 2035.4523056766993], [-1412.1345615549785, 2090.00230567824], [-1380.6345615563487, 2169.052305676544]], "source": 1316236804, "length": 32.31087731111313}, {"destination": 1316236911, "path": [[-706.7345615539011, 3250.6523056774486], [-630.0345615528613, 3373.952305677719]], "source": 1316236806, "length": 31.05912447629483}, {"destination": 1316236850, "path": [[-521.0345615509482, 3685.9023056781125], [-352.6845615553498, 3633.7023056773887]], "source": 1316236807, "length": 34.05721793452063}, {"destination": 1316236406, "path": [[-521.0345615509482, 3685.9023056781125], [-485.0345615565743, 3740.1023056773397]], "source": 1316236807, "length": 13.862523673968623}, {"destination": 1316236599, "path": [[-1760.8345615514054, 2415.7023056776693], [-1884.3845615563737, 2464.202305677787]], "source": 1316236808, "length": 25.854528098485527}, {"destination": 1316236497, "path": [[-2025.0845615521484, 2889.1523056771007], [-1921.7845615528972, 2849.2523056780074], [-1790.9845615520226, 2781.2023056768]], "source": 1316236809, "length": 50.67503997613507}, {"destination": 483098883, "path": [[-2025.0845615521484, 2889.1523056771007], [-1972.9345615502325, 3002.802305678287]], "source": 1316236809, "length": 27.1508696816295}, {"destination": 1316236485, "path": [[-2025.0845615521484, 2889.1523056771007], [-1404.7845615507981, 2842.902305676631]], "source": 1316236809, "length": 118.41797672968168}, {"destination": 1316236439, "path": [[-2025.0845615521484, 2889.1523056771007], [-2056.3845615555465, 2836.0023056777095]], "source": 1316236809, "length": 13.234557663396176}, {"destination": 1316236330, "path": [[-2025.0845615521484, 2889.1523056771007], [-2077.334561555233, 2908.9023056769747]], "source": 1316236809, "length": 10.864197812419851}, {"destination": 1316237165, "path": [[-2025.0845615521484, 2889.1523056771007], [-1312.8345615527337, 2763.7023056765743]], "source": 1316236809, "length": 138.30085437024186}, {"destination": 482732142, "path": [[-2025.0845615521484, 2889.1523056771007], [-1452.9845615527393, 2758.9023056773244]], "source": 1316236809, "length": 112.59334239737275}, {"destination": 1316236527, "path": [[-2622.784561552294, 958.8523056773823], [-2784.3845615507234, 1018.6523056781027]], "source": 1316236810, "length": 33.48651400847929}, {"destination": 103788196, "path": [[-1211.7845615549072, -6053.747694322098], [-1026.2845615542915, -5423.647694323464]], "source": 103788043, "length": 144.4991812972631}, {"destination": 1887596164, "path": [[-1211.7845615549072, -6053.747694322098], [-631.3345615538424, -6189.647694322176], [-471.7345615503632, -6219.497694322839], [-420.0845615542903, -6224.397694323258]], "source": 103788043, "length": 155.38020986543162}, {"destination": 1315678743, "path": [[-1211.7845615549072, -6053.747694322098], [-1245.8845615554992, -6197.297694322757]], "source": 103788043, "length": 32.575997584370675}, {"destination": 1316236756, "path": [[-2416.834561550729, 2711.452305677042], [-2552.0845615503163, 2762.1023056774166]], "source": 1316236812, "length": 28.0803538123388}, {"destination": 1316236565, "path": [[-2416.834561550729, 2711.452305677042], [-2405.434561552511, 2726.9523056769885]], "source": 1316236812, "length": 4.071169609418922}, {"destination": 1316236871, "path": [[-2416.834561550729, 2711.452305677042], [-2450.8845615542896, 2665.202305676573]], "source": 1316236812, "length": 12.154330919296989}, {"destination": 1316236974, "path": [[258.8654384467759, 4035.152305677414], [37.365438444680876, 4099.102305676894]], "source": 1316236814, "length": 44.462530980674046}, {"destination": 2629549322, "path": [[7027.865438445247, 2448.152305676743], [7233.165438449873, 2397.8523056769063]], "source": 2629549315, "length": 40.6150599266989}, {"destination": 654391743, "path": [[7027.865438445247, 2448.152305676743], [6964.165438446912, 2285.9523056766307]], "source": 2629549315, "length": 38.05170340060413}, {"destination": 2367475224, "path": [[1996.2654384499956, -1936.8976943230364], [1902.3654384469069, -1936.8976943230364], [1850.4654384443597, -1965.6476943232803]], "source": 2367475220, "length": 29.6159288497388}, {"destination": 1632904388, "path": [[-5933.934561554111, -8061.597694322131], [-6107.634561551833, -8151.797694322838]], "source": 874283609, "length": 38.64140321285292}, {"destination": 2367475184, "path": [[1850.4654384443597, -1965.6476943232803], [1787.015438445394, -2134.147694322408], [1749.4654384435648, -2212.0976943220685], [1666.315438448862, -2232.7476943218016], [1504.6154384492638, -2212.847694321951]], "source": 2367475224, "length": 105.64780417171801}, {"destination": 773662900, "path": [[1850.4654384443597, -1965.6476943232803], [1771.2154384454948, -1921.1476943219452], [1693.715438449317, -1889.4976943233387], [1593.51543844366, -1871.2476943232305], [1478.3654384444844, -1872.8476943223882], [1366.4654384442088, -1885.7976943227327], [1265.1154384499819, -1927.997694322059], [1187.3154384431928, -1971.7976943223193]], "source": 2367475224, "length": 136.36707922697596}, {"destination": 2367475220, "path": [[1850.4654384443597, -1965.6476943232803], [1902.3654384469069, -1936.8976943230364], [1996.2654384499956, -1936.8976943230364]], "source": 2367475224, "length": 29.6159288497388}, {"destination": 773662903, "path": [[1850.4654384443597, -1965.6476943232803], [1872.8654384432275, -1978.2476943230877], [2022.2654384483008, -2095.897694323057]], "source": 2367475224, "length": 43.72104619107482}, {"destination": 1316471825, "path": [[-1790.5845615544536, 4136.152305678209], [-1650.7345615508484, 4055.8023056771476]], "source": 1316236825, "length": 32.04292340935069}, {"destination": 476556645, "path": [[-1790.5845615544536, 4136.152305678209], [-1901.7845615536544, 4198.652305676731]], "source": 1316236825, "length": 25.307549804297558}, {"destination": 1316236422, "path": [[-1790.5845615544536, 4136.152305678209], [-1832.3345615556264, 4064.7523056769332]], "source": 1316236825, "length": 17.75368729613179}, {"destination": 639305947, "path": [[-2994.1345615540627, 2695.7023056777275], [-3038.6845615524294, 2633.102305678037]], "source": 476560259, "length": 16.297126278902507}, {"destination": 385114252, "path": [[-2994.1345615540627, 2695.7023056777275], [-2959.6845615529332, 2748.7023056771422], [-2653.634561553986, 3230.3523056782524]], "source": 476560259, "length": 135.3926602981245}, {"destination": 483098199, "path": [[-2994.1345615540627, 2695.7023056777275], [-2908.5845615526296, 2661.552305676551], [-2841.7845615535953, 2633.9023056767273]], "source": 476560259, "length": 32.06954263984176}, {"destination": 1316236721, "path": [[-1806.4345615513844, 2502.9023056770684], [-1851.8345615561316, 2522.7023056775265]], "source": 1316236828, "length": 9.692716998406112}, {"destination": 1316236723, "path": [[-1806.4345615513844, 2502.9023056770684], [-1774.034561556448, 2546.852305677305]], "source": 1316236828, "length": 11.554075018608636}, {"destination": 1316236926, "path": [[-1806.4345615513844, 2502.9023056770684], [-1666.1345615531786, 2434.05230567717]], "source": 1316236828, "length": 30.763474837726626}, {"destination": 477615666, "path": [[-4585.234561552908, -4580.1976943220525], [-4997.8345615500075, -4418.9476943223835]], "source": 267194970, "length": 86.26418665870686}, {"destination": 1315678807, "path": [[-4585.234561552908, -4580.1976943220525], [-4840.4845615550585, -4945.747694321767]], "source": 267194970, "length": 94.68161517454546}, {"destination": 481390832, "path": [[-4012.9845615552995, 93.40230567822516], [-3884.73456155225, 86.75230567689596], [-3805.784561556891, 70.00230567655308]], "source": 481439262, "length": 39.90315282432038}, {"destination": 385113971, "path": [[-4012.9845615552995, 93.40230567822516], [-4002.2845615510505, 194.1023056772906]], "source": 481439262, "length": 22.486875462513847}, {"destination": 481396599, "path": [[-4012.9845615552995, 93.40230567822516], [-4073.384561550597, -376.09769432300766], [-4043.3845615552855, -526.5476943225877], [-3931.78456155141, -732.0476943224463], [-3851.1845615545326, -849.4476943230467]], "source": 481439262, "length": 219.64782584474463}, {"destination": 1316236924, "path": [[-658.4345615507914, 2746.002305677564], [-840.8345615507073, 2828.6023056782738], [-855.4845615549311, 2852.0023056781697]], "source": 1316236831, "length": 45.157360084425854}, {"destination": 3113807401, "path": [[-6569.384561551316, 1085.2523056765763], [-6590.884561553878, 1102.20230567748]], "source": 3113807393, "length": 5.561628435672567}, {"destination": 3113807388, "path": [[-6569.384561551316, 1085.2523056765763], [-6537.784561551518, 1060.352305676915], [-6484.184561550421, 1015.6523056767952], [-6461.384561553985, 956.0023056778277], [-6446.6345615556975, 879.1523056768114], [-6451.9845615507165, 804.652305676612], [-6496.234561552683, 739.252305677951], [-6544.534561555793, 692.2523056775987], [-6608.884561551065, 655.5523056768209], [-6664.884561551788, 646.1023056765214]], "source": 3113807393, "length": 126.56721966414375}, {"destination": 3113807389, "path": [[-6569.384561551316, 1085.2523056765763], [-6576.68456155136, 1023.6523056779134], [-6658.484561555156, 999.6023056775272], [-6734.934561556827, 965.2023056769821], [-6808.784561556536, 922.7023056777028]], "source": 3113807393, "length": 63.576229096519725}, {"destination": 3113807400, "path": [[-6687.284561550655, 542.0523056773874], [-6768.484561554544, 529.4023056769959], [-6866.38456155464, 538.5523056773422], [-6917.334561556743, 566.1023056777736], [-6950.88456155446, 639.5023056775528], [-6925.384561554893, 706.002305676634], [-6867.734561552652, 748.4523056771053]], "source": 3113807394, "length": 93.4477399301873}, {"destination": 3113807411, "path": [[-6687.284561550655, 542.0523056773874], [-6681.284561551593, 530.5523056780004], [-6655.834561556162, 501.85230567656447], [-6653.134561553032, 442.2523056781813], [-6708.134561556279, 333.3023056768525], [-6729.584561554702, 325.7523056774403]], "source": 3113807394, "length": 54.87505725396681}, {"destination": 3113807388, "path": [[-6687.284561550655, 542.0523056773874], [-6708.134561556279, 582.1523056770417], [-6697.384561554998, 640.652305676781], [-6664.884561551788, 646.1023056765214]], "source": 3113807394, "length": 29.227994784546183}, {"destination": 475985639, "path": [[7994.815438443937, 6375.052305678253], [8223.965438446612, 5956.652305677324], [8397.215438449733, 5589.952305676605], [8504.815438449497, 5276.102305677099]], "source": 482733604, "length": 263.4409199484789}, {"destination": 103736843, "path": [[7994.815438443937, 6375.052305678253], [7321.365438443195, 6100.152305677398]], "source": 482733604, "length": 141.929518735727}, {"destination": 654379967, "path": [[7994.815438443937, 6375.052305678253], [7600.915438445099, 7082.152305677881], [7393.765438443723, 7414.352305676885]], "source": 482733604, "length": 257.91465554899366}, {"destination": 1316236352, "path": [[-2232.4845615528943, 2961.9023056781657], [-2252.2845615569054, 2934.9523056776407]], "source": 1316236839, "length": 7.078899181744607}, {"destination": 1316236842, "path": [[-2232.4845615528943, 2961.9023056781657], [-2374.934561551356, 3022.302305677016]], "source": 1316236839, "length": 30.238686229451375}, {"destination": 483090542, "path": [[-2232.4845615528943, 2961.9023056781657], [-2185.1845615543652, 3026.102305677014]], "source": 1316236839, "length": 16.875023406889618}, {"destination": 3113807394, "path": [[-6867.734561552652, 748.4523056771053], [-6925.384561554893, 706.002305676634], [-6950.88456155446, 639.5023056775528], [-6917.334561556743, 566.1023056777736], [-6866.38456155464, 538.5523056773422], [-6768.484561554544, 529.4023056769959], [-6687.284561550655, 542.0523056773874]], "source": 3113807400, "length": 93.4477399301873}, {"destination": 1316236385, "path": [[-1649.9345615557104, 2715.352305678209], [-1692.6845615543584, 2657.3023056766233]], "source": 1316236841, "length": 15.256569953379882}, {"destination": 1316237164, "path": [[-1649.9345615557104, 2715.352305678209], [-1617.3345615513313, 2759.5523056778147]], "source": 1316236841, "length": 11.621741076340218}, {"destination": 1316236446, "path": [[-1649.9345615557104, 2715.352305678209], [-1529.684561553779, 2641.952305676654]], "source": 1316236841, "length": 28.097359667236866}, {"destination": 1316236497, "path": [[-1649.9345615557104, 2715.352305678209], [-1790.9845615520226, 2781.2023056768]], "source": 1316236841, "length": 30.56242727407077}, {"destination": 1316237190, "path": [[-2374.934561551356, 3022.302305677016], [-2539.334561554085, 3079.352305677574]], "source": 1316236842, "length": 33.742168106017374}, {"destination": 1316236462, "path": [[-2374.934561551356, 3022.302305677016], [-2396.534561555086, 2993.752305677333], [-2415.7345615520853, 2976.5523056770603]], "source": 1316236842, "length": 12.849020130824286}, {"destination": 1316236839, "path": [[-2374.934561551356, 3022.302305677016], [-2232.4845615528943, 2961.9023056781657]], "source": 1316236842, "length": 30.238686229451375}, {"destination": 3113807401, "path": [[-6530.4345615544435, 1247.4023056778806], [-6561.934561553073, 1163.6023056773581], [-6590.884561553878, 1102.20230567748]], "source": 3113807403, "length": 34.29853695025503}, {"destination": 3055920274, "path": [[-6530.4345615544435, 1247.4023056778806], [-6551.084561550624, 1253.952305678041]], "source": 3113807403, "length": 4.189009131658576}, {"destination": 4908327490, "path": [[-6530.4345615544435, 1247.4023056778806], [-6275.4845615558, 1166.9023056768424], [-6178.234561552643, 1179.0023056779119]], "source": 3113807403, "length": 70.37426174112565}, {"destination": 479298745, "path": [[-7118.234561552583, 168.652305676531], [-7064.284561550949, 147.65230567803656], [-6757.484561553894, 10.002305677048184]], "source": 3113807404, "length": 77.16027872150653}, {"destination": 3113807411, "path": [[-7118.234561552583, 168.652305676531], [-7079.634561556248, 230.05230567818558], [-6958.93456155261, 277.10230567734584], [-6799.334561556236, 301.1523056777321], [-6729.584561554702, 325.7523056774403]], "source": 3113807404, "length": 85.89614088125349}, {"destination": 486131798, "path": [[-7118.234561552583, 168.652305676531], [-7265.384561556231, 225.8523056770656]], "source": 3113807404, "length": 30.739588612739702}, {"destination": 1172174596, "path": [[-7887.434561553164, -4127.047694321817], [-7922.834561554737, -4112.6476943222915]], "source": 1928818222, "length": 7.454698639181381}, {"destination": 1316236352, "path": [[-2136.3345615554863, 2881.3523056765434], [-2252.2845615569054, 2934.9523056776407]], "source": 1316236849, "length": 25.067268943684937}, {"destination": 1316236807, "path": [[-352.6845615553498, 3633.7023056773887], [-521.0345615509482, 3685.9023056781125]], "source": 1316236850, "length": 34.05721793452063}, {"destination": 3113807409, "path": [[-6729.584561554702, 325.7523056774403], [-6689.334561556848, 259.9023056770733], [-6639.134561552851, 242.65230567799279]], "source": 3113807411, "length": 26.81278619791169}, {"destination": 3113807394, "path": [[-6729.584561554702, 325.7523056774403], [-6708.134561556279, 333.3023056768525], [-6653.134561553032, 442.2523056781813], [-6655.834561556162, 501.85230567656447], [-6681.284561551593, 530.5523056780004], [-6687.284561550655, 542.0523056773874]], "source": 3113807411, "length": 54.875057253966816}, {"destination": 3113807404, "path": [[-6729.584561554702, 325.7523056774403], [-6799.334561556236, 301.1523056777321], [-6958.93456155261, 277.10230567734584], [-7079.634561556248, 230.05230567818558], [-7118.234561552583, 168.652305676531]], "source": 3113807411, "length": 85.89614088125347}, {"destination": 1316236745, "path": [[-1972.7345615550007, 3376.8023056772736], [-1891.0845615565108, 3338.552305677922]], "source": 1316236853, "length": 17.70590348418524}, {"destination": 639308714, "path": [[-1618.284561551775, 635.8523056775311], [-1628.8845615548553, 614.1523056779619]], "source": 1316236855, "length": 5.230933692575181}, {"destination": 1316237139, "path": [[-1618.284561551775, 635.8523056775311], [-1776.9345615548104, 681.8023056780476]], "source": 1316236855, "length": 31.854763387002233}, {"destination": 1316196972, "path": [[-1618.284561551775, 635.8523056775311], [-1537.784561556066, 800.7023056766371]], "source": 1316236855, "length": 39.7290888624369}, {"destination": 602360670, "path": [[5275.015438449771, -4782.747694322964], [5322.365438445331, -4826.94769432257]], "source": 602360660, "length": 13.329894802128631}, {"destination": 478379215, "path": [[5275.015438449771, -4782.747694322964], [5647.165438446677, -4348.247694322183], [5872.465438443442, -4132.697694322118], [6025.265438445615, -3985.647694323191]], "source": 602360660, "length": 227.80631829249822}, {"destination": 483099864, "path": [[-554.584561555771, 3495.302305676518], [-452.3845615551636, 3444.2023056779904]], "source": 1316236857, "length": 22.515514414560833}, {"destination": 476559922, "path": [[-554.584561555771, 3495.302305676518], [-624.434561551368, 3530.2023056775765]], "source": 1316236857, "length": 15.385691988405105}, {"destination": 1316236911, "path": [[-554.584561555771, 3495.302305676518], [-630.0345615528613, 3373.952305677719]], "source": 1316236857, "length": 30.564786350686013}, {"destination": 1316236446, "path": [[-1253.8845615566174, 2525.8023056782263], [-1315.584561552896, 2553.3523056768813], [-1315.584561552896, 2585.452305677194], [-1358.4845615568497, 2594.6523056781243], [-1385.33456155443, 2583.152305676961], [-1529.684561553779, 2641.952305676654]], "source": 1316236858, "length": 64.9063096268669}, {"destination": 654394586, "path": [[-2015.5845615548174, 5614.302305676943], [-2429.4345615558655, 5195.8523056772065], [-2477.684561554838, 5140.75230567812], [-2483.0845615539943, 5108.652305677808], [-2440.134561553009, 5081.152305677961], [-2391.8845615540363, 5062.802305676683], [-2391.8845615540363, 5026.102305677682], [-2434.7845615508845, 4975.602305677285], [-2541.984561553079, 4842.702305676738]], "source": 654393951, "length": 222.6018776619995}, {"destination": 603884631, "path": [[-2015.5845615548174, 5614.302305676943], [-2265.83456155538, 5761.602305677016]], "source": 654393951, "length": 57.77957892968734}, {"destination": 1928818248, "path": [[-9078.134561555373, -4258.397694322013], [-8930.384561551818, -4358.497694322949]], "source": 1928818236, "length": 35.84563792362561}, {"destination": 1928818241, "path": [[-9078.134561555373, -4258.397694322013], [-9088.484561551979, -4285.397694323123]], "source": 1928818236, "length": 6.318735763386449}, {"destination": 1928818250, "path": [[-9078.134561555373, -4258.397694322013], [-9174.984561553856, -4192.797694322791], [-9195.084561554268, -4229.397694322401], [-9119.084561554302, -4371.047694322172]], "source": 1928818236, "length": 67.14509315847238}, {"destination": 1928818244, "path": [[-9078.134561555373, -4258.397694322013], [-8954.684561551574, -4273.697694323175], [-8885.084561555344, -4317.497694323436]], "source": 1928818236, "length": 40.15241097290811}, {"destination": 1316236862, "path": [[-1371.9345615541556, 2190.9523056766743], [-1380.6345615563487, 2169.052305676544]], "source": 1316236861, "length": 5.14231156166531}, {"destination": 1316236804, "path": [[-1380.6345615563487, 2169.052305676544], [-1412.1345615549785, 2090.00230567824], [-1446.0345615532333, 2035.4523056766993]], "source": 1316236862, "length": 32.31087731111313}, {"destination": 1316236861, "path": [[-1380.6345615563487, 2169.052305676544], [-1371.9345615541556, 2190.9523056766743]], "source": 1316236862, "length": 5.14231156166531}, {"destination": 1316236887, "path": [[-1380.6345615563487, 2169.052305676544], [-1457.7345615549575, 2193.252305676907], [-1492.6345615506875, 2170.302305676941], [-1751.2845615570427, 2304.2523056773234]], "source": 1316236862, "length": 81.49950212648103}, {"destination": 1729319686, "path": [[-8766.484561554933, -4281.397694322564], [-8767.23456155304, -4195.247694323001]], "source": 1928818240, "length": 19.1590898150684}, {"destination": 1928818256, "path": [[-9088.484561551979, -4285.397694323123], [-9007.98456155627, -4412.09769432227]], "source": 1928818241, "length": 32.06640091394001}, {"destination": 1928818250, "path": [[-9088.484561551979, -4285.397694323123], [-9119.084561554302, -4371.047694322172]], "source": 1928818241, "length": 19.916539569698834}, {"destination": 1928818236, "path": [[-9088.484561551979, -4285.397694323123], [-9078.134561555373, -4258.397694322013]], "source": 1928818241, "length": 6.318735763386449}, {"destination": 1928818248, "path": [[-8885.084561555344, -4317.497694323436], [-8930.384561551818, -4358.497694322949]], "source": 1928818244, "length": 12.543697608320493}, {"destination": 1928818236, "path": [[-8885.084561555344, -4317.497694323436], [-8954.684561551574, -4273.697694323175], [-9078.134561555373, -4258.397694322013]], "source": 1928818244, "length": 40.15241097290811}, {"destination": 1928818245, "path": [[-8885.084561555344, -4317.497694323436], [-8834.734561553149, -4323.59769432189]], "source": 1928818244, "length": 9.669442900085478}, {"destination": 1928818244, "path": [[-8834.734561553149, -4323.59769432189], [-8885.084561555344, -4317.497694323436]], "source": 1928818245, "length": 9.669442900085478}, {"destination": 639308682, "path": [[-2450.8845615542896, 2665.202305676573], [-2477.684561554838, 2628.8023056775246]], "source": 1316236871, "length": 9.566364200679025}, {"destination": 1316237235, "path": [[-2450.8845615542896, 2665.202305676573], [-2337.4845615506956, 2615.302305677858], [-2177.484561556753, 2552.8523056781437]], "source": 1316236871, "length": 57.70296206112867}, {"destination": 1316236812, "path": [[-2450.8845615542896, 2665.202305676573], [-2416.834561550729, 2711.452305677042]], "source": 1316236871, "length": 12.154330919296989}, {"destination": 1928818256, "path": [[-8930.384561551818, -4358.497694322949], [-9007.98456155627, -4412.09769432227]], "source": 1928818248, "length": 18.969040107131363}, {"destination": 1928818244, "path": [[-8930.384561551818, -4358.497694322949], [-8885.084561555344, -4317.497694323436]], "source": 1928818248, "length": 12.543697608320493}, {"destination": 1928818266, "path": [[-8930.384561551818, -4358.497694322949], [-8827.284561554905, -4428.297694323291], [-8787.58456155282, -4455.197694323232]], "source": 1928818248, "length": 34.63815947156857}, {"destination": 1928818236, "path": [[-8930.384561551818, -4358.497694322949], [-9078.134561555373, -4258.397694322013]], "source": 1928818248, "length": 35.84563792362561}, {"destination": 71129881, "path": [[-8915.534561552362, 3247.052305678011], [-8198.53456155073, 3087.4523056780845]], "source": 483118665, "length": 140.90561041672942}, {"destination": 71128708, "path": [[-8915.534561552362, 3247.052305678011], [-8821.984561556917, 4366.652305677121]], "source": 483118665, "length": 249.6228936703761}, {"destination": 71129462, "path": [[-8915.534561552362, 3247.052305678011], [-8942.984561556954, 2916.3523056769945], [-8954.98456155508, 2559.602305677089]], "source": 483118665, "length": 153.1000751152206}, {"destination": 622622441, "path": [[-6866.234561556439, 8840.352305677257], [-6088.284561556634, 8748.452305678], [-5309.834561550986, 8648.752305678187], [-5242.3845615550135, 8641.802305676905]], "source": 623406666, "length": 312.014812689087}, {"destination": 623416771, "path": [[-6866.234561556439, 8840.352305677257], [-6929.834561553605, 8604.902305677342]], "source": 623406666, "length": 53.7410018954284}, {"destination": 601712444, "path": [[-6866.234561556439, 8840.352305677257], [-8380.284561553708, 9104.452305678024]], "source": 623406666, "length": 293.91178770059315}, {"destination": 483098146, "path": [[-3093.334561555139, 1164.5523056778018], [-3235.4345615530633, 1251.6023056772242], [-3419.684561556835, 1334.3023056773263]], "source": 1316236875, "length": 72.81608949319326}, {"destination": 1316236365, "path": [[-3093.334561555139, 1164.5523056778018], [-3060.934561553097, 1213.8523056766103]], "source": 1316236875, "length": 12.57670550761334}, {"destination": 481395518, "path": [[-3093.334561555139, 1164.5523056778018], [-2986.7845615569877, 1106.0523056780626], [-2868.6345615511755, 1028.2023056777944], [-2816.184561552859, 968.102305677121]], "source": 1316236875, "length": 69.12315830727674}, {"destination": 1316237227, "path": [[-2155.1345615549167, 2812.5523056772295], [-2083.8845615500645, 2789.252305676726]], "source": 1316236877, "length": 14.507426278508122}, {"destination": 1316236481, "path": [[-1711.634561551989, 2893.852305676958], [-1755.4845615563863, 2832.2523056765194]], "source": 1316236879, "length": 16.037626616464394}, {"destination": 1316236883, "path": [[-1711.634561551989, 2893.852305676958], [-1625.0845615530807, 2843.5023056765376], [-1573.984561552777, 2818.4023056780916]], "source": 1316236879, "length": 31.115146904799154}, {"destination": 483098883, "path": [[-1711.634561551989, 2893.852305676958], [-1917.7345615517538, 2984.202305677641], [-1972.9345615502325, 3002.802305678287]], "source": 1316236879, "length": 55.330912149497706}, {"destination": 1928818248, "path": [[-9007.98456155627, -4412.09769432227], [-8930.384561551818, -4358.497694322949]], "source": 1928818256, "length": 18.969040107131363}, {"destination": 1928818241, "path": [[-9007.98456155627, -4412.09769432227], [-9088.484561551979, -4285.397694323123]], "source": 1928818256, "length": 32.06640091394001}, {"destination": 1928818258, "path": [[-9007.98456155627, -4412.09769432227], [-8999.384561555245, -4425.597694321937]], "source": 1928818256, "length": 3.418993848168728}, {"destination": 5021317180, "path": [[-8249.784561556338, -4422.19769432306], [-8122.484561553733, -4481.397694322098], [-8061.534561555562, -4507.497694323348]], "source": 1928818257, "length": 40.51723906542465}, {"destination": 1928818256, "path": [[-8999.384561555245, -4425.597694321937], [-9007.98456155627, -4412.09769432227]], "source": 1928818258, "length": 3.418993848168728}, {"destination": 1928818266, "path": [[-8999.384561555245, -4425.597694321937], [-8787.58456155282, -4455.197694323232]], "source": 1928818258, "length": 40.808986838479306}, {"destination": 1928818255, "path": [[-8999.384561555245, -4425.597694321937], [-9095.83456155616, -4410.797694323065]], "source": 1928818258, "length": 18.63348200999962}, {"destination": 1316237164, "path": [[-1573.984561552777, 2818.4023056780916], [-1617.3345615513313, 2759.5523056778147]], "source": 1316236883, "length": 15.467776079712658}, {"destination": 482732142, "path": [[-1573.984561552777, 2818.4023056780916], [-1459.384561556476, 2762.052305676832], [-1452.9845615527393, 2758.9023056773244]], "source": 1316236883, "length": 26.548987028429448}, {"destination": 1316236879, "path": [[-1573.984561552777, 2818.4023056780916], [-1625.0845615530807, 2843.5023056765376], [-1711.634561551989, 2893.852305676958]], "source": 1316236883, "length": 31.115146904799154}, {"destination": 1928818270, "path": [[-8458.134561550423, -4437.54769432303], [-8466.484561552079, -4500.047694323328]], "source": 1928818262, "length": 13.989695063256946}, {"destination": 1316237216, "path": [[-1751.2845615570427, 2304.2523056773234], [-1938.2345615568397, 2371.4523056774797]], "source": 1316236887, "length": 38.567511978392155}, {"destination": 1316236987, "path": [[-1751.2845615570427, 2304.2523056773234], [-1720.0345615506762, 2351.902305678166]], "source": 1316236887, "length": 12.149880956643823}, {"destination": 639308676, "path": [[-1751.2845615570427, 2304.2523056773234], [-1801.134561553397, 2228.2523056773584]], "source": 1316236887, "length": 19.37915651843146}, {"destination": 1316236862, "path": [[-1751.2845615570427, 2304.2523056773234], [-1492.6345615506875, 2170.302305676941], [-1457.7345615549575, 2193.252305676907], [-1380.6345615563487, 2169.052305676544]], "source": 1316236887, "length": 81.49950212648103}, {"destination": 1316236704, "path": [[-19.634561553516505, 3422.9023056777664], [-154.18456155202875, 3500.6523056768656], [-194.9345615557263, 3517.002305677863]], "source": 1316236889, "length": 39.443881692885846}, {"destination": 1316237163, "path": [[-19.634561553516505, 3422.9023056777664], [4.065438446332337, 3457.1023056777503], [65.01543844450453, 3591.902305677408]], "source": 1316236889, "length": 40.982084322304054}, {"destination": 1316237005, "path": [[-19.634561553516505, 3422.9023056777664], [-51.58456155385238, 3376.9023056766655]], "source": 1316236889, "length": 11.898405827159168}, {"destination": 1316236759, "path": [[-19.634561553516505, 3422.9023056777664], [268.6654384476128, 3307.55230567803], [403.26543844315665, 3265.802305676857]], "source": 1316236889, "length": 87.76484391660642}, {"destination": 1928818248, "path": [[-8787.58456155282, -4455.197694323232], [-8827.284561554905, -4428.297694323291], [-8930.384561551818, -4358.497694322949]], "source": 1928818266, "length": 34.63815947156857}, {"destination": 5021317153, "path": [[-8787.58456155282, -4455.197694323232], [-8769.184561550957, -4433.497694321886], [-8840.234561553472, -4387.297694322001], [-8869.384561556615, -4420.547694323318]], "source": 1928818266, "length": 32.17529641383534}, {"destination": 1928818258, "path": [[-8787.58456155282, -4455.197694323232], [-8999.384561555245, -4425.597694321937]], "source": 1928818266, "length": 40.808986838479306}, {"destination": 1928818270, "path": [[-8787.58456155282, -4455.197694323232], [-8466.484561552079, -4500.047694323328]], "source": 1928818266, "length": 61.86753531203083}, {"destination": 1928818266, "path": [[-8466.484561552079, -4500.047694323328], [-8787.58456155282, -4455.197694323232]], "source": 1928818270, "length": 61.86753531203083}, {"destination": 5021317180, "path": [[-8466.484561552079, -4500.047694323328], [-8156.184561556756, -4532.797694322355], [-8112.434561553528, -4528.447694323035], [-8085.984561553516, -4519.697694322033], [-8061.534561555562, -4507.497694323348]], "source": 1928818270, "length": 78.60217765389352}, {"destination": 1928818262, "path": [[-8466.484561552079, -4500.047694323328], [-8458.134561550423, -4437.54769432303]], "source": 1928818270, "length": 13.989695063256946}, {"destination": 1316236704, "path": [[-325.83456155066415, 3569.502305676764], [-194.9345615557263, 3517.002305677863]], "source": 1316236896, "length": 27.497044530022915}, {"destination": 1316237104, "path": [[-1339.2345615557133, 2957.1023056771396], [-1274.784561552167, 3069.452305677345]], "source": 1316236898, "length": 27.830172538902207}, {"destination": 1316237025, "path": [[-1339.2345615557133, 2957.1023056771396], [-1368.8345615534558, 2905.552305676906]], "source": 1316236898, "length": 12.771903289405232}, {"destination": 1316236665, "path": [[-1339.2345615557133, 2957.1023056771396], [-1259.2345615516365, 2922.6523056777864], [-1224.4845615541067, 2897.8523056775175]], "source": 1316236898, "length": 25.64174256812789}, {"destination": 1320103970, "path": [[2527.865438445076, 2713.202305677953], [2474.4154384492845, 2711.652305677603], [2336.3154384483664, 2724.302305677995]], "source": 1320104114, "length": 36.58597036008895}, {"destination": 1320103619, "path": [[2527.865438445076, 2713.202305677953], [2522.715438445289, 2757.502305676951], [2514.665438447139, 2807.952305676764]], "source": 1320104114, "length": 21.223846759649483}, {"destination": 1320103933, "path": [[2527.865438445076, 2713.202305677953], [2525.3654384442825, 2631.352305677126]], "source": 1320104114, "length": 18.20880396026733}, {"destination": 1320103815, "path": [[2527.865438445076, 2713.202305677953], [2678.6654384451936, 2728.5523056779225]], "source": 1320104114, "length": 28.881911157978987}, {"destination": 1316237156, "path": [[-2530.634561551892, 1587.7023056773965], [-2656.184561551811, 1622.0523056773573]], "source": 1316236904, "length": 25.06888683051969}, {"destination": 103781041, "path": [[-417.43456155529657, -8100.697694322534], [-343.4845615544191, -8099.29769432216]], "source": 1887596138, "length": 14.064548891177527}, {"destination": 1887596157, "path": [[-417.43456155529657, -8100.697694322534], [-423.6345615566961, -8024.147694323247], [-442.4345615561265, -7887.697694322071], [-459.8345615534072, -7809.747694322411], [-480.7845615530937, -7711.947694323484], [-542.2345615500035, -7424.647694323383]], "source": 1887596138, "length": 152.33138515046042}, {"destination": 1883305150, "path": [[-417.43456155529657, -8100.697694322534], [-938.5845615526023, -8110.647694323347]], "source": 1887596138, "length": 99.11550094440352}, {"destination": 1887596201, "path": [[-417.43456155529657, -8100.697694322534], [-409.2345615518411, -8154.6976943229765], [-406.08456155410977, -8174.297694322874]], "source": 1887596138, "length": 16.510056816573044}, {"destination": 3283676144, "path": [[3350.265438449185, -6292.747694322642], [3376.5654384438903, -6250.597694322124]], "source": 1769172062, "length": 10.624288633345726}, {"destination": 3344153899, "path": [[3350.265438449185, -6292.747694322642], [4388.815438446159, -6758.347694322709]], "source": 1769172062, "length": 222.97530021863736}, {"destination": 4451470239, "path": [[3350.265438449185, -6292.747694322642], [3298.965438446544, -6270.447694323167]], "source": 1769172062, "length": 10.942724249356843}, {"destination": 1316237051, "path": [[-231.3345615547746, 3100.552305676629], [-162.23456155017857, 3069.452305677345], [-162.23456155017857, 3044.202305677146]], "source": 1316236909, "length": 20.466298477493538}, {"destination": 1316236508, "path": [[-231.3345615547746, 3100.552305676629], [-197.48456155355143, 3154.7023056770486]], "source": 1316236909, "length": 13.654870479804993}, {"destination": 1316237038, "path": [[-231.3345615547746, 3100.552305676629], [-250.73456155411122, 3069.452305677345]], "source": 1316236909, "length": 7.838930784542253}, {"destination": 1316236857, "path": [[-630.0345615528613, 3373.952305677719], [-554.584561555771, 3495.302305676518]], "source": 1316236911, "length": 30.564786350686013}, {"destination": 1316236659, "path": [[-630.0345615528613, 3373.952305677719], [-811.3345615541334, 3452.502305677285]], "source": 1316236911, "length": 38.653063473476976}, {"destination": 1316236806, "path": [[-630.0345615528613, 3373.952305677719], [-706.7345615539011, 3250.6523056774486]], "source": 1316236911, "length": 31.05912447629483}, {"destination": 1316237082, "path": [[-776.484561555435, 2163.4023056780193], [-943.0845615554517, 2215.4523056769904]], "source": 1316236913, "length": 33.7324173273647}, {"destination": 475985632, "path": [[8518.065438444466, 4034.002305678186], [8296.11543844777, 4032.202305676691]], "source": 2629549331, "length": 42.214040937146024}, {"destination": 2629549333, "path": [[8518.065438444466, 4034.002305678186], [8561.215438447789, 4310.652305678175], [8561.215438447789, 4492.452305678185]], "source": 2629549331, "length": 102.49950216211123}, {"destination": 2629549335, "path": [[8518.065438444466, 4034.002305678186], [8387.165438449529, 3558.602305677283]], "source": 2629549331, "length": 108.61584316836877}, {"destination": 476791768, "path": [[-8931.784561553968, -757.1476943226685], [-8919.584561553507, -724.4976943230341], [-8903.284561554869, -690.597694323003]], "source": 476794486, "length": 15.773860427286383}, {"destination": 5002541034, "path": [[-8931.784561553968, -757.1476943226685], [-8957.084561551199, -797.6476943234445]], "source": 476794486, "length": 10.21074596181338}, {"destination": 4273214059, "path": [[709.1154384468723, -1535.0976943224737], [706.5654384490472, -1521.3476943234382], [723.2154384482214, -1518.647694322084]], "source": 4273214057, "length": 6.318915494043067}, {"destination": 4273147830, "path": [[709.1154384468723, -1535.0976943224737], [688.6154384488918, -1534.5476943231517], [678.9654384462551, -1539.9976943228921], [652.0154384475063, -1555.9476943227678], [600.7154384448654, -1555.9476943227678], [593.6654384441908, -1542.7476943230545], [576.3654384480787, -1541.6476943226344], [568.3654384469605, -1531.3976943218677], [542.015438448118, -1528.4976943217289]], "source": 4273214057, "length": 36.40815135663936}, {"destination": 4273214063, "path": [[709.1154384468723, -1535.0976943224737], [699.7654384477414, -1558.7476943217382], [703.6154384465476, -1583.7476943225681]], "source": 4273214057, "length": 11.157904481771599}, {"destination": 1887596191, "path": [[576.8154384497848, -4125.547694322051], [480.4654384500395, -4209.647694322527], [460.7654384471971, -4222.147694322942], [440.81543844498583, -4226.947694322192], [418.31543844494945, -4271.147694321798]], "source": 1887596152, "length": 45.506763745402225}, {"destination": 1316236706, "path": [[-855.4845615549311, 2852.0023056781697], [-881.0845615556673, 2892.8023056771226], [-1150.334561550892, 3010.4023056782835]], "source": 1316236924, "length": 67.79622658072087}, {"destination": 1316237212, "path": [[-855.4845615549311, 2852.0023056781697], [-773.7845615523042, 2945.6023056777526], [-659.5845615535723, 3081.4023056766614]], "source": 1316236924, "length": 63.17456857595489}, {"destination": 1316236831, "path": [[-855.4845615549311, 2852.0023056781697], [-840.8345615507073, 2828.6023056782738], [-658.4345615507914, 2746.002305677564]], "source": 1316236924, "length": 45.157360084425854}, {"destination": 1316236440, "path": [[-828.8345615525827, 2095.25230567742], [-509.9345615562356, 1999.1523056770434], [-633.9345615558045, 1856.652305677997]], "source": 1316236925, "length": 103.80578140961103}, {"destination": 1316236699, "path": [[-828.8345615525827, 2095.25230567742], [-882.3845615566484, 2013.0523056778316]], "source": 1316236925, "length": 20.925888370649783}, {"destination": 1316236590, "path": [[-828.8345615525827, 2095.25230567742], [-985.584561554731, 2142.5023056771406]], "source": 1316236925, "length": 31.60850938846768}, {"destination": 1316236828, "path": [[-1666.1345615531786, 2434.05230567717], [-1806.4345615513844, 2502.9023056770684]], "source": 1316236926, "length": 30.763474837726626}, {"destination": 1316237158, "path": [[-1666.1345615531786, 2434.05230567717], [-1635.5345615508554, 2480.702305676985]], "source": 1316236926, "length": 11.89461785284167}, {"destination": 1316237207, "path": [[-1666.1345615531786, 2434.05230567717], [-1680.6345615520968, 2411.9023056776714]], "source": 1316236926, "length": 5.64526663922}, {"destination": 1316236592, "path": [[-107.83456155394333, 3750.5523056768907], [100.56543844427779, 3670.552305678143]], "source": 1316236927, "length": 43.44476065440455}, {"destination": 1316237106, "path": [[-107.83456155394333, 3750.5523056768907], [-69.38456155580752, 3840.552305677036]], "source": 1316236927, "length": 21.30914541764284}, {"destination": 1316236979, "path": [[-107.83456155394333, 3750.5523056768907], [-207.83456155015756, 3787.402305677645], [-411.58456155443446, 3850.6523056778265]], "source": 1316236927, "length": 61.93337739124528}, {"destination": 1316236380, "path": [[-107.83456155394333, 3750.5523056768907], [-138.08456155572912, 3679.602305677321], [-137.53456155285448, 3667.1523056774904], [-135.4345615567354, 3617.6523056781207]], "source": 1316236927, "length": 30.581167445272627}, {"destination": 1316236998, "path": [[-567.2345615508334, 2452.402305676671], [-434.13456155150243, 2406.1023056773934]], "source": 1316236928, "length": 27.327061470079997}, {"destination": 483099864, "path": [[-123.48456155564236, 3273.202305678069], [-452.3845615551636, 3444.2023056779904]], "source": 1316236929, "length": 73.20457563026923}, {"destination": 1316236426, "path": [[-123.48456155564236, 3273.202305678069], [-159.53456155415324, 3215.5023056770206]], "source": 1316236929, "length": 14.548990476512929}, {"destination": 599406834, "path": [[-123.48456155564236, 3273.202305678069], [320.46543844899134, 3042.352305676843]], "source": 1316236929, "length": 98.81529009860834}, {"destination": 1316236383, "path": [[-123.48456155564236, 3273.202305678069], [-79.93456155475087, 3335.952305677736]], "source": 1316236929, "length": 16.228128469446812}, {"destination": 476552806, "path": [[-288.2845615559404, 2408.8523056775557], [-29.334561553184813, 2306.752305678117]], "source": 1316236930, "length": 54.22982452750865}, {"destination": 1316471804, "path": [[1359.9154384493772, 3394.752305677429], [1365.7154384461023, 3367.402305677558]], "source": 1320103555, "length": 6.181747467943469}, {"destination": 1320103926, "path": [[1359.9154384493772, 3394.752305677429], [1495.5654384465333, 3349.3023056774264]], "source": 1320103555, "length": 27.70781298483035}, {"destination": 639308698, "path": [[-2913.734561552417, 1866.1523056771046], [-2891.734561551118, 1912.0023056782288]], "source": 1316236932, "length": 11.021508942067026}, {"destination": 1316236764, "path": [[-2913.734561552417, 1866.1523056771046], [-3029.5345615556357, 1920.3023056775237]], "source": 1316236932, "length": 25.100325013185145}, {"destination": 1316236669, "path": [[-2913.734561552417, 1866.1523056771046], [-2935.884561551916, 1820.0023056778036]], "source": 1316236932, "length": 11.094049144247329}, {"destination": 1316236531, "path": [[-2340.1845615538264, 3197.9023056774026], [-2283.884561556704, 3188.702305678248]], "source": 1316236934, "length": 10.901465056179722}, {"destination": 1317670926, "path": [[3174.4154384441003, 1266.6023056766562], [3029.5654384460136, 1262.0023056779673], [2970.1654384481913, 1258.7023056767066]], "source": 1317670895, "length": 38.88598421919251}, {"destination": 677797898, "path": [[-505.8845615550922, -3995.9476943227655], [-537.9345615565967, -3942.847694322182], [-566.5845615538956, -3920.9976943226366], [-596.8345615556814, -3898.297694322039], [-653.3845615521727, -3867.5976943221003], [-709.4845615540635, -3835.997694322302], [-755.6845615539487, -3815.597694321937], [-793.7345615545155, -3801.5976943217565], [-876.6845615539864, -3776.1476943227735], [-962.0845615501139, -3750.7476943225984], [-1085.1845615533762, -3716.097694322684], [-1184.2345615562522, -3688.297694322884], [-1305.3845615544901, -3656.9976943230386], [-1335.9345615526763, -3646.5476943217113], [-1379.7845615499682, -3625.097694323287], [-1424.2345615542717, -3591.9976943219467]], "source": 1888338540, "length": 201.07454786094922}, {"destination": 479279454, "path": [[-505.8845615550922, -3995.9476943227655], [-598.3345615518942, -3934.7476943234483], [-677.1845615531902, -3888.9476943229083], [-742.334561550706, -3858.0476943224085], [-807.4845615553272, -3831.5476943218127], [-946.9345615542579, -3791.1476943222056], [-1057.9345615511215, -3760.3976943234584], [-1173.5845615561402, -3729.347694322982], [-1258.5845615546987, -3707.7976943233894], [-1329.4345615548764, -3686.647694323142]], "source": 1888338540, "length": 172.61068768404857}, {"destination": 2354289898, "path": [[-505.734561556892, -6697.197694322199], [-552.8845615501154, -7040.697694321807], [-561.1845615547395, -7119.2476943231495]], "source": 1887596173, "length": 94.45522593923553}, {"destination": 1887596164, "path": [[-505.734561556892, -6697.197694322199], [-474.58456155169415, -6530.097694323445], [-423.6345615566961, -6280.147694322835], [-420.0845615542903, -6224.397694323258]], "source": 1887596173, "length": 106.47141166614313}, {"destination": 267195118, "path": [[-505.734561556892, -6697.197694322199], [-534.3845615541909, -6691.747694322458], [-765.834561555323, -6627.547694321834], [-852.9345615500006, -6604.497694322476], [-1062.0845615534336, -6549.597694322173], [-1345.7345615535132, -6476.34769432237]], "source": 1887596173, "length": 167.12693643171835}, {"destination": 1889012672, "path": [[-287.68456155603417, -8162.947694323464], [-248.5845615538551, -8152.797694322089]], "source": 1887596174, "length": 7.768480032843728}, {"destination": 1887596182, "path": [[-287.68456155603417, -8162.947694323464], [-343.4845615544191, -8167.547694322153]], "source": 1887596174, "length": 10.659012775029876}, {"destination": 385113562, "path": [[-1857.6345615528567, 145.70230567656495], [-1711.7345615531576, 57.60230567730673], [-1561.5345615529463, 17.25230567828362], [-1385.5845615537987, 28.25230567715664], [-1223.084561551957, 71.45230567751071]], "source": 475976301, "length": 129.81835762196113}, {"destination": 481391756, "path": [[-1857.6345615528567, 145.70230567656495], [-1957.5845615520393, 224.0523056773469], [-2012.1345615535802, 266.8023056777713], [-2074.7845615503024, 306.30230567751937], [-2116.5845615556123, 332.6523056781383], [-2159.5345615565975, 395.0023056766838], [-2150.5345615508986, 452.55230567775584], [-2142.3345615545486, 505.1023056772408], [-2142.3345615545486, 571.1523056781687], [-2180.9845615550216, 626.2023056766708], [-2253.9345615513184, 662.9023056774486], [-2364.4845615535814, 698.7023056765906]], "source": 475976301, "length": 172.87647108248825}, {"destination": 639308714, "path": [[-1857.6345615528567, 145.70230567656495], [-1812.0845615570147, 239.0023056779711], [-1784.384561553054, 295.7023056779917], [-1747.1845615517623, 371.85230567793326], [-1717.784561556357, 432.10230567680696], [-1685.334561550178, 498.5523056770802], [-1628.8845615548553, 614.1523056779619]], "source": 475976301, "length": 112.89575375195784}, {"destination": 481394037, "path": [[-1857.6345615528567, 145.70230567656495], [-1996.784561555387, -120.2476943227282], [-2127.284561552756, -494.79769432281273]], "source": 475976301, "length": 151.7093382078341}, {"destination": 4397155856, "path": [[-4521.534561554574, 5126.152305678033], [-4782.234561552912, 4342.602305676735], [-4896.284561553443, 4013.2023056767]], "source": 4397155843, "length": 257.56999095899135}, {"destination": 483103101, "path": [[-4521.534561554574, 5126.152305678033], [-4227.784561550152, 5007.55230567762], [-3761.6845615531247, 4869.152305676749]], "source": 4397155843, "length": 155.62115799895815}, {"destination": 95612191, "path": [[-4521.534561554574, 5126.152305678033], [-4631.684561552163, 5170.602305677008], [-4945.33456155466, 5321.8523056770555]], "source": 4397155843, "length": 91.64822840104105}, {"destination": 1320103962, "path": [[1456.715438443723, 2834.202305677991], [1476.2654384483653, 2921.252305677413]], "source": 1320103569, "length": 19.7127658317962}, {"destination": 1320103798, "path": [[1456.715438443723, 2834.202305677991], [1407.015438445569, 2846.9523056777743], [1399.0154384444509, 2821.75230567816], [1291.7154384481933, 2860.7523056773944]], "source": 1320103569, "length": 37.84916329765784}, {"destination": 1320104087, "path": [[1456.715438443723, 2834.202305677991], [1442.9154384458798, 2772.8023056781126]], "source": 1320103569, "length": 13.904719282517073}, {"destination": 1316472011, "path": [[1440.3154384439176, 2481.2523056780833], [1567.965438447061, 2451.7023056773724]], "source": 476556639, "length": 25.15018601221071}, {"destination": 1316472150, "path": [[1440.3154384439176, 2481.2523056780833], [1382.5654384476138, 2503.7523056781197]], "source": 476556639, "length": 12.069127702175754}, {"destination": 1320103982, "path": [[1440.3154384439176, 2481.2523056780833], [1420.4654384499804, 2440.952305677868], [1399.0154384444509, 2372.152305676778], [1385.115438445439, 2318.252305677504]], "source": 476556639, "length": 37.83487703349138}, {"destination": 1320104057, "path": [[2984.315438446572, 1689.9523056768116], [3131.115438449683, 1708.1523056781123]], "source": 1320103571, "length": 28.210044072982654}, {"destination": 1320104015, "path": [[2984.315438446572, 1689.9523056768116], [2839.2154384491164, 1658.802305676943], [2748.8654384484335, 1614.6523056779215]], "source": 1320103571, "length": 48.24106672154275}, {"destination": 1320103910, "path": [[2984.315438446572, 1689.9523056768116], [2976.0154384490534, 1727.6023056780332], [2975.1654384497783, 1738.302305676953]], "source": 1320103571, "length": 10.902753500220202}, {"destination": 1316471935, "path": [[2984.315438446572, 1689.9523056768116], [2994.7654384443467, 1642.8023056782592], [2887.465438448089, 1599.2023056767835], [2760.1654384454832, 1543.052305677861]], "source": 1320103571, "length": 60.505097855733055}, {"destination": 1316236650, "path": [[-640.5845615518047, 2501.252305677326], [-673.0845615550152, 2445.202305677796]], "source": 1316236948, "length": 13.913143047796725}, {"destination": 1316236614, "path": [[-640.5845615518047, 2501.252305677326], [-776.484561555435, 2576.3023056768475], [-907.8845615562159, 2642.802305677705], [-977.6345615506443, 2642.802305677705], [-1151.9845615524105, 2750.6023056780296], [-1162.6845615566594, 2785.002305676798], [-1271.0345615545293, 2827.2023056779008]], "source": 1316236948, "length": 144.54557855510438}, {"destination": 1316236423, "path": [[-640.5845615518047, 2501.252305677326], [-609.1345615502064, 2555.4523056765534]], "source": 1316236948, "length": 13.45607192068499}, {"destination": 1891528345, "path": [[-8341.584561556203, -1458.2476943232336], [-8288.334561555643, -1451.9476943224417], [-8238.884561556859, -1447.3476943219766]], "source": 1891528341, "length": 19.681518964731197}, {"destination": 103781041, "path": [[-343.4845615544191, -8167.547694322153], [-343.4845615544191, -8099.29769432216]], "source": 1887596182, "length": 15.177797564082514}, {"destination": 1887596174, "path": [[-343.4845615544191, -8167.547694322153], [-287.68456155603417, -8162.947694323464]], "source": 1887596182, "length": 10.659012775029876}, {"destination": 1887596201, "path": [[-343.4845615544191, -8167.547694322153], [-406.08456155410977, -8174.297694322874]], "source": 1887596182, "length": 11.996473342457683}, {"destination": 1316236481, "path": [[-1892.2845615563233, 2908.9023056769747], [-1755.4845615563863, 2832.2523056765194]], "source": 1316236951, "length": 31.103780091865985}, {"destination": 476671528, "path": [[-483.3345615509188, -7306.347694322923], [-433.5845615557332, -7304.547694323204]], "source": 1887596184, "length": 9.468351895313099}, {"destination": 1887596197, "path": [[-483.3345615509188, -7306.347694322923], [-555.0845615545086, -7310.597694322852]], "source": 1887596184, "length": 13.675316357166656}, {"destination": 1883856735, "path": [[-483.3345615509188, -7306.347694322923], [-484.23456155433087, -7263.047694323177], [-482.284561556412, -7238.497694322276]], "source": 1887596184, "length": 15.10374905255959}, {"destination": 1890935432, "path": [[-8238.884561556859, -1447.3476943219766], [-8239.634561554965, -1413.547694323114]], "source": 1891528345, "length": 7.518502633167625}, {"destination": 1890818667, "path": [[-8238.884561556859, -1447.3476943219766], [-8238.634561550385, -1457.29769432279], [-8235.634561550853, -1478.897694322967], [-8224.93456155371, -1504.0976943225814], [-8217.934561550066, -1536.8476943233845], [-8220.634561553197, -1560.9476943225786], [-8224.634561550203, -1570.097694322925], [-8232.68456155546, -1586.147694322193], [-8243.234561554402, -1601.3976943227703], [-8265.084561550395, -1614.897694322437], [-8287.6845615516, -1628.5976943226642], [-8317.18456155528, -1649.2476943223978], [-8342.684561554848, -1673.297694322784], [-8352.034561553977, -1691.6476943222847], [-8358.734561554116, -1707.697694323329], [-8361.43456155014, -1722.597694323369]], "source": 1891528345, "length": 72.25532447036862}, {"destination": 1891528341, "path": [[-8238.884561556859, -1447.3476943219766], [-8288.334561555643, -1451.9476943224417], [-8341.584561556203, -1458.2476943232336]], "source": 1891528345, "length": 19.681518964731197}, {"destination": 1891528343, "path": [[-8433.48456155013, -1465.8976943220382], [-8504.484561555615, -1471.497694321755], [-8552.784561551618, -1475.6976943228751]], "source": 1891528346, "length": 22.791511483548426}, {"destination": 1316236371, "path": [[-161.73456155144095, 2044.1523056771161], [-70.28456155211416, 2225.55230567778]], "source": 1316236955, "length": 43.93090318134728}, {"destination": 1316236349, "path": [[-161.73456155144095, 2044.1523056771161], [-539.0845615522721, 2157.8523056771105]], "source": 1316236955, "length": 76.08866114916314}, {"destination": 654405017, "path": [[2929.215438449262, 4367.102305677051], [3156.1654384475446, 4432.952305677418]], "source": 1320103580, "length": 45.57998298435873}, {"destination": 1320103959, "path": [[2929.215438449262, 4367.102305677051], [2972.0154384449415, 4253.25230567708]], "source": 1320103580, "length": 26.59547972802681}, {"destination": 1316236476, "path": [[-1029.5345615531915, 1787.0523056782163], [-926.1345615527716, 1945.9023056782598]], "source": 1316236957, "length": 40.430904041300074}, {"destination": 1316236474, "path": [[-1029.5345615531915, 1787.0523056782163], [-1245.8345615513622, 1881.3023056782895]], "source": 1316236957, "length": 46.16791175039437}, {"destination": 639309883, "path": [[-1029.5345615531915, 1787.0523056782163], [-704.0845615549074, 1680.3523056765357]], "source": 1316236957, "length": 66.28628182187936}, {"destination": 1316237180, "path": [[-1029.5345615531915, 1787.0523056782163], [-1047.3845615521782, 1759.7023056765693], [-1110.6345615559121, 1666.9023056774536]], "source": 1316236957, "length": 30.852846768854363}, {"destination": 1320104096, "path": [[3080.6154384492856, 3014.7023056770195], [3075.215438443024, 3078.6523056782753], [3032.315438446176, 3184.152305676591]], "source": 1320103582, "length": 39.098926158210574}, {"destination": 1320103770, "path": [[3080.6154384492856, 3014.7023056770195], [3037.6654384483004, 3014.4023056770666]], "source": 1320103582, "length": 8.16886156666165}, {"destination": 1320104092, "path": [[3080.6154384492856, 3014.7023056770195], [3223.0154384436105, 3015.652305677463]], "source": 1320103582, "length": 27.082734400365933}, {"destination": 1887596152, "path": [[418.31543844494945, -4271.147694321798], [440.81543844498583, -4226.947694322192], [460.7654384471971, -4222.147694322942], [480.4654384500395, -4209.647694322527], [576.8154384497848, -4125.547694322051]], "source": 1887596191, "length": 45.506763745402225}, {"destination": 1887596136, "path": [[418.31543844494945, -4271.147694321798], [379.2654384469074, -4365.1476943225025], [370.16543844714533, -4389.647694322818], [336.7654384476282, -4414.547694322479], [313.965438444086, -4429.447694322519], [304.5654384479235, -4440.897694323098], [284.46543844751204, -4518.897694323343], [240.21543844554571, -4650.747694322277], [206.66543844782836, -4721.847694321824], [177.165438444149, -4779.197694322334], [140.5654384498689, -4836.497694322262], [55.86543844771086, -4955.097694322674]], "source": 1887596191, "length": 169.57347619531936}, {"destination": 677799508, "path": [[418.31543844494945, -4271.147694321798], [481.41543844337775, -4296.297694322604]], "source": 1887596191, "length": 13.237962226430243}, {"destination": 1316236701, "path": [[-2007.5845615536991, 3140.5523056768916], [-2069.2845615499778, 3184.152305676591], [-2130.984561553362, 3184.152305676591], [-2189.984561553615, 3207.052305677749], [-2272.734561550749, 3237.7023056771036]], "source": 1316236961, "length": 56.43055980347505}, {"destination": 1320103962, "path": [[1337.3154384481722, 2970.8523056779513], [1476.2654384483653, 2921.252305677413]], "source": 1320103586, "length": 28.635900478308354}, {"destination": 1316236378, "path": [[-259.9845615520735, 2662.652305676971], [-331.23456155692566, 2523.5523056768016], [-352.7845615565184, 2472.7523056782275]], "source": 1316236963, "length": 45.789694996453434}, {"destination": 1316236386, "path": [[-259.9845615520735, 2662.652305676971], [-349.984561552219, 2700.152305678216], [-287.08456155612794, 2865.652305677813]], "source": 1316236963, "length": 57.74100984766974}, {"destination": 1316236342, "path": [[-259.9845615520735, 2662.652305676971], [73.8154384478662, 2523.65230567797]], "source": 1316236963, "length": 70.60886183688412}, {"destination": 1315678610, "path": [[-1026.2845615542915, -5423.647694323464], [-934.3345615562271, -5158.447694322277]], "source": 103788196, "length": 61.51508329761984}, {"destination": 103788043, "path": [[-1026.2845615542915, -5423.647694323464], [-1211.7845615549072, -6053.747694322098]], "source": 103788196, "length": 144.4991812972631}, {"destination": 1315785421, "path": [[-1026.2845615542915, -5423.647694323464], [-1526.0845615543417, -5331.9976943218]], "source": 103788196, "length": 97.1979349533183}, {"destination": 1320103603, "path": [[1763.7654384472512, 3252.952305677681], [1881.8154384447894, 3225.452305677834], [1924.715438448743, 3213.9523056766707], [1992.2154384488522, 3213.6523056767173]], "source": 1320103589, "length": 44.65767648120986}, {"destination": 1887575216, "path": [[-311.4845615570516, -5556.997694322164], [-286.8345615567591, -5491.297694321773], [-243.93456155280546, -5419.047694322998], [-135.18456155026115, -5249.197694322305]], "source": 1887596198, "length": 76.42743837029823}, {"destination": 1887596164, "path": [[-311.4845615570516, -5556.997694322164], [-319.0345615564638, -5581.847694323016], [-359.2845615543183, -5814.647694322161], [-394.13456155301674, -6051.997694322964], [-420.0845615542903, -6224.397694323258]], "source": 1887596198, "length": 149.9010756996522}, {"destination": 103788196, "path": [[-311.4845615570516, -5556.997694322164], [-373.7845615532365, -5541.447694323409], [-490.3845615515934, -5513.99769432237], [-763.8345615532671, -5472.697694322904], [-1026.2845615542915, -5423.647694323464]], "source": 1887596198, "length": 139.22250371518555}, {"destination": 850278592, "path": [[-7728.834561554266, -4199.2476943217835], [-7987.734561552884, -4609.697694322179]], "source": 654577319, "length": 103.7097359450266}, {"destination": 267198209, "path": [[-7728.834561554266, -4199.2476943217835], [-7081.784561556504, -4422.697694321798]], "source": 654577319, "length": 132.6952849009352}, {"destination": 1316237191, "path": [[-742.384561554843, 2133.252305677402], [-572.6345615499895, 2078.552305677661]], "source": 1316236968, "length": 34.49907100229437}, {"destination": 1887596138, "path": [[-406.08456155410977, -8174.297694322874], [-409.2345615518411, -8154.6976943229765], [-417.43456155529657, -8100.697694322534]], "source": 1887596201, "length": 16.510056816573044}, {"destination": 1887596182, "path": [[-406.08456155410977, -8174.297694322874], [-343.4845615544191, -8167.547694322153]], "source": 1887596201, "length": 11.996473342457683}, {"destination": 1320104089, "path": [[3424.865438447, 1804.6023056772497], [3285.765438448607, 1780.1523056775181]], "source": 1320103597, "length": 27.006919624437735}, {"destination": 1320103941, "path": [[3424.865438447, 1804.6023056772497], [3458.815438449392, 1814.802305677432], [3476.0154384443354, 1820.3523056765648]], "source": 1320103597, "length": 10.339151180920682}, {"destination": 1320104071, "path": [[3424.865438447, 1804.6023056772497], [3415.8654384484066, 1906.552305676712], [3415.8654384484066, 2041.8523056768834]], "source": 1320103597, "length": 52.826576561855795}, {"destination": 1316236844, "path": [[37.365438444680876, 4099.102305676894], [-142.03456155570393, 4154.50230567771]], "source": 1316236974, "length": 36.276144152593425}, {"destination": 1316236444, "path": [[37.365438444680876, 4099.102305676894], [-0.28456155121148186, 4006.5523056771467]], "source": 1316236974, "length": 21.792179771630764}, {"destination": 1316236333, "path": [[37.365438444680876, 4099.102305676894], [71.11543844473545, 4181.952305676972]], "source": 1316236974, "length": 19.511252318497963}, {"destination": 1316236814, "path": [[37.365438444680876, 4099.102305676894], [258.8654384467759, 4035.152305677414]], "source": 1316236974, "length": 44.462530980674046}, {"destination": 1320103859, "path": [[1201.6654384439107, 2359.4523056775784], [1326.5654384468917, 2333.152305677544]], "source": 1320103599, "length": 24.462965379604526}, {"destination": 1320103965, "path": [[1201.6654384439107, 2359.4523056775784], [1232.71543844794, 2466.2023056780668], [1103.9654384461528, 2512.0523056774146]], "source": 1320103599, "length": 50.987397198442906}, {"destination": 1320103679, "path": [[1201.6654384439107, 2359.4523056775784], [1152.2154384451255, 2369.8523056765453], [1037.3154384453187, 2415.8523056776457]], "source": 1320103599, "length": 33.812143272382755}, {"destination": 1316237164, "path": [[-1496.4845615565991, 2692.652305677612], [-1617.3345615513313, 2759.5523056778147]], "source": 1316236976, "length": 27.378463475947015}, {"destination": 482732142, "path": [[-1496.4845615565991, 2692.652305677612], [-1452.9845615527393, 2758.9023056773244]], "source": 1316236976, "length": 16.89690679848486}, {"destination": 1316236446, "path": [[-1496.4845615565991, 2692.652305677612], [-1529.684561553779, 2641.952305676654]], "source": 1316236976, "length": 12.922731531191317}, {"destination": 1316471840, "path": [[1203.2154384442606, 2827.5023056778537], [1187.3154384431928, 2794.852305678219]], "source": 1320103601, "length": 7.865330362608255}, {"destination": 1320103672, "path": [[1203.2154384442606, 2827.5023056778537], [1358.7654384465964, 2778.1523056766846]], "source": 1320103601, "length": 31.55314444061924}, {"destination": 1316236520, "path": [[-411.58456155443446, 3850.6523056778265], [-358.7345615514437, 3930.3523056766207]], "source": 1316236979, "length": 20.376425942477127}, {"destination": 1316236927, "path": [[-411.58456155443446, 3850.6523056778265], [-207.83456155015756, 3787.402305677645], [-107.83456155394333, 3750.5523056768907]], "source": 1316236979, "length": 61.93337739124528}, {"destination": 1320103728, "path": [[2756.315438446677, 3245.252305676516], [2761.4154384494327, 3186.4523056768235]], "source": 1320103605, "length": 13.112779355877795}, {"destination": 1320103979, "path": [[2756.315438446677, 3245.252305676516], [2662.1654384442195, 3230.002305677715]], "source": 1320103605, "length": 18.22438871534656}, {"destination": 1320103749, "path": [[2756.315438446677, 3245.252305676516], [2911.615438449644, 3257.5523056781462]], "source": 1320103605, "length": 29.662119606009078}, {"destination": 1320104110, "path": [[2756.315438446677, 3245.252305676516], [2751.765438446796, 3297.8523056765853]], "source": 1320103605, "length": 11.729809538065268}, {"destination": 84487112, "path": [[4054.8154384438817, -7248.797694321851], [4097.815438449004, -7276.647694322236]], "source": 93466295, "length": 10.257420881519106}, {"destination": 1993253327, "path": [[4054.8154384438817, -7248.797694321851], [4111.865438446216, -7216.947694322684]], "source": 93466295, "length": 12.955469402380599}, {"destination": 1316236344, "path": [[-1553.1845615512907, 2088.8023056766515], [-1610.3345615547937, 2013.8523056765223]], "source": 1316236984, "length": 19.898656795536688}, {"destination": 639308676, "path": [[-1553.1845615512907, 2088.8023056766515], [-1801.134561553397, 2228.2523056773584]], "source": 1316236984, "length": 56.439094408440404}, {"destination": 1316236804, "path": [[-1553.1845615512907, 2088.8023056766515], [-1491.6345615532123, 2054.202305677322], [-1446.0345615532333, 2035.4523056766993]], "source": 1316236984, "length": 23.630301413337904}, {"destination": 1316196944, "path": [[-1645.1845615534921, 1495.3523056782103], [-1679.6345615546215, 1425.0523056773545]], "source": 1316196980, "length": 16.95149168335083}, {"destination": 1316196948, "path": [[-1645.1845615534921, 1495.3523056782103], [-1592.6845615510388, 1602.6023056774363]], "source": 1316196980, "length": 25.85679386093342}, {"destination": 1316196982, "path": [[-1645.1845615534921, 1495.3523056782103], [-1975.3845615539944, 1628.9523056780554]], "source": 1316196980, "length": 69.47068493540928}, {"destination": 1316196959, "path": [[-1645.1845615534921, 1495.3523056782103], [-1282.2345615504105, 1332.7023056781684]], "source": 1316196980, "length": 77.92828591337083}, {"destination": 1316236887, "path": [[-1720.0345615506762, 2351.902305678166], [-1751.2845615570427, 2304.2523056773234]], "source": 1316236987, "length": 12.149880956643823}, {"destination": 1316237207, "path": [[-1720.0345615506762, 2351.902305678166], [-1680.6345615520968, 2411.9023056776714]], "source": 1316236987, "length": 15.303462085694155}, {"destination": 1316237159, "path": [[-1720.0345615506762, 2351.902305678166], [-1540.8845615567657, 2268.902305678111]], "source": 1316236987, "length": 38.74959192362112}, {"destination": 601712444, "path": [[-8253.03456155524, 9436.85230567759], [-8380.284561553708, 9104.452305678024]], "source": 95350463, "length": 77.78410518456214}, {"destination": 1320103915, "path": [[3024.265438448026, 2952.502305676674], [2908.965438443545, 2943.30230567752]], "source": 1320103617, "length": 22.02317874474645}, {"destination": 1320104072, "path": [[2514.665438447139, 2807.952305676764], [2339.5654384472664, 2800.0023056780065]], "source": 1320103619, "length": 33.347886403205756}, {"destination": 1320103802, "path": [[2514.665438447139, 2807.952305676764], [2678.565438444025, 2806.5023056775826]], "source": 1320103619, "length": 31.17252292850803}, {"destination": 1320104114, "path": [[2514.665438447139, 2807.952305676764], [2522.715438445289, 2757.502305676951], [2527.865438445076, 2713.202305677953]], "source": 1320103619, "length": 21.223846759649483}, {"destination": 1765485347, "path": [[6353.515438448198, -6142.647694321823], [6401.915438445371, -6136.347694322808]], "source": 1771400900, "length": 9.30948290240899}, {"destination": 1782221355, "path": [[6353.515438448198, -6142.647694321823], [6339.515438448017, -6072.597694322113], [6320.765438445619, -5967.097694322021], [6304.6654384493195, -5831.79769432185]], "source": 1771400900, "length": 69.78058253353734}, {"destination": 1993253289, "path": [[6353.515438448198, -6142.647694321823], [6362.315438444455, -6186.1476943221305], [6358.315438447448, -6234.297694321711], [6314.01543844845, -6269.847694323261], [6267.2154384486585, -6293.497694322525], [6148.265438447708, -6338.497694322597]], "source": 1771400900, "length": 67.17515046714185}, {"destination": 1316236928, "path": [[-434.13456155150243, 2406.1023056773934], [-567.2345615508334, 2452.402305676671]], "source": 1316236998, "length": 27.327061470079997}, {"destination": 1316236736, "path": [[-434.13456155150243, 2406.1023056773934], [-469.03456155433787, 2323.5523056772677]], "source": 1316236998, "length": 19.52118118084623}, {"destination": 1316236843, "path": [[-434.13456155150243, 2406.1023056773934], [-400.9345615543225, 2484.5523056775673]], "source": 1316236998, "length": 18.553988097509745}, {"destination": 1316237100, "path": [[-434.13456155150243, 2406.1023056773934], [-301.7345615532463, 2369.8523056765453]], "source": 1316236998, "length": 26.43913433910803}, {"destination": 1771400995, "path": [[8702.915438448144, -6283.847694323441], [8984.265438449767, -6367.247694322842]], "source": 1771400903, "length": 56.62156418673339}, {"destination": 1771400970, "path": [[8702.915438448144, -6283.847694323441], [8699.965438445644, -6235.4476943227155], [8662.665438443184, -6194.397694322617]], "source": 1771400903, "length": 22.339505562505124}, {"destination": 3733749299, "path": [[8702.915438448144, -6283.847694323441], [8660.965438444635, -6391.397694322621], [8530.865438444835, -6667.747694322657], [8319.015438445376, -7023.197694323358], [8306.915438446083, -7032.397694322512], [8292.015438449596, -7056.297694322921]], "source": 1771400903, "length": 189.28295568373562}, {"destination": 1320104080, "path": [[3056.215438448362, 3568.102305678167], [3069.865438448005, 3484.652305678182]], "source": 1320103624, "length": 18.738869164497455}, {"destination": 1320104074, "path": [[3056.215438448362, 3568.102305678167], [3028.9654384461073, 3734.7023056781836]], "source": 1320103624, "length": 37.41082448833617}, {"destination": 1320103922, "path": [[3056.215438448362, 3568.102305678167], [2914.3154384456693, 3576.4023056774618], [2853.365438447497, 3613.1023056782396]], "source": 1320103624, "length": 41.2273182141961}, {"destination": 1316237112, "path": [[-1101.53456155615, 2573.202305677924], [-1020.2345615510922, 2530.2523056769387]], "source": 1316237001, "length": 18.17437127723578}, {"destination": 1316236717, "path": [[-1101.53456155615, 2573.202305677924], [-1351.3345615550065, 2705.202305676835]], "source": 1316237001, "length": 55.8454401024723}, {"destination": 1316237087, "path": [[-1101.53456155615, 2573.202305677924], [-1151.9845615524105, 2498.302305676603], [-1288.7845615523474, 2234.502305677566]], "source": 1316237001, "length": 83.39921797975741}, {"destination": 1320103640, "path": [[3504.4654384464025, 2212.2523056768982], [3492.6654384435096, 2302.4523056776047]], "source": 1320103627, "length": 20.184889287040132}, {"destination": 1320103920, "path": [[3504.4654384464025, 2212.2523056768982], [3281.2654384457574, 2197.1023056774898]], "source": 1320103627, "length": 42.58168980887051}, {"destination": 1320104090, "path": [[3504.4654384464025, 2212.2523056768982], [3796.765438444538, 2239.1023056780314]], "source": 1320103627, "length": 55.90939348710468}, {"destination": 1320103846, "path": [[1728.9154384485528, 3058.002305676766], [1854.9654384472092, 3044.2523056777304], [1892.2154384455325, 3044.8523056776367]], "source": 1320103628, "length": 31.252250783818184}, {"destination": 1316236512, "path": [[-51.58456155385238, 3376.9023056766655], [234.71543844522103, 3259.8523056766026]], "source": 1316237005, "length": 60.352209637286656}, {"destination": 1316236889, "path": [[-51.58456155385238, 3376.9023056766655], [-19.634561553516505, 3422.9023056777664]], "source": 1316237005, "length": 11.898405827159168}, {"destination": 1316237048, "path": [[-51.58456155385238, 3376.9023056766655], [-245.38456155198674, 3463.9523056778644], [-387.5345615540482, 3521.302305676599]], "source": 1316237005, "length": 71.52518463690672}, {"destination": 1316236383, "path": [[-51.58456155385238, 3376.9023056766655], [-79.93456155475087, 3335.952305677736]], "source": 1316237005, "length": 10.583065413530955}, {"destination": 1320103722, "path": [[1776.5654384476193, 1464.8023056782476], [1911.3154384484687, 1445.6023056776958], [1979.0154384438097, 1437.752305676554]], "source": 1320103630, "length": 38.973047006366826}, {"destination": 1320104102, "path": [[1776.5654384476193, 1464.8023056782476], [1765.4154384487697, 1401.0023056769683]], "source": 1320103630, "length": 14.346248475275894}, {"destination": 1320103783, "path": [[1776.5654384476193, 1464.8023056782476], [1785.2154384456753, 1514.4023056770095], [1806.6654384440994, 1523.6023056779402], [1951.5154384492917, 1502.9523056782068], [1986.4654384491587, 1493.15230567737]], "source": 1320103630, "length": 50.63730605586392}, {"destination": 1316236873, "path": [[-3144.8345615530116, 1913.4023056768256], [-2947.284561550134, 1796.3523056767626]], "source": 1316237007, "length": 45.70665366749852}, {"destination": 1771401000, "path": [[8838.365438442963, -5992.597694323365], [9084.815438448857, -6040.497694321801]], "source": 1771400912, "length": 48.05730594620959}, {"destination": 1771400970, "path": [[8838.365438442963, -5992.597694323365], [8796.765438447095, -5990.297694323132], [8763.265438446411, -6006.3476943224005], [8736.41543844883, -6030.447694323371], [8662.665438443184, -6194.397694322617]], "source": 1771400912, "length": 61.69564448906194}, {"destination": 1771400999, "path": [[8838.365438442963, -5992.597694323365], [8881.465438449253, -5838.997694322501]], "source": 1771400912, "length": 35.12867559711638}, {"destination": 1780414602, "path": [[9292.265438446633, -5428.047694323368], [9238.115438449768, -5512.297694322044]], "source": 1771400913, "length": 21.379240091026407}, {"destination": 1780414611, "path": [[9292.265438446633, -5428.047694323368], [9243.615438442986, -5175.997694323087]], "source": 1771400913, "length": 56.81169781683446}, {"destination": 1316236510, "path": [[-2812.2345615528843, 1791.8523056774661], [-2608.5345615527444, 1722.252305677685]], "source": 1316237011, "length": 41.71707454766048}, {"destination": 1316236844, "path": [[-251.43456155518606, 4091.902305678019], [-206.68456155448212, 4153.002305677945], [-142.03456155570393, 4154.50230567771]], "source": 1316237012, "length": 28.334054180142452}, {"destination": 1316236444, "path": [[-251.43456155518606, 4091.902305678019], [-0.28456155121148186, 4006.5523056771467]], "source": 1316237012, "length": 51.398747835492955}, {"destination": 1320104103, "path": [[2616.5654384442405, 3324.0523056772277], [2482.4654384474343, 3305.1023056778204]], "source": 1320103552, "length": 25.84947298967107}, {"destination": 1320103888, "path": [[1860.3154384493337, 1892.7523056770924], [1897.6154384446886, 2092.652305677234]], "source": 1320103639, "length": 45.01821772542506}, {"destination": 1320104058, "path": [[3492.6654384435096, 2302.4523056776047], [3481.565438448797, 2387.052305676818]], "source": 1320103640, "length": 18.931943791614305}, {"destination": 1320103627, "path": [[3492.6654384435096, 2302.4523056776047], [3504.4654384464025, 2212.2523056768982]], "source": 1320103640, "length": 20.184889287040132}, {"destination": 1320103956, "path": [[3492.6654384435096, 2302.4523056776047], [3708.265438447711, 2330.852305677311]], "source": 1320103640, "length": 41.48645795087648}, {"destination": 1316471719, "path": [[3492.6654384435096, 2302.4523056776047], [3269.415438445833, 2288.40230567684]], "source": 1320103640, "length": 42.572587561248795}, {"destination": 1320103961, "path": [[2973.3154384459226, 2998.3523056777985], [2903.965438449063, 2992.9523056768658]], "source": 1320103641, "length": 13.243747974983302}, {"destination": 1320103777, "path": [[3016.715438448614, 2498.1023056778185], [3056.465438447731, 2505.202305677301], [3051.1154384456063, 2537.3023056776133], [3228.615438445104, 2556.9523056780954]], "source": 1320103643, "length": 48.973530984080284}, {"destination": 1320103745, "path": [[2141.46543844862, 4095.702305678017], [1916.6654384434878, 4131.50230567716]], "source": 1320103644, "length": 43.48934012964386}, {"destination": 476559347, "path": [[2141.46543844862, 4095.702305678017], [2165.515438449006, 4213.002305677449]], "source": 1320103644, "length": 26.484263246525234}, {"destination": 1320103964, "path": [[2141.46543844862, 4095.702305678017], [2124.9654384476457, 4014.002305677167]], "source": 1320103644, "length": 18.438259803933352}, {"destination": 1320104104, "path": [[3275.0154384473262, 2046.4523056773487], [3271.16543844852, 2134.7023056765834]], "source": 1320103645, "length": 19.63947710950812}, {"destination": 1316471934, "path": [[3275.0154384473262, 2046.4523056773487], [3277.5154384481198, 1999.7023056781416], [3278.4154384444264, 1982.3023056773081]], "source": 1320103645, "length": 14.280073315406247}, {"destination": 1320104071, "path": [[3275.0154384473262, 2046.4523056773487], [3347.4654384448854, 2039.2023056778896], [3415.8654384484066, 2041.8523056768834]], "source": 1320103645, "length": 26.894333802960382}, {"destination": 1316237191, "path": [[-347.2845615561937, 2021.20230567715], [-572.6345615499895, 2078.552305677661]], "source": 1316237022, "length": 44.71448772727465}, {"destination": 63308187, "path": [[6466.765438446487, -5103.397694321999], [6313.415438448545, -5116.69769432288], [6160.365438447002, -5123.147694321872], [6051.615438444458, -5127.697694321753], [5854.215438446886, -5127.697694321753], [5652.515438448801, -5090.997694322752], [5496.36543844656, -5027.147694322664], [5286.065438447451, -4865.697694322435]], "source": 495771117, "length": 242.55456876048078}, {"destination": 495771300, "path": [[6466.765438446487, -5103.397694321999], [6478.215438448842, -5042.997694323148]], "source": 495771117, "length": 13.607595913112727}, {"destination": 1316236425, "path": [[-1368.8345615534558, 2905.552305676906], [-1275.3345615550415, 2865.3023056772754], [-1258.5845615546987, 2846.0023056773307]], "source": 1316237025, "length": 25.253065921064692}, {"destination": 1316236898, "path": [[-1368.8345615534558, 2905.552305676906], [-1339.2345615557133, 2957.1023056771396]], "source": 1316237025, "length": 12.771903289405232}, {"destination": 1316236485, "path": [[-1368.8345615534558, 2905.552305676906], [-1404.7845615507981, 2842.902305676631]], "source": 1316237025, "length": 15.519838164211214}, {"destination": 1316236531, "path": [[-1994.1845615534248, 3076.3023056774587], [-2053.184561553678, 3096.952305677192], [-2112.1845615539314, 3096.952305677192], [-2189.984561553615, 3131.352305677737], [-2184.6345615514906, 3163.5023056768573], [-2283.884561556704, 3188.702305678248]], "source": 1316237028, "length": 66.91460978483826}, {"destination": 1320103632, "path": [[1155.3654384499623, 2726.002305676545], [1302.4154384453368, 2684.102305677172], [1415.065438443719, 2648.652305676791]], "source": 1320103653, "length": 52.30624117346164}, {"destination": 476554809, "path": [[1155.3654384499623, 2726.002305676545], [1102.7654384463403, 2612.6023056782797]], "source": 1320103653, "length": 27.13061316381686}, {"destination": 1316237207, "path": [[-1420.1845615531283, 2319.402305676732], [-1559.684561556196, 2360.652305677391], [-1680.6345615520968, 2411.9023056776714]], "source": 1316237030, "length": 53.74275589151439}, {"destination": 1316236492, "path": [[-2501.134561555318, 2876.7523056778546], [-2332.734561555583, 2825.6523056775504]], "source": 1316237033, "length": 33.98330452743454}, {"destination": 1771401000, "path": [[9179.565438444115, -5603.347694322025], [9084.815438448857, -6040.497694321801]], "source": 1771400938, "length": 98.8731901595538}, {"destination": 3723332410, "path": [[9179.565438444115, -5603.347694322025], [9110.465438446625, -5590.497694322849]], "source": 1771400938, "length": 13.44669159753683}, {"destination": 1780414602, "path": [[9179.565438444115, -5603.347694322025], [9238.115438449768, -5512.297694322044]], "source": 1771400938, "length": 23.107564993616112}, {"destination": 1404037025, "path": [[-132.58456155540443, 5184.302305677235], [-188.934561556664, 5221.002305678013]], "source": 1404037117, "length": 13.47146827197282}, {"destination": 1404036972, "path": [[-132.58456155540443, 5184.302305677235], [-103.08456155172507, 5257.702305677014]], "source": 1404037117, "length": 17.26076541362302}, {"destination": 1404037087, "path": [[-132.58456155540443, 5184.302305677235], [-167.48456155113445, 5071.902305678222]], "source": 1404037117, "length": 25.86289300399375}, {"destination": 84489700, "path": [[6951.81543844825, -3004.0976943226383], [7016.21543844766, -3017.84769432345]], "source": 602360666, "length": 12.622485954318428}, {"destination": 602392045, "path": [[6951.81543844825, -3004.0976943226383], [7145.315438449984, -2852.4476943232457]], "source": 602360666, "length": 49.91338118844112}, {"destination": 1316471890, "path": [[1599.8154384462282, 2515.352305676899], [1634.9154384442954, 2585.502305677778]], "source": 1320103661, "length": 16.969293551010615}, {"destination": 1316472011, "path": [[1599.8154384462282, 2515.352305676899], [1567.965438447061, 2451.7023056773724]], "source": 1320103661, "length": 15.396525231487281}, {"destination": 1320104005, "path": [[1599.8154384462282, 2515.352305676899], [1401.8154384487502, 2589.452305677753]], "source": 1320103661, "length": 41.103972468678776}, {"destination": 1316236909, "path": [[-250.73456155411122, 3069.452305677345], [-231.3345615547746, 3100.552305676629]], "source": 1316237038, "length": 7.838930784542253}, {"destination": 1771400994, "path": [[8910.615438445291, -5698.997694322472], [8931.915438445514, -5590.847694323386]], "source": 1771400943, "length": 24.390093159715924}, {"destination": 1771400999, "path": [[8910.615438445291, -5698.997694322472], [8886.615438449042, -5820.597694322416], [8881.465438449253, -5838.997694322501]], "source": 1771400943, "length": 31.63333266760681}, {"destination": 1771400967, "path": [[8910.615438445291, -5698.997694322472], [8763.815438449285, -5741.847694322289], [8752.165438444592, -5744.297694322498]], "source": 1771400943, "length": 31.77389757866422}, {"destination": 1320103704, "path": [[3469.315438444198, 2480.702305676985], [3678.715438447, 2512.0523056774146]], "source": 1320103666, "length": 40.429789440883546}, {"destination": 1320104058, "path": [[3469.315438444198, 2480.702305676985], [3481.565438448797, 2387.052305676818]], "source": 1320103666, "length": 20.956660644925872}, {"destination": 1320103983, "path": [[3469.315438444198, 2480.702305676985], [3238.9154384446783, 2453.6023056782597]], "source": 1320103666, "length": 44.23033527846061}, {"destination": 1320103895, "path": [[3469.315438444198, 2480.702305676985], [3458.115438448317, 2566.3023056772263]], "source": 1320103666, "length": 19.15532611995005}, {"destination": 1316237064, "path": [[323.26543844618527, 4062.652305677261], [605.9154384487897, 3951.152305678107]], "source": 1316237043, "length": 59.199987728452975}, {"destination": 601712444, "path": [[-8584.934561554292, 9153.302305676902], [-8380.284561553708, 9104.452305678024]], "source": 601712535, "length": 40.413624280382926}, {"destination": 1581175404, "path": [[2636.715438448789, -5970.547694323258], [2644.765438446939, -5930.447694321828], [2660.115438445132, -5893.9976943221955], [2676.215438448537, -5874.547694322274], [2689.6154384488113, -5863.047694322887], [2711.0654384472355, -5855.047694321769]], "source": 1581175422, "length": 31.02008309188064}, {"destination": 1320103712, "path": [[2786.465438447294, 3533.4523056782527], [2718.515438445479, 3631.4523056777402], [2632.4154384482767, 3785.252305677389]], "source": 1320103670, "length": 63.2588341732629}, {"destination": 1320104113, "path": [[2786.465438447294, 3533.4523056782527], [2757.9654384481955, 3503.0023056776827], [2704.3154384429613, 3489.202305678063], [2640.6154384446268, 3487.8023056776897]], "source": 1320103670, "length": 31.447472318625124}, {"destination": 1320103922, "path": [[2786.465438447294, 3533.4523056782527], [2822.315438443468, 3571.8023056769966], [2853.365438447497, 3613.1023056782396]], "source": 1320103670, "length": 21.839276615007524}, {"destination": 1320103601, "path": [[1358.7654384465964, 2778.1523056766846], [1203.2154384442606, 2827.5023056778537]], "source": 1320103672, "length": 31.55314444061924}, {"destination": 1316236456, "path": [[-162.23456155017857, 3044.202305677146], [-76.38456155234508, 3012.1023056768336]], "source": 1316237051, "length": 17.81956015274663}, {"destination": 1316236386, "path": [[-162.23456155017857, 3044.202305677146], [-218.58456155143813, 2973.1023056775994], [-199.78456155200774, 2947.852305677401], [-287.08456155612794, 2865.652305677813]], "source": 1316237051, "length": 50.45394594717398}, {"destination": 1316236909, "path": [[-162.23456155017857, 3044.202305677146], [-162.23456155017857, 3069.452305677345], [-231.3345615547746, 3100.552305676629]], "source": 1316237051, "length": 20.466298477493538}, {"destination": 1315785507, "path": [[-4702.584561556478, -2143.0476943233857], [-4523.834561553031, -1914.1976943224392]], "source": 479293180, "length": 61.20147946959438}, {"destination": 479293261, "path": [[-4702.584561556478, -2143.0476943233857], [-4326.5345615566275, -2324.3476943228816]], "source": 479293180, "length": 82.09395681131332}, {"destination": 1320103938, "path": [[2434.2154384484616, 2335.4523056777766], [2435.415438448274, 2417.002305676874]], "source": 1320103677, "length": 18.137388831348993}, {"destination": 1316236344, "path": [[-1658.8845615501668, 1950.1023056776035], [-1610.3345615547937, 2013.8523056765223]], "source": 1316237054, "length": 16.918761885264985}, {"destination": 1316471714, "path": [[1037.3154384453187, 2415.8523056776457], [1027.715438446819, 2387.00230567801]], "source": 1320103679, "length": 6.670523137889266}, {"destination": 1316471999, "path": [[1037.3154384453187, 2415.8523056776457], [1046.8654384467868, 2444.60230567789]], "source": 1320103679, "length": 6.646836327448721}, {"destination": 1320103599, "path": [[1037.3154384453187, 2415.8523056776457], [1152.2154384451255, 2369.8523056765453], [1201.6654384439107, 2359.4523056775784]], "source": 1320103679, "length": 33.812143272382755}, {"destination": 1316236745, "path": [[-1865.8845615533437, 3388.8023056771744], [-1891.0845615565108, 3338.552305677922]], "source": 1316237057, "length": 12.159891082560405}, {"destination": 483098387, "path": [[-1865.8845615533437, 3388.8023056771744], [-1781.6345615528917, 3357.202305677376]], "source": 1316237057, "length": 17.4964739284147}, {"destination": 483098227, "path": [[-1865.8845615533437, 3388.8023056771744], [-2259.3345615504745, 3540.3523056771746], [-2498.1845615528186, 3153.2523056778673]], "source": 1316237057, "length": 179.40537211089062}, {"destination": 1320104016, "path": [[3120.1154384490337, 1760.902305678158], [3108.5654384455097, 1815.8023056766838]], "source": 1320103682, "length": 12.404977185137524}, {"destination": 1320104057, "path": [[3120.1154384490337, 1760.902305678158], [3131.115438449683, 1708.1523056781123]], "source": 1320103682, "length": 11.916571342816086}, {"destination": 1320103910, "path": [[3120.1154384490337, 1760.902305678158], [2975.1654384497783, 1738.302305676953]], "source": 1320103682, "length": 28.020752043304352}, {"destination": 1769172134, "path": [[4388.815438446159, -6758.347694322709], [4455.3154384487925, -6788.147694322788], [4557.265438450031, -6831.697694321903]], "source": 3344153899, "length": 35.945860252267096}, {"destination": 1785693357, "path": [[4388.815438446159, -6758.347694322709], [4389.1654384466965, -6784.947694322696], [4508.515438445215, -6826.447694322724]], "source": 3344153899, "length": 30.415034334800048}, {"destination": 1769172062, "path": [[4388.815438446159, -6758.347694322709], [3350.265438449185, -6292.747694322642]], "source": 3344153899, "length": 222.97530021863736}, {"destination": 3629684453, "path": [[4388.815438446159, -6758.347694322709], [4409.715438448813, -6687.097694323185]], "source": 3344153899, "length": 16.33606809375058}, {"destination": 1320103603, "path": [[1970.6654384492595, 3046.2023056774256], [1992.2154384488522, 3213.6523056767173]], "source": 1320103684, "length": 37.46402832485586}, {"destination": 1320103846, "path": [[1970.6654384492595, 3046.2023056774256], [1892.2154384455325, 3044.8523056776367]], "source": 1320103684, "length": 14.922690360646211}, {"destination": 1316471803, "path": [[1970.6654384492595, 3046.2023056774256], [1961.615438446529, 2975.7023056777853]], "source": 1320103684, "length": 15.772715653390371}, {"destination": 1889249305, "path": [[-3977.684561554895, -3407.797694322312], [-3987.234561556363, -3429.047694321952], [-4006.2845615551623, -3460.9476943234795]], "source": 1889249238, "length": 13.028357157656277}, {"destination": 1320103720, "path": [[3796.765438444538, 2078.552305677661], [3853.065438448766, 2007.4523056781145]], "source": 1320103686, "length": 19.095950073856617}, {"destination": 1320104105, "path": [[1852.6654384487529, 3700.452305677615], [2058.9654384437495, 3687.3023056767097]], "source": 1320103687, "length": 39.34429443024098}, {"destination": 1320103714, "path": [[1852.6654384487529, 3700.452305677615], [1822.7154384433675, 3702.4023056773103]], "source": 1320103687, "length": 5.712715467296752}, {"destination": 1320104118, "path": [[1852.6654384487529, 3700.452305677615], [1830.8154384456543, 3592.45230567673], [1865.7154384484897, 3558.052305677961]], "source": 1320103687, "length": 34.50326279224191}, {"destination": 1316237043, "path": [[605.9154384487897, 3951.152305678107], [323.26543844618527, 4062.652305677261]], "source": 1316237064, "length": 59.199987728452975}, {"destination": 599406827, "path": [[605.9154384487897, 3951.152305678107], [693.6154384433735, 4291.552305677015]], "source": 1316237064, "length": 77.51732368160354}, {"destination": 1785693361, "path": [[4825.76543844715, -6461.897694322261], [4772.715438448927, -6463.747694322564], [4793.865438443845, -6576.447694323307]], "source": 3344153900, "length": 35.47952598683112}, {"destination": 602360650, "path": [[4825.76543844715, -6461.897694322261], [4827.765438449205, -5987.397694322994]], "source": 3344153900, "length": 105.52482177420336}, {"destination": 1771400912, "path": [[8662.665438443184, -6194.397694322617], [8736.41543844883, -6030.447694323371], [8763.265438446411, -6006.3476943224005], [8796.765438447095, -5990.297694323132], [8838.365438442963, -5992.597694323365]], "source": 1771400970, "length": 61.69564448906194}, {"destination": 495771029, "path": [[8662.665438443184, -6194.397694322617], [8145.365438444685, -6086.647694322877]], "source": 1771400970, "length": 101.23959166801214}, {"destination": 1771400903, "path": [[8662.665438443184, -6194.397694322617], [8699.965438445644, -6235.4476943227155], [8702.915438448144, -6283.847694323441]], "source": 1771400970, "length": 22.339505562505124}, {"destination": 1316237106, "path": [[-35.934561552153355, 3919.0023056772106], [-69.38456155580752, 3840.552305677036]], "source": 1316237067, "length": 18.570496503552484}, {"destination": 1316236355, "path": [[-35.934561552153355, 3919.0023056772106], [152.66543844916214, 3855.402305678268], [179.96543844844837, 3846.202305677338]], "source": 1316237067, "length": 44.13826917822321}, {"destination": 1316236444, "path": [[-35.934561552153355, 3919.0023056772106], [-0.28456155121148186, 4006.5523056771467]], "source": 1316237067, "length": 20.617388125902732}, {"destination": 654403074, "path": [[-35.934561552153355, 3919.0023056772106], [-305.8345615514213, 4009.9523056778]], "source": 1316237067, "length": 55.17292518102232}, {"destination": 1489398832, "path": [[3940.1654384434437, -5212.097694322182], [3985.7654384434227, -5145.247694322563], [4047.9654384455444, -5054.047694322606]], "source": 84487949, "length": 40.68945602400558}, {"destination": 4451359097, "path": [[3940.1654384434437, -5212.097694322182], [3912.0654384490194, -5258.047694322699]], "source": 84487949, "length": 11.531431430327734}, {"destination": 1489398829, "path": [[3940.1654384434437, -5212.097694322182], [4037.9654384494756, -5256.247694322979], [4092.2154384475107, -5280.647694322127]], "source": 84487949, "length": 32.68563043218897}, {"destination": 1320104081, "path": [[3643.1654384472267, 1879.002305678057], [3635.8154384430463, 1929.45230567787], [3614.365438444622, 2046.4523056773487]], "source": 1320103696, "length": 37.64401257161613}, {"destination": 1320103981, "path": [[3643.1654384472267, 1879.002305678057], [3752.6154384437405, 1931.302305678173]], "source": 1320103696, "length": 23.844484780552776}, {"destination": 1320103941, "path": [[3643.1654384472267, 1879.002305678057], [3614.365438444622, 1865.2523056772452], [3476.0154384443354, 1820.3523056765648]], "source": 1320103696, "length": 34.415157841236386}, {"destination": 1320104072, "path": [[2158.5654384495, 2731.602305678038], [2166.1154384489123, 2801.1023056766503], [2339.5654384472664, 2800.0023056780065]], "source": 1320103698, "length": 48.510857581957445}, {"destination": 1320103769, "path": [[2158.5654384495, 2731.602305678038], [2010.515438449545, 2746.0523056781485]], "source": 1320103698, "length": 28.33929984508053}, {"destination": 1320103928, "path": [[2158.5654384495, 2731.602305678038], [2155.3654384476317, 2702.4523056766725], [2158.065438443657, 2652.0023056768596]], "source": 1320103698, "length": 17.74252127056666}, {"destination": 1324294714, "path": [[4046.1654384458257, 5108.652305677808], [3995.215438443722, 5099.452305676877], [3844.615438445942, 5079.652305678195]], "source": 1324294787, "length": 38.88369257149014}, {"destination": 1324294420, "path": [[4046.1654384458257, 5108.652305677808], [3970.965438448104, 5343.952305677746]], "source": 1324294787, "length": 54.24777063914541}, {"destination": 1324294885, "path": [[4046.1654384458257, 5108.652305677808], [4359.615438445985, 5186.402305676907]], "source": 1324294787, "length": 62.07260137813602}, {"destination": 1320104110, "path": [[2916.965438444663, 3328.6523056776928], [2751.765438446796, 3297.8523056765853]], "source": 1320103700, "length": 32.15663628228263}, {"destination": 481390834, "path": [[-3245.284561550932, -192.1476943227418], [-3423.8345615520416, -117.49769432256585]], "source": 1316237077, "length": 37.79610741841748}, {"destination": 481390836, "path": [[-3245.284561550932, -192.1476943227418], [-3164.784561555223, -219.94769432254202]], "source": 1316237077, "length": 16.510033178487205}, {"destination": 481390836, "path": [[-3245.284561550932, -192.1476943227418], [-3164.784561555223, -219.94769432254202]], "source": 1316237077, "length": 16.510033178487205}, {"destination": 4955392133, "path": [[-3245.284561550932, -192.1476943227418], [-3003.7845615566994, -259.0476943229447]], "source": 1316237077, "length": 48.27595073590672}, {"destination": 1316237078, "path": [[-3245.284561550932, -192.1476943227418], [-2949.4845615545273, 434.2523056770631]], "source": 1316237077, "length": 150.2342039317696}, {"destination": 1315785341, "path": [[-4117.834561554901, -1425.597694321823], [-4308.7845615517035, -1311.4976943224833]], "source": 1315785427, "length": 44.299562294725845}, {"destination": 1315785622, "path": [[-4117.834561554901, -1425.597694321823], [-4087.784561555452, -1390.947694321909]], "source": 1315785427, "length": 9.592707503660884}, {"destination": 2049820665, "path": [[3537.2654384460134, -7641.447694322068], [3516.715438443896, -7656.2976943233]], "source": 93466391, "length": 5.115954076155337}, {"destination": 602364835, "path": [[3537.2654384460134, -7641.447694322068], [3561.8654384492743, -7590.147694322979]], "source": 93466391, "length": 12.330647216023115}, {"destination": 1316236371, "path": [[-293.6845615550965, 2303.352305677464], [-70.28456155211416, 2225.55230567778]], "source": 1316237080, "length": 45.87415248918871}, {"destination": 1320104016, "path": [[3098.765438444673, 1882.7023056768867], [3102.0654384477098, 1846.9523056765524], [3108.5654384455097, 1815.8023056766838]], "source": 1320103705, "length": 15.01246510018598}, {"destination": 1316471756, "path": [[3098.765438444673, 1882.7023056768867], [3090.8154384476916, 1969.2523056775713]], "source": 1320103705, "length": 19.307168924014352}, {"destination": 1320103775, "path": [[3098.765438444673, 1882.7023056768867], [3002.815438449602, 1876.7023056778244], [2965.265438447773, 1873.452305677148]], "source": 1320103705, "length": 25.473723663081532}, {"destination": 1316236768, "path": [[-943.0845615554517, 2215.4523056769904], [-915.9345615543657, 2262.0523056779975], [-903.8845615521041, 2285.6523056766773]], "source": 1316237082, "length": 17.30591491361374}, {"destination": 1316236913, "path": [[-943.0845615554517, 2215.4523056769904], [-776.484561555435, 2163.4023056780193]], "source": 1316237082, "length": 33.7324173273647}, {"destination": 1316236590, "path": [[-943.0845615554517, 2215.4523056769904], [-985.584561554731, 2142.5023056771406]], "source": 1316237082, "length": 18.125458953607012}, {"destination": 1320103931, "path": [[2635.365438443671, 3358.4523056777725], [2745.8154384447653, 3366.6523056776755]], "source": 1320104120, "length": 21.08464438722953}, {"destination": 1320103646, "path": [[575.5654384458353, 2248.3023056771854], [548.1154384483489, 2145.2523056773034]], "source": 1320103708, "length": 23.504525255433006}, {"destination": 1320103625, "path": [[2474.9654384450537, 3352.8023056774714], [2420.7654384440502, 3337.852305676847], [2277.4154384492817, 3327.652305676665]], "source": 1320103709, "length": 38.187770087692925}, {"destination": 1320103861, "path": [[2474.9654384450537, 3352.8023056774714], [2469.915438446435, 3384.6523056766387]], "source": 1320103709, "length": 7.147320416895224}, {"destination": 1320104103, "path": [[2474.9654384450537, 3352.8023056774714], [2482.4654384474343, 3305.1023056778204]], "source": 1320103709, "length": 10.702891100523214}, {"destination": 654402280, "path": [[3040.0654384479253, 3954.4023056770075], [3088.6654384474355, 3842.4523056779235], [3122.7654384480275, 3778.252305677299]], "source": 1320103710, "length": 42.23812946204937}, {"destination": 1320103995, "path": [[3040.0654384479253, 3954.4023056770075], [3089.465438449679, 3973.4023056769984]], "source": 1320103710, "length": 10.301259960168897}, {"destination": 1320103942, "path": [[3040.0654384479253, 3954.4023056770075], [3005.5154384456273, 3941.1023056779013], [2846.51543844916, 3879.5523056780467]], "source": 1320103710, "length": 40.39829958086142}, {"destination": 1316237001, "path": [[-1288.7845615523474, 2234.502305677566], [-1151.9845615524105, 2498.302305676603], [-1101.53456155615, 2573.202305677924]], "source": 1316237087, "length": 83.39921797975741}, {"destination": 1320103794, "path": [[2632.4154384482767, 3785.252305677389], [2549.2654384464686, 3742.4023056775723]], "source": 1320103712, "length": 18.46341616365971}, {"destination": 1320103932, "path": [[2632.4154384482767, 3785.252305677389], [2721.165438444473, 3831.0023056773443]], "source": 1320103712, "length": 19.70819327117432}, {"destination": 1320103670, "path": [[2632.4154384482767, 3785.252305677389], [2718.515438445479, 3631.4523056777402], [2786.465438447294, 3533.4523056782527]], "source": 1320103712, "length": 63.2588341732629}, {"destination": 1316236739, "path": [[-2621.284561556081, 1695.4523056771363], [-2468.9345615556135, 1661.1023056771755], [-2368.4345615535563, 1633.8523056766974]], "source": 1316237089, "length": 50.01431332244999}, {"destination": 1316236404, "path": [[-2621.284561556081, 1695.4523056771363], [-2635.8845615561677, 1664.702305676613]], "source": 1316237089, "length": 7.381191686518091}, {"destination": 1316236510, "path": [[-2621.284561556081, 1695.4523056771363], [-2608.5345615527444, 1722.252305677685]], "source": 1316237089, "length": 6.433933296083874}, {"destination": 1771400904, "path": [[8931.915438445514, -5590.847694323386], [8716.61543844482, -5652.797694322587]], "source": 1771400994, "length": 43.194891316141785}, {"destination": 1771400916, "path": [[8931.915438445514, -5590.847694323386], [8939.115438444389, -5554.397694321978]], "source": 1771400994, "length": 8.220553296710332}, {"destination": 1771400943, "path": [[8931.915438445514, -5590.847694323386], [8910.615438445291, -5698.997694322472]], "source": 1771400994, "length": 24.390093159715924}, {"destination": 4346903224, "path": [[8984.265438449767, -6367.247694322842], [9085.9154384475, -6397.897694322197], [9207.265438448076, -6445.297694321895], [9325.66543844615, -6510.647694321748], [9554.865438445859, -6670.897694322164], [9710.315438447025, -6794.1976943224345]], "source": 1771400995, "length": 169.27570083241176}, {"destination": 1771401030, "path": [[8984.265438449767, -6367.247694322842], [9122.36543844358, -6168.947694321858]], "source": 1771400995, "length": 51.32592627471784}, {"destination": 1771400903, "path": [[8984.265438449767, -6367.247694322842], [8702.915438448144, -6283.847694323441]], "source": 1771400995, "length": 56.62156418673339}, {"destination": 1320104016, "path": [[2969.715438446485, 1809.252305676523], [3108.5654384455097, 1815.8023056766838]], "source": 1320103717, "length": 26.446291980625023}, {"destination": 1320104052, "path": [[2969.715438446485, 1809.252305676523], [2874.065438447815, 1789.5523056772333], [2726.31543844426, 1757.9023056768506]], "source": 1320103717, "length": 47.677688389889646}, {"destination": 1320103910, "path": [[2969.715438446485, 1809.252305676523], [2970.6154384498973, 1796.4523056779312], [2975.1654384497783, 1738.302305676953]], "source": 1320103717, "length": 15.811911600581087}, {"destination": 1320103775, "path": [[2969.715438446485, 1809.252305676523], [2965.265438447773, 1873.452305677148]], "source": 1320103717, "length": 14.302834953602236}, {"destination": 1320104090, "path": [[3753.815438443553, 2470.802305676756], [3796.765438444538, 2239.1023056780314]], "source": 1320103719, "length": 52.171317326718984}, {"destination": 1320103881, "path": [[3853.065438448766, 2007.4523056781145], [3906.715438446895, 2039.5523056766506], [3980.6654384477724, 2059.602305678254]], "source": 1320103720, "length": 27.206308362145215}, {"destination": 1320103981, "path": [[3853.065438448766, 2007.4523056781145], [3807.465438448787, 1975.3523056778022], [3752.6154384437405, 1931.302305678173]], "source": 1320103720, "length": 25.54218911549909}, {"destination": 1320103686, "path": [[3853.065438448766, 2007.4523056781145], [3796.765438444538, 2078.552305677661]], "source": 1320103720, "length": 19.095950073856617}, {"destination": 1320104116, "path": [[1979.0154384438097, 1437.752305676554], [1971.3654384432289, 1380.652305677188]], "source": 1320103722, "length": 12.781426270688103}, {"destination": 1320103878, "path": [[1979.0154384438097, 1437.752305676554], [1981.1654384440658, 1453.6023056770375]], "source": 1320103722, "length": 3.5470804648198233}, {"destination": 1320103630, "path": [[1979.0154384438097, 1437.752305676554], [1911.3154384484687, 1445.6023056776958], [1776.5654384476193, 1464.8023056782476]], "source": 1320103722, "length": 38.973047006366826}, {"destination": 1316236998, "path": [[-301.7345615532463, 2369.8523056765453], [-434.13456155150243, 2406.1023056773934]], "source": 1316237100, "length": 26.43913433910803}, {"destination": 1320103809, "path": [[2690.665438443318, 2347.752305677631], [2525.3654384442825, 2346.9523056771636], [2525.3654384442825, 2412.4023056781853]], "source": 1320103726, "length": 45.9930289294489}, {"destination": 1320103918, "path": [[2690.665438443318, 2347.752305677631], [2682.5154384439998, 2623.0023056772466]], "source": 1320103726, "length": 61.23239696841804}, {"destination": 1316471895, "path": [[2690.665438443318, 2347.752305677631], [2688.965438444768, 2258.352305677391]], "source": 1320103726, "length": 19.884384322426335}, {"destination": 1316471867, "path": [[-326.13456155417, 1364.60230567792], [-173.13456155676477, 1353.2523056767332], [424.06543844464295, 1324.9523056781954]], "source": 3356022891, "length": 142.95400990949312}, {"destination": 1831147405, "path": [[-326.13456155417, 1364.60230567792], [-312.33456155632666, 1471.9023056777303]], "source": 3356022891, "length": 24.006090522285195}, {"destination": 1316236706, "path": [[-1274.784561552167, 3069.452305677345], [-1150.334561550892, 3010.4023056782835]], "source": 1316237104, "length": 27.067421947139994}, {"destination": 1316237188, "path": [[-1274.784561552167, 3069.452305677345], [-1230.3845615520004, 3146.802305677099]], "source": 1316237104, "length": 19.162852770975267}, {"destination": 1316236898, "path": [[-1274.784561552167, 3069.452305677345], [-1339.2345615557133, 2957.1023056771396]], "source": 1316237104, "length": 27.830172538902207}, {"destination": 1316196944, "path": [[-1309.1345615521277, 1274.0023056778682], [-1679.6345615546215, 1425.0523056773545]], "source": 1316197000, "length": 78.0584039515418}, {"destination": 1316196990, "path": [[-1309.1345615521277, 1274.0023056778682], [-1339.684561550314, 1207.352305677034]], "source": 1316197000, "length": 15.920306818761043}, {"destination": 1316196959, "path": [[-1309.1345615521277, 1274.0023056778682], [-1282.2345615504105, 1332.7023056781684]], "source": 1316197000, "length": 14.020905940076773}, {"destination": 1316236520, "path": [[-69.38456155580752, 3840.552305677036], [-186.38456155173344, 3876.8523056766926], [-358.7345615514437, 3930.3523056766207]], "source": 1316237106, "length": 58.54216368536768}, {"destination": 1316237067, "path": [[-69.38456155580752, 3840.552305677036], [-35.934561552153355, 3919.0023056772106]], "source": 1316237106, "length": 18.570496503552484}, {"destination": 1316237079, "path": [[-69.38456155580752, 3840.552305677036], [144.01543844400067, 3766.7023056773273]], "source": 1316237106, "length": 43.78283797760306}, {"destination": 1316236927, "path": [[-69.38456155580752, 3840.552305677036], [-107.83456155394333, 3750.5523056768907]], "source": 1316237106, "length": 21.30914541764284}, {"destination": 1316236522, "path": [[-2116.2845615521064, 2734.302305677616], [-2020.9845615539734, 2679.5023056767063], [-1907.2345615569475, 2614.202305677438]], "source": 1316237108, "length": 47.89595741098984}, {"destination": 1316237227, "path": [[-2116.2845615521064, 2734.302305677616], [-2083.8845615500645, 2789.252305676726]], "source": 1316237108, "length": 13.685857117076136}, {"destination": 1316236588, "path": [[-2116.2845615521064, 2734.302305677616], [-2128.284561550231, 2713.9023056772517]], "source": 1316237108, "length": 5.078823799489558}, {"destination": 1316236787, "path": [[-2116.2845615521064, 2734.302305677616], [-2200.7345615548957, 2764.3523056770646]], "source": 1316237108, "length": 17.39573605182917}, {"destination": 1316471929, "path": [[292.61543844683047, 4410.2523056768205], [404.51543844710613, 4377.45230567721]], "source": 1316237110, "length": 22.497494151317742}, {"destination": 1316236389, "path": [[292.61543844683047, 4410.2523056768205], [159.6154384486681, 4168.152305677353]], "source": 1316237110, "length": 59.48665082557892}, {"destination": 1324294354, "path": [[4141.815438444496, 4970.902305677427], [4096.915438445592, 4966.102305678177]], "source": 1324294606, "length": 8.605152011515013}, {"destination": 1324294429, "path": [[4141.815438444496, 4970.902305677427], [4190.665438443375, 4976.152305676606]], "source": 1324294606, "length": 9.364503395497787}, {"destination": 1324294826, "path": [[4141.815438444496, 4970.902305677427], [4148.115438447065, 5078.8023056771435]], "source": 1324294606, "length": 24.02560523141013}, {"destination": 1316236639, "path": [[-2035.1345615523542, 2534.4023056774745], [-2058.88456155634, 2504.352305678026]], "source": 1316237115, "length": 8.06560167317122}, {"destination": 1316236718, "path": [[-2035.1345615523542, 2534.4023056774745], [-1994.384561555762, 2585.9023056771234]], "source": 1316237115, "length": 13.829000353467162}, {"destination": 1316236599, "path": [[-2035.1345615523542, 2534.4023056774745], [-1884.3845615563737, 2464.202305677787]], "source": 1316237115, "length": 32.644815228090785}, {"destination": 1316236692, "path": [[-2519.8845615506116, 1089.95230567821], [-2431.3845615537844, 1048.652305676967], [-2447.484561550084, 998.2023056771538], [-2385.884561554974, 969.45230567691]], "source": 1316237116, "length": 44.15038537226709}, {"destination": 481397090, "path": [[-4708.88456155194, 1318.7023056779879], [-4758.484561556032, 1015.3023056780341]], "source": 483110717, "length": 68.12938611338342}, {"destination": 601145287, "path": [[-4708.88456155194, 1318.7023056779879], [-4766.084561552475, 1333.1023056775139]], "source": 483110717, "length": 11.339917151737312}, {"destination": 1320103971, "path": [[1916.6654384434878, 4131.50230567716], [1916.6654384434878, 4051.202305676682]], "source": 1320103745, "length": 17.857957888555337}, {"destination": 1320103644, "path": [[1916.6654384434878, 4131.50230567716], [2141.46543844862, 4095.702305678017]], "source": 1320103745, "length": 43.48934012964386}, {"destination": 1320104093, "path": [[1916.6654384434878, 4131.50230567716], [1921.5654384439063, 4221.702305677865]], "source": 1320103745, "length": 20.081256400933686}, {"destination": 4346903224, "path": [[9852.565438443151, -6607.497694322006], [9710.315438447025, -6794.1976943224345]], "source": 1771401026, "length": 49.553294620549146}, {"destination": 1771401030, "path": [[9852.565438443151, -6607.497694322006], [9793.615438447034, -6590.047694322365], [9122.36543844358, -6168.947694321858]], "source": 1771401026, "length": 170.16768982546293}, {"destination": 1776093638, "path": [[9852.565438443151, -6607.497694322006], [9918.06543844831, -6591.047694323393], [10121.065438447375, -6660.9476943231275], [10123.765438443399, -6690.747694323207], [10148.415438443692, -6741.697694321758]], "source": 1771401026, "length": 73.50251924918994}, {"destination": 1320103605, "path": [[2911.615438449644, 3257.5523056781462], [2756.315438446677, 3245.252305676516]], "source": 1320103749, "length": 29.662119606009078}, {"destination": 1771401000, "path": [[9122.36543844358, -6168.947694321858], [9099.565438447144, -6142.547694322431], [9083.765438447244, -6104.947694321794], [9084.815438448857, -6040.497694321801]], "source": 1771401030, "length": 30.519317587561982}, {"destination": 1771401026, "path": [[9122.36543844358, -6168.947694321858], [9793.615438447034, -6590.047694322365], [9852.565438443151, -6607.497694322006]], "source": 1771401030, "length": 170.16768982546293}, {"destination": 1771400995, "path": [[9122.36543844358, -6168.947694321858], [8984.265438449767, -6367.247694322842]], "source": 1771401030, "length": 51.32592627471784}, {"destination": 1319204556, "path": [[3797.4154384485814, 2801.6023056771646], [3218.815438444267, 2726.8023056770116]], "source": 1320103751, "length": 111.28983939238782}, {"destination": 4252530974, "path": [[3797.4154384485814, 2801.6023056771646], [3800.065438447575, 2744.6023056771905]], "source": 1320103751, "length": 12.686585206209148}, {"destination": 654405679, "path": [[3797.4154384485814, 2801.6023056771646], [3818.2154384429623, 2828.302305676544]], "source": 1320103751, "length": 7.134699322080532}, {"destination": 1316237112, "path": [[-1092.5345615504511, 2382.6523056769133], [-1020.2345615510922, 2530.2523056769387]], "source": 1316237128, "length": 35.58837997029657}, {"destination": 1316236768, "path": [[-1092.5345615504511, 2382.6523056769133], [-903.8845615521041, 2285.6523056766773]], "source": 1316237128, "length": 41.86340396963411}, {"destination": 1316237209, "path": [[-1092.5345615504511, 2382.6523056769133], [-1184.1345615550836, 2195.5023056765554], [-1179.184561550528, 2135.052305677121]], "source": 1316237128, "length": 58.59515732362653}, {"destination": 1316236529, "path": [[-2766.8345615552425, 1052.8023056775028], [-2710.3845615528144, 1162.3023056781535]], "source": 1316237129, "length": 26.61309577135468}, {"destination": 1316236811, "path": [[-2766.8345615552425, 1052.8023056775028], [-2881.984561554418, 1108.3023056777108]], "source": 1316237129, "length": 25.137640400609396}, {"destination": 1316236527, "path": [[-2766.8345615552425, 1052.8023056775028], [-2784.3845615507234, 1018.6523056781027]], "source": 1316237129, "length": 8.295857647550637}, {"destination": 1316236440, "path": [[-521.6345615508544, 1862.9523056770126], [-633.9345615558045, 1856.652305677997]], "source": 1316237131, "length": 21.4028347031712}, {"destination": 1883856717, "path": [[-1982.434561554669, -7808.597694323183], [-1954.2345615519707, -7736.647694322584]], "source": 4394577740, "length": 16.875557485772124}, {"destination": 103831022, "path": [[-1982.434561554669, -7808.597694323183], [-1746.6845615530247, -7960.597694323113], [-1743.2845615559245, -8122.497694323272]], "source": 4394577740, "length": 92.15339552659245}, {"destination": 1316236665, "path": [[-733.5345615544497, 2654.252305678284], [-873.034561550412, 2709.302305676786], [-918.634561550391, 2684.102305677172], [-1001.7845615521992, 2736.8523056772174], [-1007.1345615543237, 2764.3523056770646], [-1224.4845615541067, 2897.8523056775175]], "source": 1316237133, "length": 116.32758766990577}, {"destination": 1316236383, "path": [[215.96543844992766, 3207.052305677749], [-79.93456155475087, 3335.952305677736]], "source": 1316237135, "length": 63.15604146526709}, {"destination": 1316236702, "path": [[-1479.1845615533816, 1879.002305678057], [-1438.9845615525587, 1934.0523056765592]], "source": 1316237137, "length": 14.433932640418899}, {"destination": 1316236855, "path": [[-1776.9345615548104, 681.8023056780476], [-1618.284561551775, 635.8523056775311]], "source": 1316237139, "length": 31.854763387002233}, {"destination": 1316236736, "path": [[-331.23456155692566, 2287.2523056776117], [-469.03456155433787, 2323.5523056772677]], "source": 1316237142, "length": 27.422046557717223}, {"destination": 1320103896, "path": [[1972.9654384477158, 2408.8523056775557], [2103.615438443285, 2394.6023056780064]], "source": 1320103767, "length": 25.048565781769234}, {"destination": 1320103900, "path": [[1972.9654384477158, 2408.8523056775557], [1957.9654384429546, 2318.9023056779943]], "source": 1320103767, "length": 20.20631035620727}, {"destination": 1320103934, "path": [[1972.9654384477158, 2408.8523056775557], [1835.865438444273, 2421.202305677994]], "source": 1320103767, "length": 26.21799705066866}, {"destination": 1320104082, "path": [[1439.015438450042, 4045.9023056769183], [1422.1154384443935, 3971.052305677958]], "source": 1320103768, "length": 16.953352454442665}, {"destination": 1320103831, "path": [[1439.015438450042, 4045.9023056769183], [1581.3654384473352, 4014.502305677681]], "source": 1320103768, "length": 27.959411520200565}, {"destination": 1320103698, "path": [[2010.515438449545, 2746.0523056781485], [2158.5654384495, 2731.602305678038]], "source": 1320103769, "length": 28.33929984508053}, {"destination": 1320103582, "path": [[3037.6654384483004, 3014.4023056770666], [3080.6154384492856, 3014.7023056770195]], "source": 1320103770, "length": 8.16886156666165}, {"destination": 1316472147, "path": [[2340.1154384430356, 3403.0023056779155], [2312.715438449686, 3383.7023056779713], [2277.315438448113, 3366.7023056782596]], "source": 1320103771, "length": 14.47303805065208}, {"destination": 1316472004, "path": [[2340.1154384430356, 3403.0023056779155], [2403.915438449644, 3447.952305677404], [2456.6154384473293, 3469.1523056782357]], "source": 1320103771, "length": 26.797366422644565}, {"destination": 1320103949, "path": [[2340.1154384430356, 3403.0023056779155], [2316.165438443818, 3493.802305676752]], "source": 1320103771, "length": 20.70027857093395}, {"destination": 475978428, "path": [[3416.7654384447133, 925.7523056778183], [3225.6654384497097, 952.9523056777123]], "source": 1317670750, "length": 36.84253191232853}, {"destination": 1317670852, "path": [[3416.7654384447133, 925.7523056778183], [3396.665438444302, 854.3523056765423]], "source": 1317670750, "length": 16.332481599323156}, {"destination": 1317671397, "path": [[3416.7654384447133, 925.7523056778183], [3487.5154384437224, 915.6523056770283], [3625.515438443472, 883.1023056767862]], "source": 1317670750, "length": 40.865299993274625}, {"destination": 1320103800, "path": [[2965.265438447773, 1873.452305677148], [2805.7154384484306, 1859.6523056775281]], "source": 1320103775, "length": 30.498072199270975}, {"destination": 1320103705, "path": [[2965.265438447773, 1873.452305677148], [3002.815438449602, 1876.7023056778244], [3098.765438444673, 1882.7023056768867]], "source": 1320103775, "length": 25.473723663081532}, {"destination": 1320103717, "path": [[2965.265438447773, 1873.452305677148], [2969.715438446485, 1809.252305676523]], "source": 1320103775, "length": 14.302834953602236}, {"destination": 1320104073, "path": [[3228.615438445104, 2556.9523056780954], [3231.365438445266, 2529.452305678248]], "source": 1320103777, "length": 6.137852847829836}, {"destination": 1320103643, "path": [[3228.615438445104, 2556.9523056780954], [3051.1154384456063, 2537.3023056776133], [3056.465438447731, 2505.202305677301], [3016.715438448614, 2498.1023056778185]], "source": 1320103777, "length": 48.973530984080284}, {"destination": 1320104009, "path": [[3228.615438445104, 2556.9523056780954], [3218.815438444267, 2653.902305677747], [3218.815438444267, 2667.002305678068]], "source": 1320103777, "length": 24.55487431634071}, {"destination": 1320103817, "path": [[1573.4654384473856, 3021.8523056770864], [1586.7654384464913, 3080.952305676732], [1594.8154384446411, 3142.852305677124]], "source": 1320103779, "length": 27.235028573258063}, {"destination": 1316471803, "path": [[1573.4654384473856, 3021.8523056770864], [1961.615438446529, 2975.7023056777853]], "source": 1320103779, "length": 74.52981660426343}, {"destination": 1320104061, "path": [[1573.4654384473856, 3021.8523056770864], [1525.7154384471505, 3027.552305677972]], "source": 1320103779, "length": 9.169013243874392}, {"destination": 1316236904, "path": [[-2656.184561551811, 1622.0523056773573], [-2530.634561551892, 1587.7023056773965]], "source": 1316237156, "length": 25.06888683051969}, {"destination": 1316236404, "path": [[-2656.184561551811, 1622.0523056773573], [-2635.8845615561677, 1664.702305676613]], "source": 1316237156, "length": 10.24027277109091}, {"destination": 1316236430, "path": [[-2656.184561551811, 1622.0523056773573], [-2686.384561556565, 1558.502305677223]], "source": 1316237156, "length": 15.255388418434965}, {"destination": 475977736, "path": [[2072.0654384476234, 652.10230567736], [2283.7154384447444, 641.1023056767107]], "source": 1317670757, "length": 40.324432434956066}, {"destination": 1317671131, "path": [[2072.0654384476234, 652.10230567736], [2067.4154384465737, 562.4023056771676]], "source": 1317670757, "length": 19.968060804681823}, {"destination": 1316236722, "path": [[-1635.5345615508554, 2480.702305676985], [-1602.284561556644, 2531.3523056773593]], "source": 1316237158, "length": 12.917848579370968}, {"destination": 1316236723, "path": [[-1635.5345615508554, 2480.702305676985], [-1774.034561556448, 2546.852305677305]], "source": 1316237158, "length": 30.170056118641327}, {"destination": 1316236926, "path": [[-1635.5345615508554, 2480.702305676985], [-1666.1345615531786, 2434.05230567717]], "source": 1316237158, "length": 11.89461785284167}, {"destination": 1316471704, "path": [[1986.4654384491587, 1493.15230567737], [1997.015438448102, 1571.7023056769362]], "source": 1320103783, "length": 17.583569532977094}, {"destination": 1320103878, "path": [[1986.4654384491587, 1493.15230567737], [1981.1654384440658, 1453.6023056770375]], "source": 1320103783, "length": 8.853460751821654}, {"destination": 1320103630, "path": [[1986.4654384491587, 1493.15230567737], [1951.5154384492917, 1502.9523056782068], [1806.6654384440994, 1523.6023056779402], [1785.2154384456753, 1514.4023056770095], [1776.5654384476193, 1464.8023056782476]], "source": 1320103783, "length": 50.63730605586392}, {"destination": 1316237213, "path": [[-3289.534561552898, 1624.4023056781743], [-3131.4345615527373, 1530.3523056768854], [-3134.134561555868, 1486.7523056771859], [-3032.1845615546295, 1443.2023056780708], [-2934.934561551472, 1423.7023056775656]], "source": 1316237160, "length": 87.0052042935997}, {"destination": 639309883, "path": [[-722.1845615532629, 1596.5023056772054], [-704.0845615549074, 1680.3523056765357]], "source": 1316237161, "length": 18.962387137978663}, {"destination": 639309882, "path": [[-722.1845615532629, 1596.5023056772054], [-765.0345615530796, 1432.7523056767432]], "source": 1316237161, "length": 37.317112600257275}, {"destination": 1316236571, "path": [[-722.1845615532629, 1596.5023056772054], [-859.6345615501377, 1638.1523056772096], [-1063.4345615514462, 1716.152305677454], [-1221.6845615569127, 1780.3523056780791]], "source": 1316237161, "length": 103.50608831142134}, {"destination": 1320104081, "path": [[3482.1154384445663, 2043.7023056771864], [3614.365438444622, 2046.4523056773487]], "source": 1320103786, "length": 25.15860598390115}, {"destination": 1320103941, "path": [[3482.1154384445663, 2043.7023056771864], [3480.265438447816, 1924.902305677989], [3480.265438447816, 1872.1023056773588], [3476.0154384443354, 1820.3523056765648]], "source": 1320103786, "length": 49.70142371771354}, {"destination": 1320104071, "path": [[3482.1154384445663, 2043.7023056771864], [3415.8654384484066, 2041.8523056768834]], "source": 1320103786, "length": 12.605695262958692}, {"destination": 1316236592, "path": [[65.01543844450453, 3591.902305677408], [100.56543844427779, 3670.552305678143]], "source": 1316237163, "length": 18.752091031632958}, {"destination": 1316236593, "path": [[65.01543844450453, 3591.902305677408], [473.0154384446905, 3477.1523056775777]], "source": 1316237163, "length": 81.68431266889692}, {"destination": 1316236380, "path": [[65.01543844450453, 3591.902305677408], [-81.78456155150116, 3629.1523056775077], [-135.4345615567354, 3617.6523056781207]], "source": 1316237163, "length": 39.6411305579737}, {"destination": 1316236889, "path": [[65.01543844450453, 3591.902305677408], [4.065438446332337, 3457.1023056777503], [-19.634561553516505, 3422.9023056777664]], "source": 1316237163, "length": 40.982084322304054}, {"destination": 1316236976, "path": [[-1617.3345615513313, 2759.5523056778147], [-1496.4845615565991, 2692.652305677612]], "source": 1316237164, "length": 27.378463475947015}, {"destination": 1316236841, "path": [[-1617.3345615513313, 2759.5523056778147], [-1649.9345615557104, 2715.352305678209]], "source": 1316237164, "length": 11.621741076340218}, {"destination": 1316236883, "path": [[-1617.3345615513313, 2759.5523056778147], [-1573.984561552777, 2818.4023056780916]], "source": 1316237164, "length": 15.467776079712658}, {"destination": 1316236481, "path": [[-1617.3345615513313, 2759.5523056778147], [-1755.4845615563863, 2832.2523056765194]], "source": 1316237164, "length": 30.849487402782295}, {"destination": 1316236809, "path": [[-1312.8345615527337, 2763.7023056765743], [-2025.0845615521484, 2889.1523056771007]], "source": 1316237165, "length": 138.30085437024186}, {"destination": 1316236650, "path": [[-1312.8345615527337, 2763.7023056765743], [-1194.8845615563641, 2707.052305677138], [-953.4845615561949, 2576.3023056768475], [-673.0845615550152, 2445.202305677796]], "source": 1316237165, "length": 140.84770055698462}, {"destination": 1316236421, "path": [[-1312.8345615527337, 2763.7023056765743], [-1292.2345615535846, 2794.9523056776115]], "source": 1316237165, "length": 7.977966125094119}, {"destination": 1316236717, "path": [[-1312.8345615527337, 2763.7023056765743], [-1351.3345615550065, 2705.202305676835]], "source": 1316237165, "length": 14.928728757834483}, {"destination": 1317671306, "path": [[3178.365438444075, 328.10230567825727], [3176.965438449031, 310.6023056780316]], "source": 1317670767, "length": 3.9004485399580817}, {"destination": 1317671197, "path": [[3178.365438444075, 328.10230567825727], [3183.3154384486306, 390.20230567743397]], "source": 1317670767, "length": 13.842354314313749}, {"destination": 1317670902, "path": [[3178.365438444075, 328.10230567825727], [2914.9154384455755, 373.30230567711453]], "source": 1317670767, "length": 51.099431746499505}, {"destination": 1320103714, "path": [[1678.215438445818, 3711.602305678241], [1822.7154384433675, 3702.4023056773103]], "source": 1320103792, "length": 27.557778993232525}, {"destination": 1320104011, "path": [[1678.215438445818, 3711.602305678241], [1645.5654384444074, 3717.30230567735]], "source": 1320103792, "length": 6.337251201455652}, {"destination": 1320103978, "path": [[1678.215438445818, 3711.602305678241], [1662.4654384429505, 3632.6023056769686]], "source": 1320103792, "length": 17.822088861858784}, {"destination": 475977737, "path": [[3193.615438448205, 518.6523056774917], [3197.815438447549, 571.4023056775375]], "source": 1317670769, "length": 11.758204551834838}, {"destination": 1317670900, "path": [[3193.615438448205, 518.6523056774917], [3187.165438447437, 438.3023056782065]], "source": 1317670769, "length": 17.911375157627887}, {"destination": 1317670956, "path": [[3193.615438448205, 518.6523056774917], [3292.415438444607, 505.1023056772408], [3411.815438447263, 469.7523056780284]], "source": 1317670769, "length": 43.05803014248826}, {"destination": 1320104112, "path": [[2549.2654384464686, 3742.4023056775723], [2511.965438444008, 3723.2023056770204]], "source": 1320103794, "length": 8.279545399387459}, {"destination": 1320103712, "path": [[2549.2654384464686, 3742.4023056775723], [2632.4154384482767, 3785.252305677389]], "source": 1320103794, "length": 18.46341616365971}, {"destination": 1320104113, "path": [[2549.2654384464686, 3742.4023056775723], [2624.6154384494957, 3587.852305678041], [2629.6654384481144, 3556.3023056770503], [2640.6154384446268, 3487.8023056776897]], "source": 1320103794, "length": 59.695056031371976}, {"destination": 1320104112, "path": [[2324.1154384479046, 3662.0023056777027], [2359.0654384477716, 3663.552305678053], [2511.965438444008, 3723.2023056770204]], "source": 1320103796, "length": 38.61802287807165}, {"destination": 1320103955, "path": [[2324.1154384479046, 3662.0023056777027], [2051.4654384484743, 3650.1523056777787]], "source": 1320103796, "length": 51.92108958605626}, {"destination": 1320103949, "path": [[2324.1154384479046, 3662.0023056777027], [2316.165438443818, 3551.152305677263], [2316.165438443818, 3493.802305676752]], "source": 1320103796, "length": 37.452256882455245}, {"destination": 475975536, "path": [[-895.4845615534168, -1712.4476943219947], [-207.08456155205113, -1701.1976943219765]], "source": 475975347, "length": 130.93313620676454}, {"destination": 1316623285, "path": [[-895.4845615534168, -1712.4476943219947], [-1097.1845615515008, -1719.7976943226222]], "source": 475975347, "length": 38.39102481901441}, {"destination": 1316623423, "path": [[-895.4845615534168, -1712.4476943219947], [-843.9345615514071, -1449.3976943228404]], "source": 475975347, "length": 59.31542700425614}, {"destination": 1320103569, "path": [[1291.7154384481933, 2860.7523056773944], [1399.0154384444509, 2821.75230567816], [1407.015438445569, 2846.9523056777743], [1456.715438443723, 2834.202305677991]], "source": 1320103798, "length": 37.84916329765784}, {"destination": 1317670985, "path": [[3252.1654384467524, 294.40230567701065], [3217.315438448054, 117.45230567683507]], "source": 1317670775, "length": 39.90632088815264}, {"destination": 1317671306, "path": [[3252.1654384467524, 294.40230567701065], [3176.965438449031, 310.6023056780316]], "source": 1317670775, "length": 14.747723604404776}, {"destination": 1317670913, "path": [[3252.1654384467524, 294.40230567701065], [3354.965438447266, 272.2523056775117]], "source": 1317670775, "length": 20.16098689920379}, {"destination": 1320103834, "path": [[2805.7154384484306, 1859.6523056775281], [2712.3154384440795, 1846.5523056772072]], "source": 1320103800, "length": 18.000218572967047}, {"destination": 1320103943, "path": [[2805.7154384484306, 1859.6523056775281], [2801.765438448456, 1952.352305677252]], "source": 1320103800, "length": 20.629624484339853}, {"destination": 1320103775, "path": [[2805.7154384484306, 1859.6523056775281], [2965.265438447773, 1873.452305677148]], "source": 1320103800, "length": 30.498072199270975}, {"destination": 1324294696, "path": [[3865.015438449859, 4922.002305677964], [3767.215438443827, 4922.852305677239], [3697.5154384464304, 4906.802305677971]], "source": 1324294804, "length": 32.330369392772596}, {"destination": 1324294917, "path": [[3865.015438449859, 4922.002305677964], [3863.7654384459097, 4941.202305676739]], "source": 1324294804, "length": 4.277365382451336}, {"destination": 1324295022, "path": [[3865.015438449859, 4922.002305677964], [3882.865438448846, 4646.802305677155]], "source": 1324294804, "length": 61.2958761246912}, {"destination": 1316471889, "path": [[2678.565438444025, 2806.5023056775826], [2678.365438448793, 2835.052305677266]], "source": 1320103802, "length": 6.3486184773199135}, {"destination": 1320103619, "path": [[2678.565438444025, 2806.5023056775826], [2514.665438447139, 2807.952305676764]], "source": 1320103802, "length": 31.17252292850803}, {"destination": 1320103815, "path": [[2678.565438444025, 2806.5023056775826], [2678.6654384451936, 2728.5523056779225]], "source": 1320103802, "length": 17.335272286165598}, {"destination": 1320103992, "path": [[3056.465438447731, 2849.1523056768388], [3220.0654384482164, 2848.252305676979]], "source": 1320103803, "length": 31.114789151771394}, {"destination": 4875052074, "path": [[3056.465438447731, 2849.1523056768388], [3048.415438449581, 2750.6023056780296], [3050.2154384492997, 2685.9023056768906], [3048.4654384466126, 2649.55230567665]], "source": 1320103803, "length": 44.45328043868335}, {"destination": 1320104054, "path": [[3056.465438447731, 2849.1523056768388], [3040.3654384443257, 2849.2523056780074], [2908.8654384494816, 2859.4523056781895], [2855.2654384483844, 2862.7523056776736]], "source": 1320103803, "length": 38.39531056416574}, {"destination": 1316236688, "path": [[-1110.6345615559121, 1666.9023056774536], [-1256.5845615526428, 1709.2523056767561]], "source": 1316237180, "length": 29.310613199231522}, {"destination": 1316236338, "path": [[-1110.6345615559121, 1666.9023056774536], [-1162.3845615531536, 1590.9523056780727]], "source": 1316237180, "length": 19.548632440935307}, {"destination": 1316237228, "path": [[-1110.6345615559121, 1666.9023056774536], [-854.2345615509817, 1555.6023056770841]], "source": 1316237180, "length": 54.68412740797674}, {"destination": 1316236957, "path": [[-1110.6345615559121, 1666.9023056774536], [-1047.3845615521782, 1759.7023056765693], [-1029.5345615531915, 1787.0523056782163]], "source": 1316237180, "length": 30.852846768854363}, {"destination": 1316237216, "path": [[-1912.484561550798, 2415.502305677109], [-1938.2345615568397, 2371.4523056774797]], "source": 1316237182, "length": 10.951780412118403}, {"destination": 1316237085, "path": [[-1912.484561550798, 2415.502305677109], [-1999.5345615555493, 2452.402305676671]], "source": 1316237182, "length": 18.47756680777469}, {"destination": 1316236599, "path": [[-1912.484561550798, 2415.502305677109], [-1892.2845615563233, 2450.1523056770225], [-1884.3845615563737, 2464.202305677787]], "source": 1316237182, "length": 12.07780561802285}, {"destination": 1316471890, "path": [[1648.2654384475381, 2642.7023056765365], [1634.9154384442954, 2585.502305677778]], "source": 1320103807, "length": 12.971807354428552}, {"destination": 1320103925, "path": [[1648.2654384475381, 2642.7023056765365], [1427.065438448949, 2702.1023056779113]], "source": 1320103807, "length": 44.09359922088231}, {"destination": 1316471709, "path": [[1648.2654384475381, 2642.7023056765365], [1653.6654384466942, 2665.8023056782554]], "source": 1320103807, "length": 5.2395414550086015}, {"destination": 1320103938, "path": [[2525.3654384442825, 2412.4023056781853], [2479.7654384443035, 2415.752305678254], [2435.415438448274, 2417.002305676874]], "source": 1320103809, "length": 17.143196822559112}, {"destination": 1320103726, "path": [[2525.3654384442825, 2412.4023056781853], [2525.3654384442825, 2346.9523056771636], [2690.665438443318, 2347.752305677631]], "source": 1320103809, "length": 45.9930289294489}, {"destination": 1320104119, "path": [[2525.3654384442825, 2412.4023056781853], [2525.3654384442825, 2502.9023056770684]], "source": 1320103809, "length": 20.126311600216653}, {"destination": 1316237064, "path": [[582.4654384483097, 3851.852305677639], [605.9154384487897, 3951.152305678107]], "source": 1316237187, "length": 22.529120165204386}, {"destination": 1316236331, "path": [[582.4654384483097, 3851.852305677639], [253.5154384446514, 3966.302305677516]], "source": 1316237187, "length": 67.541339272923}, {"destination": 1316237104, "path": [[-1230.3845615520004, 3146.802305677099], [-1274.784561552167, 3069.452305677345]], "source": 1316237188, "length": 19.162852770975267}, {"destination": 1316236473, "path": [[-1230.3845615520004, 3146.802305677099], [-1178.5845615506219, 3237.0523056766133]], "source": 1316237188, "length": 22.35805009659081}, {"destination": 1316236359, "path": [[-1230.3845615520004, 3146.802305677099], [-1127.8345615508556, 3108.452305676579], [-1090.2845615561318, 3101.5523056776574]], "source": 1316237188, "length": 28.59057821188469}, {"destination": 1316198801, "path": [[-2419.284561554491, 1319.5023056766786], [-2327.484561554627, 1289.652305677791]], "source": 1316237189, "length": 18.677445484245077}, {"destination": 1316237234, "path": [[-2419.284561554491, 1319.5023056766786], [-2490.3845615540376, 1158.752305677524]], "source": 1316237189, "length": 38.22091534771268}, {"destination": 482732999, "path": [[-2419.284561554491, 1319.5023056766786], [-2599.234561550645, 1378.0023056781943]], "source": 1316237189, "length": 36.611858919418324}, {"destination": 599407018, "path": [[-1529.0345615568413, -536.1476943228638], [-1465.184561553201, -550.3976943224131]], "source": 481390470, "length": 12.548726150357849}, {"destination": 385113562, "path": [[-1529.0345615568413, -536.1476943228638], [-1367.1345615549058, -195.89769432215576], [-1223.084561551957, 71.45230567751071]], "source": 481390470, "length": 147.15547895728557}, {"destination": 4273147800, "path": [[426.7154384436367, -1282.047694322941], [475.26543844611524, -1296.5476943218591]], "source": 4273147783, "length": 9.77973196098633}, {"destination": 4273147781, "path": [[426.7154384436367, -1282.047694322941], [434.3654384442175, -1257.747694323186], [460.56543844485986, -1224.6976943224297]], "source": 4273147783, "length": 14.475742742180236}, {"destination": 4273147782, "path": [[426.7154384436367, -1282.047694322941], [420.61543844340576, -1301.3476943228852]], "source": 4273147783, "length": 4.444762973397698}, {"destination": 4273147800, "path": [[482.76543844849584, -1298.7476943226993], [475.26543844611524, -1296.5476943218591]], "source": 4273147784, "length": 1.5130218144296346}, {"destination": 4273147794, "path": [[482.76543844849584, -1298.7476943226993], [499.5654384458703, -1310.047694323302], [503.5154384458451, -1323.8476943229216], [500.56543844334556, -1349.2476943230968], [497.3654384485826, -1359.147694323326]], "source": 4273147784, "length": 15.187195546530255}, {"destination": 4273219748, "path": [[482.76543844849584, -1298.7476943226993], [499.2654384494699, -1299.747694321951], [519.6654384462818, -1296.5476943218591], [535.8154384467184, -1297.4976943223028], [552.6154384440929, -1303.4976943231413]], "source": 4273147784, "length": 13.632437975136574}, {"destination": 1404036954, "path": [[832.7654384459038, 6955.052305677611], [821.6154384470542, 6831.202305678019]], "source": 1404037100, "length": 27.624579493118958}, {"destination": 1404037062, "path": [[832.7654384459038, 6955.052305677611], [1388.0654384479385, 6932.252305677622]], "source": 1404037100, "length": 105.73932120272268}, {"destination": 1404037006, "path": [[832.7654384459038, 6955.052305677611], [838.3654384473971, 7017.152305676788]], "source": 1404037100, "length": 13.851466694122319}, {"destination": 1316236784, "path": [[-2135.5845615502744, 2403.9523056771372], [-2230.634561556144, 2452.702305676624]], "source": 1316237194, "length": 21.07844537873433}, {"destination": 1316236763, "path": [[-2135.5845615502744, 2403.9523056771372], [-1969.1345615555633, 2318.5023056768728]], "source": 1316237194, "length": 36.92146239434764}, {"destination": 1316236639, "path": [[-2135.5845615502744, 2403.9523056771372], [-2080.0345615512583, 2477.6523056768697], [-2058.88456155634, 2504.352305678026]], "source": 1316237194, "length": 26.670708973461565}, {"destination": 1317671140, "path": [[3346.565438448579, 1268.9523056774733], [3346.065438449841, 1248.2523056771556], [3242.315438448884, 1252.602305678252]], "source": 1317670796, "length": 24.358907500072}, {"destination": 1317671389, "path": [[3346.565438448579, 1268.9523056774733], [3434.6154384437, 1273.5023056773543], [3509.365438446821, 1281.9023056778178]], "source": 1317670796, "length": 31.113736823167656}, {"destination": 1317670831, "path": [[3346.565438448579, 1268.9523056774733], [3348.3154384441605, 1342.25230567786]], "source": 1317670796, "length": 16.304314033204438}, {"destination": 4273147793, "path": [[477.81543844394037, -1390.947694321909], [464.6154384460033, -1389.8476943232652], [457.3654384429915, -1376.5976943229675], [456.36543844551625, -1366.1476943234163], [463.96543844906546, -1344.1476943221176]], "source": 4273147789, "length": 13.203811502661098}, {"destination": 4273147794, "path": [[477.81543844394037, -1390.947694321909], [490.31543844790804, -1380.7976943223111], [497.3654384485826, -1359.147694323326]], "source": 4273147789, "length": 8.276009518392563}, {"destination": 4273147810, "path": [[477.81543844394037, -1390.947694321909], [472.1154384483839, -1407.9476943233972], [465.81543844581574, -1421.6476943218481], [457.2654384489283, -1468.6476943222006], [452.66543844491025, -1489.847694323032], [478.91543844968965, -1493.9976943217914], [474.0654384463028, -1516.0476943218982]], "source": 4273147789, "length": 32.646836962095435}, {"destination": 1317670913, "path": [[3303.3654384482247, 69.25230567667029], [3354.965438447266, 272.2523056775117]], "source": 1317670798, "length": 46.19933090932258}, {"destination": 1317671035, "path": [[3303.3654384482247, 69.25230567667029], [3273.6654384493136, -47.64769432341609]], "source": 1317670798, "length": 26.603950435547414}, {"destination": 1317671148, "path": [[3303.3654384482247, 69.25230567667029], [3233.4154384443536, 83.05230567806632]], "source": 1317670798, "length": 13.651569889855685}, {"destination": 1316236439, "path": [[-2120.2345615520812, 2872.2023056779735], [-2056.3845615555465, 2836.0023056777095]], "source": 1316237199, "length": 14.569418810613492}, {"destination": 4273147800, "path": [[463.96543844906546, -1344.1476943221176], [467.2154384479654, -1334.1476943224961], [471.81543844487805, -1321.7476943232498], [475.46543844845246, -1309.8976943233254], [475.26543844611524, -1296.5476943218591]], "source": 4273147793, "length": 10.895586180867864}, {"destination": 4273147794, "path": [[463.96543844906546, -1344.1476943221176], [478.1154384474462, -1348.247694322069], [488.3154384458521, -1351.8976943220905], [497.3654384485826, -1359.147694323326]], "source": 4273147793, "length": 7.301590996555926}, {"destination": 4273147789, "path": [[463.96543844906546, -1344.1476943221176], [456.36543844551625, -1366.1476943234163], [457.3654384429915, -1376.5976943229675], [464.6154384460033, -1389.8476943232652], [477.81543844394037, -1390.947694321909]], "source": 4273147793, "length": 13.203811502661097}, {"destination": 4273147784, "path": [[497.3654384485826, -1359.147694323326], [500.56543844334556, -1349.2476943230968], [503.5154384458451, -1323.8476943229216], [499.5654384458703, -1310.047694323302], [482.76543844849584, -1298.7476943226993]], "source": 4273147794, "length": 15.187195546530255}, {"destination": 4273147793, "path": [[497.3654384485826, -1359.147694323326], [488.3154384458521, -1351.8976943220905], [478.1154384474462, -1348.247694322069], [463.96543844906546, -1344.1476943221176]], "source": 4273147794, "length": 7.301590996555926}, {"destination": 4273147789, "path": [[497.3654384485826, -1359.147694323326], [490.31543844790804, -1380.7976943223111], [477.81543844394037, -1390.947694321909]], "source": 4273147794, "length": 8.276009518392563}, {"destination": 1317670918, "path": [[1001.9654384478827, 888.1523056771812], [1101.8654384500337, 874.1523056770006]], "source": 1317670803, "length": 19.252006807141587}, {"destination": 639308683, "path": [[-2569.784561551103, 3033.9023056775713], [-2762.2345615512245, 2746.552305676886]], "source": 1316237204, "length": 73.64309807315448}, {"destination": 1316236462, "path": [[-2569.784561551103, 3033.9023056775713], [-2415.7345615520853, 2976.5523056770603]], "source": 1316237204, "length": 31.95349516234712}, {"destination": 1316237190, "path": [[-2569.784561551103, 3033.9023056775713], [-2539.334561554085, 3079.352305677574]], "source": 1316237204, "length": 11.648852183109796}, {"destination": 1317670940, "path": [[2305.1654384431686, 15.002305676858896], [2388.515438447314, 11.902305677935487]], "source": 1317670805, "length": 15.865866627476965}, {"destination": 1317671269, "path": [[2305.1654384431686, 15.002305676858896], [2195.7654384436864, 19.10230567681026]], "source": 1317670805, "length": 20.82464479392834}, {"destination": 1317671309, "path": [[2305.1654384431686, 15.002305676858896], [2305.365438445506, -59.14769432280309], [2305.365438445506, -118.74769432296262], [2321.465438448911, -212.7976943224752]], "source": 1317670805, "length": 50.883522685107366}, {"destination": 1316236653, "path": [[-2857.8345615528633, 1587.7023056773965], [-2790.78456155446, 1564.7523056774303], [-2700.4345615537773, 1528.9023056777041]], "source": 1316237206, "length": 32.677007315635166}, {"destination": 1316236987, "path": [[-1680.6345615520968, 2411.9023056776714], [-1720.0345615506762, 2351.902305678166]], "source": 1316237207, "length": 15.303462085694155}, {"destination": 1316236926, "path": [[-1680.6345615520968, 2411.9023056776714], [-1666.1345615531786, 2434.05230567717]], "source": 1316237207, "length": 5.64526663922}, {"destination": 1316237030, "path": [[-1680.6345615520968, 2411.9023056776714], [-1559.684561556196, 2360.652305677391], [-1420.1845615531283, 2319.402305676732]], "source": 1316237207, "length": 53.74275589151439}, {"destination": 4273147784, "path": [[475.26543844611524, -1296.5476943218591], [482.76543844849584, -1298.7476943226993]], "source": 4273147800, "length": 1.5130218144296346}, {"destination": 4273147793, "path": [[475.26543844611524, -1296.5476943218591], [475.46543844845246, -1309.8976943233254], [471.81543844487805, -1321.7476943232498], [467.2154384479654, -1334.1476943224961], [463.96543844906546, -1344.1476943221176]], "source": 4273147800, "length": 10.895586180867864}, {"destination": 4273147783, "path": [[475.26543844611524, -1296.5476943218591], [426.7154384436367, -1282.047694322941]], "source": 4273147800, "length": 9.77973196098633}, {"destination": 1316237128, "path": [[-1179.184561550528, 2135.052305677121], [-1184.1345615550836, 2195.5023056765554], [-1092.5345615504511, 2382.6523056769133]], "source": 1316237209, "length": 58.59515732362653}, {"destination": 1316236524, "path": [[-1179.184561550528, 2135.052305677121], [-1191.2345615527897, 2123.05230567722], [-1223.3845615554628, 2058.802305677787], [-1235.7345615541249, 2016.652305677269]], "source": 1316237209, "length": 28.72400219134213}, {"destination": 1316236590, "path": [[-1179.184561550528, 2135.052305677121], [-1159.034561553085, 2155.1523056775322], [-1125.0345615536617, 2160.602305677273], [-1073.1845615552515, 2168.9023056765677], [-985.584561554731, 2142.5023056771406]], "source": 1316237209, "length": 40.161836885446476}, {"destination": 1316236744, "path": [[-1903.9345615539105, 3905.6523056775204], [-1870.7845615537622, 3980.7523056776263]], "source": 1316237210, "length": 17.85190057890449}, {"destination": 1316236361, "path": [[-1903.9345615539105, 3905.6523056775204], [-2018.3345615549797, 3943.4023056781343]], "source": 1316237210, "length": 23.320903865156012}, {"destination": 1316236724, "path": [[-1903.9345615539105, 3905.6523056775204], [-1933.6845615569587, 3838.3523056779723]], "source": 1316237210, "length": 16.0004933143431}, {"destination": 1316236367, "path": [[-1903.9345615539105, 3905.6523056775204], [-1739.3845615529813, 3860.8023056774246]], "source": 1316237210, "length": 32.84628757053182}, {"destination": 476554611, "path": [[503.2154384494447, 1289.152305677277], [702.4654384437667, 1299.4523056768514]], "source": 93310875, "length": 37.96182921830483}, {"destination": 483099888, "path": [[-659.5845615535723, 3081.4023056766614], [-704.8845615500454, 3106.552305677468]], "source": 1316237212, "length": 10.271908461299741}, {"destination": 639308705, "path": [[-659.5845615535723, 3081.4023056766614], [-390.73456155591657, 2932.052305677502]], "source": 1316237212, "length": 60.971611452130354}, {"destination": 1316236924, "path": [[-659.5845615535723, 3081.4023056766614], [-773.7845615523042, 2945.6023056777526], [-855.4845615549311, 2852.0023056781697]], "source": 1316237212, "length": 63.17456857595489}, {"destination": 1316237160, "path": [[-2934.934561551472, 1423.7023056775656], [-3032.1845615546295, 1443.2023056780708], [-3134.134561555868, 1486.7523056771859], [-3131.4345615527373, 1530.3523056768854], [-3289.534561552898, 1624.4023056781743]], "source": 1316237213, "length": 87.00520429359972}, {"destination": 1316236506, "path": [[-2934.934561551472, 1423.7023056775656], [-2889.38456155563, 1502.8023056782304]], "source": 1316237213, "length": 19.608246454057273}, {"destination": 1316236411, "path": [[-2934.934561551472, 1423.7023056775656], [-2973.0845615532075, 1357.402305677269]], "source": 1316237213, "length": 16.432881790131223}, {"destination": 1316236763, "path": [[-1938.2345615568397, 2371.4523056774797], [-1969.1345615555633, 2318.5023056768728]], "source": 1316237216, "length": 13.160119301902421}, {"destination": 1316237182, "path": [[-1938.2345615568397, 2371.4523056774797], [-1912.484561550798, 2415.502305677109]], "source": 1316237216, "length": 10.951780412118403}, {"destination": 1316236887, "path": [[-1938.2345615568397, 2371.4523056774797], [-1751.2845615570427, 2304.2523056773234]], "source": 1316237216, "length": 38.567511978392155}, {"destination": 1315785531, "path": [[-4234.08456155272, -3922.8976943217476], [-4264.634561550906, -3982.8976943230286]], "source": 75352048, "length": 14.553016507140024}, {"destination": 874312382, "path": [[-4234.08456155272, -3922.8976943217476], [-4178.734561556041, -3915.9476943222417], [-4115.534561556444, -3915.7976943222648], [-3744.1345615505384, -3977.8976943232183]], "source": 75352048, "length": 94.61707544617511}, {"destination": 1317671161, "path": [[969.5654384458408, 278.10230567659744], [991.2154384466021, 268.8523056768588], [1095.8154384468344, 245.90230567689275]], "source": 1317670818, "length": 25.13950243123094}, {"destination": 1317671058, "path": [[969.5654384458408, 278.10230567659744], [948.3154384497539, 174.80230567734623]], "source": 1317670818, "length": 23.32554099604496}, {"destination": 1317670827, "path": [[969.5654384458408, 278.10230567659744], [953.6654384447729, 284.9023056779032], [884.5154384431453, 287.002305677575]], "source": 1317670818, "length": 16.53930415268986}, {"destination": 1316236747, "path": [[-749.6345615507494, 2319.402305676732], [-655.7845615517977, 2278.1023056772656], [-506.1845615514926, 2235.602305677986]], "source": 1316237219, "length": 50.05271332906145}, {"destination": 1317671280, "path": [[1743.9154384462086, 305.5023056770523], [1744.9154384436838, 360.60230567791507]], "source": 1317670820, "length": 12.255131051756548}, {"destination": 1317670953, "path": [[1743.9154384462086, 305.5023056770523], [1865.6154384473211, 298.65230567693857], [1967.3154384491909, 291.7523056780169]], "source": 1317670820, "length": 42.595225863756355}, {"destination": 1317671230, "path": [[1743.9154384462086, 305.5023056770523], [1742.26543844469, 218.40230567704566], [1889.765438448876, 216.102305676813], [1966.6654384451476, 211.502305678124]], "source": 1317670820, "length": 62.0879352627191}, {"destination": 639308680, "path": [[-1342.734561553982, 2036.602305677704], [-1273.5345615553229, 2024.7523056777795], [-1239.4845615517625, 2003.7523056775085]], "source": 1316237221, "length": 21.406610654711784}, {"destination": 1316236392, "path": [[-1342.734561553982, 2036.602305677704], [-1357.534561556406, 1999.1523056770434], [-1401.784561551267, 2017.3023056777595]], "source": 1316237221, "length": 18.124286046263688}, {"destination": 1316236479, "path": [[-1342.734561553982, 2036.602305677704], [-1331.0345615522579, 2061.8523056779027], [-1286.0845615563221, 2193.252305676907]], "source": 1316237221, "length": 36.486320460570276}, {"destination": 1317671274, "path": [[1342.365438446791, 925.0523056767435], [1455.6654384492163, 913.8023056767253]], "source": 1317670822, "length": 21.69144783952843}, {"destination": 1317671325, "path": [[1342.365438446791, 925.0523056767435], [1334.56543844801, 892.7523056776465], [1326.51543844986, 771.1523056777025], [1361.3654384485585, 759.7023056771235], [1360.8654384498209, 686.9523056778348]], "source": 1317670822, "length": 57.7010135405842}, {"destination": 1317671406, "path": [[1342.365438446791, 925.0523056767435], [1321.1654384477356, 927.1523056781916]], "source": 1317670822, "length": 4.057865097991023}, {"destination": 267195121, "path": [[-3894.4345615519183, -5407.997694321764], [-4085.634561555196, -5766.597694321973]], "source": 1887913969, "length": 87.64540687789422}, {"destination": 477620748, "path": [[-3894.4345615519183, -5407.997694321764], [-3864.334561555438, -5417.747694322017]], "source": 1887913969, "length": 6.120943117490254}, {"destination": 1320104005, "path": [[1205.8654384432543, 2645.1023056779377], [1401.8154384487502, 2589.452305677753]], "source": 1320103848, "length": 39.26747981366871}, {"destination": 1317670969, "path": [[3590.1654384460358, 695.4523056776907], [3646.4654384431583, 679.4023056766463], [3651.86543844942, 718.4023056776567], [3776.3654384477263, 690.7023056772488]], "source": 1317670825, "length": 44.48526089688082}, {"destination": 1317671397, "path": [[3590.1654384460358, 695.4523056776907], [3622.3654384457404, 814.752305677402], [3625.515438443472, 883.1023056767862]], "source": 1317670825, "length": 42.44113131961301}, {"destination": 1317671033, "path": [[3590.1654384460358, 695.4523056776907], [3509.7154384473583, 727.602305676811], [3488.215438444797, 647.3023056781102], [3399.5654384497698, 666.4023056774937]], "source": 1317670825, "length": 52.59303273261951}, {"destination": 1317671138, "path": [[884.5154384431453, 287.002305677575], [886.6154384463698, 317.00230567821563], [814.2154384458422, 342.252305676638], [803.4654384445616, 431.7023056774616]], "source": 1317670827, "length": 41.55107037412811}, {"destination": 1317670893, "path": [[884.5154384431453, 287.002305677575], [881.2654384442453, 241.3523056770117], [900.0154384466441, 225.25230567715937], [897.3654384476504, 112.90230567695403], [940.2654384444986, 106.00230567803237], [932.5154384498546, 45.40230567684489]], "source": 1317670827, "length": 62.07329414163489}, {"destination": 1317670818, "path": [[884.5154384431453, 287.002305677575], [953.6654384447729, 284.9023056779032], [969.5654384458408, 278.10230567659744]], "source": 1317670827, "length": 16.53930415268986}, {"destination": 1316237180, "path": [[-854.2345615509817, 1555.6023056770841], [-1110.6345615559121, 1666.9023056774536]], "source": 1316237228, "length": 54.68412740797674}, {"destination": 1316236389, "path": [[296.4154384486051, 4108.5523056771935], [159.6154384486681, 4168.152305677353]], "source": 1316237229, "length": 29.19939811935623}, {"destination": 1316236665, "path": [[-1191.3345615539583, 2948.152305677354], [-1224.4845615541067, 2897.8523056775175]], "source": 1316237230, "length": 12.840521687428133}, {"destination": 1316236706, "path": [[-1191.3345615539583, 2948.152305677354], [-1150.334561550892, 3010.4023056782835]], "source": 1316237230, "length": 15.889139945714449}, {"destination": 1316236700, "path": [[-1191.3345615539583, 2948.152305677354], [-1082.2345615508766, 2902.002305678053], [-706.7345615539011, 2704.752305676905]], "source": 1316237230, "length": 106.95897550819558}, {"destination": 1317670796, "path": [[3348.3154384441605, 1342.25230567786], [3346.565438448579, 1268.9523056774733]], "source": 1317670831, "length": 16.304314033204438}, {"destination": 1317671355, "path": [[3348.3154384441605, 1342.25230567786], [3437.265438449799, 1353.752305677247], [3494.0654384456593, 1364.60230567792]], "source": 1317670831, "length": 28.177771040388357}, {"destination": 1317671132, "path": [[3348.3154384441605, 1342.25230567786], [3348.7654384458665, 1360.6523056779452], [3233.9654384472283, 1360.6523056779452]], "source": 1317670831, "length": 25.925507544768987}, {"destination": 4273147819, "path": [[592.2154384450096, -1638.4976943228935], [582.2154384489409, -1635.447694322778], [527.0154384433567, -1631.747694322172], [529.1654384436129, -1590.697694322074]], "source": 4273147824, "length": 21.68513623089141}, {"destination": 4273147828, "path": [[592.2154384450096, -1638.4976943228935], [599.8154384485588, -1633.4476943224986], [609.1654384476897, -1626.697694321777], [621.6654384445519, -1624.1476943221755], [638.8654384466008, -1628.5976943226642], [652.7154384485812, -1640.9976943219108]], "source": 4273147824, "length": 13.83324274150384}, {"destination": 4273147828, "path": [[592.2154384450096, -1638.4976943228935], [610.1654384451649, -1643.9976943232182], [652.7154384485812, -1640.9976943219108]], "source": 4273147824, "length": 11.746538859249924}, {"destination": 1316694050, "path": [[1535.5154384479874, 19.552305676739934], [1433.765438449086, 21.102305677089817], [1207.665438442973, 2.402305677051686]], "source": 1317670833, "length": 62.551300283510884}, {"destination": 1316694003, "path": [[1535.5154384479874, 19.552305676739934], [1623.3654384478768, 18.202305676950914]], "source": 1317670833, "length": 16.70917544261824}, {"destination": 1317670917, "path": [[1535.5154384479874, 19.552305676739934], [1527.6654384450694, 227.55230567739204]], "source": 1317670833, "length": 46.281193533988855}, {"destination": 1316237189, "path": [[-2490.3845615540376, 1158.752305677524], [-2419.284561554491, 1319.5023056766786]], "source": 1316237234, "length": 38.22091534771268}, {"destination": 1316236784, "path": [[-2177.484561556753, 2552.8523056781437], [-2230.634561556144, 2452.702305676624]], "source": 1316237235, "length": 24.459096624818233}, {"destination": 1316236639, "path": [[-2177.484561556753, 2552.8523056781437], [-2058.88456155634, 2504.352305678026]], "source": 1316237235, "length": 25.001746664885104}, {"destination": 1316236374, "path": [[-2177.484561556753, 2552.8523056781437], [-2143.78456155373, 2616.3023056771094]], "source": 1316237235, "length": 15.498045729173098}, {"destination": 1316236871, "path": [[-2177.484561556753, 2552.8523056781437], [-2337.4845615506956, 2615.302305677858], [-2450.8845615542896, 2665.202305676573]], "source": 1316237235, "length": 57.70296206112867}, {"destination": 4273147824, "path": [[652.7154384485812, -1640.9976943219108], [638.8654384466008, -1628.5976943226642], [621.6654384445519, -1624.1476943221755], [609.1654384476897, -1626.697694321777], [599.8154384485588, -1633.4476943224986], [592.2154384450096, -1638.4976943228935]], "source": 4273147828, "length": 13.83324274150384}, {"destination": 4273147824, "path": [[652.7154384485812, -1640.9976943219108], [610.1654384451649, -1643.9976943232182], [592.2154384450096, -1638.4976943228935]], "source": 4273147828, "length": 11.746538859249924}, {"destination": 4273219790, "path": [[652.7154384485812, -1640.9976943219108], [671.865438448549, -1640.3476943231965]], "source": 4273147828, "length": 3.6435917054740456}, {"destination": 1316236768, "path": [[-822.034561551277, 2248.3023056771854], [-903.8845615521041, 2285.6523056766773]], "source": 1316237237, "length": 17.64369322287643}, {"destination": 714084514, "path": [[5466.765438448818, 8095.952305676946], [5513.46543844744, 8175.152305677003]], "source": 482734006, "length": 19.726477154196722}, {"destination": 1317671288, "path": [[1377.4654384448581, 998.2523056777381], [1374.7654384488328, 1106.0523056780626]], "source": 1317670839, "length": 23.97904393720062}, {"destination": 1317671305, "path": [[1377.4654384448581, 998.2523056777381], [1262.1154384433453, 998.2523056777381], [1262.1154384433453, 973.0023056775394], [1213.8654384443726, 970.7023056773068]], "source": 1317670839, "length": 36.74313119365175}, {"destination": 1317671099, "path": [[1377.4654384448581, 998.2523056777381], [1503.5154384435145, 995.9523056775055]], "source": 1317670839, "length": 23.977164569222154}, {"destination": 4573378105, "path": [[5238.315438447216, 7507.5023056765385], [5339.165438449811, 7784.252305677697]], "source": 476562079, "length": 64.46640128730138}, {"destination": 476561865, "path": [[5238.315438447216, 7507.5023056765385], [5282.515438445045, 7481.602305677626]], "source": 476562079, "length": 10.190424290900015}, {"destination": 1317671217, "path": [[1975.665438443741, 459.0023056767478], [1979.8654384430847, 532.5523056782799]], "source": 1317670845, "length": 16.376293239257}, {"destination": 1317671210, "path": [[1975.665438443741, 459.0023056767478], [1973.3654384452848, 417.9023056778419]], "source": 1317670845, "length": 9.150318021158022}, {"destination": 1317671107, "path": [[1975.665438443741, 459.0023056767478], [2061.715438443912, 461.3523056775648]], "source": 1317670845, "length": 16.3729907904137}, {"destination": 1317671076, "path": [[1975.665438443741, 459.0023056767478], [1825.715438450004, 466.1023056780067]], "source": 1317670845, "length": 28.559948482525986}, {"destination": 1317670896, "path": [[1592.7654384455536, 415.4023056770484], [1596.9654384448972, 360.4523056779385]], "source": 1317670846, "length": 12.246302765545297}, {"destination": 1317670873, "path": [[1592.7654384455536, 415.4023056770484], [1825.5654384446984, 413.3523056779609]], "source": 1317670846, "length": 44.274632681928715}, {"destination": 1317671121, "path": [[1592.7654384455536, 415.4023056770484], [1588.8654384497158, 465.95230567803014]], "source": 1317670846, "length": 11.266560146547539}, {"destination": 1316694056, "path": [[1982.7154384444157, 582.9023056769245], [1986.8654384467277, 656.5023056772645]], "source": 1317670848, "length": 16.386746603159196}, {"destination": 1317671217, "path": [[1982.7154384444157, 582.9023056769245], [1979.8654384430847, 532.5523056782799]], "source": 1317670848, "length": 11.21042347366399}, {"destination": 1317671171, "path": [[1982.7154384444157, 582.9023056769245], [1938.0654384448803, 583.1023056774853], [1826.115438447573, 585.3523056771337]], "source": 1317670848, "length": 29.786889850705826}, {"destination": 1890811961, "path": [[-8726.234561549973, -1757.6976943232125], [-8746.534561552722, -1755.2476943230033], [-8770.684561554277, -1751.7976943217661], [-8805.534561552975, -1750.647694322538], [-8833.684561551536, -1751.7976943217661], [-8867.43456155159, -1756.7976943233532]], "source": 1890818619, "length": 27.06081954133738}, {"destination": 1890818655, "path": [[-8726.234561549973, -1757.6976943232125], [-8730.434561556422, -1795.397694323242], [-8738.034561552866, -1846.8976943228909]], "source": 1890818619, "length": 19.965938865744906}, {"destination": 476678903, "path": [[-8726.234561549973, -1757.6976943232125], [-8694.234561552605, -1756.3976943222315], [-8660.684561554888, -1748.3476943223054], [-8629.834561553196, -1741.4976943221916], [-8614.83456155554, -1740.4976943229399]], "source": 1890818619, "length": 21.64101766174923}, {"destination": 1317671081, "path": [[3396.665438444302, 854.3523056765423], [3525.7654384466264, 823.9023056777484]], "source": 1317670852, "length": 25.46836500743212}, {"destination": 1317670750, "path": [[3396.665438444302, 854.3523056765423], [3416.7654384447133, 925.7523056778183]], "source": 1317670852, "length": 16.332481599323156}, {"destination": 1317671033, "path": [[3396.665438444302, 854.3523056765423], [3383.615438444565, 807.852305676704], [3418.5154384474004, 768.8523056774699], [3399.5654384497698, 666.4023056774937]], "source": 1317670852, "length": 44.62374996237019}, {"destination": 1320104000, "path": [[3224.015438448191, 3341.5023056768687], [3048.415438449581, 3326.35230567746]], "source": 1320103877, "length": 33.56595220713779}, {"destination": 1320103999, "path": [[3224.015438448191, 3341.5023056768687], [3220.5154384499224, 3419.4023056777214]], "source": 1320103877, "length": 17.336831938191082}, {"destination": 476556039, "path": [[3224.015438448191, 3341.5023056768687], [3227.4154384452913, 3266.7523056773007]], "source": 1320103877, "length": 16.636198639744507}, {"destination": 1317670890, "path": [[2432.4654384457745, -150.39769432334538], [2429.565438447412, -181.14769432209243]], "source": 1317670854, "length": 6.861671388280949}, {"destination": 1317670971, "path": [[2432.4654384457745, -150.39769432334538], [2565.5654384451054, -157.7476943221967]], "source": 1317670854, "length": 25.364288674533714}, {"destination": 1317671243, "path": [[2432.4654384457745, -150.39769432334538], [2439.11543844888, -79.74769432195217]], "source": 1317670854, "length": 15.762998637624278}, {"destination": 1317671372, "path": [[3437.265438449799, 1186.3023056779552], [3729.6154384449665, 1181.7523056780742], [3956.16543844568, 1134.3023056777924]], "source": 1317670856, "length": 99.96512264960603}, {"destination": 1320103720, "path": [[3980.6654384477724, 2059.602305678254], [3906.715438446895, 2039.5523056766506], [3853.065438448766, 2007.4523056781145]], "source": 1320103881, "length": 27.206308362145215}, {"destination": 602393484, "path": [[3980.6654384477724, 2059.602305678254], [4016.6154384451147, 1958.7023056768517], [4041.1654384442386, 1880.2523056766772], [4049.9654384476003, 1833.7523056768391]], "source": 1320103881, "length": 51.993792484730925}, {"destination": 1320104095, "path": [[3980.6654384477724, 2059.602305678254], [3958.6654384464737, 2125.1023056780837]], "source": 1320103881, "length": 15.15551330956833}, {"destination": 1320103999, "path": [[3069.865438448005, 3406.6523056779374], [3220.5154384499224, 3419.4023056777214]], "source": 1320103882, "length": 28.79127307196607}, {"destination": 1320103937, "path": [[1634.0154384479888, 3440.7023056779453], [1567.965438447061, 3252.952305677681]], "source": 1320103883, "length": 43.60234641520703}, {"destination": 476557955, "path": [[1634.0154384479888, 3440.7023056779453], [2009.2654384455955, 3346.2523056773107]], "source": 1320103883, "length": 74.39389059201542}, {"destination": 1320104001, "path": [[1634.0154384479888, 3440.7023056779453], [1604.9654384460155, 3448.0023056779883]], "source": 1320103883, "length": 5.759068453303942}, {"destination": 1316623608, "path": [[1037.6154384488245, -735.4976943219071], [1024.3654384467504, -796.997694322954]], "source": 1316623421, "length": 13.906987721266132}, {"destination": 1316623521, "path": [[1037.6154384488245, -735.4976943219071], [1152.115438443957, -761.047694322059]], "source": 1316623421, "length": 22.503502509086957}, {"destination": 1316623745, "path": [[1037.6154384488245, -735.4976943219071], [1049.0654384440745, -682.3976943231003]], "source": 1316623421, "length": 12.007737286608343}, {"destination": 1320104027, "path": [[1377.5154384489952, 2099.2023056773946], [1313.1654384466174, 2101.502305677627], [1283.6654384500434, 2069.402305677315]], "source": 1320103886, "length": 21.327634062403707}, {"destination": 1317671271, "path": [[918.1154384449997, 963.852305677193], [1106.565438448115, 950.0523056775734]], "source": 1317670863, "length": 35.969630823516866}, {"destination": 1317671166, "path": [[918.1154384449997, 963.852305677193], [913.46543844395, 913.3523056767956], [912.2654384441375, 778.0023056778163]], "source": 1317670863, "length": 41.36637936370891}, {"destination": 1317671343, "path": [[918.1154384449997, 963.852305677193], [921.5154384492052, 1000.5523056779708], [712.7154384463097, 1012.0023056767735]], "source": 1317670863, "length": 47.976674669562414}, {"destination": 1316471883, "path": [[1897.6154384446886, 2092.652305677234], [1767.6154384460574, 2106.552305678022]], "source": 1320103888, "length": 24.91580369632166}, {"destination": 1320103996, "path": [[1897.6154384446886, 2092.652305677234], [2097.315438447822, 2071.302305678202]], "source": 1320103888, "length": 38.27452370725148}, {"destination": 1320103639, "path": [[1897.6154384446886, 2092.652305677234], [1860.3154384493337, 1892.7523056770924]], "source": 1320103888, "length": 45.01821772542506}, {"destination": 1320104098, "path": [[1780.6154384487627, 2166.4023056775504], [1784.2154384482, 2183.1523056778933]], "source": 1320103889, "length": 3.787911843161209}, {"destination": 1316471883, "path": [[1780.6154384487627, 2166.4023056775504], [1767.6154384460574, 2106.552305678022]], "source": 1320103889, "length": 13.537539628121248}, {"destination": 1320103923, "path": [[1780.6154384487627, 2166.4023056775504], [1946.1654384471672, 2154.252305677673], [1991.7654384471462, 2172.6023056771737], [2061.51543844868, 2156.5523056779057], [2093.6654384442477, 2138.2023056766284], [2179.5154384491866, 2131.302305677707], [2230.4654384441847, 2147.352305676975], [2262.515438445689, 2140.5023056768614], [2275.965438442995, 2115.2523056766627], [2310.315438442956, 2114.3023056779953]], "source": 1320103889, "length": 107.98693411929531}, {"destination": 1317671312, "path": [[1903.1654384491503, 1048.7023056775513], [1787.865438444669, 1053.3023056780166]], "source": 1317670866, "length": 21.95123986463047}, {"destination": 1317670892, "path": [[1903.1654384491503, 1048.7023056775513], [1917.0654384481622, 915.9023056781734]], "source": 1317670866, "length": 29.6514830654849}, {"destination": 475978414, "path": [[1903.1654384491503, 1048.7023056775513], [2109.7154384435157, 1032.6523056782833], [2109.7154384435157, 998.2523056777381], [2163.36543844875, 998.2523056777381], [2168.715438443769, 952.352305677806], [2264.715438442977, 948.9023056765689]], "source": 1317670866, "length": 85.82696681572114}, {"destination": 1317671033, "path": [[3292.415438444607, 688.602305677577], [3399.5654384497698, 666.4023056774937]], "source": 1317670867, "length": 20.96676474783299}, {"destination": 1320103954, "path": [[1264.9654384446762, 2168.0023056767086], [1289.0154384450625, 2241.402305678264]], "source": 1320103892, "length": 16.951757520297885}, {"destination": 1316472035, "path": [[1264.9654384446762, 2168.0023056767086], [1252.415438443677, 2170.002305676988]], "source": 1320103892, "length": 2.4278240291168594}, {"destination": 1320104078, "path": [[1264.9654384446762, 2168.0023056767086], [1337.165438449972, 2156.6023056767135], [1434.3154384448553, 2145.3023056778875]], "source": 1320103892, "length": 32.60947039410236}, {"destination": 1769172185, "path": [[3202.765438444999, -7942.74769432235], [3220.315438447585, -7926.547694323105]], "source": 1769172074, "length": 4.911016416307562}, {"destination": 1769172142, "path": [[3202.765438444999, -7942.74769432235], [3177.065438443094, -7917.247694322782], [3169.0654384490813, -7907.647694322506]], "source": 1769172074, "length": 10.105493287170086}, {"destination": 1776116855, "path": [[3202.765438444999, -7942.74769432235], [3121.4654384470464, -8005.79769432197]], "source": 1769172074, "length": 20.870254386204728}, {"destination": 1320104001, "path": [[1361.5654384437903, 3509.302305676698], [1604.9654384460155, 3448.0023056779883]], "source": 476557270, "length": 48.2567176234085}, {"destination": 1320103555, "path": [[1361.5654384437903, 3509.302305676698], [1352.0154384494276, 3431.902305678136], [1359.9154384493772, 3394.752305677429]], "source": 476557270, "length": 25.705835961761366}, {"destination": 1320104073, "path": [[3458.115438448317, 2566.3023056772263], [3231.365438445266, 2529.452305678248]], "source": 1320103895, "length": 43.895396655933055}, {"destination": 1320103666, "path": [[3458.115438448317, 2566.3023056772263], [3469.315438444198, 2480.702305676985]], "source": 1320103895, "length": 19.15532611995005}, {"destination": 1320104085, "path": [[3458.115438448317, 2566.3023056772263], [3657.265438448576, 2596.952305676581]], "source": 1320103895, "length": 38.48317551031059}, {"destination": 4868839655, "path": [[3458.115438448317, 2566.3023056772263], [3445.3654384449806, 2663.4523056774383], [3440.8154384450995, 2696.652305678171]], "source": 1320103895, "length": 29.17495299954749}, {"destination": 1316623694, "path": [[-798.0345615550277, -1207.5976943233259], [-593.8845615531818, -1233.0476943223089]], "source": 475975640, "length": 39.233036462116964}, {"destination": 475975342, "path": [[-798.0345615550277, -1207.5976943233259], [-771.6345615520481, -1067.4476943233203]], "source": 475975640, "length": 31.569707022668993}, {"destination": 1317671210, "path": [[1825.5654384446984, 413.3523056779609], [1973.3654384452848, 417.9023056778419]], "source": 1317670873, "length": 28.125893538250203}, {"destination": 1317671076, "path": [[1825.5654384446984, 413.3523056779609], [1825.715438450004, 466.1023056780067]], "source": 1317670873, "length": 11.73096202398071}, {"destination": 1316694029, "path": [[1825.5654384446984, 413.3523056779609], [1825.3654384494666, 355.9523056768654]], "source": 1317670873, "length": 12.765197673554168}, {"destination": 1317670846, "path": [[1825.5654384446984, 413.3523056779609], [1592.7654384455536, 415.4023056770484]], "source": 1317670873, "length": 44.274632681928715}, {"destination": 1316471746, "path": [[2315.51543844688, 2235.8023056767706], [2317.1154384442616, 2273.8523056773374]], "source": 1320103898, "length": 8.467899958830348}, {"destination": 1320103923, "path": [[2315.51543844688, 2235.8023056767706], [2310.315438442956, 2114.3023056779953]], "source": 1320103898, "length": 27.038437727698962}, {"destination": 1320103900, "path": [[2315.51543844688, 2235.8023056767706], [2050.7654384473994, 2252.902305677651], [2056.115438449524, 2301.0523056772313], [1957.9654384429546, 2318.9023056779943]], "source": 1320103898, "length": 80.33336157609016}, {"destination": 1316623472, "path": [[-138.28456155096092, -1290.1476943234513], [-312.13456155398944, -1268.3976943232979]], "source": 475975643, "length": 33.41241708549545}, {"destination": 1316623299, "path": [[-138.28456155096092, -1290.1476943234513], [-152.53456155051026, -1372.2476943218708]], "source": 475975643, "length": 18.45853411588308}, {"destination": 4273376071, "path": [[-138.28456155096092, -1290.1476943234513], [-124.1845615567172, -1226.3976943227563]], "source": 475975643, "length": 14.428936471130964}, {"destination": 1317671179, "path": [[1000.8654384492388, 16.0523056766948], [1026.0654384453005, 11.952305676743435], [1087.7654384486846, 8.70230567784347]], "source": 1317670876, "length": 16.633775628357085}, {"destination": 1317671324, "path": [[1000.8654384492388, 16.0523056766948], [1004.1154384481388, 37.502305676895276]], "source": 1317670876, "length": 4.810894586745757}, {"destination": 1317671375, "path": [[1000.8654384492388, 16.0523056766948], [988.0154384447337, -69.34769432298538]], "source": 1317670876, "length": 19.148737873454248}, {"destination": 4908327481, "path": [[-5319.184561550117, 571.4023056775375], [-5176.734561551655, 913.3023056779876], [-5155.034561553862, 1045.3023056768984]], "source": 481390557, "length": 110.36113669347144}, {"destination": 483113556, "path": [[-5319.184561550117, 571.4023056775375], [-5558.734561553536, -18.69769432261137]], "source": 481390557, "length": 138.91464201973704}, {"destination": 3110525726, "path": [[-5319.184561550117, 571.4023056775375], [-5117.584561553202, 509.402305677753]], "source": 481390557, "length": 40.74289865114584}, {"destination": 1320104011, "path": [[1392.6654384448511, 3761.2023056770026], [1645.5654384444074, 3717.30230567735]], "source": 1320103902, "length": 49.07895571226455}, {"destination": 1316471742, "path": [[1392.6654384448511, 3761.2023056770026], [1387.8154384485697, 3721.9023056778155]], "source": 1320103902, "length": 8.788067878795236}, {"destination": 1315785491, "path": [[-4103.184561550677, 221.30230567718456], [-4705.984561553578, 397.75230567684616]], "source": 481390560, "length": 121.16628944855977}, {"destination": 385113971, "path": [[-4103.184561550677, 221.30230567718456], [-4002.2845615510505, 194.1023056772906]], "source": 481390560, "length": 20.11936936896495}, {"destination": 1316471889, "path": [[2782.9154384448884, 2861.702305677838], [2678.365438448793, 2835.052305677266]], "source": 1320103905, "length": 20.747899222716182}, {"destination": 1320104054, "path": [[2782.9154384448884, 2861.702305677838], [2855.2654384483844, 2862.7523056776736]], "source": 1320103905, "length": 13.762036180818852}, {"destination": 1320103703, "path": [[2782.9154384448884, 2861.702305677838], [2772.165438443608, 2920.352305677554], [2737.265438447878, 2920.352305677554], [2726.565438443629, 3053.402305678077]], "source": 1320103905, "length": 49.499305803252206}, {"destination": 1317671336, "path": [[3622.3654384457404, 1413.402305677991], [3488.765438447672, 1393.2023056781873]], "source": 1317670882, "length": 25.801662041572374}, {"destination": 1404037024, "path": [[-888.9845615556169, 5344.852305677606], [-734.584561556062, 5271.952305676564]], "source": 1404037115, "length": 33.54379295918049}, {"destination": 4225630308, "path": [[6717.415438444618, 8273.952305676958], [6701.415438449487, 8280.352305677141], [6688.415438446782, 8294.052305677369], [6663.865438447658, 8322.752305677028], [6649.715438449277, 8366.002305677966], [6622.3154384488225, 8414.102305676963], [6608.765438443243, 8456.802305676803], [6608.765438443243, 8491.102305677956], [6616.765438444361, 8540.402305676764], [6610.315438443593, 8577.90230567801], [6592.715438443975, 8607.752305676897], [6366.515438443798, 8846.902305677417], [6346.415438443387, 8862.852305677294], [6321.465438446694, 8873.55230567799], [6261.565438443029, 8886.002305677821], [6222.265438445618, 8905.402305677157]], "source": 482734053, "length": 180.77186544654174}, {"destination": 654382690, "path": [[6717.415438444618, 8273.952305676958], [6651.765438448365, 8221.252305677495], [6507.6654384483845, 8107.252305677548], [6273.965438445828, 7894.452305677646], [6172.965438445033, 7791.602305676548], [6076.565438448256, 7678.302305677676], [6017.065438449265, 7601.852305677781], [5996.16543844661, 7566.4023056774], [5987.665438446755, 7530.252305677721], [5996.4654384430105, 7492.402305677714], [6043.565438446308, 7371.102305677724], [6046.515438448807, 7342.402305678064], [6031.015438445309, 7309.402305677892], [5920.015438448445, 7199.652305677872]], "source": 482734053, "length": 301.468579494302}, {"destination": 654381492, "path": [[6717.415438444618, 8273.952305676958], [6803.4654384447895, 8212.402305677102], [6860.915438444692, 8191.502305678], [6909.665438449509, 8167.852305676959], [6944.965438449913, 8128.502305677188], [7167.565438443546, 7787.352305676621]], "source": 482734053, "length": 141.78356514951508}, {"destination": 1316471824, "path": [[2975.1654384497783, 1738.302305676953], [2801.665438447287, 1716.152305677454], [2734.815438444116, 1703.752305678208]], "source": 1320103910, "length": 46.370111274229444}, {"destination": 1320103682, "path": [[2975.1654384497783, 1738.302305676953], [3120.1154384490337, 1760.902305678158]], "source": 1320103910, "length": 28.020752043304352}, {"destination": 1320103571, "path": [[2975.1654384497783, 1738.302305676953], [2976.0154384490534, 1727.6023056780332], [2984.315438446572, 1689.9523056768116]], "source": 1320103910, "length": 10.902753500220202}, {"destination": 1320103717, "path": [[2975.1654384497783, 1738.302305676953], [2970.6154384498973, 1796.4523056779312], [2969.715438446485, 1809.252305676523]], "source": 1320103910, "length": 15.811911600581087}, {"destination": 602360669, "path": [[5640.565438447709, -3622.2976943225403], [5323.9154384456815, -3896.1976943223676], [4790.015438445039, -4316.747694321776], [4742.165438443635, -4363.797694322713]], "source": 84488167, "length": 237.55356756537662}, {"destination": 495771182, "path": [[5640.565438447709, -3622.2976943225403], [5710.5654384486115, -3536.1976943217855], [6447.565438449487, -2912.347694323358]], "source": 84488167, "length": 220.52364948380037}, {"destination": 478379215, "path": [[5640.565438447709, -3622.2976943225403], [5982.165438446429, -3935.447694322747], [6025.265438445615, -3985.647694323191]], "source": 84488167, "length": 109.08286124698998}, {"destination": 1784595697, "path": [[8794.815438449177, -5456.347694321906], [8851.415438449805, -5445.347694323033], [8889.165438446867, -5437.047694321962], [8935.915438449627, -5431.3476943228525], [8973.965438443087, -5431.947694322758], [9011.815438448422, -5436.997694323153], [9045.965438446046, -5447.147694322752], [9067.815438449144, -5459.147694322653], [9084.415438444183, -5472.497694322343], [9099.815438446512, -5492.1476943228245], [9108.515438448705, -5509.247694321928], [9113.115438445619, -5530.697694322129], [9115.065438443537, -5564.197694322815]], "source": 4345393128, "length": 79.810367617851}, {"destination": 476913948, "path": [[8794.815438449177, -5456.347694321906], [8857.21543844653, -5424.797694322691], [8907.715438446929, -5404.647694323472], [8938.86543844502, -5389.747694323432], [8968.615438448069, -5374.847694323393], [8992.265438443781, -5359.097694322301], [9011.465438447885, -5341.547694323268], [9025.665438443299, -5324.047694323042], [9036.815438449252, -5306.147694323471], [9054.065438448333, -5275.797694322293]], "source": 4345393128, "length": 65.52185534447864}, {"destination": 1784595711, "path": [[8794.815438449177, -5456.347694321906], [8948.065438445952, -5404.947694323426], [9005.915438443424, -5388.097694321914], [9085.115438445257, -5364.747694322603], [9128.065438446243, -5352.847694322094], [9178.265438443133, -5336.39769432348], [9241.4154384457, -5318.9476943220625]], "source": 4345393128, "length": 90.28114649020434}, {"destination": 1316472081, "path": [[2512.5654384439144, 1508.0523056774098], [2535.265438446288, 1372.0523056779398]], "source": 1320103913, "length": 30.551809175102665}, {"destination": 1316472084, "path": [[2512.5654384439144, 1508.0523056774098], [2506.615438448989, 1539.602305676624]], "source": 1320103913, "length": 7.106854017137291}, {"destination": 1320104041, "path": [[2512.5654384439144, 1508.0523056774098], [2380.5654384432273, 1484.6023056769297], [2249.115438445415, 1461.6523056769638], [2179.565438446218, 1446.9523056774847]], "source": 1320103913, "length": 64.77822583240393}, {"destination": 1317671204, "path": [[2429.565438447412, -181.14769432209243], [2428.7654384451685, -189.84769432250914], [2430.615438449024, -221.79769432284502]], "source": 1317670890, "length": 9.055418493744138}, {"destination": 1317670933, "path": [[2429.565438447412, -181.14769432209243], [2361.7154384467653, -180.69769432216276]], "source": 1317670890, "length": 12.903537876596134}, {"destination": 1317670854, "path": [[2429.565438447412, -181.14769432209243], [2432.4654384457745, -150.39769432334538]], "source": 1317670890, "length": 6.861671388280949}, {"destination": 1320103617, "path": [[2908.965438443545, 2943.30230567752], [3024.265438448026, 2952.502305676674]], "source": 1320103915, "length": 22.02317874474645}, {"destination": 1320103973, "path": [[2908.965438443545, 2943.30230567752], [2841.86543844811, 2934.1523056771734]], "source": 1320103915, "length": 12.922731531191317}, {"destination": 1320103961, "path": [[2908.965438443545, 2943.30230567752], [2903.965438449063, 2992.9523056768658]], "source": 1320103915, "length": 11.082263174249743}, {"destination": 1317670866, "path": [[1917.0654384481622, 915.9023056781734], [1903.1654384491503, 1048.7023056775513]], "source": 1317670892, "length": 29.6514830654849}, {"destination": 1317671283, "path": [[1917.0654384481622, 915.9023056781734], [2056.065438445387, 917.9523056772609], [2098.9654384493406, 899.6023056777602], [2176.7654384490243, 888.1523056771812], [2179.165438448649, 800.7523056772214]], "source": 1317670892, "length": 70.01520434022709}, {"destination": 1317671277, "path": [[1917.0654384481622, 915.9023056781734], [1787.1154384465626, 924.852305677959]], "source": 1317670892, "length": 24.793238274163894}, {"destination": 1317671438, "path": [[1917.0654384481622, 915.9023056781734], [1930.0154384467305, 791.8023056774359]], "source": 1317670892, "length": 27.708300897224355}, {"destination": 1317670827, "path": [[932.5154384498546, 45.40230567684489], [940.2654384444986, 106.00230567803237], [897.3654384476504, 112.90230567695403], [900.0154384466441, 225.25230567715937], [881.2654384442453, 241.3523056770117], [884.5154384431453, 287.002305677575]], "source": 1317670893, "length": 62.07329414163489}, {"destination": 1317671324, "path": [[932.5154384498546, 45.40230567684489], [1004.1154384481388, 37.502305676895276]], "source": 1317670893, "length": 13.728923973842544}, {"destination": 1317671054, "path": [[932.5154384498546, 45.40230567684489], [902.7154384497749, 48.65230567752121], [819.5654384479667, 67.00230567702192]], "source": 1317670893, "length": 22.043541495843137}, {"destination": 1320103933, "path": [[2682.5154384439998, 2623.0023056772466], [2525.3654384442825, 2631.352305677126]], "source": 1320103918, "length": 29.94456763524142}, {"destination": 1320103726, "path": [[2682.5154384439998, 2623.0023056772466], [2690.665438443318, 2347.752305677631]], "source": 1320103918, "length": 61.23239696841804}, {"destination": 1320103815, "path": [[2682.5154384439998, 2623.0023056772466], [2678.6654384451936, 2728.5523056779225]], "source": 1320103918, "length": 23.484577554469176}, {"destination": 1320104083, "path": [[2187.5654384473364, 3936.502305677436], [2520.0154384492635, 3952.5523056767042], [3027.765438446295, 4111.502305677916]], "source": 1320103919, "length": 166.16263376527885}, {"destination": 1317671280, "path": [[1596.9654384448972, 360.4523056779385], [1744.9154384436838, 360.60230567791507]], "source": 1317670896, "length": 28.13614583495496}, {"destination": 1316694018, "path": [[1596.9654384448972, 360.4523056779385], [1599.1154384451534, 332.75230567753056]], "source": 1317670896, "length": 6.173723484132286}, {"destination": 1317670846, "path": [[1596.9654384448972, 360.4523056779385], [1592.7654384455536, 415.4023056770484]], "source": 1317670896, "length": 12.246302765545297}, {"destination": 1320104029, "path": [[1913.0154384470188, 1869.7023056777339], [2039.8154384437817, 1844.1523056775823]], "source": 1320103921, "length": 24.775055812108857}, {"destination": 1320103624, "path": [[2853.365438447497, 3613.1023056782396], [2914.3154384456693, 3576.4023056774618], [3056.215438448362, 3568.102305678167]], "source": 1320103922, "length": 41.2273182141961}, {"destination": 654402282, "path": [[2853.365438447497, 3613.1023056782396], [2870.6154384465776, 3636.0023056776213], [2935.015438445987, 3691.0523056778998]], "source": 1320103922, "length": 23.37588773807472}, {"destination": 1320103932, "path": [[2853.365438447497, 3613.1023056782396], [2785.565438443882, 3677.302305677088], [2721.165438444473, 3831.0023056773443]], "source": 1320103922, "length": 55.547970838362815}, {"destination": 1320103670, "path": [[2853.365438447497, 3613.1023056782396], [2822.315438443468, 3571.8023056769966], [2786.465438447294, 3533.4523056782527]], "source": 1320103922, "length": 21.839276615007524}, {"destination": 1320103889, "path": [[2310.315438442956, 2114.3023056779953], [2275.965438442995, 2115.2523056766627], [2262.515438445689, 2140.5023056768614], [2230.4654384441847, 2147.352305676975], [2179.5154384491866, 2131.302305677707], [2093.6654384442477, 2138.2023056766284], [2061.51543844868, 2156.5523056779057], [1991.7654384471462, 2172.6023056771737], [1946.1654384471672, 2154.252305677673], [1780.6154384487627, 2166.4023056775504]], "source": 1320103923, "length": 107.98693411929531}, {"destination": 1320103898, "path": [[2310.315438442956, 2114.3023056779953], [2315.51543844688, 2235.8023056767706]], "source": 1320103923, "length": 27.038437727698962}, {"destination": 1316472139, "path": [[2310.315438442956, 2114.3023056779953], [2308.115438445668, 2062.552305677201]], "source": 1320103923, "length": 11.51657183602549}, {"destination": 1320103931, "path": [[2739.965438443903, 3434.1523056777846], [2745.8154384447653, 3366.6523056776755]], "source": 1320103924, "length": 15.052281452634146}, {"destination": 1320103632, "path": [[1427.065438448949, 2702.1023056779113], [1415.065438443719, 2648.652305676791]], "source": 1320103925, "length": 12.104174515438869}, {"destination": 1320104025, "path": [[1427.065438448949, 2702.1023056779113], [1275.6154384447882, 2743.7523056779155]], "source": 1320103925, "length": 30.255670490294214}, {"destination": 1320104087, "path": [[1427.065438448949, 2702.1023056779113], [1442.9154384458798, 2772.8023056781126]], "source": 1320103925, "length": 16.009503235977434}, {"destination": 1320103807, "path": [[1427.065438448949, 2702.1023056779113], [1648.2654384475381, 2642.7023056765365]], "source": 1320103925, "length": 44.09359922088231}, {"destination": 1317670767, "path": [[2914.9154384455755, 373.30230567711453], [3178.365438444075, 328.10230567825727]], "source": 1317670902, "length": 51.099431746499505}, {"destination": 1317670780, "path": [[2914.9154384455755, 373.30230567711453], [2882.065438448933, 378.9523056774158], [2729.165438445591, 390.40230567799483]], "source": 1317670902, "length": 35.55988514707698}, {"destination": 1317671047, "path": [[2914.9154384455755, 373.30230567711453], [2919.615438443657, 434.00230567769427], [2921.565438448681, 473.10230567809697]], "source": 1317670902, "length": 22.23159638555139}, {"destination": 1320104087, "path": [[1562.6154384449364, 2741.452305677683], [1442.9154384458798, 2772.8023056781126]], "source": 1320103927, "length": 23.80854961059022}, {"destination": 1320103916, "path": [[2158.065438443657, 2652.0023056768596], [2333.2154384476667, 2651.102305677]], "source": 1320103928, "length": 33.31111020811855}, {"destination": 1320103698, "path": [[2158.065438443657, 2652.0023056768596], [2155.3654384476317, 2702.4523056766725], [2158.5654384495, 2731.602305678038]], "source": 1320103928, "length": 17.74252127056666}, {"destination": 1320104100, "path": [[2158.065438443657, 2652.0023056768596], [2133.9154384492076, 2569.402305677926]], "source": 1320103928, "length": 18.934799934617903}, {"destination": 1317670921, "path": [[3554.8654384456313, 1323.8023056771908], [3574.065438449736, 1239.0523056780012]], "source": 1317670905, "length": 19.197859881386375}, {"destination": 1317671402, "path": [[3554.8654384456313, 1323.8023056771908], [3651.86543844942, 1333.1023056775139]], "source": 1317670905, "length": 18.56272967071442}, {"destination": 1317671039, "path": [[3554.8654384456313, 1323.8023056771908], [3502.565438445515, 1318.752305676796]], "source": 1317670905, "length": 10.009724723578996}, {"destination": 476558313, "path": [[-1047.1845615569464, 5007.602305678205], [-895.8345615539542, 4911.602305677221]], "source": 1404037126, "length": 35.83859713940971}, {"destination": 1404037125, "path": [[-1047.1845615569464, 5007.602305678205], [-918.4845615521908, 5060.402305677058], [-746.8345615535554, 5129.252305676957]], "source": 1404037126, "length": 63.20726761925687}, {"destination": 482731911, "path": [[-1047.1845615569464, 5007.602305678205], [-1388.6845615544985, 5223.452305678222]], "source": 1404037126, "length": 80.76422300741503}, {"destination": 1317671064, "path": [[2970.7654384480975, 1179.4023056772573], [2723.8154384434665, 1165.652305678222]], "source": 1317670907, "length": 47.063468466937394}, {"destination": 1317670910, "path": [[2970.7654384480975, 1179.4023056772573], [3048.2654384442753, 1183.7023056777696]], "source": 1317670907, "length": 14.769707800863682}, {"destination": 1317670926, "path": [[2970.7654384480975, 1179.4023056772573], [2970.5654384457603, 1213.8523056766103], [2970.1654384481913, 1258.7023056767066]], "source": 1317670907, "length": 17.635548534187212}, {"destination": 1320103712, "path": [[2721.165438444473, 3831.0023056773443], [2632.4154384482767, 3785.252305677389]], "source": 1320103932, "length": 19.70819327117432}, {"destination": 1320103922, "path": [[2721.165438444473, 3831.0023056773443], [2785.565438443882, 3677.302305677088], [2853.365438447497, 3613.1023056782396]], "source": 1320103932, "length": 55.547970838362815}, {"destination": 1320103942, "path": [[2721.165438444473, 3831.0023056773443], [2846.51543844916, 3879.5523056780467]], "source": 1320103932, "length": 26.17085935946034}, {"destination": 495770430, "path": [[8864.515438446575, -6210.9476943224], [8795.365438444947, -6179.547694323162]], "source": 4345393149, "length": 14.88792204874189}, {"destination": 848698031, "path": [[8864.515438446575, -6210.9476943224], [8839.215438449344, -6259.297694322541], [8820.665438449283, -6301.697694322428], [8789.215438447683, -6374.097694322955], [8751.165438447117, -6472.247694322419], [8703.66543844625, -6603.147694322686], [8654.265438444498, -6709.047694322124], [8620.315438449212, -6769.047694323404], [8528.46543844521, -6903.797694322478], [8459.41543844475, -7013.297694323129], [8367.665438449023, -7189.4976943234215]], "source": 4345393149, "length": 237.91805824639184}, {"destination": 1320104098, "path": [[1835.865438444273, 2421.202305677994], [1784.2154384482, 2183.1523056778933]], "source": 1320103934, "length": 53.843624382533996}, {"destination": 476556302, "path": [[1835.865438444273, 2421.202305677994], [1840.7654384446914, 2443.7523056768387]], "source": 1320103934, "length": 5.101841072506443}, {"destination": 1320103767, "path": [[1835.865438444273, 2421.202305677994], [1972.9654384477158, 2408.8523056775557]], "source": 1320103934, "length": 26.21799705066866}, {"destination": 495770277, "path": [[9021.66543844629, -5973.197694322252], [8981.465438445468, -6155.54769432336]], "source": 4345393151, "length": 41.2668937164213}, {"destination": 4345393150, "path": [[9021.66543844629, -5973.197694322252], [8995.965438444386, -6005.947694323055], [8968.615438448069, -6035.04769432206], [8938.615438445651, -6076.147694322743], [8908.415438448003, -6120.9976943228385]], "source": 4345393151, "length": 39.35596331551875}, {"destination": 1316471946, "path": [[1901.8154384440322, 2675.9523056778535], [1895.7654384479383, 2650.252305677725]], "source": 1320103936, "length": 5.829066453005973}, {"destination": 1320103989, "path": [[1901.8154384440322, 2675.9523056778535], [1924.0654384446998, 2770.302305677319]], "source": 1320103936, "length": 21.40494010021764}, {"destination": 1320103946, "path": [[1901.8154384440322, 2675.9523056778535], [2045.415438445275, 2661.1523056772057]], "source": 1320103936, "length": 27.507858849417175}, {"destination": 1320103883, "path": [[1567.965438447061, 3252.952305677681], [1634.0154384479888, 3440.7023056779453]], "source": 1320103937, "length": 43.60234641520703}, {"destination": 1320104061, "path": [[1567.965438447061, 3252.952305677681], [1533.1154384483625, 3163.5023056768573], [1543.815438445506, 3147.4523056775893], [1525.7154384471505, 3027.552305677972]], "source": 1320103937, "length": 51.96159846092882}, {"destination": 1316471958, "path": [[1567.965438447061, 3252.952305677681], [1503.6154384446832, 3271.3023056771817], [1379.3654384457454, 3303.202305676933]], "source": 1320103937, "length": 37.57318216178859}, {"destination": 1317671283, "path": [[2047.3154384461623, 773.702305677304], [2075.165438448323, 769.3523056779838], [2152.6154384474694, 757.4023056768908], [2168.715438443769, 801.0023056765903], [2179.165438448649, 800.7523056772214]], "source": 1317670914, "length": 32.50473727738859}, {"destination": 1317670980, "path": [[2047.3154384461623, 773.702305677304], [2042.6654384451126, 690.9023056778096], [2034.5154384457942, 654.0523056770553]], "source": 1317670914, "length": 26.774283271122712}, {"destination": 1317671438, "path": [[2047.3154384461623, 773.702305677304], [1930.0154384467305, 791.8023056774359]], "source": 1317670914, "length": 22.667511870188374}, {"destination": 1317670833, "path": [[1527.6654384450694, 227.55230567739204], [1535.5154384479874, 19.552305676739934]], "source": 1317670917, "length": 46.281193533988855}, {"destination": 654402282, "path": [[2846.51543844916, 3879.5523056780467], [2882.1154384459646, 3775.952305677066], [2935.015438445987, 3691.0523056778998]], "source": 1320103942, "length": 45.408384414593115}, {"destination": 1320103932, "path": [[2846.51543844916, 3879.5523056780467], [2721.165438444473, 3831.0023056773443]], "source": 1320103942, "length": 26.17085935946034}, {"destination": 1320103710, "path": [[2846.51543844916, 3879.5523056780467], [3005.5154384456273, 3941.1023056779013], [3040.0654384479253, 3954.4023056770075]], "source": 1320103942, "length": 40.39829958086142}, {"destination": 1320103800, "path": [[2801.765438448456, 1952.352305677252], [2805.7154384484306, 1859.6523056775281]], "source": 1320103943, "length": 20.629624484339853}, {"destination": 1316471908, "path": [[2801.765438448456, 1952.352305677252], [3005.5154384456273, 1966.2023056774558]], "source": 1320103943, "length": 38.8711616640814}, {"destination": 1316471693, "path": [[2801.765438448456, 1952.352305677252], [2769.4654384475825, 1950.1523056781878]], "source": 1320103943, "length": 6.162033583023529}, {"destination": 1320104011, "path": [[1675.2654384433185, 3833.3023056775774], [1645.5654384444074, 3717.30230567735]], "source": 1320103944, "length": 26.408436759375956}, {"destination": 1317670905, "path": [[3574.065438449736, 1239.0523056780012], [3554.8654384456313, 1323.8023056771908]], "source": 1317670921, "length": 19.197859881386375}, {"destination": 1320103936, "path": [[2045.415438445275, 2661.1523056772057], [1901.8154384440322, 2675.9523056778535]], "source": 1320103946, "length": 27.507858849417175}, {"destination": 1320104088, "path": [[2278.565438444957, 2930.802305677105], [2147.315438449482, 2924.952305678019], [1957.065438446648, 2940.2023056768203]], "source": 1320103948, "length": 61.33654891452937}, {"destination": 1316472082, "path": [[2278.565438444957, 2930.802305677105], [2277.965438445051, 3145.4523056773096]], "source": 1320103948, "length": 47.73619366832498}, {"destination": 1316471735, "path": [[2278.565438444957, 2930.802305677105], [2278.615438449094, 2908.952305677559], [2343.0154384485036, 2881.4023056771275]], "source": 1320103948, "length": 18.554432536246175}, {"destination": 1320104124, "path": [[2316.165438443818, 3493.802305676752], [2109.7654384476527, 3498.4023056772176], [2031.065438444557, 3515.5523056769057]], "source": 1320103949, "length": 54.71391127455014}, {"destination": 1320103771, "path": [[2316.165438443818, 3493.802305676752], [2340.1154384430356, 3403.0023056779155]], "source": 1320103949, "length": 20.70027857093395}, {"destination": 1320103796, "path": [[2316.165438443818, 3493.802305676752], [2316.165438443818, 3551.152305677263], [2324.1154384479046, 3662.0023056777027]], "source": 1320103949, "length": 37.452256882455245}, {"destination": 554685947, "path": [[4698.115438444006, -4407.047694321875], [4529.41543844787, -4536.397694321792], [4347.815438443093, -4717.447694321919]], "source": 84488206, "length": 96.13123020747881}, {"destination": 602360669, "path": [[4698.115438444006, -4407.047694321875], [4742.165438443635, -4363.797694322713]], "source": 84488206, "length": 12.754602681267897}, {"destination": 1887566506, "path": [[-361.53456155574304, -6229.897694321807], [-322.2845615553638, -6232.447694323184]], "source": 1883254799, "length": 7.484862631617897}, {"destination": 476671870, "path": [[-361.53456155574304, -6229.897694321807], [-359.3845615554869, -6207.0976943218175], [-353.98456155633085, -6161.247694322469], [-331.68456155152626, -5998.297694322474], [-319.134561550527, -5929.597694322552], [-286.6345615544219, -5746.597694322731], [-243.63456155640506, -5570.397694322438]], "source": 1883254799, "length": 148.47674480938016}, {"destination": 1320103833, "path": [[1865.015438447415, 3851.3523056771246], [1881.8154384447894, 3904.402305677124]], "source": 1320103952, "length": 12.222729494860602}, {"destination": 1320103556, "path": [[1865.015438447415, 3851.3523056771246], [1854.9654384472092, 3819.5523056767656]], "source": 1320103952, "length": 7.324808460081235}, {"destination": 1320104045, "path": [[1865.015438447415, 3851.3523056771246], [1626.9654384473142, 3879.152305676925]], "source": 1320103952, "length": 45.69422922767644}, {"destination": 1317671162, "path": [[2231.115438448228, 269.3023056767885], [2238.7654384488087, 323.30230567723106]], "source": 1317670930, "length": 12.096726250309576}, {"destination": 1317671269, "path": [[2231.115438448228, 269.3023056767885], [2195.7654384436864, 19.10230567681026]], "source": 1317670930, "length": 56.04665017131213}, {"destination": 1317671350, "path": [[2231.115438448228, 269.3023056767885], [2394.1154384488073, 259.1523056771905]], "source": 1317670930, "length": 31.080155404891322}, {"destination": 1320104105, "path": [[2051.4654384484743, 3650.1523056777787], [2058.9654384437495, 3687.3023056767097]], "source": 1320103955, "length": 8.384470338408137}, {"destination": 1320104124, "path": [[2051.4654384484743, 3650.1523056777787], [2042.9654384486184, 3608.1023056766526], [2031.065438444557, 3515.5523056769057]], "source": 1320103955, "length": 30.19568292426034}, {"destination": 1320103796, "path": [[2051.4654384484743, 3650.1523056777787], [2324.1154384479046, 3662.0023056777027]], "source": 1320103955, "length": 51.92108958605626}, {"destination": 1320103640, "path": [[3708.265438447711, 2330.852305677311], [3492.6654384435096, 2302.4523056776047]], "source": 1320103956, "length": 41.48645795087648}, {"destination": 1317670890, "path": [[2361.7154384467653, -180.69769432216276], [2429.565438447412, -181.14769432209243]], "source": 1317670933, "length": 12.903537876596134}, {"destination": 1317671409, "path": [[3126.115438448096, 1112.9023056781762], [3048.2154384472437, 1112.9023056781762]], "source": 1317670935, "length": 14.814186714679005}, {"destination": 1320103641, "path": [[2903.965438449063, 2992.9523056768658], [2973.3154384459226, 2998.3523056777985]], "source": 1320103961, "length": 13.243747974983302}, {"destination": 1320103915, "path": [[2903.965438449063, 2992.9523056768658], [2908.965438443545, 2943.30230567752]], "source": 1320103961, "length": 11.082263174249743}, {"destination": 1320104055, "path": [[2903.965438449063, 2992.9523056768658], [2890.115438447083, 3130.952305676615]], "source": 1320103961, "length": 30.80256133300955}, {"destination": 1320103569, "path": [[1476.2654384483653, 2921.252305677413], [1456.715438443723, 2834.202305677991]], "source": 1320103962, "length": 19.7127658317962}, {"destination": 1320103586, "path": [[1476.2654384483653, 2921.252305677413], [1337.3154384481722, 2970.8523056779513]], "source": 1320103962, "length": 28.635900478308354}, {"destination": 1320103826, "path": [[1476.2654384483653, 2921.252305677413], [1661.8654384430442, 2876.8023056766624], [1647.9654384440323, 2821.2523056776463]], "source": 1320103962, "length": 49.28956822856777}, {"destination": 1316471841, "path": [[1476.2654384483653, 2921.252305677413], [1500.7654384433522, 3030.5023056769187]], "source": 1320103962, "length": 24.73865079668646}, {"destination": 1317671187, "path": [[2388.515438447314, 11.902305677935487], [2417.815438448656, 10.802305677515278]], "source": 1317670940, "length": 5.577810106282982}, {"destination": 1317670972, "path": [[2388.515438447314, 11.902305677935487], [2393.91543844647, -61.44769432303576], [2383.1654384451895, -134.84769432281496]], "source": 1317670940, "length": 32.79558825712202}, {"destination": 1317670805, "path": [[2388.515438447314, 11.902305677935487], [2305.1654384431686, 15.002305676858896]], "source": 1317670940, "length": 15.865866627476965}, {"destination": 1317671000, "path": [[2957.165438445486, 204.6523056780103], [3072.065438445293, 198.25230567782626]], "source": 1317670941, "length": 21.897387850917035}, {"destination": 1317671067, "path": [[2957.165438445486, 204.6523056780103], [2696.5154384441803, 236.80230567713068]], "source": 1317670941, "length": 50.081477362337345}, {"destination": 1317671147, "path": [[2957.165438445486, 204.6523056780103], [2950.665438447686, 101.60230567812789]], "source": 1317670941, "length": 22.950824782283515}, {"destination": 1317670952, "path": [[2706.365438449154, 283.20230567757676], [2503.865438448827, 300.95230567717124], [2453.81543844303, 331.0023056766198]], "source": 1317670943, "length": 50.34204624911161}, {"destination": 1317671067, "path": [[2706.365438449154, 283.20230567757676], [2696.5154384441803, 236.80230567713068]], "source": 1317670943, "length": 10.487250384349588}, {"destination": 1317671421, "path": [[2706.365438449154, 283.20230567757676], [2718.4154384443104, 339.9523056781817]], "source": 1317670943, "length": 12.827178693200517}, {"destination": 1320104072, "path": [[2336.3154384483664, 2724.302305677995], [2339.5654384472664, 2800.0023056780065]], "source": 1320103970, "length": 16.84615800313557}, {"destination": 1320104114, "path": [[2336.3154384483664, 2724.302305677995], [2474.4154384492845, 2711.652305677603], [2527.865438445076, 2713.202305677953]], "source": 1320103970, "length": 36.58597036008895}, {"destination": 1320103916, "path": [[2336.3154384483664, 2724.302305677995], [2333.2154384476667, 2651.102305677]], "source": 1320103970, "length": 16.289658715620128}, {"destination": 1320103833, "path": [[1916.6654384434878, 4051.202305676682], [1881.8154384447894, 3904.402305677124]], "source": 1320103971, "length": 33.31300409157226}, {"destination": 1320103964, "path": [[1916.6654384434878, 4051.202305676682], [2124.9654384476457, 4014.002305677167]], "source": 1320103971, "length": 40.47056381750392}, {"destination": 1320103745, "path": [[1916.6654384434878, 4051.202305676682], [1916.6654384434878, 4131.50230567716]], "source": 1320103971, "length": 17.857957888555337}, {"destination": 1320103915, "path": [[2841.86543844811, 2934.1523056771734], [2908.965438443545, 2943.30230567752]], "source": 1320103973, "length": 12.922731531191317}, {"destination": 85646340, "path": [[11296.615438446623, -758.8476943229949], [10655.565438447922, -506.39769432336834], [10225.815438445807, -348.6476943219685], [10032.715438448748, -274.09769432296116]], "source": 96243750, "length": 263.4423633702201}, {"destination": 602392037, "path": [[11296.615438446623, -758.8476943229949], [11280.465438446186, -798.2976943221587]], "source": 96243750, "length": 9.294949694449073}, {"destination": 1320104112, "path": [[2570.9654384442615, 3562.602305677842], [2511.965438444008, 3723.2023056770204]], "source": 1320103975, "length": 37.43707474419652}, {"destination": 1317671120, "path": [[2453.81543844303, 331.0023056766198], [2468.9654384459914, 409.6023056767706]], "source": 1317670952, "length": 17.71557230713414}, {"destination": 1317671112, "path": [[2453.81543844303, 331.0023056766198], [2450.2154384435926, 312.45230567655824], [2447.8654384481047, 255.80230567712192]], "source": 1317670952, "length": 16.790037090393245}, {"destination": 1317671292, "path": [[2453.81543844303, 331.0023056766198], [2297.315438447356, 344.5523056768707]], "source": 1317670952, "length": 29.9144544260602}, {"destination": 1317671421, "path": [[2453.81543844303, 331.0023056766198], [2479.715438447272, 360.60230567791507], [2718.4154384443104, 339.9523056781817]], "source": 1317670952, "length": 53.84822954872179}, {"destination": 1317670943, "path": [[2453.81543844303, 331.0023056766198], [2503.865438448827, 300.95230567717124], [2706.365438449154, 283.20230567757676]], "source": 1317670952, "length": 50.34204624911161}, {"destination": 1320103959, "path": [[2211.7154384488913, 4076.4523056768808], [2485.1654384434596, 4097.102305676614], [2972.0154384449415, 4253.25230567708]], "source": 1320103977, "length": 151.10013607149244}, {"destination": 1317670986, "path": [[1795.6154384464185, -441.59769432283724], [1860.0154384458278, -441.64769432342155]], "source": 1317670954, "length": 12.247038699127616}, {"destination": 1317671347, "path": [[1795.6154384464185, -441.59769432283724], [1774.5654384455634, -272.447694323219]], "source": 1317670954, "length": 37.82971487615108}, {"destination": 1317671085, "path": [[1795.6154384464185, -441.59769432283724], [1825.4154384464982, -549.9476943224835]], "source": 1317670954, "length": 24.753401278970625}, {"destination": 475977519, "path": [[1795.6154384464185, -441.59769432283724], [1635.6654384495073, -441.4476943228607]], "source": 1317670954, "length": 30.417585034722254}, {"destination": 1317671038, "path": [[1460.6154384466663, 771.1523056777025], [1459.2654384486536, 810.2023056775209]], "source": 1317670955, "length": 8.687499840053013}, {"destination": 1317671240, "path": [[3411.815438447263, 469.7523056780284], [3431.9154384476747, 463.80230567777403], [3541.8654384500314, 406.45230567726287]], "source": 1317670956, "length": 28.538236391004315}, {"destination": 1317671041, "path": [[3411.815438447263, 469.7523056780284], [3407.76543844612, 431.7023056774616], [3418.5154384474004, 349.152305677336]], "source": 1317670956, "length": 26.9685452209046}, {"destination": 1317670769, "path": [[3411.815438447263, 469.7523056780284], [3292.415438444607, 505.1023056772408], [3193.615438448205, 518.6523056774917]], "source": 1317670956, "length": 43.05803014248826}, {"destination": 1315785322, "path": [[-2649.7845615551796, -4127.097694322401], [-2667.3845615547975, -4203.597694322881], [-2720.1845615536513, -4399.597694321855]], "source": 4868927533, "length": 62.068974960318954}, {"destination": 1315785374, "path": [[-2649.7845615551796, -4127.097694322401], [-2530.8345615542294, -4140.54769432326]], "source": 4868927533, "length": 22.8159293881827}, {"destination": 1320103818, "path": [[1385.115438445439, 2318.252305677504], [1452.615438445548, 2301.0523056772313], [1470.4154384475032, 2298.302305677069]], "source": 1320103982, "length": 16.835973546014404}, {"destination": 1320103859, "path": [[1385.115438445439, 2318.252305677504], [1326.5654384468917, 2333.152305677544]], "source": 1320103982, "length": 11.617475007358287}, {"destination": 476556639, "path": [[1385.115438445439, 2318.252305677504], [1399.0154384444509, 2372.152305676778], [1420.4654384499804, 2440.952305677868], [1440.3154384439176, 2481.2523056780833]], "source": 1320103982, "length": 37.83487703349138}, {"destination": 1320103751, "path": [[3818.2154384429623, 2828.302305676544], [3797.4154384485814, 2801.6023056771646]], "source": 654405679, "length": 7.134699322080532}, {"destination": 482729685, "path": [[3818.2154384429623, 2828.302305676544], [4057.3154384446752, 2865.9023056771816], [4327.965438449155, 2897.0023056782425], [4448.915438445056, 2917.8523056767604], [4520.815438446845, 2926.902305677714], [4567.315438443131, 2934.1523056771734], [4864.365438443485, 2990.752305677802], [5226.065438449723, 3065.402305677978]], "source": 654405679, "length": 273.09057169716004}, {"destination": 4198258583, "path": [[3818.2154384429623, 2828.302305676544], [3805.265438444394, 3086.502305677641], [3815.1654384463995, 3233.3523056777835], [3821.815438449505, 3490.302305676707], [3753.6654384453527, 3832.6523056770866], [3737.9154384495905, 3861.7023056772837]], "source": 654405679, "length": 231.694738114616}, {"destination": 1320104098, "path": [[1675.0154384439497, 2203.2023056777207], [1715.5154384482785, 2197.8523056773724], [1784.2154384482, 2183.1523056778933]], "source": 1320103987, "length": 21.260928196711216}, {"destination": 1320104101, "path": [[1675.0154384439497, 2203.2023056777207], [1710.1154384491224, 2369.8523056765453], [1707.5154384471602, 2447.652305678005]], "source": 1320103987, "length": 54.96666525511175}, {"destination": 1316471894, "path": [[1675.0154384439497, 2203.2023056777207], [1559.8154384477425, 2218.502305677106]], "source": 1320103987, "length": 22.171031455801366}, {"destination": 1320103978, "path": [[1385.0154384442703, 3699.2523056778027], [1508.9654384468076, 3672.702305676623], [1662.4654384429505, 3632.6023056769686]], "source": 1320103988, "length": 54.82686410195565}, {"destination": 1316471917, "path": [[1385.0154384442703, 3699.2523056778027], [1381.8154384495074, 3673.302305676529]], "source": 1320103988, "length": 5.802722006144973}, {"destination": 385114529, "path": [[3381.5654384454774, -73.39769432235244], [3271.2654384496886, -266.39769432179605]], "source": 1317670965, "length": 47.772618749002966}, {"destination": 1317671386, "path": [[3381.5654384454774, -73.39769432235244], [3439.2654384447496, 40.20230567824967], [3541.765438448863, 228.95230567776537]], "source": 1317670965, "length": 73.824578624581}, {"destination": 1317671035, "path": [[3381.5654384454774, -73.39769432235244], [3273.6654384493136, -47.64769432341609]], "source": 1317670965, "length": 21.303646337831378}, {"destination": 1317671038, "path": [[1374.7654384488328, 814.752305677402], [1459.2654384486536, 810.2023056775209]], "source": 1317670967, "length": 16.1015642518737}, {"destination": 495651978, "path": [[6627.61543844681, -6282.647694321852], [6520.465438448753, -6358.197694321888], [6449.2154384439, -6403.997694322427], [6327.01543844405, -6473.9976943233305], [6234.16543844968, -6512.997694322565], [6133.715438444653, -6551.997694321798], [5773.81543844524, -6691.847694321851], [5519.015438444796, -6788.447694322741], [5328.865438443131, -6862.1976943230575]], "source": 4345393208, "length": 279.8435466188486}, {"destination": 1317670825, "path": [[3776.3654384477263, 690.7023056772488], [3651.86543844942, 718.4023056776567], [3646.4654384431583, 679.4023056766463], [3590.1654384460358, 695.4523056776907]], "source": 1317670969, "length": 44.48526089688082}, {"destination": 1317671386, "path": [[3776.3654384477263, 690.7023056772488], [3713.1154384439924, 528.7023056776974], [3541.765438448863, 228.95230567776537]], "source": 1317670969, "length": 112.18210141837801}, {"destination": 475978447, "path": [[3776.3654384477263, 690.7023056772488], [3825.2154384466053, 827.7523056765546]], "source": 1317670969, "length": 31.862967362522685}, {"destination": 1316471808, "path": [[1376.0154384456769, 3626.45230567793], [1373.5654384490203, 3606.552305678079]], "source": 1320103994, "length": 4.449829386729886}, {"destination": 1320103887, "path": [[1376.0154384456769, 3626.45230567793], [1492.8654384434026, 3601.6023056770764], [1530.4154384452318, 3571.8023056769966], [1645.7654384467446, 3548.8523056770305]], "source": 1320103994, "length": 55.16682899056775}, {"destination": 1320103835, "path": [[3089.465438449679, 3973.4023056769984], [3112.8154384489903, 3982.4023056773685], [3193.2654384476677, 4028.252305676716], [3286.615438447882, 4061.552305676841]], "source": 1320103995, "length": 42.49481497920049}, {"destination": 1320103997, "path": [[3089.465438449679, 3973.4023056769984], [3071.0154384436805, 4014.702305678242]], "source": 1320103995, "length": 9.832121295162192}, {"destination": 1320103710, "path": [[3089.465438449679, 3973.4023056769984], [3040.0654384479253, 3954.4023056770075]], "source": 1320103995, "length": 10.301259960168897}, {"destination": 1317670940, "path": [[2383.1654384451895, -134.84769432281496], [2393.91543844647, -61.44769432303576], [2388.515438447314, 11.902305677935487]], "source": 1317670972, "length": 32.79558825712202}, {"destination": 1320103995, "path": [[3071.0154384436805, 4014.702305678242], [3089.465438449679, 3973.4023056769984]], "source": 1320103997, "length": 9.832121295162192}, {"destination": 1320104083, "path": [[3071.0154384436805, 4014.702305678242], [3027.765438446295, 4111.502305677916]], "source": 1320103997, "length": 23.045270600843818}, {"destination": 1320103951, "path": [[3071.0154384436805, 4014.702305678242], [2608.5154384460907, 3847.0523056766124], [2568.315438445268, 3860.8023056774246], [2450.2654384477296, 3837.9023056780425], [2423.465438447181, 3798.902305677032], [2160.765438446788, 3796.6023056767995]], "source": 1320103997, "length": 186.81828546056423}, {"destination": 1320104097, "path": [[2831.165438443861, 3130.352305676709], [2831.165438443861, 3048.8023056776115]], "source": 1320103998, "length": 18.135898025792983}, {"destination": 1320104055, "path": [[2831.165438443861, 3130.352305676709], [2890.115438447083, 3130.952305676615]], "source": 1320103998, "length": 11.212433194458477}, {"destination": 3779390041, "path": [[2831.165438443861, 3130.352305676709], [2644.8654384481074, 3037.25230567764]], "source": 1320103998, "length": 41.0371514157765}, {"destination": 3779390041, "path": [[2831.165438443861, 3130.352305676709], [2644.8654384481074, 3037.25230567764]], "source": 1320103998, "length": 41.0371514157765}, {"destination": 1320104079, "path": [[2831.165438443861, 3130.352305676709], [2831.165438443861, 3185.8523056769172]], "source": 1320103998, "length": 12.34270153016412}, {"destination": 1320103882, "path": [[3220.5154384499224, 3419.4023056777214], [3069.865438448005, 3406.6523056779374]], "source": 1320103999, "length": 28.79127307196607}, {"destination": 1320103877, "path": [[3220.5154384499224, 3419.4023056777214], [3224.015438448191, 3341.5023056768687]], "source": 1320103999, "length": 17.336831938191082}, {"destination": 476556038, "path": [[3220.5154384499224, 3419.4023056777214], [3203.215438446705, 3801.1523056766805]], "source": 1320103999, "length": 84.9611653267391}, {"destination": 1320103877, "path": [[3048.415438449581, 3326.35230567746], [3224.015438448191, 3341.5023056768687]], "source": 1320104000, "length": 33.56595220713779}, {"destination": 1320103883, "path": [[1604.9654384460155, 3448.0023056779883], [1634.0154384479888, 3440.7023056779453]], "source": 1320104001, "length": 5.759068453303942}, {"destination": 476557270, "path": [[1604.9654384460155, 3448.0023056779883], [1361.5654384437903, 3509.302305676698]], "source": 1320104001, "length": 48.2567176234085}, {"destination": 1320103887, "path": [[1604.9654384460155, 3448.0023056779883], [1645.7654384467446, 3548.8523056770305]], "source": 1320104001, "length": 23.732339003603986}, {"destination": 1317671434, "path": [[1632.6654384499761, -270.04769432181774], [1632.5154384446705, -180.69769432216276]], "source": 1317670979, "length": 19.87055517518011}, {"destination": 1317671347, "path": [[1632.6654384499761, -270.04769432181774], [1707.2654384477914, -272.24769432265816], [1774.5654384455634, -272.447694323219]], "source": 1317670979, "length": 26.99364610241941}, {"destination": 475977519, "path": [[1632.6654384499761, -270.04769432181774], [1635.6654384495073, -441.4476943228607]], "source": 1317670979, "length": 38.12198443192752}, {"destination": 1317670914, "path": [[2034.5154384457942, 654.0523056770553], [2042.6654384451126, 690.9023056778096], [2047.3154384461623, 773.702305677304]], "source": 1317670980, "length": 26.774283271122712}, {"destination": 1317670757, "path": [[2034.5154384457942, 654.0523056770553], [2072.0654384476234, 652.10230567736]], "source": 1317670980, "length": 7.153622614060849}, {"destination": 3318976582, "path": [[-2235.4845615524255, -3740.9476943217614], [-2167.1345615530413, -3771.8976943228454]], "source": 3318976581, "length": 14.707027489906501}, {"destination": 599408518, "path": [[-2235.4845615524255, -3740.9476943217614], [-2332.634561554414, -4170.247694322171]], "source": 3318976581, "length": 97.24298915005645}, {"destination": 3318976585, "path": [[-2167.1345615530413, -3771.8976943228454], [-2136.2845615513493, -3816.647694321773], [-2228.8345615564253, -4118.247694322008], [-1850.634561556319, -4208.797694323252]], "source": 3318976582, "length": 155.57844729615954}, {"destination": 3421417540, "path": [[-4593.1845615569955, 9101.30230567674], [-4379.9345615553875, 9040.502305676768]], "source": 3421417543, "length": 42.75616151253934}, {"destination": 1320104058, "path": [[3676.0654384480063, 2415.752305678254], [3481.565438448797, 2387.052305676818]], "source": 1320104008, "length": 37.53673032864047}, {"destination": 3318976586, "path": [[-1850.634561556319, -4208.797694323252], [-1889.5845615531925, -4298.397694322276]], "source": 3318976585, "length": 21.258118660660706}, {"destination": 3318976588, "path": [[-1850.634561556319, -4208.797694323252], [-1837.2345615560448, -4157.1976943224345], [-1589.1345615557384, -4206.547694321827], [-1476.4845615502509, -3851.0476943223184], [-1641.4345615558545, -3813.197694322312]], "source": 3318976585, "length": 174.57747388599904}, {"destination": 3318976585, "path": [[-1889.5845615531925, -4298.397694322276], [-1850.634561556319, -4208.797694323252]], "source": 3318976586, "length": 21.258118660660706}, {"destination": 95386499, "path": [[-1889.5845615531925, -4298.397694322276], [-1562.8345615539274, -4418.697694323015]], "source": 3318976586, "length": 67.64787404885317}, {"destination": 1320103792, "path": [[1645.5654384444074, 3717.30230567735], [1678.215438445818, 3711.602305678241]], "source": 1320104011, "length": 6.337251201455652}, {"destination": 1320103944, "path": [[1645.5654384444074, 3717.30230567735], [1675.2654384433185, 3833.3023056775774]], "source": 1320104011, "length": 26.408436759375956}, {"destination": 1320103902, "path": [[1645.5654384444074, 3717.30230567735], [1392.6654384448511, 3761.2023056770026]], "source": 1320104011, "length": 49.07895571226455}, {"destination": 3318976582, "path": [[-1641.4345615558545, -3813.197694322312], [-2147.03456155263, -3698.547694321874], [-2167.1345615530413, -3771.8976943228454]], "source": 3318976588, "length": 116.22035166519736}, {"destination": 1316471712, "path": [[2748.8654384484335, 1614.6523056779215], [2741.4154384430844, 1662.0523056776192]], "source": 1320104015, "length": 10.636158403296678}, {"destination": 1320103571, "path": [[2748.8654384484335, 1614.6523056779215], [2839.2154384491164, 1658.802305676943], [2984.315438446572, 1689.9523056768116]], "source": 1320104015, "length": 48.24106672154275}, {"destination": 1316471935, "path": [[2748.8654384484335, 1614.6523056779215], [2760.1654384454832, 1543.052305677861]], "source": 1320104015, "length": 16.0676641198815}, {"destination": 1320103705, "path": [[3108.5654384455097, 1815.8023056766838], [3102.0654384477098, 1846.9523056765524], [3098.765438444673, 1882.7023056768867]], "source": 1320104016, "length": 15.01246510018598}, {"destination": 1320103682, "path": [[3108.5654384455097, 1815.8023056766838], [3120.1154384490337, 1760.902305678158]], "source": 1320104016, "length": 12.404977185137524}, {"destination": 1320103717, "path": [[3108.5654384455097, 1815.8023056766838], [2969.715438446485, 1809.252305676523]], "source": 1320104016, "length": 26.446291980625023}, {"destination": 1317671177, "path": [[1626.5154384456082, -22.59769432200187], [1895.115438443895, -15.597694321911604], [1964.8154384483973, -18.247694322681696]], "source": 1316694030, "length": 64.3715493167533}, {"destination": 1316694003, "path": [[1626.5154384456082, -22.59769432200187], [1623.3654384478768, 18.202305676950914]], "source": 1316694030, "length": 9.093010639043479}, {"destination": 475977438, "path": [[1626.5154384456082, -22.59769432200187], [1631.365438448995, -85.49769432342202]], "source": 1316694030, "length": 14.018334476333905}, {"destination": 3110525728, "path": [[-5117.584561553202, 509.402305677753], [-5116.934561556263, 509.20230567719216]], "source": 3110525726, "length": 0.13425897559227123}, {"destination": 3110525728, "path": [[-5117.584561553202, 509.402305677753], [-5121.934561550745, 478.6523056772296], [-5105.784561550308, 458.35230567803364], [-5115.7845615534825, 434.00230567769427], [-5153.084561555943, 427.60230567751023], [-5175.834561555348, 453.702305676984], [-5161.184561551125, 477.20230567804833], [-5136.684561556138, 484.7023056768762], [-5116.934561556263, 509.20230567719216]], "source": 3110525726, "length": 50.05161560165922}, {"destination": 481390557, "path": [[-5117.584561553202, 509.402305677753], [-5319.184561550117, 571.4023056775375]], "source": 3110525726, "length": 40.74289865114584}, {"destination": 1317671012, "path": [[3072.065438445293, 198.25230567782626], [3075.1654384459925, 76.20230567795261]], "source": 1317671000, "length": 27.149209879961376}, {"destination": 1317670941, "path": [[3072.065438445293, 198.25230567782626], [2957.165438445486, 204.6523056780103]], "source": 1317671000, "length": 21.897387850917035}, {"destination": 1317670957, "path": [[3072.065438445293, 198.25230567782626], [3167.5154384487314, 192.95230567806243]], "source": 1317671000, "length": 18.190233270732964}, {"destination": 1320103925, "path": [[1275.6154384447882, 2743.7523056779155], [1427.065438448949, 2702.1023056779113]], "source": 1320104025, "length": 30.255670490294214}, {"destination": 3779390041, "path": [[2547.865438444319, 2890.152305678129], [2644.8654384481074, 3037.25230567764]], "source": 1320104026, "length": 37.556773699575125}, {"destination": 1316471889, "path": [[2547.865438444319, 2890.152305678129], [2678.365438448793, 2835.052305677266]], "source": 1320104026, "length": 27.679010930372517}, {"destination": 1316471735, "path": [[2547.865438444319, 2890.152305678129], [2541.4654384476876, 2895.1523056779392], [2343.0154384485036, 2881.4023056771275]], "source": 1320104026, "length": 39.51535566853937}, {"destination": 1320104121, "path": [[1283.6654384500434, 2069.402305677315], [1289.0154384450625, 2032.702305676537], [1350.7154384484465, 2028.102305677848]], "source": 1320104027, "length": 20.002506534542285}, {"destination": 1320104070, "path": [[1283.6654384500434, 2069.402305677315], [1229.2154384496712, 2074.852305677055]], "source": 1320104027, "length": 10.425622251854003}, {"destination": 1320103886, "path": [[1283.6654384500434, 2069.402305677315], [1313.1654384466174, 2101.502305677627], [1377.5154384489952, 2099.2023056773946]], "source": 1320104027, "length": 21.327634062403707}, {"destination": 1320103921, "path": [[2039.8154384437817, 1844.1523056775823], [1913.0154384470188, 1869.7023056777339]], "source": 1320104029, "length": 24.775055812108857}, {"destination": 1316471698, "path": [[2039.8154384437817, 1844.1523056775823], [1994.3154384449713, 1686.4023056779588], [1884.315438445583, 1700.152305676994], [1857.5154384450343, 1585.452305677748]], "source": 1320104029, "length": 83.28753243389625}, {"destination": 1320103860, "path": [[2039.8154384437817, 1844.1523056775823], [2045.2654384470748, 1863.0023056775967], [2117.6154384434653, 1867.2523056775249]], "source": 1320104029, "length": 18.10934282612185}, {"destination": 554691043, "path": [[11428.66543844434, -5354.4476943230275], [11183.265438447164, -6008.6476943226335], [11172.515438445884, -6077.447694321947], [11199.365438443465, -6114.147694322724], [11433.115438443054, -6225.497694321902]], "source": 602361950, "length": 228.73074396752486}, {"destination": 554689606, "path": [[11428.66543844434, -5354.4476943230275], [11204.16543844982, -5266.447694323162], [10943.515438448514, -5164.297694323139]], "source": 602361950, "length": 101.48186814815807}, {"destination": 1317670864, "path": [[1985.915438446284, -261.19769432320084], [1983.6654384448593, -185.2976943226281], [2098.9654384493406, -189.84769432250914], [2096.3154384432414, -104.99769432215089], [2072.165438448792, -95.84769432180451], [2064.1154384435367, -22.047694322679945]], "source": 1317671008, "length": 79.21839740969239}, {"destination": 1317671209, "path": [[1985.915438446284, -261.19769432320084], [2074.4654384472483, -258.89769432296816]], "source": 1317671008, "length": 16.84722797411084}, {"destination": 1317671399, "path": [[1985.915438446284, -261.19769432320084], [1940.715438443874, -258.6976943224073]], "source": 1317671008, "length": 8.613526857304018}, {"destination": 1317671000, "path": [[3075.1654384459925, 76.20230567795261], [3072.065438445293, 198.25230567782626]], "source": 1317671012, "length": 27.149209879961376}, {"destination": 1317671376, "path": [[2452.8654384496917, 545.9023056779699], [2380.465438449164, 548.7023056769402]], "source": 1317671014, "length": 13.7829769992928}, {"destination": 1317671124, "path": [[2452.8654384496917, 545.9023056779699], [2450.2154384435926, 473.00230567692836]], "source": 1317671014, "length": 16.22035132188852}, {"destination": 1317671055, "path": [[2452.8654384496917, 545.9023056779699], [2674.8154384463874, 537.4023056781141]], "source": 1317671014, "length": 42.25138707705705}, {"destination": 1316471728, "path": [[2179.565438446218, 1446.9523056774847], [2180.7654384460307, 1303.0523056780653]], "source": 1320104041, "length": 32.00267642004541}, {"destination": 1320103913, "path": [[2179.565438446218, 1446.9523056774847], [2249.115438445415, 1461.6523056769638], [2380.5654384432273, 1484.6023056769297], [2512.5654384439144, 1508.0523056774098]], "source": 1320104041, "length": 64.77822583240392}, {"destination": 1320103878, "path": [[2179.565438446218, 1446.9523056774847], [2069.56543844683, 1441.0023056772302], [1981.1654384440658, 1453.6023056770375]], "source": 1320104041, "length": 38.00466403871248}, {"destination": 1316471871, "path": [[2179.565438446218, 1446.9523056774847], [2168.6654384467374, 1564.8023056780148]], "source": 1320104041, "length": 26.290430655508413}, {"destination": 1320103929, "path": [[1875.365438444021, 2573.7023056766616], [1995.265438445415, 2555.302305676577]], "source": 1320104043, "length": 23.166968824051615}, {"destination": 1316471946, "path": [[1875.365438444021, 2573.7023056766616], [1895.7654384479383, 2650.252305677725]], "source": 1320104043, "length": 17.46037848532493}, {"destination": 1316471754, "path": [[1875.365438444021, 2573.7023056766616], [1858.6154384436782, 2510.852305677602]], "source": 1320104043, "length": 14.335564595836297}, {"destination": 3569237097, "path": [[-6983.534561555871, -419.09769432280086], [-7037.734561556874, -512.797694321776]], "source": 71127148, "length": 23.247747047407017}, {"destination": 479299959, "path": [[-6983.534561555871, -419.09769432280086], [-6747.234561551351, -556.9476943225737], [-6550.634561556024, -664.2476943223841], [-6360.38456155319, -752.5976943227874], [-6196.334561550998, -823.0976943224277]], "source": 71127148, "length": 174.83733193399252}, {"destination": 479298745, "path": [[-6983.534561555871, -419.09769432280086], [-6757.484561553894, 10.002305677048184]], "source": 71127148, "length": 104.66328923487006}, {"destination": 479302935, "path": [[-6983.534561555871, -419.09769432280086], [-7469.784561550341, -213.8976943228954]], "source": 71127148, "length": 103.1176234667612}, {"destination": 1320103952, "path": [[1626.9654384473142, 3879.152305676925], [1865.015438447415, 3851.3523056771246]], "source": 1320104045, "length": 45.69422922767644}, {"destination": 495645512, "path": [[7178.065438445457, -7090.097694321784], [7224.765438444081, -7155.847694322759], [7258.365438445935, -7191.3976943225325], [7273.31543844656, -7219.4976943222855]], "source": 1779937392, "length": 34.136395595728985}, {"destination": 1582473249, "path": [[7178.065438445457, -7090.097694321784], [7117.165438444317, -7051.647694321872], [7098.415438449024, -7039.847694322532], [7030.915438448915, -6960.647694322475], [7025.315438447422, -6874.747694322281], [7041.7654384442585, -6813.147694321841], [7073.315438447025, -6768.647694322282]], "source": 1779937392, "length": 85.37222966307841}, {"destination": 1993253305, "path": [[7178.065438445457, -7090.097694321784], [7251.115438450029, -7062.547694323129], [7300.615438445846, -7032.097694322559], [7300.315438449445, -6989.097694322765], [7309.51543844327, -6952.047694323227], [7316.415438445745, -6944.347694322061], [7321.765438447869, -6925.997694322561], [7311.06543844362, -6911.097694322521], [7293.6154384493075, -6897.347694321709], [7293.6154384493075, -6884.747694321903], [7300.315438449445, -6870.347694322376], [7297.665438443346, -6857.197694323248], [7297.665438443346, -6839.997694322975], [7303.015438445471, -6827.397694323167], [7316.415438445745, -6820.497694322469], [7336.565438443187, -6825.097694322934], [7352.615438449561, -6833.147694322861], [7371.415438448992, -6838.84769432197], [7396.915438448559, -6829.6976943234], [7419.665438447964, -6823.947694321931], [7435.715438447232, -6825.147694321742], [7460.815438449231, -6845.7976943232525], [7500.46543844718, -6866.047694321864], [7555.615438448626, -6870.1976943224], [7626.215438449435, -6872.247694323263], [7676.465438443358, -6852.84769432215], [7735.965438449455, -6823.897694323122]], "source": 1779937392, "length": 165.52167722012481}, {"destination": 654400890, "path": [[3448.565438446849, 4090.4023056782535], [3640.265438448864, 4142.602305677201]], "source": 1320104049, "length": 38.26263031541784}, {"destination": 1320104053, "path": [[3448.565438446849, 4090.4023056782535], [3423.965438443588, 4218.6523056777505]], "source": 1320104049, "length": 28.902811261133586}, {"destination": 1320103607, "path": [[3448.565438446849, 4090.4023056782535], [3393.465438449539, 4071.7523056770233]], "source": 1320104049, "length": 11.270559209658089}, {"destination": 1316471754, "path": [[2104.3154384443596, 2507.852305678071], [1858.6154384436782, 2510.852305677602]], "source": 1320104050, "length": 46.73234613171011}, {"destination": 1320104100, "path": [[2104.3154384443596, 2507.852305678071], [2133.9154384492076, 2569.402305677926]], "source": 1320104050, "length": 14.800491710936909}, {"destination": 1316471813, "path": [[2104.3154384443596, 2507.852305678071], [2128.415438448883, 2507.552305678118]], "source": 1320104050, "length": 4.583523560572122}, {"destination": 1317671217, "path": [[1825.9654384493729, 534.9523056779049], [1979.8654384430847, 532.5523056782799]], "source": 1317671027, "length": 29.272613485267456}, {"destination": 1317671171, "path": [[1825.9654384493729, 534.9523056779049], [1826.115438447573, 585.3523056771337]], "source": 1317671027, "length": 11.208413392517198}, {"destination": 1317671076, "path": [[1825.9654384493729, 534.9523056779049], [1825.715438450004, 466.1023056780067]], "source": 1317671027, "length": 15.31141063675697}, {"destination": 1317670837, "path": [[1825.9654384493729, 534.9523056779049], [1736.865438445534, 546.4023056767076], [1734.2154384465402, 470.7023056766957]], "source": 1317671027, "length": 33.97741247662289}, {"destination": 1316471824, "path": [[2726.31543844426, 1757.9023056768506], [2734.815438444116, 1703.752305678208]], "source": 1320104052, "length": 12.150251849113243}, {"destination": 1320103834, "path": [[2726.31543844426, 1757.9023056768506], [2712.3154384440795, 1846.5523056772072]], "source": 1320104052, "length": 19.89390044222157}, {"destination": 1320103717, "path": [[2726.31543844426, 1757.9023056768506], [2874.065438447815, 1789.5523056772333], [2969.715438446485, 1809.252305676523]], "source": 1320104052, "length": 47.677688389889646}, {"destination": 1320104049, "path": [[3423.965438443588, 4218.6523056777505], [3448.565438446849, 4090.4023056782535]], "source": 1320104053, "length": 28.902811261133586}, {"destination": 1320103905, "path": [[2855.2654384483844, 2862.7523056776736], [2782.9154384448884, 2861.702305677838]], "source": 1320104054, "length": 13.762036180818852}, {"destination": 1320103691, "path": [[2855.2654384483844, 2862.7523056776736], [2866.5154384484026, 2720.8023056779493], [2967.965438443798, 2684.102305677172], [2972.2654384443103, 2656.302305677372]], "source": 1320104054, "length": 58.82718061429621}, {"destination": 1320103803, "path": [[2855.2654384483844, 2862.7523056776736], [2908.8654384494816, 2859.4523056781895], [3040.3654384443257, 2849.2523056780074], [3056.465438447731, 2849.1523056768388]], "source": 1320104054, "length": 38.39531056416574}, {"destination": 1317671125, "path": [[1090.665438447047, 698.4523056772218], [1100.9654384466216, 698.0023056772922]], "source": 1317671031, "length": 1.9594452399261804}, {"destination": 1317671190, "path": [[1090.665438447047, 698.4523056772218], [1093.1654384478406, 633.5523056772985]], "source": 1317671031, "length": 14.440799550784858}, {"destination": 1317670825, "path": [[3399.5654384497698, 666.4023056774937], [3488.215438444797, 647.3023056781102], [3509.7154384473583, 727.602305676811], [3590.1654384460358, 695.4523056776907]], "source": 1317671033, "length": 52.593032732619506}, {"destination": 1317670867, "path": [[3399.5654384497698, 666.4023056774937], [3292.415438444607, 688.602305677577]], "source": 1317671033, "length": 20.96676474783299}, {"destination": 1317670852, "path": [[3399.5654384497698, 666.4023056774937], [3418.5154384474004, 768.8523056774699], [3383.615438444565, 807.852305676704], [3396.665438444302, 854.3523056765423]], "source": 1317671033, "length": 44.62374996237019}, {"destination": 1317671019, "path": [[3399.5654384497698, 666.4023056774937], [3394.3654384458455, 638.1523056777638]], "source": 1317671033, "length": 6.359965436288513}, {"destination": 1320103640, "path": [[3481.565438448797, 2387.052305676818], [3492.6654384435096, 2302.4523056776047]], "source": 1320104058, "length": 18.931943791614305}, {"destination": 1320104008, "path": [[3481.565438448797, 2387.052305676818], [3676.0654384480063, 2415.752305678254]], "source": 1320104058, "length": 37.53673032864047}, {"destination": 1320103666, "path": [[3481.565438448797, 2387.052305676818], [3469.315438444198, 2480.702305676985]], "source": 1320104058, "length": 20.956660644925872}, {"destination": 1320104126, "path": [[3481.565438448797, 2387.052305676818], [3260.1654384478707, 2364.4023056768046]], "source": 1320104058, "length": 42.40628775545974}, {"destination": 1320103818, "path": [[1562.1154384461988, 2284.102305678104], [1470.4154384475032, 2298.302305677069]], "source": 1320104059, "length": 17.723201862451507}, {"destination": 1316472011, "path": [[1562.1154384461988, 2284.102305678104], [1567.965438447061, 2451.7023056773724]], "source": 1320104059, "length": 37.28908604413799}, {"destination": 1316471894, "path": [[1562.1154384461988, 2284.102305678104], [1559.8154384477425, 2218.502305677106]], "source": 1320104059, "length": 14.595377155976358}, {"destination": 1316471841, "path": [[1525.7154384471505, 3027.552305677972], [1500.7654384433522, 3030.5023056769187]], "source": 1320104061, "length": 4.7902428463473194}, {"destination": 1320103779, "path": [[1525.7154384471505, 3027.552305677972], [1573.4654384473856, 3021.8523056770864]], "source": 1320104061, "length": 9.169013243874392}, {"destination": 1320103937, "path": [[1525.7154384471505, 3027.552305677972], [1543.815438445506, 3147.4523056775893], [1533.1154384483625, 3163.5023056768573], [1567.965438447061, 3252.952305677681]], "source": 1320104061, "length": 51.96159846092882}, {"destination": 1317671274, "path": [[1459.2654384486536, 810.2023056775209], [1455.6654384492163, 913.8023056767253]], "source": 1317671038, "length": 23.04957217095178}, {"destination": 1317670955, "path": [[1459.2654384486536, 810.2023056775209], [1460.6154384466663, 771.1523056777025]], "source": 1317671038, "length": 8.687499840053013}, {"destination": 1317670967, "path": [[1459.2654384486536, 810.2023056775209], [1374.7654384488328, 814.752305677402]], "source": 1317671038, "length": 16.1015642518737}, {"destination": 1317670905, "path": [[3502.565438445515, 1318.752305676796], [3554.8654384456313, 1323.8023056771908]], "source": 1317671039, "length": 10.009724723578996}, {"destination": 1317671355, "path": [[3502.565438445515, 1318.752305676796], [3494.0654384456593, 1364.60230567792]], "source": 1317671039, "length": 10.323982712726874}, {"destination": 1317671389, "path": [[3502.565438445515, 1318.752305676796], [3509.365438446821, 1281.9023056778178]], "source": 1317671039, "length": 8.296943990467302}, {"destination": 1317670956, "path": [[3418.5154384474004, 349.152305677336], [3407.76543844612, 431.7023056774616], [3411.815438447263, 469.7523056780284]], "source": 1317671041, "length": 26.9685452209046}, {"destination": 1317671173, "path": [[3418.5154384474004, 349.152305677336], [3418.5154384474004, 300.95230567717124], [3434.6154384437, 255.10230567782344]], "source": 1317671041, "length": 21.3656182270839}, {"destination": 1317671197, "path": [[3418.5154384474004, 349.152305677336], [3338.015438444586, 360.60230567791507], [3183.3154384486306, 390.20230567743397]], "source": 1317671041, "length": 45.666601430337614}, {"destination": 1317671204, "path": [[2549.465438448806, -226.54769432328692], [2430.615438449024, -221.79769432284502]], "source": 1317671044, "length": 22.62632223713287}, {"destination": 1317671144, "path": [[2667.81543844985, 394.95230567787587], [2671.3154384481186, 463.9523056777506]], "source": 1317671045, "length": 15.35930895901093}, {"destination": 1317671120, "path": [[2667.81543844985, 394.95230567787587], [2468.9654384459914, 409.6023056767706]], "source": 1317671045, "length": 37.955893360406655}, {"destination": 1317670780, "path": [[2667.81543844985, 394.95230567787587], [2729.165438445591, 390.40230567799483]], "source": 1317671045, "length": 11.710584741425576}, {"destination": 1320104027, "path": [[1229.2154384496712, 2074.852305677055], [1283.6654384500434, 2069.402305677315]], "source": 1320104070, "length": 10.425622251854003}, {"destination": 1316471835, "path": [[1229.2154384496712, 2074.852305677055], [1211.1154384442102, 2000.602305678001], [1208.415438448185, 1954.7523056768769]], "source": 1320104070, "length": 27.076966395367613}, {"destination": 1316472035, "path": [[1229.2154384496712, 2074.852305677055], [1252.415438443677, 2170.002305676988]], "source": 1320104070, "length": 21.615695070366037}, {"destination": 1317671073, "path": [[2921.565438448681, 473.10230567809697], [2927.5154384436064, 592.0023056766865]], "source": 1317671047, "length": 26.46639118587142}, {"destination": 1317670900, "path": [[2921.565438448681, 473.10230567809697], [3187.165438447437, 438.3023056782065]], "source": 1317671047, "length": 51.099431746499505}, {"destination": 1317670902, "path": [[2921.565438448681, 473.10230567809697], [2919.615438443657, 434.00230567769427], [2914.9154384455755, 373.30230567711453]], "source": 1317671047, "length": 22.23159638555139}, {"destination": 1317671383, "path": [[2921.565438448681, 473.10230567809697], [2833.7654384458233, 491.3523056782054], [2673.365438447206, 505.1523056778251]], "source": 1317671047, "length": 47.84087562918053}, {"destination": 1320103970, "path": [[2339.5654384472664, 2800.0023056780065], [2336.3154384483664, 2724.302305677995]], "source": 1320104072, "length": 16.84615800313557}, {"destination": 1320103619, "path": [[2339.5654384472664, 2800.0023056780065], [2514.665438447139, 2807.952305676764]], "source": 1320104072, "length": 33.347886403205756}, {"destination": 1320103698, "path": [[2339.5654384472664, 2800.0023056780065], [2166.1154384489123, 2801.1023056766503], [2158.5654384495, 2731.602305678038]], "source": 1320104072, "length": 48.510857581957445}, {"destination": 1316471735, "path": [[2339.5654384472664, 2800.0023056780065], [2343.0154384485036, 2881.4023056771275]], "source": 1320104072, "length": 18.11451633037151}, {"destination": 475977497, "path": [[1614.3654384492834, -567.8976943226388], [1607.1154384462716, -614.9976943223834]], "source": 1317671049, "length": 10.564739745386188}, {"destination": 1317671085, "path": [[1614.3654384492834, -567.8976943226388], [1691.265438445555, -570.5976943222169], [1763.7154384431142, -565.9976943217515], [1825.4154384464982, -549.9476943224835]], "source": 1317671049, "length": 40.71598846635608}, {"destination": 475977519, "path": [[1614.3654384492834, -567.8976943226388], [1635.6654384495073, -441.4476943228607]], "source": 1317671049, "length": 28.411559455779734}, {"destination": 654402280, "path": [[3028.9654384461073, 3734.7023056781836], [3122.7654384480275, 3778.252305677299]], "source": 1320104074, "length": 20.298873774104056}, {"destination": 1320103624, "path": [[3028.9654384461073, 3734.7023056781836], [3056.215438448362, 3568.102305678167]], "source": 1320104074, "length": 37.41082448833617}, {"destination": 654402282, "path": [[3028.9654384461073, 3734.7023056781836], [2935.015438445987, 3691.0523056778998]], "source": 1320104074, "length": 20.334806115911352}, {"destination": 1317671113, "path": [[1213.8654384443726, 859.9523056780356], [1208.5154384493535, 805.5523056782476]], "source": 1317671053, "length": 12.140976138280276}, {"destination": 1317671195, "path": [[1213.8654384443726, 859.9523056780356], [1151.9654384457567, 867.8023056774009]], "source": 1317671053, "length": 11.900678033009571}, {"destination": 1317671349, "path": [[1213.8654384443726, 859.9523056780356], [1280.915438449881, 851.4523056781798]], "source": 1317671053, "length": 12.89026011198906}, {"destination": 1317671305, "path": [[1213.8654384443726, 859.9523056780356], [1213.8654384443726, 970.7023056773068]], "source": 1317671053, "length": 24.62984475036963}, {"destination": 1320103818, "path": [[1434.3154384448553, 2145.3023056778875], [1449.9654384465543, 2202.4023056772535], [1470.4154384475032, 2298.302305677069]], "source": 1320104078, "length": 34.72160080197815}, {"destination": 1320103892, "path": [[1434.3154384448553, 2145.3023056778875], [1337.165438449972, 2156.6023056767135], [1264.9654384446762, 2168.0023056767086]], "source": 1320104078, "length": 32.60947039410236}, {"destination": 1316472111, "path": [[1434.3154384448553, 2145.3023056778875], [1497.765438443821, 2137.9023056766755]], "source": 1320104078, "length": 12.178776649942021}, {"destination": 1317671383, "path": [[2674.8154384463874, 537.4023056781141], [2673.365438447206, 505.1523056778251]], "source": 1317671055, "length": 7.177520496830188}, {"destination": 1317671014, "path": [[2674.8154384463874, 537.4023056781141], [2452.8654384496917, 545.9023056779699]], "source": 1317671055, "length": 42.25138707705705}, {"destination": 1317671359, "path": [[2674.8154384463874, 537.4023056781141], [2678.1154384494243, 611.0523056772621]], "source": 1317671055, "length": 16.39114602510655}, {"destination": 1317671113, "path": [[1208.5154384493535, 759.7023056771235], [1208.5154384493535, 805.5523056782476]], "source": 1317671056, "length": 10.196613434677943}, {"destination": 1320103696, "path": [[3614.365438444622, 2046.4523056773487], [3635.8154384430463, 1929.45230567787], [3643.1654384472267, 1879.002305678057]], "source": 1320104081, "length": 37.64401257161613}, {"destination": 1320103786, "path": [[3614.365438444622, 2046.4523056773487], [3482.1154384445663, 2043.7023056771864]], "source": 1320104081, "length": 25.15860598390115}, {"destination": 1320103730, "path": [[3614.365438444622, 2046.4523056773487], [3692.165438444306, 2067.102305677082]], "source": 1320104081, "length": 15.492229235919195}, {"destination": 1317670818, "path": [[948.3154384497539, 174.80230567734623], [969.5654384458408, 278.10230567659744]], "source": 1317671058, "length": 23.32554099604496}, {"destination": 1317671318, "path": [[1213.9154384485096, 553.3523056779899], [1211.415438447716, 495.7523056781099]], "source": 1317671059, "length": 12.81839283298451}, {"destination": 1316694013, "path": [[1213.9154384485096, 553.3523056779899], [1219.8654384434349, 692.9523056768971]], "source": 1317671059, "length": 31.066233072435608}, {"destination": 1317671190, "path": [[1213.9154384485096, 553.3523056779899], [1114.6154384462648, 555.5523056770539], [1114.6154384462648, 603.7523056772187], [1090.46543844471, 606.0023056768671], [1093.1654384478406, 633.5523056772985]], "source": 1317671059, "length": 40.37724042036966}, {"destination": 495771120, "path": [[6703.115438448038, -4098.74769432328], [6614.565438447073, -4092.647694323048]], "source": 63303828, "length": 16.892639094483343}, {"destination": 495771302, "path": [[6703.115438448038, -4098.74769432328], [6606.165438448386, -4817.147694321733], [6584.015438448887, -5036.697694322356]], "source": 63303828, "length": 209.83231818720662}, {"destination": 1320103895, "path": [[3657.265438448576, 2596.952305676581], [3458.115438448317, 2566.3023056772263]], "source": 1320104085, "length": 38.48317551031059}, {"destination": 1320103569, "path": [[1442.9154384458798, 2772.8023056781126], [1456.715438443723, 2834.202305677991]], "source": 1320104087, "length": 13.904719282517073}, {"destination": 1320103925, "path": [[1442.9154384458798, 2772.8023056781126], [1427.065438448949, 2702.1023056779113]], "source": 1320104087, "length": 16.009503235977434}, {"destination": 1320103927, "path": [[1442.9154384458798, 2772.8023056781126], [1562.6154384449364, 2741.452305677683]], "source": 1320104087, "length": 23.80854961059022}, {"destination": 1317670907, "path": [[2723.8154384434665, 1165.652305678222], [2970.7654384480975, 1179.4023056772573]], "source": 1317671064, "length": 47.063468466937394}, {"destination": 1320103597, "path": [[3285.765438448607, 1780.1523056775181], [3424.865438447, 1804.6023056772497]], "source": 1320104089, "length": 27.006919624437735}, {"destination": 1316471934, "path": [[3285.765438448607, 1780.1523056775181], [3278.4154384444264, 1982.3023056773081]], "source": 1320104089, "length": 44.977758744998326}, {"destination": 476556047, "path": [[3285.765438448607, 1780.1523056775181], [3336.9654384429737, 1631.8523056781942]], "source": 1320104089, "length": 34.38786230921165}, {"destination": 1320103719, "path": [[3796.765438444538, 2239.1023056780314], [3753.815438443553, 2470.802305676756]], "source": 1320104090, "length": 52.171317326718984}, {"destination": 1320103627, "path": [[3796.765438444538, 2239.1023056780314], [3504.4654384464025, 2212.2523056768982]], "source": 1320104090, "length": 55.90939348710468}, {"destination": 1320104095, "path": [[3796.765438444538, 2239.1023056780314], [3845.015438443511, 2106.1023056780923], [3958.6654384464737, 2125.1023056780837]], "source": 1320104090, "length": 52.991430104791334}, {"destination": 1317670808, "path": [[2696.5154384441803, 236.80230567713068], [2685.715438445868, 185.95230567797216]], "source": 1317671067, "length": 11.493462290136344}, {"destination": 1317671112, "path": [[2696.5154384441803, 236.80230567713068], [2495.8154384435716, 252.80230567759077], [2447.8654384481047, 255.80230567712192]], "source": 1317671067, "length": 47.476415531794416}, {"destination": 1317670941, "path": [[2696.5154384441803, 236.80230567713068], [2957.165438445486, 204.6523056780103]], "source": 1317671067, "length": 50.081477362337345}, {"destination": 1317670943, "path": [[2696.5154384441803, 236.80230567713068], [2706.365438449154, 283.20230567757676]], "source": 1317671067, "length": 10.487250384349588}, {"destination": 1320103992, "path": [[3223.0154384436105, 3015.652305677463], [3220.0654384482164, 2848.252305676979]], "source": 1320104092, "length": 37.23236447903223}, {"destination": 1320103582, "path": [[3223.0154384436105, 3015.652305677463], [3080.6154384492856, 3014.7023056770195]], "source": 1320104092, "length": 27.082734400365933}, {"destination": 476556039, "path": [[3223.0154384436105, 3015.652305677463], [3227.4154384452913, 3266.7523056773007]], "source": 1320104092, "length": 55.84850637409062}, {"destination": 1320103745, "path": [[1921.5654384439063, 4221.702305677865], [1916.6654384434878, 4131.50230567716]], "source": 1320104093, "length": 20.081256400933686}, {"destination": 476559347, "path": [[1921.5654384439063, 4221.702305677865], [2165.515438449006, 4213.002305677449]], "source": 1320104093, "length": 46.43672310738913}, {"destination": 1320103846, "path": [[1739.6154384456963, 3115.352305677277], [1900.5654384471882, 3090.102305677078], [1892.2154384455325, 3044.8523056776367]], "source": 1320104094, "length": 41.30864208484062}, {"destination": 1320103881, "path": [[3958.6654384464737, 2125.1023056780837], [3980.6654384477724, 2059.602305678254]], "source": 1320104095, "length": 15.15551330956833}, {"destination": 1320104090, "path": [[3958.6654384464737, 2125.1023056780837], [3845.015438443511, 2106.1023056780923], [3796.765438444538, 2239.1023056780314]], "source": 1320104095, "length": 52.991430104791334}, {"destination": 476560879, "path": [[3958.6654384464737, 2125.1023056780837], [3938.7154384442624, 2181.8523056769122]], "source": 1320104095, "length": 13.178597338052953}, {"destination": 1320104079, "path": [[3032.315438446176, 3184.152305676591], [2831.165438443861, 3185.8523056769172]], "source": 1320104096, "length": 38.257447879579395}, {"destination": 1320103582, "path": [[3032.315438446176, 3184.152305676591], [3075.215438443024, 3078.6523056782753], [3080.6154384492856, 3014.7023056770195]], "source": 1320104096, "length": 39.098926158210574}, {"destination": 476556039, "path": [[3032.315438446176, 3184.152305676591], [3026.9654384440514, 3241.502305677102], [3227.4154384452913, 3266.7523056773007]], "source": 1320104096, "length": 51.32854635104062}, {"destination": 475977737, "path": [[2927.5154384436064, 592.0023056766865], [3197.815438447549, 571.4023056775375]], "source": 1317671073, "length": 51.6076029332685}, {"destination": 1317671047, "path": [[2927.5154384436064, 592.0023056766865], [2921.565438448681, 473.10230567809697]], "source": 1317671073, "length": 26.46639118587142}, {"destination": 1320103889, "path": [[1784.2154384482, 2183.1523056778933], [1780.6154384487627, 2166.4023056775504]], "source": 1320104098, "length": 3.787911843161209}, {"destination": 1320103987, "path": [[1784.2154384482, 2183.1523056778933], [1715.5154384482785, 2197.8523056773724], [1675.0154384439497, 2203.2023056777207]], "source": 1320104098, "length": 21.260928196711216}, {"destination": 1320103934, "path": [[1784.2154384482, 2183.1523056778933], [1835.865438444273, 2421.202305677994]], "source": 1320104098, "length": 53.843624382533996}, {"destination": 1320103928, "path": [[2133.9154384492076, 2569.402305677926], [2158.065438443657, 2652.0023056768596]], "source": 1320104100, "length": 18.934799934617903}, {"destination": 1320104050, "path": [[2133.9154384492076, 2569.402305677926], [2104.3154384443596, 2507.852305678071]], "source": 1320104100, "length": 14.800491710936909}, {"destination": 1320103757, "path": [[2133.9154384492076, 2569.402305677926], [2259.8654384466954, 2548.7523056781924], [2267.365438449076, 2523.7023056767785]], "source": 1320104100, "length": 30.140961941471726}, {"destination": 1320103987, "path": [[1707.5154384471602, 2447.652305678005], [1710.1154384491224, 2369.8523056765453], [1675.0154384439497, 2203.2023056777207]], "source": 1320104101, "length": 54.96666525511175}, {"destination": 1316472011, "path": [[1707.5154384471602, 2447.652305678005], [1567.965438447061, 2451.7023056773724]], "source": 1320104101, "length": 26.555122118588642}, {"destination": 476556302, "path": [[1707.5154384471602, 2447.652305678005], [1840.7654384446914, 2443.7523056768387]], "source": 1320104101, "length": 25.356647891741247}, {"destination": 1320104044, "path": [[1765.4154384487697, 1401.0023056769683], [1741.465438449552, 1242.2523056780933]], "source": 1320104102, "length": 35.59711600273811}, {"destination": 1320104116, "path": [[1765.4154384487697, 1401.0023056769683], [1881.8154384447894, 1392.8523056776498], [1971.3654384432289, 1380.652305677188]], "source": 1320104102, "length": 39.45618872791252}, {"destination": 1320103630, "path": [[1765.4154384487697, 1401.0023056769683], [1776.5654384476193, 1464.8023056782476]], "source": 1320104102, "length": 14.346248475275894}, {"destination": 1320103552, "path": [[2482.4654384474343, 3305.1023056778204], [2616.5654384442405, 3324.0523056772277]], "source": 1320104103, "length": 25.84947298967107}, {"destination": 1320103709, "path": [[2482.4654384474343, 3305.1023056778204], [2474.9654384450537, 3352.8023056774714]], "source": 1320104103, "length": 10.702891100523214}, {"destination": 1316471887, "path": [[2482.4654384474343, 3305.1023056778204], [2508.165438449339, 3142.002305677849]], "source": 1320104103, "length": 36.59954835662637}, {"destination": 1317671209, "path": [[2206.265438445598, -237.99769432208961], [2074.4654384472483, -258.89769432296816]], "source": 1317671080, "length": 25.4918871422821}, {"destination": 475977916, "path": [[2206.265438445598, -237.99769432208961], [2197.865438446911, -188.2476943233513], [2189.2654384458865, -26.797694323121846]], "source": 1317671080, "length": 47.120276888778804}, {"destination": 481389765, "path": [[2206.265438445598, -237.99769432208961], [2216.065438446435, -323.34769432296184]], "source": 1317671080, "length": 19.072336920180202}, {"destination": 1317670852, "path": [[3525.7654384466264, 823.9023056777484], [3396.665438444302, 854.3523056765423]], "source": 1317671081, "length": 25.46836500743212}, {"destination": 1320103701, "path": [[1841.5654384469349, 3498.4023056772176], [1854.9654384472092, 3470.852305676786], [1916.6654384434878, 3454.802305677518]], "source": 1320104106, "length": 18.900356073648673}, {"destination": 1320104118, "path": [[1841.5654384469349, 3498.4023056772176], [1865.7154384484897, 3558.052305677961]], "source": 1320104106, "length": 14.037929989939697}, {"destination": 1320103887, "path": [[1841.5654384469349, 3498.4023056772176], [1645.7654384467446, 3548.8523056770305]], "source": 1320104106, "length": 38.891791886850264}, {"destination": 475977737, "path": [[3375.565438446415, 534.9023056773206], [3292.165438445238, 564.5023056768395], [3197.815438447549, 571.4023056775375]], "source": 1317671084, "length": 35.180260657229994}, {"destination": 1317671049, "path": [[1825.4154384464982, -549.9476943224835], [1763.7154384431142, -565.9976943217515], [1691.265438445555, -570.5976943222169], [1614.3654384492834, -567.8976943226388]], "source": 1317671085, "length": 40.71598846635608}, {"destination": 1317671170, "path": [[1825.4154384464982, -549.9476943224835], [1849.3154384486843, -592.7476943217158]], "source": 1317671085, "length": 10.548091257353828}, {"destination": 1317670954, "path": [[1825.4154384464982, -549.9476943224835], [1795.6154384464185, -441.59769432283724]], "source": 1317671085, "length": 24.753401278970625}, {"destination": 1320103931, "path": [[2751.765438446796, 3297.8523056765853], [2745.8154384447653, 3366.6523056776755]], "source": 1320104110, "length": 15.341988797375777}, {"destination": 1320103700, "path": [[2751.765438446796, 3297.8523056765853], [2916.965438444663, 3328.6523056776928]], "source": 1320104110, "length": 32.15663628228263}, {"destination": 1320103605, "path": [[2751.765438446796, 3297.8523056765853], [2756.315438446677, 3245.252305676516]], "source": 1320104110, "length": 11.729809538065268}, {"destination": 1320104125, "path": [[2751.765438446796, 3297.8523056765853], [2659.5154384452258, 3285.0523056779934]], "source": 1320104110, "length": 17.773981869854477}, {"destination": 1404037024, "path": [[-759.3845615545547, 5220.752305676868], [-734.584561556062, 5271.952305676564]], "source": 1404037149, "length": 12.324432816545281}, {"destination": 1404037073, "path": [[-759.3845615545547, 5220.752305676868], [-996.1345615536743, 5317.3523056777585]], "source": 1404037149, "length": 49.89017286443166}, {"destination": 1404037125, "path": [[-759.3845615545547, 5220.752305676868], [-787.0845615514099, 5163.652305677502], [-746.8345615535554, 5129.252305676957]], "source": 1404037149, "length": 24.569843730188815}, {"destination": 1320103794, "path": [[2511.965438444008, 3723.2023056770204], [2549.2654384464686, 3742.4023056775723]], "source": 1320104112, "length": 8.279545399387459}, {"destination": 1320103796, "path": [[2511.965438444008, 3723.2023056770204], [2359.0654384477716, 3663.552305678053], [2324.1154384479046, 3662.0023056777027]], "source": 1320104112, "length": 38.61802287807165}, {"destination": 1320103975, "path": [[2511.965438444008, 3723.2023056770204], [2570.9654384442615, 3562.602305677842]], "source": 1320104112, "length": 37.43707474419652}, {"destination": 1320103794, "path": [[2640.6154384446268, 3487.8023056776897], [2629.6654384481144, 3556.3023056770503], [2624.6154384494957, 3587.852305678041], [2549.2654384464686, 3742.4023056775723]], "source": 1320104113, "length": 59.695056031371976}, {"destination": 1316472004, "path": [[2640.6154384446268, 3487.8023056776897], [2495.115438449602, 3484.652305678182], [2456.6154384473293, 3469.1523056782357]], "source": 1320104113, "length": 35.77429094541811}, {"destination": 1320103670, "path": [[2640.6154384446268, 3487.8023056776897], [2704.3154384429613, 3489.202305678063], [2757.9654384481955, 3503.0023056776827], [2786.465438447294, 3533.4523056782527]], "source": 1320104113, "length": 31.447472318625124}, {"destination": 1317671256, "path": [[2927.015438444869, -146.14769432341745], [3056.4154384435938, -153.14769432173136], [3129.215438448796, -166.99769432193534]], "source": 1317671090, "length": 38.840195478878144}, {"destination": 1317671201, "path": [[2927.015438444869, -146.14769432341745], [2951.8154384433615, -68.29769432314947], [2950.7154384447176, -47.69769432222404]], "source": 1317671090, "length": 22.530524490739417}, {"destination": 1317671102, "path": [[2927.015438444869, -146.14769432341745], [2904.6654384430326, -216.34769432310463]], "source": 1317671090, "length": 16.179738487102068}, {"destination": 1316471992, "path": [[1971.3654384432289, 1380.652305677188], [1957.3654384430483, 1272.7523056774714]], "source": 1320104116, "length": 24.143295505074363}, {"destination": 1320103722, "path": [[1971.3654384432289, 1380.652305677188], [1979.0154384438097, 1437.752305676554]], "source": 1320104116, "length": 12.781426270688103}, {"destination": 1320104102, "path": [[1971.3654384432289, 1380.652305677188], [1881.8154384447894, 1392.8523056776498], [1765.4154384487697, 1401.0023056769683]], "source": 1320104116, "length": 39.45618872791252}, {"destination": 1320104105, "path": [[2070.7654384466423, 3745.7023056770568], [2058.9654384437495, 3687.3023056767097]], "source": 1320104117, "length": 13.179965050924473}, {"destination": 1320103891, "path": [[2070.7654384466423, 3745.7023056770568], [2095.5154384481034, 3868.2523056774444]], "source": 1320104117, "length": 27.65734897202959}, {"destination": 1320103556, "path": [[2070.7654384466423, 3745.7023056770568], [1962.2654384434668, 3766.752305677912], [1967.6154384455913, 3803.452305676913], [1854.9654384472092, 3819.5523056767656]], "source": 1320104117, "length": 51.10602335356339}, {"destination": 1320104106, "path": [[1865.7154384484897, 3558.052305677961], [1841.5654384469349, 3498.4023056772176]], "source": 1320104118, "length": 14.037929989939697}, {"destination": 1320104124, "path": [[1865.7154384484897, 3558.052305677961], [2031.065438444557, 3515.5523056769057]], "source": 1320104118, "length": 32.83695694031573}, {"destination": 1320103687, "path": [[1865.7154384484897, 3558.052305677961], [1830.8154384456543, 3592.45230567673], [1852.6654384487529, 3700.452305677615]], "source": 1320104118, "length": 34.50326279224191}, {"destination": 1320103809, "path": [[2525.3654384442825, 2502.9023056770684], [2525.3654384442825, 2412.4023056781853]], "source": 1320104119, "length": 20.126311600216653}, {"destination": 1317670816, "path": [[2260.0154384448956, 473.50230567744234], [2256.3654384484266, 447.80230567731394]], "source": 1317671096, "length": 5.756720528308633}, {"destination": 1317671289, "path": [[2260.0154384448956, 473.50230567744234], [2265.0654384435143, 509.15230567660785]], "source": 1317671096, "length": 7.98587013423327}, {"destination": 1317670868, "path": [[2260.0154384448956, 473.50230567744234], [2372.415438443909, 466.1023056780067]], "source": 1317671096, "length": 21.438598333288365}, {"destination": 1320104027, "path": [[1350.7154384484465, 2028.102305677848], [1289.0154384450625, 2032.702305676537], [1283.6654384500434, 2069.402305677315]], "source": 1320104121, "length": 20.002506534542285}, {"destination": 1317670839, "path": [[1503.5154384435145, 995.9523056775055], [1377.4654384448581, 998.2523056777381]], "source": 1317671099, "length": 23.977164569222154}, {"destination": 1320103955, "path": [[2031.065438444557, 3515.5523056769057], [2042.9654384486184, 3608.1023056766526], [2051.4654384484743, 3650.1523056777787]], "source": 1320104124, "length": 30.19568292426034}, {"destination": 476557955, "path": [[2031.065438444557, 3515.5523056769057], [2009.2654384455955, 3346.2523056773107]], "source": 1320104124, "length": 37.87840462245866}, {"destination": 1320103949, "path": [[2031.065438444557, 3515.5523056769057], [2109.7654384476527, 3498.4023056772176], [2316.165438443818, 3493.802305676752]], "source": 1320104124, "length": 54.71391127455014}, {"destination": 1320104118, "path": [[2031.065438444557, 3515.5523056769057], [1865.7154384484897, 3558.052305677961]], "source": 1320104124, "length": 32.83695694031573}, {"destination": 1320104110, "path": [[2659.5154384452258, 3285.0523056779934], [2751.765438446796, 3297.8523056765853]], "source": 1320104125, "length": 17.773981869854477}, {"destination": 481389986, "path": [[2904.6654384430326, -216.34769432310463], [3067.5654384495488, -243.5476943229986]], "source": 1317671102, "length": 31.563853999636184}, {"destination": 1317671090, "path": [[2904.6654384430326, -216.34769432310463], [2927.015438444869, -146.14769432341745]], "source": 1317671102, "length": 16.179738487102068}, {"destination": 1317670782, "path": [[2904.6654384430326, -216.34769432310463], [2891.6154384432957, -214.14769432226421], [2795.7654384493935, -220.6976943224248]], "source": 1317671102, "length": 20.815488537015863}, {"destination": 1774850251, "path": [[7978.565438449436, -5569.497694322578], [8494.615438443987, -5420.897694323301]], "source": 1774850241, "length": 103.54191991915445}, {"destination": 63298510, "path": [[7978.565438449436, -5569.497694322578], [7928.415438449576, -5583.947694322688], [7870.5154384479665, -5604.0976943219075]], "source": 1774850241, "length": 21.95019408303626}, {"destination": 1774850254, "path": [[7978.565438449436, -5569.497694322578], [8184.715438446233, -5334.19769432264], [8227.065438447313, -5321.697694322225]], "source": 1774850241, "length": 73.90116428635177}, {"destination": 1317670953, "path": [[1969.465438449447, 349.152305677336], [1967.5154384444227, 314.70230567798296], [1967.3154384491909, 291.7523056780169]], "source": 1317671106, "length": 12.774014252888753}, {"destination": 1317671162, "path": [[1969.465438449447, 349.152305677336], [2238.7654384488087, 323.30230567723106]], "source": 1317671106, "length": 51.535163938376535}, {"destination": 1317671210, "path": [[1969.465438449447, 349.152305677336], [1973.3654384452848, 417.9023056778419]], "source": 1317671106, "length": 15.30728968105408}, {"destination": 1316694029, "path": [[1969.465438449447, 349.152305677336], [1825.3654384494666, 355.9523056768654]], "source": 1317671106, "length": 27.445700418017488}, {"destination": 1774850251, "path": [[8461.115438443301, -5326.497694323251], [8494.615438443987, -5420.897694323301]], "source": 1774850243, "length": 21.93871360591739}, {"destination": 1317670952, "path": [[2447.8654384481047, 255.80230567712192], [2450.2154384435926, 312.45230567655824], [2453.81543844303, 331.0023056766198]], "source": 1317671112, "length": 16.790037090393245}, {"destination": 1317671067, "path": [[2447.8654384481047, 255.80230567712192], [2495.8154384435716, 252.80230567759077], [2696.5154384441803, 236.80230567713068]], "source": 1317671112, "length": 47.476415531794416}, {"destination": 1317671350, "path": [[2447.8654384481047, 255.80230567712192], [2394.1154384488073, 259.1523056771905]], "source": 1317671112, "length": 10.248630562926603}, {"destination": 1317671056, "path": [[1208.5154384493535, 805.5523056782476], [1208.5154384493535, 759.7023056771235]], "source": 1317671113, "length": 10.196613434677943}, {"destination": 1317671053, "path": [[1208.5154384493535, 805.5523056782476], [1213.8654384443726, 859.9523056780356]], "source": 1317671113, "length": 12.140976138280276}, {"destination": 1317671422, "path": [[1208.5154384493535, 805.5523056782476], [1101.1154384448218, 812.4523056771693]], "source": 1317671113, "length": 20.48230571971239}, {"destination": 1774850241, "path": [[8494.615438443987, -5420.897694323301], [7978.565438449436, -5569.497694322578]], "source": 1774850251, "length": 103.54191991915445}, {"destination": 1774850243, "path": [[8494.615438443987, -5420.897694323301], [8461.115438443301, -5326.497694323251]], "source": 1774850251, "length": 21.93871360591739}, {"destination": 1771400942, "path": [[8494.615438443987, -5420.897694323301], [8868.415438449518, -5313.247694322953]], "source": 1774850251, "length": 75.00145481474998}, {"destination": 1316471964, "path": [[-474.58456155169415, 4652.152305677504], [-527.4345615546849, 4529.3023056771635]], "source": 476559394, "length": 29.110832221934775}, {"destination": 476559988, "path": [[-474.58456155169415, 4652.152305677504], [40.36543844421203, 4499.502305677083]], "source": 476559394, "length": 103.65497229797793}, {"destination": 481498557, "path": [[-474.58456155169415, 4652.152305677504], [-357.1345615540622, 4970.202305678129]], "source": 476559394, "length": 74.17465152300737}, {"destination": 1774850241, "path": [[8227.065438447313, -5321.697694322225], [8184.715438446233, -5334.19769432264], [7978.565438449436, -5569.497694322578]], "source": 1774850254, "length": 73.90116428635177}, {"destination": 1317670952, "path": [[2468.9654384459914, 409.6023056767706], [2453.81543844303, 331.0023056766198]], "source": 1317671120, "length": 17.71557230713414}, {"destination": 1317670756, "path": [[2468.9654384459914, 409.6023056767706], [2447.4154384463986, 411.20230567770477]], "source": 1317671120, "length": 4.114112140296424}, {"destination": 1317671045, "path": [[2468.9654384459914, 409.6023056767706], [2667.81543844985, 394.95230567787587]], "source": 1317671120, "length": 37.955893360406655}, {"destination": 1317670837, "path": [[1588.8654384497158, 465.95230567803014], [1734.2154384465402, 470.7023056766957]], "source": 1317671121, "length": 27.66191079401433}, {"destination": 475977686, "path": [[1588.8654384497158, 465.95230567803014], [1575.6154384476417, 637.452305676689], [1576.0654384493478, 677.8023056774884]], "source": 1317671121, "length": 47.19732366007811}, {"destination": 1317670846, "path": [[1588.8654384497158, 465.95230567803014], [1592.7654384455536, 415.4023056770484]], "source": 1317671121, "length": 11.266560146547539}, {"destination": 1317671336, "path": [[3364.465438444597, 1505.8023056777615], [3431.9154384476747, 1477.6023056768395], [3474.815438444523, 1468.4523056782696], [3488.765438447672, 1393.2023056781873]], "source": 1317671123, "length": 39.630104671994886}, {"destination": 475978939, "path": [[3364.465438444597, 1505.8023056777615], [3273.965438445714, 1481.3523056780298], [3217.6654384485914, 1460.0023056772216]], "source": 1317671123, "length": 29.762613338115898}, {"destination": 1317671144, "path": [[2450.2154384435926, 473.00230567692836], [2592.365438445654, 466.1023056780067], [2671.3154384481186, 463.9523056777506]], "source": 1317671124, "length": 42.09812428621653}, {"destination": 1317670756, "path": [[2450.2154384435926, 473.00230567692836], [2447.4154384463986, 411.20230567770477]], "source": 1317671124, "length": 13.753519865813072}, {"destination": 1317671014, "path": [[2450.2154384435926, 473.00230567692836], [2452.8654384496917, 545.9023056779699]], "source": 1317671124, "length": 16.22035132188852}, {"destination": 1316694013, "path": [[1100.9654384466216, 698.0023056772922], [1219.8654384434349, 692.9523056768971]], "source": 1317671125, "length": 22.63966234969577}, {"destination": 1317671422, "path": [[1100.9654384466216, 698.0023056772922], [1101.1154384448218, 812.4523056771693]], "source": 1317671125, "length": 25.45261249114392}, {"destination": 71129881, "path": [[-8332.934561551043, 2401.252305677559], [-8198.53456155073, 3087.4523056780845]], "source": 87781592, "length": 154.7299890858223}, {"destination": 251086533, "path": [[-8332.934561551043, 2401.252305677559], [-8069.584561553711, 2333.502305678081], [-8041.73456155155, 2326.3523056780145]], "source": 87781592, "length": 57.830533691491155}, {"destination": 71129462, "path": [[-8332.934561551043, 2401.252305677559], [-8954.98456155508, 2559.602305677089]], "source": 87781592, "length": 123.43245523138002}, {"destination": 85011021, "path": [[-8332.934561551043, 2401.252305677559], [-8456.184561552505, 1692.6523056781662], [-8471.334561555466, 1656.6523056766869]], "source": 87781592, "length": 167.82761130245964}, {"destination": 1317671346, "path": [[2067.4154384465737, 562.4023056771676], [2065.6654384438866, 528.1523056765991]], "source": 1317671131, "length": 7.624444169895899}, {"destination": 1317671293, "path": [[2067.4154384465737, 562.4023056771676], [2206.265438445598, 555.5523056770539], [2271.315438449051, 553.4523056773821]], "source": 1317671131, "length": 38.82922180059704}, {"destination": 1317670757, "path": [[2067.4154384465737, 562.4023056771676], [2072.0654384476234, 652.10230567736]], "source": 1317671131, "length": 19.968060804681823}, {"destination": 475978939, "path": [[3233.9654384472283, 1360.6523056779452], [3217.6654384485914, 1460.0023056772216]], "source": 1317671132, "length": 22.310836466524307}, {"destination": 1317671140, "path": [[3233.9654384472283, 1360.6523056779452], [3242.315438448884, 1252.602305678252]], "source": 1317671132, "length": 24.081809060256063}, {"destination": 1317670831, "path": [[3233.9654384472283, 1360.6523056779452], [3348.7654384458665, 1360.6523056779452], [3348.3154384441605, 1342.25230567786]], "source": 1317671132, "length": 25.925507544768987}, {"destination": 1317670792, "path": [[1162.9154384493745, 1005.1023056778519], [1122.6654384444146, 1002.8023056776192], [1122.6654384444146, 1044.102305677086], [1042.2154384457372, 1046.4023056773185], [1034.1654384475873, 1080.8023056778638], [811.5154384498169, 1083.1023056780964]], "source": 1317671134, "length": 82.31299160480859}, {"destination": 1317671195, "path": [[1162.9154384493745, 1005.1023056778519], [1151.9654384457567, 867.8023056774009]], "source": 1317671134, "length": 30.60501007454562}, {"destination": 1317671158, "path": [[1162.9154384493745, 1005.1023056778519], [1213.8654384443726, 998.2523056777381]], "source": 1317671134, "length": 9.808259115514712}, {"destination": 1317670827, "path": [[803.4654384445616, 431.7023056774616], [814.2154384458422, 342.252305676638], [886.6154384463698, 317.00230567821563], [884.5154384431453, 287.002305677575]], "source": 1317671138, "length": 41.55107037412811}, {"destination": 1317671275, "path": [[803.4654384445616, 431.7023056774616], [773.9654384479877, 450.0523056769623], [692.465438447698, 459.1523056767244]], "source": 1317671138, "length": 22.567510032922375}, {"destination": 1317670870, "path": [[803.4654384445616, 431.7023056774616], [841.0154384463908, 434.00230567769427], [851.7654384476714, 454.65230567742765], [889.3154384495006, 452.352305677195], [937.5654384484733, 440.852305677808], [998.9154384442145, 438.70230567755186]], "source": 1317671138, "length": 40.5502714729482}, {"destination": 1317671132, "path": [[3242.315438448884, 1252.602305678252], [3233.9654384472283, 1360.6523056779452]], "source": 1317671140, "length": 24.081809060256063}, {"destination": 1317670796, "path": [[3242.315438448884, 1252.602305678252], [3346.065438449841, 1248.2523056771556], [3346.565438448579, 1268.9523056774733]], "source": 1317671140, "length": 24.358907500072}, {"destination": 1317671261, "path": [[3242.315438448884, 1252.602305678252], [3245.0154384449093, 1217.3023056778475], [3242.2154384477153, 1179.4023056772573]], "source": 1317671140, "length": 16.312568210777826}, {"destination": 1317671124, "path": [[2671.3154384481186, 463.9523056777506], [2592.365438445654, 466.1023056780067], [2450.2154384435926, 473.00230567692836]], "source": 1317671144, "length": 42.09812428621653}, {"destination": 1317671045, "path": [[2671.3154384481186, 463.9523056777506], [2667.81543844985, 394.95230567787587]], "source": 1317671144, "length": 15.35930895901093}, {"destination": 1317671383, "path": [[2671.3154384481186, 463.9523056777506], [2672.8654384484685, 493.65230567666174], [2673.365438447206, 505.1523056778251]], "source": 1317671144, "length": 9.173667356856534}, {"destination": 1317671442, "path": [[2950.665438447686, 101.60230567812789], [2946.4154384442054, 34.90230567670949]], "source": 1317671147, "length": 14.855499323456446}, {"destination": 1317671356, "path": [[2950.665438447686, 101.60230567812789], [2780.1154384476945, 115.2023056771867]], "source": 1317671147, "length": 32.57461421497249}, {"destination": 1317670941, "path": [[2950.665438447686, 101.60230567812789], [2957.165438445486, 204.6523056780103]], "source": 1317671147, "length": 22.950824782283515}, {"destination": 1317670798, "path": [[3233.4154384443536, 83.05230567806632], [3303.3654384482247, 69.25230567667029]], "source": 1317671148, "length": 13.651569889855685}, {"destination": 481390834, "path": [[-3805.784561556891, 70.00230567655308], [-3622.9845615523004, -10.247694323339829], [-3423.8345615520416, -117.49769432256585]], "source": 481390832, "length": 83.83437359502858}, {"destination": 481439262, "path": [[-3805.784561556891, 70.00230567655308], [-3884.73456155225, 86.75230567689596], [-4012.9845615552995, 93.40230567822516]], "source": 481390832, "length": 39.90315282432038}, {"destination": 483098150, "path": [[-3805.784561556891, 70.00230567655308], [-3733.334561552226, 348.4023056774532], [-3602.884561551889, 754.6523056767285]], "source": 481390832, "length": 157.1180661711997}, {"destination": 481390832, "path": [[-3423.8345615520416, -117.49769432256585], [-3622.9845615523004, -10.247694323339829], [-3805.784561556891, 70.00230567655308]], "source": 481390834, "length": 83.83437359502858}, {"destination": 1316196952, "path": [[-3423.8345615520416, -117.49769432256585], [-3635.8345615568055, -694.8976943217389], [-3658.0845615503677, -735.2476943225383]], "source": 481390834, "length": 144.5089508017084}, {"destination": 1316237077, "path": [[-3423.8345615520416, -117.49769432256585], [-3245.284561550932, -192.1476943227418]], "source": 481390834, "length": 37.79610741841748}, {"destination": 481397829, "path": [[-3423.8345615520416, -117.49769432256585], [-3303.1345615555097, 211.30230567756314], [-3296.734561551773, 274.0523056772304], [-3199.234561556352, 535.1523056766894], [-3137.634561554137, 608.6523056776372]], "source": 481390834, "length": 171.7131644652808}, {"destination": 1316237077, "path": [[-3164.784561555223, -219.94769432254202], [-3245.284561550932, -192.1476943227418]], "source": 481390836, "length": 16.510033178487205}, {"destination": 1316237077, "path": [[-3164.784561555223, -219.94769432254202], [-3245.284561550932, -192.1476943227418]], "source": 481390836, "length": 16.510033178487205}, {"destination": 475980794, "path": [[2624.31543844599, 1298.5023056781843], [2411.3654384478878, 1250.152305678043]], "source": 1317671157, "length": 41.90127772621698}, {"destination": 1317671237, "path": [[2624.31543844599, 1298.5023056781843], [2662.115438447188, 1080.8023056778638]], "source": 1317671157, "length": 48.94517711218176}, {"destination": 1317671305, "path": [[1213.8654384443726, 998.2523056777381], [1213.8654384443726, 970.7023056773068]], "source": 1317671158, "length": 6.126830056208485}, {"destination": 1317671211, "path": [[1213.8654384443726, 998.2523056777381], [1211.1654384483472, 1064.7523056768193]], "source": 1317671158, "length": 14.797751189256433}, {"destination": 1317671134, "path": [[1213.8654384443726, 998.2523056777381], [1162.9154384493745, 1005.1023056778519]], "source": 1317671158, "length": 9.808259115514712}, {"destination": 481394037, "path": [[-1562.5345615504216, -639.4976943226993], [-1859.134561556175, -562.7976943234358], [-2127.284561552756, -494.79769432281273]], "source": 481390839, "length": 112.11577018674745}, {"destination": 481390470, "path": [[-1562.5345615504216, -639.4976943226993], [-1529.0345615568413, -536.1476943228638]], "source": 481390839, "length": 23.850531692405664}, {"destination": 1317670818, "path": [[1095.8154384468344, 245.90230567689275], [991.2154384466021, 268.8523056768588], [969.5654384458408, 278.10230567659744]], "source": 1317671161, "length": 25.13950243123094}, {"destination": 1317671176, "path": [[2238.7654384488087, 323.30230567723106], [2248.615438446677, 393.0023056781806]], "source": 1317671162, "length": 15.613343346523646}, {"destination": 1317670930, "path": [[2238.7654384488087, 323.30230567723106], [2231.115438448228, 269.3023056767885]], "source": 1317671162, "length": 12.096726250309576}, {"destination": 1317671106, "path": [[2238.7654384488087, 323.30230567723106], [1969.465438449447, 349.152305677336]], "source": 1317671162, "length": 51.535163938376535}, {"destination": 475979960, "path": [[4931.5654384471945, 1485.202305676836], [4959.11543844585, 1557.6023056773636]], "source": 475979135, "length": 16.93180816709218}, {"destination": 482729441, "path": [[4931.5654384471945, 1485.202305676836], [4910.865438446876, 1446.202305677602], [4741.715438449035, 1123.0023056771897]], "source": 475979135, "length": 88.27151519235389}, {"destination": 475980598, "path": [[4931.5654384471945, 1485.202305676836], [4604.3654384462225, 1613.502305676917], [4178.015438448312, 1677.702305677542], [4077.565438443287, 1665.0023056765663]], "source": 475979135, "length": 170.09642396480515}, {"destination": 2991483736, "path": [[-3375.984561550638, 7702.852305676799], [-3419.1345615539603, 7620.402305677842], [-3467.4845615541017, 7525.452305676694]], "source": 3064901886, "length": 43.12023889845412}, {"destination": 3064901891, "path": [[-3375.984561550638, 7702.852305676799], [-2907.7345615533545, 7514.7523056777745]], "source": 3064901886, "length": 98.39680854226711}, {"destination": 1575913101, "path": [[-3375.984561550638, 7702.852305676799], [-3396.634561553924, 7711.002305677895]], "source": 3064901886, "length": 4.325556667426294}, {"destination": 1316694016, "path": [[1210.2654384449352, 124.25230567814083], [1205.7654384491912, 362.85230567756344]], "source": 1317671168, "length": 53.06924619145755}, {"destination": 1316694050, "path": [[1210.2654384449352, 124.25230567814083], [1211.1154384442102, 80.75230567783365], [1207.665438442973, 2.402305677051686]], "source": 1317671168, "length": 27.112117489380054}, {"destination": 1317671324, "path": [[1210.2654384449352, 124.25230567814083], [1136.0654384446889, 126.65230567776575], [1133.3654384486636, 158.7523056780782], [1023.4154384463068, 165.65230567699984], [1004.1154384481388, 37.502305676895276]], "source": 1317671168, "length": 70.97841850334308}, {"destination": 1769172185, "path": [[3548.5154384460316, -7698.497694322626], [3220.315438447585, -7926.547694323105]], "source": 1769172084, "length": 80.41372946885421}, {"destination": 2049820665, "path": [[3548.5154384460316, -7698.497694322626], [3516.715438443896, -7656.2976943233]], "source": 1769172084, "length": 11.16410004382658}, {"destination": 1769171985, "path": [[3548.5154384460316, -7698.497694322626], [3676.4154384485437, -7609.597694322901]], "source": 1769172084, "length": 31.341635652364047}, {"destination": 385113788, "path": [[1849.3154384486843, -592.7476943217158], [1940.765438448011, -547.1976943223211]], "source": 1317671170, "length": 20.126311600216653}, {"destination": 1317671085, "path": [[1849.3154384486843, -592.7476943217158], [1825.4154384464982, -549.9476943224835]], "source": 1317671170, "length": 10.548091257353828}, {"destination": 2991482211, "path": [[-2907.7345615533545, 7514.7523056777745], [-2584.3845615511896, 7387.452305676945]], "source": 3064901891, "length": 67.70460630286675}, {"destination": 3064901886, "path": [[-2907.7345615533545, 7514.7523056777745], [-3375.984561550638, 7702.852305676799]], "source": 3064901891, "length": 98.39680854226711}, {"destination": 3064901910, "path": [[-2907.7345615533545, 7514.7523056777745], [-2921.1845615506604, 7479.152305677417], [-2942.63456155619, 7441.602305677364], [-2973.434561553745, 7401.302305677149], [-3012.634561549987, 7367.002305677772], [-3062.5845615546154, 7341.852305676965], [-3114.7345615565314, 7324.652305676693]], "source": 3064901891, "length": 60.643277543267175}, {"destination": 1618037688, "path": [[4302.215438443113, 8155.80230567825], [4278.315438448033, 8186.002305677675], [4255.415438443322, 8212.102305677148], [4228.465438444573, 8236.252305676928], [4195.6154384479305, 8262.552305676962], [4167.365438448201, 8283.25230567728], [4138.765438447934, 8303.152305677131], [4115.0154384439475, 8317.40230567668], [4081.4154384491985, 8334.75230567693], [3680.1154384491497, 8528.952305677962], [3439.465438447087, 8648.452305678235], [3347.0654384473164, 8694.152305677604], [3215.5154384483353, 8756.752305677295], [3091.2654384493976, 8814.002305676639]], "source": 482734340, "length": 274.8328878561532}, {"destination": 4402078168, "path": [[4302.215438443113, 8155.80230567825], [4233.115438445622, 8195.20230567683], [4123.56543844794, 8248.802305677928], [3950.565438444187, 8332.202305677327], [3786.4654384449636, 8415.702305677896], [3225.3154384491722, 8708.852305677085], [2993.5654384445343, 8833.402305677751]], "source": 482734340, "length": 291.0237771971985}, {"destination": 1317671041, "path": [[3434.6154384437, 255.10230567782344], [3418.5154384474004, 300.95230567717124], [3418.5154384474004, 349.152305677336]], "source": 1317671173, "length": 21.3656182270839}, {"destination": 1317671386, "path": [[3434.6154384437, 255.10230567782344], [3541.765438448863, 228.95230567776537]], "source": 1317671173, "length": 21.190813377385552}, {"destination": 1317670913, "path": [[3434.6154384437, 255.10230567782344], [3354.965438447266, 272.2523056775117]], "source": 1317671173, "length": 15.619691759258002}, {"destination": 1317671162, "path": [[2248.615438446677, 393.0023056781806], [2238.7654384488087, 323.30230567723106]], "source": 1317671176, "length": 15.613343346523646}, {"destination": 1317671357, "path": [[2248.615438446677, 393.0023056781806], [2203.6154384466045, 399.60230567714916], [2058.515438449149, 411.15230567712047]], "source": 1317671176, "length": 36.39669125496369}, {"destination": 1317670894, "path": [[2248.615438446677, 393.0023056781806], [2253.21543844359, 425.5023056778384]], "source": 1317671176, "length": 7.2803778724666754}, {"destination": 1317670864, "path": [[1964.8154384483973, -18.247694322681696], [2064.1154384435367, -22.047694322679945]], "source": 1317671177, "length": 18.903120235584208}, {"destination": 1317671230, "path": [[1964.8154384483973, -18.247694322681696], [1966.6654384451476, 211.502305678124]], "source": 1317671177, "length": 51.09537492715983}, {"destination": 1316694030, "path": [[1964.8154384483973, -18.247694322681696], [1895.115438443895, -15.597694321911604], [1626.5154384456082, -22.59769432200187]], "source": 1317671177, "length": 64.3715493167533}, {"destination": 1324294968, "path": [[3469.015438447798, 5251.402305677999], [3437.615438443231, 5375.402305677568]], "source": 1324294871, "length": 28.215474825573736}, {"destination": 1324294520, "path": [[3469.015438447798, 5251.402305677999], [3399.0654384439267, 5238.502305678238]], "source": 1324294871, "length": 13.609582761868326}, {"destination": 1324295202, "path": [[3469.015438447798, 5251.402305677999], [3812.015438448668, 5314.652305678181]], "source": 1324294871, "length": 66.73521969884368}, {"destination": 1317671190, "path": [[1001.9654384478827, 544.1023056782512], [959.065438443929, 548.7023056769402], [975.115438443197, 592.2523056778317], [1004.665438443908, 592.2523056778317], [1007.3154384500072, 649.6023056765665], [1050.265438443887, 633.5523056772985], [1093.1654384478406, 633.5523056772985]], "source": 1317671183, "length": 53.83410942739336}, {"destination": 1317670870, "path": [[1001.9654384478827, 544.1023056782512], [998.9154384442145, 438.70230567755186]], "source": 1317671183, "length": 23.447322066213577}, {"destination": 1317671318, "path": [[1001.9654384478827, 544.1023056782512], [1157.515438443113, 509.70230567770614], [1211.415438447716, 495.7523056781099]], "source": 1317671183, "length": 41.26438467308418}, {"destination": 1317671360, "path": [[2494.1654384491585, 151.80230567679587], [2498.765438446071, 207.25230567819608]], "source": 1317671184, "length": 12.362765934741741}, {"destination": 1317671425, "path": [[2494.1654384491585, 151.80230567679587], [2489.665438446309, 97.20230567822341]], "source": 1317671184, "length": 12.172484716469873}, {"destination": 1317671311, "path": [[2494.1654384491585, 151.80230567679587], [2608.465438449059, 140.40230567680112], [2674.8154384463874, 136.00230567689664]], "source": 1317671184, "length": 34.5402135302322}, {"destination": 4708397770, "path": [[-6777.334561554937, -6005.797694323079], [-6826.034561555616, -6079.447694322226], [-7031.384561550169, -6038.297694322736]], "source": 4708397784, "length": 58.92011311260441}, {"destination": 4708397779, "path": [[-6777.334561554937, -6005.797694323079], [-7002.184561549995, -5953.497694322962]], "source": 4708397784, "length": 44.30830977167789}, {"destination": 4708397783, "path": [[-6777.334561554937, -6005.797694323079], [-6728.284561553721, -5931.6476943234165]], "source": 4708397784, "length": 18.94479304418698}, {"destination": 1317671179, "path": [[1084.1654384492472, -89.0476943222751], [1087.7654384486846, 8.70230567784347]], "source": 1317671186, "length": 21.749539662456755}, {"destination": 1316694037, "path": [[1084.1654384492472, -89.0476943222751], [1120.665438449464, -96.49769432229505], [1203.3654384495662, -94.69769432257635]], "source": 1317671186, "length": 22.868341889591708}, {"destination": 1317671375, "path": [[1084.1654384492472, -89.0476943222751], [988.0154384447337, -69.34769432298538]], "source": 1317671186, "length": 18.80248900209746}, {"destination": 1317671344, "path": [[2417.815438448656, 10.802305677515278], [2432.165438449374, 100.05230567777801], [2377.715438449002, 100.05230567777801]], "source": 1317671187, "length": 30.390127706474246}, {"destination": 1317671379, "path": [[2417.815438448656, 10.802305677515278], [2447.5154384475672, 9.65230567828712]], "source": 1317671187, "length": 5.653243563700906}, {"destination": 1317670940, "path": [[2417.815438448656, 10.802305677515278], [2388.515438447314, 11.902305677935487]], "source": 1317671187, "length": 5.577810106282982}, {"destination": 2991483735, "path": [[-3885.334561552156, 7334.802305678068], [-3957.9845615520526, 7397.152305676613], [-3988.184561556807, 7424.652305678236], [-4005.534561557056, 7453.802305677826], [-4011.2845615567494, 7476.852305677184], [-4006.7845615539, 7499.402305677805], [-3968.8845615515334, 7547.752305677946], [-3954.1345615532464, 7557.652305678175], [-3935.534561556153, 7561.5523056775655], [-3663.434561552492, 7559.752305677847], [-3599.6845615500206, 7555.402305676751], [-3540.534561551567, 7547.3523056768245], [-3488.4845615508198, 7532.802305677322]], "source": 3064901908, "length": 151.44545618915092}, {"destination": 1317671059, "path": [[1093.1654384478406, 633.5523056772985], [1090.46543844471, 606.0023056768671], [1114.6154384462648, 603.7523056772187], [1114.6154384462648, 555.5523056770539], [1213.9154384485096, 553.3523056779899]], "source": 1317671190, "length": 40.37724042036966}, {"destination": 1317671031, "path": [[1093.1654384478406, 633.5523056772985], [1090.665438447047, 698.4523056772218]], "source": 1317671190, "length": 14.440799550784858}, {"destination": 1317671183, "path": [[1093.1654384478406, 633.5523056772985], [1050.265438443887, 633.5523056772985], [1007.3154384500072, 649.6023056765665], [1004.665438443908, 592.2523056778317], [975.115438443197, 592.2523056778317], [959.065438443929, 548.7023056769402], [1001.9654384478827, 544.1023056782512]], "source": 1317671190, "length": 53.83410942739336}, {"destination": 3064901918, "path": [[-2785.2345615499985, 7279.152305677882], [-2826.9345615541397, 7241.802305676614], [-2887.434561550606, 7196.202305676636], [-2950.184561555602, 7161.502305677914], [-3024.5845615510802, 7131.752305676642]], "source": 3064901912, "length": 56.65638723664303}, {"destination": 3027169576, "path": [[-3946.7845615561714, 5283.202305676582], [-3905.384561555536, 5243.802305678002], [-3855.0845615503704, 5190.352305676882], [-3813.1845615509974, 5174.102305677053], [-3776.634561553749, 5175.402305678034], [-3754.5345615512815, 5187.752305676696], [-3739.3345615512885, 5223.602305678199], [-3745.4345615515194, 5247.702305677393], [-3767.484561556955, 5269.852305676892], [-3914.7845615516985, 5325.552305677661]], "source": 3027169562, "length": 98.83155318971339}, {"destination": 3027169576, "path": [[-3946.7845615561714, 5283.202305676582], [-3948.0345615530155, 5300.452305677439], [-3939.68456155136, 5316.102305677361], [-3914.7845615516985, 5325.552305677661]], "source": 3027169562, "length": 12.85111052842719}, {"destination": 3027169571, "path": [[-3946.7845615561714, 5283.202305676582], [-4017.3845615569803, 5364.302305677526]], "source": 3027169562, "length": 22.485272205968485}, {"destination": 1317670918, "path": [[1151.9654384457567, 867.8023056774009], [1101.8654384500337, 874.1523056770006]], "source": 1317671195, "length": 9.63208736966862}, {"destination": 1317671134, "path": [[1151.9654384457567, 867.8023056774009], [1162.9154384493745, 1005.1023056778519]], "source": 1317671195, "length": 30.60501007454562}, {"destination": 1317671053, "path": [[1151.9654384457567, 867.8023056774009], [1213.8654384443726, 859.9523056780356]], "source": 1317671195, "length": 11.900678033009571}, {"destination": 1317671041, "path": [[3183.3154384486306, 390.20230567743397], [3338.015438444586, 360.60230567791507], [3418.5154384474004, 349.152305677336]], "source": 1317671197, "length": 45.666601430337614}, {"destination": 1317670900, "path": [[3183.3154384486306, 390.20230567743397], [3187.165438447437, 438.3023056782065]], "source": 1317671197, "length": 10.722241546327064}, {"destination": 1317670767, "path": [[3183.3154384486306, 390.20230567743397], [3178.365438444075, 328.10230567825727]], "source": 1317671197, "length": 13.842354314313749}, {"destination": 3064901912, "path": [[-3024.5845615510802, 7131.752305676642], [-2950.184561555602, 7161.502305677914], [-2887.434561550606, 7196.202305676636], [-2826.9345615541397, 7241.802305676614], [-2785.2345615499985, 7279.152305677882]], "source": 3064901918, "length": 56.65638723664303}, {"destination": 3064901914, "path": [[-3024.5845615510802, 7131.752305676642], [-3088.784561555258, 7110.752305678147], [-3148.484561556586, 7096.0523056768925], [-3238.2345615502572, 7082.502305676641], [-3315.7345615535405, 7080.0523056782085], [-3405.734561553686, 7091.652305676987], [-3491.134561556919, 7116.352305677864], [-3596.084561550583, 7158.852305677144], [-3712.4845615537083, 7222.052305676741]], "source": 3064901918, "length": 139.7426100751877}, {"destination": 3064901926, "path": [[-3024.5845615510802, 7131.752305676642], [-2871.334561554306, 7047.952305677896], [-2831.0845615564517, 7025.9523056765975]], "source": 3064901918, "length": 43.68195225053988}, {"destination": 874296162, "path": [[-8915.534561552362, -7176.797694322446], [-8908.484561551688, -7250.647694322154], [-8948.68456155251, -7356.147694322246], [-9077.434561554299, -7635.947694321743], [-9096.234561553729, -7672.647694322521], [-9142.534561554783, -7744.547694322535]], "source": 874295583, "length": 135.18557518354564}, {"destination": 1317671442, "path": [[2950.7154384447176, -47.69769432222404], [2946.4154384442054, 34.90230567670949]], "source": 1317671201, "length": 18.387598760871096}, {"destination": 1317671227, "path": [[2950.7154384447176, -47.69769432222404], [3051.0154384444377, -68.29769432314947], [3138.5654384479267, -82.64769432209107]], "source": 1317671201, "length": 36.569339057435485}, {"destination": 1317671090, "path": [[2950.7154384447176, -47.69769432222404], [2951.8154384433615, -68.29769432314947], [2927.015438444869, -146.14769432341745]], "source": 1317671201, "length": 22.530524490739417}, {"destination": 1317671243, "path": [[2950.7154384447176, -47.69769432222404], [2833.7654384458233, -47.64769432341609], [2664.815438443213, -59.14769432280309], [2439.11543844888, -79.74769432195217]], "source": 1317671201, "length": 97.63700069753007}, {"destination": 3027169576, "path": [[-4017.3845615569803, 5364.302305677526], [-3914.7845615516985, 5325.552305677661]], "source": 3027169571, "length": 21.331972575144412}, {"destination": 3027169562, "path": [[-4017.3845615569803, 5364.302305677526], [-3946.7845615561714, 5283.202305676582]], "source": 3027169571, "length": 22.485272205968485}, {"destination": 3027169573, "path": [[-4017.3845615569803, 5364.302305677526], [-4063.8345615562343, 5422.3023056767515], [-4169.5345615551105, 5455.752305676853]], "source": 3027169571, "length": 37.069765730756714}, {"destination": 1317670890, "path": [[2430.615438449024, -221.79769432284502], [2428.7654384451685, -189.84769432250914], [2429.565438447412, -181.14769432209243]], "source": 1317671204, "length": 9.055418493744138}, {"destination": 1317671044, "path": [[2430.615438449024, -221.79769432284502], [2549.465438448806, -226.54769432328692]], "source": 1317671204, "length": 22.62632223713287}, {"destination": 1317671082, "path": [[2430.615438449024, -221.79769432284502], [2431.465438448299, -235.74769432244125], [2469.015438443023, -260.94769432205567], [2477.465438445847, -303.0476943219895]], "source": 1317671204, "length": 21.681794764048238}, {"destination": 483106129, "path": [[-4169.5345615551105, 5455.752305676853], [-4171.734561552398, 5480.202305676585], [-4166.5845615526105, 5548.8523056776985]], "source": 3027169573, "length": 20.752080693111715}, {"destination": 3027169571, "path": [[-4169.5345615551105, 5455.752305676853], [-4063.8345615562343, 5422.3023056767515], [-4017.3845615569803, 5364.302305677526]], "source": 3027169573, "length": 37.069765730756714}, {"destination": 2991482211, "path": [[-2831.0845615564517, 7025.9523056765975], [-2584.3845615511896, 7387.452305676945]], "source": 3064901926, "length": 93.08553456802262}, {"destination": 2991482212, "path": [[-2831.0845615564517, 7025.9523056765975], [-2949.534561551559, 6852.402305677075]], "source": 3064901926, "length": 44.690092084675776}, {"destination": 3064901918, "path": [[-2831.0845615564517, 7025.9523056765975], [-2871.334561554306, 7047.952305677896], [-3024.5845615510802, 7131.752305676642]], "source": 3064901926, "length": 43.68195225053988}, {"destination": 1319204581, "path": [[4549.215438444776, 4676.102305676722], [4560.215438445425, 4564.702305676959]], "source": 476559409, "length": 24.86257286308373}, {"destination": 1324294751, "path": [[4549.215438444776, 4676.102305676722], [4515.215438445352, 4675.202305676862]], "source": 476559409, "length": 6.469555410373845}, {"destination": 3027169562, "path": [[-3914.7845615516985, 5325.552305677661], [-3767.484561556955, 5269.852305676892], [-3745.4345615515194, 5247.702305677393], [-3739.3345615512885, 5223.602305678199], [-3754.5345615512815, 5187.752305676696], [-3776.634561553749, 5175.402305678034], [-3813.1845615509974, 5174.102305677053], [-3855.0845615503704, 5190.352305676882], [-3905.384561555536, 5243.802305678002], [-3946.7845615561714, 5283.202305676582]], "source": 3027169576, "length": 98.83155318971339}, {"destination": 3027169562, "path": [[-3914.7845615516985, 5325.552305677661], [-3939.68456155136, 5316.102305677361], [-3948.0345615530155, 5300.452305677439], [-3946.7845615561714, 5283.202305676582]], "source": 3027169576, "length": 12.85111052842719}, {"destination": 3027169571, "path": [[-3914.7845615516985, 5325.552305677661], [-4017.3845615569803, 5364.302305677526]], "source": 3027169576, "length": 21.331972575144412}, {"destination": 1317671080, "path": [[2074.4654384472483, -258.89769432296816], [2206.265438445598, -237.99769432208961]], "source": 1317671209, "length": 25.4918871422821}, {"destination": 1317671008, "path": [[2074.4654384472483, -258.89769432296816], [1985.915438446284, -261.19769432320084]], "source": 1317671209, "length": 16.84722797411084}, {"destination": 1317671394, "path": [[2074.4654384472483, -258.89769432296816], [2090.9154384440853, -306.8476943219878], [2031.4654384492314, -322.29769432312594]], "source": 1317671209, "length": 22.929082153958444}, {"destination": 1317670873, "path": [[1973.3654384452848, 417.9023056778419], [1825.5654384446984, 413.3523056779609]], "source": 1317671210, "length": 28.125893538250203}, {"destination": 1317671106, "path": [[1973.3654384452848, 417.9023056778419], [1969.465438449447, 349.152305677336]], "source": 1317671210, "length": 15.30728968105408}, {"destination": 1317671357, "path": [[1973.3654384452848, 417.9023056778419], [2058.515438449149, 411.15230567712047]], "source": 1317671210, "length": 16.262525416353714}, {"destination": 1317670845, "path": [[1973.3654384452848, 417.9023056778419], [1975.665438443741, 459.0023056767478]], "source": 1317671210, "length": 9.150318021158022}, {"destination": 1317671158, "path": [[1211.1654384483472, 1064.7523056768193], [1213.8654384443726, 998.2523056777381]], "source": 1317671211, "length": 14.797751189256433}, {"destination": 1891590997, "path": [[-7162.734561553918, -1880.247694321824], [-7196.334561555773, -1860.2976943231652]], "source": 1890819995, "length": 7.778914530539303}, {"destination": 1317671298, "path": [[1785.9154384467502, 780.3023056780489], [1653.7154384437258, 762.0023056773562], [1577.0154384497914, 759.7023056771235]], "source": 1317671214, "length": 40.06374216340848}, {"destination": 1317671254, "path": [[1785.9154384467502, 780.3023056780489], [1784.9654384463065, 666.9523056768156]], "source": 1317671214, "length": 25.208709233258762}, {"destination": 1317671438, "path": [[1785.9154384467502, 780.3023056780489], [1930.0154384467305, 791.8023056774359]], "source": 1317671214, "length": 27.523089996437008}, {"destination": 1317671277, "path": [[1785.9154384467502, 780.3023056780489], [1787.1154384465626, 924.852305677959]], "source": 1317671214, "length": 32.147385840805455}, {"destination": 1317671425, "path": [[2664.815438443213, 87.6523056767553], [2618.3154384469276, 89.40230567766605], [2489.665438446309, 97.20230567822341]], "source": 1317671216, "length": 33.37790273834784}, {"destination": 1317671363, "path": [[2664.815438443213, 87.6523056767553], [2664.815438443213, 37.20230567694216]], "source": 1317671216, "length": 11.220066850478286}, {"destination": 1317671311, "path": [[2664.815438443213, 87.6523056767553], [2674.8154384463874, 136.00230567689664]], "source": 1317671216, "length": 10.919638307503762}, {"destination": 1317670848, "path": [[1979.8654384430847, 532.5523056782799], [1982.7154384444157, 582.9023056769245]], "source": 1317671217, "length": 11.21042347366399}, {"destination": 1317671346, "path": [[1979.8654384430847, 532.5523056782799], [2065.6654384438866, 528.1523056765991]], "source": 1317671217, "length": 16.346547181030946}, {"destination": 1317671027, "path": [[1979.8654384430847, 532.5523056782799], [1825.9654384493729, 534.9523056779049]], "source": 1317671217, "length": 29.272613485267456}, {"destination": 1317670845, "path": [[1979.8654384430847, 532.5523056782799], [1975.665438443741, 459.0023056767478]], "source": 1317671217, "length": 16.376293239257}, {"destination": 5021317169, "path": [[-9038.684561552656, -2372.997694322976], [-7817.084561551724, -3176.547694321741], [-7497.784561550702, -3382.647694323282]], "source": 5021317171, "length": 369.15779539844004}, {"destination": 476682044, "path": [[-9038.684561552656, -2372.997694322976], [-8975.48456155306, -2307.797694323099]], "source": 5021317171, "length": 18.83314161035623}, {"destination": 1317671399, "path": [[1883.0654384487389, -267.94769432214594], [1940.715438443874, -258.6976943224073]], "source": 1317671221, "length": 11.15481227338708}, {"destination": 1317671414, "path": [[1883.0654384487389, -267.94769432214594], [1905.8654384451756, -359.5976943220336], [1940.715438443874, -345.8476943229982]], "source": 1317671221, "length": 28.13781413885638}, {"destination": 1317671095, "path": [[1883.0654384487389, -267.94769432214594], [1821.115438445986, -263.4976943234335]], "source": 1317671221, "length": 11.822415741931325}, {"destination": 1317671354, "path": [[1631.6154384483639, -105.0476943227352], [1935.365438448855, -104.99769432215089]], "source": 1317671223, "length": 57.76444642214464}, {"destination": 1317671434, "path": [[1631.6154384483639, -105.0476943227352], [1632.5154384446705, -180.69769432216276]], "source": 1317671223, "length": 16.82474429420918}, {"destination": 475977438, "path": [[1631.6154384483639, -105.0476943227352], [1631.365438448995, -85.49769432342202]], "source": 1317671223, "length": 4.348415881779713}, {"destination": 1317671195, "path": [[1101.8654384500337, 874.1523056770006], [1151.9654384457567, 867.8023056774009]], "source": 1317670918, "length": 9.63208736966862}, {"destination": 1317670803, "path": [[1101.8654384500337, 874.1523056770006], [1001.9654384478827, 888.1523056771812]], "source": 1317670918, "length": 19.252006807141587}, {"destination": 1317671422, "path": [[1101.8654384500337, 874.1523056770006], [1101.1154384448218, 812.4523056771693]], "source": 1317670918, "length": 13.722686015884102}, {"destination": 1317671256, "path": [[3138.5654384479267, -82.64769432209107], [3129.215438448796, -166.99769432193534]], "source": 1317671227, "length": 18.842710324321008}, {"destination": 1317671201, "path": [[3138.5654384479267, -82.64769432209107], [3051.0154384444377, -68.29769432314947], [2950.7154384447176, -47.69769432222404]], "source": 1317671227, "length": 36.569339057435485}, {"destination": 1317670983, "path": [[3138.5654384479267, -82.64769432209107], [3144.4654384458204, -29.297694322139023]], "source": 1317671227, "length": 11.91808388598938}, {"destination": 478373282, "path": [[-6741.38456155049, 5924.65230567818], [-5853.734561554802, 5629.852305677474]], "source": 95612298, "length": 181.10911279024717}, {"destination": 971168076, "path": [[-6741.38456155049, 5924.65230567818], [-6595.134561550253, 6395.0523056774955]], "source": 95612298, "length": 108.24733463103367}, {"destination": 1317670953, "path": [[1966.6654384451476, 211.502305678124], [1967.3154384491909, 291.7523056780169]], "source": 1317671230, "length": 17.846851250397627}, {"destination": 1317671177, "path": [[1966.6654384451476, 211.502305678124], [1964.8154384483973, -18.247694322681696]], "source": 1317671230, "length": 51.09537492715983}, {"destination": 1317670820, "path": [[1966.6654384451476, 211.502305678124], [1889.765438448876, 216.102305676813], [1742.26543844469, 218.40230567704566], [1743.9154384462086, 305.5023056770523]], "source": 1317671230, "length": 62.0879352627191}, {"destination": 1317671415, "path": [[1966.6654384451476, 211.502305678124], [2069.465438445661, 206.90230567765866]], "source": 1317671230, "length": 19.576505597237695}, {"destination": 1317671360, "path": [[2685.715438445868, 185.95230567797216], [2544.1154384466813, 204.6523056780103], [2498.765438446071, 207.25230567819608]], "source": 1317670808, "length": 35.891444383912635}, {"destination": 1317671067, "path": [[2685.715438445868, 185.95230567797216], [2696.5154384441803, 236.80230567713068]], "source": 1317670808, "length": 11.493462290136344}, {"destination": 1317671311, "path": [[2685.715438445868, 185.95230567797216], [2674.8154384463874, 136.00230567689664]], "source": 1317670808, "length": 11.300905842207447}, {"destination": 1317681865, "path": [[2662.115438447188, 1080.8023056778638], [2635.165438448439, 950.4523056769187]], "source": 1317671237, "length": 29.438251352386057}, {"destination": 1317671157, "path": [[2662.115438447188, 1080.8023056778638], [2624.31543844599, 1298.5023056781843]], "source": 1317671237, "length": 48.94517711218176}, {"destination": 1317681862, "path": [[2662.115438447188, 1080.8023056778638], [2970.5654384457603, 1073.95230567775], [3093.965438445423, 1062.4523056765865]], "source": 1317671237, "length": 82.28615048354848}, {"destination": 1765485334, "path": [[6688.565438444983, -6197.397694322149], [6821.165438445576, -6148.297694322125]], "source": 63312200, "length": 27.4762231826099}, {"destination": 1317671370, "path": [[2020.7154384479509, -509.3476943223152], [1971.6654384467347, -424.1976943220038]], "source": 1317671241, "length": 21.10920873946343}, {"destination": 385113789, "path": [[2020.7154384479509, -509.3476943223152], [2086.215438446004, -491.94769432325813]], "source": 1317671241, "length": 13.043174832482231}, {"destination": 1317671201, "path": [[2439.11543844888, -79.74769432195217], [2664.815438443213, -59.14769432280309], [2833.7654384458233, -47.64769432341609], [2950.7154384447176, -47.69769432222404]], "source": 1317671243, "length": 97.63700069753006}, {"destination": 1317671379, "path": [[2439.11543844888, -79.74769432195217], [2447.5154384475672, 9.65230567828712]], "source": 1317671243, "length": 19.945932019979463}, {"destination": 1317670854, "path": [[2439.11543844888, -79.74769432195217], [2432.4654384457745, -150.39769432334538]], "source": 1317671243, "length": 15.762998637624278}, {"destination": 3356049696, "path": [[5896.965438445533, 1041.8023056768534], [5813.065438445619, 1084.3023056779089], [5832.365438443787, 1118.5023056778932]], "source": 2367476044, "length": 26.991295181670004}, {"destination": 2367476059, "path": [[5896.965438445533, 1041.8023056768534], [5988.165438445492, 1165.652305678222]], "source": 2367476044, "length": 32.54901127600538}, {"destination": 2367476046, "path": [[5896.965438445533, 1041.8023056768534], [5923.8154384431145, 993.6523056772728]], "source": 2367476044, "length": 11.863130984494155}, {"destination": 3356046289, "path": [[5923.8154384431145, 993.6523056772728], [5864.765438445829, 907.6523056776864], [5901.565438449552, 885.9523056781171]], "source": 2367476046, "length": 30.679584302665543}, {"destination": 2367476044, "path": [[5923.8154384431145, 993.6523056772728], [5896.965438445533, 1041.8023056768534]], "source": 2367476046, "length": 11.863130984494155}, {"destination": 2367476047, "path": [[5923.8154384431145, 993.6523056772728], [6079.365438445449, 915.6523056770283]], "source": 2367476046, "length": 34.292460030357574}, {"destination": 3356046290, "path": [[6079.365438445449, 915.6523056770283], [6159.015438448989, 941.6023056765255], [6298.5154384449515, 927.8023056769058], [6366.365438445599, 899.6023056777602], [6383.465438446478, 923.4523056775856]], "source": 2367476047, "length": 63.484877344850574}, {"destination": 2367476046, "path": [[6079.365438445449, 915.6523056770283], [5923.8154384431145, 993.6523056772728]], "source": 2367476047, "length": 34.292460030357574}, {"destination": 3356046287, "path": [[6079.365438445449, 915.6523056770283], [6006.665438448522, 828.2523056770685], [5966.015438445993, 859.5023056781059]], "source": 2367476047, "length": 34.24774247600731}, {"destination": 599408785, "path": [[-1809.2845615527153, -5278.097694322525], [-2198.034561551765, -5213.497694322556], [-2578.2845615509586, -5118.1976943226455]], "source": 210686289, "length": 150.65100869396983}, {"destination": 267198012, "path": [[-1809.2845615527153, -5278.097694322525], [-1931.5345615567026, -5675.747694322553], [-1982.384561550532, -5876.847694322507]], "source": 210686289, "length": 137.19358037208747}, {"destination": 1316694010, "path": [[1784.9654384463065, 666.9523056768156], [1826.3654384469419, 664.8023056765595]], "source": 1317671254, "length": 7.8876434013744285}, {"destination": 1317671214, "path": [[1784.9654384463065, 666.9523056768156], [1785.9154384467502, 780.3023056780489]], "source": 1317671254, "length": 25.208709233258762}, {"destination": 1317671090, "path": [[3129.215438448796, -166.99769432193534], [3056.4154384435938, -153.14769432173136], [2927.015438444869, -146.14769432341745]], "source": 1317671256, "length": 38.840195478878144}, {"destination": 1317671227, "path": [[3129.215438448796, -166.99769432193534], [3138.5654384479267, -82.64769432209107]], "source": 1317671256, "length": 18.842710324321008}, {"destination": 481390039, "path": [[3129.215438448796, -166.99769432193534], [3124.815438447115, -206.59769432285202], [3120.0654384448967, -258.9976943223604]], "source": 1317671256, "length": 20.535085703715524}, {"destination": 483103082, "path": [[-3912.9345615549482, 6471.802305677344], [-3902.2845615548363, 6540.252305677896]], "source": 483103066, "length": 15.356668163113424}, {"destination": 483103362, "path": [[-3912.9345615549482, 6471.802305677344], [-4207.23456155514, 6512.252305677535], [-4538.134561556717, 6550.35230567691]], "source": 483103066, "length": 120.19759774721214}, {"destination": 2367476044, "path": [[5988.165438445492, 1165.652305678222], [5896.965438445533, 1041.8023056768534]], "source": 2367476059, "length": 32.54901127600538}, {"destination": 2367476061, "path": [[5988.165438445492, 1165.652305678222], [6111.5654384451545, 1200.102305677575]], "source": 2367476059, "length": 24.686680890822068}, {"destination": 3356049693, "path": [[5988.165438445492, 1165.652305678222], [5896.215438447427, 1208.1523056775013], [5869.865438448585, 1164.2023056772643]], "source": 2367476059, "length": 30.861186056794388}, {"destination": 3356046288, "path": [[6275.16543844564, 1103.7523056778298], [6302.015438443221, 1039.5023056766206], [6361.015438443474, 1016.6023056772389], [6339.915438445587, 967.2523056778459]], "source": 2367476060, "length": 39.18067293537953}, {"destination": 3356046291, "path": [[6275.16543844564, 1103.7523056778298], [6326.115438447743, 1163.4023056767974], [6281.215438448839, 1190.9523056772287]], "source": 2367476060, "length": 26.93724163272421}, {"destination": 2367476061, "path": [[6275.16543844564, 1103.7523056778298], [6111.5654384451545, 1200.102305677575]], "source": 2367476060, "length": 37.77750321457774}, {"destination": 2367476060, "path": [[6111.5654384451545, 1200.102305677575], [6275.16543844564, 1103.7523056778298]], "source": 2367476061, "length": 37.77750321457774}, {"destination": 2367476059, "path": [[6111.5654384451545, 1200.102305677575], [5988.165438445492, 1165.652305678222]], "source": 2367476061, "length": 24.686680890822068}, {"destination": 3356046292, "path": [[6111.5654384451545, 1200.102305677575], [6174.565438449519, 1267.7523056776608], [6221.315438445174, 1238.452305678095]], "source": 2367476061, "length": 30.255713267079592}, {"destination": 4867862897, "path": [[8096.415438444637, -989.5476943224679], [8134.215438445835, -938.7976943227017], [8216.01543844963, -872.8476943229424], [8253.565438444355, -825.2476943226839], [8307.865438446526, -743.2476943218802], [8334.015438443032, -691.6476943228389], [8344.065438443238, -637.1976943224666], [8376.965438444018, -576.9976943224009], [8387.665438448266, -540.8476943227214], [8387.665438448266, -499.54769432325463], [8393.015438443286, -455.3976943224569], [8421.865438450026, -430.7476943221644], [8449.365438444545, -423.2976943221445], [8476.465438448598, -387.99769432174]], "source": 4867862882, "length": 158.01368878304146}, {"destination": 4867862898, "path": [[8096.415438444637, -989.5476943224679], [8085.265438445787, -1019.0476943225946], [8092.615438449968, -1051.197694321715], [8067.81543844437, -1108.4976943234183], [8032.265438444597, -1141.1976943218606], [7967.915438449325, -1163.5476943219203], [7948.465438445851, -1225.4976943228967], [7935.065438445577, -1252.447694323422], [7875.565438446585, -1300.8976943229554]], "source": 4867862882, "length": 87.30547423594189}, {"destination": 1473995283, "path": [[8096.415438444637, -989.5476943224679], [8163.4654384430405, -1025.8976943227083]], "source": 4867862882, "length": 15.097420312924664}, {"destination": 1473995252, "path": [[8096.415438444637, -989.5476943224679], [8013.815438445704, -944.797694321764], [7938.715438449151, -1041.1476943232856], [7867.915438446005, -1003.4476943232562]], "source": 4867862882, "length": 60.20653008996261}, {"destination": 495627677, "path": [[3106.8654384469596, -7344.297694322321], [2862.115438446722, -7211.997694323458]], "source": 1581175140, "length": 55.05796732393947}, {"destination": 1489398837, "path": [[3106.8654384469596, -7344.297694322321], [3118.265438445178, -7316.697694323082], [3126.915438443234, -7297.197694322577], [3141.6154384444894, -7259.3976943231555], [3168.415438445038, -7224.99769432261]], "source": 1581175140, "length": 29.197561753067554}, {"destination": 1317670930, "path": [[2195.7654384436864, 19.10230567681026], [2231.115438448228, 269.3023056767885]], "source": 1317671269, "length": 56.04665017131213}, {"destination": 475977916, "path": [[2195.7654384436864, 19.10230567681026], [2189.2654384458865, -26.797694323121846]], "source": 1317671269, "length": 10.282432061902787}, {"destination": 1317670805, "path": [[2195.7654384436864, 19.10230567681026], [2305.1654384431686, 15.002305676858896]], "source": 1317671269, "length": 20.82464479392834}, {"destination": 1317670863, "path": [[1106.565438448115, 950.0523056775734], [918.1154384449997, 963.852305677193]], "source": 1317671271, "length": 35.969630823516866}, {"destination": 2991482218, "path": [[-3902.2845615548363, 6540.252305677896], [-3285.384561550586, 6460.552305677325], [-3191.5845615557714, 6449.802305677821]], "source": 483103082, "length": 136.66430609452925}, {"destination": 475977684, "path": [[692.465438447698, 459.1523056767244], [712.9154384486469, 714.5023056782662]], "source": 1317671275, "length": 56.92026403235082}, {"destination": 1317671138, "path": [[692.465438447698, 459.1523056767244], [773.9654384479877, 450.0523056769623], [803.4654384445616, 431.7023056774616]], "source": 1317671275, "length": 22.567510032922375}, {"destination": 475976364, "path": [[692.465438447698, 459.1523056767244], [664.465438447337, -10.047694322778966]], "source": 1317671275, "length": 104.48121985671342}, {"destination": 1317671312, "path": [[1787.1154384465626, 924.852305677959], [1787.865438444669, 1014.3023056770062], [1787.865438444669, 1053.3023056780166]], "source": 1317671277, "length": 28.56745006739476}, {"destination": 1317671424, "path": [[1787.1154384465626, 924.852305677959], [1715.4154384471099, 929.40230567784], [1696.665438444711, 963.852305677193], [1579.4154384494163, 961.5523056769604]], "source": 1317671277, "length": 44.426891849510795}, {"destination": 1317670892, "path": [[1787.1154384465626, 924.852305677959], [1917.0654384481622, 915.9023056781734]], "source": 1317671277, "length": 24.793238274163894}, {"destination": 1317671214, "path": [[1787.1154384465626, 924.852305677959], [1785.9154384467502, 780.3023056780489]], "source": 1317671277, "length": 32.147385840805455}, {"destination": 1317670896, "path": [[1744.9154384436838, 360.60230567791507], [1596.9654384448972, 360.4523056779385]], "source": 1317671280, "length": 28.13614583495496}, {"destination": 1317670820, "path": [[1744.9154384436838, 360.60230567791507], [1743.9154384462086, 305.5023056770523]], "source": 1317671280, "length": 12.255131051756548}, {"destination": 1316694029, "path": [[1744.9154384436838, 360.60230567791507], [1825.3654384494666, 355.9523056768654]], "source": 1317671280, "length": 15.334349973701249}, {"destination": 4867879898, "path": [[8476.465438448598, -387.99769432174], [8523.81543844416, -336.1476943233299], [8573.41543844825, -299.44769432255214], [8626.415438449441, -269.6476943224724], [8733.015438444625, -203.69769432271312], [8769.865438445378, -154.94769432322641], [8792.015438444878, -126.84769432347309], [8857.715438445268, -64.9476943230809], [8902.66543844831, -15.597694321911604], [8924.765438443672, 30.252305677436198], [9016.315438444166, 66.90230567762967]], "source": 4867862897, "length": 147.38751828419856}, {"destination": 4867862882, "path": [[8476.465438448598, -387.99769432174], [8449.365438444545, -423.2976943221445], [8421.865438450026, -430.7476943221644], [8393.015438443286, -455.3976943224569], [8387.665438448266, -499.54769432325463], [8387.665438448266, -540.8476943227214], [8376.965438444018, -576.9976943224009], [8344.065438443238, -637.1976943224666], [8334.015438443032, -691.6476943228389], [8307.865438446526, -743.2476943218802], [8253.565438444355, -825.2476943226839], [8216.01543844963, -872.8476943229424], [8134.215438445835, -938.7976943227017], [8096.415438444637, -989.5476943224679]], "source": 4867862897, "length": 158.01368878304143}, {"destination": 1473995278, "path": [[8476.465438448598, -387.99769432174], [8385.91543844558, -334.6976943223723]], "source": 4867862897, "length": 20.905204649072303}, {"destination": 1473995253, "path": [[8476.465438448598, -387.99769432174], [8611.415438444681, -467.3976943223579]], "source": 4867862897, "length": 31.15155435881394}, {"destination": 4867862882, "path": [[7875.565438446585, -1300.8976943229554], [7935.065438445577, -1252.447694323422], [7948.465438445851, -1225.4976943228967], [7967.915438449325, -1163.5476943219203], [8032.265438444597, -1141.1976943218606], [8067.81543844437, -1108.4976943234183], [8092.615438449968, -1051.197694321715], [8085.265438445787, -1019.0476943225946], [8096.415438444637, -989.5476943224679]], "source": 4867862898, "length": 87.3054742359419}, {"destination": 393749269, "path": [[7875.565438446585, -1300.8976943229554], [7857.715438447599, -1258.2476943219235], [7876.865438447567, -1196.3976943221155], [7749.81543844433, -1139.7976943232634]], "source": 4867862898, "length": 51.5450121724155}, {"destination": 1473995269, "path": [[7875.565438446585, -1300.8976943229554], [7816.365438443995, -1351.0476943228155], [7676.965438449201, -1521.2476943222696], [7602.315438447249, -1600.3476943229343]], "source": 4867862898, "length": 84.66235684037397}, {"destination": 393749271, "path": [[7875.565438446585, -1300.8976943229554], [7882.76543844546, -1318.097694323228]], "source": 4867862898, "length": 4.062304776669011}, {"destination": 1317670914, "path": [[2179.165438448649, 800.7523056772214], [2168.715438443769, 801.0023056765903], [2152.6154384474694, 757.4023056768908], [2075.165438448323, 769.3523056779838], [2047.3154384461623, 773.702305677304]], "source": 1317671283, "length": 32.504737277388585}, {"destination": 1317670892, "path": [[2179.165438448649, 800.7523056772214], [2176.7654384490243, 888.1523056771812], [2098.9654384493406, 899.6023056777602], [2056.065438445387, 917.9523056772609], [1917.0654384481622, 915.9023056781734]], "source": 1317671283, "length": 70.01520434022709}, {"destination": 1317671021, "path": [[2179.165438448649, 800.7523056772214], [2273.9654384480446, 798.8523056781105]], "source": 1317671283, "length": 18.033484482973353}, {"destination": 4867879872, "path": [[2558.1654384438934, -5984.597694322247], [2534.815438444582, -5975.247694323116]], "source": 1581175157, "length": 4.9036700899565036}, {"destination": 1581175168, "path": [[2558.1654384438934, -5984.597694322247], [2543.4154384456065, -6006.3976943229845], [2531.365438443345, -6024.747694322486], [2526.7154384494006, -6053.097694323384], [2532.1154384485567, -6078.347694321807], [2534.0654384464756, -6099.297694323269], [2526.0154384483258, -6126.797694323116], [2505.6154384444085, -6154.89769432287]], "source": 1581175157, "length": 40.68849396350707}, {"destination": 1581175146, "path": [[2558.1654384438934, -5984.597694322247], [2679.915438449143, -6038.347694323321]], "source": 1581175157, "length": 26.05437166071645}, {"destination": 1317670839, "path": [[1374.7654384488328, 1106.0523056780626], [1377.4654384448581, 998.2523056777381]], "source": 1317671288, "length": 23.97904393720062}, {"destination": 1317671096, "path": [[2265.0654384435143, 509.15230567660785], [2260.0154384448956, 473.50230567744234]], "source": 1317671289, "length": 7.98587013423327}, {"destination": 1317671401, "path": [[2265.0654384435143, 509.15230567660785], [2160.665438445619, 502.8023056770081], [2064.1154384435367, 498.2023056765428]], "source": 1317671289, "length": 38.29436700142547}, {"destination": 1317671293, "path": [[2265.0654384435143, 509.15230567660785], [2271.315438449051, 553.4523056773821]], "source": 1317671289, "length": 9.923364168239075}, {"destination": 2001675432, "path": [[10104.26543845, 2010.8523056769911], [10072.315438449663, 2015.9523056779703]], "source": 4867862906, "length": 6.181747467943469}, {"destination": 4867879889, "path": [[10104.26543845, 2010.8523056769911], [10152.365438443667, 2097.7523056782134]], "source": 4867862906, "length": 21.381558572018314}, {"destination": 4867879898, "path": [[10104.26543845, 2010.8523056769911], [10022.465438446205, 1870.3523056782246], [9926.615438445197, 1716.10230567687], [9923.91543844917, 1683.4023056766512], [9940.01543844547, 1554.9523056765934], [9915.865438443916, 1486.7523056771859], [9803.215438445533, 1291.7523056774626], [9720.715438447769, 1153.0023056778305], [9689.865438446077, 1063.5523056770069], [9644.965438447172, 950.6023056768953], [9604.715438449319, 900.7023056781804], [9549.765438443103, 826.7023056767187], [9501.4654384471, 770.502305677212], [9452.515438447052, 684.5023056776256], [9372.715438445312, 585.3023056765494], [9311.715438443003, 464.90230567819424], [9237.915438447431, 339.30230567769115], [9169.515438443908, 238.9523056773868], [9105.815438445574, 121.40230567680987], [9061.56543844361, 83.60230567738824], [9029.41543844804, 72.10230567800124], [9016.315438444166, 66.90230567762967]], "source": 4867862906, "length": 488.7604435388162}, {"destination": 1317670952, "path": [[2297.315438447356, 344.5523056768707], [2453.81543844303, 331.0023056766198]], "source": 1317671292, "length": 29.9144544260602}, {"destination": 475977736, "path": [[2271.315438449051, 553.4523056773821], [2283.7154384447444, 641.1023056767107]], "source": 1317671293, "length": 19.634428459649524}, {"destination": 1317671289, "path": [[2271.315438449051, 553.4523056773821], [2265.0654384435143, 509.15230567660785]], "source": 1317671293, "length": 9.923364168239075}, {"destination": 1317671131, "path": [[2271.315438449051, 553.4523056773821], [2206.265438445598, 555.5523056770539], [2067.4154384465737, 562.4023056771676]], "source": 1317671293, "length": 38.82922180059704}, {"destination": 1581175514, "path": [[2505.6154384444085, -6154.89769432287], [2601.6154384436163, -6197.997694322055]], "source": 1581175168, "length": 20.617388125902732}, {"destination": 4867879874, "path": [[2505.6154384444085, -6154.89769432287], [2493.815438448621, -6149.597694323105]], "source": 1581175168, "length": 2.534971588776938}, {"destination": 1581175157, "path": [[2505.6154384444085, -6154.89769432287], [2526.0154384483258, -6126.797694323116], [2534.0654384464756, -6099.297694323269], [2532.1154384485567, -6078.347694321807], [2526.7154384494006, -6053.097694323384], [2531.365438443345, -6024.747694322486], [2543.4154384456065, -6006.3976943229845], [2558.1654384438934, -5984.597694322247]], "source": 1581175168, "length": 40.68849396350708}, {"destination": 475977686, "path": [[1577.0154384497914, 759.7023056771235], [1576.0654384493478, 677.8023056774884]], "source": 1317671298, "length": 18.214742582144073}, {"destination": 1317671333, "path": [[1577.0154384497914, 759.7023056771235], [1578.315438443667, 869.8023056776805]], "source": 1317671298, "length": 24.486349108619734}, {"destination": 1317671214, "path": [[1577.0154384497914, 759.7023056771235], [1653.7154384437258, 762.0023056773562], [1785.9154384467502, 780.3023056780489]], "source": 1317671298, "length": 40.06374216340848}, {"destination": 1317671409, "path": [[2924.9654384457813, 1112.9023056781762], [3048.2154384472437, 1112.9023056781762]], "source": 1317671303, "length": 23.438864129499734}, {"destination": 1317671053, "path": [[1213.8654384443726, 970.7023056773068], [1213.8654384443726, 859.9523056780356]], "source": 1317671305, "length": 24.62984475036963}, {"destination": 1317671158, "path": [[1213.8654384443726, 970.7023056773068], [1213.8654384443726, 998.2523056777381]], "source": 1317671305, "length": 6.126830056208485}, {"destination": 1317670839, "path": [[1213.8654384443726, 970.7023056773068], [1262.1154384433453, 973.0023056775394], [1262.1154384433453, 998.2523056777381], [1377.4654384448581, 998.2523056777381]], "source": 1317671305, "length": 36.743131193651756}, {"destination": 477640961, "path": [[-5976.684561552758, -7306.447694322315], [-6102.7845615555525, -7276.397694322867], [-6694.8345615500675, -7113.897694322802]], "source": 874287498, "length": 143.12299372328062}, {"destination": 267198467, "path": [[-5976.684561552758, -7306.447694322315], [-5933.134561551868, -7317.19769432182]], "source": 874287498, "length": 8.618757003427644}, {"destination": 1317670805, "path": [[2321.465438448911, -212.7976943224752], [2305.365438445506, -118.74769432296262], [2305.365438445506, -59.14769432280309], [2305.1654384431686, 15.002305676858896]], "source": 1317671309, "length": 50.883522685107366}, {"destination": 623406666, "path": [[-6929.834561553605, 8604.902305677342], [-6866.234561556439, 8840.352305677257]], "source": 623416771, "length": 53.7410018954284}, {"destination": 623417110, "path": [[-6929.834561553605, 8604.902305677342], [-7007.884561552657, 8384.602305676835]], "source": 623416771, "length": 51.19229774914423}, {"destination": 623416847, "path": [[-6929.834561553605, 8604.902305677342], [-6370.684561552764, 8433.652305678052], [-6077.684561553553, 8369.952305677942], [-6014.084561556388, 8376.252305676957], [-5944.384561551886, 8397.352305676619], [-5805.684561551061, 8381.30230567735], [-5697.334561553191, 8361.902305678015], [-5507.284561552695, 8326.102305677097], [-5409.13456155323, 8302.252305677272]], "source": 623416771, "length": 300.81050932152965}, {"destination": 1317671216, "path": [[2674.8154384463874, 136.00230567689664], [2664.815438443213, 87.6523056767553]], "source": 1317671311, "length": 10.919638307503762}, {"destination": 1317670808, "path": [[2674.8154384463874, 136.00230567689664], [2685.715438445868, 185.95230567797216]], "source": 1317671311, "length": 11.300905842207447}, {"destination": 1317671184, "path": [[2674.8154384463874, 136.00230567689664], [2608.465438449059, 140.40230567680112], [2494.1654384491585, 151.80230567679587]], "source": 1317671311, "length": 34.5402135302322}, {"destination": 1317670881, "path": [[1787.865438444669, 1053.3023056780166], [1788.6654384469125, 1154.0523056776665]], "source": 1317671312, "length": 22.406370987398184}, {"destination": 1317670866, "path": [[1787.865438444669, 1053.3023056780166], [1903.1654384491503, 1048.7023056775513]], "source": 1317671312, "length": 21.95123986463047}, {"destination": 1317671277, "path": [[1787.865438444669, 1053.3023056780166], [1787.865438444669, 1014.3023056770062], [1787.1154384465626, 924.852305677959]], "source": 1317671312, "length": 28.56745006739476}, {"destination": 477666889, "path": [[-7651.084561551614, -3690.797694321901], [-7642.334561552389, -3694.9476943224367]], "source": 5021317187, "length": 1.903449494455876}, {"destination": 1582517413, "path": [[-7651.084561551614, -3690.797694321901], [-7798.33456155643, -3924.347694322705]], "source": 5021317187, "length": 59.006017879485825}, {"destination": 5021317167, "path": [[-7651.084561551614, -3690.797694321901], [-7644.034561550939, -3679.647694323052], [-7568.734561552048, -3562.3476943218434]], "source": 5021317187, "length": 32.57726730782555}, {"destination": 4867879872, "path": [[2515.4654384493824, -5967.497694323143], [2534.815438444582, -5975.247694323116]], "source": 1581175189, "length": 4.063413938403447}, {"destination": 1581175564, "path": [[2515.4654384493824, -5967.497694323143], [2476.615438446572, -6045.447694322803], [2441.5654384455365, -6126.097694322041]], "source": 1581175189, "length": 37.97757295316538}, {"destination": 1581175343, "path": [[2515.4654384493824, -5967.497694323143], [2526.2654384476946, -5945.797694321797], [2623.915438448421, -5787.397694323459]], "source": 1581175189, "length": 45.0661912359695}, {"destination": 1316694008, "path": [[1211.415438447716, 495.7523056781099], [1208.6654384475537, 431.2523056775319]], "source": 1317671318, "length": 14.353785249357783}, {"destination": 1317671059, "path": [[1211.415438447716, 495.7523056781099], [1213.9154384485096, 553.3523056779899]], "source": 1317671318, "length": 12.81839283298451}, {"destination": 1317671183, "path": [[1211.415438447716, 495.7523056781099], [1157.515438443113, 509.70230567770614], [1001.9654384478827, 544.1023056782512]], "source": 1317671318, "length": 41.26438467308418}, {"destination": 1317671057, "path": [[2482.265438445097, 9.65230567828712], [2485.0654384493964, 41.8023056774075]], "source": 1317671321, "length": 7.169353869840112}, {"destination": 1317671379, "path": [[2482.265438445097, 9.65230567828712], [2447.5154384475672, 9.65230567828712]], "source": 1317671321, "length": 6.6073969504341425}, {"destination": 1317671363, "path": [[2482.265438445097, 9.65230567828712], [2646.015438443783, 9.65230567828712], [2664.815438443213, 37.20230567694216]], "source": 1317671321, "length": 38.23471922608201}, {"destination": 495768484, "path": [[9846.415438445889, -7809.647694323019], [9412.015438449827, -7589.597694321881]], "source": 1491042488, "length": 96.00568236181145}, {"destination": 1491042413, "path": [[9846.415438445889, -7809.647694323019], [9937.165438444139, -7600.847694321899], [10059.265438449927, -7330.947694322632]], "source": 1491042488, "length": 113.89393824650779}, {"destination": 1317671168, "path": [[1004.1154384481388, 37.502305676895276], [1023.4154384463068, 165.65230567699984], [1133.3654384486636, 158.7523056780782], [1136.0654384446889, 126.65230567776575], [1210.2654384449352, 124.25230567814083]], "source": 1317671324, "length": 70.97841850334308}, {"destination": 1317670876, "path": [[1004.1154384481388, 37.502305676895276], [1000.8654384492388, 16.0523056766948]], "source": 1317671324, "length": 4.810894586745757}, {"destination": 1317670893, "path": [[1004.1154384481388, 37.502305676895276], [932.5154384498546, 45.40230567684489]], "source": 1317671324, "length": 13.728923973842544}, {"destination": 1316694059, "path": [[1360.8654384498209, 686.9523056778348], [1504.1154384434208, 680.8523056776039]], "source": 1317671325, "length": 27.27605823949068}, {"destination": 1317670822, "path": [[1360.8654384498209, 686.9523056778348], [1361.3654384485585, 759.7023056771235], [1326.51543844986, 771.1523056777025], [1334.56543844801, 892.7523056776465], [1342.365438446791, 925.0523056767435]], "source": 1317671325, "length": 57.7010135405842}, {"destination": 4273219788, "path": [[779.9154384500184, -983.6976943233822], [787.365438448262, -992.7976943231442], [810.365438447036, -1007.8976943219686], [822.9154384480353, -1009.4976943229028]], "source": 3485520289, "length": 10.399332238941252}, {"destination": 4273376084, "path": [[779.9154384500184, -983.6976943233822], [775.6654384465378, -983.1476943222839], [607.76543844554, -958.2976943232069], [521.9654384447381, -949.0976943222762], [496.26543844993876, -947.4476943225341]], "source": 3485520289, "length": 54.564375881449244}, {"destination": 4273347006, "path": [[779.9154384500184, -983.6976943233822], [792.6154384492179, -954.1976943232555], [800.0154384433245, -933.4976943229378], [815.6154384479919, -931.6476943226348]], "source": 3485520289, "length": 14.797872425270437}, {"destination": 93792082, "path": [[11201.665438449027, -950.4976943226495], [11233.515438448194, -891.4976943223962]], "source": 93180322, "length": 14.452029275206856}, {"destination": 114903203, "path": [[11201.665438449027, -950.4976943226495], [10034.365438443161, -493.54769432241596], [9954.165438443852, -461.84769432322526]], "source": 93180322, "length": 260.940456382487}, {"destination": 93792610, "path": [[11201.665438449027, -950.4976943226495], [10826.365438447283, -1674.5476943231806]], "source": 93180322, "length": 176.12932975740918}, {"destination": 3485520292, "path": [[471.01543844974003, -1114.447694321896], [469.36543844822154, -1125.8976943224752]], "source": 3485520291, "length": 2.5667703848708503}, {"destination": 1317670782, "path": [[2774.76543844557, -127.94769432211694], [2795.7654384493935, -220.6976943224248]], "source": 1317671332, "length": 21.009706595849547}, {"destination": 1317671424, "path": [[1578.315438443667, 869.8023056776805], [1579.4154384494163, 961.5523056769604]], "source": 1317671333, "length": 20.4051559637146}, {"destination": 1317671298, "path": [[1578.315438443667, 869.8023056776805], [1577.0154384497914, 759.7023056771235]], "source": 1317671333, "length": 24.486349108619734}, {"destination": 1317671274, "path": [[1578.315438443667, 869.8023056776805], [1535.7154384432192, 874.4023056781458], [1506.2154384466453, 908.8023056769146], [1455.6654384492163, 913.8023056767253]], "source": 1317671333, "length": 27.32980875801755}, {"destination": 1317670908, "path": [[3611.9654384449973, 1450.2023056781609], [3834.2154384451987, 1532.652305677118], [3811.8654384433626, 1371.6523056768183]], "source": 1317671334, "length": 82.12906319730143}, {"destination": 1317670882, "path": [[3488.765438447672, 1393.2023056781873], [3622.3654384457404, 1413.402305677991]], "source": 1317671336, "length": 25.801662041572374}, {"destination": 1317671355, "path": [[3488.765438447672, 1393.2023056781873], [3494.0654384456593, 1364.60230567792]], "source": 1317671336, "length": 6.4395341095893786}, {"destination": 1317671123, "path": [[3488.765438447672, 1393.2023056781873], [3474.815438444523, 1468.4523056782696], [3431.9154384476747, 1477.6023056768395], [3364.465438444597, 1505.8023056777615]], "source": 1317671336, "length": 39.63010467199489}, {"destination": 475974715, "path": [[712.7154384463097, 1012.0023056767735], [694.865438447323, 1227.9023056773754]], "source": 1317671343, "length": 48.13385565623199}, {"destination": 475977684, "path": [[712.7154384463097, 1012.0023056767735], [712.9154384486469, 714.5023056782662]], "source": 1317671343, "length": 66.16107407716713}, {"destination": 1317670863, "path": [[712.7154384463097, 1012.0023056767735], [921.5154384492052, 1000.5523056779708], [918.1154384449997, 963.852305677193]], "source": 1317671343, "length": 47.976674669562414}, {"destination": 1317671440, "path": [[2377.715438449002, 100.05230567777801], [2390.3654384440642, 213.5523056772115]], "source": 1317671344, "length": 25.355759279193908}, {"destination": 1317671187, "path": [[2377.715438449002, 100.05230567777801], [2432.165438449374, 100.05230567777801], [2417.815438448656, 10.802305677515278]], "source": 1317671344, "length": 30.390127706474246}, {"destination": 1317671395, "path": [[2377.715438449002, 100.05230567777801], [2299.7654384440125, 104.7523056776356], [2308.0654384486365, 202.35230567777762]], "source": 1317671344, "length": 36.62273396157166}, {"destination": 481508170, "path": [[4699.3154384438185, -8231.697694322193], [4840.165438444899, -8180.097694323152], [4866.965438445448, -8090.697694322913], [4873.315438445047, -8057.247694322811], [4904.315438444939, -7997.997694323189], [4981.5654384488535, -7836.54769432296], [4998.765438443797, -7763.197694321988], [5003.015438447278, -7645.74769432258], [4984.26543844488, -7602.247694322273]], "source": 1767289265, "length": 163.5038216529917}, {"destination": 1767289558, "path": [[4699.3154384438185, -8231.697694322193], [4655.815438447064, -8235.797694322144], [4615.56543844921, -8201.397694323376], [4576.615438445231, -8155.947694323373], [4534.36543844532, -8131.947694321795], [4356.015438446548, -8145.697694322606], [4268.815438443597, -8188.147694323078], [4189.715438450037, -8301.647694322512], [4165.515438444345, -8424.997694323367]], "source": 1767289265, "length": 151.64342183152746}, {"destination": 1317671401, "path": [[2065.6654384438866, 528.1523056765991], [2064.1154384435367, 498.2023056765428]], "source": 1317671346, "length": 6.668496136635714}, {"destination": 1317671131, "path": [[2065.6654384438866, 528.1523056765991], [2067.4154384465737, 562.4023056771676]], "source": 1317671346, "length": 7.624444169895899}, {"destination": 1317671217, "path": [[2065.6654384438866, 528.1523056765991], [1979.8654384430847, 532.5523056782799]], "source": 1317671346, "length": 16.346547181030946}, {"destination": 1317670954, "path": [[1774.5654384455634, -272.447694323219], [1795.6154384464185, -441.59769432283724]], "source": 1317671347, "length": 37.82971487615108}, {"destination": 1317670979, "path": [[1774.5654384455634, -272.447694323219], [1707.2654384477914, -272.24769432265816], [1632.6654384499761, -270.04769432181774]], "source": 1317671347, "length": 26.99364610241941}, {"destination": 1317671095, "path": [[1774.5654384455634, -272.447694323219], [1821.115438445986, -263.4976943234335]], "source": 1317671347, "length": 9.073165546335858}, {"destination": 654379967, "path": [[7167.565438443546, 7787.352305676621], [7280.015438446697, 7596.752305676801], [7393.765438443723, 7414.352305676885]], "source": 654381492, "length": 93.45122899329786}, {"destination": 476561693, "path": [[7167.565438443546, 7787.352305676621], [6201.115438443594, 7004.65230567815]], "source": 654381492, "length": 253.15664670305952}, {"destination": 482734053, "path": [[7167.565438443546, 7787.352305676621], [6944.965438449913, 8128.502305677188], [6909.665438449509, 8167.852305676959], [6860.915438444692, 8191.502305678], [6803.4654384447895, 8212.402305677102], [6717.415438444618, 8273.952305676958]], "source": 654381492, "length": 141.7835651495151}, {"destination": 1317671053, "path": [[1280.915438449881, 851.4523056781798], [1213.8654384443726, 859.9523056780356]], "source": 1317671349, "length": 12.89026011198906}, {"destination": 1317671440, "path": [[2394.1154384488073, 259.1523056771905], [2390.3654384440642, 213.5523056772115]], "source": 1317671350, "length": 10.166073319333773}, {"destination": 1317671112, "path": [[2394.1154384488073, 259.1523056771905], [2447.8654384481047, 255.80230567712192]], "source": 1317671350, "length": 10.248630562926603}, {"destination": 1317670930, "path": [[2394.1154384488073, 259.1523056771905], [2231.115438448228, 269.3023056767885]], "source": 1317671350, "length": 31.080155404891322}, {"destination": 1317671223, "path": [[1935.365438448855, -104.99769432215089], [1631.6154384483639, -105.0476943227352]], "source": 1317671354, "length": 57.76444642214464}, {"destination": 1883856717, "path": [[-2494.434561555181, -7547.997694322461], [-2417.7345615541412, -7557.2476943222], [-2274.234561554067, -7599.647694322087], [-2220.5845615559383, -7621.447694322825], [-2113.3345615567123, -7669.597694322405], [-1954.2345615519707, -7736.647694322584]], "source": 654414267, "length": 111.6507885113839}, {"destination": 103795925, "path": [[-2494.434561555181, -7547.997694322461], [-2539.334561554085, -7632.247694322913], [-2633.784561552943, -7860.79769432213], [-2694.7845615552524, -8049.59769432223]], "source": 654414267, "length": 118.0560480892155}, {"destination": 1317671147, "path": [[2780.1154384476945, 115.2023056771867], [2950.665438447686, 101.60230567812789]], "source": 1317671356, "length": 32.57461421497249}, {"destination": 477640288, "path": [[-4485.434561551927, -6626.097694322652], [-4933.3845615535665, -6474.44769432326]], "source": 477628490, "length": 91.60929782702344}, {"destination": 850261339, "path": [[-4485.434561551927, -6626.097694322652], [-4576.184561550179, -6817.4476943223535], [-4684.13456155048, -7049.697694322177]], "source": 477628490, "length": 101.49923057192848}, {"destination": 1317671073, "path": [[2678.1154384494243, 611.0523056772621], [2927.5154384436064, 592.0023056766865]], "source": 1317671359, "length": 47.61814022351733}, {"destination": 1317671055, "path": [[2678.1154384494243, 611.0523056772621], [2674.8154384463874, 537.4023056781141]], "source": 1317671359, "length": 16.39114602510655}, {"destination": 1317671440, "path": [[2498.765438446071, 207.25230567819608], [2390.3654384440642, 213.5523056772115]], "source": 1317671360, "length": 20.662146647145466}, {"destination": 1317671184, "path": [[2498.765438446071, 207.25230567819608], [2494.1654384491585, 151.80230567679587]], "source": 1317671360, "length": 12.362765934741741}, {"destination": 1317670808, "path": [[2498.765438446071, 207.25230567819608], [2544.1154384466813, 204.6523056780103], [2685.715438445868, 185.95230567797216]], "source": 1317671360, "length": 35.891444383912635}, {"destination": 618426802, "path": [[11659.915438443135, 6461.202305677815], [11541.315438449828, 6420.25230567711]], "source": 618426817, "length": 24.326081426987535}, {"destination": 79811522, "path": [[11659.915438443135, 6461.202305677815], [11640.965438445506, 6492.502305677661]], "source": 618426817, "length": 7.839505633718734}, {"destination": 2001675399, "path": [[11659.915438443135, 6461.202305677815], [11916.865438443836, 5973.552305677643], [12066.865438448815, 5565.152305678112], [12069.165438447271, 5210.502305677877], [12034.265438444436, 4934.452305677794], [11952.315438449546, 4634.202305677349], [11844.265438448076, 4286.802305676573], [11683.815438445323, 3777.2523056780474]], "source": 618426817, "length": 620.6395403243812}, {"destination": 476794305, "path": [[-3781.4345615529987, -3291.39769432274], [-3887.8845615499813, -3302.3976943233893], [-3921.634561550036, -3310.3476943221467], [-3939.034561554422, -3321.2976943222116]], "source": 1889249355, "length": 31.154223938987066}, {"destination": 1889249369, "path": [[-3781.4345615529987, -3291.39769432274], [-3908.2845615538986, -3271.7976943228423]], "source": 1889249355, "length": 24.51228444030391}, {"destination": 624784002, "path": [[-4036.484561552811, 2803.7523056774207], [-4000.534561555469, 2862.152305677768]], "source": 624783812, "length": 14.677275706727768}, {"destination": 64813782, "path": [[-4036.484561552811, 2803.7523056774207], [-4143.634561550869, 2819.352305676759], [-4512.484561551844, 2950.6523056781475]], "source": 624783812, "length": 96.65510499064158}, {"destination": 2932694426, "path": [[9998.815438443387, -5020.347694323135], [9862.615438443356, -4658.797694322203], [9831.765438448769, -4632.44769432336], [9800.915438447078, -4622.097694323202], [9764.715438443262, -4624.397694323435], [9207.915438445014, -4794.04769432179]], "source": 2932694433, "length": 218.36786805215348}, {"destination": 85654851, "path": [[9998.815438443387, -5020.347694323135], [11164.01543844603, -4694.397694322561]], "source": 2932694433, "length": 233.12125571615883}, {"destination": 1780414619, "path": [[9998.815438443387, -5020.347694323135], [9278.215438449422, -5221.947694321827]], "source": 2932694433, "length": 144.17101138822986}, {"destination": 1489398823, "path": [[3276.0154384448015, -7189.897694322766], [3305.215438444975, -7176.84769432303]], "source": 1581175241, "length": 6.265738517046227}, {"destination": 1489398789, "path": [[3276.0154384448015, -7189.897694322766], [3297.165438446825, -7204.347694322877], [3315.9654384462556, -7230.747694322304], [3348.1654384459603, -7251.397694322037], [3395.0654384469203, -7266.2976943220765], [3429.9654384497558, -7260.547694322384]], "source": 1581175241, "length": 35.94745188937272}, {"destination": 1489398837, "path": [[3276.0154384448015, -7189.897694322766], [3266.315438445133, -7183.747694321952], [3218.0654384461604, -7190.597694322065], [3168.415438445038, -7224.99769432261]], "source": 1581175241, "length": 23.747456542939222}, {"destination": 1317671241, "path": [[1971.6654384467347, -424.1976943220038], [2020.7154384479509, -509.3476943223152]], "source": 1317671370, "length": 21.10920873946343}, {"destination": 1317670986, "path": [[1971.6654384467347, -424.1976943220038], [1926.0154384497241, -441.6976943222295], [1860.0154384458278, -441.64769432342155]], "source": 1317671370, "length": 22.064698424850764}, {"destination": 481389763, "path": [[1971.6654384467347, -424.1976943220038], [2050.4654384438936, -393.9976943225787]], "source": 1317671370, "length": 16.421360144803995}, {"destination": 1317671414, "path": [[1971.6654384467347, -424.1976943220038], [1940.715438443874, -345.8476943229982]], "source": 1317671370, "length": 18.39127454079085}, {"destination": 1317670856, "path": [[3956.16543844568, 1134.3023056777924], [3729.6154384449665, 1181.7523056780742], [3437.265438449799, 1186.3023056779552]], "source": 1317671372, "length": 99.96512264960603}, {"destination": 482729435, "path": [[3956.16543844568, 1134.3023056777924], [4026.115438449551, 1288.9523056767162]], "source": 1317671372, "length": 36.87578639127094}, {"destination": 475978447, "path": [[3956.16543844568, 1134.3023056777924], [3825.2154384466053, 827.7523056765546]], "source": 1317671372, "length": 72.57986079666121}, {"destination": 385113794, "path": [[3067.5654384495488, -243.5476943229986], [3016.1654384457393, -354.9976943233446], [2993.7654384468715, -407.24769432287644]], "source": 481389986, "length": 39.019633921719276}, {"destination": 1317671102, "path": [[3067.5654384495488, -243.5476943229986], [2904.6654384430326, -216.34769432310463]], "source": 481389986, "length": 31.563853999636184}, {"destination": 481390039, "path": [[3067.5654384495488, -243.5476943229986], [3120.0654384448967, -258.9976943223604]], "source": 481389986, "length": 10.558766385333703}, {"destination": 1317670876, "path": [[988.0154384447337, -69.34769432298538], [1000.8654384492388, 16.0523056766948]], "source": 1317671375, "length": 19.148737873454248}, {"destination": 1317671186, "path": [[988.0154384447337, -69.34769432298538], [1084.1654384492472, -89.0476943222751]], "source": 1317671375, "length": 18.80248900209746}, {"destination": 475976364, "path": [[988.0154384447337, -69.34769432298538], [925.3154384438744, -56.497694322033], [664.465438447337, -10.047694322778966]], "source": 1317671375, "length": 62.93201753275745}, {"destination": 1317671014, "path": [[2380.465438449164, 548.7023056769402], [2452.8654384496917, 545.9023056779699]], "source": 1317671376, "length": 13.7829769992928}, {"destination": 1317671187, "path": [[2447.5154384475672, 9.65230567828712], [2417.815438448656, 10.802305677515278]], "source": 1317671379, "length": 5.653243563700906}, {"destination": 1317671321, "path": [[2447.5154384475672, 9.65230567828712], [2482.265438445097, 9.65230567828712]], "source": 1317671379, "length": 6.6073969504341425}, {"destination": 1317671243, "path": [[2447.5154384475672, 9.65230567828712], [2439.11543844888, -79.74769432195217]], "source": 1317671379, "length": 19.945932019979463}, {"destination": 1317671389, "path": [[3517.7154384484766, 1236.8023056765765], [3509.365438446821, 1281.9023056778178]], "source": 1317671382, "length": 10.154985392775378}, {"destination": 1317671144, "path": [[2673.365438447206, 505.1523056778251], [2672.8654384484685, 493.65230567666174], [2671.3154384481186, 463.9523056777506]], "source": 1317671383, "length": 9.173667356856534}, {"destination": 1317671055, "path": [[2673.365438447206, 505.1523056778251], [2674.8154384463874, 537.4023056781141]], "source": 1317671383, "length": 7.177520496830188}, {"destination": 1317671047, "path": [[2673.365438447206, 505.1523056778251], [2833.7654384458233, 491.3523056782054], [2921.565438448681, 473.10230567809697]], "source": 1317671383, "length": 47.84087562918053}, {"destination": 1888382779, "path": [[4583.715438450043, -573.247694322987], [4519.915438443433, -617.6476943231535], [4486.215438447516, -655.0976943220377]], "source": 75354586, "length": 26.151468583305473}, {"destination": 677734741, "path": [[4583.715438450043, -573.247694322987], [4533.065438444339, -679.6476943229379], [4444.715438445712, -790.047694323448]], "source": 75354586, "length": 55.297918666761305}, {"destination": 103736983, "path": [[4583.715438450043, -573.247694322987], [4474.315438443455, -505.09769432238727]], "source": 75354586, "length": 25.73958513134876}, {"destination": 1317670796, "path": [[3509.365438446821, 1281.9023056778178], [3434.6154384437, 1273.5023056773543], [3346.565438448579, 1268.9523056774733]], "source": 1317671389, "length": 31.113736823167656}, {"destination": 1317671382, "path": [[3509.365438446821, 1281.9023056778178], [3517.7154384484766, 1236.8023056765765]], "source": 1317671389, "length": 10.154985392775378}, {"destination": 1317671039, "path": [[3509.365438446821, 1281.9023056778178], [3502.565438445515, 1318.752305676796]], "source": 1317671389, "length": 8.296943990467302}, {"destination": 1317671209, "path": [[2031.4654384492314, -322.29769432312594], [2090.9154384440853, -306.8476943219878], [2074.4654384472483, -258.89769432296816]], "source": 1317671394, "length": 22.929082153958444}, {"destination": 481389763, "path": [[2031.4654384492314, -322.29769432312594], [2050.4654384438936, -393.9976943225787]], "source": 1317671394, "length": 16.34985497112538}, {"destination": 1317670927, "path": [[2031.4654384492314, -322.29769432312594], [1987.6654384489711, -333.6476943225364]], "source": 1317671394, "length": 8.704083009217836}, {"destination": 1317671344, "path": [[2308.0654384486365, 202.35230567777762], [2299.7654384440125, 104.7523056776356], [2377.715438449002, 100.05230567777801]], "source": 1317671395, "length": 36.62273396157166}, {"destination": 1317670825, "path": [[3625.515438443472, 883.1023056767862], [3622.3654384457404, 814.752305677402], [3590.1654384460358, 695.4523056776907]], "source": 1317671397, "length": 42.44113131961301}, {"destination": 1317670750, "path": [[3625.515438443472, 883.1023056767862], [3487.5154384437224, 915.6523056770283], [3416.7654384447133, 925.7523056778183]], "source": 1317671397, "length": 40.865299993274625}, {"destination": 475978447, "path": [[3625.515438443472, 883.1023056767862], [3825.2154384466053, 827.7523056765546]], "source": 1317671397, "length": 39.923030092857694}, {"destination": 1317671179, "path": [[1087.8154384457162, 78.50230567818528], [1087.7654384486846, 8.70230567784347]], "source": 1317671398, "length": 15.52303181540919}, {"destination": 1317671008, "path": [[1940.715438443874, -258.6976943224073], [1985.915438446284, -261.19769432320084]], "source": 1317671399, "length": 8.613526857304018}, {"destination": 1317671434, "path": [[1940.715438443874, -258.6976943224073], [1927.3154384435998, -219.6976943231732], [1908.5654384483064, -178.3976943219301], [1632.5154384446705, -180.69769432216276]], "source": 1317671399, "length": 71.39163313975362}, {"destination": 1317671221, "path": [[1940.715438443874, -258.6976943224073], [1883.0654384487389, -267.94769432214594]], "source": 1317671399, "length": 11.15481227338708}, {"destination": 1317670927, "path": [[1940.715438443874, -258.6976943224073], [1987.6654384489711, -333.6476943225364]], "source": 1317671399, "length": 18.90907911685659}, {"destination": 476078723, "path": [[2220.3654384469473, -2744.197694322992], [2051.265438446137, -2889.497694322785], [1952.4154384455983, -2984.647694322717], [1860.165438444028, -3073.397694322466], [1644.8654384433326, -3289.5476943224367]], "source": 103764456, "length": 163.438378660961}, {"destination": 103736869, "path": [[2220.3654384469473, -2744.197694322992], [2109.8654384488214, -2700.7476943232687]], "source": 103764456, "length": 23.12803271447589}, {"destination": 1317671289, "path": [[2064.1154384435367, 498.2023056765428], [2160.665438445619, 502.8023056770081], [2265.0654384435143, 509.15230567660785]], "source": 1317671401, "length": 38.29436700142547}, {"destination": 1317671346, "path": [[2064.1154384435367, 498.2023056765428], [2065.6654384438866, 528.1523056765991]], "source": 1317671401, "length": 6.668496136635714}, {"destination": 1317671107, "path": [[2064.1154384435367, 498.2023056765428], [2061.715438443912, 461.3523056775648]], "source": 1317671401, "length": 8.208484409819945}, {"destination": 1317670905, "path": [[3651.86543844942, 1333.1023056775139], [3554.8654384456313, 1323.8023056771908]], "source": 1317671402, "length": 18.56272967071442}, {"destination": 1317670822, "path": [[1321.1654384477356, 927.1523056781916], [1342.365438446791, 925.0523056767435]], "source": 1317671406, "length": 4.057865097991023}, {"destination": 1317671303, "path": [[3048.2154384472437, 1112.9023056781762], [2924.9654384457813, 1112.9023056781762]], "source": 1317671409, "length": 23.438864129499734}, {"destination": 1317670910, "path": [[3048.2154384472437, 1112.9023056781762], [3051.0154384444377, 1161.1023056765646], [3048.2654384442753, 1183.7023056777696]], "source": 1317671409, "length": 15.78445868397781}, {"destination": 1317670935, "path": [[3048.2154384472437, 1112.9023056781762], [3126.115438448096, 1112.9023056781762]], "source": 1317671409, "length": 14.814186714679005}, {"destination": 93792610, "path": [[10912.76543844799, -1709.8476943218088], [10826.365438447283, -1674.5476943231806]], "source": 1489367542, "length": 18.20929891939759}, {"destination": 1317671230, "path": [[2069.465438445661, 206.90230567765866], [1966.6654384451476, 211.502305678124]], "source": 1317671415, "length": 19.576505597237695}, {"destination": 1317670952, "path": [[2718.4154384443104, 339.9523056781817], [2479.715438447272, 360.60230567791507], [2453.81543844303, 331.0023056766198]], "source": 1317671421, "length": 53.84822954872179}, {"destination": 1317670780, "path": [[2718.4154384443104, 339.9523056781817], [2729.165438445591, 390.40230567799483]], "source": 1317671421, "length": 11.404902882334769}, {"destination": 1317670943, "path": [[2718.4154384443104, 339.9523056781817], [2706.365438449154, 283.20230567757676]], "source": 1317671421, "length": 12.827178693200517}, {"destination": 1317671113, "path": [[1101.1154384448218, 812.4523056771693], [1208.5154384493535, 805.5523056782476]], "source": 1317671422, "length": 20.48230571971239}, {"destination": 1317670918, "path": [[1101.1154384448218, 812.4523056771693], [1101.8654384500337, 874.1523056770006]], "source": 1317671422, "length": 13.722686015884102}, {"destination": 1317671125, "path": [[1101.1154384448218, 812.4523056771693], [1100.9654384466216, 698.0023056772922]], "source": 1317671422, "length": 25.45261249114392}, {"destination": 1317671166, "path": [[1101.1154384448218, 812.4523056771693], [1004.665438443908, 812.4523056771693], [1004.665438443908, 775.7523056781679], [912.2654384441375, 778.0023056778163]], "source": 1317671422, "length": 44.08334838115688}, {"destination": 475977667, "path": [[1579.4154384494163, 961.5523056769604], [1579.865438444017, 1000.7523056767553], [1591.9154384462786, 1158.6523056781316]], "source": 1317671424, "length": 43.90876437547232}, {"destination": 1317671333, "path": [[1579.4154384494163, 961.5523056769604], [1578.315438443667, 869.8023056776805]], "source": 1317671424, "length": 20.4051559637146}, {"destination": 1317671277, "path": [[1579.4154384494163, 961.5523056769604], [1696.665438444711, 963.852305677193], [1715.4154384471099, 929.40230567784], [1787.1154384465626, 924.852305677959]], "source": 1317671424, "length": 44.426891849510795}, {"destination": 1317671184, "path": [[2489.665438446309, 97.20230567822341], [2494.1654384491585, 151.80230567679587]], "source": 1317671425, "length": 12.172484716469873}, {"destination": 1317671057, "path": [[2489.665438446309, 97.20230567822341], [2485.0654384493964, 41.8023056774075]], "source": 1317671425, "length": 12.351096064591893}, {"destination": 1317671216, "path": [[2489.665438446309, 97.20230567822341], [2618.3154384469276, 89.40230567766605], [2664.815438443213, 87.6523056767553]], "source": 1317671425, "length": 33.37790273834784}, {"destination": 1469016730, "path": [[-6422.434561550006, -1089.6976943222114], [-6280.734561556756, -921.9476943229665]], "source": 1469016667, "length": 46.02028730499337}, {"destination": 1469016620, "path": [[-6422.434561550006, -1089.6976943222114], [-6301.734561553474, -1167.6476943218718]], "source": 1469016667, "length": 28.764025952475023}, {"destination": 1469016770, "path": [[-6422.434561550006, -1089.6976943222114], [-6553.834561550786, -1009.3976943217342], [-6834.684561553672, -1352.3976943226046]], "source": 1469016667, "length": 123.83188137473286}, {"destination": 1317671223, "path": [[1632.5154384446705, -180.69769432216276], [1631.6154384483639, -105.0476943227352]], "source": 1317671434, "length": 16.82474429420918}, {"destination": 1317670979, "path": [[1632.5154384446705, -180.69769432216276], [1632.6654384499761, -270.04769432181774]], "source": 1317671434, "length": 19.87055517518011}, {"destination": 1317671399, "path": [[1632.5154384446705, -180.69769432216276], [1908.5654384483064, -178.3976943219301], [1927.3154384435998, -219.6976943231732], [1940.715438443874, -258.6976943224073]], "source": 1317671434, "length": 71.39163313975362}, {"destination": 1581175394, "path": [[2771.4154384455014, -5723.147694322251], [2822.365438447605, -5712.847694322676], [2861.2654384474467, -5708.24769432221], [2929.6654384438625, -5635.997694323436]], "source": 1581175309, "length": 38.093839180268844}, {"destination": 1581175339, "path": [[2771.4154384455014, -5723.147694322251], [2744.615438444953, -5730.047694322949], [2693.6154384458177, -5749.5476943234535], [2664.115438449244, -5771.347694322415], [2642.065438443808, -5797.397694323081]], "source": 1581175309, "length": 30.50864051634343}, {"destination": 1581175407, "path": [[2771.4154384455014, -5723.147694322251], [2837.115438445892, -5755.297694323147], [2758.7654384433336, -5897.197694322287]], "source": 1581175309, "length": 49.291545376792996}, {"destination": 1317670914, "path": [[1930.0154384467305, 791.8023056774359], [2047.3154384461623, 773.702305677304]], "source": 1317671438, "length": 22.667511870188374}, {"destination": 1317670892, "path": [[1930.0154384467305, 791.8023056774359], [1917.0654384481622, 915.9023056781734]], "source": 1317671438, "length": 27.708300897224355}, {"destination": 1317671214, "path": [[1930.0154384467305, 791.8023056774359], [1785.9154384467502, 780.3023056780489]], "source": 1317671438, "length": 27.523089996437008}, {"destination": 1317671344, "path": [[2390.3654384440642, 213.5523056772115], [2377.715438449002, 100.05230567777801]], "source": 1317671440, "length": 25.355759279193908}, {"destination": 1317671360, "path": [[2390.3654384440642, 213.5523056772115], [2498.765438446071, 207.25230567819608]], "source": 1317671440, "length": 20.662146647145466}, {"destination": 1317671350, "path": [[2390.3654384440642, 213.5523056772115], [2394.1154384488073, 259.1523056771905]], "source": 1317671440, "length": 10.166073319333773}, {"destination": 1771400912, "path": [[8881.465438449253, -5838.997694322501], [8838.365438442963, -5992.597694323365]], "source": 1771400999, "length": 35.12867559711638}, {"destination": 1771400943, "path": [[8881.465438449253, -5838.997694322501], [8886.615438449042, -5820.597694322416], [8910.615438445291, -5698.997694322472]], "source": 1771400999, "length": 31.63333266760681}, {"destination": 1771400967, "path": [[8881.465438449253, -5838.997694322501], [8822.265438446664, -5815.997694321951], [8788.715438448946, -5797.64769432245], [8779.31543844568, -5781.597694323182], [8784.715438444835, -5759.797694322444], [8752.165438444592, -5744.297694322498]], "source": 1771400999, "length": 35.969228080979555}, {"destination": 1317671201, "path": [[2946.4154384442054, 34.90230567670949], [2950.7154384447176, -47.69769432222404]], "source": 1317671442, "length": 18.387598760871096}, {"destination": 1317671363, "path": [[2946.4154384442054, 34.90230567670949], [2664.815438443213, 37.20230567694216]], "source": 1317671442, "length": 53.554776149545496}, {"destination": 1317671147, "path": [[2946.4154384442054, 34.90230567670949], [2950.665438447686, 101.60230567812789]], "source": 1317671442, "length": 14.855499323456446}, {"destination": 5021317210, "path": [[-8557.534561553837, -5842.947694322475], [-8517.93456155292, -5798.74769432287], [-8391.384561555526, -5371.597694322716], [-8291.434561556343, -5087.547694323292]], "source": 640627221, "length": 176.34382826009843}, {"destination": 477633780, "path": [[-8557.534561553837, -5842.947694322475], [-8502.834561554097, -5915.04769432305]], "source": 640627221, "length": 19.112226139971497}, {"destination": 1316236504, "path": [[-2415.7345615520853, 2976.5523056770603], [-2307.9845615541217, 2936.402305676822], [-2268.184561550868, 2913.3523056774634]], "source": 1316236462, "length": 31.494258107001947}, {"destination": 1316236842, "path": [[-2415.7345615520853, 2976.5523056770603], [-2396.534561555086, 2993.752305677333], [-2374.934561551356, 3022.302305677016]], "source": 1316236462, "length": 12.849020130824286}, {"destination": 1316237204, "path": [[-2415.7345615520853, 2976.5523056770603], [-2569.784561551103, 3033.9023056775713]], "source": 1316236462, "length": 31.95349516234712}, {"destination": 640627221, "path": [[-9084.784561551372, -5388.297694322475], [-9017.234561554233, -5425.647694321967], [-8641.68456155312, -5745.797694322263], [-8557.534561553837, -5842.947694322475]], "source": 638736475, "length": 143.02042641491073}, {"destination": 1581175404, "path": [[2642.065438443808, -5797.397694323081], [2666.215438445363, -5808.897694322468], [2711.0654384472355, -5855.047694321769]], "source": 1581175339, "length": 18.59874815629565}, {"destination": 1581175309, "path": [[2642.065438443808, -5797.397694323081], [2664.115438449244, -5771.347694322415], [2693.6154384458177, -5749.5476943234535], [2744.615438444953, -5730.047694322949], [2771.4154384455014, -5723.147694322251]], "source": 1581175339, "length": 30.508640516343434}, {"destination": 1581175343, "path": [[2642.065438443808, -5797.397694323081], [2623.915438448421, -5787.397694323459]], "source": 1581175339, "length": 4.106437573991551}, {"destination": 4867879872, "path": [[2623.915438448421, -5787.397694323459], [2534.815438444582, -5975.247694323116]], "source": 1581175343, "length": 45.08083739322951}, {"destination": 1581175394, "path": [[2623.915438448421, -5787.397694323459], [2645.7154384473824, -5744.147694322521], [2703.4154384466547, -5721.2476943231395], [2820.0654384491486, -5698.297694323173], [2867.0154384471402, -5650.147694321817], [2929.6654384438625, -5635.997694323436]], "source": 1581175343, "length": 71.59338767620692}, {"destination": 1581175339, "path": [[2623.915438448421, -5787.397694323459], [2642.065438443808, -5797.397694323081]], "source": 1581175343, "length": 4.106437573991551}, {"destination": 1581175189, "path": [[2623.915438448421, -5787.397694323459], [2526.2654384476946, -5945.797694321797], [2515.4654384493824, -5967.497694323143]], "source": 1581175343, "length": 45.0661912359695}, {"destination": 1404152848, "path": [[-1629.4345615506245, 7059.80230567782], [-970.9845615546442, 6855.602305677166], [-703.0345615532951, 6774.352305678022]], "source": 3047465736, "length": 187.2882373731743}, {"destination": 601712459, "path": [[-1629.4345615506245, 7059.80230567782], [-2058.234561552297, 7186.802305676921]], "source": 3047465736, "length": 86.30972718014041}, {"destination": 1404152861, "path": [[-1629.4345615506245, 7059.80230567782], [-1519.7845615517735, 7321.252305677816]], "source": 3047465736, "length": 61.77109417444803}, {"destination": 3356022891, "path": [[-640.2345615512672, 1411.252305677735], [-401.93456155179774, 1370.252305678221], [-326.13456155417, 1364.60230567792]], "source": 3356022890, "length": 60.69742022126104}, {"destination": 1831147413, "path": [[-640.2345615512672, 1411.252305677735], [-622.3345615552489, 1476.1523056776582], [-549.7345615523841, 1508.6023056767317]], "source": 3356022890, "length": 30.408637172582328}, {"destination": 1316196939, "path": [[-2173.8345615531784, 1071.1523056770034], [-2023.6345615529672, 1023.4023056767683], [-1915.384561556266, 982.3523056766703]], "source": 1316196935, "length": 52.99453885030398}, {"destination": 1317671394, "path": [[1987.6654384489711, -333.6476943225364], [2031.4654384492314, -322.29769432312594]], "source": 1317670927, "length": 8.704083009217836}, {"destination": 1317671414, "path": [[1987.6654384489711, -333.6476943225364], [1940.715438443874, -345.8476943229982]], "source": 1317670927, "length": 9.331723194478522}, {"destination": 1317671399, "path": [[1987.6654384489711, -333.6476943225364], [1940.715438443874, -258.6976943224073]], "source": 1317670927, "length": 18.90907911685659}, {"destination": 1887913945, "path": [[-3634.384561550519, -3754.6976943225727], [-4023.684561552443, -3684.2476943217407]], "source": 874312265, "length": 75.66764875492301}, {"destination": 1887913942, "path": [[-3634.384561550519, -3754.6976943225727], [-3613.9345615566754, -3651.6476943226908]], "source": 874312265, "length": 23.245033114033884}, {"destination": 1887913958, "path": [[-3634.384561550519, -3754.6976943225727], [-3680.2845615540036, -3955.047694322644], [-3687.8845615504474, -3985.347694323238]], "source": 874312265, "length": 52.2944811246378}, {"destination": 1316196988, "path": [[-1915.384561556266, 982.3523056766703], [-1935.4345615525403, 945.2523056765472]], "source": 1316196939, "length": 9.089045086897167}, {"destination": 1316236612, "path": [[-1915.384561556266, 982.3523056766703], [-1887.3345615517678, 1034.2523056774412]], "source": 1316196939, "length": 12.715678848099925}, {"destination": 1316196935, "path": [[-1915.384561556266, 982.3523056766703], [-2023.6345615529672, 1023.4023056767683], [-2173.8345615531784, 1071.1523056770034]], "source": 1316196939, "length": 52.99453885030398}, {"destination": 1316196948, "path": [[-1401.384561553698, 1498.2023056777648], [-1592.6845615510388, 1602.6023056774363]], "source": 1316196943, "length": 43.15815279467495}, {"destination": 3355916993, "path": [[-3534.434561551336, -2697.547694323177], [-3566.384561551672, -2745.847694322734], [-3735.784561555988, -3008.247694323174]], "source": 479294032, "length": 78.99677280830416}, {"destination": 479294044, "path": [[-3534.434561551336, -2697.547694323177], [-3177.6345615526225, -2863.3476943227265]], "source": 479294032, "length": 77.22097298434188}, {"destination": 1316196948, "path": [[-1573.0345615523333, 1642.7023056770906], [-1592.6845615510388, 1602.6023056774363]], "source": 1316196945, "length": 9.669442900085478}, {"destination": 1316236347, "path": [[-2375.034561552525, 993.6023056766885], [-2297.234561552841, 1151.8523056768258], [-2279.184561551517, 1186.752305677885]], "source": 1316196946, "length": 46.663830565919596}, {"destination": 1316236692, "path": [[-2375.034561552525, 993.6023056766885], [-2385.884561554974, 969.45230567691]], "source": 1316196946, "length": 5.752805190490314}, {"destination": 1316196999, "path": [[-2375.034561552525, 993.6023056766885], [-2138.98456155448, 924.8023056773746], [-2138.98456155448, 883.5023056779079]], "source": 1316196946, "length": 56.611413273283596}, {"destination": 1316196945, "path": [[-1592.6845615510388, 1602.6023056774363], [-1573.0345615523333, 1642.7023056770906]], "source": 1316196948, "length": 9.669442900085478}, {"destination": 1316196980, "path": [[-1592.6845615510388, 1602.6023056774363], [-1645.1845615534921, 1495.3523056782103]], "source": 1316196948, "length": 25.85679386093342}, {"destination": 1316196957, "path": [[-1592.6845615510388, 1602.6023056774363], [-1886.8845615500618, 1729.8523056776817]], "source": 1316196948, "length": 62.69994781735545}, {"destination": 1316196943, "path": [[-1592.6845615510388, 1602.6023056774363], [-1401.384561553698, 1498.2023056777648]], "source": 1316196948, "length": 43.15815279467495}, {"destination": 1316196984, "path": [[-1760.7845615543738, 1268.4023056781512], [-1564.9845615541835, 1190.8523056778363], [-1449.6845615568077, 1158.752305677524], [-1373.834561555043, 1136.402305677464]], "source": 1316196949, "length": 79.35400002069696}, {"destination": 1316196985, "path": [[-1760.7845615543738, 1268.4023056781512], [-1802.5345615555466, 1191.1523056777896]], "source": 1316196949, "length": 18.926230212552053}, {"destination": 1316196971, "path": [[-1760.7845615543738, 1268.4023056781512], [-1830.5345615559077, 1294.0523056776954], [-1884.1845615540365, 1291.802305678047], [-1924.434561551891, 1342.25230567786], [-1967.3345615558446, 1358.302305677128], [-2066.5845615539524, 1397.3023056781385], [-2096.0845615505264, 1427.1023056782183], [-2141.6845615505054, 1429.4023056766746], [-2203.3845615538894, 1447.7523056779519], [-2246.2845615507376, 1486.7523056771859], [-2297.234561552841, 1493.6023056772997], [-2332.0845615515395, 1473.0023056781506], [-2530.5845615548606, 1550.9523056778107]], "source": 1316196949, "length": 169.02140042882488}, {"destination": 1316196998, "path": [[-1760.7845615543738, 1268.4023056781512], [-1713.0845615511703, 1356.7523056767782]], "source": 1316196949, "length": 21.641322508928713}, {"destination": 1316196960, "path": [[-3658.0845615503677, -735.2476943225383], [-3367.28456155555, -1123.2976943222893]], "source": 1316196952, "length": 102.4967700612579}, {"destination": 481390834, "path": [[-3658.0845615503677, -735.2476943225383], [-3635.8345615568055, -694.8976943217389], [-3423.8345615520416, -117.49769432256585]], "source": 1316196952, "length": 144.5089508017084}, {"destination": 481396599, "path": [[-3658.0845615503677, -735.2476943225383], [-3717.3345615499898, -797.6476943234445], [-3851.1845615545326, -849.4476943230467]], "source": 1316196952, "length": 45.81436645561681}, {"destination": 1316198744, "path": [[-2116.5845615556123, 2097.5523056776524], [-2258.2345615518307, 1861.8023056777843]], "source": 1316196954, "length": 58.9445833477361}, {"destination": 1316198781, "path": [[-2116.5845615556123, 2097.5523056776524], [-2315.684561551734, 2245.1023056770937]], "source": 1316196954, "length": 50.10468701379469}, {"destination": 477620688, "path": [[-3203.5345615568644, -4951.747694322606], [-3657.9345615521675, -4833.0476943228]], "source": 267194971, "length": 90.34736280913899}, {"destination": 1315678723, "path": [[-3203.5345615568644, -4951.747694322606], [-3200.184561556796, -4865.1976943219215]], "source": 267194971, "length": 19.258559725940195}, {"destination": 479294057, "path": [[-3177.6345615526225, -2863.3476943227265], [-2816.5345615533965, -3044.6476943222224]], "source": 479294044, "length": 79.62881619769006}, {"destination": 479283141, "path": [[-3177.6345615526225, -2863.3476943227265], [-3374.5845615555936, -3229.2976943217864]], "source": 479294044, "length": 89.5875648188964}, {"destination": 1316196948, "path": [[-1886.8845615500618, 1729.8523056776817], [-1592.6845615510388, 1602.6023056774363]], "source": 1316196957, "length": 62.69994781735545}, {"destination": 639308664, "path": [[-1282.2345615504105, 1332.7023056781684], [-1244.8845615509185, 1414.2523056772661]], "source": 1316196959, "length": 19.477271236119016}, {"destination": 1316197000, "path": [[-1282.2345615504105, 1332.7023056781684], [-1309.1345615521277, 1274.0023056778682]], "source": 1316196959, "length": 14.020905940076773}, {"destination": 1316196980, "path": [[-1282.2345615504105, 1332.7023056781684], [-1645.1845615534921, 1495.3523056782103]], "source": 1316196959, "length": 77.92828591337083}, {"destination": 1316196952, "path": [[-3367.28456155555, -1123.2976943222893], [-3658.0845615503677, -735.2476943225383]], "source": 1316196960, "length": 102.4967700612579}, {"destination": 1721497987, "path": [[3389.8154384459644, -5323.997694322457], [3479.165438449172, -5392.797694321772]], "source": 4451234402, "length": 22.86387387908236}, {"destination": 4451234412, "path": [[3389.8154384459644, -5323.997694322457], [3295.915438449981, -5407.6976943218115], [3150.5654384460513, -5555.047694322468]], "source": 4451234402, "length": 68.66136485281157}, {"destination": 1721498095, "path": [[3389.8154384459644, -5323.997694322457], [3425.6154384451065, -5292.547694322636]], "source": 4451234402, "length": 9.760359742635954}, {"destination": 1316196988, "path": [[-2197.9845615547333, 1000.0023056768725], [-2079.9845615542267, 954.6023056774544], [-1953.9345615555703, 911.0523056765629], [-1935.4345615525403, 945.2523056765472]], "source": 1316196963, "length": 58.84186206096846}, {"destination": 1721498161, "path": [[3496.265438442947, -5377.247694323018], [3606.165438448272, -5277.397694323227], [3670.5154384435446, -5218.3476943223895], [3635.06543844494, -5191.847694321794], [3979.0654384432855, -4919.547694322901], [4080.9654384474925, -4883.997694323128], [4075.465438447168, -4815.747694323136], [4029.46543844962, -4774.097694323132]], "source": 4451234404, "length": 195.4163372947235}, {"destination": 1721498194, "path": [[3496.265438442947, -5377.247694323018], [3541.765438448863, -5377.697694322947], [3543.8154384479503, -5438.497694322919], [3589.3654384437923, -5486.6476943225], [3563.915438448362, -5546.847694322565], [3529.0654384496634, -5555.447694321813], [3440.515438448699, -5637.997694321939], [3393.565438443602, -5702.247694323149], [3340.015438446642, -5757.197694322258]], "source": 4451234404, "length": 114.75026188548384}, {"destination": 1721497987, "path": [[3496.265438442947, -5377.247694323018], [3479.165438449172, -5392.797694321772]], "source": 4451234404, "length": 4.746771603822818}, {"destination": 1831147413, "path": [[-453.78456155020785, 1529.6023056770025], [-501.4345615563798, 1545.252305676925], [-549.7345615523841, 1508.6023056767317]], "source": 3356022886, "length": 21.9880601599166}, {"destination": 639309886, "path": [[-453.78456155020785, 1529.6023056770025], [-347.7345615507943, 1723.602305677474]], "source": 3356022886, "length": 47.625048116446074}, {"destination": 1315678681, "path": [[-6360.584561555526, -3910.7976943224544], [-6529.134561553463, -4206.897694322364]], "source": 267194982, "length": 73.23547150672415}, {"destination": 267198210, "path": [[-6360.584561555526, -3910.7976943224544], [-6680.884561554023, -3788.897694322557]], "source": 267194982, "length": 66.66759182131122}, {"destination": 482734405, "path": [[3155.9654384452074, 8865.052305678133], [3250.8154384487398, 8800.352305676995], [3322.815438444593, 8753.45230567781], [3390.9654384487453, 8713.852305676895], [3468.965438443661, 8671.552305678177], [3740.9154384491217, 8541.152305676647], [3893.265438449589, 8473.452305677753], [4006.115438443203, 8421.45230567759], [4122.915438443897, 8367.802305677686], [4172.415438446819, 8343.202305677976], [4211.515438448998, 8319.85230567689], [4253.96543844414, 8291.952305677696], [4332.06543844733, 8233.152305678004], [4430.265438443826, 8158.002305677314]], "source": 62829161, "length": 290.08056184948515}, {"destination": 1618037846, "path": [[3155.9654384452074, 8865.052305678133], [3334.6654384445173, 8774.50230567689], [3516.465438444527, 8684.75230567789], [3701.4154384493736, 8598.902305678279], [3892.3154384491454, 8512.252305678203], [3968.4154384431736, 8479.952305677329], [4066.3154384432687, 8444.852305677487], [4181.315438444244, 8409.252305677128], [4268.615438448364, 8386.45230567714], [4331.315438449224, 8378.452305677798], [4393.965438445946, 8374.502305677823], [4499.965438448327, 8383.452305677607], [4601.965438446598, 8411.202305676823], [4709.115438444655, 8459.102305677035]], "source": 62829161, "length": 325.16230149117683}, {"destination": 4273219689, "path": [[723.2154384482214, -1518.647694322084], [713.6154384497218, -1585.297694322918]], "source": 4273214059, "length": 14.934161227793753}, {"destination": 4273219690, "path": [[723.2154384482214, -1518.647694322084], [728.3654384480087, -1495.0476943234037], [727.2154384452278, -1488.3976943220746]], "source": 4273214059, "length": 6.833421967037996}, {"destination": 4273214057, "path": [[723.2154384482214, -1518.647694322084], [706.5654384490472, -1521.3476943234382], [709.1154384468723, -1535.0976943224737]], "source": 4273214059, "length": 6.318915494043067}, {"destination": 4451234418, "path": [[3150.5654384460513, -5555.047694322468], [3255.515438446821, -5629.7976943220365]], "source": 4451234412, "length": 25.973126675992074}, {"destination": 495640875, "path": [[3150.5654384460513, -5555.047694322468], [3018.2154384448268, -5689.197694323411]], "source": 4451234412, "length": 39.03047203083928}, {"destination": 4451234402, "path": [[3150.5654384460513, -5555.047694322468], [3295.915438449981, -5407.6976943218115], [3389.8154384459644, -5323.997694322457]], "source": 4451234412, "length": 68.66136485281157}, {"destination": 76482085, "path": [[-7271.234561549989, 3865.9023056766273], [-7556.634561552755, 3947.5523056768934], [-8012.334561556145, 4116.602305677119]], "source": 857780845, "length": 151.7073170310282}, {"destination": 1807311607, "path": [[-7271.234561549989, 3865.9023056766273], [-7254.73456155612, 3922.852305677793], [-7052.434561551025, 4705.802305677409]], "source": 857780845, "length": 191.3686473768228}, {"destination": 4273214057, "path": [[703.6154384465476, -1583.7476943225681], [699.7654384477414, -1558.7476943217382], [709.1154384468723, -1535.0976943224737]], "source": 4273214063, "length": 11.157904481771599}, {"destination": 4273219689, "path": [[703.6154384465476, -1583.7476943225681], [713.6154384497218, -1585.297694322918]], "source": 4273214063, "length": 1.9316502822992696}, {"destination": 4273214065, "path": [[703.6154384465476, -1583.7476943225681], [689.3154384499667, -1590.397694322121], [683.5654384431677, -1590.7976943232427]], "source": 4273214063, "length": 4.1845133523300335}, {"destination": 4273214067, "path": [[683.5654384431677, -1590.7976943232427], [685.9654384498981, -1571.697694322083], [604.3154384443028, -1567.5476943233234]], "source": 4273214065, "length": 19.825392314643928}, {"destination": 4273214068, "path": [[683.5654384431677, -1590.7976943232427], [680.5654384436366, -1617.6476943225994], [600.2154384461278, -1612.8476943233495]], "source": 4273214065, "length": 21.31553246430685}, {"destination": 4273214063, "path": [[683.5654384431677, -1590.7976943232427], [689.3154384499667, -1590.397694322121], [703.6154384465476, -1583.7476943225681]], "source": 4273214065, "length": 4.1845133523300335}, {"destination": 1721498106, "path": [[3255.515438446821, -5629.7976943220365], [3179.06543844515, -5710.747694323004]], "source": 4451234418, "length": 23.138941429387526}, {"destination": 1721497987, "path": [[3255.515438446821, -5629.7976943220365], [3479.165438449172, -5392.797694321772]], "source": 4451234418, "length": 67.72377265532491}, {"destination": 4451234412, "path": [[3255.515438446821, -5629.7976943220365], [3150.5654384460513, -5555.047694322468]], "source": 4451234418, "length": 25.973126675992074}, {"destination": 4273214065, "path": [[604.3154384443028, -1567.5476943233234], [685.9654384498981, -1571.697694322083], [683.5654384431677, -1590.7976943232427]], "source": 4273214067, "length": 19.825392314643928}, {"destination": 4273214068, "path": [[604.3154384443028, -1567.5476943233234], [600.2154384461278, -1612.8476943233495]], "source": 4273214067, "length": 10.104270205880134}, {"destination": 4273214077, "path": [[604.3154384443028, -1567.5476943233234], [595.3154384457093, -1566.9476943234172], [585.9154384495469, -1549.6476943219761], [569.165438449204, -1547.8476943222574], [562.9154384436674, -1540.0976943222845], [540.5154384447997, -1538.2976943225658]], "source": 4273214067, "length": 15.53566909236943}, {"destination": 4273214065, "path": [[600.2154384461278, -1612.8476943233495], [680.5654384436366, -1617.6476943225994], [683.5654384431677, -1590.7976943232427]], "source": 4273214068, "length": 21.31553246430685}, {"destination": 4273214067, "path": [[600.2154384461278, -1612.8476943233495], [604.3154384443028, -1567.5476943233234]], "source": 4273214068, "length": 10.104270205880134}, {"destination": 4273214071, "path": [[600.2154384461278, -1612.8476943233495], [599.2154384486525, -1619.0976943217806], [595.7154384432783, -1628.847694322033], [586.4154384482845, -1631.747694322172], [575.8154384452041, -1628.5476943220801], [558.1154384444176, -1628.4476943226878], [558.3654384437864, -1624.4476943221287]], "source": 4273214068, "length": 11.945631730358466}, {"destination": 1316236692, "path": [[-2415.2345615533477, 904.1523056776413], [-2385.884561554974, 969.45230567691]], "source": 1316196981, "length": 15.558118711145502}, {"destination": 1316198765, "path": [[-2415.2345615533477, 904.1523056776413], [-2457.784561556764, 851.6023056781563]], "source": 1316196981, "length": 14.21465913388201}, {"destination": 1316196999, "path": [[-2415.2345615533477, 904.1523056776413], [-2313.334561556246, 872.0523056773288], [-2163.134561556035, 849.1023056773628], [-2138.98456155448, 883.5023056779079]], "source": 1316196981, "length": 58.59174856617817}, {"destination": 1316196980, "path": [[-1975.3845615539944, 1628.9523056780554], [-1645.1845615534921, 1495.3523056782103]], "source": 1316196982, "length": 69.47068493540928}, {"destination": 4273214068, "path": [[558.3654384437864, -1624.4476943221287], [558.1154384444176, -1628.4476943226878], [575.8154384452041, -1628.5476943220801], [586.4154384482845, -1631.747694322172], [595.7154384432783, -1628.847694322033], [599.2154384486525, -1619.0976943217806], [600.2154384461278, -1612.8476943233495]], "source": 4273214071, "length": 11.945631730358464}, {"destination": 1316236660, "path": [[-1373.834561555043, 1136.402305677464], [-1457.4345615514517, 965.2023056769821]], "source": 1316196984, "length": 41.2594674097532}, {"destination": 1316196949, "path": [[-1373.834561555043, 1136.402305677464], [-1449.6845615568077, 1158.752305677524], [-1564.9845615541835, 1190.8523056778363], [-1760.7845615543738, 1268.4023056781512]], "source": 1316196984, "length": 79.35400002069696}, {"destination": 1316196990, "path": [[-1373.834561555043, 1136.402305677464], [-1346.7845615551255, 1191.80230567828], [-1339.684561550314, 1207.352305677034]], "source": 1316196984, "length": 17.064595679333266}, {"destination": 1316196992, "path": [[-1802.5345615555466, 1191.1523056777896], [-1683.0345615517217, 1138.1023056777906], [-1658.8845615501668, 1106.002305677478], [-1503.2845615507995, 1037.2023056781643]], "source": 1316196985, "length": 67.40710858687743}, {"destination": 1316237178, "path": [[-1802.5345615555466, 1191.1523056777896], [-1839.5345615545011, 1122.6523056766523]], "source": 1316196985, "length": 16.780223667930485}, {"destination": 1316196949, "path": [[-1802.5345615555466, 1191.1523056777896], [-1760.7845615543738, 1268.4023056781512]], "source": 1316196985, "length": 18.926230212552053}, {"destination": 1316196983, "path": [[-1802.5345615555466, 1191.1523056777896], [-2002.184561554543, 1273.4523056767698], [-2281.1345615565415, 1369.7523056777072], [-2417.9345615564785, 1429.4023056766746], [-2543.984561555135, 1477.5523056780316]], "source": 1316196985, "length": 154.81732572581706}, {"destination": 1889249276, "path": [[-2530.5345615507235, -3229.747694321716], [-2337.284561555464, -3201.7976943219396], [-2203.5845615562266, -3183.1476943224857], [-2122.084561555937, -3182.0976943226497]], "source": 479294074, "length": 78.53001292489758}, {"destination": 1721498211, "path": [[3466.9154384445733, -5885.147694321802], [3399.665438443833, -5860.947694323215]], "source": 4451234427, "length": 13.874221459845174}, {"destination": 4451234396, "path": [[3466.9154384445733, -5885.147694321802], [3657.7654384473135, -5534.79769432208], [3683.265438446881, -5475.197694321921], [3697.2654384470616, -5315.647694322578], [3720.0654384434984, -5271.547694322365], [3800.6154384433444, -5245.297694322915]], "source": 4451234427, "length": 162.76129576313744}, {"destination": 1767289507, "path": [[3466.9154384445733, -5885.147694321802], [3566.865438443756, -5921.39769432265]], "source": 4451234427, "length": 20.644036595546645}, {"destination": 1316196939, "path": [[-1935.4345615525403, 945.2523056765472], [-1915.384561556266, 982.3523056766703]], "source": 1316196988, "length": 9.089045086897167}, {"destination": 1316196972, "path": [[-1935.4345615525403, 945.2523056765472], [-1747.3845615540995, 874.3523056775615], [-1605.234561552038, 833.0523056780947], [-1537.784561556066, 800.7023056766371]], "source": 1316196988, "length": 82.34226155577568}, {"destination": 1316196963, "path": [[-1935.4345615525403, 945.2523056765472], [-1953.9345615555703, 911.0523056765629], [-2079.9845615542267, 954.6023056774544], [-2197.9845615547333, 1000.0023056768725]], "source": 1316196988, "length": 58.84186206096846}, {"destination": 4333704619, "path": [[-7013.084561556581, 2098.1023056769745], [-7045.834561552056, 2085.502305677167], [-7194.734561551286, 2014.3023056782283], [-7302.684561551587, 1961.6523056775748], [-7410.234561554318, 1929.9023056777996], [-7508.484561554951, 1912.0023056782288], [-7613.634561550953, 1910.80230567664], [-7694.884561551873, 1914.252305677877], [-7785.184561555525, 1920.4523056775001]], "source": 857780861, "length": 156.34921814995963}, {"destination": 93246167, "path": [[-7013.084561556581, 2098.1023056769745], [-6914.434561551275, 2148.902305677325], [-6807.134561555017, 2197.802305676788]], "source": 857780861, "length": 45.02282345364606}, {"destination": 1769171875, "path": [[3435.1654384465746, -6047.097694322545], [3390.315438444702, -6125.797694322088]], "source": 4451234430, "length": 19.46894029730075}, {"destination": 495636197, "path": [[3435.1654384465746, -6047.097694322545], [3499.815438445353, -5941.2976943225], [3648.2654384499824, -5691.197694321914], [3683.4654384492183, -5631.8476943229]], "source": 4451234430, "length": 103.71825621572384}, {"destination": 1721498211, "path": [[3435.1654384465746, -6047.097694322545], [3366.1154384461156, -6018.14769432174], [3360.7154384469595, -5928.097694322787], [3399.665438443833, -5860.947694323215]], "source": 4451234430, "length": 51.34463848631657}, {"destination": 1473995248, "path": [[7749.81543844433, -1139.7976943232634], [7683.365438445833, -1205.9476943218074], [7673.165438447427, -1246.397694321999], [7610.915438448274, -1281.5976943230112], [7519.765438445347, -1382.5476943232218], [7498.815438445661, -1425.2976943218698], [7463.965438446962, -1432.1976943225677], [7431.765438447257, -1505.597694322347], [7417.265438448339, -1525.6476943221742]], "source": 393749269, "length": 110.93858358991018}, {"destination": 4867862898, "path": [[7749.81543844433, -1139.7976943232634], [7876.865438447567, -1196.3976943221155], [7857.715438447599, -1258.2476943219235], [7875.565438446585, -1300.8976943229554]], "source": 393749269, "length": 51.5450121724155}, {"destination": 1473995252, "path": [[7749.81543844433, -1139.7976943232634], [7816.515438449301, -1069.7976943223607], [7867.915438446005, -1003.4476943232562]], "source": 393749269, "length": 37.779868100027386}, {"destination": 1316196985, "path": [[-1503.2845615507995, 1037.2023056781643], [-1658.8845615501668, 1106.002305677478], [-1683.0345615517217, 1138.1023056777906], [-1802.5345615555466, 1191.1523056777896]], "source": 1316196992, "length": 67.40710858687743}, {"destination": 495649612, "path": [[8183.815438449927, -7228.147694322118], [8175.7654384446705, -7224.197694322143], [8020.1154384482725, -7143.94769432225]], "source": 1779937921, "length": 36.32617995232791}, {"destination": 1777868876, "path": [[8183.815438449927, -7228.147694322118], [7806.715438448464, -7708.897694323369], [7754.365438444211, -7744.447694323142], [7696.315438444401, -7745.997694321715]], "source": 1779937921, "length": 152.48666704136835}, {"destination": 1777868870, "path": [[8183.815438449927, -7228.147694322118], [8240.815438448124, -7155.497694322222]], "source": 1779937921, "length": 19.45504747164724}, {"destination": 1316196944, "path": [[-2023.6345615529672, 1564.7523056774303], [-1843.934561556182, 1495.9023056775322], [-1679.6345615546215, 1425.0523056773545]], "source": 1316196994, "length": 72.4421253887819}, {"destination": 1316472147, "path": [[2009.2654384455955, 3346.2523056773107], [2162.515438449475, 3333.2523056781583], [2226.8654384447473, 3342.4023056767282], [2277.315438448113, 3366.7023056782596]], "source": 476557955, "length": 52.70771353902396}, {"destination": 1320104124, "path": [[2009.2654384455955, 3346.2523056773107], [2031.065438444557, 3515.5523056769057]], "source": 476557955, "length": 37.87840462245866}, {"destination": 1320103603, "path": [[2009.2654384455955, 3346.2523056773107], [1992.2154384488522, 3213.6523056767173]], "source": 476557955, "length": 29.666676955956753}, {"destination": 1320103883, "path": [[2009.2654384455955, 3346.2523056773107], [1634.0154384479888, 3440.7023056779453]], "source": 476557955, "length": 74.39389059201542}, {"destination": 4273219689, "path": [[830.3154384492473, -1610.8476943230698], [823.0154384492039, -1604.8976943228154], [812.9154384448611, -1599.5476943224674], [719.165438447078, -1586.097694323385], [713.6154384497218, -1585.297694322918]], "source": 4273214085, "length": 23.3274212447064}, {"destination": 4273219689, "path": [[726.4654384471214, -1637.9976943223796], [714.9654384477344, -1633.797694323036], [708.6654384451663, -1623.6976943222458], [713.6154384497218, -1585.297694322918]], "source": 4273214086, "length": 13.516215907628528}, {"destination": 1316196946, "path": [[-2138.98456155448, 883.5023056779079], [-2138.98456155448, 924.8023056773746], [-2375.034561552525, 993.6023056766885]], "source": 1316196999, "length": 56.611413273283596}, {"destination": 1316196995, "path": [[-2138.98456155448, 883.5023056779079], [-1994.1345615563932, 830.7523056778621], [-1948.5345615564142, 805.5023056776633], [-1906.9845615504732, 777.1023056779569]], "source": 1316196999, "length": 50.38747811387127}, {"destination": 1316196981, "path": [[-2138.98456155448, 883.5023056779079], [-2163.134561556035, 849.1023056773628], [-2313.334561556246, 872.0523056773288], [-2415.2345615533477, 904.1523056776413]], "source": 1316196999, "length": 58.59174856617817}, {"destination": 1889249272, "path": [[-3533.034561556292, -3382.147694322768], [-3667.4845615536356, -3354.247694321799]], "source": 874312328, "length": 26.308593540819224}, {"destination": 1887913942, "path": [[-3533.034561556292, -3382.147694322768], [-3613.9345615566754, -3651.6476943226908]], "source": 874312328, "length": 61.87693082695196}, {"destination": 481391756, "path": [[-2529.7345615555855, 772.4523056769073], [-2443.8845615506466, 734.1523056769717], [-2364.4845615535814, 698.7023056765906]], "source": 1316197001, "length": 35.448504427038}, {"destination": 1316198765, "path": [[-2529.7345615555855, 772.4523056769073], [-2463.5345615564574, 844.5023056768974], [-2457.784561556764, 851.6023056781563]], "source": 1316197001, "length": 22.294912277296657}, {"destination": 481395518, "path": [[-2529.7345615555855, 772.4523056769073], [-2675.08456155241, 851.9523056769174], [-2816.184561552859, 968.102305677121]], "source": 1316197001, "length": 70.05855884854789}, {"destination": 1774845833, "path": [[4324.265438448549, -7427.147694322401], [4262.665438446334, -7443.647694323374]], "source": 4483338910, "length": 12.274237221979707}, {"destination": 1774845833, "path": [[4324.265438448549, -7427.147694322401], [4262.665438446334, -7443.647694323374]], "source": 4483338910, "length": 12.274237221979707}, {"destination": 481506490, "path": [[4324.265438448549, -7427.147694322401], [4368.815438446916, -7421.847694322636], [4413.815438446989, -7421.797694322052], [4458.365438445355, -7426.94769432184], [4511.015438446009, -7440.247694322721], [4558.965438448581, -7460.097694321988], [4604.165438443886, -7487.497694322443], [4645.615438448658, -7523.197694322193], [4672.415438449207, -7555.147694322528], [4697.915438448774, -7598.5476943234435], [4714.31543844858, -7644.9976943226975], [4721.165438446917, -7693.197694322862]], "source": 4483338910, "length": 109.08032590649533}, {"destination": 1489398766, "path": [[4324.265438448549, -7427.147694322401], [4294.115438447932, -7341.147694322814], [4276.665438446515, -7310.447694322875], [4273.465438444646, -7293.047694322041], [4276.865438448851, -7278.647694322515], [4284.015438443589, -7267.947694321819], [4296.815438443957, -7258.097694322174], [4320.665438449112, -7251.697694321991], [4337.715438445855, -7253.547694322293], [4358.61543844851, -7264.497694322358], [4368.265438444041, -7276.69769432282], [4372.465438443385, -7297.347694322553], [4368.21543844701, -7311.597694322103], [4358.465438443204, -7323.747694321981], [4350.1154384486545, -7329.547694322258], [4334.315438448755, -7335.347694322536], [4317.115438446706, -7336.147694323003], [4300.615438445731, -7331.8976943230755], [4292.465438446414, -7327.447694322586], [4282.615438448545, -7316.897694321867], [4254.715438449352, -7285.747694321998], [4205.415438448767, -7256.247694321872]], "source": 4483338910, "length": 104.79443131125099}, {"destination": 4451234427, "path": [[3566.865438443756, -5921.39769432265], [3466.9154384445733, -5885.147694321802]], "source": 1767289507, "length": 20.644036595546645}, {"destination": 622622429, "path": [[-3333.134561550821, 9334.202305677052], [-3313.934561553822, 9282.352305676866], [-3276.9345615548673, 9241.50230567733], [-3223.0345615502642, 9205.302305677065], [-3133.9845615505624, 9164.802305678066], [-3078.4345615515463, 9124.252305676706], [-3045.734561553104, 9076.752305677615], [-3044.7845615526603, 9021.452305677969], [-3090.034561552102, 8902.25230567765], [-3147.2345615526365, 8808.552305676898]], "source": 600496502, "length": 145.6331492489311}, {"destination": 622622645, "path": [[-3333.134561550821, 9334.202305677052], [-3457.2845615556957, 9244.552305677445], [-3579.884561553115, 8940.902305678123]], "source": 600496502, "length": 102.34703652991382}, {"destination": 483103362, "path": [[-4503.134561552713, 6635.552305677806], [-4538.134561556717, 6550.35230567691]], "source": 483103400, "length": 20.08327595952444}, {"destination": 483103082, "path": [[-4503.134561552713, 6635.552305677806], [-4345.484561554258, 6606.652305677585], [-4054.6345615553037, 6566.152305676809], [-3902.2845615548363, 6540.252305677896]], "source": 483103400, "length": 116.25690208650946}, {"destination": 601712455, "path": [[-4503.134561552713, 6635.552305677806], [-4147.63456155498, 7390.452305678253], [-4036.784561556317, 7564.252305677144], [-3967.3845615553205, 7673.05230567672], [-3800.5845615529665, 7871.652305677657]], "source": 483103400, "length": 306.9580874551803}, {"destination": 479302873, "path": [[-8004.834561553764, 9.20230567658109], [-7827.234561553098, 412.8523056774469], [-7805.534561555305, 462.452305677985]], "source": 479302313, "length": 107.688258440093}, {"destination": 87752549, "path": [[-8004.834561553764, 9.20230567658109], [-8061.384561550256, 23.802305676667856], [-8457.284561551149, 109.30230567751664], [-8547.4345615566, 130.6523056765485]], "source": 479302313, "length": 106.67604423010806}, {"destination": 479302935, "path": [[-8004.834561553764, 9.20230567658109], [-7950.234561555191, -6.497694322149528], [-7469.784561550341, -213.8976943228954]], "source": 479302313, "length": 113.3043026678853}, {"destination": 1317671275, "path": [[664.465438447337, -10.047694322778966], [692.465438447698, 459.1523056767244]], "source": 475976364, "length": 104.48121985671342}, {"destination": 1317671028, "path": [[664.465438447337, -10.047694322778966], [447.3654384469228, 37.852305677432696], [259.5154384437137, 85.15230567773813]], "source": 475976364, "length": 79.87872814304792}, {"destination": 385113782, "path": [[664.465438447337, -10.047694322778966], [655.2154384493747, -326.3976943230773], [652.2654384468751, -389.94769432321164]], "source": 475976364, "length": 84.51956700386886}, {"destination": 1317671375, "path": [[664.465438447337, -10.047694322778966], [925.3154384438744, -56.497694322033], [988.0154384447337, -69.34769432298538]], "source": 475976364, "length": 62.93201753275745}, {"destination": 1315785242, "path": [[-4421.434561550086, 1316.9523056770772], [-4335.584561552252, 1287.1523056769975]], "source": 1315785611, "length": 17.620435622963246}, {"destination": 103781049, "path": [[-343.4845615544191, -8099.29769432216], [-361.1845615552056, -7985.347694322798], [-385.13456155442327, -7857.5976943220385], [-393.98456155481654, -7802.54769432176], [-408.3845615525661, -7713.047694322128], [-432.38456155592075, -7613.347694322314], [-473.8845615506193, -7417.397694322148]], "source": 103781041, "length": 153.7092380285835}, {"destination": 1887596138, "path": [[-343.4845615544191, -8099.29769432216], [-417.43456155529657, -8100.697694322534]], "source": 103781041, "length": 14.064548891177527}, {"destination": 599723323, "path": [[-343.4845615544191, -8099.29769432216], [-290.2845615508909, -8090.497694322352]], "source": 103781041, "length": 10.303009643401925}, {"destination": 1887596184, "path": [[-473.8845615506193, -7417.397694322148], [-482.13456155110634, -7362.0976943225005], [-483.3345615509188, -7306.347694322923]], "source": 103781049, "length": 24.79759998535554}, {"destination": 1887596157, "path": [[-473.8845615506193, -7417.397694322148], [-542.2345615500035, -7424.647694323383]], "source": 103781049, "length": 13.095584966803024}, {"destination": 1315678773, "path": [[-3744.1345615505384, -3977.8976943232183], [-3829.9345615513403, -4321.547694322802]], "source": 874312382, "length": 78.14645137816936}, {"destination": 1887913958, "path": [[-3744.1345615505384, -3977.8976943232183], [-3687.8845615504474, -3985.347694323238]], "source": 874312382, "length": 10.823471991628224}, {"destination": 4708397769, "path": [[-7301.93456155348, -5837.397694323343], [-7191.734561551755, -5862.647694321766]], "source": 4708397766, "length": 21.69352522615027}, {"destination": 4708397772, "path": [[-7301.93456155348, -5837.397694323343], [-7283.484561554587, -5780.247694323392], [-7173.584561556368, -5806.097694321721]], "source": 4708397766, "length": 34.85866680572832}, {"destination": 4708397775, "path": [[-7301.93456155348, -5837.397694323343], [-7323.784561556578, -5905.297694322798]], "source": 4708397766, "length": 15.661469197123475}, {"destination": 4708397781, "path": [[-7232.734561554821, -6000.597694322707], [-7269.43456155027, -6070.947694322371]], "source": 4708397767, "length": 17.131045450107983}, {"destination": 4708397774, "path": [[-7232.734561554821, -6000.597694322707], [-7213.134561553147, -5929.147694322623]], "source": 4708397767, "length": 16.32116518528698}, {"destination": 4708397775, "path": [[-7232.734561554821, -6000.597694322707], [-7346.384561550678, -5972.797694322907], [-7323.784561556578, -5905.297694322798]], "source": 4708397767, "length": 38.09175200325257}, {"destination": 4708397779, "path": [[-6975.384561556552, -5875.647694322694], [-7002.184561549995, -5953.497694322962]], "source": 4708397768, "length": 18.047223140753157}, {"destination": 4708397780, "path": [[-6975.384561556552, -5875.647694322694], [-7087.33456155386, -5850.297694323103]], "source": 4708397768, "length": 22.020927817059675}, {"destination": 4708397783, "path": [[-6975.384561556552, -5875.647694322694], [-6728.284561553721, -5931.6476943234165]], "source": 4708397768, "length": 48.60796102677613}, {"destination": 4708397772, "path": [[-7191.734561551755, -5862.647694321766], [-7173.584561556368, -5806.097694321721]], "source": 4708397769, "length": 13.041101690160865}, {"destination": 4708397766, "path": [[-7191.734561551755, -5862.647694321766], [-7301.93456155348, -5837.397694323343]], "source": 4708397769, "length": 21.69352522615027}, {"destination": 4708397774, "path": [[-7191.734561551755, -5862.647694321766], [-7213.134561553147, -5929.147694322623]], "source": 4708397769, "length": 15.338463659168776}, {"destination": 4708397784, "path": [[-7031.384561550169, -6038.297694322736], [-6826.034561555616, -6079.447694322226], [-6777.334561554937, -6005.797694323079]], "source": 4708397770, "length": 58.92011311260441}, {"destination": 4708397777, "path": [[-7031.384561550169, -6038.297694322736], [-7138.334561552994, -6016.847694322536]], "source": 4708397770, "length": 20.888168307795038}, {"destination": 4708397779, "path": [[-7031.384561550169, -6038.297694322736], [-7002.184561549995, -5953.497694322962]], "source": 4708397770, "length": 19.6592003004588}, {"destination": 4708397772, "path": [[-7148.7845615507695, -5728.997694323112], [-7173.584561556368, -5806.097694321721]], "source": 4708397771, "length": 17.782600050129805}, {"destination": 602259365, "path": [[-7148.7845615507695, -5728.997694323112], [-7345.984561553109, -5682.547694322082]], "source": 4708397771, "length": 38.89387747991728}, {"destination": 476681033, "path": [[-9160.634561553139, -4103.897694323066], [-8837.234561553942, -3726.947694323357]], "source": 476680908, "length": 103.96756222943395}, {"destination": 1729319686, "path": [[-9160.634561553139, -4103.897694323066], [-9030.984561555044, -4153.647694321805], [-8909.134561555731, -4180.397694321769], [-8767.23456155304, -4195.247694323001]], "source": 476680908, "length": 78.12848850082551}, {"destination": 1729320137, "path": [[-9160.634561553139, -4103.897694323066], [-9194.834561554899, -4148.197694322064]], "source": 476680908, "length": 11.804105329689977}, {"destination": 1316237108, "path": [[-2083.8845615500645, 2789.252305676726], [-2116.2845615521064, 2734.302305677616]], "source": 1316237227, "length": 13.685857117076136}, {"destination": 1316236877, "path": [[-2083.8845615500645, 2789.252305676726], [-2155.1345615549167, 2812.5523056772295]], "source": 1316237227, "length": 14.507426278508122}, {"destination": 1316237102, "path": [[-2083.8845615500645, 2789.252305676726], [-1999.5345615555493, 2746.002305677564], [-1871.2345615554682, 2665.952305678232]], "source": 1316237227, "length": 48.90859830935884}, {"destination": 1316236439, "path": [[-2083.8845615500645, 2789.252305676726], [-2056.3845615555465, 2836.0023056777095]], "source": 1316237227, "length": 11.638402523749814}, {"destination": 4708397769, "path": [[-7213.134561553147, -5929.147694322623], [-7191.734561551755, -5862.647694321766]], "source": 4708397774, "length": 15.338463659168776}, {"destination": 4708397775, "path": [[-7213.134561553147, -5929.147694322623], [-7323.784561556578, -5905.297694322798]], "source": 4708397774, "length": 21.6983024606}, {"destination": 4708397767, "path": [[-7213.134561553147, -5929.147694322623], [-7232.734561554821, -6000.597694322707]], "source": 4708397774, "length": 16.32116518528698}, {"destination": 4708397774, "path": [[-7323.784561556578, -5905.297694322798], [-7213.134561553147, -5929.147694322623]], "source": 4708397775, "length": 21.6983024606}, {"destination": 4708397766, "path": [[-7323.784561556578, -5905.297694322798], [-7301.93456155348, -5837.397694323343]], "source": 4708397775, "length": 15.661469197123475}, {"destination": 4708397767, "path": [[-7323.784561556578, -5905.297694322798], [-7346.384561550678, -5972.797694322907], [-7232.734561554821, -6000.597694322707]], "source": 4708397775, "length": 38.09175200325257}, {"destination": 602259363, "path": [[-6701.334561554972, -5837.197694322782], [-7056.7845615556735, -5750.697694322682]], "source": 4708397776, "length": 70.27248681116612}, {"destination": 4708397783, "path": [[-6701.334561554972, -5837.197694322782], [-6728.284561553721, -5931.6476943234165]], "source": 4708397776, "length": 21.621114784346783}, {"destination": 4708397770, "path": [[-7138.334561552994, -6016.847694322536], [-7031.384561550169, -6038.297694322736]], "source": 4708397777, "length": 20.888168307795038}, {"destination": 477634429, "path": [[-7138.334561552994, -6016.847694322536], [-7163.934561553731, -6100.29769432252]], "source": 4708397777, "length": 19.186354524724862}, {"destination": 4708397768, "path": [[-7002.184561549995, -5953.497694322962], [-6975.384561556552, -5875.647694322694]], "source": 4708397779, "length": 18.047223140753157}, {"destination": 4708397784, "path": [[-7002.184561549995, -5953.497694322962], [-6777.334561554937, -6005.797694323079]], "source": 4708397779, "length": 44.30830977167789}, {"destination": 4708397770, "path": [[-7002.184561549995, -5953.497694322962], [-7031.384561550169, -6038.297694322736]], "source": 4708397779, "length": 19.6592003004588}, {"destination": 4708397768, "path": [[-7087.33456155386, -5850.297694323103], [-6975.384561556552, -5875.647694322694]], "source": 4708397780, "length": 22.020927817059675}, {"destination": 4708397777, "path": [[-7087.33456155386, -5850.297694323103], [-7138.334561552994, -6016.847694322536]], "source": 4708397780, "length": 38.287355004879714}, {"destination": 477634429, "path": [[-7269.43456155027, -6070.947694322371], [-7163.934561553731, -6100.29769432252]], "source": 4708397781, "length": 21.095755289195857}, {"destination": 4708397767, "path": [[-7269.43456155027, -6070.947694322371], [-7232.734561554821, -6000.597694322707]], "source": 4708397781, "length": 17.131045450107983}, {"destination": 1767289265, "path": [[4165.515438444345, -8424.997694323367], [4189.715438450037, -8301.647694322512], [4268.815438443597, -8188.147694323078], [4356.015438446548, -8145.697694322606], [4534.36543844532, -8131.947694321795], [4576.615438445231, -8155.947694323373], [4615.56543844921, -8201.397694323376], [4655.815438447064, -8235.797694322144], [4699.3154384438185, -8231.697694322193]], "source": 1767289558, "length": 151.64342183152746}, {"destination": 84487116, "path": [[4165.515438444345, -8424.997694323367], [4118.015438443479, -8400.897694322395], [3963.0654384481545, -8263.797694322506], [3771.865438444877, -8409.247694322275]], "source": 1767289558, "length": 101.5615914229076}, {"destination": 483116732, "path": [[-6807.134561555017, 2197.802305676788], [-6919.484561556999, 2001.452305677276]], "source": 93246167, "length": 48.61352321480522}, {"destination": 857780861, "path": [[-6807.134561555017, 2197.802305676788], [-6914.434561551275, 2148.902305677325], [-7013.084561556581, 2098.1023056769745]], "source": 93246167, "length": 45.02282345364606}, {"destination": 93246191, "path": [[-6807.134561555017, 2197.802305676788], [-6773.784561552531, 2208.152305676947], [-6724.084561554378, 2223.552305677501], [-6601.784561553359, 2246.852305678004], [-6487.834561553996, 2251.352305677301], [-6392.984561550464, 2243.352305677959], [-6309.334561557023, 2223.1523056781552], [-6219.0345615533715, 2193.1023056769304], [-6167.834561551899, 2170.4023056781098]], "source": 93246167, "length": 126.37629764273592}, {"destination": 476680922, "path": [[-7909.7845615549995, -3957.6976943234145], [-7840.084561550498, -3905.347694322714]], "source": 476680920, "length": 17.641138942266174}, {"destination": 1990174510, "path": [[-7909.7845615549995, -3957.6976943234145], [-7838.034561551411, -3987.347694321741]], "source": 476680920, "length": 15.153431773781737}, {"destination": 476681047, "path": [[-7909.7845615549995, -3957.6976943234145], [-8060.584561555117, -4036.4976943223496], [-8162.434561555187, -4083.2476943233332]], "source": 476680920, "length": 55.58794018215974}, {"destination": 476680920, "path": [[-7840.084561550498, -3905.347694322714], [-7909.7845615549995, -3957.6976943234145]], "source": 476680922, "length": 17.641138942266174}, {"destination": 476681025, "path": [[-7840.084561550498, -3905.347694322714], [-7909.184561555094, -3883.0476943232384]], "source": 476680922, "length": 14.044669660194323}, {"destination": 1582517413, "path": [[-7840.084561550498, -3905.347694322714], [-7798.33456155643, -3924.347694322705]], "source": 476680922, "length": 8.993347276128542}, {"destination": 1581175562, "path": [[2447.365438449367, -6480.7476943222755], [2420.0654384429754, -6499.4476943223135], [2391.2654384474763, -6506.047694323059]], "source": 1581175517, "length": 12.323011191322792}, {"destination": 1581175659, "path": [[2447.365438449367, -6480.7476943222755], [2408.715438448894, -6449.847694321776]], "source": 1581175517, "length": 10.060916507747837}, {"destination": 1581175468, "path": [[2447.365438449367, -6480.7476943222755], [2467.2154384433043, -6496.597694322759]], "source": 1581175517, "length": 5.163300675688157}, {"destination": 267198467, "path": [[-5801.484561551717, -6896.047694322505], [-5917.384561556105, -7242.447694322252], [-5926.43456155173, -7281.347694322093], [-5933.134561551868, -7317.19769432182]], "source": 477640827, "length": 97.02102974327656}, {"destination": 477640830, "path": [[-5801.484561551717, -6896.047694322505], [-5649.634561549988, -6937.847694322485]], "source": 477640827, "length": 30.33287337094949}, {"destination": 477640643, "path": [[-5801.484561551717, -6896.047694322505], [-6307.034561551462, -6761.947694322145], [-6292.084561550837, -6690.547694322646]], "source": 477640827, "length": 116.77829910877233}, {"destination": 1316694017, "path": [[-210.2345615568879, 65.70230567781721], [-202.3845615539699, -4.147694323108908], [-215.08456155316935, -57.19769432310784]], "source": 1316694012, "length": 27.64747416452315}, {"destination": 1316694066, "path": [[-210.2345615568879, 65.70230567781721], [-202.3845615539699, 147.25230567691483]], "source": 1316694012, "length": 18.197416184593997}, {"destination": 1316693990, "path": [[-210.2345615568879, 65.70230567781721], [-183.6345615515711, 62.40230567655658], [-167.33456155293425, 62.40230567655658], [92.66543844432817, 62.40230567655658]], "source": 1316694012, "length": 57.65663186334554}, {"destination": 1316694047, "path": [[-210.2345615568879, 65.70230567781721], [-368.6845615504808, 85.35230567652263]], "source": 1316694012, "length": 30.44794065743351}, {"destination": 93246200, "path": [[-6167.834561551899, 2170.4023056781098], [-6144.2345615532195, 2231.9023056773804], [-6120.834561556876, 2297.202305676649]], "source": 93246191, "length": 29.583616638668133}, {"destination": 479319990, "path": [[-6167.834561551899, 2170.4023056781098], [-6117.834561550239, 2144.052305677491], [-5856.734561554333, 1999.252305678212], [-5561.6345615518985, 1895.8523056777922]], "source": 93246191, "length": 131.00328622343446}, {"destination": 93246167, "path": [[-6167.834561551899, 2170.4023056781098], [-6219.0345615533715, 2193.1023056769304], [-6309.334561557023, 2223.1523056781552], [-6392.984561550464, 2243.352305677959], [-6487.834561553996, 2251.352305677301], [-6601.784561553359, 2246.852305678004], [-6724.084561554378, 2223.552305677501], [-6773.784561552531, 2208.152305676947], [-6807.134561555017, 2197.802305676788]], "source": 93246191, "length": 126.37629764273592}, {"destination": 267198017, "path": [[-2927.584561554397, -6068.697694322722], [-2821.7845615543524, -5696.047694321749]], "source": 267195120, "length": 85.28050444750433}, {"destination": 599408845, "path": [[-2927.584561554397, -6068.697694322722], [-2873.1845615510565, -6082.497694322342]], "source": 267195120, "length": 10.790112467091195}, {"destination": 267198231, "path": [[-2927.584561554397, -6068.697694322722], [-3373.78456155335, -5960.54769432186]], "source": 267195120, "length": 88.18689184160375}, {"destination": 267198280, "path": [[-4085.634561555196, -5766.597694321973], [-4118.784561555344, -5830.397694323253], [-4240.58456155052, -6064.897694322724]], "source": 267195121, "length": 72.58715612774498}, {"destination": 1729306105, "path": [[-4085.634561555196, -5766.597694321973], [-4545.43456155676, -5596.647694321888]], "source": 267195121, "length": 95.2499069897546}, {"destination": 1887913969, "path": [[-4085.634561555196, -5766.597694321973], [-3894.4345615519183, -5407.997694321764]], "source": 267195121, "length": 87.64540687789422}, {"destination": 267198231, "path": [[-4085.634561555196, -5766.597694321973], [-3373.78456155335, -5960.54769432186]], "source": 267195121, "length": 142.06287272309265}, {"destination": 477639727, "path": [[-5138.734561555225, -5350.597694322445], [-4843.034561552884, -5475.197694321921]], "source": 267195122, "length": 62.68442155165939}, {"destination": 477615613, "path": [[-5138.734561555225, -5350.597694322445], [-5550.53456155008, -5199.7976943223275], [-5698.234561556603, -5152.097694322677]], "source": 267195122, "length": 115.20504022245915}, {"destination": 1887591399, "path": [[-5138.734561555225, -5350.597694322445], [-5150.6345615521805, -5370.097694322951]], "source": 267195122, "length": 4.89078746659926}, {"destination": 857780858, "path": [[-6120.834561556876, 2297.202305676649], [-6073.33456155601, 2435.302305677567], [-6061.384561554916, 2479.3023056766115]], "source": 93246200, "length": 42.05921948873274}, {"destination": 3113821611, "path": [[-6120.834561556876, 2297.202305676649], [-6197.184561550273, 2319.602305677293]], "source": 93246200, "length": 15.350798101294616}, {"destination": 93246191, "path": [[-6120.834561556876, 2297.202305676649], [-6144.2345615532195, 2231.9023056773804], [-6167.834561551899, 2170.4023056781098]], "source": 93246200, "length": 29.583616638668133}, {"destination": 75351492, "path": [[-4007.0845615503004, -1891.5476943224262], [-3572.734561551272, -2116.0976943228607], [-3258.6345615541745, -2273.7976943218996]], "source": 479284692, "length": 165.7849828056809}, {"destination": 479286446, "path": [[-4007.0845615503004, -1891.5476943224262], [-4360.684561554252, -1705.347694322512]], "source": 479284692, "length": 78.96961838824922}, {"destination": 1315785615, "path": [[-4007.0845615503004, -1891.5476943224262], [-3821.134561555084, -1620.4976943221538]], "source": 479284692, "length": 69.88524668945058}, {"destination": 1618037846, "path": [[2885.265438443696, 9086.302305677307], [3007.1154384430088, 9014.752305677832], [3082.2654384436987, 8969.502305676613], [3158.9654384447385, 8927.452305677263], [3253.2154384483647, 8879.90230567759], [3373.615438448496, 8819.702305677523], [3528.3654384485885, 8749.002305677323], [3682.665438446975, 8682.052305676536], [3831.365438443868, 8616.552305676705], [4004.1154384482525, 8541.252305677815], [4169.115438443782, 8472.802305677264], [4278.565438447402, 8432.552305677633], [4341.165438447092, 8417.80230567757], [4399.715438445639, 8411.652305676753], [4477.015438446586, 8412.102305676683], [4542.41543844347, 8418.202305676914], [4614.765438446966, 8433.952305678005], [4709.115438444655, 8459.102305677035]], "source": 4370661333, "length": 386.5633748617359}, {"destination": 4402078911, "path": [[2885.265438443696, 9086.302305677307], [3068.315438447655, 8953.802305677882], [3153.8154384449513, 8905.05230567662], [3273.7654384433768, 8838.452305678145], [3520.2654384463017, 8719.852305677734], [3657.7154384431765, 8656.452305677576], [3801.3654384485562, 8595.202305677674], [3963.815438446261, 8520.75230567806]], "source": 4370661333, "length": 241.44481958160554}, {"destination": 2716405305, "path": [[-8792.784561556744, 8010.002305677944], [-8827.084561552567, 7942.852305676595], [-8893.784561550434, 7787.402305677205]], "source": 486183676, "length": 53.12121116101743}, {"destination": 2716408741, "path": [[-8792.784561556744, 8010.002305677944], [-8806.934561555125, 8023.152305677073], [-8839.134561554829, 8079.352305676579], [-8863.234561552246, 8128.652305677164], [-8895.034561554383, 8208.75230567708], [-8910.134561553206, 8289.852305678025]], "source": 486183676, "length": 66.85188243270255}, {"destination": 1887593856, "path": [[1111.0154384468274, -3813.09769432292], [962.2154384487658, -3945.5476943217604], [930.7654384471675, -3973.247694322168], [871.165438447008, -4015.4476943232708], [826.5154384474727, -4050.697694323091], [781.2154384438941, -4087.1476943227235], [648.2654384498687, -4207.147694321733]], "source": 103764778, "length": 124.28762181583257}, {"destination": 103764845, "path": [[1111.0154384468274, -3813.09769432292], [1040.0154384484495, -3764.4976943234096]], "source": 103764778, "length": 17.294150829279232}, {"destination": 495645512, "path": [[7155.315438446052, -7346.647694323138], [7229.765438445667, -7274.097694322634], [7273.31543844656, -7219.4976943222855]], "source": 495645443, "length": 36.16175300665961}, {"destination": 1928818240, "path": [[-8767.23456155304, -4195.247694323001], [-8766.484561554933, -4281.397694322564]], "source": 1729319686, "length": 19.1590898150684}, {"destination": 476680908, "path": [[-8767.23456155304, -4195.247694323001], [-8909.134561555731, -4180.397694321769], [-9030.984561555044, -4153.647694321805], [-9160.634561553139, -4103.897694323066]], "source": 1729319686, "length": 78.12848850082551}, {"destination": 5021317158, "path": [[-8767.23456155304, -4195.247694323001], [-8732.834561556047, -4196.347694323421]], "source": 1729319686, "length": 6.545727476521414}, {"destination": 1581175599, "path": [[2356.415438448778, -6547.347694322525], [2358.3654384466968, -6505.197694322007]], "source": 1581175560, "length": 9.38085054124892}, {"destination": 4867879881, "path": [[2391.2654384474763, -6506.047694323059], [2358.715438447234, -6580.097694323328], [2272.9154384464323, -6724.547694322069], [2240.7154384467276, -6856.447694323364], [2256.8154384430272, -6998.597694321873], [2287.6654384447193, -7084.597694323236], [2331.9154384466856, -7198.147694323254], [2337.065438446473, -7254.747694322105]], "source": 1581175562, "length": 174.5958677096829}, {"destination": 1581175659, "path": [[2391.2654384474763, -6506.047694323059], [2408.715438448894, -6449.847694321776]], "source": 1581175562, "length": 12.931794978660099}, {"destination": 1581175517, "path": [[2391.2654384474763, -6506.047694323059], [2420.0654384429754, -6499.4476943223135], [2447.365438449367, -6480.7476943222755]], "source": 1581175562, "length": 12.323011191322792}, {"destination": 1581175599, "path": [[2391.2654384474763, -6506.047694323059], [2358.3654384466968, -6505.197694322007]], "source": 1581175562, "length": 6.258542306428967}, {"destination": 1317671256, "path": [[3120.0654384448967, -258.9976943223604], [3124.815438447115, -206.59769432285202], [3129.215438448796, -166.99769432193534]], "source": 481390039, "length": 20.535085703715524}, {"destination": 481389986, "path": [[3120.0654384448967, -258.9976943223604], [3067.5654384495488, -243.5476943229986]], "source": 481390039, "length": 10.558766385333703}, {"destination": 1548518395, "path": [[3120.0654384448967, -258.9976943223604], [3234.5154384429975, -300.54769432297235]], "source": 481390039, "length": 23.645212652316552}, {"destination": 4867879874, "path": [[2441.5654384455365, -6126.097694322041], [2493.815438448621, -6149.597694323105]], "source": 1581175564, "length": 11.22568832797755}, {"destination": 495641404, "path": [[2441.5654384455365, -6126.097694322041], [2401.4154384488506, -6218.447694323004], [2368.4154384469025, -6213.097694322656], [2295.8654384481747, -6230.247694322344], [2257.0154384453645, -6224.997694323164]], "source": 1581175564, "length": 50.08923806697125}, {"destination": 1581175189, "path": [[2441.5654384455365, -6126.097694322041], [2476.615438446572, -6045.447694322803], [2515.4654384493824, -5967.497694323143]], "source": 1581175564, "length": 37.97757295316538}, {"destination": 476078931, "path": [[831.5654384460913, -1683.7976943229194], [776.9154384433818, -2109.7976943220688]], "source": 476078905, "length": 95.30652142883385}, {"destination": 967330147, "path": [[831.5654384460913, -1683.7976943229194], [508.9654384491382, -1681.7476943220554]], "source": 476078905, "length": 61.34885991393485}, {"destination": 1316623357, "path": [[831.5654384460913, -1683.7976943229194], [937.2154384479359, -1668.4976943217578]], "source": 476078905, "length": 20.377310547133277}, {"destination": 1316623646, "path": [[831.5654384460913, -1683.7976943229194], [891.5654384438199, -1431.0976943221476]], "source": 476078905, "length": 57.34461595137805}, {"destination": 495771025, "path": [[7960.4654384439755, -6041.5476943234125], [7959.065438448932, -6065.197694322677]], "source": 1771402887, "length": 5.266991761830187}, {"destination": 1765485311, "path": [[7960.4654384439755, -6041.5476943234125], [7810.71543844547, -6049.697694322731], [7510.315438445048, -6096.697694323083], [7203.815438444394, -6187.647694321896], [6947.665438445938, -6274.747694321903], [6709.665438449974, -6369.647694322467], [6676.315438447489, -6400.247694323014], [6665.065438447471, -6418.747694322491], [6656.3654384452775, -6443.697694322736], [6655.9154384435715, -6467.847694322515], [6658.765438444902, -6494.797694323041], [6681.415438443139, -6606.097694323409]], "source": 1771402887, "length": 306.8841940037762}, {"destination": 1319641200, "path": [[4700.215438447231, 4583.802305678119], [4865.715438448604, 4606.352305676964]], "source": 1319641077, "length": 31.873431437934176}, {"destination": 1319204581, "path": [[4700.215438447231, 4583.802305678119], [4560.215438445425, 4564.702305676959]], "source": 1319641077, "length": 26.963334056381978}, {"destination": 1319641221, "path": [[4700.215438447231, 4583.802305678119], [4708.415438443581, 4378.852305677583]], "source": 1319641077, "length": 45.605582416483934}, {"destination": 482729441, "path": [[4026.115438449551, 1288.9523056767162], [4741.715438449035, 1123.0023056771897]], "source": 482729435, "length": 141.00548512380905}, {"destination": 1317671372, "path": [[4026.115438449551, 1288.9523056767162], [3956.16543844568, 1134.3023056777924]], "source": 482729435, "length": 36.87578639127094}, {"destination": 1317670908, "path": [[4026.115438449551, 1288.9523056767162], [3811.8654384433626, 1371.6523056768183]], "source": 482729435, "length": 44.703803671149196}, {"destination": 475980598, "path": [[4026.115438449551, 1288.9523056767162], [4071.915438444762, 1598.252305678116], [4073.215438445743, 1613.6523056768938], [4077.565438443287, 1665.0023056765663]], "source": 482729435, "length": 84.21791025518837}, {"destination": 477640827, "path": [[-6292.084561550837, -6690.547694322646], [-6307.034561551462, -6761.947694322145], [-5801.484561551717, -6896.047694322505]], "source": 477640643, "length": 116.77829910877233}, {"destination": 420697447, "path": [[-6292.084561550837, -6690.547694322646], [-5755.034561552464, -6777.197694322723]], "source": 477640643, "length": 103.91922245184922}, {"destination": 5016366578, "path": [[-8893.784561550434, 7787.402305677205], [-8924.584561555093, 7715.552305677776]], "source": 2716405305, "length": 17.018880847507425}, {"destination": 483122165, "path": [[-9129.834561555583, 1931.00230567822], [-9255.134561556133, 1495.8023056781399]], "source": 857781031, "length": 99.67456334657459}, {"destination": 71129462, "path": [[-9129.834561555583, 1931.00230567822], [-9085.534561556586, 2025.0023056771483], [-9057.13456155155, 2131.102305677146], [-8985.334561550928, 2422.202305677246], [-8954.98456155508, 2559.602305677089]], "source": 857781031, "length": 144.00305105256678}, {"destination": 85011021, "path": [[-9129.834561555583, 1931.00230567822], [-8515.08456155159, 1675.002305677964], [-8471.334561555466, 1656.6523056766869]], "source": 857781031, "length": 139.30466388014912}, {"destination": 654578475, "path": [[-6626.134561550145, -5451.397694322679], [-6483.434561552314, -4972.297694322947]], "source": 654578474, "length": 109.94801883126397}, {"destination": 267198435, "path": [[-6626.134561550145, -5451.397694322679], [-6305.384561557048, -5522.647694322202]], "source": 654578474, "length": 63.01510489489226}, {"destination": 267198431, "path": [[-6626.134561550145, -5451.397694322679], [-6937.834561554723, -5381.69769432173]], "source": 654578474, "length": 61.26300463398462}, {"destination": 654578474, "path": [[-6483.434561552314, -4972.297694322947], [-6626.134561550145, -5451.397694322679]], "source": 654578475, "length": 109.94801883126397}, {"destination": 267198436, "path": [[-6483.434561552314, -4972.297694322947], [-6333.784561554978, -5008.997694321948], [-6086.234561550441, -5057.097694322721]], "source": 654578475, "length": 77.87535580535132}, {"destination": 267198397, "path": [[-6483.434561552314, -4972.297694322947], [-6771.18456155057, -4901.747694322722]], "source": 654578475, "length": 56.92121406248899}, {"destination": 1581175560, "path": [[2358.3654384466968, -6505.197694322007], [2356.415438448778, -6547.347694322525]], "source": 1581175599, "length": 9.38085054124892}, {"destination": 1581175562, "path": [[2358.3654384466968, -6505.197694322007], [2391.2654384474763, -6506.047694323059]], "source": 1581175599, "length": 6.258542306428967}, {"destination": 1581175603, "path": [[2358.3654384466968, -6505.197694322007], [2333.6154384452357, -6492.297694322247], [2316.765438443724, -6479.947694321808], [2304.715438448568, -6457.047694322427]], "source": 1581175599, "length": 15.316330747458743}, {"destination": 2969936436, "path": [[-253.08456155670456, 1069.1023056779159], [-310.73456155183976, 945.8523056782298], [-339.5345615544443, 897.652305678065], [-399.684561550373, 861.202305676656], [-437.2845615563392, 822.6523056773516], [-461.08456155025124, 744.4023056777382], [-457.33456155261365, 680.1523056765291], [-434.7845615555457, 628.7023056774643], [-375.884561556461, 578.3523056770434], [-402.23456155530357, 417.6023056778888], [-448.7845615557262, 323.30230567723106]], "source": 2969936446, "length": 185.9494052183997}, {"destination": 495641874, "path": [[2304.715438448568, -6457.047694322427], [2174.3654384493993, -6471.947694322466]], "source": 1581175603, "length": 25.005711677392668}, {"destination": 1581175607, "path": [[2304.715438448568, -6457.047694322427], [2353.715438445647, -6453.297694323012]], "source": 1581175603, "length": 9.353910607146702}, {"destination": 1581175599, "path": [[2304.715438448568, -6457.047694322427], [2316.765438443724, -6479.947694321808], [2333.6154384452357, -6492.297694322247], [2358.3654384466968, -6505.197694322007]], "source": 1581175603, "length": 15.316330747458743}, {"destination": 601145288, "path": [[-4966.234561550209, 2052.7523056781406], [-4603.234561550096, 1940.15230567679]], "source": 147477301, "length": 73.43640741753809}, {"destination": 93310009, "path": [[-4966.234561550209, 2052.7523056781406], [-5401.134561552112, 2238.9023056774704]], "source": 147477301, "length": 92.49118271174498}, {"destination": 64813782, "path": [[-4966.234561550209, 2052.7523056781406], [-4669.434561556329, 2627.852305677081], [-4512.484561551844, 2950.6523056781475]], "source": 147477301, "length": 217.5445219814221}, {"destination": 4153722393, "path": [[-4966.234561550209, 2052.7523056781406], [-5225.234561549996, 1497.1023056773447]], "source": 147477301, "length": 133.0262564887338}, {"destination": 1316236842, "path": [[-2539.334561554085, 3079.352305677574], [-2374.934561551356, 3022.302305677016]], "source": 1316237190, "length": 33.742168106017374}, {"destination": 483098227, "path": [[-2539.334561554085, 3079.352305677574], [-2498.1845615528186, 3153.2523056778673]], "source": 1316237190, "length": 18.20311096294766}, {"destination": 1316237204, "path": [[-2539.334561554085, 3079.352305677574], [-2569.784561551103, 3033.9023056775713]], "source": 1316237190, "length": 11.648852183109796}, {"destination": 1581175594, "path": [[2353.715438445647, -6453.297694323012], [2351.0654384466534, -6434.947694321735], [2361.0654384498275, -6420.3476943234255]], "source": 1581175607, "length": 7.873568902969479}, {"destination": 1581175603, "path": [[2353.715438445647, -6453.297694323012], [2304.715438448568, -6457.047694322427]], "source": 1581175607, "length": 9.353910607146702}, {"destination": 1581175659, "path": [[2353.715438445647, -6453.297694323012], [2364.4654384469277, -6460.197694321934], [2389.215438448389, -6462.747694323312], [2408.715438448894, -6449.847694321776]], "source": 1581175607, "length": 11.982125266393442}, {"destination": 476680922, "path": [[-7909.184561555094, -3883.0476943232384], [-7840.084561550498, -3905.347694322714]], "source": 476681025, "length": 14.044669660194323}, {"destination": 476681028, "path": [[-7909.184561555094, -3883.0476943232384], [-8244.184561554846, -3913.7476943231777], [-8377.23456155004, -3921.097694322029], [-8475.934561552378, -3921.097694322029]], "source": 476681025, "length": 108.18798411523034}, {"destination": 1582517359, "path": [[-7909.184561555094, -3883.0476943232384], [-7891.484561554307, -3829.9976943232396], [-7907.584561550607, -3799.047694322155], [-7962.584561553854, -3772.647694322728], [-8061.834561551961, -3725.647694322376], [-8092.684561553653, -3724.4976943231477], [-8124.834561556327, -3714.147694322989], [-8209.334561556148, -3656.847694323062], [-8253.584561551008, -3617.8476943220517], [-8254.384561553252, -3576.297694323216], [-8305.384561552386, -3536.1476943229773], [-8389.034561552933, -3544.4476943222726], [-8418.534561556611, -3579.997694322046]], "source": 476681025, "length": 146.49982557129155}, {"destination": 476681025, "path": [[-8475.934561552378, -3921.097694322029], [-8377.23456155004, -3921.097694322029], [-8244.184561554846, -3913.7476943231777], [-7909.184561555094, -3883.0476943232384]], "source": 476681028, "length": 108.18798411523035}, {"destination": 1582517271, "path": [[-8475.934561552378, -3921.097694322029], [-8321.434561551654, -3726.5976943228197], [-8448.684561550124, -3649.097694323089]], "source": 476681028, "length": 81.99709797601476}, {"destination": 1582517388, "path": [[-8475.934561552378, -3921.097694322029], [-8554.784561553675, -3867.247694323339]], "source": 476681028, "length": 19.189642473379227}, {"destination": 476681047, "path": [[-8475.934561552378, -3921.097694322029], [-8505.984561551828, -3961.4476943228283], [-8162.434561555187, -4083.2476943233332]], "source": 476681028, "length": 81.35954391050564}, {"destination": 1582517388, "path": [[-8612.334561554746, -3827.9476943223754], [-8554.784561553675, -3867.247694323339]], "source": 476681029, "length": 14.005148314229528}, {"destination": 1582517308, "path": [[-8612.334561554746, -3827.9476943223754], [-8591.53456155326, -3803.597694322036], [-8574.13456155598, -3761.1976943221493], [-8570.084561554835, -3713.0476943225685], [-8575.484561553993, -3656.847694323062], [-8580.834561556116, -3624.74769432275], [-8578.134561552986, -3605.2476943222446], [-8570.084561554835, -3592.597694321853], [-8559.03456155005, -3581.897694322933]], "source": 476681029, "length": 57.93262773515959}, {"destination": 1582517279, "path": [[-8612.334561554746, -3827.9476943223754], [-8679.734561553687, -3800.897694322458]], "source": 476681029, "length": 14.1577983634914}, {"destination": 1316236610, "path": [[-1676.7845615532906, 3574.652305676551], [-1680.7345615532654, 3566.6523056772094], [-1738.2345615502004, 3450.55230567759]], "source": 483099095, "length": 29.976354587999833}, {"destination": 639305926, "path": [[-1676.7845615532906, 3574.652305676551], [-2337.5345615548326, 3782.35230567725]], "source": 483099095, "length": 133.88575392578326}, {"destination": 481499142, "path": [[-1676.7845615532906, 3574.652305676551], [-1477.1845615513257, 3506.2523056765826], [-1219.6845615548568, 3392.5023056777804]], "source": 483099095, "length": 96.01585083313532}, {"destination": 1779937392, "path": [[7273.31543844656, -7219.4976943222855], [7258.365438445935, -7191.3976943225325], [7224.765438444081, -7155.847694322759], [7178.065438445457, -7090.097694321784]], "source": 495645512, "length": 34.136395595728985}, {"destination": 495645443, "path": [[7273.31543844656, -7219.4976943222855], [7229.765438445667, -7274.097694322634], [7155.315438446052, -7346.647694323138]], "source": 495645512, "length": 36.16175300665961}, {"destination": 495645973, "path": [[7273.31543844656, -7219.4976943222855], [7322.415438444807, -7336.897694322886], [7362.815438447968, -7389.347694322979], [7453.56543844622, -7433.647694321977]], "source": 495645512, "length": 61.56352058051358}, {"destination": 1582517312, "path": [[-8837.234561553942, -3726.947694323357], [-8767.684561554745, -3642.4476943217596]], "source": 476681033, "length": 22.979277728973464}, {"destination": 479442881, "path": [[-8837.234561553942, -3726.947694323357], [-8886.48456155039, -3701.9976943231113], [-8927.434561556423, -3678.6476943220237]], "source": 476681033, "length": 20.245435537677857}, {"destination": 476680908, "path": [[-8837.234561553942, -3726.947694323357], [-9160.634561553139, -4103.897694323066]], "source": 476681033, "length": 103.96756222943395}, {"destination": 1582517287, "path": [[-8837.234561553942, -3726.947694323357], [-8800.384561553186, -3746.097694323325]], "source": 476681033, "length": 8.199695880094602}, {"destination": 103781336, "path": [[-1445.9345615520647, -7520.297694322054], [-1650.884561556154, -7539.7976943225585], [-1668.7345615551408, -7537.597694321718], [-1686.8345615534963, -7534.047694322865], [-1845.7845615529322, -7481.6476943233565]], "source": 103781196, "length": 78.56315069225714}, {"destination": 1316623555, "path": [[-900.7845615514043, -29.697694323260748], [-934.4845615544273, -155.54769432313265]], "source": 1316623182, "length": 28.71227935966905}, {"destination": 1316694068, "path": [[-900.7845615514043, -29.697694323260748], [-1049.0845615507283, 31.352305677856407]], "source": 1316623182, "length": 31.300198998115434}, {"destination": 1316623310, "path": [[993.8654384455958, -1288.5476943225171], [1304.565438445593, -1342.447694321791]], "source": 1316623185, "length": 60.288260099801256}, {"destination": 1316623616, "path": [[1276.2154384446944, -1479.3976943234811], [1289.5154384438001, -1415.147694322272]], "source": 1316623187, "length": 14.510532195236108}, {"destination": 1316623307, "path": [[1276.2154384446944, -1479.3976943234811], [1270.1654384486005, -1508.7476943218549]], "source": 1316623187, "length": 6.627825929255592}, {"destination": 1316623646, "path": [[1276.2154384446944, -1479.3976943234811], [1154.8154384470877, -1467.447694322388], [1042.1654384487056, -1453.6976943233526], [891.5654384438199, -1431.0976943221476]], "source": 1316623187, "length": 73.95428213447641}, {"destination": 1316236968, "path": [[-572.6345615499895, 2078.552305677661], [-742.384561554843, 2133.252305677402]], "source": 1316237191, "length": 34.49907100229437}, {"destination": 1316236349, "path": [[-572.6345615499895, 2078.552305677661], [-539.0845615522721, 2157.8523056771105]], "source": 1316237191, "length": 18.754013435762428}, {"destination": 1316237022, "path": [[-572.6345615499895, 2078.552305677661], [-347.2845615561937, 2021.20230567715]], "source": 1316237191, "length": 44.71448772727465}, {"destination": 602360648, "path": [[4661.565438446758, -6886.347694322836], [4675.765438449275, -6843.447694322435], [4704.86543844828, -6806.44769432348], [4746.015438449547, -6779.097694321834], [4774.365438443339, -6768.597694323475], [4804.465438446925, -6762.797694323197]], "source": 63308077, "length": 41.4847849777792}, {"destination": 1785697747, "path": [[4661.565438446758, -6886.347694322836], [4641.615438444546, -6820.297694321908], [4610.91543844816, -6777.197694322723], [4560.565438445963, -6746.697694323345]], "source": 63308077, "length": 38.12643068750645}, {"destination": 476680920, "path": [[-8162.434561555187, -4083.2476943233332], [-8060.584561555117, -4036.4976943223496], [-7909.7845615549995, -3957.6976943234145]], "source": 476681047, "length": 55.58794018215974}, {"destination": 476681048, "path": [[-8162.434561555187, -4083.2476943233332], [-8002.03456155657, -4157.997694322901], [-7952.384561555447, -4181.647694322166]], "source": 476681047, "length": 45.544408572943745}, {"destination": 1928818226, "path": [[-8162.434561555187, -4083.2476943233332], [-8139.534561550477, -4135.347694322889], [-8131.28456154999, -4152.14769432204]], "source": 476681047, "length": 16.43037460217655}, {"destination": 476681028, "path": [[-8162.434561555187, -4083.2476943233332], [-8505.984561551828, -3961.4476943228283], [-8475.934561552378, -3921.097694322029]], "source": 476681047, "length": 81.35954391050564}, {"destination": 5021317164, "path": [[-8162.434561555187, -4083.2476943233332], [-8211.784561552804, -4102.997694323207]], "source": 476681047, "length": 10.361453294366981}, {"destination": 476681047, "path": [[-7952.384561555447, -4181.647694322166], [-8002.03456155657, -4157.997694322901], [-8162.434561555187, -4083.2476943233332]], "source": 476681048, "length": 45.544408572943745}, {"destination": 1316623266, "path": [[-603.884561556356, -321.6476943226354], [-591.9845615522945, -268.6476943232208]], "source": 1316623193, "length": 12.001731165293926}, {"destination": 1316623679, "path": [[-603.884561556356, -321.6476943226354], [-698.4845615534141, -304.5976943223394], [-800.3845615505156, -290.84769432330404], [-945.2345615557078, -254.14769432252626]], "source": 1316623193, "length": 66.73289664206912}, {"destination": 1316623425, "path": [[1919.7654384441876, -1141.7976943217668], [1952.7654384461357, -1014.1476943221761]], "source": 1316623197, "length": 29.0736563911452}, {"destination": 1316623332, "path": [[1919.7654384441876, -1141.7976943217668], [2010.4154384483763, -1157.847694322811], [2073.6154384479732, -1173.597694322126]], "source": 1316623197, "length": 30.12284080779257}, {"destination": 1316623365, "path": [[1919.7654384441876, -1141.7976943217668], [1903.1654384491503, -1205.9976943223915]], "source": 1316623197, "length": 14.62252218724215}, {"destination": 639308641, "path": [[-1443.3345615501025, 1618.4023056773356], [-1600.5845615509884, 1761.752305677433]], "source": 639308640, "length": 43.710833882743245}, {"destination": 1316196954, "path": [[-1600.5845615509884, 1761.752305677433], [-1765.2345615530862, 1870.7023056769856], [-1923.4845615514473, 1978.5523056778943], [-2116.5845615556123, 2097.5523056776524]], "source": 639308641, "length": 123.34253119288417}, {"destination": 477643992, "path": [[-9142.534561554783, -7744.547694322535], [-9085.834561552985, -7779.697694322962], [-8935.634561552775, -7904.4476943224145], [-8695.334561551248, -8040.197694322515], [-8645.384561553727, -8080.94769432266], [-8495.184561553515, -8161.6476943224825], [-8343.384561555922, -8212.647694323394], [-8151.784561555076, -8270.597694322036], [-7931.384561551624, -8302.847694322323], [-7819.934561553055, -8311.447694323348], [-7709.534561556097, -8314.647694323441], [-7506.7345615522645, -8312.89769432253], [-7451.034561555048, -8309.597694323045], [-7397.934561552688, -8303.247694323445], [-7309.634561551093, -8288.997694322119], [-7236.734561551828, -8276.74769432285]], "source": 874296162, "length": 399.7871137959573}, {"destination": 477628417, "path": [[-5361.134561553627, -6338.747694321966], [-5547.5345615505485, -6281.197694322671]], "source": 477639525, "length": 37.683268173228484}, {"destination": 477639508, "path": [[-5361.134561553627, -6338.747694321966], [-5460.0845615553335, -6608.397694321866]], "source": 477639525, "length": 62.84983730780596}, {"destination": 1314685711, "path": [[-5361.134561553627, -6338.747694321966], [-5232.734561552377, -6048.897694322264]], "source": 477639525, "length": 68.92861560147348}, {"destination": 4273376072, "path": [[86.01543844832804, -1397.7976943220228], [90.21543844767166, -1360.197694323162], [103.61543844794596, -1264.8476943226683], [105.46543844469625, -1252.1976943222767]], "source": 1316623209, "length": 32.59431540299506}, {"destination": 1316623723, "path": [[86.01543844832804, -1397.7976943220228], [95.66543844385933, -1428.8476943224991], [71.61543844347307, -1681.1976943227337]], "source": 1316623209, "length": 63.45103395920274}, {"destination": 1316623299, "path": [[86.01543844832804, -1397.7976943220228], [9.665438447825636, -1389.4476943221434], [-152.53456155051026, -1372.2476943218708]], "source": 1316623209, "length": 45.718477680977365}, {"destination": 599407018, "path": [[-978.6845615522566, -644.1976943225569], [-1465.184561553201, -550.3976943224131]], "source": 1316623210, "length": 94.83973639850598}, {"destination": 1316623318, "path": [[-978.6845615522566, -644.1976943225569], [-937.1845615504526, -467.4476943229422]], "source": 1316623210, "length": 40.09198718186247}, {"destination": 481390471, "path": [[-978.6845615522566, -644.1976943225569], [-688.7345615567142, -699.0976943228588]], "source": 1316623210, "length": 56.474933344159275}, {"destination": 1581175517, "path": [[2408.715438448894, -6449.847694321776], [2447.365438449367, -6480.7476943222755]], "source": 1581175659, "length": 10.060916507747837}, {"destination": 4867879874, "path": [[2408.715438448894, -6449.847694321776], [2432.5154384499115, -6381.697694322952], [2491.5154384430593, -6163.847694322655], [2493.815438448621, -6149.597694323105]], "source": 1581175659, "length": 68.74637564870754}, {"destination": 1581175562, "path": [[2408.715438448894, -6449.847694321776], [2391.2654384474763, -6506.047694323059]], "source": 1581175659, "length": 12.931794978660099}, {"destination": 1581175594, "path": [[2408.715438448894, -6449.847694321776], [2404.715438444782, -6431.497694322275], [2385.915438445352, -6421.1976943227], [2361.0654384498275, -6420.3476943234255]], "source": 1581175659, "length": 13.124574768937325}, {"destination": 1581175607, "path": [[2408.715438448894, -6449.847694321776], [2389.215438448389, -6462.747694323312], [2364.4654384469277, -6460.197694321934], [2353.715438445647, -6453.297694323012]], "source": 1581175659, "length": 11.982125266393442}, {"destination": 103764778, "path": [[1040.0154384484495, -3764.4976943234096], [1111.0154384468274, -3813.09769432292]], "source": 103764845, "length": 17.294150829279232}, {"destination": 476078722, "path": [[1040.0154384484495, -3764.4976943234096], [1289.6654384491057, -3520.7476943224237], [1379.5654384480827, -3429.9976943223955], [1565.965438445005, -3238.197694322764]], "source": 103764845, "length": 153.96492617856995}, {"destination": 476078767, "path": [[1040.0154384484495, -3764.4976943234096], [959.7154384479722, -3723.3976943227276], [936.515438446861, -3714.397694322358], [287.16543844353737, -3528.297694321836]], "source": 103764845, "length": 152.8704268101101}, {"destination": 1316623618, "path": [[1405.1654384488188, -1240.0476943223994], [1605.4154384477215, -1279.3976943221708], [1653.7154384437258, -1261.04769432267]], "source": 1316623215, "length": 49.12457171072445}, {"destination": 1316623339, "path": [[1405.1654384488188, -1240.0476943223994], [1425.7154384438309, -1148.6476943218804], [1444.5154384432612, -1075.2476943221013]], "source": 1316623215, "length": 37.409330459180794}, {"destination": 1316623541, "path": [[1405.1654384488188, -1240.0476943223994], [1390.115438447026, -1307.197694321971]], "source": 1316623215, "length": 15.205384683354099}, {"destination": 475978728, "path": [[4450.065438447837, 653.3023056771725], [4135.565438446065, 202.20230567780106], [3827.1154384474926, -341.99769432241567]], "source": 475978741, "length": 251.28678557960518}, {"destination": 2971714378, "path": [[4450.065438447837, 653.3023056771725], [4598.61543844653, 605.0023056776155], [5132.515438447172, 422.15230567776985], [5201.715438445831, 396.9523056781554], [5218.91543844788, 387.6023056772482]], "source": 475978741, "length": 157.77683307204217}, {"destination": 2971714382, "path": [[4450.065438447837, 653.3023056771725], [4707.715438449612, 1065.3523056767256], [4717.815438446849, 1082.5023056781902]], "source": 475978741, "length": 108.18445096912512}, {"destination": 475978447, "path": [[4450.065438447837, 653.3023056771725], [3825.2154384466053, 827.7523056765546]], "source": 475978741, "length": 125.00318174540192}, {"destination": 1316623254, "path": [[-515.2845615512547, -710.6976943234145], [-440.9845615569452, -738.0976943220929], [-456.1845615569382, -843.3476943228158]], "source": 1316623224, "length": 38.97149480155289}, {"destination": 1316623476, "path": [[-156.6345615557907, -472.04769432340754], [-285.3845615504724, -426.14769432347543], [-389.9845615507047, -410.09769432243104], [-459.7345615522386, -373.3976943234296], [-524.134561551648, -368.8476943217722], [-609.1345615502064, -345.04769432253113]], "source": 1316623226, "length": 91.60814077126341}, {"destination": 1316623677, "path": [[-156.6345615557907, -472.04769432340754], [-167.38456154996584, -577.5476943217228]], "source": 1316623226, "length": 23.551259310949753}, {"destination": 1316623495, "path": [[-156.6345615557907, -472.04769432340754], [-96.93456155446256, -307.4976943224783]], "source": 1316623226, "length": 38.31488657891824}, {"destination": 475984865, "path": [[6570.215438443938, 886.7023056779999], [6540.9154384497015, 857.6523056778029]], "source": 475984763, "length": 8.531521439015698}, {"destination": 476561132, "path": [[6570.215438443938, 886.7023056779999], [6742.865438447154, 1029.4523056781914], [7082.015438449218, 1392.5023056771124]], "source": 475984763, "length": 149.00946632633745}, {"destination": 3113821585, "path": [[-7515.984561550226, 2936.8523056767517], [-7469.334561555741, 2926.6023056777613], [-7290.434561554093, 2887.302305676798]], "source": 857780844, "length": 44.2887096834268}, {"destination": 857780845, "path": [[-7515.984561550226, 2936.8523056767517], [-7500.98456155257, 2993.8523056767253], [-7271.234561549989, 3865.9023056766273]], "source": 857780844, "length": 211.79016304751383}, {"destination": 71129881, "path": [[-7515.984561550226, 2936.8523056767517], [-7570.784561551136, 2948.9023056772367], [-8198.53456155073, 3087.4523056780845]], "source": 857780844, "length": 134.06093121952975}, {"destination": 1316623472, "path": [[-483.08456155155, -1246.9476943230973], [-312.13456155398944, -1268.3976943232979]], "source": 1316623230, "length": 32.85698708942487}, {"destination": 1316623744, "path": [[-483.08456155155, -1246.9476943230973], [-465.13456155139465, -1163.2476943219672], [-443.2345615512645, -1061.1476943225284]], "source": 1316623230, "length": 42.00925723967864}, {"destination": 1316623694, "path": [[-483.08456155155, -1246.9476943230973], [-593.8845615531818, -1233.0476943223089]], "source": 1316623230, "length": 21.295818276028854}, {"destination": 1316236784, "path": [[-2503.984561556649, 2593.0523056771904], [-2230.634561556144, 2452.702305676624]], "source": 639308674, "length": 60.636472602594495}, {"destination": 639308682, "path": [[-2503.984561556649, 2593.0523056771904], [-2477.684561554838, 2628.8023056775246]], "source": 639308674, "length": 9.393332104216393}, {"destination": 483091135, "path": [[-2503.984561556649, 2593.0523056771904], [-2565.684561552928, 2486.7523056766317]], "source": 639308674, "length": 26.39222086390079}, {"destination": 1316623722, "path": [[1358.6654384454278, -1118.8476943218006], [1277.0654384439695, -1107.447694321806]], "source": 1316623235, "length": 15.723210731562148}, {"destination": 1316236984, "path": [[-1801.134561553397, 2228.2523056773584], [-1553.1845615512907, 2088.8023056766515]], "source": 639308676, "length": 56.439094408440404}, {"destination": 1316236763, "path": [[-1801.134561553397, 2228.2523056773584], [-1883.2345615535928, 2274.402305676659], [-1969.1345615555633, 2318.5023056768728]], "source": 639308676, "length": 37.73953598595213}, {"destination": 639308684, "path": [[-1801.134561553397, 2228.2523056773584], [-1912.484561550798, 2029.9523056781509], [-1912.484561550798, 2029.9523056781509]], "source": 639308676, "length": 48.92086467111187}, {"destination": 1316236887, "path": [[-1801.134561553397, 2228.2523056773584], [-1751.2845615570427, 2304.2523056773234]], "source": 639308676, "length": 19.37915651843146}, {"destination": 477647784, "path": [[-3196.8345615567273, -4638.14769432247], [-2567.6345615508467, -4799.14769432277]], "source": 477647749, "length": 124.88654153829313}, {"destination": 1315785328, "path": [[-3196.8345615567273, -4638.14769432247], [-3176.834561550379, -4572.597694322056]], "source": 477647749, "length": 15.06574757724202}, {"destination": 4225630306, "path": [[5513.46543844744, 8175.152305677003], [5570.665438447975, 8244.502305677415], [6148.5654384441095, 8885.15230567677], [6189.165438449607, 8930.152305676842]], "source": 714084514, "length": 211.46217585540924}, {"destination": 4573378108, "path": [[5513.46543844744, 8175.152305677003], [5436.015438448294, 8234.65230567777], [5197.065438444781, 8504.802305678182]], "source": 714084514, "length": 95.13512363266842}, {"destination": 482734042, "path": [[5513.46543844744, 8175.152305677003], [5552.165438444945, 8154.752305676638]], "source": 714084514, "length": 8.646945127752607}, {"destination": 4460275969, "path": [[-1239.4845615517625, 2003.7523056775085], [-1306.1345615525966, 1895.1023056779093], [-1419.134561551516, 1726.9023056769583]], "source": 639308680, "length": 70.42541073070808}, {"destination": 1316236524, "path": [[-1239.4845615517625, 2003.7523056775085], [-1235.7345615541249, 2016.652305677269]], "source": 639308680, "length": 2.9567472289049173}, {"destination": 1316237221, "path": [[-1239.4845615517625, 2003.7523056775085], [-1273.5345615553229, 2024.7523056777795], [-1342.734561553982, 2036.602305677704]], "source": 639308680, "length": 21.406610654711784}, {"destination": 639308674, "path": [[-2477.684561554838, 2628.8023056775246], [-2503.984561556649, 2593.0523056771904]], "source": 639308682, "length": 9.393332104216393}, {"destination": 639308683, "path": [[-2477.684561554838, 2628.8023056775246], [-2762.2345615512245, 2746.552305676886]], "source": 639308682, "length": 60.11916944404373}, {"destination": 1316236871, "path": [[-2477.684561554838, 2628.8023056775246], [-2450.8845615542896, 2665.202305676573]], "source": 639308682, "length": 9.566364200679025}, {"destination": 639308682, "path": [[-2762.2345615512245, 2746.552305676886], [-2477.684561554838, 2628.8023056775246]], "source": 639308683, "length": 60.11916944404373}, {"destination": 1316237204, "path": [[-2762.2345615512245, 2746.552305676886], [-2569.784561551103, 3033.9023056775713]], "source": 639308683, "length": 73.64309807315448}, {"destination": 483098199, "path": [[-2762.2345615512245, 2746.552305676886], [-2841.7845615535953, 2633.9023056767273]], "source": 639308683, "length": 29.26599310801751}, {"destination": 639308668, "path": [[-1912.484561550798, 2029.9523056781509], [-1563.4345615538336, 1800.3023056767374]], "source": 639308684, "length": 83.75500606875396}, {"destination": 639308676, "path": [[-1912.484561550798, 2029.9523056781509], [-1912.484561550798, 2029.9523056781509], [-1801.134561553397, 2228.2523056773584]], "source": 639308684, "length": 48.92086467111187}, {"destination": 495772552, "path": [[8071.165438444439, -4205.497694321992], [8011.215438443742, -4194.3976943219495]], "source": 63303824, "length": 11.664315952274432}, {"destination": 1784682716, "path": [[8071.165438444439, -4205.497694321992], [7998.2654384451735, -4457.847694322226]], "source": 63303824, "length": 57.806869825170885}, {"destination": 1316623556, "path": [[-650.3845615526416, -528.447694323475], [-642.8345615532294, -494.84769432339704]], "source": 1316623251, "length": 7.609061555606407}, {"destination": 1316623318, "path": [[-650.3845615526416, -528.447694323475], [-937.1845615504526, -467.4476943229422]], "source": 1316623251, "length": 56.202417241404675}, {"destination": 1316623224, "path": [[-456.1845615569382, -843.3476943228158], [-440.9845615569452, -738.0976943220929], [-515.2845615512547, -710.6976943234145]], "source": 1316623254, "length": 38.97149480155289}, {"destination": 1316623408, "path": [[-456.1845615569382, -843.3476943228158], [-486.5845615569242, -843.5976943221846], [-712.434561556563, -804.4976943217819]], "source": 1316623254, "length": 49.60261974957355}, {"destination": 1316623708, "path": [[-456.1845615569382, -843.3476943228158], [-237.1345615514997, -841.2976943219519]], "source": 1316623254, "length": 41.658701746846525}, {"destination": 1316198736, "path": [[-2611.1345615547066, 2439.0523056769807], [-2724.6345615523637, 2230.052305677077]], "source": 639308696, "length": 51.24719793574619}, {"destination": 639305947, "path": [[-2611.1345615547066, 2439.0523056769807], [-2886.384561556099, 2568.0023056775526], [-3038.6845615524294, 2633.102305678037]], "source": 639308696, "length": 92.06928957305483}, {"destination": 1316198738, "path": [[-2891.734561551118, 1912.0023056782288], [-2788.0845615513294, 1851.4523056776256], [-2586.6345615526143, 1768.3023056775937]], "source": 639308698, "length": 66.41325919607847}, {"destination": 1316236932, "path": [[-2891.734561551118, 1912.0023056782288], [-2913.734561552417, 1866.1523056771046]], "source": 639308698, "length": 11.021508942067026}, {"destination": 1316198773, "path": [[-2891.734561551118, 1912.0023056782288], [-2884.0345615535057, 1926.6523056771234]], "source": 639308698, "length": 3.5711373276469978}, {"destination": 1316623630, "path": [[-363.1845615501561, -905.5476943231611], [-577.7845615568822, -882.597694323195], [-725.3345615509943, -861.9476943234616]], "source": 1316623259, "length": 69.56035392185503}, {"destination": 84487113, "path": [[3647.21543844837, -7576.747694322705], [3597.5654384472477, -7609.797694323462]], "source": 2049820826, "length": 11.964124595541149}, {"destination": 1769171985, "path": [[3647.21543844837, -7576.747694322705], [3676.4154384485437, -7609.597694322901]], "source": 2049820826, "length": 9.175891355832066}, {"destination": 2049820777, "path": [[3647.21543844837, -7576.747694322705], [3622.315438448709, -7548.447694322391]], "source": 2049820826, "length": 7.875636543525299}, {"destination": 1316623476, "path": [[-634.1845615551733, -456.39769432348487], [-609.1345615502064, -345.04769432253113]], "source": 1316623264, "length": 25.21710966410253}, {"destination": 1316623303, "path": [[-634.1845615551733, -456.39769432348487], [-784.284561554216, -428.44769432193175], [-781.5845615510852, -359.6476943226179], [-968.0345615521446, -320.2476943222621]], "source": 1316623264, "length": 81.04591672123858}, {"destination": 2367475224, "path": [[1504.6154384492638, -2212.847694321951], [1666.315438448862, -2232.7476943218016], [1749.4654384435648, -2212.0976943220685], [1787.015438445394, -2134.147694322408], [1850.4654384443597, -1965.6476943232803]], "source": 2367475184, "length": 105.64780417171801}, {"destination": 773662900, "path": [[1504.6154384492638, -2212.847694321951], [1187.3154384431928, -1971.7976943223193]], "source": 2367475184, "length": 80.71242716421477}, {"destination": 2376753461, "path": [[1504.6154384492638, -2212.847694321951], [1579.865438444017, -2270.0476943224858], [1648.915438444476, -2322.4976943225784], [1756.2654384448706, -2394.0976943226387]], "source": 2367475184, "length": 62.59929529688805}, {"destination": 2367475198, "path": [[1504.6154384492638, -2212.847694321951], [1411.5154384484185, -2303.8476943231244], [1186.215438444549, -2303.8476943231244], [965.4154384435287, -2313.1976943222553]], "source": 2367475184, "length": 111.7715986551708}, {"destination": 654382690, "path": [[5282.515438445045, 7481.602305677626], [5490.715438448035, 7390.102305677715], [5716.515438443537, 7270.95230567798], [5920.015438448445, 7199.652305677872]], "source": 476561865, "length": 136.8139287616881}, {"destination": 476561935, "path": [[5282.515438445045, 7481.602305677626], [5255.515438449265, 7413.052305677681]], "source": 476561865, "length": 16.086444094298322}, {"destination": 1316236440, "path": [[-224.88456155400627, 1935.7523056768855], [-344.53456155603135, 1962.3523056768731], [-633.9345615558045, 1856.652305677997]], "source": 639308707, "length": 83.35886121467705}, {"destination": 1316236955, "path": [[-224.88456155400627, 1935.7523056768855], [-161.73456155144095, 2044.1523056771161]], "source": 639308707, "length": 26.933066631416892}, {"destination": 91207598, "path": [[9412.015438449827, -7589.597694321881], [9359.96543844908, -7563.79769432236]], "source": 495768484, "length": 11.439621084051698}, {"destination": 1582517346, "path": [[-8746.334561550384, -3774.1976943230784], [-8725.684561554204, -3749.6976943227623], [-8713.58456155491, -3715.297694322217], [-8712.234561556897, -3677.4976943227957], [-8712.234561556897, -3629.297694322631], [-8715.834561556334, -3579.4476943227237]], "source": 476681030, "length": 44.942127733986}, {"destination": 1582517279, "path": [[-8746.334561550384, -3774.1976943230784], [-8679.734561553687, -3800.897694322458]], "source": 476681030, "length": 13.986795677943674}, {"destination": 1582517287, "path": [[-8746.334561550384, -3774.1976943230784], [-8800.384561553186, -3746.097694323325]], "source": 476681030, "length": 12.02873509455433}, {"destination": 602360664, "path": [[6626.915438445735, -4020.647694321866], [6696.315438446732, -3587.847694323187], [6773.56543844354, -3308.9976943223573], [6827.3654384469755, -3201.547694322571], [6883.815438449403, -3106.897694323152]], "source": 495771121, "length": 210.50261164063218}, {"destination": 478379222, "path": [[6626.915438445735, -4020.647694321866], [6715.665438449037, -4027.347694322003]], "source": 495771121, "length": 16.94218476234656}, {"destination": 1315785651, "path": [[-2567.6345615508467, -4799.14769432277], [-2547.234561554035, -4730.1976943234795]], "source": 477647784, "length": 15.816938174108042}, {"destination": 477647749, "path": [[-2567.6345615508467, -4799.14769432277], [-3196.8345615567273, -4638.14769432247]], "source": 477647784, "length": 124.88654153829313}, {"destination": 4867879889, "path": [[10711.16543844397, 3525.1523056771816], [10729.915438446369, 3470.2523056768796], [10731.915438448425, 3416.3523056776057], [10719.165438445089, 3372.202305676808], [10685.665438444403, 3318.852305676856], [10644.065438448535, 3227.652305676898], [10621.265438444992, 3193.2523056781292], [10606.515438446706, 3162.302305677045], [10589.765438446364, 3076.8523056767804], [10588.415438448352, 3007.4523056775606], [10559.615438445746, 2928.3523056768954], [10514.015438445767, 2868.102305678022], [10465.715438449763, 2798.1523056777037], [10470.415438447844, 2707.0023056765535], [10444.915438448277, 2653.1023056772797], [10385.915438448024, 2592.3023056773077], [10346.365438444138, 2507.4523056769494], [10248.465438444044, 2377.8523056776635], [10196.165438443928, 2276.902305677453], [10197.515438449045, 2209.252305677367], [10169.315438446347, 2128.402305677568], [10152.365438443667, 2097.7523056782134]], "source": 4867879849, "length": 344.7661392039648}, {"destination": 2001675427, "path": [[10711.16543844397, 3525.1523056771816], [10692.865438443278, 3462.552305677491], [10638.615438445242, 3311.652305677981], [10551.465438446428, 3318.6523056780716], [10416.665438448546, 2947.502305676863], [10284.115438444986, 2633.2023056774287], [10133.965438448911, 2345.352305678006], [10056.815438446165, 2208.852305678022], [10045.06543844741, 2145.40230567728], [9999.265438445093, 2120.2523056782497]], "source": 4867879849, "length": 355.29005468783964}, {"destination": 4867879883, "path": [[10711.16543844397, 3525.1523056771816], [10761.915438443737, 3698.7023056767043], [10781.815438448917, 3767.352305677818]], "source": 4867879849, "length": 55.5131182070644}, {"destination": 4867879883, "path": [[10711.16543844397, 3525.1523056771816], [10712.465438444951, 3582.6523056776696], [10737.265438443445, 3637.1023056780414], [10744.015438447717, 3696.752305677009], [10781.815438448917, 3767.352305677818]], "source": 4867879849, "length": 56.38115716659989}, {"destination": 475977000, "path": [[-1628.8845615548553, 614.1523056779619], [-1005.0345615510992, 497.0023056767303]], "source": 639308714, "length": 121.46675974262412}, {"destination": 475976301, "path": [[-1628.8845615548553, 614.1523056779619], [-1685.334561550178, 498.5523056770802], [-1717.784561556357, 432.10230567680696], [-1747.1845615517623, 371.85230567793326], [-1784.384561553054, 295.7023056779917], [-1812.0845615570147, 239.0023056779711], [-1857.6345615528567, 145.70230567656495]], "source": 639308714, "length": 112.89575375195786}, {"destination": 1316236855, "path": [[-1628.8845615548553, 614.1523056779619], [-1618.284561551775, 635.8523056775311]], "source": 639308714, "length": 5.230933692575181}, {"destination": 1316623429, "path": [[978.815438443803, -1013.4476943228776], [999.3654384459205, -915.0976943228528]], "source": 1316623275, "length": 22.218339347564733}, {"destination": 1316623486, "path": [[978.815438443803, -1013.4476943228776], [1031.415438447425, -1013.3476943234854], [1068.9654384492542, -1004.1476943225547], [1170.9154384433873, -1015.5976943231337], [1203.115438443092, -1038.5476943230997], [1283.4654384477062, -1045.847694323143]], "source": 1316623275, "length": 60.32299255309404}, {"destination": 1316623663, "path": [[978.815438443803, -1013.4476943228776], [968.4154384430599, -1063.147694322808]], "source": 1316623275, "length": 11.228096671051274}, {"destination": 1316623385, "path": [[1334.5154384438729, -1171.5976943218466], [1279.7154384429632, -1155.5976943231626]], "source": 1316623279, "length": 11.011691681560027}, {"destination": 1316623410, "path": [[1945.115438445555, -1431.0976943221476], [1927.2654384465682, -1481.1976943231998]], "source": 1316623283, "length": 11.646917768346444}, {"destination": 1316623612, "path": [[1945.115438445555, -1431.0976943221476], [1726.1154384442534, -1380.297694321797]], "source": 1316623283, "length": 43.151365271464755}, {"destination": 1316623589, "path": [[1945.115438445555, -1431.0976943221476], [1968.0154384431603, -1366.5476943227618]], "source": 1316623283, "length": 15.00099993427927}, {"destination": 2460670081, "path": [[1097.4654384483529, -462.6976943225003], [1022.6654384482003, -444.19769432302303], [931.8654384458114, -425.7476943223537], [832.515438446535, -411.3976943234121]], "source": 773662878, "length": 51.716566567377384}, {"destination": 1316623742, "path": [[1097.4654384483529, -462.6976943225003], [1063.3154384436239, -616.447694323341]], "source": 773662878, "length": 34.80377481088702}, {"destination": 1324294220, "path": [[2847.365438448435, 4920.552305677006], [2997.4154384433405, 4888.452305676694], [3078.315438443724, 4866.052305677826]], "source": 1324294985, "length": 45.590477932115604}, {"destination": 1324294461, "path": [[2847.365438448435, 4920.552305677006], [2850.06543844446, 5035.252305678028], [2949.0154384461675, 5033.752305678263]], "source": 1324294985, "length": 44.335878546231896}, {"destination": 1324294686, "path": [[2847.365438448435, 4920.552305677006], [2804.465438444481, 4929.702305677352], [2579.2654384488856, 4941.052305676763]], "source": 1324294985, "length": 51.31397559061734}, {"destination": 1324294463, "path": [[2847.365438448435, 4920.552305677006], [2825.9154384500107, 4804.902305677317]], "source": 1324294985, "length": 26.041050323334687}, {"destination": 1721498161, "path": [[4176.9654384467, -4654.647694323444], [4146.7654384490515, -4682.547694322637], [4029.46543844962, -4774.097694323132]], "source": 4867879866, "length": 38.65435046655066}, {"destination": 1721498027, "path": [[4176.9654384467, -4654.647694323444], [4059.2654384496996, -4559.647694321711], [4082.0654384461363, -4542.447694323215], [4179.965438446232, -4621.547694322104], [4275.015438444996, -4671.197694323226]], "source": 4867879866, "length": 83.3507766189982}, {"destination": 1721498027, "path": [[4176.9654384467, -4654.647694323444], [4208.16543844893, -4625.8976943232], [4275.015438444996, -4671.197694323226]], "source": 4867879866, "length": 24.942497058526484}, {"destination": 1316623308, "path": [[2541.515438444719, -900.9476943226957], [2589.815438447829, -545.4476943231867], [2586.515438444792, -401.04769432325327]], "source": 1316623291, "length": 111.71079452753938}, {"destination": 1316623322, "path": [[-50.43456155107151, -892.4476943228399], [197.4154384498661, -928.4476943225428]], "source": 1316623295, "length": 47.808073491542345}, {"destination": 1316623636, "path": [[-50.43456155107151, -892.4476943228399], [11.91543844925036, -610.9976943218243]], "source": 1316623295, "length": 63.70485822289817}, {"destination": 4273376071, "path": [[-50.43456155107151, -892.4476943228399], [-124.1845615567172, -1226.3976943227563]], "source": 1316623295, "length": 75.5798140699329}, {"destination": 4867879874, "path": [[2534.815438444582, -5975.247694323116], [2516.9654384455953, -6052.59769432287], [2493.815438448621, -6149.597694323105]], "source": 4867879872, "length": 39.54994841838433}, {"destination": 1581175343, "path": [[2534.815438444582, -5975.247694323116], [2623.915438448421, -5787.397694323459]], "source": 4867879872, "length": 45.08083739322951}, {"destination": 1581175189, "path": [[2534.815438444582, -5975.247694323116], [2515.4654384493824, -5967.497694323143]], "source": 4867879872, "length": 4.063413938403447}, {"destination": 1581175157, "path": [[2534.815438444582, -5975.247694323116], [2558.1654384438934, -5984.597694322247]], "source": 4867879872, "length": 4.9036700899565036}, {"destination": 4273219742, "path": [[846.7654384460843, -1253.797694323211], [830.0154384457414, -1281.8976943229643], [808.8654384437177, -1289.4976943229608]], "source": 4273219744, "length": 11.37785147132143}, {"destination": 1581175168, "path": [[2493.815438448621, -6149.597694323105], [2505.6154384444085, -6154.89769432287]], "source": 4867879874, "length": 2.534971588776938}, {"destination": 4867879872, "path": [[2493.815438448621, -6149.597694323105], [2516.9654384455953, -6052.59769432287], [2534.815438444582, -5975.247694323116]], "source": 4867879874, "length": 39.54994841838433}, {"destination": 1581175659, "path": [[2493.815438448621, -6149.597694323105], [2491.5154384430593, -6163.847694322655], [2432.5154384499115, -6381.697694322952], [2408.715438448894, -6449.847694321776]], "source": 4867879874, "length": 68.74637564870754}, {"destination": 1581175564, "path": [[2493.815438448621, -6149.597694323105], [2441.5654384455365, -6126.097694322041]], "source": 4867879874, "length": 11.22568832797755}, {"destination": 475975536, "path": [[-152.53456155051026, -1372.2476943218708], [-207.08456155205113, -1701.1976943219765]], "source": 1316623299, "length": 73.88709469487647}, {"destination": 1316623209, "path": [[-152.53456155051026, -1372.2476943218708], [9.665438447825636, -1389.4476943221434], [86.01543844832804, -1397.7976943220228]], "source": 1316623299, "length": 45.718477680977365}, {"destination": 475975643, "path": [[-152.53456155051026, -1372.2476943218708], [-138.28456155096092, -1290.1476943234513]], "source": 1316623299, "length": 18.45853411588308}, {"destination": 1316623264, "path": [[-968.0345615521446, -320.2476943222621], [-781.5845615510852, -359.6476943226179], [-784.284561554216, -428.44769432193175], [-634.1845615551733, -456.39769432348487]], "source": 1316623303, "length": 81.04591672123858}, {"destination": 1316623550, "path": [[-968.0345615521446, -320.2476943222621], [-1006.9345615519865, -433.0476943223971], [-1367.5345615524748, -361.29769432236003]], "source": 1316623303, "length": 96.56085152832281}, {"destination": 1316623679, "path": [[-968.0345615521446, -320.2476943222621], [-945.2345615557078, -254.14769432252626]], "source": 1316623303, "length": 15.326119290302161}, {"destination": 4867880024, "path": [[2337.065438446473, -7254.747694322105], [2346.6654384449726, -7295.597694323419], [2404.315438447213, -7456.097694323205], [2411.065438444382, -7504.29769432337], [2453.9654384483356, -7539.847694323143], [2531.5154384486505, -7614.247694322174], [2656.465438448663, -7739.347694322163], [2849.5654384457225, -7873.497694323106], [2959.565438445111, -7929.697694322613], [3034.6654384487692, -8027.147694322778], [3166.06543844955, -8129.197694323409], [3340.415438444211, -8231.247694322263], [3478.565438449266, -8327.5476943232], [3504.0654384488334, -8359.647694321737], [3548.215438449631, -8388.797694323102]], "source": 4867879881, "length": 352.1909282264365}, {"destination": 1581175160, "path": [[2337.065438446473, -7254.747694322105], [2383.565438449864, -7271.647694322425]], "source": 4867879881, "length": 9.606790272442625}, {"destination": 1581175202, "path": [[2337.065438446473, -7254.747694322105], [2312.765438446718, -7245.947694322296], [2278.615438449094, -7155.047694322292], [2236.3154384450468, -7166.797694322824], [2240.36543844619, -7204.64769432283], [2208.1654384464855, -7120.947694323476], [2178.6654384499116, -7002.847694321801], [2156.2654384439384, -6993.49769432267]], "source": 4867879881, "length": 94.35133333013535}, {"destination": 1581175562, "path": [[2337.065438446473, -7254.747694322105], [2331.9154384466856, -7198.147694323254], [2287.6654384447193, -7084.597694323236], [2256.8154384430272, -6998.597694321873], [2240.7154384467276, -6856.447694323364], [2272.9154384464323, -6724.547694322069], [2358.715438447234, -6580.097694323328], [2391.2654384474763, -6506.047694323059]], "source": 4867879881, "length": 174.59586770968286}, {"destination": 1316623701, "path": [[1852.1654384500152, -696.7976943226262], [2045.3154384441063, -689.9476943225125], [2193.8654384499046, -723.4476943231982]], "source": 1316623306, "length": 65.97814061571313}, {"destination": 1316623187, "path": [[1270.1654384486005, -1508.7476943218549], [1276.2154384446944, -1479.3976943234811]], "source": 1316623307, "length": 6.627825929255592}, {"destination": 1316623533, "path": [[1270.1654384486005, -1508.7476943218549], [1170.9154384433873, -1536.2476943234783]], "source": 1316623307, "length": 19.839915412478373}, {"destination": 1316623413, "path": [[1270.1654384486005, -1508.7476943218549], [1307.7154384433243, -1529.3976943233645], [1289.765438443169, -1647.1976943233103]], "source": 1316623307, "length": 34.908705316219184}, {"destination": 1316623442, "path": [[2586.515438444792, -401.04769432325327], [2692.5654384442055, -381.1476943234027]], "source": 1316623308, "length": 20.64731067239079}, {"destination": 1316623291, "path": [[2586.515438444792, -401.04769432325327], [2589.815438447829, -545.4476943231867], [2541.515438444719, -900.9476943226957]], "source": 1316623308, "length": 111.71079452753938}, {"destination": 1315785521, "path": [[-2194.4845615564645, -2749.7976943227086], [-2111.434561555825, -2487.1476943229]], "source": 479284039, "length": 60.50821309844317}, {"destination": 479283989, "path": [[-2194.4845615564645, -2749.7976943227086], [-2327.884561552196, -2708.497694323242], [-2458.38456155667, -2662.59769432331]], "source": 479284039, "length": 53.812033746542}, {"destination": 95663349, "path": [[-2194.4845615564645, -2749.7976943227086], [-2036.4345615533352, -2794.0476943228987]], "source": 479284039, "length": 31.624757986345095}, {"destination": 1316623616, "path": [[1304.565438445593, -1342.447694321791], [1289.5154384438001, -1415.147694322272]], "source": 1316623310, "length": 16.418890168917788}, {"destination": 1316623185, "path": [[1304.565438445593, -1342.447694321791], [993.8654384455958, -1288.5476943225171]], "source": 1316623310, "length": 60.288260099801256}, {"destination": 1316623391, "path": [[1304.565438445593, -1342.447694321791], [1323.8154384467293, -1249.547694323283], [1283.5654384488748, -1224.3476943218923], [1283.0654384430318, -1215.447694322691]], "source": 1316623310, "length": 32.45100981037038}, {"destination": 2971714380, "path": [[5871.865438443536, 973.5523056768614], [5608.415438445036, 703.6523056775934]], "source": 2971714381, "length": 78.1853083849029}, {"destination": 2367476060, "path": [[6339.915438445587, 967.2523056778459], [6361.015438443474, 1016.6023056772389], [6302.015438443221, 1039.5023056766206], [6275.16543844564, 1103.7523056778298]], "source": 3356046288, "length": 39.18067293537953}, {"destination": 475979876, "path": [[5901.565438449552, 885.9523056781171], [6004.21543844476, 1007.1523056769394], [6028.115438446946, 1037.452305677533]], "source": 3356046289, "length": 41.409568200521086}, {"destination": 2367476046, "path": [[5901.565438449552, 885.9523056781171], [5864.765438445829, 907.6523056776864], [5923.8154384431145, 993.6523056772728]], "source": 3356046289, "length": 30.679584302665543}, {"destination": 477619297, "path": [[-5070.38456155584, -2618.147694322559], [-4657.934561556942, -2821.59769432333]], "source": 479286226, "length": 90.54650668807044}, {"destination": 1315785290, "path": [[-5070.38456155584, -2618.147694322559], [-4894.034561552018, -2388.1476943223843]], "source": 479286226, "length": 61.162810618289534}, {"destination": 4273219754, "path": [[574.9154384488975, -1293.3976943223513], [598.1154384500087, -1289.4976943229608], [634.515438449057, -1306.5976943220649], [659.6654384480871, -1319.7476943229703]], "source": 4273219747, "length": 18.00010863727807}, {"destination": 4273219748, "path": [[574.9154384488975, -1293.3976943223513], [552.6154384440929, -1303.4976943231413]], "source": 4273219747, "length": 4.797762855445235}, {"destination": 4273219757, "path": [[574.9154384488975, -1293.3976943223513], [589.2154384454784, -1276.8476943225692], [587.2154384434225, -1265.9976943218965], [576.4654384492474, -1253.3476943232813]], "source": 4273219747, "length": 10.496079326243072}, {"destination": 476561130, "path": [[6221.315438445174, 1238.452305678095], [6523.315438442978, 1605.9023056769206]], "source": 3356046292, "length": 99.8815495906417}, {"destination": 2367476061, "path": [[6221.315438445174, 1238.452305678095], [6174.565438449519, 1267.7523056776608], [6111.5654384451545, 1200.102305677575]], "source": 3356046292, "length": 30.255713267079592}, {"destination": 1316623729, "path": [[-937.1845615504526, -467.4476943229422], [-921.084561554153, -423.8976943220507]], "source": 1316623318, "length": 10.157647598979924}, {"destination": 1316623210, "path": [[-937.1845615504526, -467.4476943229422], [-978.6845615522566, -644.1976943225569]], "source": 1316623318, "length": 40.09198718186247}, {"destination": 1316623251, "path": [[-937.1845615504526, -467.4476943229422], [-650.3845615526416, -528.447694323475]], "source": 1316623318, "length": 56.202417241404675}, {"destination": 267195121, "path": [[-4545.43456155676, -5596.647694321888], [-4085.634561555196, -5766.597694321973]], "source": 1729306105, "length": 95.2499069897546}, {"destination": 477639727, "path": [[-4545.43456155676, -5596.647694321888], [-4843.034561552884, -5475.197694321921]], "source": 1729306105, "length": 62.703613180171246}, {"destination": 1729306039, "path": [[-4545.43456155676, -5596.647694321888], [-4567.6845615503225, -5638.047694322523], [-4701.334561552529, -5903.147694322542]], "source": 1729306105, "length": 74.33243353856723}, {"destination": 477629510, "path": [[-1845.7845615529322, -7481.6476943233565], [-2184.534561550322, -7378.947694322235], [-2408.3345615508733, -7313.647694322966]], "source": 103781336, "length": 113.30345807234099}, {"destination": 476561951, "path": [[2398.765438449857, 5790.502305677236], [2405.865438447563, 5700.202305677138]], "source": 476555428, "length": 20.127654981308595}, {"destination": 476562299, "path": [[2398.765438449857, 5790.502305677236], [2613.715438450015, 5725.75230567729], [2802.565438443594, 5722.102305677268], [2909.865438446957, 5736.802305676747], [3047.1654384456315, 5799.152305677069], [3167.315438446394, 5909.30230567821], [3360.4654384475907, 6188.202305677848], [3454.865438449417, 6335.05230567799], [3486.965438447953, 6371.302305677063]], "source": 476555428, "length": 282.47480340534094}, {"destination": 856909299, "path": [[2398.765438449857, 5790.502305677236], [2401.8654384434512, 5999.202305677187], [2412.0654384489626, 6104.302305677933], [2450.9654384488044, 6216.702305676947], [2487.1654384455155, 6337.002305677686]], "source": 476555428, "length": 123.56388473204564}, {"destination": 1316623411, "path": [[197.4154384498661, -928.4476943225428], [190.51543844739172, -986.1976943223993]], "source": 1316623322, "length": 12.909822577614882}, {"destination": 4273376084, "path": [[197.4154384498661, -928.4476943225428], [309.86543844591097, -935.5976943226096], [466.6654384450908, -945.5976943222311], [496.26543844993876, -947.4476943225341]], "source": 1316623322, "length": 56.98808711661242}, {"destination": 1316623295, "path": [[197.4154384498661, -928.4476943225428], [-50.43456155107151, -892.4476943228399]], "source": 1316623322, "length": 47.808073491542345}, {"destination": 1316623695, "path": [[197.4154384498661, -928.4476943225428], [197.4154384498661, -889.4976943221167], [250.11543844755124, -649.0976943229754]], "source": 1316623322, "length": 63.05582287613221}, {"destination": 152848312, "path": [[2785.9654384485566, -1175.4976943230133], [2892.715438449045, -1197.1976943225827]], "source": 1316623323, "length": 20.865935479139836}, {"destination": 1316623287, "path": [[2785.9654384485566, -1175.4976943230133], [2641.7654384474076, -1146.1976943234476]], "source": 1316623323, "length": 28.185752618788815}, {"destination": 1316623484, "path": [[2785.9654384485566, -1175.4976943230133], [2849.9654384432915, -1045.4476943220216]], "source": 1316623323, "length": 31.37842229700234}, {"destination": 1316623375, "path": [[2785.9654384485566, -1175.4976943230133], [2737.3154384449094, -1286.2476943222846], [2718.4154384443104, -1315.697694321827]], "source": 1316623323, "length": 33.7803629311845}, {"destination": 4267598457, "path": [[9121.765438443674, 13.302305676532455], [10011.115438445016, -328.9476943226788]], "source": 4867879900, "length": 185.46588538057188}, {"destination": 85646340, "path": [[9121.765438443674, 13.302305676532455], [9173.515438448021, 37.45230567808733], [9189.615438444322, 57.052305677984805], [10032.715438448748, -274.09769432296116]], "source": 4867879900, "length": 192.97574624424615}, {"destination": 1316623545, "path": [[1801.3154384490804, -611.9976943228522], [1769.015438448207, -811.4976943218721]], "source": 1316623328, "length": 44.79000965517097}, {"destination": 1317671170, "path": [[1801.3154384490804, -611.9976943228522], [1849.3154384486843, -592.7476943217158]], "source": 1316623328, "length": 10.082393183987778}, {"destination": 475984763, "path": [[6540.9154384497015, 857.6523056778029], [6570.215438443938, 886.7023056779999]], "source": 475984865, "length": 8.531521439015698}, {"destination": 475979717, "path": [[6540.9154384497015, 857.6523056778029], [6490.515438443367, 875.3023056780052], [6110.915438448217, 1008.102305677383]], "source": 475984865, "length": 88.3555903198251}, {"destination": 1320103848, "path": [[1401.8154384487502, 2589.452305677753], [1205.8654384432543, 2645.1023056779377]], "source": 1320104005, "length": 39.26747981366871}, {"destination": 1320103632, "path": [[1401.8154384487502, 2589.452305677753], [1415.065438443719, 2648.652305676791]], "source": 1320104005, "length": 13.404398910434603}, {"destination": 1320103661, "path": [[1401.8154384487502, 2589.452305677753], [1599.8154384462282, 2515.352305676899]], "source": 1320104005, "length": 41.103972468678776}, {"destination": 1316472150, "path": [[1401.8154384487502, 2589.452305677753], [1382.5654384476138, 2503.7523056781197]], "source": 1320104005, "length": 19.40727308134131}, {"destination": 1316623648, "path": [[2073.6154384479732, -1173.597694322126], [2238.4154384482713, -1203.697694322159]], "source": 1316623332, "length": 32.046298480290055}, {"destination": 1316623473, "path": [[2073.6154384479732, -1173.597694322126], [2047.6654384466997, -1270.8476943217306], [2019.3154384458012, -1362.647694323371]], "source": 1316623332, "length": 43.29882524910266}, {"destination": 481387485, "path": [[2073.6154384479732, -1173.597694322126], [2108.765438443072, -1042.047694323145]], "source": 1316623332, "length": 30.00920871090882}, {"destination": 1316623197, "path": [[2073.6154384479732, -1173.597694322126], [2010.4154384483763, -1157.847694322811], [1919.7654384441876, -1141.7976943217668]], "source": 1316623332, "length": 30.12284080779257}, {"destination": 479294061, "path": [[-2816.5345615533965, -3044.6476943222224], [-2643.984561551349, -3139.147694323441]], "source": 479294057, "length": 38.96529948168572}, {"destination": 1315785278, "path": [[-2816.5345615533965, -3044.6476943222224], [-2720.6345615553573, -2777.9976943218544]], "source": 479294057, "length": 62.0410856957753}, {"destination": 1404036994, "path": [[-895.8345615539542, 4911.602305677221], [-709.8345615546009, 4992.702305678165], [-561.7845615546457, 5009.302305676755]], "source": 476558313, "length": 68.10708052292037}, {"destination": 476559394, "path": [[-895.8345615539542, 4911.602305677221], [-691.1845615533707, 4763.852305677218], [-474.58456155169415, 4652.152305677504]], "source": 476558313, "length": 99.04263668838036}, {"destination": 1404037126, "path": [[-895.8345615539542, 4911.602305677221], [-1047.1845615569464, 5007.602305678205]], "source": 476558313, "length": 35.83859713940971}, {"destination": 476556645, "path": [[-895.8345615539542, 4911.602305677221], [-1065.734561557008, 4826.852305678031], [-1280.9845615535664, 4684.502305677185], [-1622.1845615547181, 4422.452305677282], [-1901.7845615536544, 4198.652305676731]], "source": 476558313, "length": 249.21392758637668}, {"destination": 1316623524, "path": [[1444.5154384432612, -1075.2476943221013], [1455.2154384475102, -1059.1976943228333], [1533.015438447194, -1086.6976943226803], [1530.0654384446943, -1107.49769432239], [1583.565438444623, -1112.1976943222478]], "source": 1316623339, "length": 35.006718243612966}, {"destination": 1316623486, "path": [[1444.5154384432612, -1075.2476943221013], [1283.4654384477062, -1045.847694323143]], "source": 1316623339, "length": 31.31675145975294}, {"destination": 1316623215, "path": [[1444.5154384432612, -1075.2476943221013], [1425.7154384438309, -1148.6476943218804], [1405.1654384488188, -1240.0476943223994]], "source": 1316623339, "length": 37.409330459180794}, {"destination": 1316623520, "path": [[2184.765438443037, -1350.4976943217173], [2184.765438443037, -1311.4976943224833], [2329.6154384482293, -1327.5476943217514], [2407.415438447913, -1327.5476943217514]], "source": 1316623342, "length": 51.244835200748774}, {"destination": 1316623473, "path": [[2184.765438443037, -1350.4976943217173], [2152.6154384474694, -1380.297694321797], [2085.5154384449293, -1377.9976943233407], [2019.3154384458012, -1362.647694323371]], "source": 1316623342, "length": 34.83037220203838}, {"destination": 1316623658, "path": [[2184.765438443037, -1350.4976943217173], [2281.3154384451195, -1394.0476943226088], [2402.015438448757, -1400.9476943233067]], "source": 1316623342, "length": 43.76290468407621}, {"destination": 1320103938, "path": [[2436.8654384474553, 2514.3523056776476], [2435.415438448274, 2417.002305676874]], "source": 1320104077, "length": 21.651523364705287}, {"destination": 1316623736, "path": [[2496.665438449952, -1117.3976943226194], [2329.015438448323, -1084.8476943223773]], "source": 1316623346, "length": 32.69295652326627}, {"destination": 1316623202, "path": [[2496.665438449952, -1117.3976943226194], [2479.8154384484405, -1194.4976943230045], [2458.165438447679, -1248.9476943233767]], "source": 1316623346, "length": 30.23270465241738}, {"destination": 1316623287, "path": [[2496.665438449952, -1117.3976943226194], [2569.765438444449, -1131.5976943233609], [2641.7654384474076, -1146.1976943234476]], "source": 1316623346, "length": 28.32741269135147}, {"destination": 882614840, "path": [[776.9154384433818, -2109.7976943220688], [512.465438447407, -2115.5476943217623]], "source": 476078931, "length": 50.30485128313407}, {"destination": 476078905, "path": [[776.9154384433818, -2109.7976943220688], [831.5654384460913, -1683.7976943229194]], "source": 476078931, "length": 95.30652142883385}, {"destination": 1316623455, "path": [[776.9154384433818, -2109.7976943220688], [773.3654384480815, -2231.3476943232045]], "source": 476078931, "length": 27.0399376733939}, {"destination": 1316623352, "path": [[213.36543844796552, -1155.3976943226019], [261.61543844693824, -1153.6976943222753]], "source": 1316623350, "length": 9.182764315919433}, {"destination": 1316623705, "path": [[213.36543844796552, -1155.3976943226019], [219.91543844990247, -1215.0476943233457], [216.61543844686548, -1280.997694323105], [188.7654384447046, -1371.5476943225724], [263.1154384431511, -1395.3476943218134]], "source": 1316623350, "length": 63.92417676539022}, {"destination": 1316623395, "path": [[213.36543844796552, -1155.3976943226019], [170.9654384498549, -1145.9476943223024]], "source": 1316623350, "length": 8.332713854102124}, {"destination": 4273376066, "path": [[261.61543844693824, -1153.6976943222753], [299.1654384487674, -1204.0976943232806], [320.2654384466541, -1206.7976943228587]], "source": 1316623352, "length": 17.347469299036796}, {"destination": 1316623350, "path": [[261.61543844693824, -1153.6976943222753], [213.36543844796552, -1155.3976943226019]], "source": 1316623352, "length": 9.182764315919433}, {"destination": 1316623439, "path": [[261.61543844693824, -1153.6976943222753], [267.1654384442945, -1090.7976943226317], [298.9654384464302, -1094.1976943232844], [308.5154384478983, -1000.497694322533]], "source": 1316623352, "length": 41.03845884173347}, {"destination": 477639369, "path": [[-5460.0845615553335, -6608.397694321866], [-5531.184561554881, -6827.147694322022]], "source": 477639508, "length": 50.491371841772946}, {"destination": 1887877284, "path": [[-5460.0845615553335, -6608.397694321866], [-5668.684561555892, -6566.697694323054]], "source": 477639508, "length": 40.73393866127102}, {"destination": 477639525, "path": [[-5460.0845615553335, -6608.397694321866], [-5361.134561553627, -6338.747694321966]], "source": 477639508, "length": 62.84983730780596}, {"destination": 477640277, "path": [[-5460.0845615553335, -6608.397694321866], [-5003.984561554375, -6671.647694322047]], "source": 477639508, "length": 87.85831862346022}, {"destination": 1316623404, "path": [[937.2154384479359, -1668.4976943217578], [943.915438448073, -1545.4476943226325]], "source": 1316623357, "length": 27.394918067592787}, {"destination": 1316623413, "path": [[937.2154384479359, -1668.4976943217578], [1047.3154384484928, -1657.4976943228849], [1289.765438443169, -1647.1976943233103]], "source": 1316623357, "length": 67.24219198396477}, {"destination": 5021317154, "path": [[-7341.534561554397, -3772.797694322705], [-7612.234561555908, -3648.547694321991]], "source": 3047854933, "length": 58.423021158917805}, {"destination": 1316623572, "path": [[2630.015438448652, -983.4976943228213], [2700.2154384447863, -1003.2476943226953]], "source": 1316623363, "length": 14.053650859451514}, {"destination": 1316623197, "path": [[1903.1654384491503, -1205.9976943223915], [1919.7654384441876, -1141.7976943217668]], "source": 1316623365, "length": 14.62252218724215}, {"destination": 1316623618, "path": [[1662.565438444119, -1353.3476943230482], [1680.5154384442744, -1277.097694321938], [1653.7154384437258, -1261.04769432267]], "source": 1316623368, "length": 23.51997435005869}, {"destination": 1316623373, "path": [[1662.565438444119, -1353.3476943230482], [1649.1154384468132, -1410.1976943230454]], "source": 1316623368, "length": 12.898997021525547}, {"destination": 1316623541, "path": [[1662.565438444119, -1353.3476943230482], [1581.2654384461666, -1338.9976943223303], [1390.115438447026, -1307.197694321971]], "source": 1316623368, "length": 52.81817906020498}, {"destination": 1316623433, "path": [[1533.015438447194, -816.0976943223375], [1645.665438445576, -825.2476943226839], [1664.4154384479748, -848.1976943226499], [1721.5654384443724, -857.4476943223885]], "source": 1316623371, "length": 38.807030316077885}, {"destination": 1316623499, "path": [[-1158.18456155381, -466.44769432191424], [-1399.4845615528106, -420.247694322029]], "source": 1316623372, "length": 47.02409839150625}, {"destination": 267198281, "path": [[-5073.984561555279, -5770.0976943220185], [-5332.234561556959, -5667.497694322065]], "source": 477639693, "length": 54.147911530036694}, {"destination": 477639734, "path": [[-5073.984561555279, -5770.0976943220185], [-5019.184561554368, -5791.647694323387]], "source": 477639693, "length": 11.469127506765552}, {"destination": 1314685711, "path": [[-5073.984561555279, -5770.0976943220185], [-5114.084561554932, -5805.597694322983], [-5150.684561556318, -5850.797694321841], [-5175.084561550137, -5891.647694323155], [-5194.384561555409, -5935.097694322877], [-5232.734561552377, -6048.897694322264]], "source": 477639693, "length": 70.07696159418198}, {"destination": 1316623297, "path": [[2718.4154384443104, -1315.697694321827], [2691.7154384449304, -1357.347694321831]], "source": 1316623375, "length": 10.562606790296838}, {"destination": 1316623202, "path": [[2718.4154384443104, -1315.697694321827], [2619.315438444403, -1286.2476943222846], [2525.4154384484195, -1263.3476943229027], [2458.165438447679, -1248.9476943233767]], "source": 1316623375, "length": 51.70363421316308}, {"destination": 1316623323, "path": [[2718.4154384443104, -1315.697694321827], [2737.3154384449094, -1286.2476943222846], [2785.9654384485566, -1175.4976943230133]], "source": 1316623375, "length": 33.7803629311845}, {"destination": 1316623385, "path": [[1015.31543844402, -1139.4976943233105], [1174.5154384499301, -1158.897694322647], [1203.115438443092, -1162.3976943226921], [1211.1154384442102, -1139.4976943233105], [1279.7154384429632, -1155.5976943231626]], "source": 1316623192, "length": 54.919243032705495}, {"destination": 1316623192, "path": [[1279.7154384429632, -1155.5976943231626], [1211.1154384442102, -1139.4976943233105], [1203.115438443092, -1162.3976943226921], [1174.5154384499301, -1158.897694322647], [1015.31543844402, -1139.4976943233105]], "source": 1316623385, "length": 54.919243032705495}, {"destination": 1316623722, "path": [[1279.7154384429632, -1155.5976943231626], [1277.0654384439695, -1107.447694321806]], "source": 1316623385, "length": 10.720560285392176}, {"destination": 1316623279, "path": [[1279.7154384429632, -1155.5976943231626], [1334.5154384438729, -1171.5976943218466]], "source": 1316623385, "length": 11.011691681560027}, {"destination": 1316623391, "path": [[1279.7154384429632, -1155.5976943231626], [1283.0654384430318, -1215.447694322691]], "source": 1316623385, "length": 13.325161054491096}, {"destination": 475978022, "path": [[2218.865438443629, -629.8976943224233], [2240.765438443759, -547.897694323396]], "source": 1316623387, "length": 18.705653155123528}, {"destination": 1316623701, "path": [[2218.865438443629, -629.8976943224233], [2193.8654384499046, -723.4476943231982]], "source": 1316623387, "length": 21.34084320896864}, {"destination": 1316623518, "path": [[2218.865438443629, -629.8976943224233], [2125.765438449889, -621.1476943231986], [2045.3154384441063, -625.6976943230796], [1948.7654384491293, -627.9976943233123]], "source": 1316623387, "length": 51.51203467682329}, {"destination": 1316623308, "path": [[2496.9654384463524, -412.8976943231777], [2586.515438444792, -401.04769432325327]], "source": 1316623389, "length": 17.232284654432714}, {"destination": 1316623726, "path": [[2496.9654384463524, -412.8976943231777], [2487.8654384465904, -632.5976943220013], [2476.5654384495406, -745.1976943233518]], "source": 1316623389, "length": 74.02314951086262}, {"destination": 1316623632, "path": [[1283.0654384430318, -1215.447694322691], [1192.3654384489168, -1205.9976943223915], [1192.3654384489168, -1224.3476943218923], [1015.31543844402, -1205.9976943223915]], "source": 1316623391, "length": 55.37263211578752}, {"destination": 1316623385, "path": [[1283.0654384430318, -1215.447694322691], [1279.7154384429632, -1155.5976943231626]], "source": 1316623391, "length": 13.325161054491096}, {"destination": 1316623310, "path": [[1283.0654384430318, -1215.447694322691], [1283.5654384488748, -1224.3476943218923], [1323.8154384467293, -1249.547694323283], [1304.565438445593, -1342.447694321791]], "source": 1316623391, "length": 32.45100981037038}, {"destination": 4273376072, "path": [[170.9654384498549, -1145.9476943223024], [122.06543844683893, -1138.647694322259], [105.46543844469625, -1252.1976943222767]], "source": 1316623395, "length": 34.88930092552006}, {"destination": 1316623411, "path": [[170.9654384498549, -1145.9476943223024], [190.51543844739172, -986.1976943223993]], "source": 1316623395, "length": 35.720710012234996}, {"destination": 1316623350, "path": [[170.9654384498549, -1145.9476943223024], [213.36543844796552, -1155.3976943226019]], "source": 1316623395, "length": 8.332713854102124}, {"destination": 1316623553, "path": [[2729.2654384467596, -937.6476943234735], [2866.565438445434, -978.4476943224263]], "source": 1316623398, "length": 27.641702723951784}, {"destination": 495771066, "path": [[6401.915438445371, -6136.347694322808], [6555.765438449157, -6123.697694322416]], "source": 1765485347, "length": 29.388918687311183}, {"destination": 1771400900, "path": [[6401.915438445371, -6136.347694322808], [6353.515438448198, -6142.647694321823]], "source": 1765485347, "length": 9.30948290240899}, {"destination": 848697997, "path": [[6401.915438445371, -6136.347694322808], [6374.415438443748, -6053.69769432329], [6350.815438445068, -5931.847694322201], [6340.9654384472, -5824.697694322367], [6341.815438446474, -5719.44769432342], [6354.7654384450425, -5606.7976943232625], [6464.415438443893, -5144.997694323194]], "source": 1765485347, "length": 223.8551973756825}, {"destination": 1316623357, "path": [[943.915438448073, -1545.4476943226325], [937.2154384479359, -1668.4976943217578]], "source": 1316623404, "length": 27.394918067592787}, {"destination": 973126787, "path": [[-8975.384561551891, -7052.447694322339], [-8905.384561550989, -6875.6476943221405], [-8792.834561553775, -6638.69769432246]], "source": 874296367, "length": 98.38543804460429}, {"destination": 1316236704, "path": [[-135.4345615567354, 3617.6523056781207], [-167.58456155230306, 3551.152305677263], [-194.9345615557263, 3517.002305677863]], "source": 1316236380, "length": 25.20833863630436}, {"destination": 1316237163, "path": [[-135.4345615567354, 3617.6523056781207], [-81.78456155150116, 3629.1523056775077], [65.01543844450453, 3591.902305677408]], "source": 1316236380, "length": 39.6411305579737}, {"destination": 1316236406, "path": [[-135.4345615567354, 3617.6523056781207], [-485.0345615565743, 3740.1023056773397]], "source": 1316236380, "length": 71.84962876385987}, {"destination": 1316236927, "path": [[-135.4345615567354, 3617.6523056781207], [-137.53456155285448, 3667.1523056774904], [-138.08456155572912, 3679.602305677321], [-107.83456155394333, 3750.5523056768907]], "source": 1316236380, "length": 30.58116744527263}, {"destination": 1316623602, "path": [[1927.2654384465682, -1481.1976943231998], [1900.4654384460196, -1540.8476943221672], [1782.465438445513, -1524.7976943228991], [1766.3654384492133, -1572.9476943224795], [1830.7154384444857, -1577.547694322945], [1826.3654384469419, -1630.397694322383]], "source": 1316623410, "length": 72.1323648074578}, {"destination": 1316623283, "path": [[1927.2654384465682, -1481.1976943231998], [1945.115438445555, -1431.0976943221476]], "source": 1316623410, "length": 11.646917768346444}, {"destination": 1316623714, "path": [[1927.2654384465682, -1481.1976943231998], [1736.865438445534, -1442.2476943227734]], "source": 1316623410, "length": 37.22921747172034}, {"destination": 1316623322, "path": [[190.51543844739172, -986.1976943223993], [197.4154384498661, -928.4476943225428]], "source": 1316623411, "length": 12.909822577614882}, {"destination": 1316623395, "path": [[190.51543844739172, -986.1976943223993], [170.9654384498549, -1145.9476943223024]], "source": 1316623411, "length": 35.720710012234996}, {"destination": 1316623439, "path": [[190.51543844739172, -986.1976943223993], [308.5154384478983, -1000.497694322533]], "source": 1316623411, "length": 22.663933134661043}, {"destination": 1316198765, "path": [[-1906.9845615504732, 777.1023056779569], [-1932.8845615547152, 719.4523056774926], [-2061.1845615547963, 780.3023056780489], [-2112.1845615539314, 743.6023056772711], [-2313.334561556246, 800.9523056777823], [-2340.134561556795, 780.3023056780489], [-2457.784561556764, 851.6023056781563]], "source": 1316196995, "length": 128.91809731833396}, {"destination": 1316192118, "path": [[-1906.9845615504732, 777.1023056779569], [-1865.384561554606, 869.7523056770962]], "source": 1316196995, "length": 22.07080355520527}, {"destination": 1316196999, "path": [[-1906.9845615504732, 777.1023056779569], [-1948.5345615564142, 805.5023056776633], [-1994.1345615563932, 830.7523056778621], [-2138.98456155448, 883.5023056779079]], "source": 1316196995, "length": 50.38747811387127}, {"destination": 477640296, "path": [[-5019.184561554368, -5791.647694323387], [-4763.934561552219, -5880.547694323112]], "source": 477639734, "length": 52.407368148298865}, {"destination": 477639693, "path": [[-5019.184561554368, -5791.647694323387], [-5073.984561555279, -5770.0976943220185]], "source": 477639734, "length": 11.469127506765552}, {"destination": 477639727, "path": [[-5019.184561554368, -5791.647694323387], [-4843.034561552884, -5475.197694321921]], "source": 477639734, "length": 77.93961920425176}, {"destination": 1316623640, "path": [[-1122.2345615564677, -297.7476943222257], [-1318.834561551796, -250.847694323042]], "source": 1316623417, "length": 38.815126658299505}, {"destination": 1316623442, "path": [[2646.1154384449515, -898.647694322463], [2686.3654384499114, -593.5976943227672], [2692.5654384442055, -381.1476943234027]], "source": 1316623419, "length": 115.5319719288369}, {"destination": 1324294324, "path": [[2619.36543844854, 5039.852305676717], [2627.165438447321, 5169.752305677733]], "source": 1324294376, "length": 28.926500561056006}, {"destination": 1324294326, "path": [[2619.36543844854, 5039.852305676717], [2745.465438444228, 5028.35230567733]], "source": 1324294376, "length": 24.119205518991375}, {"destination": 1324294686, "path": [[2619.36543844854, 5039.852305676717], [2584.5154384498414, 5032.952305677796], [2579.2654384488856, 4941.052305676763]], "source": 1324294376, "length": 27.26568690834098}, {"destination": 475975640, "path": [[-843.9345615514071, -1449.3976943228404], [-798.0345615550277, -1207.5976943233259]], "source": 1316623423, "length": 54.47780247448462}, {"destination": 1316623573, "path": [[-843.9345615514071, -1449.3976943228404], [-1004.2345615559611, -1423.8976943232728], [-1055.1845615509592, -1394.0476943226088], [-1210.7845615503265, -1366.5476943227618]], "source": 1316623423, "length": 72.96715327185662}, {"destination": 1316623305, "path": [[1952.7654384461357, -1014.1476943221761], [1860.1154384469964, -997.5476943218098]], "source": 1316623425, "length": 18.001970942883805}, {"destination": 481387485, "path": [[1952.7654384461357, -1014.1476943221761], [2108.765438443072, -1042.047694323145]], "source": 1316623425, "length": 30.30805305495619}, {"destination": 1316623197, "path": [[1952.7654384461357, -1014.1476943221761], [1919.7654384441876, -1141.7976943217668]], "source": 1316623425, "length": 29.0736563911452}, {"destination": 1316237129, "path": [[-2881.984561554418, 1108.3023056777108], [-2766.8345615552425, 1052.8023056775028]], "source": 1316236811, "length": 25.137640400609396}, {"destination": 773662896, "path": [[999.3654384459205, -915.0976943228528], [1013.7654384436701, -846.147694321786]], "source": 1316623429, "length": 15.576355806628825}, {"destination": 1316623275, "path": [[999.3654384459205, -915.0976943228528], [978.815438443803, -1013.4476943228776]], "source": 1316623429, "length": 22.218339347564733}, {"destination": 1316623638, "path": [[999.3654384459205, -915.0976943228528], [1087.7654384486846, -944.4976943218109], [1109.2154384471087, -962.8476943230879], [1189.665438445786, -976.6476943227076], [1216.5154384433663, -955.9976943229742], [1299.6154384481429, -976.5976943221233]], "source": 1316623429, "length": 62.73142054342149}, {"destination": 1316623506, "path": [[2463.7154384450355, -873.3976943222643], [2469.1654384483286, -818.9976943224764]], "source": 1316623430, "length": 12.14246072817801}, {"destination": 475975536, "path": [[-184.28456155561435, -2064.247694322674], [-204.6845615524262, -1859.3476943227215], [-207.08456155205113, -1701.1976943219765]], "source": 1316623432, "length": 80.90637813477869}, {"destination": 1316623285, "path": [[-184.28456155561435, -2064.247694322674], [-1068.5845615512335, -2075.2476943233232], [-1097.1845615515008, -1719.7976943226222]], "source": 1316623432, "length": 247.4144030188096}, {"destination": 481385214, "path": [[-184.28456155561435, -2064.247694322674], [-172.98456155145914, -2138.3476943217515]], "source": 1316623432, "length": 16.618853452033616}, {"destination": 1316623488, "path": [[1721.5654384443724, -857.4476943223885], [1741.2154384430778, -732.3476943223994]], "source": 1316623433, "length": 28.07072329047322}, {"destination": 1316623371, "path": [[1721.5654384443724, -857.4476943223885], [1664.4154384479748, -848.1976943226499], [1645.665438445576, -825.2476943226839], [1533.015438447194, -816.0976943223375]], "source": 1316623433, "length": 38.807030316077885}, {"destination": 773662836, "path": [[1721.5654384443724, -857.4476943223885], [1703.9654384447545, -969.597694322033]], "source": 1316623433, "length": 25.164516195426536}, {"destination": 2367475224, "path": [[2022.2654384483008, -2095.897694323057], [1872.8654384432275, -1978.2476943230877], [1850.4654384443597, -1965.6476943232803]], "source": 773662903, "length": 43.72104619107482}, {"destination": 1316236424, "path": [[-1042.9345615534658, 3743.502305677993], [-1082.9845615560885, 3664.0023056779823]], "source": 481498188, "length": 19.250602320048188}, {"destination": 1316236428, "path": [[-1042.9345615534658, 3743.502305677993], [-750.8345615505618, 3593.4023056771734], [-730.884561555456, 3583.4523056781363]], "source": 481498188, "length": 69.20259546175984}, {"destination": 1316471964, "path": [[-1042.9345615534658, 3743.502305677993], [-657.4845615503477, 4328.3523056771855], [-554.4845615546024, 4475.152305676744], [-527.4345615546849, 4529.3023056771635]], "source": 481498188, "length": 200.46929482685889}, {"destination": 1316472038, "path": [[-1042.9345615534658, 3743.502305677993], [-1230.4345615561374, 3834.302305676829], [-1433.484561552234, 3944.152305678017]], "source": 481498188, "length": 86.67624506899642}, {"destination": 477444686, "path": [[1164.5654384437876, 5928.452305678178], [1151.1654384435133, 5844.152305677142]], "source": 476553960, "length": 18.919562189520626}, {"destination": 623414118, "path": [[1164.5654384437876, 5928.452305678178], [1502.5154384460393, 5919.402305677224]], "source": 476553960, "length": 64.30801717337138}, {"destination": 3047470160, "path": [[-4597.184561554002, 8540.402305676764], [-4679.884561554104, 8423.952305676608]], "source": 3047470158, "length": 30.300171698524576}, {"destination": 3421417540, "path": [[-4597.184561554002, 8540.402305676764], [-4535.934561552323, 8635.702305676674], [-4577.084561553591, 8672.302305678058], [-4429.58456155651, 8874.202305676703], [-4330.734561555972, 9019.952305678202], [-4379.9345615553875, 9040.502305676768]], "source": 3047470158, "length": 136.3078189617999}, {"destination": 3047470159, "path": [[-4597.184561554002, 8540.402305676764], [-4705.784561551241, 8601.202305676736]], "source": 3047470158, "length": 24.688323718544595}, {"destination": 1316623352, "path": [[308.5154384478983, -1000.497694322533], [298.9654384464302, -1094.1976943232844], [267.1654384442945, -1090.7976943226317], [261.61543844693824, -1153.6976943222753]], "source": 1316623439, "length": 41.03845884173347}, {"destination": 1316623411, "path": [[308.5154384478983, -1000.497694322533], [190.51543844739172, -986.1976943223993]], "source": 1316623439, "length": 22.663933134661043}, {"destination": 3485520292, "path": [[308.5154384478983, -1000.497694322533], [334.9154384437725, -1004.7476943224609], [347.2154384454029, -1006.7476943227405], [370.61543844885136, -1010.4976943221544], [363.9654384457458, -1040.5976943221872], [390.1654384463882, -1044.8476943221153], [384.5654384448949, -1070.2976943228748], [409.6154384498618, -1074.3476943222418], [404.51543844710613, -1097.497694322769], [425.66543844912985, -1100.8976943234215], [421.86543844735525, -1118.2476943218944], [469.36543844822154, -1125.8976943224752]], "source": 1316623439, "length": 56.95739815033072}, {"destination": 622622441, "path": [[-4679.884561554104, 8423.952305676608], [-4811.584561551285, 8506.65230567671], [-4925.5345615506485, 8564.25230567659], [-5042.434561552511, 8606.352305676523], [-5153.43456155648, 8631.352305677354], [-5242.3845615550135, 8641.802305676905]], "source": 3047470160, "length": 119.28929237519623}, {"destination": 3047470158, "path": [[-4679.884561554104, 8423.952305676608], [-4597.184561554002, 8540.402305676764]], "source": 3047470160, "length": 30.300171698524576}, {"destination": 601712455, "path": [[-4679.884561554104, 8423.952305676608], [-3800.5845615529665, 7871.652305677657]], "source": 3047470160, "length": 207.50336023653838}, {"destination": 1317671003, "path": [[2692.5654384442055, -381.1476943234027], [2820.2654384443804, -382.7476943225605]], "source": 1316623442, "length": 24.28733364767205}, {"destination": 1316623419, "path": [[2692.5654384442055, -381.1476943234027], [2686.3654384499114, -593.5976943227672], [2646.1154384449515, -898.647694322463]], "source": 1316623442, "length": 115.5319719288369}, {"destination": 63301576, "path": [[11225.315438444739, -4606.897694323208], [11383.4154384449, -4373.447694321797]], "source": 3662230614, "length": 59.993109085282995}, {"destination": 1780414633, "path": [[11225.315438444739, -4606.897694323208], [11075.565438446232, -4650.797694322861]], "source": 3662230614, "length": 30.102766565273658}, {"destination": 1780414604, "path": [[11225.315438444739, -4606.897694323208], [11413.515438448485, -4554.497694321924]], "source": 3662230614, "length": 37.63636150852158}, {"destination": 4867879881, "path": [[3548.215438449631, -8388.797694323102], [3504.0654384488334, -8359.647694321737], [3478.565438449266, -8327.5476943232], [3340.415438444211, -8231.247694322263], [3166.06543844955, -8129.197694323409], [3034.6654384487692, -8027.147694322778], [2959.565438445111, -7929.697694322613], [2849.5654384457225, -7873.497694323106], [2656.465438448663, -7739.347694322163], [2531.5154384486505, -7614.247694322174], [2453.9654384483356, -7539.847694323143], [2411.065438444382, -7504.29769432337], [2404.315438447213, -7456.097694323205], [2346.6654384449726, -7295.597694323419], [2337.065438446473, -7254.747694322105]], "source": 4867880024, "length": 352.19092822643654}, {"destination": 1765493085, "path": [[3548.215438449631, -8388.797694323102], [3540.815438448419, -8419.54769432185]], "source": 4867880024, "length": 6.9808212251125665}, {"destination": 1765493273, "path": [[3548.215438449631, -8388.797694323102], [3570.165438446793, -8297.79769432193]], "source": 4867880024, "length": 20.663237107226504}, {"destination": 1316623591, "path": [[1862.9154384441904, -827.5476943229165], [2013.1154384444017, -855.0476943227636], [2007.7654384493826, -907.8476943233937], [2138.2654384467514, -931.5476943232426]], "source": 1316623454, "length": 66.36752185308724}, {"destination": 479294074, "path": [[-2643.984561551349, -3139.147694323441], [-2530.5345615507235, -3229.747694321716]], "source": 479294061, "length": 29.519118892163615}, {"destination": 479283989, "path": [[-2643.984561551349, -3139.147694323441], [-2458.38456155667, -2662.59769432331]], "source": 479294061, "length": 111.70233810576164}, {"destination": 76482739, "path": [[-3193.2845615543215, 4207.852305677662], [-3233.834561555682, 4135.152305677181], [-3506.1845615516063, 3554.552305677916]], "source": 95679584, "length": 157.03472756995632}, {"destination": 3356046288, "path": [[2370.8154384465274, 1331.1523056778185], [2584.115438445167, 1342.0523056772993], [2725.915438446691, 1380.852305677749], [2773.5654384457575, 1398.1523056774136], [3283.315438444845, 1581.4023056766046], [3838.965438447417, 1718.1023056771494], [4110.015438449465, 1752.6023056770869], [4197.815438445218, 1746.8023056768088], [4619.815438445585, 1647.0523056781872], [5089.715438444387, 1476.602305677588], [5411.61543844737, 1335.052305677209], [6027.115438449471, 1079.7523056780278], [6151.815438443009, 1026.6523056774445], [6339.915438445587, 967.2523056778459]], "source": 76482747, "length": 806.6727648878335}, {"destination": 1316472081, "path": [[2370.8154384465274, 1331.1523056778185], [2535.265438446288, 1372.0523056779398]], "source": 76482747, "length": 32.57046375424183}, {"destination": 477640296, "path": [[-4701.334561552529, -5903.147694322542], [-4763.934561552219, -5880.547694323112]], "source": 1729306039, "length": 12.920639063516361}, {"destination": 267198280, "path": [[-4701.334561552529, -5903.147694322542], [-4240.58456155052, -6064.897694322724]], "source": 1729306039, "length": 94.70759846000104}, {"destination": 1729306105, "path": [[-4701.334561552529, -5903.147694322542], [-4567.6845615503225, -5638.047694322523], [-4545.43456155676, -5596.647694321888]], "source": 1729306039, "length": 74.33243353856723}, {"destination": 93246696, "path": [[-9110.334561555079, 329.80230567680735], [-8979.084561552498, 560.602305677449], [-8847.384561555316, 821.7023056769079], [-8837.534561550343, 841.2523056779975], [-8825.534561552216, 862.9523056775668]], "source": 479302758, "length": 130.385104100923}, {"destination": 479305781, "path": [[-9110.334561555079, 329.80230567680735], [-9035.184561554388, 280.1523056774613], [-8857.134561552015, 208.8523056773539]], "source": 479302758, "length": 55.44908935871795}, {"destination": 479291272, "path": [[-3875.634561552488, -1146.5476943222086], [-3780.034561550849, -952.997694323443]], "source": 479286375, "length": 46.72540270519859}, {"destination": 1315785561, "path": [[-3875.634561552488, -1146.5476943222086], [-3669.0345615539854, -1233.6976943227996]], "source": 479286375, "length": 43.80876751189734}, {"destination": 479288912, "path": [[-3875.634561552488, -1146.5476943222086], [-4222.884561556839, -1018.5476943220806]], "source": 479286375, "length": 71.90968888018594}, {"destination": 1316623488, "path": [[1562.5154384437678, -701.3976943230915], [1741.2154384430778, -732.3476943223994]], "source": 1316623465, "length": 34.67314401189342}, {"destination": 1316623305, "path": [[1820.0154384473421, -1185.3476943226583], [1860.1154384469964, -997.5476943218098]], "source": 1316623467, "length": 42.45546063922645}, {"destination": 495635912, "path": [[4896.865438446695, -5759.647694322467], [4879.415438445278, -5988.897694322759]], "source": 495637616, "length": 51.09078856957802}, {"destination": 602360653, "path": [[4896.865438446695, -5759.647694322467], [4846.765438443867, -5742.797694322732]], "source": 495637616, "length": 10.237191864593584}, {"destination": 475978025, "path": [[2019.3154384458012, -1362.647694323371], [1936.2654384451616, -1631.7976943227563]], "source": 1316623473, "length": 61.90474484089346}, {"destination": 1316623332, "path": [[2019.3154384458012, -1362.647694323371], [2047.6654384466997, -1270.8476943217306], [2073.6154384479732, -1173.597694322126]], "source": 1316623473, "length": 43.29882524910266}, {"destination": 1316623342, "path": [[2019.3154384458012, -1362.647694323371], [2085.5154384449293, -1377.9976943233407], [2152.6154384474694, -1380.297694321797], [2184.765438443037, -1350.4976943217173]], "source": 1316623473, "length": 34.83037220203838}, {"destination": 1316623193, "path": [[-609.1345615502064, -345.04769432253113], [-603.884561556356, -321.6476943226354]], "source": 1316623476, "length": 5.297703344344098}, {"destination": 1316623226, "path": [[-609.1345615502064, -345.04769432253113], [-524.134561551648, -368.8476943217722], [-459.7345615522386, -373.3976943234296], [-389.9845615507047, -410.09769432243104], [-285.3845615504724, -426.14769432347543], [-156.6345615557907, -472.04769432340754]], "source": 1316623476, "length": 91.60814077126341}, {"destination": 1316623251, "path": [[-673.5345615567212, -631.3976943221888], [-650.3845615526416, -528.447694323475]], "source": 1316623482, "length": 23.31471958929411}, {"destination": 1316623692, "path": [[-673.5345615567212, -631.3976943221888], [-483.88456155379345, -671.5976943230118], [-341.734561551732, -712.8476943218942], [-226.38456155021913, -747.2476943224393]], "source": 1316623482, "length": 88.93550671729496}, {"destination": 1316623553, "path": [[2849.9654384432915, -1045.4476943220216], [2866.565438445434, -978.4476943224263]], "source": 1316623484, "length": 15.230850885208115}, {"destination": 1316623323, "path": [[2849.9654384432915, -1045.4476943220216], [2785.9654384485566, -1175.4976943230133]], "source": 1316623484, "length": 31.37842229700234}, {"destination": 1316623572, "path": [[2849.9654384432915, -1045.4476943220216], [2700.2154384447863, -1003.2476943226953]], "source": 1316623484, "length": 29.984120472324488}, {"destination": 1891590912, "path": [[-6632.734561556219, -2026.897694323182], [-6647.834561555044, -2067.3476943233736]], "source": 3355899006, "length": 9.443093380429486}, {"destination": 1890502816, "path": [[-6632.734561556219, -2026.897694323182], [-6857.484561550109, -1911.8476943233986], [-6992.534561554465, -1830.2476943219403], [-7149.534561555982, -1711.6976943221118], [-7322.934561550199, -1569.6976943218033]], "source": 3355899006, "length": 166.74613170383162}, {"destination": 1890531945, "path": [[-6366.084561555852, -2224.2976943225303], [-6255.484561556557, -2275.5976943233945], [-6240.684561554133, -2269.097694322042], [-6226.184561555215, -2266.0476943219264], [-6209.184561555503, -2263.297694321764]], "source": 3355899007, "length": 33.21844597480751}, {"destination": 1890502898, "path": [[-6366.084561555852, -2224.2976943225303], [-6459.084561555528, -2377.047694322343], [-6752.3345615541075, -2798.097694322266], [-6858.3345615564895, -2942.7976943221524]], "source": 3355899007, "length": 185.25418535170084}, {"destination": 1890502796, "path": [[-6225.48456155414, -1990.2976943217964], [-6235.934561551914, -2013.847694323445]], "source": 3355899009, "length": 5.601994972298609}, {"destination": 1890531918, "path": [[-6225.48456155414, -1990.2976943217964], [-6084.734561554228, -2066.547694322907]], "source": 3355899009, "length": 31.68511823980867}, {"destination": 1890531918, "path": [[-6021.434561553462, -2155.8976943225616], [-5991.934561556889, -2118.7976943224385], [-6084.734561554228, -2066.547694322907]], "source": 3355899010, "length": 31.105859005321904}, {"destination": 477618430, "path": [[-6021.434561553462, -2155.8976943225616], [-5963.4345615506845, -2187.447694321776], [-5904.13456155403, -2219.7476943226493], [-5720.334561551965, -2316.1476943229786]], "source": 3355899010, "length": 67.44441459727172}, {"destination": 1469016684, "path": [[-6204.484561550316, -1831.8476943228745], [-6281.8845615524315, -1799.3476943232167], [-6398.884561555462, -1820.0976943223422], [-6387.784561553644, -1854.397694321719], [-6379.784561552526, -1883.0476943225704], [-6379.484561556126, -1912.3476943221362], [-6378.134561551007, -1927.2976943227604], [-6380.834561554138, -1950.197694322142], [-6394.234561554413, -1983.447694323459], [-6406.984561550644, -2008.847694321858]], "source": 3355899011, "length": 82.52334268700788}, {"destination": 601663340, "path": [[-6204.484561550316, -1831.8476943228745], [-6044.884561553943, -1579.3976943232478], [-5982.7845615529895, -1511.1976943220639]], "source": 3355899011, "length": 83.04316127458296}, {"destination": 1891591009, "path": [[-6497.384561555464, -2313.0976943228634], [-6560.934561555598, -2287.197694322174]], "source": 3355899012, "length": 13.386905836090571}, {"destination": 601145306, "path": [[-6497.384561555464, -2313.0976943228634], [-6360.884561551928, -2112.397694322254]], "source": 3355899012, "length": 51.632657648290476}, {"destination": 475975057, "path": [[-96.93456155446256, -307.4976943224783], [-178.68456155412105, -283.24769432330754], [-566.7345615520958, -150.1476943222002]], "source": 1316623495, "length": 95.96592663076785}, {"destination": 1316623226, "path": [[-96.93456155446256, -307.4976943224783], [-156.6345615557907, -472.04769432340754]], "source": 1316623495, "length": 38.31488657891824}, {"destination": 476553848, "path": [[862.2154384454461, 4659.602305677524], [784.1654384463936, 4682.902305678027]], "source": 476553962, "length": 15.722924122848383}, {"destination": 476559329, "path": [[862.2154384454461, 4659.602305677524], [814.065438447642, 4453.752305677128], [775.365438443032, 4293.2023056767575], [761.3654384499569, 4279.202305676577]], "source": 476553962, "length": 87.23803940803589}, {"destination": 476555419, "path": [[862.2154384454461, 4659.602305677524], [1125.465438448714, 4634.8523056778395], [1293.3654384497117, 4627.402305677819], [1422.1154384443935, 4627.75230567658], [1775.965438447713, 4666.402305677053], [2274.465438446782, 4718.102305677263]], "source": 476553962, "length": 270.18207873152824}, {"destination": 1316236929, "path": [[-79.93456155475087, 3335.952305677736], [-123.48456155564236, 3273.202305678069]], "source": 1316236383, "length": 16.228128469446812}, {"destination": 1316237005, "path": [[-79.93456155475087, 3335.952305677736], [-51.58456155385238, 3376.9023056766655]], "source": 1316236383, "length": 10.583065413530955}, {"destination": 1316237135, "path": [[-79.93456155475087, 3335.952305677736], [215.96543844992766, 3207.052305677749]], "source": 1316236383, "length": 63.15604146526709}, {"destination": 599407018, "path": [[-1399.4845615528106, -420.247694322029], [-1465.184561553201, -550.3976943224131]], "source": 1316623499, "length": 31.525425504748483}, {"destination": 1316623372, "path": [[-1399.4845615528106, -420.247694322029], [-1158.18456155381, -466.44769432191424]], "source": 1316623499, "length": 47.02409839150625}, {"destination": 1316197001, "path": [[-2364.4845615535814, 698.7023056765906], [-2443.8845615506466, 734.1523056769717], [-2529.7345615555855, 772.4523056769073]], "source": 481391756, "length": 35.448504427038}, {"destination": 4955392148, "path": [[-2364.4845615535814, 698.7023056765906], [-2400.4345615509237, 638.2023056765718], [-2462.034561553139, 534.9523056779049], [-2496.9345615559746, 476.45230567816554], [-2535.634561553479, 411.60230567705014], [-2558.634561552253, 373.0023056771614], [-2568.3345615519215, 341.2023056768021], [-2584.3845615511896, 288.60230567673284]], "source": 481391756, "length": 100.69833427955318}, {"destination": 475976301, "path": [[-2364.4845615535814, 698.7023056765906], [-2253.9345615513184, 662.9023056774486], [-2180.9845615550216, 626.2023056766708], [-2142.3345615545486, 571.1523056781687], [-2142.3345615545486, 505.1023056772408], [-2150.5345615508986, 452.55230567775584], [-2159.5345615565975, 395.0023056766838], [-2116.5845615556123, 332.6523056781383], [-2074.7845615503024, 306.30230567751937], [-2012.1345615535802, 266.8023056777713], [-1957.5845615520393, 224.0523056773469], [-1857.6345615528567, 145.70230567656495]], "source": 481391756, "length": 172.87647108248822}, {"destination": 1316623736, "path": [[2271.415438443114, -1073.6476943229434], [2329.015438448323, -1084.8476943223773]], "source": 1316623505, "length": 11.2329118081482}, {"destination": 1316623648, "path": [[2271.415438443114, -1073.6476943229434], [2238.4154384482713, -1203.697694322159]], "source": 1316623505, "length": 29.59489331105432}, {"destination": 481387485, "path": [[2271.415438443114, -1073.6476943229434], [2108.765438443072, -1042.047694323145]], "source": 1316623505, "length": 31.719091440923265}, {"destination": 1316623490, "path": [[2469.1654384483286, -818.9976943224764], [2329.6154384482293, -788.5476943219061], [2281.3154384451195, -838.9976943217192], [2168.8654384490746, -817.0976943233654]], "source": 1316623506, "length": 63.81976557990729}, {"destination": 1316623726, "path": [[2469.1654384483286, -818.9976943224764], [2476.5654384495406, -745.1976943233518]], "source": 1316623506, "length": 16.4725969624295}, {"destination": 1316623430, "path": [[2469.1654384483286, -818.9976943224764], [2463.7154384450355, -873.3976943222643]], "source": 1316623506, "length": 12.14246072817801}, {"destination": 1316623570, "path": [[1543.4654384449686, -596.0476943229764], [1503.5154384435145, -733.497694323404]], "source": 1316623507, "length": 31.497396034399166}, {"destination": 773662878, "path": [[1543.4654384449686, -596.0476943229764], [1097.4654384483529, -462.6976943225003]], "source": 1316623507, "length": 89.85055624345036}, {"destination": 1316623659, "path": [[1633.1154384445767, -1478.0976943225], [1557.1654384487488, -1462.8476943219225], [1361.3654384485585, -1435.3476943220755], [1376.8154384479203, -1366.3976943227851]], "source": 1316623189, "length": 68.18229912392842}, {"destination": 1316623373, "path": [[1633.1154384445767, -1478.0976943225], [1649.1154384468132, -1410.1976943230454]], "source": 1316623189, "length": 15.40354812613476}, {"destination": 1316623587, "path": [[1633.1154384445767, -1478.0976943225], [1616.165438449002, -1549.9976943225136], [1382.0154384447392, -1508.9476943224156], [1356.6654384433718, -1644.3976943225634]], "source": 1316623189, "length": 92.27048063817816}, {"destination": 1316623695, "path": [[304.6654384490921, -657.7976943233921], [250.11543844755124, -649.0976943229754]], "source": 1316623512, "length": 10.552362604464449}, {"destination": 1883305092, "path": [[-888.234561550405, -8392.5976943231], [-734.6845615501252, -8393.647694322937]], "source": 1883305117, "length": 29.19646568582671}, {"destination": 1883305119, "path": [[-888.234561550405, -8392.5976943231], [-970.7345615552754, -8392.497694321932], [-981.484561556556, -8391.347694322703], [-988.1845615566931, -8386.74769432224], [-992.1845615536995, -8381.04769432313], [-989.5345615547058, -8259.497694321994], [-986.834561551575, -8243.447694322726], [-982.7845615504316, -8231.947694323339], [-976.0845615502944, -8220.49769432276], [-968.0345615521446, -8212.447694322833], [-950.6345615548639, -8200.997694322254], [-943.4345615559891, -8194.797694322631], [-935.884561556577, -8186.097694322214]], "source": 1883305117, "length": 67.89639955838895}, {"destination": 1316623387, "path": [[1948.7654384491293, -627.9976943233123], [2045.3154384441063, -625.6976943230796], [2125.765438449889, -621.1476943231986], [2218.865438443629, -629.8976943224233]], "source": 1316623518, "length": 51.51203467682329}, {"destination": 1883305117, "path": [[-935.884561556577, -8186.097694322214], [-930.4845615503154, -8195.297694323144], [-910.3845615570094, -8211.347694322412], [-895.634561551617, -8227.397694323457], [-891.6345615546106, -8239.997694323265], [-887.5845615534672, -8264.047694321875], [-888.234561550405, -8392.5976943231]], "source": 1883305119, "length": 48.95223769744166}, {"destination": 1883305150, "path": [[-935.884561556577, -8186.097694322214], [-938.5845615526023, -8110.647694323347]], "source": 1883305119, "length": 16.7869361335642}, {"destination": 1316623297, "path": [[2407.415438447913, -1327.5476943217514], [2461.0654384460418, -1306.8976943220177], [2506.6654384460207, -1302.2976943233289], [2691.7154384449304, -1357.347694321831]], "source": 1316623520, "length": 57.179673542738556}, {"destination": 1316623342, "path": [[2407.415438447913, -1327.5476943217514], [2329.6154384482293, -1327.5476943217514], [2184.765438443037, -1311.4976943224833], [2184.765438443037, -1350.4976943217173]], "source": 1316623520, "length": 51.244835200748774}, {"destination": 1316623734, "path": [[2407.415438447913, -1327.5476943217514], [2412.7654384500374, -1348.197694323261], [2466.4154384481662, -1355.0476943233748], [2469.1154384441916, -1403.247694321763], [2512.0154384481452, -1414.6976943223422], [2533.715438445938, -1471.447694322947]], "source": 1316623520, "length": 47.5744306976442}, {"destination": 1316623421, "path": [[1152.115438443957, -761.047694322059], [1037.6154384488245, -735.4976943219071]], "source": 1316623521, "length": 22.503502509086957}, {"destination": 476680920, "path": [[-7838.034561551411, -3987.347694321741], [-7909.7845615549995, -3957.6976943234145]], "source": 1990174510, "length": 15.153431773781737}, {"destination": 5021317130, "path": [[-7838.034561551411, -3987.347694321741], [-7651.584561550351, -3708.8476943232254]], "source": 1990174510, "length": 71.36562336937939}, {"destination": 5021317228, "path": [[-7838.034561551411, -3987.347694321741], [-7743.68456155372, -4027.347694322003]], "source": 1990174510, "length": 20.025076144028784}, {"destination": 1990203575, "path": [[-7838.034561551411, -3987.347694321741], [-7904.084561552338, -4084.64769432193]], "source": 1990174510, "length": 25.019584272828883}, {"destination": 1316623618, "path": [[1583.565438444623, -1112.1976943222478], [1581.2654384461666, -1127.997694322147], [1598.765438444616, -1130.2476943217953], [1634.9154384442954, -1134.897694322845], [1632.2654384453017, -1212.8476943225053], [1656.365438449825, -1240.3976943229368], [1653.7154384437258, -1261.04769432267]], "source": 1316623524, "length": 43.47126601824409}, {"destination": 1316623595, "path": [[1583.565438444623, -1112.1976943222478], [1606.7654384457342, -952.197694322976]], "source": 1316623524, "length": 35.85493969643754}, {"destination": 1316623339, "path": [[1583.565438444623, -1112.1976943222478], [1530.0654384446943, -1107.49769432239], [1533.015438447194, -1086.6976943226803], [1455.2154384475102, -1059.1976943228333], [1444.5154384432612, -1075.2476943221013]], "source": 1316623524, "length": 35.006718243612966}, {"destination": 1316237161, "path": [[-765.0345615530796, 1432.7523056767432], [-722.1845615532629, 1596.5023056772054]], "source": 639309882, "length": 37.317112600257275}, {"destination": 3356022890, "path": [[-765.0345615530796, 1432.7523056767432], [-640.2345615512672, 1411.252305677735]], "source": 639309882, "length": 24.210954981351268}, {"destination": 3113807393, "path": [[-6664.884561551788, 646.1023056765214], [-6608.884561551065, 655.5523056768209], [-6544.534561555793, 692.2523056775987], [-6496.234561552683, 739.252305677951], [-6451.9845615507165, 804.652305676612], [-6446.6345615556975, 879.1523056768114], [-6461.384561553985, 956.0023056778277], [-6484.184561550421, 1015.6523056767952], [-6537.784561551518, 1060.352305676915], [-6569.384561551316, 1085.2523056765763]], "source": 3113807388, "length": 126.56721966414375}, {"destination": 3113807394, "path": [[-6664.884561551788, 646.1023056765214], [-6697.384561554998, 640.652305676781], [-6708.134561556279, 582.1523056770417], [-6687.284561550655, 542.0523056773874]], "source": 3113807388, "length": 29.227994784546183}, {"destination": 3113807389, "path": [[-6664.884561551788, 646.1023056765214], [-6689.334561556848, 731.2523056768327], [-6730.9345615527145, 813.8023056769583], [-6773.834561556669, 880.3023056778159], [-6808.784561556536, 922.7023056777028]], "source": 3113807388, "length": 67.91526374458863}, {"destination": 1316623307, "path": [[1170.9154384433873, -1536.2476943234783], [1270.1654384486005, -1508.7476943218549]], "source": 1316623533, "length": 19.839915412478373}, {"destination": 1315785384, "path": [[-4360.684561554252, -1705.347694322512], [-4284.484561551949, -1617.547694323207]], "source": 479286446, "length": 24.3153346448109}, {"destination": 479288842, "path": [[-4360.684561554252, -1705.347694322512], [-4658.8845615502805, -1549.6976943225604]], "source": 479286446, "length": 66.43716924845285}, {"destination": 479284692, "path": [[-4360.684561554252, -1705.347694322512], [-4007.0845615503004, -1891.5476943224262]], "source": 479286446, "length": 78.96961838824922}, {"destination": 3113807393, "path": [[-6808.784561556536, 922.7023056777028], [-6734.934561556827, 965.2023056769821], [-6658.484561555156, 999.6023056775272], [-6576.68456155136, 1023.6523056779134], [-6569.384561551316, 1085.2523056765763]], "source": 3113807389, "length": 63.576229096519725}, {"destination": 3113807388, "path": [[-6808.784561556536, 922.7023056777028], [-6773.834561556669, 880.3023056778159], [-6730.9345615527145, 813.8023056769583], [-6689.334561556848, 731.2523056768327], [-6664.884561551788, 646.1023056765214]], "source": 3113807389, "length": 67.91526374458864}, {"destination": 3113807401, "path": [[-6808.784561556536, 922.7023056777028], [-6815.434561552536, 930.8023056782133], [-6858.3345615564895, 968.602305677635], [-6883.834561556057, 1005.3023056766364], [-6870.384561551646, 1040.852305678186], [-6823.484561550686, 1081.0023056766481], [-6761.7845615544065, 1117.702305677426], [-6696.034561556985, 1130.3523056778176], [-6606.184561555039, 1114.252305677965], [-6590.884561553878, 1102.20230567748]], "source": 3113807389, "length": 92.86475111504095}, {"destination": 1316623368, "path": [[1390.115438447026, -1307.197694321971], [1581.2654384461666, -1338.9976943223303], [1662.565438444119, -1353.3476943230482]], "source": 1316623541, "length": 52.81817906020498}, {"destination": 1316623659, "path": [[1390.115438447026, -1307.197694321971], [1376.8154384479203, -1366.3976943227851]], "source": 1316623541, "length": 13.406415873291477}, {"destination": 1316623215, "path": [[1390.115438447026, -1307.197694321971], [1405.1654384488188, -1240.0476943223994]], "source": 1316623541, "length": 15.205384683354099}, {"destination": 1316623472, "path": [[-272.8345615565786, -1082.5976943227288], [-277.3345615523226, -1111.947694322879], [-312.13456155398944, -1268.3976943232979]], "source": 1316623543, "length": 41.9995680978547}, {"destination": 1316623744, "path": [[-272.8345615565786, -1082.5976943227288], [-401.88456155476615, -1066.4476943222921], [-443.2345615512645, -1061.1476943225284]], "source": 1316623543, "length": 32.75313151929532}, {"destination": 1316623708, "path": [[-272.8345615565786, -1082.5976943227288], [-237.1345615514997, -841.2976943219519]], "source": 1316623543, "length": 54.09054027996971}, {"destination": 1572268640, "path": [[-6490.33456155479, 2712.102305677533], [-6479.784561555845, 2758.40230567681], [-6303.88456155373, 3529.0523056765724]], "source": 857780853, "length": 185.10965652241342}, {"destination": 857780858, "path": [[-6490.33456155479, 2712.102305677533], [-6450.3845615533355, 2694.552305676723], [-6306.9345615502925, 2602.1023056781446], [-6199.284561553497, 2545.1023056781705], [-6112.834561555757, 2504.8523056767635], [-6061.384561554916, 2479.3023056766115]], "source": 857780853, "length": 96.81774058233431}, {"destination": 3113821603, "path": [[-6490.33456155479, 2712.102305677533], [-6539.284561554837, 2722.4023056771075], [-6908.63456155455, 2803.502305678052]], "source": 857780853, "length": 82.10900482294004}, {"destination": 1316623328, "path": [[1769.015438448207, -811.4976943218721], [1801.3154384490804, -611.9976943228522]], "source": 1316623545, "length": 44.79000965517097}, {"destination": 481508170, "path": [[4721.165438446917, -7693.197694322862], [4844.115438444874, -7684.247694323077], [4870.065438446147, -7682.247694322797], [4896.765438445527, -7671.347694323316], [4903.315438447464, -7662.84769432346], [4910.915438443908, -7649.947694321923], [4912.915438445963, -7635.6476943217895], [4907.915438444377, -7619.4976943231295], [4897.915438448308, -7607.897694322574], [4882.015438447241, -7599.247694322741], [4865.515438446266, -7596.447694321995], [4848.8154384429545, -7598.647694322835], [4837.065438444199, -7603.647694322646], [4825.015438449043, -7613.697694322852], [4817.665438444863, -7626.697694322004], [4816.16543844865, -7642.797694321856], [4821.015438444931, -7656.597694323253], [4831.115438449274, -7668.1976943220325], [4846.615438445668, -7676.597694322496], [4863.165438443673, -7679.497694322635], [4883.015438444716, -7677.4476943217705], [4926.415438447407, -7645.047694323282], [4984.26543844488, -7602.247694322273]], "source": 481506490, "length": 114.5546079191449}, {"destination": 1774845860, "path": [[4721.165438446917, -7693.197694322862], [4719.41543844423, -7733.797694323031]], "source": 481506490, "length": 9.034841024551733}, {"destination": 4483338910, "path": [[4721.165438446917, -7693.197694322862], [4714.31543844858, -7644.9976943226975], [4697.915438448774, -7598.5476943234435], [4672.415438449207, -7555.147694322528], [4645.615438448658, -7523.197694322193], [4604.165438443886, -7487.497694322443], [4558.965438448581, -7460.097694321988], [4511.015438446009, -7440.247694322721], [4458.365438445355, -7426.94769432184], [4413.815438446989, -7421.797694322052], [4368.815438446916, -7421.847694322636], [4324.265438448549, -7427.147694322401]], "source": 481506490, "length": 109.08032590649535}, {"destination": 4470914101, "path": [[8833.115438449113, -5201.797694322608], [8826.065438448439, -5286.547694321797], [8787.11543844446, -5365.197694322532], [7967.115438447081, -5616.147694322393], [7686.96543844527, -5694.647694323152], [6720.365438447117, -6057.5476943220965], [6627.515438445642, -6047.247694322522]], "source": 3357316284, "length": 478.09498286847014}, {"destination": 1887596138, "path": [[-938.5845615526023, -8110.647694323347], [-417.43456155529657, -8100.697694322534]], "source": 1883305150, "length": 99.11550094440352}, {"destination": 1883276500, "path": [[-938.5845615526023, -8110.647694323347], [-1330.1345615559512, -8118.147694322175]], "source": 1883305150, "length": 74.4675126797819}, {"destination": 1883305119, "path": [[-938.5845615526023, -8110.647694323347], [-935.884561556577, -8186.097694322214]], "source": 1883305150, "length": 16.7869361335642}, {"destination": 1316623484, "path": [[2866.565438445434, -978.4476943224263], [2849.9654384432915, -1045.4476943220216]], "source": 1316623553, "length": 15.230850885208115}, {"destination": 1316623398, "path": [[2866.565438445434, -978.4476943224263], [2729.2654384467596, -937.6476943234735]], "source": 1316623553, "length": 27.641702723951784}, {"destination": 1316623710, "path": [[2866.565438445434, -978.4476943224263], [2898.2654384464013, -850.4976943228826], [2903.6154384485258, -770.1976943224054]], "source": 1316623553, "length": 46.97341451450937}, {"destination": 1769171985, "path": [[4065.5654384451623, -7339.197694323118], [3676.4154384485437, -7609.597694322901]], "source": 1769172116, "length": 95.34760141019845}, {"destination": 1993253331, "path": [[4065.5654384451623, -7339.197694323118], [4169.7654384478255, -7277.347694323311]], "source": 1769172116, "length": 24.119205518991375}, {"destination": 1769171905, "path": [[4065.5654384451623, -7339.197694323118], [4042.265438449988, -7317.8976943228945]], "source": 1769172116, "length": 6.486251065000688}, {"destination": 1316623266, "path": [[-934.4845615544273, -155.54769432313265], [-845.9845615504946, -187.64769432344508], [-800.3845615505156, -212.8476943230595], [-725.2845615539627, -244.99769432217988], [-591.9845615522945, -268.6476943232208]], "source": 1316623555, "length": 70.46822024107894}, {"destination": 1316623182, "path": [[-934.4845615544273, -155.54769432313265], [-900.7845615514043, -29.697694323260748]], "source": 1316623555, "length": 28.71227935966905}, {"destination": 1316623679, "path": [[-934.4845615544273, -155.54769432313265], [-945.2345615557078, -254.14769432252626]], "source": 1316623555, "length": 22.022974124463488}, {"destination": 1316623264, "path": [[-642.8345615532294, -494.84769432339704], [-634.1845615551733, -456.39769432348487]], "source": 1316623556, "length": 8.70822386721098}, {"destination": 1316623677, "path": [[-642.8345615532294, -494.84769432339704], [-416.83456155539034, -547.7476943234194], [-167.38456154996584, -577.5476943217228]], "source": 1316623556, "length": 92.45789651330558}, {"destination": 93246696, "path": [[-8634.084561556676, 1299.8523056779732], [-8648.784561550827, 1274.5023056766058], [-8807.184561554493, 907.302305677149], [-8825.534561552216, 862.9523056775668]], "source": 93246664, "length": 103.79478332266251}, {"destination": 93246685, "path": [[-8634.084561556676, 1299.8523056779732], [-8589.084561556603, 1289.8023056777674], [-8111.084561555515, 1128.4023056781223], [-8049.784561556806, 1107.7023056778046]], "source": 93246664, "length": 119.1125173349204}, {"destination": 85011021, "path": [[-8634.084561556676, 1299.8523056779732], [-8615.434561555447, 1341.2523056768323], [-8489.034561556253, 1617.952305677406], [-8471.334561555466, 1656.6523056766869]], "source": 93246664, "length": 85.17191326666185}, {"destination": 476680908, "path": [[-9194.834561554899, -4148.197694322064], [-9160.634561553139, -4103.897694323066]], "source": 1729320137, "length": 11.804105329689977}, {"destination": 1316623745, "path": [[1168.215438447362, -708.2976943220132], [1049.0654384440745, -682.3976943231003]], "source": 1316623568, "length": 23.3791873990403}, {"destination": 639308640, "path": [[-1244.8845615509185, 1414.2523056772661], [-1260.9845615543236, 1455.5523056767329], [-1443.3345615501025, 1618.4023056773356]], "source": 639308664, "length": 59.82381985861166}, {"destination": 1316196959, "path": [[-1244.8845615509185, 1414.2523056772661], [-1282.2345615504105, 1332.7023056781684]], "source": 639308664, "length": 19.477271236119016}, {"destination": 1316623507, "path": [[1503.5154384435145, -733.497694323404], [1543.4654384449686, -596.0476943229764]], "source": 1316623570, "length": 31.497396034399166}, {"destination": 1316623731, "path": [[1503.5154384435145, -733.497694323404], [1463.26543844566, -820.6476943222185]], "source": 1316623570, "length": 20.83784076398905}, {"destination": 1316623742, "path": [[1503.5154384435145, -733.497694323404], [1195.0654384449422, -644.0476943225804], [1063.3154384436239, -616.447694323341]], "source": 1316623570, "length": 87.73449755525301}, {"destination": 495771174, "path": [[9607.265438447143, -3717.3476943230808], [9678.615438446059, -3753.647694322737]], "source": 495771171, "length": 15.787565403456302}, {"destination": 1800806199, "path": [[9607.265438447143, -3717.3476943230808], [9684.76543844332, -3668.147694321888]], "source": 495771171, "length": 18.35472913260972}, {"destination": 1316623363, "path": [[2700.2154384447863, -1003.2476943226953], [2630.015438448652, -983.4976943228213]], "source": 1316623572, "length": 14.053650859451514}, {"destination": 1316623484, "path": [[2700.2154384447863, -1003.2476943226953], [2849.9654384432915, -1045.4476943220216]], "source": 1316623572, "length": 29.984120472324488}, {"destination": 1316623287, "path": [[2700.2154384447863, -1003.2476943226953], [2664.915438444382, -1100.4976943223], [2641.7654384474076, -1146.1976943234476]], "source": 1316623572, "length": 33.720583319990666}, {"destination": 1316623423, "path": [[-1210.7845615503265, -1366.5476943227618], [-1055.1845615509592, -1394.0476943226088], [-1004.2345615559611, -1423.8976943232728], [-843.9345615514071, -1449.3976943228404]], "source": 1316623573, "length": 72.96715327185662}, {"destination": 1316623455, "path": [[772.4654384446694, -2318.5476943226035], [773.3654384480815, -2231.3476943232045]], "source": 1316623575, "length": 19.39310371089883}, {"destination": 476078819, "path": [[772.4654384446694, -2318.5476943226035], [778.9654384495748, -2486.1476943218718]], "source": 1316623575, "length": 37.293073865046644}, {"destination": 1316623703, "path": [[772.4654384446694, -2318.5476943226035], [664.1154384467995, -2304.597694323007], [514.2154384429887, -2302.397694322167]], "source": 1316623575, "length": 49.345522781313555}, {"destination": 479302313, "path": [[-7805.534561555305, 462.452305677985], [-7827.234561553098, 412.8523056774469], [-8004.834561553764, 9.20230567658109]], "source": 479302873, "length": 107.688258440093}, {"destination": 483122140, "path": [[-7805.534561555305, 462.452305677985], [-7612.684561550509, 915.1523056782906], [-7592.934561550635, 956.1523056778043]], "source": 479302873, "length": 117.00903767844426}, {"destination": 486131798, "path": [[-7805.534561555305, 462.452305677985], [-7265.384561556231, 225.8523056770656]], "source": 479302873, "length": 115.4138836896647}, {"destination": 85010431, "path": [[-7805.534561555305, 462.452305677985], [-7850.884561555915, 482.10230567669043], [-8218.384561551773, 632.4023056780703], [-8290.284561553563, 663.1023056780094]], "source": 479302873, "length": 102.42221120609615}, {"destination": 1784682724, "path": [[8594.815438449643, -5523.447694322669], [8692.165438446864, -5490.797694323035]], "source": 1784682703, "length": 19.884157692637892}, {"destination": 1784682684, "path": [[8594.815438449643, -5523.447694322669], [8589.115438446981, -5474.547694323206], [8539.61543844406, -5303.997694323215]], "source": 1784682703, "length": 50.00787840302863}, {"destination": 85011298, "path": [[-8049.784561556806, 1107.7023056778046], [-8033.4345615540315, 1141.0523056767374], [-7904.534561554045, 1404.102305677668], [-7889.084561554682, 1444.6523056772521]], "source": 93246685, "length": 80.95548998001938}, {"destination": 483122140, "path": [[-8049.784561556806, 1107.7023056778046], [-7994.934561551759, 1087.6523056779774], [-7634.084561551901, 971.6523056777504], [-7592.934561550635, 956.1523056778043]], "source": 93246685, "length": 93.20825648245324}, {"destination": 85010431, "path": [[-8049.784561556806, 1107.7023056778046], [-8067.284561555254, 1075.4523056775156], [-8259.28456155367, 721.702305677141], [-8290.284561553563, 663.1023056780094]], "source": 93246685, "length": 108.94108191712003}, {"destination": 152848137, "path": [[1356.6654384433718, -1644.3976943225634], [1719.4654384482533, -1628.9976943220097]], "source": 1316623587, "length": 69.0767322228101}, {"destination": 1316623189, "path": [[1356.6654384433718, -1644.3976943225634], [1382.0154384447392, -1508.9476943224156], [1616.165438449002, -1549.9976943225136], [1633.1154384445767, -1478.0976943225]], "source": 1316623587, "length": 92.27048063817816}, {"destination": 1316623529, "path": [[1968.0154384431603, -1366.5476943227618], [1991.6654384459775, -1300.0476943219041], [1750.2654384458083, -1235.7976943224712]], "source": 1316623589, "length": 63.53597557619489}, {"destination": 1316623283, "path": [[1968.0154384431603, -1366.5476943227618], [1945.115438445555, -1431.0976943221476]], "source": 1316623589, "length": 15.00099993427927}, {"destination": 1316623657, "path": [[1968.0154384431603, -1366.5476943227618], [1731.465438446378, -1311.4976943224833]], "source": 1316623589, "length": 46.619967288310086}, {"destination": 1316623490, "path": [[2138.2654384467514, -931.5476943232426], [2168.8654384490746, -817.0976943233654]], "source": 1316623591, "length": 26.109142460645764}, {"destination": 481387485, "path": [[2138.2654384467514, -931.5476943232426], [2108.765438443072, -1042.047694323145]], "source": 1316623591, "length": 25.20638521556709}, {"destination": 1316623454, "path": [[2138.2654384467514, -931.5476943232426], [2007.7654384493826, -907.8476943233937], [2013.1154384444017, -855.0476943227636], [1862.9154384441904, -827.5476943229165]], "source": 1316623591, "length": 66.36752185308724}, {"destination": 93246664, "path": [[-8825.534561552216, 862.9523056775668], [-8807.184561554493, 907.302305677149], [-8648.784561550827, 1274.5023056766058], [-8634.084561556676, 1299.8523056779732]], "source": 93246696, "length": 103.79478332266251}, {"destination": 479302758, "path": [[-8825.534561552216, 862.9523056775668], [-8837.534561550343, 841.2523056779975], [-8847.384561555316, 821.7023056769079], [-8979.084561552498, 560.602305677449], [-9110.334561555079, 329.80230567680735]], "source": 93246696, "length": 130.385104100923}, {"destination": 85010431, "path": [[-8825.534561552216, 862.9523056775668], [-8796.78456155375, 850.9523056776658], [-8356.084561555122, 687.5023056771568], [-8290.284561553563, 663.1023056780094]], "source": 93246696, "length": 111.07572704333366}, {"destination": 4460275969, "path": [[-1563.4345615538336, 1800.3023056767374], [-1419.134561551516, 1726.9023056769583]], "source": 639308668, "length": 31.930499167397574}, {"destination": 93332044, "path": [[-1563.4345615538336, 1800.3023056767374], [-1415.034561553341, 1702.7023056765956], [-1142.0345615533734, 1547.852305677111], [-1091.534561552976, 1519.2023056780358], [-1025.084561554479, 1481.5023056780065], [-551.4345615509342, 1357.7523056778064]], "source": 639308668, "length": 218.7844015184582}, {"destination": 479293036, "path": [[-5335.884561553428, -1824.1976943222937], [-4998.2845615517135, -1992.9476943225666]], "source": 479292967, "length": 74.36347600678951}, {"destination": 479292469, "path": [[-5335.884561553428, -1824.1976943222937], [-5055.984561550986, -1468.147694323463], [-4985.584561552514, -1379.5476943219142]], "source": 479292967, "length": 119.23081785369146}, {"destination": 483103400, "path": [[-4538.134561556717, 6550.35230567691], [-4503.134561552713, 6635.552305677806]], "source": 483103362, "length": 20.08327595952444}, {"destination": 971168073, "path": [[-4538.134561556717, 6550.35230567691], [-4676.034561555298, 6107.90230567737]], "source": 483103362, "length": 101.83213619955878}, {"destination": 856909118, "path": [[-4538.134561556717, 6550.35230567691], [-4719.934561556727, 6587.502305677617], [-4925.684561555954, 6657.252305677374], [-5099.484561554846, 6745.452305677802], [-5341.834561555459, 6899.602305677988]], "source": 483103362, "length": 173.52981161501592}, {"destination": 1720951176, "path": [[-433.5845615557332, -7304.547694323204], [-398.13456155002314, -7305.297694323088]], "source": 476671528, "length": 6.742421057254979}, {"destination": 1887596184, "path": [[-433.5845615557332, -7304.547694323204], [-483.3345615509188, -7306.347694322923]], "source": 476671528, "length": 9.468351895313099}, {"destination": 599723323, "path": [[-433.5845615557332, -7304.547694323204], [-418.48456155690883, -7431.847694322258], [-393.98456155481654, -7558.347694322621], [-364.6845615534744, -7715.897694323459], [-345.9345615510756, -7821.597694322335], [-290.2845615508909, -8090.497694322352]], "source": 476671528, "length": 176.95345783884383}, {"destination": 475978025, "path": [[1826.3654384469419, -1630.397694322383], [1936.2654384451616, -1631.7976943227563]], "source": 1316623602, "length": 20.90132417256979}, {"destination": 1316623410, "path": [[1826.3654384469419, -1630.397694322383], [1830.7154384444857, -1577.547694322945], [1766.3654384492133, -1572.9476943224795], [1782.465438445513, -1524.7976943228991], [1900.4654384460196, -1540.8476943221672], [1927.2654384465682, -1481.1976943231998]], "source": 1316623602, "length": 72.1323648074578}, {"destination": 152847380, "path": [[-2036.4345615533352, -2794.0476943228987], [-1936.9845615528902, -2278.197694321804]], "source": 95663349, "length": 116.26827286452034}, {"destination": 599408454, "path": [[-2036.4345615533352, -2794.0476943228987], [-1969.0845615514263, -2815.5476943219073]], "source": 95663349, "length": 13.670372578120784}, {"destination": 479284039, "path": [[-2036.4345615533352, -2794.0476943228987], [-2194.4845615564645, -2749.7976943227086]], "source": 95663349, "length": 31.624757986345095}, {"destination": 3113807393, "path": [[-6590.884561553878, 1102.20230567748], [-6569.384561551316, 1085.2523056765763]], "source": 3113807401, "length": 5.561628435672567}, {"destination": 3113807403, "path": [[-6590.884561553878, 1102.20230567748], [-6561.934561553073, 1163.6023056773581], [-6530.4345615544435, 1247.4023056778806]], "source": 3113807401, "length": 34.29853695025503}, {"destination": 3113807389, "path": [[-6590.884561553878, 1102.20230567748], [-6606.184561555039, 1114.252305677965], [-6696.034561556985, 1130.3523056778176], [-6761.7845615544065, 1117.702305677426], [-6823.484561550686, 1081.0023056766481], [-6870.384561551646, 1040.852305678186], [-6883.834561556057, 1005.3023056766364], [-6858.3345615564895, 968.602305677635], [-6815.434561552536, 930.8023056782133], [-6808.784561556536, 922.7023056777028]], "source": 3113807401, "length": 92.86475111504095}, {"destination": 773662896, "path": [[1024.3654384467504, -796.997694322954], [1013.7654384436701, -846.147694321786]], "source": 1316623608, "length": 11.115151312540885}, {"destination": 1316623634, "path": [[1024.3654384467504, -796.997694322954], [1138.7154384436826, -822.9476943224512]], "source": 1316623608, "length": 22.498295358396163}, {"destination": 1316623421, "path": [[1024.3654384467504, -796.997694322954], [1037.6154384488245, -735.4976943219071]], "source": 1316623608, "length": 13.906987721266132}, {"destination": 495632202, "path": [[2459.7654384450607, -6511.647694322775], [2367.615438444659, -6694.047694322691], [2339.0654384485288, -6784.147694322229], [2324.1154384479046, -6881.797694322955], [2320.0154384497296, -6970.647694322096]], "source": 495629563, "length": 106.6226960258578}, {"destination": 1581175468, "path": [[2459.7654384450607, -6511.647694322775], [2467.2154384433043, -6496.597694322759]], "source": 495629563, "length": 3.6349238454683555}, {"destination": 495629582, "path": [[2459.7654384450607, -6511.647694322775], [2770.5654384462264, -6607.0476943220765], [3130.61543844384, -6764.797694323477]], "source": 495629563, "length": 139.71681710430744}, {"destination": 1316623283, "path": [[1726.1154384442534, -1380.297694321797], [1945.115438445555, -1431.0976943221476]], "source": 1316623612, "length": 43.151365271464755}, {"destination": 773662896, "path": [[1317.4154384429926, -900.4476943221817], [1013.7654384436701, -846.147694321786]], "source": 1316623614, "length": 58.99364442649297}, {"destination": 1316623595, "path": [[1317.4154384429926, -900.4476943221817], [1606.7654384457342, -952.197694322976]], "source": 1316623614, "length": 56.215645555845434}, {"destination": 1316623638, "path": [[1317.4154384429926, -900.4476943221817], [1299.6154384481429, -976.5976943221233]], "source": 1316623614, "length": 17.269900649203198}, {"destination": 1316623187, "path": [[1289.5154384438001, -1415.147694322272], [1276.2154384446944, -1479.3976943234811]], "source": 1316623616, "length": 14.510532195236108}, {"destination": 1316623621, "path": [[1289.5154384438001, -1415.147694322272], [1016.4154384497692, -1367.5476943220133], [908.8654384470374, -1348.2976943226531]], "source": 1316623616, "length": 73.89792378225142}, {"destination": 1316623310, "path": [[1289.5154384438001, -1415.147694322272], [1304.565438445593, -1342.447694321791]], "source": 1316623616, "length": 16.418890168917788}, {"destination": 1316623368, "path": [[1653.7154384437258, -1261.04769432267], [1680.5154384442744, -1277.097694321938], [1662.565438444119, -1353.3476943230482]], "source": 1316623618, "length": 23.51997435005869}, {"destination": 1316623524, "path": [[1653.7154384437258, -1261.04769432267], [1656.365438449825, -1240.3976943229368], [1632.2654384453017, -1212.8476943225053], [1634.9154384442954, -1134.897694322845], [1598.765438444616, -1130.2476943217953], [1581.2654384461666, -1127.997694322147], [1583.565438444623, -1112.1976943222478]], "source": 1316623618, "length": 43.471266018244094}, {"destination": 1316623215, "path": [[1653.7154384437258, -1261.04769432267], [1605.4154384477215, -1279.3976943221708], [1405.1654384488188, -1240.0476943223994]], "source": 1316623618, "length": 49.12457171072445}, {"destination": 1316236378, "path": [[-400.9345615543225, 2484.5523056775673], [-352.7845615565184, 2472.7523056782275]], "source": 1316236843, "length": 9.525766567650514}, {"destination": 1316236998, "path": [[-400.9345615543225, 2484.5523056775673], [-434.13456155150243, 2406.1023056773934]], "source": 1316236843, "length": 18.553988097509745}, {"destination": 1316236423, "path": [[-400.9345615543225, 2484.5523056775673], [-556.5345615536899, 2530.4023056769156], [-609.1345615502064, 2555.4523056765534]], "source": 1316236843, "length": 42.75041278700698}, {"destination": 1316623455, "path": [[591.6654384492404, -2226.597694322763], [773.3654384480815, -2231.3476943232045]], "source": 1316623620, "length": 34.568753248940055}, {"destination": 1316623616, "path": [[908.8654384470374, -1348.2976943226531], [1016.4154384497692, -1367.5476943220133], [1289.5154384438001, -1415.147694322272]], "source": 1316623621, "length": 73.89792378225142}, {"destination": 1316623646, "path": [[908.8654384470374, -1348.2976943226531], [891.5654384438199, -1431.0976943221476]], "source": 1316623621, "length": 18.70541224414793}, {"destination": 1316623663, "path": [[908.8654384470374, -1348.2976943226531], [968.4154384430599, -1063.147694322808]], "source": 1316623621, "length": 64.41787062584704}, {"destination": 1316237157, "path": [[-142.03456155570393, 4154.50230567771], [-101.08456155677459, 4239.402305676876]], "source": 1316236844, "length": 20.42413976700569}, {"destination": 1316236974, "path": [[-142.03456155570393, 4154.50230567771], [37.365438444680876, 4099.102305676894]], "source": 1316236844, "length": 36.276144152593425}, {"destination": 1316623408, "path": [[-725.3345615509943, -861.9476943234616], [-712.434561556563, -804.4976943217819]], "source": 1316623630, "length": 13.009964912688934}, {"destination": 1316623259, "path": [[-725.3345615509943, -861.9476943234616], [-577.7845615568822, -882.597694323195], [-363.1845615501561, -905.5476943231611]], "source": 1316623630, "length": 69.56035392185503}, {"destination": 602360666, "path": [[6538.765438449445, -2788.49769432199], [6951.81543844825, -3004.0976943226383]], "source": 84489488, "length": 92.02353472034868}, {"destination": 495771182, "path": [[6538.765438449445, -2788.49769432199], [6447.565438449487, -2912.347694323358]], "source": 84489488, "length": 32.54804212071258}, {"destination": 84489488, "path": [[6436.865438445238, -2733.4976943222955], [6538.765438449445, -2788.49769432199]], "source": 84489489, "length": 22.915061426649302}, {"destination": 1721498027, "path": [[6436.865438445238, -2733.4976943222955], [6391.41543844346, -2780.497694322648], [6327.715438445125, -2812.047694321862], [6225.165438443981, -2907.1976943217946], [6169.465438446764, -2977.7476943220195], [6160.115438447633, -3087.8476943225764], [6123.965438447954, -3161.6976943222853], [6095.0654384441805, -3174.397694323261], [6015.265438449546, -3184.147694321737], [5986.415438449911, -3213.947694321817], [5899.26543844399, -3260.997694322754], [5860.365438444149, -3313.147694322893], [5834.2154384476435, -3368.1976943231716], [5739.115438444742, -3457.547694322827], [5685.365438445444, -3492.6476943226703], [5607.565438445761, -3504.0976943232495], [5543.865438447427, -3587.797694322603], [5454.26543844485, -3719.3476943233604], [4438.71543844665, -4561.6476943219905], [4275.015438444996, -4671.197694323226]], "source": 84489489, "length": 613.669480437705}, {"destination": 1473995269, "path": [[6436.865438445238, -2733.4976943222955], [6511.465438443054, -2719.147694323354], [6582.665438443769, -2642.2476943217534], [6595.365438442968, -2590.6476943227117], [6601.315438444999, -2554.5976943224246], [6666.365438448452, -2428.9976943219217], [6709.2654384453, -2377.3976943228804], [6817.915438446676, -2313.1976943222553], [6920.515438444852, -2244.9476943222635], [7021.765438445016, -2131.44769432283], [7059.965438443783, -2105.647694323309], [7159.915438442966, -2068.347694322625], [7211.615438443176, -2029.2976943228068], [7271.8654384473775, -1959.997694322979], [7318.915438446538, -1891.6976943224029], [7336.915438443725, -1811.4976943230943], [7409.315438444253, -1725.4976943217316], [7530.115438449058, -1673.1976943233917], [7602.315438447249, -1600.3476943229343]], "source": 84489489, "length": 351.0418506851272}, {"destination": 1316623608, "path": [[1138.7154384436826, -822.9476943224512], [1024.3654384467504, -796.997694322954]], "source": 1316623634, "length": 22.498295358396163}, {"destination": 1316623295, "path": [[11.91543844925036, -610.9976943218243], [-50.43456155107151, -892.4476943228399]], "source": 1316623636, "length": 63.70485822289817}, {"destination": 3724313004, "path": [[11.91543844925036, -610.9976943218243], [14.665438449412704, -611.4476943217539]], "source": 1316623636, "length": 0.537035902369085}, {"destination": 773662879, "path": [[11.91543844925036, -610.9976943218243], [81.5154384454786, -339.84769432215955]], "source": 1316623636, "length": 61.73650491013839}, {"destination": 495645512, "path": [[7453.56543844622, -7433.647694321977], [7362.815438447968, -7389.347694322979], [7322.415438444807, -7336.897694322886], [7273.31543844656, -7219.4976943222855]], "source": 495645973, "length": 61.56352058051358}, {"destination": 495645980, "path": [[7453.56543844622, -7433.647694321977], [7500.965438445917, -7436.8476943220685], [7571.815438446094, -7421.347694322122], [7630.265438443474, -7392.097694323141]], "source": 495645973, "length": 35.82468286101975}, {"destination": 495646692, "path": [[7453.56543844622, -7433.647694321977], [7502.565438443298, -7508.697694323274], [7547.115438448771, -7546.697694323257], [7657.315438443391, -7584.447694322094], [7728.715438446443, -7575.247694322939], [7788.7654384483085, -7549.597694323395], [7850.065438447018, -7502.447694323067], [7883.565438447704, -7482.097694323286]], "source": 495645973, "length": 103.63727581662067}, {"destination": 1316623660, "path": [[1299.6154384481429, -976.5976943221233], [1468.6154384477845, -997.297694322441]], "source": 1316623638, "length": 32.46625219356504}, {"destination": 1316623486, "path": [[1299.6154384481429, -976.5976943221233], [1283.4654384477062, -1045.847694323143]], "source": 1316623638, "length": 15.703709423037273}, {"destination": 1316623614, "path": [[1299.6154384481429, -976.5976943221233], [1317.4154384429926, -900.4476943221817]], "source": 1316623638, "length": 17.269900649203198}, {"destination": 1316623429, "path": [[1299.6154384481429, -976.5976943221233], [1216.5154384433663, -955.9976943229742], [1189.665438445786, -976.6476943227076], [1109.2154384471087, -962.8476943230879], [1087.7654384486846, -944.4976943218109], [999.3654384459205, -915.0976943228528]], "source": 1316623638, "length": 62.73142054342149}, {"destination": 479302313, "path": [[-7469.784561550341, -213.8976943228954], [-7950.234561555191, -6.497694322149528], [-8004.834561553764, 9.20230567658109]], "source": 479302935, "length": 113.3043026678853}, {"destination": 71127148, "path": [[-7469.784561550341, -213.8976943228954], [-6983.534561555871, -419.09769432280086]], "source": 479302935, "length": 103.1176234667612}, {"destination": 486131798, "path": [[-7469.784561550341, -213.8976943228954], [-7265.384561556231, 225.8523056770656]], "source": 479302935, "length": 105.2379711682945}, {"destination": 1316623417, "path": [[-1318.834561551796, -250.847694323042], [-1122.2345615564677, -297.7476943222257]], "source": 1316623640, "length": 38.815126658299505}, {"destination": 1316623550, "path": [[-1318.834561551796, -250.847694323042], [-1367.5345615524748, -361.29769432236003]], "source": 1316623640, "length": 26.25097740487915}, {"destination": 210643019, "path": [[-4939.534561550829, -7617.94769432278], [-4343.83456155274, -7829.797694322238]], "source": 850261273, "length": 122.67428551074143}, {"destination": 1887877324, "path": [[-4939.534561550829, -7617.94769432278], [-5016.934561552944, -7590.147694322979], [-5441.034561556535, -7439.547694323423], [-5626.034561551307, -7392.547694323071]], "source": 850261273, "length": 139.9763868100327}, {"destination": 267198765, "path": [[-4939.534561550829, -7617.94769432278], [-4991.634561555713, -7759.4476943225745]], "source": 850261273, "length": 32.9905748841679}, {"destination": 495646546, "path": [[7630.265438443474, -7392.097694323141], [7704.06543844615, -7382.297694322304], [7763.065438446403, -7370.597694322356], [7843.61543844625, -7339.047694323142], [7893.415438445572, -7262.297694323294]], "source": 495645980, "length": 62.082058100693814}, {"destination": 495645973, "path": [[7630.265438443474, -7392.097694323141], [7571.815438446094, -7421.347694322122], [7500.965438445917, -7436.8476943220685], [7453.56543844622, -7433.647694321977]], "source": 495645980, "length": 35.82468286101975}, {"destination": 495646351, "path": [[7630.265438443474, -7392.097694323141], [7821.265438444414, -7192.54769432176], [7856.015438449049, -7160.347694322056]], "source": 495645980, "length": 67.08771160512745}, {"destination": 476078905, "path": [[891.5654384438199, -1431.0976943221476], [831.5654384460913, -1683.7976943229194]], "source": 1316623646, "length": 57.34461595137805}, {"destination": 1316623187, "path": [[891.5654384438199, -1431.0976943221476], [1042.1654384487056, -1453.6976943233526], [1154.8154384470877, -1467.447694322388], [1276.2154384446944, -1479.3976943234811]], "source": 1316623646, "length": 73.9542821344764}, {"destination": 1316623621, "path": [[891.5654384438199, -1431.0976943221476], [908.8654384470374, -1348.2976943226531]], "source": 1316623646, "length": 18.70541224414793}, {"destination": 1316623389, "path": [[2414.565438449756, -428.3476943225395], [2496.9654384463524, -412.8976943231777]], "source": 1316623647, "length": 16.042402688051673}, {"destination": 475978022, "path": [[2414.565438449756, -428.3476943225395], [2410.0654384469067, -618.8476943229659], [2388.6154384484826, -648.6476943230457], [2305.4654384466744, -634.897694322234], [2310.8654384458305, -540.8476943227214], [2240.765438443759, -547.897694323396]], "source": 1316623647, "length": 100.6239020367174}, {"destination": 1316623505, "path": [[2238.4154384482713, -1203.697694322159], [2271.415438443114, -1073.6476943229434]], "source": 1316623648, "length": 29.59489331105432}, {"destination": 1316623202, "path": [[2238.4154384482713, -1203.697694322159], [2385.965438449489, -1233.4976943222387], [2458.165438447679, -1248.9476943233767]], "source": 1316623648, "length": 42.98434289247357}, {"destination": 1316623332, "path": [[2238.4154384482713, -1203.697694322159], [2073.6154384479732, -1173.597694322126]], "source": 1316623648, "length": 32.046298480290055}, {"destination": 1993253305, "path": [[8097.165438449849, -6853.547694323225], [8057.015438446058, -6830.097694322745], [8019.765438447735, -6827.597694321952], [7984.965438446068, -6811.897694323221], [7916.015438446777, -6813.647694322355], [7828.315438445088, -6822.24769432338], [7735.965438449455, -6823.897694323122]], "source": 495645990, "length": 71.2955164504016}, {"destination": 495646219, "path": [[8097.165438449849, -6853.547694323225], [8059.115438449282, -6909.147694322826]], "source": 495645990, "length": 14.326131026675995}, {"destination": 495646147, "path": [[8097.165438449849, -6853.547694323225], [8139.2154384474225, -6763.497694322496], [8164.86543844519, -6675.797694322583], [8154.165438448046, -6586.847694322273], [8113.565438449655, -6520.947694323098], [8060.315438449095, -6479.947694321808], [7986.16543844588, -6455.197694322123]], "source": 495645990, "length": 106.87919723874454}, {"destination": 3113807411, "path": [[-6639.134561552851, 242.65230567799279], [-6689.334561556848, 259.9023056770733], [-6729.584561554702, 325.7523056774403]], "source": 3113807409, "length": 26.81278619791169}, {"destination": 483113599, "path": [[-6639.134561552851, 242.65230567799279], [-6577.584561554772, 366.55230567816943]], "source": 3113807409, "length": 29.937343227495926}, {"destination": 3356022888, "path": [[-1005.0345615510992, 497.0023056767303], [-779.9845615537038, 908.3523056769849], [-691.3345615515709, 1078.6523056776077], [-641.9845615539543, 1170.3023056774953]], "source": 475977000, "length": 164.8918054636719}, {"destination": 599406978, "path": [[-1005.0345615510992, 497.0023056767303], [-944.934561552202, 490.10230567780866]], "source": 475977000, "length": 11.532212983849952}, {"destination": 639308714, "path": [[-1005.0345615510992, 497.0023056767303], [-1628.8845615548553, 614.1523056779619]], "source": 475977000, "length": 121.46675974262412}, {"destination": 1316623589, "path": [[1731.465438446378, -1311.4976943224833], [1968.0154384431603, -1366.5476943227618]], "source": 1316623657, "length": 46.619967288310086}, {"destination": 477640011, "path": [[-5531.184561554881, -6827.147694322022], [-5083.834561553147, -6932.79769432209]], "source": 477639369, "length": 88.24604603763409}, {"destination": 477639508, "path": [[-5531.184561554881, -6827.147694322022], [-5460.0845615553335, -6608.397694321866]], "source": 477639369, "length": 50.491371841772946}, {"destination": 477640830, "path": [[-5531.184561554881, -6827.147694322022], [-5539.534561556537, -6842.647694321969], [-5553.23456155321, -6856.497694322172], [-5566.8845615528535, -6864.4976943232905], [-5586.284561552191, -6871.847694322142], [-5618.634561550096, -6876.797694323144], [-5628.684561550301, -6886.597694322205], [-5649.634561549988, -6937.847694322485]], "source": 477639369, "length": 36.230073193688824}, {"destination": 1316623541, "path": [[1376.8154384479203, -1366.3976943227851], [1390.115438447026, -1307.197694321971]], "source": 1316623659, "length": 13.406415873291477}, {"destination": 1316623189, "path": [[1376.8154384479203, -1366.3976943227851], [1361.3654384485585, -1435.3476943220755], [1557.1654384487488, -1462.8476943219225], [1633.1154384445767, -1478.0976943225]], "source": 1316623659, "length": 68.18229912392842}, {"destination": 1316623373, "path": [[1376.8154384479203, -1366.3976943227851], [1573.2154384480168, -1394.0476943226088], [1649.1154384468132, -1410.1976943230454]], "source": 1316623659, "length": 52.725499974153536}, {"destination": 1316623638, "path": [[1468.6154384477845, -997.297694322441], [1299.6154384481429, -976.5976943221233]], "source": 1316623660, "length": 32.46625219356504}, {"destination": 476681047, "path": [[-8131.28456154999, -4152.14769432204], [-8139.534561550477, -4135.347694322889], [-8162.434561555187, -4083.2476943233332]], "source": 1928818226, "length": 16.43037460217655}, {"destination": 1316623722, "path": [[968.4154384430599, -1063.147694322808], [1106.515438443978, -1088.997694322913], [1277.0654384439695, -1107.447694321806]], "source": 1316623663, "length": 59.57527059713445}, {"destination": 1316623275, "path": [[968.4154384430599, -1063.147694322808], [978.815438443803, -1013.4476943228776]], "source": 1316623663, "length": 11.228096671051274}, {"destination": 1316623621, "path": [[968.4154384430599, -1063.147694322808], [908.8654384470374, -1348.2976943226531]], "source": 1316623663, "length": 64.41787062584704}, {"destination": 1315785600, "path": [[-4370.68456155032, -1191.4976943234733], [-4423.534561553311, -1251.1976943230252]], "source": 1315785479, "length": 16.651631486075456}, {"destination": 1315785285, "path": [[-4370.68456155032, -1191.4976943234733], [-4603.78456155297, -1061.4976943230658]], "source": 1315785479, "length": 52.92256533157421}, {"destination": 495646010, "path": [[7876.315438444692, -6480.597694322299], [7782.31543844754, -6535.347694322624], [7689.465438446064, -6605.997694322241], [7658.015438444465, -6617.047694323474], [7587.065438443119, -6618.697694323217]], "source": 495646003, "length": 65.22229902637861}, {"destination": 495646147, "path": [[7876.315438444692, -6480.597694322299], [7945.665438448657, -6462.1976943222135], [7986.16543844588, -6455.197694322123]], "source": 495646003, "length": 21.664455327154442}, {"destination": 3121830238, "path": [[7876.315438444692, -6480.597694322299], [7676.365438449295, -6287.497694323463], [7588.2654384500365, -6248.097694323107], [7496.365438449004, -6268.697694322256], [7346.7654384487, -6355.647694322286], [7155.015438449653, -6505.797694321913], [6967.065438445275, -6609.697694322847]], "source": 495646003, "length": 220.7187493766795}, {"destination": 476671528, "path": [[-438.4845615561517, -7234.297694322933], [-433.5845615557332, -7304.547694323204]], "source": 1883856710, "length": 15.650531410608155}, {"destination": 1883856735, "path": [[-438.4845615561517, -7234.297694322933], [-482.284561556412, -7238.497694322276]], "source": 1883856710, "length": 8.380169506969265}, {"destination": 478379149, "path": [[8022.215438444391, -4132.947694323264], [8086.365438444432, -4136.647694322093]], "source": 495772553, "length": 12.226415814422916}, {"destination": 1782376799, "path": [[8022.215438444391, -4132.947694323264], [8125.2154384472415, -3844.3976943227653], [8130.565438449366, -3828.9976943222114]], "source": 495772553, "length": 70.6667539570464}, {"destination": 1582473536, "path": [[7587.065438443119, -6618.697694323217], [7487.415438447442, -6628.3476943223], [7283.015438446228, -6630.6976943231175], [7231.815438444755, -6637.097694323302], [7184.115438448657, -6660.847694321958], [7156.3154384435275, -6685.047694322321]], "source": 495646010, "length": 85.81745984651947}, {"destination": 1993253305, "path": [[7587.065438443119, -6618.697694323217], [7638.51543844396, -6677.747694322278], [7652.76543844351, -6749.697694322876], [7678.2154384460455, -6783.847694322276], [7691.865438445689, -6795.347694323439], [7735.965438449455, -6823.897694323122]], "source": 495646010, "length": 55.769586160533436}, {"destination": 495646003, "path": [[7587.065438443119, -6618.697694323217], [7658.015438444465, -6617.047694323474], [7689.465438446064, -6605.997694322241], [7782.31543844754, -6535.347694322624], [7876.315438444692, -6480.597694322299]], "source": 495646010, "length": 65.22229902637861}, {"destination": 95386508, "path": [[-1562.8345615539274, -4418.697694323015], [-1607.9345615551688, -4570.547694322969]], "source": 95386499, "length": 34.84195026522901}, {"destination": 1315785175, "path": [[-1562.8345615539274, -4418.697694323015], [-1288.484561555947, -4530.647694322099]], "source": 95386499, "length": 57.80484294452669}, {"destination": 1316623692, "path": [[-167.38456154996584, -577.5476943217228], [-226.38456155021913, -747.2476943224393]], "source": 1316623677, "length": 39.372231481868155}, {"destination": 1316623226, "path": [[-167.38456154996584, -577.5476943217228], [-156.6345615557907, -472.04769432340754]], "source": 1316623677, "length": 23.551259310949753}, {"destination": 3724313004, "path": [[-167.38456154996584, -577.5476943217228], [14.665438449412704, -611.4476943217539]], "source": 1316623677, "length": 35.43178054178108}, {"destination": 1316623556, "path": [[-167.38456154996584, -577.5476943217228], [-416.83456155539034, -547.7476943234194], [-642.8345615532294, -494.84769432339704]], "source": 1316623677, "length": 92.45789651330558}, {"destination": 1316623305, "path": [[1784.4154384434319, -983.9976943233353], [1860.1154384469964, -997.5476943218098]], "source": 1316623678, "length": 14.707946688700506}, {"destination": 773662836, "path": [[1784.4154384434319, -983.9976943233353], [1703.9654384447545, -969.597694322033]], "source": 1316623678, "length": 15.630651126304603}, {"destination": 1316623569, "path": [[1784.4154384434319, -983.9976943233353], [1731.465438446378, -1199.09769432347]], "source": 1316623678, "length": 48.88437333758963}, {"destination": 1316623193, "path": [[-945.2345615557078, -254.14769432252626], [-800.3845615505156, -290.84769432330404], [-698.4845615534141, -304.5976943223394], [-603.884561556356, -321.6476943226354]], "source": 1316623679, "length": 66.73289664206912}, {"destination": 1316623555, "path": [[-945.2345615557078, -254.14769432252626], [-934.4845615544273, -155.54769432313265]], "source": 1316623679, "length": 22.022974124463488}, {"destination": 1316623303, "path": [[-945.2345615557078, -254.14769432252626], [-968.0345615521446, -320.2476943222621]], "source": 1316623679, "length": 15.326119290302161}, {"destination": 477640432, "path": [[-4808.134561550049, -7321.147694321795], [-5071.234561555116, -7246.947694323325], [-5153.2345615541435, -7226.297694321815], [-5243.034561551951, -7207.5976943217765], [-5338.884561552959, -7184.897694322955], [-5437.134561553592, -7158.747694322898], [-5702.684561555316, -7086.447694321762]], "source": 477640461, "length": 177.97320479835363}, {"destination": 850261273, "path": [[-4808.134561550049, -7321.147694321795], [-4939.534561550829, -7617.94769432278]], "source": 477640461, "length": 70.5757945227369}, {"destination": 1316623744, "path": [[-542.2845615541405, -1048.6976943226978], [-499.18456155495505, -1054.2476943218303], [-443.2345615512645, -1061.1476943225284]], "source": 1316623687, "length": 19.03819364950543}, {"destination": 475975342, "path": [[-542.2845615541405, -1048.6976943226978], [-584.3845615558507, -1043.5476943229105], [-625.7345615523491, -1038.347694322539], [-633.6845615564357, -1084.747694322985], [-771.6345615520481, -1067.4476943233203]], "source": 1316623687, "length": 52.97899481526966}, {"destination": 1316623694, "path": [[-542.2845615541405, -1048.6976943226978], [-580.0345615512015, -1183.697694322916], [-593.8845615531818, -1233.0476943223089]], "source": 1316623687, "length": 42.15599592854359}, {"destination": 1887877308, "path": [[-5083.834561553147, -6932.79769432209], [-4798.934561556223, -7016.147694322683]], "source": 477640011, "length": 57.255274955374375}, {"destination": 477640277, "path": [[-5083.834561553147, -6932.79769432209], [-5027.634561550087, -6771.247694322468], [-5003.984561554375, -6671.647694322047]], "source": 477640011, "length": 60.08467895830884}, {"destination": 1316623482, "path": [[-226.38456155021913, -747.2476943224393], [-341.734561551732, -712.8476943218942], [-483.88456155379345, -671.5976943230118], [-673.5345615567212, -631.3976943221888]], "source": 1316623692, "length": 88.93550671729496}, {"destination": 1316623708, "path": [[-226.38456155021913, -747.2476943224393], [-237.1345615514997, -841.2976943219519]], "source": 1316623692, "length": 21.01549702297807}, {"destination": 1316623677, "path": [[-226.38456155021913, -747.2476943224393], [-167.38456154996584, -577.5476943217228]], "source": 1316623692, "length": 39.372231481868155}, {"destination": 475975640, "path": [[-593.8845615531818, -1233.0476943223089], [-798.0345615550277, -1207.5976943233259]], "source": 1316623694, "length": 39.233036462116964}, {"destination": 1316623230, "path": [[-593.8845615531818, -1233.0476943223089], [-483.08456155155, -1246.9476943230973]], "source": 1316623694, "length": 21.295818276028854}, {"destination": 1316623687, "path": [[-593.8845615531818, -1233.0476943223089], [-580.0345615512015, -1183.697694322916], [-542.2845615541405, -1048.6976943226978]], "source": 1316623694, "length": 42.15599592854359}, {"destination": 1316623512, "path": [[250.11543844755124, -649.0976943229754], [304.6654384490921, -657.7976943233921]], "source": 1316623695, "length": 10.552362604464449}, {"destination": 1316623322, "path": [[250.11543844755124, -649.0976943229754], [197.4154384498661, -889.4976943221167], [197.4154384498661, -928.4476943225428]], "source": 1316623695, "length": 63.05582287613221}, {"destination": 3724313004, "path": [[250.11543844755124, -649.0976943229754], [14.665438449412704, -611.4476943217539]], "source": 1316623695, "length": 45.55140138430699}, {"destination": 477629492, "path": [[-3399.234561555886, -7371.947694322145], [-3266.8845615546616, -7029.797694322326]], "source": 850261330, "length": 80.14434331729336}, {"destination": 599408886, "path": [[-3399.234561555886, -7371.947694322145], [-3345.634561554789, -7378.197694322353]], "source": 850261330, "length": 10.285499417213108}, {"destination": 4715079372, "path": [[-206.98456155088252, -4198.547694322486], [-200.08456155551357, -4184.097694322375]], "source": 4715107668, "length": 3.4700166639504486}, {"destination": 1888338548, "path": [[-206.98456155088252, -4198.547694322486], [-217.6845615551315, -4193.647694322067], [-255.9845615550671, -4173.6476943228245], [-279.4845615525787, -4153.997694322342], [-290.4845615532281, -4138.797694322349], [-297.28456155453387, -4119.147694321868], [-303.03456155422737, -4108.397694322363], [-316.8345615520707, -4093.2476943229544]], "source": 4715107668, "length": 32.52190274899849}, {"destination": 1316623490, "path": [[2193.8654384499046, -723.4476943231982], [2168.8654384490746, -817.0976943233654]], "source": 1316623701, "length": 21.362792735061422}, {"destination": 1316623387, "path": [[2193.8654384499046, -723.4476943231982], [2218.865438443629, -629.8976943224233]], "source": 1316623701, "length": 21.34084320896864}, {"destination": 1316623306, "path": [[2193.8654384499046, -723.4476943231982], [2045.3154384441063, -689.9476943225125], [1852.1654384500152, -696.7976943226262]], "source": 1316623701, "length": 65.97814061571313}, {"destination": 1316623726, "path": [[2193.8654384499046, -723.4476943231982], [2359.115438444803, -722.0476943228249], [2476.5654384495406, -745.1976943233518]], "source": 1316623701, "length": 54.348083135219134}, {"destination": 5017787784, "path": [[-8357.784561553672, -992.4476943226068], [-8381.284561551183, -1032.2976943228923]], "source": 4715107670, "length": 9.925634493411941}, {"destination": 476794486, "path": [[-8357.784561553672, -992.4476943226068], [-8829.884561556866, -799.7476943231163], [-8931.784561553968, -757.1476943226685]], "source": 4715107670, "length": 121.05181450187725}, {"destination": 1890531871, "path": [[-8357.784561553672, -992.4476943226068], [-8330.28456155205, -945.9476943227685], [-8313.034561552968, -916.6976943220106]], "source": 4715107670, "length": 18.873674300930567}, {"destination": 882614840, "path": [[514.2154384429887, -2302.397694322167], [512.465438447407, -2115.5476943217623]], "source": 1316623703, "length": 41.55494230404102}, {"destination": 4075546746, "path": [[514.2154384429887, -2302.397694322167], [515.3654384457695, -2502.6976943234304]], "source": 1316623703, "length": 44.54525863360515}, {"destination": 1316623575, "path": [[514.2154384429887, -2302.397694322167], [664.1154384467995, -2304.597694323007], [772.4654384446694, -2318.5476943226035]], "source": 1316623703, "length": 49.345522781313555}, {"destination": 4273376066, "path": [[263.1154384431511, -1395.3476943218134], [308.96543844960433, -1253.4976943232577], [320.2654384466541, -1206.7976943228587]], "source": 1316623705, "length": 43.33494695226881}, {"destination": 481385195, "path": [[263.1154384431511, -1395.3476943218134], [252.8654384477136, -1427.0476943227804], [247.2154384491887, -1489.4476943219104], [248.76543844953858, -1679.6476943223838]], "source": 1316623705, "length": 63.53234131004206}, {"destination": 1316623350, "path": [[263.1154384431511, -1395.3476943218134], [188.7654384447046, -1371.5476943225724], [216.61543844686548, -1280.997694323105], [219.91543844990247, -1215.0476943233457], [213.36543844796552, -1155.3976943226019]], "source": 1316623705, "length": 63.92417676539022}, {"destination": 1887854441, "path": [[-4684.13456155048, -7049.697694322177], [-4157.534561556986, -7249.147694322389]], "source": 850261339, "length": 109.51377160733969}, {"destination": 477640461, "path": [[-4684.13456155048, -7049.697694322177], [-4748.984561551595, -7189.647694323397], [-4808.134561550049, -7321.147694321795]], "source": 850261339, "length": 64.8095248420133}, {"destination": 1316623692, "path": [[-237.1345615514997, -841.2976943219519], [-226.38456155021913, -747.2476943224393]], "source": 1316623708, "length": 21.01549702297807}, {"destination": 1316623254, "path": [[-237.1345615514997, -841.2976943219519], [-456.1845615569382, -843.3476943228158]], "source": 1316623708, "length": 41.658701746846525}, {"destination": 1316623543, "path": [[-237.1345615514997, -841.2976943219519], [-272.8345615565786, -1082.5976943227288]], "source": 1316623708, "length": 54.09054027996971}, {"destination": 1316623553, "path": [[2903.6154384485258, -770.1976943224054], [2898.2654384464013, -850.4976943228826], [2866.565438445434, -978.4476943224263]], "source": 1316623710, "length": 46.97341451450937}, {"destination": 85011298, "path": [[-7866.684561555814, 1521.0523056765624], [-7873.284561554783, 1490.2023056766466], [-7889.084561554682, 1444.6523056772521]], "source": 4333704543, "length": 17.541028297463306}, {"destination": 4333704619, "path": [[-7866.684561555814, 1521.0523056765624], [-7796.934561554281, 1840.7023056781213], [-7785.184561555525, 1920.4523056775001]], "source": 4333704543, "length": 90.18987344955863}, {"destination": 2629533650, "path": [[-7866.684561555814, 1521.0523056765624], [-7959.984561551892, 1551.552305677717], [-7987.0845615559465, 1560.2523056781338], [-7976.784561556371, 1580.1523056779843], [-7996.38456155094, 1588.0523056779339], [-7981.934561556159, 1623.5523056771228], [-8012.884561551914, 1635.8523056769768], [-8031.484561556113, 1652.1523056773901], [-8049.584561554468, 1681.0023056770262], [-8046.684561556105, 1698.8523056777894]], "source": 4333704543, "length": 64.66610788651616}, {"destination": 4333704545, "path": [[-7985.634561556764, 2478.102305676799], [-7662.4345615528, 2388.352305677799]], "source": 4333704544, "length": 64.62600103699891}, {"destination": 85010251, "path": [[-7985.634561556764, 2478.102305676799], [-7979.884561549966, 2492.7023056768858], [-7920.684561554481, 2641.4023056773317], [-7915.334561552356, 2651.2023056781686], [-7906.9845615507, 2659.152305676926], [-7898.234561551476, 2665.202305676573], [-7886.734561552089, 2669.4023056776928], [-7875.084561554502, 2672.102305677271], [-7863.434561556915, 2671.352305677388], [-7851.73456155519, 2669.6023056782537], [-7789.684561551268, 2651.902305677467], [-7663.684561556749, 2616.6023056770628], [-7615.084561550134, 2605.6023056781896], [-7600.584561551215, 2602.1023056781446]], "source": 4333704544, "length": 104.51821731132877}, {"destination": 251086533, "path": [[-7985.634561556764, 2478.102305676799], [-8041.73456155155, 2326.3523056780145]], "source": 4333704544, "length": 35.393986631780415}, {"destination": 4333704544, "path": [[-7662.4345615528, 2388.352305677799], [-7985.634561556764, 2478.102305676799]], "source": 4333704545, "length": 64.62600103699891}, {"destination": 85010251, "path": [[-7662.4345615528, 2388.352305677799], [-7600.584561551215, 2602.1023056781446]], "source": 4333704545, "length": 48.969569506507845}, {"destination": 152848137, "path": [[1736.865438445534, -1442.2476943227734], [1715.4154384471099, -1536.2476943234783], [1719.4654384482533, -1628.9976943220097]], "source": 1316623714, "length": 41.93997248329492}, {"destination": 1316623410, "path": [[1736.865438445534, -1442.2476943227734], [1927.2654384465682, -1481.1976943231998]], "source": 1316623714, "length": 37.22921747172034}, {"destination": 1316623373, "path": [[1736.865438445534, -1442.2476943227734], [1649.1154384468132, -1410.1976943230454]], "source": 1316623714, "length": 18.145586072547793}, {"destination": 477639369, "path": [[-5755.034561552464, -6777.197694322723], [-5531.184561554881, -6827.147694322022]], "source": 420697447, "length": 43.989436535780186}, {"destination": 477640827, "path": [[-5755.034561552464, -6777.197694322723], [-5801.484561551717, -6896.047694322505]], "source": 420697447, "length": 27.867713547369025}, {"destination": 1316623385, "path": [[1277.0654384439695, -1107.447694321806], [1279.7154384429632, -1155.5976943231626]], "source": 1316623722, "length": 10.720560285392176}, {"destination": 1316623235, "path": [[1277.0654384439695, -1107.447694321806], [1358.6654384454278, -1118.8476943218006]], "source": 1316623722, "length": 15.723210731562148}, {"destination": 1316623486, "path": [[1277.0654384439695, -1107.447694321806], [1275.5154384436196, -1079.8476943225664], [1283.4654384477062, -1045.847694323143]], "source": 1316623722, "length": 13.856612689781132}, {"destination": 1316623663, "path": [[1277.0654384439695, -1107.447694321806], [1106.515438443978, -1088.997694322913], [968.4154384430599, -1063.147694322808]], "source": 1316623722, "length": 59.57527059713445}, {"destination": 475975536, "path": [[71.61543844347307, -1681.1976943227337], [-207.08456155205113, -1701.1976943219765]], "source": 1316623723, "length": 53.185028685988414}, {"destination": 1316623209, "path": [[71.61543844347307, -1681.1976943227337], [95.66543844385933, -1428.8476943224991], [86.01543844832804, -1397.7976943220228]], "source": 1316623723, "length": 63.45103395920274}, {"destination": 481385195, "path": [[71.61543844347307, -1681.1976943227337], [248.76543844953858, -1679.6476943223838]], "source": 1316623723, "length": 33.68937336417257}, {"destination": 1316623506, "path": [[2476.5654384495406, -745.1976943233518], [2469.1654384483286, -818.9976943224764]], "source": 1316623726, "length": 16.4725969624295}, {"destination": 1316623701, "path": [[2476.5654384495406, -745.1976943233518], [2359.115438444803, -722.0476943228249], [2193.8654384499046, -723.4476943231982]], "source": 1316623726, "length": 54.348083135219134}, {"destination": 1316623389, "path": [[2476.5654384495406, -745.1976943233518], [2487.8654384465904, -632.5976943220013], [2496.9654384463524, -412.8976943231777]], "source": 1316623726, "length": 74.02314951086262}, {"destination": 267198397, "path": [[-6698.184561550135, -4550.697694321926], [-6771.18456155057, -4901.747694322722]], "source": 267198013, "length": 79.29444669101538}, {"destination": 267198014, "path": [[-6698.184561550135, -4550.697694321926], [-5972.384561552246, -4714.447694322388]], "source": 267198013, "length": 142.73645609206886}, {"destination": 1316623318, "path": [[-921.084561554153, -423.8976943220507], [-937.1845615504526, -467.4476943229422]], "source": 1316623729, "length": 10.157647598979924}, {"destination": 1316623570, "path": [[1463.26543844566, -820.6476943222185], [1503.5154384435145, -733.497694323404]], "source": 1316623731, "length": 20.83784076398905}, {"destination": 1316623520, "path": [[2533.715438445938, -1471.447694322947], [2512.0154384481452, -1414.6976943223422], [2469.1154384441916, -1403.247694321763], [2466.4154384481662, -1355.0476943233748], [2412.7654384500374, -1348.197694323261], [2407.415438447913, -1327.5476943217514]], "source": 1316623734, "length": 47.5744306976442}, {"destination": 1316623297, "path": [[2533.715438445938, -1471.447694322947], [2568.315438445268, -1446.7976943226545], [2691.7154384449304, -1357.347694321831]], "source": 1316623734, "length": 39.32715599576029}, {"destination": 1316623437, "path": [[2533.715438445938, -1471.447694322947], [2503.9654384499954, -1492.6976943225868]], "source": 1316623734, "length": 7.370805532412555}, {"destination": 1316623505, "path": [[2329.015438448323, -1084.8476943223773], [2271.415438443114, -1073.6476943229434]], "source": 1316623736, "length": 11.2329118081482}, {"destination": 1316623346, "path": [[2329.015438448323, -1084.8476943223773], [2496.665438449952, -1117.3976943226194]], "source": 1316623736, "length": 32.69295652326627}, {"destination": 1316623497, "path": [[2329.015438448323, -1084.8476943223773], [2361.815438447934, -919.2976943221964]], "source": 1316623736, "length": 37.341377221646}, {"destination": 267195122, "path": [[-4901.6845615526, -5047.7476943218135], [-5138.734561555225, -5350.597694322445]], "source": 267198015, "length": 81.04261455455313}, {"destination": 1315678567, "path": [[-4901.6845615526, -5047.7476943218135], [-4368.684561555369, -5251.547694323122]], "source": 267198015, "length": 111.02283760987544}, {"destination": 1316623745, "path": [[1063.3154384436239, -616.447694323341], [1049.0654384440745, -682.3976943231003]], "source": 1316623742, "length": 14.914836789481503}, {"destination": 1316623570, "path": [[1063.3154384436239, -616.447694323341], [1195.0654384449422, -644.0476943225804], [1503.5154384435145, -733.497694323404]], "source": 1316623742, "length": 87.73449755525301}, {"destination": 773662878, "path": [[1063.3154384436239, -616.447694323341], [1097.4654384483529, -462.6976943225003]], "source": 1316623742, "length": 34.80377481088702}, {"destination": 1316623543, "path": [[-443.2345615512645, -1061.1476943225284], [-401.88456155476615, -1066.4476943222921], [-272.8345615565786, -1082.5976943227288]], "source": 1316623744, "length": 32.75313151929532}, {"destination": 1316623230, "path": [[-443.2345615512645, -1061.1476943225284], [-465.13456155139465, -1163.2476943219672], [-483.08456155155, -1246.9476943230973]], "source": 1316623744, "length": 42.00925723967864}, {"destination": 1316623687, "path": [[-443.2345615512645, -1061.1476943225284], [-499.18456155495505, -1054.2476943218303], [-542.2845615541405, -1048.6976943226978]], "source": 1316623744, "length": 19.03819364950543}, {"destination": 1316623568, "path": [[1049.0654384440745, -682.3976943231003], [1168.215438447362, -708.2976943220132]], "source": 1316623745, "length": 23.3791873990403}, {"destination": 1316623421, "path": [[1049.0654384440745, -682.3976943231003], [1037.6154384488245, -735.4976943219071]], "source": 1316623745, "length": 12.007737286608343}, {"destination": 1316623742, "path": [[1049.0654384440745, -682.3976943231003], [1063.3154384436239, -616.447694323341]], "source": 1316623745, "length": 14.914836789481503}, {"destination": 599408844, "path": [[-2821.7845615543524, -5696.047694321749], [-2760.634561553843, -5705.597694323216]], "source": 267198017, "length": 11.820128491580974}, {"destination": 267194965, "path": [[-2821.7845615543524, -5696.047694321749], [-2645.6845615570046, -5100.647694321836]], "source": 267198017, "length": 136.57952510681238}, {"destination": 1581175659, "path": [[2361.0654384498275, -6420.3476943234255], [2385.915438445352, -6421.1976943227], [2404.715438444782, -6431.497694322275], [2408.715438448894, -6449.847694321776]], "source": 1581175594, "length": 13.124574768937325}, {"destination": 602364054, "path": [[2361.0654384498275, -6420.3476943234255], [2223.26543844531, -6283.197694322951]], "source": 1581175594, "length": 40.21005887511152}, {"destination": 1581175607, "path": [[2361.0654384498275, -6420.3476943234255], [2351.0654384466534, -6434.947694321735], [2353.715438445647, -6453.297694323012]], "source": 1581175594, "length": 7.873568902969479}, {"destination": 495646690, "path": [[7941.465438449313, -7282.997694321835], [7924.165438446096, -7338.097694322698]], "source": 495646795, "length": 12.687650783466397}, {"destination": 495646348, "path": [[7941.465438449313, -7282.997694321835], [7970.015438445444, -7238.3976943228845], [7975.515438445768, -7224.99769432261], [7989.315438443611, -7188.297694321833]], "source": 495646795, "length": 23.037659718929895}, {"destination": 495646546, "path": [[7941.465438449313, -7282.997694321835], [7893.415438445572, -7262.297694323294]], "source": 495646795, "length": 10.231027268305533}, {"destination": 479442881, "path": [[-9145.434561553146, -3535.7976943224403], [-9064.084561551055, -3609.4476943233644], [-9019.384561554489, -3632.6976943232835], [-8927.434561556423, -3678.6476943220237]], "source": 476681114, "length": 52.73098818305203}, {"destination": 1469016599, "path": [[-6092.484561555977, -958.9476943219211], [-6138.334561555325, -1004.6476943230687]], "source": 1469016698, "length": 13.3909447276702}, {"destination": 476562079, "path": [[4430.265438443826, 8158.002305677314], [4940.965438443356, 7702.852305676799], [5162.865438443021, 7560.0523056778], [5238.315438447216, 7507.5023056765385]], "source": 482734405, "length": 211.61616117823553}, {"destination": 882614840, "path": [[508.9654384491382, -1681.7476943220554], [512.465438447407, -2115.5476943217623]], "source": 967330147, "length": 96.47514052614152}, {"destination": 476078905, "path": [[508.9654384491382, -1681.7476943220554], [831.5654384460913, -1683.7976943229194]], "source": 967330147, "length": 61.34885991393485}, {"destination": 481385195, "path": [[508.9654384491382, -1681.7476943220554], [248.76543844953858, -1679.6476943223838]], "source": 967330147, "length": 49.48303926958629}, {"destination": 857780861, "path": [[-7785.184561555525, 1920.4523056775001], [-7694.884561551873, 1914.252305677877], [-7613.634561550953, 1910.80230567664], [-7508.484561554951, 1912.0023056782288], [-7410.234561554318, 1929.9023056777996], [-7302.684561551587, 1961.6523056775748], [-7194.734561551286, 2014.3023056782283], [-7045.834561552056, 2085.502305677167], [-7013.084561556581, 2098.1023056769745]], "source": 4333704619, "length": 156.34921814995963}, {"destination": 71129470, "path": [[-7785.184561555525, 1920.4523056775001], [-7775.634561554057, 1988.902305678053], [-7759.934561555327, 2060.8023056780667], [-7705.134561554416, 2240.7523056777736]], "source": 4333704619, "length": 72.9503824817607}, {"destination": 4333704543, "path": [[-7785.184561555525, 1920.4523056775001], [-7796.934561554281, 1840.7023056781213], [-7866.684561555814, 1521.0523056765624]], "source": 4333704619, "length": 90.18987344955863}, {"destination": 4267598457, "path": [[9977.16543844973, -409.9976943230388], [10011.115438445016, -328.9476943226788]], "source": 85521110, "length": 19.14638437887492}, {"destination": 4867879907, "path": [[9977.16543844973, -409.9976943230388], [9264.665438443843, -126.2476943217905], [9086.115438449837, -52.19769432329713]], "source": 85521110, "length": 187.20786060513436}, {"destination": 114903203, "path": [[9977.16543844973, -409.9976943230388], [9954.165438443852, -461.84769432322526]], "source": 85521110, "length": 12.332839785856294}, {"destination": 1205016001, "path": [[4936.715438446981, -6561.097694323336], [5044.015438443239, -6613.847694323383]], "source": 1205015989, "length": 23.534798061868536}, {"destination": 3344153898, "path": [[4936.715438446981, -6561.097694323336], [4873.015438448647, -6546.797694323203]], "source": 1205015989, "length": 12.522843566287147}, {"destination": 620136814, "path": [[4936.715438446981, -6561.097694323336], [4922.865438445001, -6592.097694323229]], "source": 1205015989, "length": 7.380581140862841}, {"destination": 1785697755, "path": [[4384.665438443846, -6594.947694322784], [4365.215438447478, -6627.197694323073]], "source": 1785697718, "length": 8.069511726499144}, {"destination": 3344153901, "path": [[4384.665438443846, -6594.947694322784], [4471.865438446798, -6633.547694322672]], "source": 1785697718, "length": 18.67092996981754}, {"destination": 1316236732, "path": [[-2947.284561550134, 1796.3523056767626], [-2975.6345615510327, 1737.2523056771172]], "source": 1316236873, "length": 14.206096945091547}, {"destination": 1316236669, "path": [[-2947.284561550134, 1796.3523056767626], [-2935.884561551916, 1820.0023056778036]], "source": 1316236873, "length": 5.688209136988695}, {"destination": 1316237007, "path": [[-2947.284561550134, 1796.3523056767626], [-3144.8345615530116, 1913.4023056768256]], "source": 1316236873, "length": 45.70665366749852}, {"destination": 2049850521, "path": [[5126.615438449278, -6763.6476943224725], [5197.715438448824, -6742.497694322225]], "source": 1785697720, "length": 14.31385809204528}, {"destination": 1317671173, "path": [[3354.965438447266, 272.2523056775117], [3434.6154384437, 255.10230567782344]], "source": 1317670913, "length": 15.619691759258002}, {"destination": 1317670798, "path": [[3354.965438447266, 272.2523056775117], [3303.3654384482247, 69.25230567667029]], "source": 1317670913, "length": 46.19933090932258}, {"destination": 1317670775, "path": [[3354.965438447266, 272.2523056775117], [3252.1654384467524, 294.40230567701065]], "source": 1317670913, "length": 20.16098689920379}, {"destination": 1928818241, "path": [[-9119.084561554302, -4371.047694322172], [-9088.484561551979, -4285.397694323123]], "source": 1928818250, "length": 19.916539569698834}, {"destination": 1928818236, "path": [[-9119.084561554302, -4371.047694322172], [-9195.084561554268, -4229.397694322401], [-9174.984561553856, -4192.797694322791], [-9078.134561555373, -4258.397694322013]], "source": 1928818250, "length": 67.14509315847238}, {"destination": 1928818255, "path": [[-9119.084561554302, -4371.047694322172], [-9095.83456155616, -4410.797694323065]], "source": 1928818250, "length": 9.883321082728168}, {"destination": 1205015989, "path": [[5044.015438443239, -6613.847694323383], [4936.715438446981, -6561.097694323336]], "source": 1205016001, "length": 23.534798061868536}, {"destination": 1769172169, "path": [[5350.665438449198, -7075.347694321721], [5243.865438444573, -7132.14769432291], [5212.665438449449, -7113.197694321727], [5055.465438445594, -7171.247694323312]], "source": 1205016002, "length": 63.75164980731981}, {"destination": 620136803, "path": [[5350.665438449198, -7075.347694321721], [5228.565438443411, -6976.297694322398], [5094.765438443005, -6951.197694322175]], "source": 1205016002, "length": 58.05010857316231}, {"destination": 1779952829, "path": [[5350.665438449198, -7075.347694321721], [5369.51543844566, -7042.847694322063], [5880.46543844456, -6877.397694323051], [5820.115438446293, -6753.847694323412], [6029.315438446758, -6675.897694321975], [6394.065438449559, -6532.2976943225085]], "source": 1205016002, "length": 261.47775008859287}, {"destination": 495646003, "path": [[7986.16543844588, -6455.197694322123], [7945.665438448657, -6462.1976943222135], [7876.315438444692, -6480.597694322299]], "source": 495646147, "length": 21.664455327154442}, {"destination": 495646197, "path": [[7986.16543844588, -6455.197694322123], [7967.315438449418, -6315.597694323216]], "source": 495646147, "length": 31.252075185651126}, {"destination": 495645990, "path": [[7986.16543844588, -6455.197694322123], [8060.315438449095, -6479.947694321808], [8113.565438449655, -6520.947694323098], [8154.165438448046, -6586.847694322273], [8164.86543844519, -6675.797694322583], [8139.2154384474225, -6763.497694322496], [8097.165438449849, -6853.547694323225]], "source": 495646147, "length": 106.87919723874454}, {"destination": 63308072, "path": [[4955.3654384482115, -6990.247694321994], [4915.365438449726, -7021.397694321862], [4865.715438448604, -7039.847694322532]], "source": 1785697732, "length": 20.581072530488008}, {"destination": 1993253324, "path": [[4955.3654384482115, -6990.247694321994], [4952.815438443281, -7031.247694323284], [4965.265438443112, -7080.4476943227], [5018.115438446102, -7186.597694323283]], "source": 1785697732, "length": 45.98220047475173}, {"destination": 1316236386, "path": [[-390.73456155591657, 2932.052305677502], [-301.28456155154026, 2882.352305677571], [-287.08456155612794, 2865.652305677813]], "source": 639308705, "length": 24.879689980238027}, {"destination": 1316237212, "path": [[-390.73456155591657, 2932.052305677502], [-659.5845615535723, 3081.4023056766614]], "source": 639308705, "length": 60.971611452130354}, {"destination": 1316236423, "path": [[-390.73456155591657, 2932.052305677502], [-609.1345615502064, 2555.4523056765534]], "source": 639308705, "length": 93.4860971209864}, {"destination": 84466485, "path": [[8259.665438444586, -8237.747694321839], [8653.61543844756, -7730.197694321816], [8970.765438448325, -7326.797694322096]], "source": 602360641, "length": 243.5633424617758}, {"destination": 1890531930, "path": [[-8166.1845615528255, -992.1476943226537], [-7768.184561555813, -1161.097694321711], [-7654.134561555282, -1219.5476943226424]], "source": 103896524, "length": 109.78487462609266}, {"destination": 1317671000, "path": [[3167.5154384487314, 192.95230567806243], [3072.065438445293, 198.25230567782626]], "source": 1317670957, "length": 18.190233270732964}, {"destination": 1317671306, "path": [[3167.5154384487314, 192.95230567806243], [3176.965438449031, 310.6023056780316]], "source": 1317670957, "length": 26.225902371834508}, {"destination": 1317670983, "path": [[3167.5154384487314, 192.95230567806243], [3163.465438447588, 142.0023056777353], [3144.4654384458204, -29.297694322139023]], "source": 1317670957, "length": 49.62350874243774}, {"destination": 1993253315, "path": [[4388.265438443284, -7063.597694322965], [4514.365438446077, -6993.197694322717]], "source": 1785697742, "length": 28.63605784565753}, {"destination": 1785697735, "path": [[4388.265438443284, -7063.597694322965], [4400.315438445546, -7034.697694322745], [4500.365438445897, -6976.997694323472]], "source": 1785697742, "length": 29.771031720054168}, {"destination": 1785697720, "path": [[5288.015438445371, -6872.697694323193], [5262.365438447603, -6865.097694323196], [5240.515438444504, -6861.8476943225205], [5210.765438448561, -6868.847694322611], [5187.015438444576, -6876.147694322654], [5168.9654384432515, -6879.647694322699], [5143.115438443147, -6882.497694322254], [5119.815438447972, -6879.947694322653], [5102.165438444217, -6870.64769432233], [5089.6154384432175, -6858.097694323106], [5079.765438445349, -6843.747694322388], [5076.215438442943, -6829.447694322254], [5077.965438445631, -6813.647694322355], [5084.215438444062, -6799.44769432339], [5101.015438448541, -6782.747694321855], [5126.615438449278, -6763.6476943224725]], "source": 1785697745, "length": 65.81783916127773}, {"destination": 63308068, "path": [[5288.015438445371, -6872.697694323193], [5283.1654384490885, -6874.247694321767], [5199.665438446744, -6897.1476943229245], [5033.515438448432, -6937.597694323116], [4972.515438446124, -6967.447694322004]], "source": 1785697745, "length": 63.86316187735174}, {"destination": 3629684453, "path": [[4560.565438445963, -6746.697694323345], [4496.7654384464595, -6720.797694322656], [4409.715438448813, -6687.097694323185]], "source": 1785697747, "length": 31.59891319638625}, {"destination": 1315785490, "path": [[-4001.534561552944, 1567.602305676985], [-4256.884561556262, 1669.5023056776392]], "source": 4705342936, "length": 53.5893485968274}, {"destination": 385113763, "path": [[-4001.534561552944, 1567.602305676985], [-3632.1345615561995, 1420.2023056775204]], "source": 4705342936, "length": 77.52307870336811}, {"destination": 1315785314, "path": [[-4001.534561552944, 1567.602305676985], [-4046.8845615535542, 1477.2023056774942]], "source": 4705342936, "length": 21.875974723931243}, {"destination": 1928818250, "path": [[-9095.83456155616, -4410.797694323065], [-9119.084561554302, -4371.047694322172]], "source": 1928818255, "length": 9.883321082728168}, {"destination": 1928818258, "path": [[-9095.83456155616, -4410.797694323065], [-8999.384561555245, -4425.597694321937]], "source": 1928818255, "length": 18.63348200999962}, {"destination": 848698010, "path": [[6577.065438449381, -5100.197694321906], [6575.165438448494, -5141.097694322028]], "source": 63305187, "length": 9.102916961448612}, {"destination": 495771117, "path": [[6577.065438449381, -5100.197694321906], [6466.765438446487, -5103.397694321999]], "source": 63305187, "length": 20.985669986497108}, {"destination": 848698182, "path": [[7016.21543844766, -3017.84769432345], [7638.915438448635, -3156.147694323153], [8311.415438448932, -3300.547694323086]], "source": 84489700, "length": 254.19311879554976}, {"destination": 495771183, "path": [[7016.21543844766, -3017.84769432345], [6961.465438443782, -3132.747694323257]], "source": 84489700, "length": 27.59209773930206}, {"destination": 1328999596, "path": [[3632.0654384454087, 6796.952305677451], [3558.615438443269, 7175.252305676949]], "source": 856909369, "length": 85.28224820627979}, {"destination": 476562102, "path": [[3632.0654384454087, 6796.952305677451], [3682.365438443469, 6529.10230567727]], "source": 856909369, "length": 60.33055208256037}, {"destination": 1328999487, "path": [[3632.0654384454087, 6796.952305677451], [3419.5654384490126, 6768.852305677698], [3285.265438449869, 6749.502305677169]], "source": 856909369, "length": 66.8010857393169}, {"destination": 4394577740, "path": [[-1743.2845615559245, -8122.497694323272], [-1746.6845615530247, -7960.597694323113], [-1982.434561554669, -7808.597694323183]], "source": 103831022, "length": 92.15339552659245}, {"destination": 103795804, "path": [[-1743.2845615559245, -8122.497694323272], [-2024.8345615527796, -8124.397694322382], [-2053.434561553047, -8121.597694323413], [-2090.7345615555073, -8112.847694322411]], "source": 103831022, "length": 66.36348003286156}, {"destination": 1883276500, "path": [[-1743.2845615559245, -8122.497694323272], [-1608.2845615557062, -8119.847694322501], [-1330.1345615559512, -8118.147694322175]], "source": 103831022, "length": 78.56392185286958}, {"destination": 495771025, "path": [[7967.315438449418, -6315.597694323216], [7901.865438448396, -6300.89769432196], [7956.915438448676, -6088.1476943226435], [7959.065438448932, -6065.197694322677]], "source": 495646197, "length": 66.44497645113888}, {"destination": 495646147, "path": [[7967.315438449418, -6315.597694323216], [7986.16543844588, -6455.197694322123]], "source": 495646197, "length": 31.252075185651126}, {"destination": 495771029, "path": [[7967.315438449418, -6315.597694323216], [8061.46543844477, -6336.047694322388], [8133.015438446023, -6115.847694323051], [8145.365438444685, -6086.647694322877]], "source": 495646197, "length": 76.20033170088212}, {"destination": 1316472160, "path": [[506.3654384471761, 4544.352305677179], [489.6154384468332, 4505.302305677361], [461.2154384489031, 4462.702305676913]], "source": 1316471721, "length": 20.155423588325633}, {"destination": 1316471921, "path": [[506.3654384471761, 4544.352305677179], [374.26543844532034, 4576.402305676907], [289.1154384485617, 4597.0523056766415]], "source": 1316471721, "length": 42.948305408242256}, {"destination": 1316471844, "path": [[506.3654384471761, 4544.352305677179], [618.3154384444833, 4530.55230567756]], "source": 1316471721, "length": 21.511832638156545}, {"destination": 1316472141, "path": [[506.3654384471761, 4544.352305677179], [540.015438446062, 4622.7523056767695]], "source": 1316471721, "length": 18.57292297273347}, {"destination": 1489398832, "path": [[4347.815438443093, -4717.447694321919], [4274.915438443827, -4790.097694321816], [4120.415438443104, -4947.897694322023], [4047.9654384455444, -5054.047694322606]], "source": 554685947, "length": 94.38796492794387}, {"destination": 602360657, "path": [[4347.815438443093, -4717.447694321919], [4669.315438448507, -4991.84769432226], [4926.765438447945, -5149.647694322468], [5003.415438444847, -5193.397694322144]], "source": 554685947, "length": 164.1356393189868}, {"destination": 1721498027, "path": [[4347.815438443093, -4717.447694321919], [4275.015438444996, -4671.197694323226]], "source": 554685947, "length": 17.245877672565754}, {"destination": 84488206, "path": [[4347.815438443093, -4717.447694321919], [4529.41543844787, -4536.397694321792], [4698.115438444006, -4407.047694321875]], "source": 554685947, "length": 96.13123020747881}, {"destination": 267195122, "path": [[-5698.234561556603, -5152.097694322677], [-5550.53456155008, -5199.7976943223275], [-5138.734561555225, -5350.597694322445]], "source": 477615613, "length": 115.20504022245915}, {"destination": 267198436, "path": [[-5698.234561556603, -5152.097694322677], [-6086.234561550441, -5057.097694322721]], "source": 477615613, "length": 76.74383268616789}, {"destination": 477615647, "path": [[-5698.234561556603, -5152.097694322677], [-5370.1345615522205, -4955.297694323235], [-5332.484561556328, -4921.397694323204], [-5309.834561550986, -4891.597694323124]], "source": 477615613, "length": 94.50890175336544}, {"destination": 1469016698, "path": [[-6138.334561555325, -1004.6476943230687], [-6092.484561555977, -958.9476943219211]], "source": 1469016599, "length": 13.3909447276702}, {"destination": 1469016579, "path": [[-6138.334561555325, -1004.6476943230687], [-6066.884561555242, -1051.3476943234677]], "source": 1469016599, "length": 17.102085171834293}, {"destination": 1469016620, "path": [[-6138.334561555325, -1004.6476943230687], [-6301.734561553474, -1167.6476943218718]], "source": 1469016599, "length": 47.745066584398124}, {"destination": 1469016730, "path": [[-6138.334561555325, -1004.6476943230687], [-6280.734561556756, -921.9476943229665]], "source": 1469016599, "length": 32.73497045657092}, {"destination": 495646351, "path": [[8059.115438449282, -6909.147694322826], [7999.86543844966, -6977.49769432221], [7966.065438445468, -7039.647694321971], [7936.965438446464, -7081.497694322536], [7889.015438443892, -7128.4976943228885], [7856.015438449049, -7160.347694322056]], "source": 495646219, "length": 68.3234678975776}, {"destination": 495645990, "path": [[8059.115438449282, -6909.147694322826], [8097.165438449849, -6853.547694323225]], "source": 495646219, "length": 14.326131026675995}, {"destination": 495646343, "path": [[8059.115438449282, -6909.147694322826], [8080.51543844357, -6956.047694322009], [8088.715438447025, -6976.4976943229585], [8084.415438446513, -7001.7976943219655], [8077.26543844467, -7026.747694322211]], "source": 495646219, "length": 27.400843960782154}, {"destination": 1316471718, "path": [[1565.165438449867, 3879.2023056775092], [1473.965438449909, 3899.7523056778505], [1409.8154384498685, 3900.3023056771726]], "source": 1316471725, "length": 30.137976776627916}, {"destination": 4676163097, "path": [[289.6154384472993, -4229.19769432184], [316.0654384473105, -4246.647694323257], [326.2654384457164, -4259.397694323042], [332.6654384494532, -4271.8476943228725], [333.0154384499906, -4282.647694322961], [328.31543844480393, -4298.097694322322], [321.415438449435, -4308.297694322505], [306.9154384434114, -4316.297694321846], [291.86543844872403, -4320.647694322944], [270.91543844903754, -4321.44769432341], [244.26543844668913, -4317.397694322267]], "source": 4676163090, "length": 36.82846682242849}, {"destination": 1887596191, "path": [[289.6154384472993, -4229.19769432184], [418.31543844494945, -4271.147694321798]], "source": 4676163090, "length": 26.19082581781695}, {"destination": 1888338548, "path": [[244.26543844668913, -4317.397694322267], [183.56543844788575, -4298.397694322276], [109.76543844520847, -4274.797694321819], [-25.834561554916036, -4223.047694322801], [-186.88456155047106, -4152.847694323114], [-316.8345615520707, -4093.2476943229544]], "source": 4676163097, "length": 117.92661995865441}, {"destination": 4715107669, "path": [[244.26543844668913, -4317.397694322267], [226.465438444734, -4316.5976943218], [210.56543844366615, -4316.5976943218], [191.36543844666676, -4319.147694323177], [164.06543844738053, -4321.947694322148], [144.76543844921252, -4323.797694322451], [118.36543844623293, -4322.847694322008], [102.86543844983953, -4319.897694323061]], "source": 4676163097, "length": 27.074862316009256}, {"destination": 1319204547, "path": [[4602.165438448936, 4140.302305676968], [4443.165438445362, 4126.852305677886]], "source": 1319204487, "length": 30.38734738582474}, {"destination": 1319204590, "path": [[4602.165438448936, 4140.302305676968], [4610.215438447085, 4059.052305677824]], "source": 1319204487, "length": 18.133910094401962}, {"destination": 1319641255, "path": [[4602.165438448936, 4140.302305676968], [4591.565438445855, 4247.702305677947]], "source": 1319204487, "length": 23.969645623767985}, {"destination": 1316623648, "path": [[2458.165438447679, -1248.9476943233767], [2385.965438449489, -1233.4976943222387], [2238.4154384482713, -1203.697694322159]], "source": 1316623202, "length": 42.98434289247357}, {"destination": 1316623346, "path": [[2458.165438447679, -1248.9476943233767], [2479.8154384484405, -1194.4976943230045], [2496.665438449952, -1117.3976943226194]], "source": 1316623202, "length": 30.23270465241738}, {"destination": 1316623375, "path": [[2458.165438447679, -1248.9476943233767], [2525.4154384484195, -1263.3476943229027], [2619.315438444403, -1286.2476943222846], [2718.4154384443104, -1315.697694321827]], "source": 1316623202, "length": 51.70363421316307}, {"destination": 477615666, "path": [[-5309.834561550986, -4891.597694323124], [-4997.8345615500075, -4418.9476943223835]], "source": 477615647, "length": 120.69978978209569}, {"destination": 477615613, "path": [[-5309.834561550986, -4891.597694323124], [-5332.484561556328, -4921.397694323204], [-5370.1345615522205, -4955.297694323235], [-5698.234561556603, -5152.097694322677]], "source": 477615647, "length": 94.50890175336544}, {"destination": 267198015, "path": [[-5309.834561550986, -4891.597694323124], [-4901.6845615526, -5047.7476943218135]], "source": 477615647, "length": 85.02510790120559}, {"destination": 2629524985, "path": [[-8227.484561551535, 1761.8023056780175], [-8249.234561553465, 1694.5023056766927], [-8280.134561552188, 1636.5023056774676], [-8311.13456155208, 1582.4523056782168]], "source": 2629533646, "length": 43.09026830528775}, {"destination": 2629533650, "path": [[-8227.484561551535, 1761.8023056780175], [-8046.684561556105, 1698.8523056777894]], "source": 2629533646, "length": 37.12473104141536}, {"destination": 1462576341, "path": [[-8227.484561551535, 1761.8023056780175], [-8135.284561554101, 2008.8023056779036], [-8120.984561550415, 2048.5023056782125], [-8086.684561554592, 2162.852305676921]], "source": 2629533646, "length": 93.15340648716021}, {"destination": 476078819, "path": [[1565.9154384479734, -2435.9976943220117], [778.9654384495748, -2486.1476943218718]], "source": 75355691, "length": 150.06256092815613}, {"destination": 2376753461, "path": [[1565.9154384479734, -2435.9976943220117], [1756.2654384448706, -2394.0976943226387]], "source": 75355691, "length": 37.37732264643649}, {"destination": 103736869, "path": [[1565.9154384479734, -2435.9976943220117], [1815.3654384462925, -2560.3976943227026], [1929.665438446193, -2614.8976943218827], [2109.8654384488214, -2700.7476943232687]], "source": 75355691, "length": 119.02676628436495}, {"destination": 481385192, "path": [[183.71543844608595, -2509.9976943234738], [169.76543845004244, -2133.647694321894]], "source": 75355692, "length": 83.73859419059143}, {"destination": 4075546746, "path": [[183.71543844608595, -2509.9976943234738], [515.3654384457695, -2502.6976943234304]], "source": 75355692, "length": 63.08786262373065}, {"destination": 152847559, "path": [[183.71543844608595, -2509.9976943234738], [-87.78456155056347, -2499.5976943227306]], "source": 75355692, "length": 51.68055077139086}, {"destination": 1315785553, "path": [[-316.33456155333306, -2526.047694322742], [-480.53456155372487, -2537.9476943232503], [-701.7845615564511, -2543.5476943229673]], "source": 75355694, "length": 73.42809326222071}, {"destination": 848690442, "path": [[-316.33456155333306, -2526.047694322742], [-490.5845615539306, -2510.397694322819], [-1104.1845615551438, -2407.7976943228664], [-1737.8345615526314, -2293.6476943229422]], "source": 75355694, "length": 275.3521732843387}, {"destination": 1469016803, "path": [[-6153.134561550643, -2151.3476943226806], [-6190.034561555535, -2129.6476943231114], [-6222.3345615564085, -2110.847694321905]], "source": 4676163121, "length": 15.946139911997673}, {"destination": 1887913947, "path": [[-4997.8345615500075, -4418.9476943223835], [-4918.734561556448, -4275.497694322894], [-4841.484561552534, -4113.847694322104], [-4805.884561555729, -4006.897694322831], [-4786.884561553961, -3916.3976943221714], [-4791.6345615561795, -3832.1976943223035]], "source": 477615666, "length": 138.02957503435942}, {"destination": 267198437, "path": [[-4997.8345615500075, -4418.9476943223835], [-5740.284561554176, -4137.147694322607]], "source": 477615666, "length": 154.46438252767925}, {"destination": 477615647, "path": [[-4997.8345615500075, -4418.9476943223835], [-5309.834561550986, -4891.597694323124]], "source": 477615666, "length": 120.69978978209569}, {"destination": 4573378109, "path": [[5339.165438449811, 7784.252305677697], [5258.515438448796, 7878.9523056777]], "source": 4573378105, "length": 26.054890536011374}, {"destination": 482734006, "path": [[5339.165438449811, 7784.252305677697], [5366.515438446129, 7859.352305677802], [5412.065438449076, 7975.1023056768845], [5466.765438448818, 8095.952305676946]], "source": 4573378105, "length": 73.47305251561673}, {"destination": 1320103777, "path": [[3218.815438444267, 2667.002305678068], [3218.815438444267, 2653.902305677747], [3228.615438445104, 2556.9523056780954]], "source": 1320104009, "length": 24.55487431634071}, {"destination": 1319204556, "path": [[3218.815438444267, 2667.002305678068], [3218.815438444267, 2726.8023056770116]], "source": 1320104009, "length": 13.299095323962186}, {"destination": 4868839655, "path": [[3218.815438444267, 2667.002305678068], [3440.8154384450995, 2696.652305678171]], "source": 1320104009, "length": 42.732124255859866}, {"destination": 4225630314, "path": [[5197.065438444781, 8504.802305678182], [5015.415438442971, 8710.152305678064]], "source": 4573378108, "length": 57.26534851423912}, {"destination": 714084514, "path": [[5197.065438444781, 8504.802305678182], [5436.015438448294, 8234.65230567777], [5513.46543844744, 8175.152305677003]], "source": 4573378108, "length": 95.13512363266842}, {"destination": 4573378112, "path": [[5258.515438448796, 7878.9523056777], [5054.565438449288, 8121.552305677682], [5078.1154384438305, 8158.85230567659]], "source": 4573378109, "length": 75.87697749936227}, {"destination": 4573378111, "path": [[5258.515438448796, 7878.9523056777], [5280.565438447127, 7928.102305676532]], "source": 4573378109, "length": 11.707505844371855}, {"destination": 4573378115, "path": [[5341.165438444761, 8063.302305677311], [5146.015438448614, 8270.902305676842]], "source": 4573378110, "length": 59.23910105233291}, {"destination": 4573378116, "path": [[5341.165438444761, 8063.302305677311], [5405.715438449477, 8080.102305678239]], "source": 4573378110, "length": 12.833500788173165}, {"destination": 1316623432, "path": [[-1097.1845615515008, -1719.7976943226222], [-1068.5845615512335, -2075.2476943233232], [-184.28456155561435, -2064.247694322674]], "source": 1316623285, "length": 247.4144030188096}, {"destination": 475975347, "path": [[-1097.1845615515008, -1719.7976943226222], [-895.4845615534168, -1712.4476943219947]], "source": 1316623285, "length": 38.39102481901441}, {"destination": 845389542, "path": [[-1097.1845615515008, -1719.7976943226222], [-1356.6845615500256, -1683.6476943229427], [-1735.934561551744, -1629.8476943230612]], "source": 1316623285, "length": 123.10391177278899}, {"destination": 4573378114, "path": [[5078.1154384438305, 8158.85230567659], [5110.015438447135, 8210.852305676752]], "source": 4573378112, "length": 13.059748123579881}, {"destination": 4573378114, "path": [[5310.115438447838, 7994.0023056774835], [5110.015438447135, 8210.852305676752]], "source": 4573378113, "length": 61.43474191504438}, {"destination": 4573378110, "path": [[5310.115438447838, 7994.0023056774835], [5341.165438444761, 8063.302305677311]], "source": 4573378113, "length": 16.50457333073101}, {"destination": 4573378115, "path": [[5110.015438447135, 8210.852305676752], [5146.015438448614, 8270.902305676842]], "source": 4573378114, "length": 15.007607378461257}, {"destination": 4573378117, "path": [[5146.015438448614, 8270.902305676842], [5179.615438443363, 8330.60230567817]], "source": 4573378115, "length": 14.734884342567765}, {"destination": 4573378117, "path": [[5405.715438449477, 8080.102305678239], [5179.615438443363, 8330.60230567817]], "source": 4573378116, "length": 70.37700033016222}, {"destination": 482734006, "path": [[5405.715438449477, 8080.102305678239], [5466.765438448818, 8095.952305676946]], "source": 4573378116, "length": 12.134664604916393}, {"destination": 4573378108, "path": [[5179.615438443363, 8330.60230567817], [5193.815438445881, 8391.852305678072], [5197.065438444781, 8504.802305678182]], "source": 4573378117, "length": 39.01308177445996}, {"destination": 4573378128, "path": [[4208.415438448299, 9135.602305677892], [4134.215438448053, 9046.652305677582]], "source": 4573378118, "length": 24.300132808598576}, {"destination": 714080390, "path": [[4208.415438448299, 9135.602305677892], [3676.4654384455753, 9451.052305676554]], "source": 4573378118, "length": 123.12247155140697}, {"destination": 4573378149, "path": [[3918.5654384468194, 8788.052305677142], [3930.115438443238, 8743.502305676997], [3921.3154384469817, 8685.052305677842], [3901.6654384482763, 8639.302305677887]], "source": 4573378119, "length": 34.09265311653084}, {"destination": 4573378142, "path": [[3918.5654384468194, 8788.052305677142], [3874.315438444853, 8814.40230567776]], "source": 4573378119, "length": 10.255663420548181}, {"destination": 4573378123, "path": [[3412.515438448338, 9240.302305677516], [3372.8154384462528, 9273.052305676543], [3298.665438443038, 9298.20230567735]], "source": 4573378121, "length": 25.66356929661176}, {"destination": 1316623346, "path": [[2641.7654384474076, -1146.1976943234476], [2569.765438444449, -1131.5976943233609], [2496.665438449952, -1117.3976943226194]], "source": 1316623287, "length": 28.32741269135147}, {"destination": 1316623323, "path": [[2641.7654384474076, -1146.1976943234476], [2785.9654384485566, -1175.4976943230133]], "source": 1316623287, "length": 28.185752618788815}, {"destination": 1316623572, "path": [[2641.7654384474076, -1146.1976943234476], [2664.915438444382, -1100.4976943223], [2700.2154384447863, -1003.2476943226953]], "source": 1316623287, "length": 33.720583319990666}, {"destination": 4573378141, "path": [[3961.815438444205, 8839.902305677328], [3900.865438446033, 8876.502305676937]], "source": 4573378124, "length": 14.16543540353084}, {"destination": 4573378119, "path": [[3961.815438444205, 8839.902305677328], [3918.5654384468194, 8788.052305677142]], "source": 4573378124, "length": 14.16479914079539}, {"destination": 267198545, "path": [[-4828.184561553428, -3712.597694322639], [-4970.584561554859, -3351.947694323343], [-5002.184561554657, -3262.747694321888]], "source": 477615693, "length": 105.37996157345167}, {"destination": 1887913947, "path": [[-4828.184561553428, -3712.597694322639], [-4791.6345615561795, -3832.1976943223035]], "source": 477615693, "length": 27.49098009610263}, {"destination": 477615709, "path": [[-4828.184561553428, -3712.597694322639], [-4653.334561552924, -3455.547694322547]], "source": 477615693, "length": 66.13150682924099}, {"destination": 4573378124, "path": [[3999.1154384466654, 8884.652305678032], [3961.815438444205, 8839.902305677328]], "source": 4573378126, "length": 12.221992097526828}, {"destination": 4573378140, "path": [[3999.1154384466654, 8884.652305678032], [3932.8154384463687, 8923.702305677849]], "source": 4573378126, "length": 15.31141063675697}, {"destination": 4573378121, "path": [[3419.8154384483814, 9225.9523056768], [3412.515438448338, 9240.302305677516]], "source": 4573378127, "length": 3.480390428989562}, {"destination": 4573378137, "path": [[4134.215438448053, 9046.652305677582], [4067.815438446587, 9086.85230567663]], "source": 4573378128, "length": 15.473310532692693}, {"destination": 4573378133, "path": [[4134.215438448053, 9046.652305677582], [4093.265438449123, 8997.552305677558]], "source": 4573378128, "length": 13.412128954201194}, {"destination": 267198763, "path": [[-5959.984561556553, -7711.747694322923], [-5899.084561555412, -7707.347694323019]], "source": 874287746, "length": 11.62018995973987}, {"destination": 477640288, "path": [[-5003.984561554375, -6671.647694322047], [-4933.3845615535665, -6474.44769432326]], "source": 477640277, "length": 45.86393509098322}, {"destination": 477640011, "path": [[-5003.984561554375, -6671.647694322047], [-5027.634561550087, -6771.247694322468], [-5083.834561553147, -6932.79769432209]], "source": 477640277, "length": 60.08467895830884}, {"destination": 477639508, "path": [[-5003.984561554375, -6671.647694322047], [-5460.0845615553335, -6608.397694321866]], "source": 477640277, "length": 87.85831862346022}, {"destination": 4573378136, "path": [[3604.665438444954, 9291.102305677867], [3583.9154384476046, 9288.352305677705], [3511.115438449508, 9268.302305677878]], "source": 4573378134, "length": 18.541814966746987}, {"destination": 4573378153, "path": [[4051.065438446244, 8946.952305677769], [4026.6654384453204, 8917.652305678203]], "source": 4573378135, "length": 7.999401694574664}, {"destination": 4573378139, "path": [[4051.065438446244, 8946.952305677769], [3983.565438446135, 8987.102305678007]], "source": 4573378135, "length": 15.638145215309253}, {"destination": 4573378121, "path": [[3511.115438449508, 9268.302305677878], [3467.015438445742, 9256.202305676808], [3412.515438448338, 9240.302305677516]], "source": 4573378136, "length": 19.76167020451795}, {"destination": 4573378138, "path": [[4067.815438446587, 9086.85230567663], [4027.165438444058, 9037.252305677868]], "source": 4573378137, "length": 13.470464698516517}, {"destination": 4573378148, "path": [[4067.815438446587, 9086.85230567663], [3746.5154384435095, 9281.402305678199], [3681.4654384471623, 9301.402305677442], [3663.665438445207, 9299.002305677817]], "source": 4573378137, "length": 91.45495809754807}, {"destination": 4573378137, "path": [[4027.165438444058, 9037.252305677868], [4067.815438446587, 9086.85230567663]], "source": 4573378138, "length": 13.470464698516517}, {"destination": 4573378139, "path": [[4027.165438444058, 9037.252305677868], [3983.565438446135, 8987.102305678007]], "source": 4573378138, "length": 13.898235988798401}, {"destination": 4573378147, "path": [[4027.165438444058, 9037.252305677868], [3640.315438445896, 9269.702305678251]], "source": 4573378138, "length": 89.92575583031369}, {"destination": 4573378152, "path": [[3983.565438446135, 8987.102305678007], [3960.81543844673, 8958.702305676525]], "source": 4573378139, "length": 7.656293924484025}, {"destination": 4573378146, "path": [[3983.565438446135, 8987.102305678007], [3595.115438443486, 9218.302305677995]], "source": 4573378139, "length": 90.0158122857067}, {"destination": 4573378138, "path": [[3983.565438446135, 8987.102305678007], [4027.165438444058, 9037.252305677868]], "source": 4573378139, "length": 13.898235988798401}, {"destination": 4573378152, "path": [[3932.8154384463687, 8923.702305677849], [3960.81543844673, 8958.702305676525]], "source": 4573378140, "length": 9.43163331142523}, {"destination": 4573378145, "path": [[3932.8154384463687, 8923.702305677849], [3541.915438447063, 9154.002305677977]], "source": 4573378140, "length": 90.28499347198506}, {"destination": 4573378141, "path": [[3932.8154384463687, 8923.702305677849], [3900.865438446033, 8876.502305676937]], "source": 4573378140, "length": 12.129464405575419}, {"destination": 477615722, "path": [[-4653.334561552924, -3455.547694322547], [-4455.834561554184, -3157.9976943234556]], "source": 477615709, "length": 76.08700282477147}, {"destination": 477615693, "path": [[-4653.334561552924, -3455.547694322547], [-4828.184561553428, -3712.597694322639]], "source": 477615709, "length": 66.13150682924099}, {"destination": 4573378141, "path": [[3874.315438444853, 8814.40230567776], [3900.865438446033, 8876.502305676937]], "source": 4573378142, "length": 14.7048824692692}, {"destination": 4573378143, "path": [[3874.315438444853, 8814.40230567776], [3523.0654384434956, 9023.302305678271], [3503.41543844479, 9061.852305677576]], "source": 4573378142, "length": 90.72758234632951}, {"destination": 4573378144, "path": [[3503.41543844479, 9061.852305677576], [3523.1154384476326, 9103.152305677042]], "source": 4573378143, "length": 9.919730567176853}, {"destination": 4573378125, "path": [[3503.41543844479, 9061.852305677576], [3464.4154384437797, 9138.402305676862]], "source": 4573378143, "length": 18.569525827101803}, {"destination": 1314685709, "path": [[-4933.3845615535665, -6474.44769432326], [-4948.934561554097, -6436.7476943232305], [-4921.234561550136, -6328.79769432293], [-4866.484561553363, -6123.2976943230715]], "source": 477640288, "length": 80.34041517065147}, {"destination": 477639525, "path": [[-4933.3845615535665, -6474.44769432326], [-5361.134561553627, -6338.747694321966]], "source": 477640288, "length": 86.75301387841178}, {"destination": 477640277, "path": [[-4933.3845615535665, -6474.44769432326], [-5003.984561554375, -6671.647694322047]], "source": 477640288, "length": 45.86393509098322}, {"destination": 4573378144, "path": [[3541.915438447063, 9154.002305677977], [3523.1154384476326, 9103.152305677042]], "source": 4573378145, "length": 11.860471643295659}, {"destination": 4573378146, "path": [[3541.915438447063, 9154.002305677977], [3595.115438443486, 9218.302305677995]], "source": 4573378145, "length": 17.517581005986724}, {"destination": 4573378127, "path": [[3541.915438447063, 9154.002305677977], [3419.8154384483814, 9225.9523056768]], "source": 4573378145, "length": 28.202854704227423}, {"destination": 476561693, "path": [[5920.015438448445, 7199.652305677872], [6000.96543844586, 7128.602305677134], [6201.115438443594, 7004.65230567815]], "source": 654382690, "length": 69.06224006769267}, {"destination": 482734053, "path": [[5920.015438448445, 7199.652305677872], [6031.015438445309, 7309.402305677892], [6046.515438448807, 7342.402305678064], [6043.565438446308, 7371.102305677724], [5996.4654384430105, 7492.402305677714], [5987.665438446755, 7530.252305677721], [5996.16543844661, 7566.4023056774], [6017.065438449265, 7601.852305677781], [6076.565438448256, 7678.302305677676], [6172.965438445033, 7791.602305676548], [6273.965438445828, 7894.452305677646], [6507.6654384483845, 8107.252305677548], [6651.765438448365, 8221.252305677495], [6717.415438444618, 8273.952305676958]], "source": 654382690, "length": 301.46857949430193}, {"destination": 654382693, "path": [[5920.015438448445, 7199.652305677872], [5886.3654384495585, 7099.602305677521]], "source": 654382690, "length": 23.15257009515522}, {"destination": 1316471968, "path": [[1468.6154384477845, 1509.7523056777363], [1374.7154384446958, 1551.052305677203], [1326.465438445723, 1569.4023056767037]], "source": 1316471739, "length": 30.12334313889826}, {"destination": 1316471831, "path": [[1468.6154384477845, 1509.7523056777363], [1450.7154384446608, 1458.5523056780403]], "source": 1316471739, "length": 11.884763469345426}, {"destination": 1316472135, "path": [[1468.6154384477845, 1509.7523056777363], [1506.1654384496137, 1530.4023056774695], [1506.1654384496137, 1610.7023056779467]], "source": 1316471739, "length": 26.34817959566216}, {"destination": 4573378147, "path": [[3663.665438445207, 9299.002305677817], [3640.315438445896, 9269.702305678251]], "source": 4573378148, "length": 7.885929255227625}, {"destination": 4573378134, "path": [[3663.665438445207, 9299.002305677817], [3604.665438444954, 9291.102305677867]], "source": 4573378148, "length": 11.358975849473243}, {"destination": 1328999488, "path": [[5886.3654384495585, 7099.602305677521], [5676.215438448651, 6952.95230567794], [5651.065438449621, 6832.552305677808]], "source": 654382693, "length": 78.78740010736347}, {"destination": 654382690, "path": [[5886.3654384495585, 7099.602305677521], [5920.015438448445, 7199.652305677872]], "source": 654382693, "length": 23.15257009515522}, {"destination": 476561935, "path": [[5886.3654384495585, 7099.602305677521], [5564.665438448912, 7271.252305677934], [5330.265438445281, 7379.652305678163], [5255.515438449265, 7413.052305677681]], "source": 654382693, "length": 138.84305885094153}, {"destination": 1314685709, "path": [[-4763.934561552219, -5880.547694323112], [-4866.484561553363, -6123.2976943230715]], "source": 477640296, "length": 57.39881328592927}, {"destination": 477639734, "path": [[-4763.934561552219, -5880.547694323112], [-5019.184561554368, -5791.647694323387]], "source": 477640296, "length": 52.407368148298865}, {"destination": 1729306039, "path": [[-4763.934561552219, -5880.547694323112], [-4701.334561552529, -5903.147694322542]], "source": 477640296, "length": 12.920639063516361}, {"destination": 4573378152, "path": [[4026.6654384453204, 8917.652305678203], [3960.81543844673, 8958.702305676525]], "source": 4573378153, "length": 15.499208765888493}, {"destination": 4573378126, "path": [[4026.6654384453204, 8917.652305678203], [3999.1154384466654, 8884.652305678032]], "source": 4573378153, "length": 9.017366942167703}, {"destination": 477616429, "path": [[-4455.834561554184, -3157.9976943234556], [-4777.134561550156, -2980.547694322766]], "source": 477615722, "length": 72.73454445794297}, {"destination": 477615709, "path": [[-4455.834561554184, -3157.9976943234556], [-4653.334561552924, -3455.547694322547]], "source": 477615722, "length": 76.08700282477147}, {"destination": 1316236430, "path": [[-2562.834561551597, 1523.4523056779635], [-2686.384561556565, 1558.502305677223]], "source": 1316236399, "length": 24.755767821846504}, {"destination": 1324295056, "path": [[4394.365438443515, 4997.90230567676], [4370.915438443035, 4995.402305677743]], "source": 1324295101, "length": 4.495170152826736}, {"destination": 1319641416, "path": [[4394.365438443515, 4997.90230567676], [4486.0654384493155, 5007.702305677597], [4507.66543844594, 4977.952305678102]], "source": 1324295101, "length": 25.363156341946866}, {"destination": 1324294222, "path": [[4394.365438443515, 4997.90230567676], [4405.615438443533, 4854.002305677341]], "source": 1324295101, "length": 32.07356726531951}, {"destination": 1887575216, "path": [[55.86543844771086, -4955.097694322674], [-135.18456155026115, -5249.197694322305]], "source": 1887596136, "length": 74.81683057130616}, {"destination": 75349972, "path": [[55.86543844771086, -4955.097694322674], [118.51543844443313, -4980.897694322195]], "source": 1887596136, "length": 13.222975592233306}, {"destination": 1887596191, "path": [[55.86543844771086, -4955.097694322674], [140.5654384498689, -4836.497694322262], [177.165438444149, -4779.197694322334], [206.66543844782836, -4721.847694321824], [240.21543844554571, -4650.747694322277], [284.46543844751204, -4518.897694323343], [304.5654384479235, -4440.897694323098], [313.965438444086, -4429.447694322519], [336.7654384476282, -4414.547694322479], [370.16543844714533, -4389.647694322818], [379.2654384469074, -4365.1476943225025], [418.31543844494945, -4271.147694321798]], "source": 1887596136, "length": 169.57347619531936}, {"destination": 856909306, "path": [[395.96543844311327, 6008.50230567751], [440.86543844912285, 6237.552305677241]], "source": 477445174, "length": 51.649324956401166}, {"destination": 476553855, "path": [[395.96543844311327, 6008.50230567751], [1089.5654384484033, 5922.852305676684]], "source": 477445174, "length": 133.287588562621}, {"destination": 1328999488, "path": [[5799.465438443008, 6375.052305678253], [5756.665438447328, 6457.50230567721], [5660.115438445246, 6760.302305677257], [5649.365438443965, 6824.502305677882], [5651.065438449621, 6832.552305677808]], "source": 654382714, "length": 106.10500137956541}, {"destination": 482733394, "path": [[5799.465438443008, 6375.052305678253], [5734.915438445398, 6330.152305677572], [5438.61543844315, 6110.402305678164], [5249.965438444804, 5970.452305676943], [5197.215438442981, 5951.152305676998], [5059.465438449706, 5900.802305676578], [4883.71543844579, 5836.602305677729], [4779.215438446727, 5798.402305677186]], "source": 654382714, "length": 235.28368955089553}, {"destination": 1319641348, "path": [[5799.465438443008, 6375.052305678253], [5947.8654384435, 6285.452305677452], [5966.015438445993, 6275.352305676663], [6009.565438446884, 6251.052305676907], [6049.815438444739, 6193.702305678173]], "source": 654382714, "length": 63.432995958989196}, {"destination": 1319641071, "path": [[5799.465438443008, 6375.052305678253], [6226.815438445499, 6672.402305676784]], "source": 654382714, "length": 104.78291616611862}, {"destination": 1324294546, "path": [[4952.115438449311, 5385.1023056772365], [4926.21543844507, 5452.65230567793]], "source": 1324295104, "length": 15.80952883740385}, {"destination": 1319641067, "path": [[4952.115438449311, 5385.1023056772365], [4981.5654384488535, 5308.302305676804], [4998.765438443797, 5198.202305678024], [4998.41543844326, 5178.902305678079], [4997.815438443354, 5144.902305676879]], "source": 1324295104, "length": 54.5326940023016}, {"destination": 1324294586, "path": [[4952.115438449311, 5385.1023056772365], [4901.115438443071, 5376.552305676796], [4856.215438444167, 5354.102305677344]], "source": 1324295104, "length": 19.776213046035743}, {"destination": 483118665, "path": [[-8821.984561556917, 4366.652305677121], [-8915.534561552362, 3247.052305678011]], "source": 71128708, "length": 249.6228936703761}, {"destination": 601661230, "path": [[-8821.984561556917, 4366.652305677121], [-8650.88456155405, 5209.05230567692]], "source": 71128708, "length": 190.1467596826457}, {"destination": 1315785307, "path": [[-4326.5345615566275, -2324.3476943228816], [-4163.284561556679, -2102.3476943220485]], "source": 479293261, "length": 58.31972530983465}, {"destination": 1315785238, "path": [[-4326.5345615566275, -2324.3476943228816], [-3861.7845615505075, -2545.0976943233172]], "source": 479293261, "length": 101.0974543679892}, {"destination": 1316471698, "path": [[1660.915438449706, 1596.952305677135], [1857.5154384450343, 1585.452305677748]], "source": 1316471745, "length": 37.47629540689006}, {"destination": 1316472028, "path": [[1660.915438449706, 1596.952305677135], [1690.815438443849, 1722.9523056769835]], "source": 1316471745, "length": 28.592433981646867}, {"destination": 475977669, "path": [[1660.915438449706, 1596.952305677135], [1607.3154384486088, 1235.1523056768342]], "source": 1316471745, "length": 81.10386802859996}, {"destination": 1316472135, "path": [[1660.915438449706, 1596.952305677135], [1506.1654384496137, 1610.7023056779467]], "source": 1316471745, "length": 29.588497345583768}, {"destination": 495771029, "path": [[8159.7154384454025, -6054.14769432322], [8145.365438444685, -6086.647694322877]], "source": 1771402888, "length": 7.725434585652081}, {"destination": 1771402887, "path": [[8159.7154384454025, -6054.14769432322], [7960.4654384439755, -6041.5476943234125]], "source": 1771402888, "length": 37.99030842600524}, {"destination": 622622442, "path": [[-7252.434561550558, 7687.002305678092], [-7177.734561551574, 7657.052305678036], [-6794.634561551049, 7535.252305677531], [-6612.6345615558075, 7484.45230567718], [-5898.384561554338, 7286.102305677388]], "source": 623406700, "length": 272.6769661072989}, {"destination": 601661206, "path": [[-7252.434561550558, 7687.002305678092], [-7288.334561550869, 7657.052305678036], [-7320.934561555248, 7612.602305677285]], "source": 623406700, "length": 21.20795445820214}, {"destination": 623417110, "path": [[-7252.434561550558, 7687.002305678092], [-7209.784561553079, 7737.602305677882], [-7185.584561554492, 7789.302305678092], [-7007.884561552657, 8384.602305676835]], "source": 623406700, "length": 162.89252805127268}, {"destination": 1319204529, "path": [[4436.915438446931, 1922.052305676658], [4435.115438447212, 1911.0523056777852], [4428.465438444107, 1773.752305677334]], "source": 1319204491, "length": 33.0323328326838}, {"destination": 1319204522, "path": [[4436.915438446931, 1922.052305676658], [4694.615438445737, 1862.5523056776672]], "source": 1319204491, "length": 50.76409808492581}, {"destination": 1319204555, "path": [[4436.915438446931, 1922.052305676658], [4477.365438447123, 2170.0523056775723]], "source": 1319204491, "length": 55.68673240743254}, {"destination": 495646795, "path": [[7989.315438443611, -7188.297694321833], [7975.515438445768, -7224.99769432261], [7970.015438445444, -7238.3976943228845], [7941.465438449313, -7282.997694321835]], "source": 495646348, "length": 23.037659718929895}, {"destination": 495649612, "path": [[7989.315438443611, -7188.297694321833], [8020.1154384482725, -7143.94769432225]], "source": 495646348, "length": 11.471091903030153}, {"destination": 495646350, "path": [[7989.315438443611, -7188.297694321833], [7909.515438448978, -7200.197694322341]], "source": 495646348, "length": 15.402377866066509}, {"destination": 477636742, "path": [[-7368.384561551977, -6673.197694322397], [-7080.684561550754, -6770.397694323194]], "source": 477636653, "length": 58.82044923169606}, {"destination": 477625999, "path": [[-7368.384561551977, -6673.197694322397], [-7460.7345615547165, -6907.047694323154]], "source": 477636653, "length": 54.89041567451532}, {"destination": 1319204584, "path": [[5159.31543844772, 1725.252305677216], [5184.015438445044, 1766.3523056778986]], "source": 1319204494, "length": 10.276733115938171}, {"destination": 1319204586, "path": [[5159.31543844772, 1725.252305677216], [5129.81543844404, 1665.6023056782487]], "source": 1319204494, "length": 14.40330390272739}, {"destination": 1319204551, "path": [[5159.31543844772, 1725.252305677216], [5134.115438444553, 1738.3523056775375], [5042.715438449363, 1764.6023056769877]], "source": 1319204494, "length": 23.9460938956734}, {"destination": 495646219, "path": [[7856.015438449049, -7160.347694322056], [7889.015438443892, -7128.4976943228885], [7936.965438446464, -7081.497694322536], [7966.065438445468, -7039.647694321971], [7999.86543844966, -6977.49769432221], [8059.115438449282, -6909.147694322826]], "source": 495646351, "length": 68.32346789757759}, {"destination": 495645980, "path": [[7856.015438449049, -7160.347694322056], [7821.265438444414, -7192.54769432176], [7630.265438443474, -7392.097694323141]], "source": 495646351, "length": 67.08771160512745}, {"destination": 495646350, "path": [[7856.015438449049, -7160.347694322056], [7909.515438448978, -7200.197694322341]], "source": 495646351, "length": 13.49152406433696}, {"destination": 1319204488, "path": [[4968.815438445517, 2159.4523056780445], [4674.565438449463, 2284.152305676912], [4505.615438446853, 2310.7523056768996]], "source": 1319204501, "length": 95.12634793788564}, {"destination": 1319204493, "path": [[4968.815438445517, 2159.4523056780445], [5105.465438447254, 2109.5523056775532]], "source": 1319204501, "length": 28.258245397604263}, {"destination": 1319204565, "path": [[4968.815438445517, 2159.4523056780445], [4891.06543844997, 1931.7023056775183], [4958.165438445405, 1908.7523056775524]], "source": 1319204501, "length": 66.50729338577455}, {"destination": 1315785454, "path": [[-660.8845615545533, -3012.3476943231253], [-708.8345615500202, -3134.3476943224146]], "source": 4810815126, "length": 28.62283597223909}, {"destination": 84466485, "path": [[8546.115438448964, -7071.397694321746], [8970.765438448325, -7326.797694322096]], "source": 495769239, "length": 98.72006876359718}, {"destination": 1777868877, "path": [[8546.115438448964, -7071.397694321746], [8439.415438445507, -7208.847694322174], [8274.565438448179, -7423.497694322378]], "source": 495769239, "length": 93.79487355756547}, {"destination": 475979960, "path": [[5021.665438448508, 1706.1523056778328], [5003.715438448353, 1656.4523056779024], [4959.11543844585, 1557.6023056773636]], "source": 1319204505, "length": 35.130844459288085}, {"destination": 1319204586, "path": [[5021.665438448508, 1706.1523056778328], [5080.715438445794, 1688.352305677654], [5129.81543844404, 1665.6023056782487]], "source": 1319204505, "length": 22.52753826372933}, {"destination": 1319204551, "path": [[5021.665438448508, 1706.1523056778328], [5042.715438449363, 1764.6023056769877]], "source": 1319204505, "length": 13.601302310644916}, {"destination": 1319204543, "path": [[4832.0654384497175, 2014.252305677644], [4750.115438447721, 2035.2523056779148]], "source": 1319204510, "length": 16.26972845687361}, {"destination": 1319204522, "path": [[4918.915438445027, 1800.2023056773453], [4732.815438444504, 1853.702305677274], [4694.615438445737, 1862.5523056776672]], "source": 1319204514, "length": 44.865611302714036}, {"destination": 1319204565, "path": [[4918.915438445027, 1800.2023056773453], [4958.165438445405, 1908.7523056775524]], "source": 1319204514, "length": 25.267988634762553}, {"destination": 1319204551, "path": [[4918.915438445027, 1800.2023056773453], [5042.715438449363, 1764.6023056769877]], "source": 1319204514, "length": 24.839543310348414}, {"destination": 1319204555, "path": [[4671.165438445258, 2149.6023056766235], [4606.765438445847, 2174.852305676822], [4563.865438449, 2174.852305676822], [4477.365438447123, 2170.0523056775723]], "source": 1319204515, "length": 38.1185195157298}, {"destination": 1572268640, "path": [[-5621.684561553764, 3310.1523056782157], [-5855.284561555152, 3384.6523056766387], [-6303.88456155373, 3529.0523056765724]], "source": 857780856, "length": 138.57670107537567}, {"destination": 857780858, "path": [[-5621.684561553764, 3310.1523056782157], [-5630.784561553526, 3295.4023056781525], [-5851.684561555714, 2912.5023056781883], [-6043.1345615512555, 2529.802305677009], [-6061.384561554916, 2479.3023056766115]], "source": 857780856, "length": 202.98648582550575}, {"destination": 1319204514, "path": [[4694.615438445737, 1862.5523056776672], [4732.815438444504, 1853.702305677274], [4918.915438445027, 1800.2023056773453]], "source": 1319204522, "length": 44.865611302714036}, {"destination": 1319204491, "path": [[4694.615438445737, 1862.5523056776672], [4436.915438446931, 1922.052305676658]], "source": 1319204522, "length": 50.76409808492581}, {"destination": 1319204543, "path": [[4694.615438445737, 1862.5523056776672], [4750.115438447721, 2035.2523056779148]], "source": 1319204522, "length": 39.83081644912795}, {"destination": 4955392148, "path": [[-2768.73456155613, -323.7476943223072], [-2666.2845615561537, 7.25230567688584], [-2649.1845615552734, 82.15230567820697], [-2624.084561553275, 150.70230567815202], [-2584.3845615511896, 288.60230567673284]], "source": 481392303, "length": 140.6754245256647}, {"destination": 1315785550, "path": [[-2768.73456155613, -323.7476943223072], [-2390.184561555486, -423.24769432333653]], "source": 481392303, "length": 75.31282336857814}, {"destination": 1315785414, "path": [[-2768.73456155613, -323.7476943223072], [-2895.8345615563985, -670.7476943219604], [-3039.5845615558414, -1063.3476943233688]], "source": 481392303, "length": 172.3558763684032}, {"destination": 4955392133, "path": [[-2768.73456155613, -323.7476943223072], [-2794.684561550298, -316.9476943227778], [-3003.7845615566994, -259.0476943229447]], "source": 481392303, "length": 46.95902841872144}, {"destination": 1315785529, "path": [[-4451.284561554303, 803.9023056767292], [-4438.6845615562725, 863.3023056781042]], "source": 1315785219, "length": 13.425226247568434}, {"destination": 1315785195, "path": [[-4451.284561554303, 803.9023056767292], [-4249.734561554419, 757.3023056774986]], "source": 1315785219, "length": 39.70594292598569}, {"destination": 1315785621, "path": [[-4451.284561554303, 803.9023056767292], [-4770.834561554693, 881.7023056781892]], "source": 1315785219, "length": 63.1853607109029}, {"destination": 1315785325, "path": [[-4451.284561554303, 803.9023056767292], [-4467.784561555277, 731.7023056767624]], "source": 1315785219, "length": 16.360325227661228}, {"destination": 475979960, "path": [[4428.465438444107, 1773.752305677334], [4611.015438449329, 1744.2523056772075], [4895.565438445715, 1631.8523056781942], [4959.11543844585, 1557.6023056773636]], "source": 1319204529, "length": 115.40395333036386}, {"destination": 1319204491, "path": [[4428.465438444107, 1773.752305677334], [4435.115438447212, 1911.0523056777852], [4436.915438446931, 1922.052305676658]], "source": 1319204529, "length": 33.0323328326838}, {"destination": 1319204584, "path": [[5607.215438445223, 1609.1523056775968], [5322.915438448206, 1706.9023056777155], [5184.015438445044, 1766.3523056778986]], "source": 1319204548, "length": 87.81399351690936}, {"destination": 482729260, "path": [[5607.215438445223, 1609.1523056775968], [5672.665438446245, 1726.4023056782207]], "source": 1319204548, "length": 28.89376680347204}, {"destination": 1319204550, "path": [[5607.215438445223, 1609.1523056775968], [5543.965438448595, 1511.2523056775017]], "source": 1319204548, "length": 24.873807891444542}, {"destination": 1316623425, "path": [[1860.1154384469964, -997.5476943218098], [1952.7654384461357, -1014.1476943221761]], "source": 1316623305, "length": 18.001970942883805}, {"destination": 1316623467, "path": [[1860.1154384469964, -997.5476943218098], [1820.0154384473421, -1185.3476943226583]], "source": 1316623305, "length": 42.45546063922645}, {"destination": 1316623678, "path": [[1860.1154384469964, -997.5476943218098], [1784.4154384434319, -983.9976943233353]], "source": 1316623305, "length": 14.707946688700506}, {"destination": 63312200, "path": [[6295.165438444883, -6338.097694323253], [6688.565438444983, -6197.397694322149]], "source": 1765488318, "length": 81.08430752023295}, {"destination": 1765488324, "path": [[6295.165438444883, -6338.097694323253], [6331.215438443394, -6313.997694322282], [6360.165438444199, -6288.997694323229], [6375.715438444729, -6267.197694322491], [6387.015438448884, -6243.547694323226], [6398.565438445303, -6206.797694321864]], "source": 1765488318, "length": 36.34753403982492}, {"destination": 1319204522, "path": [[4750.115438447721, 2035.2523056779148], [4694.615438445737, 1862.5523056776672]], "source": 1319204543, "length": 39.83081644912795}, {"destination": 1319204579, "path": [[4750.115438447721, 2035.2523056779148], [4657.715438447951, 2057.8523056773433]], "source": 1319204543, "length": 18.277474725593674}, {"destination": 1319204510, "path": [[4750.115438447721, 2035.2523056779148], [4832.0654384497175, 2014.252305677644]], "source": 1319204543, "length": 16.26972845687361}, {"destination": 4867879849, "path": [[10781.815438448917, 3767.352305677818], [10761.915438443737, 3698.7023056767043], [10711.16543844397, 3525.1523056771816]], "source": 4867879883, "length": 55.5131182070644}, {"destination": 4867879849, "path": [[10781.815438448917, 3767.352305677818], [10744.015438447717, 3696.752305677009], [10737.265438443445, 3637.1023056780414], [10712.465438444951, 3582.6523056776696], [10711.16543844397, 3525.1523056771816]], "source": 4867879883, "length": 56.381157166599884}, {"destination": 2001675397, "path": [[10781.815438448917, 3767.352305677818], [10809.265438446402, 3862.002305677237]], "source": 4867879883, "length": 21.686876888505275}, {"destination": 4867879887, "path": [[10781.815438448917, 3767.352305677818], [10846.565438448863, 3860.202305677518], [10841.11543844557, 3938.0023056772015]], "source": 4867879883, "length": 41.37503785061358}, {"destination": 1765485347, "path": [[6398.565438445303, -6206.797694321864], [6401.165438447265, -6189.597694323367], [6403.815438446259, -6171.547694322044], [6401.915438445371, -6136.347694322808]], "source": 1765488324, "length": 15.738557306812357}, {"destination": 1319204586, "path": [[5543.965438448595, 1511.2523056775017], [5129.81543844404, 1665.6023056782487]], "source": 1319204550, "length": 85.91703808317989}, {"destination": 1319204548, "path": [[5543.965438448595, 1511.2523056775017], [5607.215438445223, 1609.1523056775968]], "source": 1319204550, "length": 24.873807891444542}, {"destination": 482728439, "path": [[5543.965438448595, 1511.2523056775017], [5442.315438443757, 1348.402305676899]], "source": 1319204550, "length": 41.052741746085594}, {"destination": 1319204505, "path": [[5042.715438449363, 1764.6023056769877], [5021.665438448508, 1706.1523056778328]], "source": 1319204551, "length": 13.601302310644916}, {"destination": 1319204514, "path": [[5042.715438449363, 1764.6023056769877], [4918.915438445027, 1800.2023056773453]], "source": 1319204551, "length": 24.839543310348414}, {"destination": 1319204494, "path": [[5042.715438449363, 1764.6023056769877], [5134.115438444553, 1738.3523056775375], [5159.31543844772, 1725.252305677216]], "source": 1319204551, "length": 23.9460938956734}, {"destination": 1319204488, "path": [[4477.365438447123, 2170.0523056775723], [4505.615438446853, 2310.7523056768996]], "source": 1319204555, "length": 31.748202669941577}, {"destination": 1319204491, "path": [[4477.365438447123, 2170.0523056775723], [4436.915438446931, 1922.052305676658]], "source": 1319204555, "length": 55.68673240743254}, {"destination": 1319204515, "path": [[4477.365438447123, 2170.0523056775723], [4563.865438449, 2174.852305676822], [4606.765438445847, 2174.852305676822], [4671.165438445258, 2149.6023056766235]], "source": 1319204555, "length": 38.1185195157298}, {"destination": 1320103992, "path": [[3218.815438444267, 2726.8023056770116], [3218.815438444267, 2778.6523056771985], [3220.0654384482164, 2848.252305676979]], "source": 1319204556, "length": 27.011630326854117}, {"destination": 1320104009, "path": [[3218.815438444267, 2726.8023056770116], [3218.815438444267, 2667.002305678068]], "source": 1319204556, "length": 13.299095323962186}, {"destination": 1320103751, "path": [[3218.815438444267, 2726.8023056770116], [3797.4154384485814, 2801.6023056771646]], "source": 1319204556, "length": 111.28983939238782}, {"destination": 4063114961, "path": [[7271.665438445041, 2388.402305676607], [7206.015438448787, 2233.102305677193]], "source": 4063114957, "length": 36.724677063595394}, {"destination": 2629549322, "path": [[7271.665438445041, 2388.402305676607], [7233.165438449873, 2397.8523056769063]], "source": 4063114957, "length": 7.617939931566838}, {"destination": 2629549317, "path": [[7271.665438445041, 2388.402305676607], [7503.915438448416, 2331.502305677802]], "source": 4063114957, "length": 45.946395293769925}, {"destination": 601145300, "path": [[-7225.934561553515, -3454.647694322688], [-7288.234561556806, -3417.94769432191]], "source": 476675195, "length": 14.386085736565969}, {"destination": 1890502861, "path": [[-7225.934561553515, -3454.647694322688], [-7274.9345615505945, -3525.54769432345], [-7287.084561554025, -3546.097694322015]], "source": 476675195, "length": 23.436148881215104}, {"destination": 1316471993, "path": [[791.6654384487742, 3391.8023056767056], [674.8154384439431, 3175.052305676829]], "source": 1316471757, "length": 53.079095402390905}, {"destination": 1316472026, "path": [[791.6654384487742, 3391.8023056767056], [867.7654384499078, 3358.5023056765804], [902.7654384468065, 3397.5523056781753]], "source": 1316471757, "length": 27.19943741665355}, {"destination": 1316471978, "path": [[791.6654384487742, 3391.8023056767056], [550.265438448605, 3497.302305676797]], "source": 1316471757, "length": 51.558243613693314}, {"destination": 654391743, "path": [[7206.015438448787, 2233.102305677193], [6964.165438446912, 2285.9523056766307]], "source": 4063114961, "length": 47.47322197407159}, {"destination": 654391797, "path": [[7206.015438448787, 2233.102305677193], [7547.665438444539, 2158.4523056770167]], "source": 4063114961, "length": 67.06245910360006}, {"destination": 4063114957, "path": [[7206.015438448787, 2233.102305677193], [7271.665438445041, 2388.402305676607]], "source": 4063114961, "length": 36.724677063595394}, {"destination": 1319204489, "path": [[4958.165438445405, 1908.7523056775524], [5017.165438445659, 2062.452305677809]], "source": 1319204565, "length": 35.975894407134255}, {"destination": 1319204514, "path": [[4958.165438445405, 1908.7523056775524], [4918.915438445027, 1800.2023056773453]], "source": 1319204565, "length": 25.267988634762553}, {"destination": 1319204572, "path": [[4958.165438445405, 1908.7523056775524], [5038.615438444083, 1885.8023056775864], [5049.315438448331, 1906.4523056773196], [5228.9654384480855, 1841.152305678051]], "source": 1319204565, "length": 58.27530540450413}, {"destination": 1319204501, "path": [[4958.165438445405, 1908.7523056775524], [4891.06543844997, 1931.7023056775183], [4968.815438445517, 2159.4523056780445]], "source": 1319204565, "length": 66.50729338577455}, {"destination": 601145322, "path": [[-4000.534561555469, 2862.152305677768], [-3949.5345615563338, 2958.552305678097], [-3806.9345615525663, 3211.9523056781672], [-3644.984561553599, 3507.8023056769325]], "source": 624784002, "length": 158.7166776557333}, {"destination": 482732933, "path": [[-4000.534561555469, 2862.152305677768], [-3948.984561553459, 2833.3523056769395]], "source": 624784002, "length": 11.710584741425576}, {"destination": 1319204590, "path": [[4440.465438449337, 4060.3023056782204], [4610.215438447085, 4059.052305677824]], "source": 1319204570, "length": 32.28586417146929}, {"destination": 75354586, "path": [[5966.015438445993, 859.5023056781059], [5403.515438445083, 282.8023056782314], [5065.415438444632, -63.79769432207638], [4940.4654384446185, -173.59769432268024], [4583.715438450043, -573.247694322987]], "source": 3356046287, "length": 413.2697883984288}, {"destination": 2367476047, "path": [[5966.015438445993, 859.5023056781059], [6006.665438448522, 828.2523056770685], [6079.365438445449, 915.6523056770283]], "source": 3356046287, "length": 34.24774247600731}, {"destination": 1319204584, "path": [[5228.9654384480855, 1841.152305678051], [5184.015438445044, 1766.3523056778986]], "source": 1319204572, "length": 18.703002963719054}, {"destination": 482729260, "path": [[5228.9654384480855, 1841.152305678051], [5330.965438446356, 1798.6523056769954], [5344.36543844663, 1830.752305677308], [5457.0154384450125, 1794.05230567653], [5672.665438446245, 1726.4023056782207]], "source": 1319204572, "length": 95.76793525270975}, {"destination": 1319204565, "path": [[5228.9654384480855, 1841.152305678051], [5049.315438448331, 1906.4523056773196], [5038.615438444083, 1885.8023056775864], [4958.165438445405, 1908.7523056775524]], "source": 1319204572, "length": 58.275305404504124}, {"destination": 1319204589, "path": [[5228.9654384480855, 1841.152305678051], [5339.015438444505, 2024.3023056778497]], "source": 1319204572, "length": 45.79313673379576}, {"destination": 856909251, "path": [[-3147.2345615526365, 8808.552305676898], [-3216.9845615541703, 8720.152305677686], [-3270.484561554099, 8591.702305677629], [-3279.334561554492, 8550.802305677507], [-3282.884561556898, 8474.402305678197]], "source": 622622429, "length": 80.295832703664}, {"destination": 622622645, "path": [[-3147.2345615526365, 8808.552305676898], [-3579.884561553115, 8940.902305678123]], "source": 622622429, "length": 87.39836519179171}, {"destination": 1404152878, "path": [[-3147.2345615526365, 8808.552305676898], [-2564.8845615506843, 8664.95230567743]], "source": 622622429, "length": 115.27851238273581}, {"destination": 1316694037, "path": [[1631.365438448995, -85.49769432342202], [1203.3654384495662, -94.69769432257635]], "source": 475977438, "length": 81.41885378202564}, {"destination": 1316694030, "path": [[1631.365438448995, -85.49769432342202], [1626.5154384456082, -22.59769432200187]], "source": 475977438, "length": 14.018334476333905}, {"destination": 1317671223, "path": [[1631.365438448995, -85.49769432342202], [1631.6154384483639, -105.0476943227352]], "source": 475977438, "length": 4.348415881779713}, {"destination": 2629549331, "path": [[8296.11543844777, 4032.202305676691], [8518.065438444466, 4034.002305678186]], "source": 475985632, "length": 42.214040937146024}, {"destination": 2629549334, "path": [[8296.11543844777, 4032.202305676691], [8144.51543844541, 3613.8023056775382]], "source": 475985632, "length": 97.41272827501257}, {"destination": 475985639, "path": [[8296.11543844777, 4032.202305676691], [8404.46543844564, 4325.9023056769765], [8475.96543844986, 4541.252305678256], [8523.565438444792, 4705.802305677409], [8552.765438444965, 4853.952305676757], [8548.115438443914, 5025.852305676537], [8535.115438448316, 5151.3023056770635], [8504.815438449497, 5276.102305677099]], "source": 475985632, "length": 283.97716643291557}, {"destination": 1319204543, "path": [[4657.715438447951, 2057.8523056773433], [4750.115438447721, 2035.2523056779148]], "source": 1319204579, "length": 18.277474725593674}, {"destination": 3283676144, "path": [[4409.715438448813, -6687.097694323185], [4331.115438446886, -6656.697694323199], [4231.665438446442, -6610.547694322122], [3376.5654384438903, -6250.597694322124]], "source": 3629684453, "length": 219.1492030803543}, {"destination": 3344153899, "path": [[4409.715438448813, -6687.097694323185], [4388.815438446159, -6758.347694322709]], "source": 3629684453, "length": 16.33606809375058}, {"destination": 482730676, "path": [[4708.715438447087, 2564.752305676876], [5222.215438443811, 2509.302305677252]], "source": 1319204583, "length": 98.43371473602055}, {"destination": 1319204572, "path": [[5184.015438445044, 1766.3523056778986], [5228.9654384480855, 1841.152305678051]], "source": 1319204584, "length": 18.703002963719054}, {"destination": 1319204548, "path": [[5184.015438445044, 1766.3523056778986], [5322.915438448206, 1706.9023056777155], [5607.215438445223, 1609.1523056775968]], "source": 1319204584, "length": 87.81399351690936}, {"destination": 1319204494, "path": [[5184.015438445044, 1766.3523056778986], [5159.31543844772, 1725.252305677216]], "source": 1319204584, "length": 10.276733115938171}, {"destination": 3047470160, "path": [[-5242.3845615550135, 8641.802305676905], [-5153.43456155648, 8631.352305677354], [-5042.434561552511, 8606.352305676523], [-4925.5345615506485, 8564.25230567659], [-4811.584561551285, 8506.65230567671], [-4679.884561554104, 8423.952305676608]], "source": 622622441, "length": 119.28929237519623}, {"destination": 623406666, "path": [[-5242.3845615550135, 8641.802305676905], [-5309.834561550986, 8648.752305678187], [-6088.284561556634, 8748.452305678], [-6866.234561556439, 8840.352305677257]], "source": 622622441, "length": 312.014812689087}, {"destination": 622622435, "path": [[-5242.3845615550135, 8641.802305676905], [-4928.884561550717, 9389.202305676747]], "source": 622622441, "length": 176.5870236817173}, {"destination": 623416847, "path": [[-5242.3845615550135, 8641.802305676905], [-5409.13456155323, 8302.252305677272]], "source": 622622441, "length": 81.90303717907757}, {"destination": 1319204505, "path": [[5129.81543844404, 1665.6023056782487], [5080.715438445794, 1688.352305677654], [5021.665438448508, 1706.1523056778328]], "source": 1319204586, "length": 22.52753826372933}, {"destination": 1319204494, "path": [[5129.81543844404, 1665.6023056782487], [5159.31543844772, 1725.252305677216]], "source": 1319204586, "length": 14.40330390272739}, {"destination": 1319204550, "path": [[5129.81543844404, 1665.6023056782487], [5543.965438448595, 1511.2523056775017]], "source": 1319204586, "length": 85.91703808317989}, {"destination": 622622442, "path": [[-5953.284561556416, 7199.0023056773825], [-5898.384561554338, 7286.102305677388]], "source": 622622443, "length": 22.005369662155687}, {"destination": 601661206, "path": [[-5953.284561556416, 7199.0023056773825], [-6402.284561552562, 7333.80230567704], [-7236.7845615559645, 7586.802305677765], [-7320.934561555248, 7612.602305677285]], "source": 622622443, "length": 275.9120667209955}, {"destination": 1319204493, "path": [[5046.665438449338, 1956.952305677717], [5105.465438447254, 2109.5523056775532]], "source": 1319204588, "length": 35.731683865067396}, {"destination": 1319641025, "path": [[5339.015438444505, 2024.3023056778497], [5523.715438449983, 1947.6523056773942]], "source": 1319204589, "length": 39.043747407497165}, {"destination": 481500915, "path": [[5339.015438444505, 2024.3023056778497], [5163.815438443464, 2092.702305677818]], "source": 1319204589, "length": 36.62761040222432}, {"destination": 1319204572, "path": [[5339.015438444505, 2024.3023056778497], [5228.9654384480855, 1841.152305678051]], "source": 1319204589, "length": 45.79313673379576}, {"destination": 1319204570, "path": [[4610.215438447085, 4059.052305677824], [4440.465438449337, 4060.3023056782204]], "source": 1319204590, "length": 32.28586417146929}, {"destination": 4198258802, "path": [[4610.215438447085, 4059.052305677824], [4623.3654384479905, 3925.9023056779088], [4624.415438449603, 3908.4023056776828]], "source": 1319204590, "length": 33.61374263733069}, {"destination": 1319204487, "path": [[4610.215438447085, 4059.052305677824], [4602.165438448936, 4140.302305676968]], "source": 1319204590, "length": 18.133910094401962}, {"destination": 1887596138, "path": [[-542.2345615500035, -7424.647694323383], [-480.7845615530937, -7711.947694323484], [-459.8345615534072, -7809.747694322411], [-442.4345615561265, -7887.697694322071], [-423.6345615566961, -8024.147694323247], [-417.43456155529657, -8100.697694322534]], "source": 1887596157, "length": 152.33138515046042}, {"destination": 103781196, "path": [[-542.2345615500035, -7424.647694323383], [-1445.9345615520647, -7520.297694322054]], "source": 1887596157, "length": 173.14234466033176}, {"destination": 1887596197, "path": [[-542.2345615500035, -7424.647694323383], [-555.6345615502778, -7365.547694321961], [-555.0845615545086, -7310.597694322852]], "source": 1887596157, "length": 25.60880159131625}, {"destination": 267198762, "path": [[-5702.684561555316, -7086.447694321762], [-5790.034561556467, -7350.897694323066]], "source": 477640432, "length": 61.111435309219864}, {"destination": 477640461, "path": [[-5702.684561555316, -7086.447694321762], [-5437.134561553592, -7158.747694322898], [-5338.884561552959, -7184.897694322955], [-5243.034561551951, -7207.5976943217765], [-5153.2345615541435, -7226.297694321815], [-5071.234561555116, -7246.947694323325], [-4808.134561550049, -7321.147694321795]], "source": 477640432, "length": 177.97320479835363}, {"destination": 477640830, "path": [[-5702.684561555316, -7086.447694321762], [-5649.634561549988, -6937.847694322485]], "source": 477640432, "length": 34.55232403785441}, {"destination": 475979699, "path": [[6281.215438448839, 1190.9523056772287], [6233.565438449773, 1133.8523056778627], [6147.815438446003, 1041.3523056769236]], "source": 3356046291, "length": 41.851038449256855}, {"destination": 2367476060, "path": [[6281.215438448839, 1190.9523056772287], [6326.115438447743, 1163.4023056767974], [6275.16543844564, 1103.7523056778298]], "source": 3356046291, "length": 26.93724163272421}, {"destination": 773662900, "path": [[1059.9154384465237, -1860.3976943225575], [1187.3154384431928, -1971.7976943223193]], "source": 3117897473, "length": 34.65104256014082}, {"destination": 1745207295, "path": [[1059.9154384465237, -1860.3976943225575], [981.0154384481962, -1791.3976943226828]], "source": 3117897473, "length": 21.46128779949002}, {"destination": 1745207295, "path": [[1059.9154384465237, -1860.3976943225575], [1140.9654384451073, -1832.5976943227574], [1194.1654384486355, -1802.9476943226541], [1224.2154384480841, -1785.1476943224752], [1188.365438444805, -1764.3976943233497], [1137.5154384438702, -1743.6476943224477], [1080.8654384462102, -1730.7976943232716], [1034.6154384492934, -1749.5476943221179], [981.0154384481962, -1791.3976943226828]], "source": 3117897473, "length": 89.26211394509001}, {"destination": 1745207295, "path": [[1059.9154384465237, -1860.3976943225575], [1026.5154384470065, -1897.847694323218], [975.6654384460717, -1907.7476943234474], [924.7654384481052, -1919.5976943233718], [897.015438447113, -1913.6976943219252], [897.015438447113, -1885.9976943232937], [950.2154384435357, -1816.7976943228582], [981.0154384481962, -1791.3976943226828]], "source": 3117897473, "length": 68.57586350741387}, {"destination": 5021317138, "path": [[-8107.984561554815, -4383.097694322658], [-7977.384561556278, -4192.3476943228625]], "source": 1172174594, "length": 49.15547289824699}, {"destination": 5021317227, "path": [[-8107.984561554815, -4383.097694322658], [-8070.934561551723, -4403.447694322438], [-8038.634561550851, -4419.397694322313], [-8003.8345615562885, -4366.497694322291], [-7977.684561552678, -4379.2976943226595]], "source": 1172174594, "length": 34.6948506695119}, {"destination": 1990203599, "path": [[-8107.984561554815, -4383.097694322658], [-8297.084561554868, -4682.84769432259]], "source": 1172174594, "length": 75.74110366668732}, {"destination": 5021317138, "path": [[-7922.834561554737, -4112.6476943222915], [-7977.384561556278, -4192.3476943228625]], "source": 1172174596, "length": 20.536796395473306}, {"destination": 1928818222, "path": [[-7922.834561554737, -4112.6476943222915], [-7887.434561553164, -4127.047694321817]], "source": 1172174596, "length": 7.454698639181381}, {"destination": 1990203575, "path": [[-7922.834561554737, -4112.6476943222915], [-7904.084561552338, -4084.64769432193]], "source": 1172174596, "length": 7.175636715555411}, {"destination": 2001675432, "path": [[10009.815438444037, 2118.502305677339], [10048.615438449815, 2076.8023056767506], [10072.315438449663, 2015.9523056779703]], "source": 4867879894, "length": 26.114050241382547}, {"destination": 4867879889, "path": [[10009.815438444037, 2118.502305677339], [10117.515438444969, 2100.652305676576], [10152.365438443667, 2097.7523056782134]], "source": 4867879894, "length": 27.52237234487609}, {"destination": 2001675427, "path": [[10009.815438444037, 2118.502305677339], [9999.265438445093, 2120.2523056782497]], "source": 4867879894, "length": 2.044971791072925}, {"destination": 1320104055, "path": [[2933.065438448068, 3131.402305676545], [2890.115438447083, 3130.952305676615]], "source": 1320103554, "length": 8.16886156666165}, {"destination": 622622484, "path": [[-1745.5345615502438, 8401.452305676572], [-1668.8345615563094, 8367.052305677802]], "source": 622622483, "length": 16.472870527716324}, {"destination": 1404152878, "path": [[-1745.5345615502438, 8401.452305676572], [-2400.3345615568605, 8612.05230567741], [-2564.8845615506843, 8664.95230567743]], "source": 622622483, "length": 166.4981013519483}, {"destination": 856909257, "path": [[-1668.8345615563094, 8367.052305677802], [-1837.1345615548762, 7922.152305678054], [-1857.9345615563625, 7856.60230567764]], "source": 622622484, "length": 119.0961876343537}, {"destination": 622622483, "path": [[-1668.8345615563094, 8367.052305677802], [-1745.5345615502438, 8401.452305676572]], "source": 622622484, "length": 16.472870527716324}, {"destination": 856909246, "path": [[-1668.8345615563094, 8367.052305677802], [-741.4345615543994, 8098.952305678253]], "source": 622622484, "length": 186.19962946767745}, {"destination": 623417131, "path": [[-7007.884561552657, 8384.602305676835], [-7826.884561552561, 8501.252305677554], [-8547.4345615566, 8645.452305676927]], "source": 623417110, "length": 298.67810209479006}, {"destination": 623406700, "path": [[-7007.884561552657, 8384.602305676835], [-7185.584561554492, 7789.302305678092], [-7209.784561553079, 7737.602305677882], [-7252.434561550558, 7687.002305678092]], "source": 623417110, "length": 162.8925280512727}, {"destination": 623416771, "path": [[-7007.884561552657, 8384.602305676835], [-6929.834561553605, 8604.902305677342]], "source": 623417110, "length": 51.19229774914423}, {"destination": 1324294264, "path": [[-323.78456155157664, 5609.2523056765485], [-293.48456155275926, 5650.002305676693], [-266.48456155697886, 5700.352305677115]], "source": 1324295129, "length": 23.058460002176226}, {"destination": 1324294516, "path": [[-323.78456155157664, 5609.2523056765485], [-221.08456155223166, 5562.852305677879], [-213.43456155165086, 5579.4023056776605]], "source": 1324295129, "length": 26.04880219760131}, {"destination": 1324294372, "path": [[-323.78456155157664, 5609.2523056765485], [-512.634561552261, 5694.552305676836]], "source": 1324295129, "length": 40.61983063121605}, {"destination": 1324294575, "path": [[-323.78456155157664, 5609.2523056765485], [-363.43456155663034, 5527.602305678059]], "source": 1324295129, "length": 19.661950800689183}, {"destination": 1320103952, "path": [[1854.9654384472092, 3819.5523056767656], [1865.015438447415, 3851.3523056771246]], "source": 1320103556, "length": 7.324808460081235}, {"destination": 1320103714, "path": [[1854.9654384472092, 3819.5523056767656], [1833.515438448785, 3778.252305677299], [1822.7154384433675, 3702.4023056773103]], "source": 1320103556, "length": 27.04235933627971}, {"destination": 1320104117, "path": [[1854.9654384472092, 3819.5523056767656], [1967.6154384455913, 3803.452305676913], [1962.2654384434668, 3766.752305677912], [2070.7654384466423, 3745.7023056770568]], "source": 1320103556, "length": 51.10602335356339}, {"destination": 4867862897, "path": [[9016.315438444166, 66.90230567762967], [8924.765438443672, 30.252305677436198], [8902.66543844831, -15.597694321911604], [8857.715438445268, -64.9476943230809], [8792.015438444878, -126.84769432347309], [8769.865438445378, -154.94769432322641], [8733.015438444625, -203.69769432271312], [8626.415438449441, -269.6476943224724], [8573.41543844825, -299.44769432255214], [8523.81543844416, -336.1476943233299], [8476.465438448598, -387.99769432174]], "source": 4867879898, "length": 147.38751828419856}, {"destination": 4867862906, "path": [[9016.315438444166, 66.90230567762967], [9029.41543844804, 72.10230567800124], [9061.56543844361, 83.60230567738824], [9105.815438445574, 121.40230567680987], [9169.515438443908, 238.9523056773868], [9237.915438447431, 339.30230567769115], [9311.715438443003, 464.90230567819424], [9372.715438445312, 585.3023056765494], [9452.515438447052, 684.5023056776256], [9501.4654384471, 770.502305677212], [9549.765438443103, 826.7023056767187], [9604.715438449319, 900.7023056781804], [9644.965438447172, 950.6023056768953], [9689.865438446077, 1063.5523056770069], [9720.715438447769, 1153.0023056778305], [9803.215438445533, 1291.7523056774626], [9915.865438443916, 1486.7523056771859], [9940.01543844547, 1554.9523056765934], [9923.91543844917, 1683.4023056766512], [9926.615438445197, 1716.10230567687], [10022.465438446205, 1870.3523056782246], [10104.26543845, 2010.8523056769911]], "source": 4867879898, "length": 488.7604435388164}, {"destination": 4267598454, "path": [[9016.315438444166, 66.90230567762967], [9029.71543844444, 48.752305676913466]], "source": 4867879898, "length": 4.773279509335052}, {"destination": 2001675430, "path": [[9016.315438444166, 66.90230567762967], [8969.065438449776, 158.50230567693302], [8991.115438448105, 213.00230567788958], [9015.365438443723, 273.0023056773945], [9145.215438444155, 458.55230567681815], [9232.365438442968, 646.9023056769885], [9358.915438447468, 830.2523056773481], [9616.565438449243, 1261.702305678014], [9760.215438447518, 1526.252305676934], [9732.265438444188, 1534.6523056773976], [9710.8654384499, 1543.30230567723], [9671.765438447721, 1562.202305677829], [9764.26543844866, 1729.0523056772145], [9795.865438448458, 1881.9523056770038], [9873.665438448143, 2044.852305678191]], "source": 4867879898, "length": 495.699424861373}, {"destination": 1328999500, "path": [[3071.7154384447554, 7909.8523056782], [2845.2154384481787, 7847.852305676639]], "source": 622622494, "length": 45.233719856216375}, {"destination": 1328999549, "path": [[3071.7154384447554, 7909.8523056782], [3091.6654384469666, 7663.45230567822]], "source": 622622494, "length": 54.92816756093688}, {"destination": 622622495, "path": [[3071.7154384447554, 7909.8523056782], [3346.5154384444418, 8021.502305677331]], "source": 622622494, "length": 57.86577423313011}, {"destination": 622622496, "path": [[3346.5154384444418, 8021.502305677331], [3820.8654384490615, 8313.752305676659]], "source": 622622495, "length": 111.1953715359404}, {"destination": 1328999596, "path": [[3346.5154384444418, 8021.502305677331], [3373.3154384449904, 7920.652305678288], [3486.515438446247, 7478.752305678071], [3540.7154384472506, 7267.302305677958], [3558.615438443269, 7175.252305676949]], "source": 622622495, "length": 192.4983001108958}, {"destination": 1404618525, "path": [[3346.5154384444418, 8021.502305677331], [3256.9654384460023, 8358.40230567797]], "source": 622622495, "length": 76.83497012936331}, {"destination": 622622494, "path": [[3346.5154384444418, 8021.502305677331], [3071.7154384447554, 7909.8523056782]], "source": 622622495, "length": 57.86577423313011}, {"destination": 622622524, "path": [[3820.8654384490615, 8313.752305676659], [3671.765438447494, 8395.65230567807], [3326.8654384457363, 8585.202305678053], [3222.2154384484725, 8642.952305677909]], "source": 622622496, "length": 135.3712458441716}, {"destination": 622622495, "path": [[3820.8654384490615, 8313.752305676659], [3346.5154384444418, 8021.502305677331]], "source": 622622496, "length": 111.1953715359404}, {"destination": 482733400, "path": [[6226.815438445499, 6672.402305676784], [6382.665438444235, 6768.102305677814]], "source": 1319641071, "length": 36.49153029049515}, {"destination": 1319641336, "path": [[6226.815438445499, 6672.402305676784], [6689.915438442995, 6300.402305678077]], "source": 1319641071, "length": 120.83986538132794}, {"destination": 654382714, "path": [[6226.815438445499, 6672.402305676784], [5799.465438443008, 6375.052305678253]], "source": 1319641071, "length": 104.78291616611862}, {"destination": 1316471979, "path": [[178.46543844513008, 4663.602305678083], [245.51543844353318, 4645.252305676806], [250.86543844565767, 4663.602305678083], [319.16543844801026, 4648.40230567809]], "source": 1316471772, "length": 31.01691639680275}, {"destination": 1316236660, "path": [[-1537.784561556066, 800.7023056766371], [-1457.4345615514517, 965.2023056769821]], "source": 1316196972, "length": 39.64620037742556}, {"destination": 1316196988, "path": [[-1537.784561556066, 800.7023056766371], [-1605.234561552038, 833.0523056780947], [-1747.3845615540995, 874.3523056775615], [-1935.4345615525403, 945.2523056765472]], "source": 1316196972, "length": 82.34226155577568}, {"destination": 1316236855, "path": [[-1537.784561556066, 800.7023056766371], [-1618.284561551775, 635.8523056775311]], "source": 1316196972, "length": 39.7290888624369}, {"destination": 623417146, "path": [[-8547.4345615566, 8645.452305676927], [-8758.384561552646, 8698.002305678187]], "source": 623417131, "length": 41.79132770521204}, {"destination": 623417110, "path": [[-8547.4345615566, 8645.452305676927], [-7826.884561552561, 8501.252305677554], [-7007.884561552657, 8384.602305676835]], "source": 623417131, "length": 298.67810209479006}, {"destination": 2716408631, "path": [[-8547.4345615566, 8645.452305676927], [-8698.884561553656, 8242.502305677135], [-8745.684561553446, 8126.052305676978]], "source": 623417131, "length": 121.51292601383152}, {"destination": 1317671049, "path": [[1635.6654384495073, -441.4476943228607], [1614.3654384492834, -567.8976943226388]], "source": 475977519, "length": 28.411559455779734}, {"destination": 1317670954, "path": [[1635.6654384495073, -441.4476943228607], [1795.6154384464185, -441.59769432283724]], "source": 475977519, "length": 30.417585034722254}, {"destination": 1317670979, "path": [[1635.6654384495073, -441.4476943228607], [1632.6654384499761, -270.04769432181774]], "source": 475977519, "length": 38.12198443192752}, {"destination": 623417131, "path": [[-8758.384561552646, 8698.002305678187], [-8547.4345615566, 8645.452305676927]], "source": 623417146, "length": 41.79132770521204}, {"destination": 601712540, "path": [[-8758.384561552646, 8698.002305678187], [-8592.484561553703, 9131.052305678011]], "source": 623417146, "length": 101.34396282157608}, {"destination": 1324295027, "path": [[3015.415438447633, 5028.35230567733], [3005.4654384485957, 5094.902305676996]], "source": 1324295135, "length": 14.920274317505523}, {"destination": 1324294461, "path": [[3015.415438447633, 5028.35230567733], [2949.0154384461675, 5033.752305678263]], "source": 1324295135, "length": 12.685874771645734}, {"destination": 1324294615, "path": [[3015.415438447633, 5028.35230567733], [3026.9654384440514, 4954.9523056775515], [3099.365438444579, 4938.9023056782835]], "source": 1324295135, "length": 30.6955253090879}, {"destination": 5021317171, "path": [[-8975.48456155306, -2307.797694323099], [-9038.684561552656, -2372.997694322976]], "source": 476682044, "length": 18.83314161035623}, {"destination": 1316236979, "path": [[-485.0345615565743, 3740.1023056773397], [-411.58456155443446, 3850.6523056778265]], "source": 1316236406, "length": 28.276737972365147}, {"destination": 1316236380, "path": [[-485.0345615565743, 3740.1023056773397], [-135.4345615567354, 3617.6523056781207]], "source": 1316236406, "length": 71.84962876385987}, {"destination": 2629549326, "path": [[7871.765438444811, 2827.9523056777834], [7776.865438444247, 2622.902305677854], [7768.565438446729, 2606.1023056769272]], "source": 654391102, "length": 53.098409219860585}, {"destination": 2629549325, "path": [[7871.765438444811, 2827.9523056777834], [7524.815438443966, 2869.4023056772267]], "source": 654391102, "length": 66.62465543419725}, {"destination": 2629549334, "path": [[7871.765438444811, 2827.9523056777834], [8047.215438445221, 3338.552305677922], [8091.565438448356, 3467.702305677278], [8144.51543844541, 3613.8023056775382]], "source": 654391102, "length": 182.30420838506132}, {"destination": 2629549327, "path": [[7871.765438444811, 2827.9523056777834], [8056.415438446152, 2797.002305676699]], "source": 654391102, "length": 35.78524339368315}, {"destination": 1469016800, "path": [[-7994.184561553652, -96.54769432287935], [-7999.534561555776, -153.8976943233905], [-7897.634561551569, -337.3976943219503]], "source": 1469016712, "length": 57.97071790940746}, {"destination": 495646795, "path": [[7893.415438445572, -7262.297694323294], [7941.465438449313, -7282.997694321835]], "source": 495646546, "length": 10.231027268305533}, {"destination": 495645980, "path": [[7893.415438445572, -7262.297694323294], [7843.61543844625, -7339.047694323142], [7763.065438446403, -7370.597694322356], [7704.06543844615, -7382.297694322304], [7630.265438443474, -7392.097694323141]], "source": 495646546, "length": 62.08205810069381}, {"destination": 495646350, "path": [[7893.415438445572, -7262.297694323294], [7905.765438444234, -7226.747694321744], [7909.515438448978, -7200.197694322341]], "source": 495646546, "length": 14.193754163174528}, {"destination": 114903203, "path": [[9086.115438449837, -52.19769432329713], [9074.265438449913, -109.9976943219616], [9954.165438443852, -461.84769432322526]], "source": 4867879907, "length": 197.77307226923432}, {"destination": 602667420, "path": [[9086.115438449837, -52.19769432329713], [8987.865438449206, -11.447694323152291]], "source": 4867879907, "length": 20.766352706683694}, {"destination": 1890935355, "path": [[-7981.784561550853, -1392.2976943234744], [-7994.634561555358, -1455.5976943224637]], "source": 848254822, "length": 14.287703677265128}, {"destination": 1890531879, "path": [[-7981.784561550853, -1392.2976943234744], [-7955.734561555517, -1389.4476943221434], [-7928.58456155443, -1383.2976943231047], [-7917.234561553243, -1375.197694322594], [-7905.13456155395, -1366.5476943227618], [-7882.684561550946, -1343.4976943234033], [-7834.234561556741, -1269.297694323157]], "source": 848254822, "length": 41.71532494119907}, {"destination": 4708397769, "path": [[-7173.584561556368, -5806.097694321721], [-7191.734561551755, -5862.647694321766]], "source": 4708397772, "length": 13.041101690160865}, {"destination": 4708397771, "path": [[-7173.584561556368, -5806.097694321721], [-7148.7845615507695, -5728.997694323112]], "source": 4708397772, "length": 17.782600050129805}, {"destination": 4708397766, "path": [[-7173.584561556368, -5806.097694321721], [-7283.484561554587, -5780.247694323392], [-7301.93456155348, -5837.397694323343]], "source": 4708397772, "length": 34.85866680572832}, {"destination": 1890935378, "path": [[-8552.784561551618, -1475.6976943228751], [-8560.084561551663, -1444.497694322422]], "source": 1891528343, "length": 7.076352356988047}, {"destination": 1891590987, "path": [[-8552.784561551618, -1475.6976943228751], [-8550.184561556762, -1494.3976943229131]], "source": 1891528343, "length": 4.187933233571829}, {"destination": 1891528346, "path": [[-8552.784561551618, -1475.6976943228751], [-8504.484561555615, -1471.497694321755], [-8433.48456155013, -1465.8976943220382]], "source": 1891528343, "length": 22.791511483548426}, {"destination": 3356022891, "path": [[-312.33456155632666, 1471.9023056777303], [-326.13456155417, 1364.60230567792]], "source": 1831147405, "length": 24.006090522285195}, {"destination": 3356022885, "path": [[-312.33456155632666, 1471.9023056777303], [-402.534561551704, 1504.902305677902]], "source": 1831147405, "length": 18.658133639672066}, {"destination": 1831147423, "path": [[-312.33456155632666, 1471.9023056777303], [-507.3345615542735, 1376.7523056777975]], "source": 1831147405, "length": 42.69688735149439}, {"destination": 639308640, "path": [[42.665438449773774, 1266.00230567675], [-27.63456155463473, 1233.8523056776296], [-208.234561554832, 1235.7023056779326], [-449.63456155500126, 1263.2523056765876], [-842.5345615563629, 1350.052305676641], [-1137.584561554661, 1444.10230567793], [-1443.3345615501025, 1618.4023056773356]], "source": 1831147407, "length": 302.7645766607729}, {"destination": 93332110, "path": [[42.665438449773774, 1266.00230567675], [-198.08456155345766, 1274.452305677798], [-505.734561556892, 1304.0023056767325]], "source": 1831147407, "length": 104.69937007579271}, {"destination": 3356022890, "path": [[-549.7345615523841, 1508.6023056767317], [-622.3345615552489, 1476.1523056776582], [-640.2345615512672, 1411.252305677735]], "source": 1831147413, "length": 30.408637172582328}, {"destination": 3356022886, "path": [[-549.7345615523841, 1508.6023056767317], [-501.4345615563798, 1545.252305676925], [-453.78456155020785, 1529.6023056770025]], "source": 1831147413, "length": 21.9880601599166}, {"destination": 1831147423, "path": [[-549.7345615523841, 1508.6023056767317], [-507.3345615542735, 1376.7523056777975]], "source": 1831147413, "length": 30.410621183069757}, {"destination": 4198258802, "path": [[3737.9154384495905, 3861.7023056772837], [4046.6654384445633, 3872.202305677419], [4300.515438444563, 3893.302305677082], [4624.415438449603, 3908.4023056776828]], "source": 4198258583, "length": 168.9661295792148}, {"destination": 654400890, "path": [[3737.9154384495905, 3861.7023056772837], [3704.965438444674, 3922.5023056772557], [3640.265438448864, 4142.602305677201]], "source": 4198258583, "length": 65.37376497073723}, {"destination": 654405679, "path": [[3737.9154384495905, 3861.7023056772837], [3753.6654384453527, 3832.6523056770866], [3821.815438449505, 3490.302305676707], [3815.1654384463995, 3233.3523056777835], [3805.265438444394, 3086.502305677641], [3818.2154384429623, 2828.302305676544]], "source": 4198258583, "length": 231.694738114616}, {"destination": 3356022888, "path": [[-507.3345615542735, 1376.7523056777975], [-683.8345615562957, 1249.40230567816], [-681.8845615512714, 1187.402305676599], [-641.9845615539543, 1170.3023056774953]], "source": 1831147423, "length": 66.19779492660271}, {"destination": 3356022889, "path": [[-507.3345615542735, 1376.7523056777975], [-441.0845615510084, 1227.602305677422], [-507.03456155076765, 1202.0523056772704], [-540.3345615562216, 1135.8023056775578], [-581.3845615563196, 1147.8523056780432]], "source": 1831147423, "length": 73.54189399383156}, {"destination": 1831147413, "path": [[-507.3345615542735, 1376.7523056777975], [-549.7345615523841, 1508.6023056767317]], "source": 1831147423, "length": 30.410621183069757}, {"destination": 1831147405, "path": [[-507.3345615542735, 1376.7523056777975], [-312.33456155632666, 1471.9023056777303]], "source": 1831147423, "length": 42.69688735149439}, {"destination": 1319641416, "path": [[4506.965438444866, 4804.902305677317], [4504.81543844461, 4837.952305678073], [4507.66543844594, 4977.952305678102]], "source": 1324295152, "length": 38.50102970027864}, {"destination": 1319641082, "path": [[4506.965438444866, 4804.902305677317], [4529.115438444364, 4808.202305676801], [4992.3654384471665, 4844.302305677673]], "source": 1324295152, "length": 92.74827469994094}, {"destination": 1324294751, "path": [[4506.965438444866, 4804.902305677317], [4515.215438445352, 4675.202305676862]], "source": 1324295152, "length": 28.886591599309504}, {"destination": 857780856, "path": [[-6061.384561554916, 2479.3023056766115], [-6043.1345615512555, 2529.802305677009], [-5851.684561555714, 2912.5023056781883], [-5630.784561553526, 3295.4023056781525], [-5621.684561553764, 3310.1523056782157]], "source": 857780858, "length": 202.98648582550575}, {"destination": 93310009, "path": [[-6061.384561554916, 2479.3023056766115], [-6002.284561553495, 2452.8523056766007], [-5727.934561555514, 2367.352305677528], [-5401.134561552112, 2238.9023056774704]], "source": 857780858, "length": 136.62042303041164}, {"destination": 857780853, "path": [[-6061.384561554916, 2479.3023056766115], [-6112.834561555757, 2504.8523056767635], [-6199.284561553497, 2545.1023056781705], [-6306.9345615502925, 2602.1023056781446], [-6450.3845615533355, 2694.552305676723], [-6490.33456155479, 2712.102305677533]], "source": 857780858, "length": 96.81774058233431}, {"destination": 93246200, "path": [[-6061.384561554916, 2479.3023056766115], [-6073.33456155601, 2435.302305677567], [-6120.834561556876, 2297.202305676649]], "source": 857780858, "length": 42.05921948873274}, {"destination": 4273147819, "path": [[540.5154384447997, -1538.2976943225658], [534.9154384433064, -1574.147694322292], [529.1654384436129, -1590.697694322074]], "source": 4273214077, "length": 11.880774790059345}, {"destination": 4273214067, "path": [[540.5154384447997, -1538.2976943225658], [562.9154384436674, -1540.0976943222845], [569.165438449204, -1547.8476943222574], [585.9154384495469, -1549.6476943219761], [595.3154384457093, -1566.9476943234172], [604.3154384443028, -1567.5476943233234]], "source": 4273214077, "length": 15.535669092369428}, {"destination": 4273147830, "path": [[540.5154384447997, -1538.2976943225658], [542.015438448118, -1528.4976943217289]], "source": 4273214077, "length": 2.1979141560259166}, {"destination": 495768484, "path": [[9359.96543844908, -7563.79769432236], [9412.015438449827, -7589.597694321881]], "source": 91207598, "length": 11.439621084051698}, {"destination": 84466485, "path": [[9359.96543844908, -7563.79769432236], [8970.765438448325, -7326.797694322096]], "source": 91207598, "length": 90.8538037024575}, {"destination": 602392062, "path": [[9359.96543844908, -7563.79769432236], [9603.915438447075, -7191.497694321924]], "source": 91207598, "length": 94.9037658295065}, {"destination": 4346903222, "path": [[9359.96543844908, -7563.79769432236], [9728.865438447086, -6914.947694323104]], "source": 91207598, "length": 160.44304292912807}, {"destination": 3421417542, "path": [[-3579.884561553115, 8940.902305678123], [-4318.98456155011, 9177.202305677312]], "source": 622622645, "length": 150.0834603037809}, {"destination": 622622429, "path": [[-3579.884561553115, 8940.902305678123], [-3147.2345615526365, 8808.552305676898]], "source": 622622645, "length": 87.39836519179171}, {"destination": 600496502, "path": [[-3579.884561553115, 8940.902305678123], [-3457.2845615556957, 9244.552305677445], [-3333.134561550821, 9334.202305677052]], "source": 622622645, "length": 102.34703652991382}, {"destination": 93310009, "path": [[-5561.6345615518985, 1895.8523056777922], [-5401.134561552112, 2238.9023056774704]], "source": 479319990, "length": 82.1705514449187}, {"destination": 93246191, "path": [[-5561.6345615518985, 1895.8523056777922], [-5856.734561554333, 1999.252305678212], [-6117.834561550239, 2144.052305677491], [-6167.834561551899, 2170.4023056781098]], "source": 479319990, "length": 131.00328622343443}, {"destination": 476681033, "path": [[-8927.434561556423, -3678.6476943220237], [-8886.48456155039, -3701.9976943231113], [-8837.234561553942, -3726.947694323357]], "source": 479442881, "length": 20.245435537677857}, {"destination": 476681114, "path": [[-8927.434561556423, -3678.6476943220237], [-9019.384561554489, -3632.6976943232835], [-9064.084561551055, -3609.4476943233644], [-9145.434561553146, -3535.7976943224403]], "source": 479442881, "length": 52.73098818305203}, {"destination": 1317671424, "path": [[1591.9154384462786, 1158.6523056781316], [1579.865438444017, 1000.7523056767553], [1579.4154384494163, 961.5523056769604]], "source": 475977667, "length": 43.90876437547232}, {"destination": 3356028134, "path": [[1591.9154384462786, 1158.6523056781316], [1161.6154384483934, 1192.9023056769238]], "source": 475977667, "length": 82.18656364486264}, {"destination": 1315785192, "path": [[-4011.3845615508126, -1302.947694322043], [-4169.684561553311, -1203.0476943234448]], "source": 1315785501, "length": 37.4138357737306}, {"destination": 479286375, "path": [[-4011.3845615508126, -1302.947694322043], [-3875.634561552488, -1146.5476943222086]], "source": 1315785501, "length": 43.31490861111197}, {"destination": 1316471745, "path": [[1607.3154384486088, 1235.1523056768342], [1660.915438449706, 1596.952305677135]], "source": 475977669, "length": 81.10386802859996}, {"destination": 1320104044, "path": [[1607.3154384486088, 1235.1523056768342], [1741.465438449552, 1242.2523056780933]], "source": 475977669, "length": 25.561089622513467}, {"destination": 1581175160, "path": [[3077.9654384431865, -7973.347694322896], [2805.6654384442936, -7786.597694321884], [2622.6654384444714, -7619.1476943225925], [2491.815438446565, -7504.29769432337], [2433.1654384468493, -7405.597694322807], [2383.565438449864, -7271.647694322425]], "source": 93466273, "length": 208.86325858037458}, {"destination": 1769172142, "path": [[3077.9654384431865, -7973.347694322896], [3169.0654384490813, -7907.647694322506]], "source": 93466273, "length": 22.66114928296217}, {"destination": 1776116855, "path": [[3077.9654384431865, -7973.347694322896], [3121.4654384470464, -8005.79769432197]], "source": 93466273, "length": 10.976851602683563}, {"destination": 4573378145, "path": [[3523.1154384476326, 9103.152305677042], [3541.915438447063, 9154.002305677977]], "source": 4573378144, "length": 11.860471643295659}, {"destination": 4573378125, "path": [[3523.1154384476326, 9103.152305677042], [3464.4154384437797, 9138.402305676862]], "source": 4573378144, "length": 13.642323989783959}, {"destination": 4573378143, "path": [[3523.1154384476326, 9103.152305677042], [3503.41543844479, 9061.852305677576]], "source": 4573378144, "length": 9.919730567176853}, {"destination": 1316198738, "path": [[-2346.384561555226, 1699.802305678233], [-2586.6345615526143, 1768.3023056775937]], "source": 1316198732, "length": 48.16305673490034}, {"destination": 1316236739, "path": [[-2346.384561555226, 1699.802305678233], [-2368.4345615535563, 1633.8523056766974]], "source": 1316198732, "length": 15.25420679197268}, {"destination": 1316198811, "path": [[-2346.384561555226, 1699.802305678233], [-2334.7845615546703, 1734.4523056781468], [-2306.4845615508034, 1781.5523056778916]], "source": 1316198732, "length": 19.79174597349448}, {"destination": 773662874, "path": [[469.36543844822154, -1125.8976943224752], [515.0654384493691, -1133.247694323103], [510.11543844481366, -1155.6476943219707], [533.1654384477247, -1159.397694323161], [528.7154384490123, -1179.5976943229648], [552.8654384434617, -1183.497694322355], [548.0654384442118, -1205.2476943225088], [569.0154384438983, -1208.5976943225774], [562.4654384490668, -1237.7976943227509]], "source": 3485520292, "length": 43.207122433100956}, {"destination": 3485520291, "path": [[469.36543844822154, -1125.8976943224752], [471.01543844974003, -1114.447694321896]], "source": 3485520292, "length": 2.5667703848708503}, {"destination": 1316623439, "path": [[469.36543844822154, -1125.8976943224752], [421.86543844735525, -1118.2476943218944], [425.66543844912985, -1100.8976943234215], [404.51543844710613, -1097.497694322769], [409.6154384498618, -1074.3476943222418], [384.5654384448949, -1070.2976943228748], [390.1654384463882, -1044.8476943221153], [363.9654384457458, -1040.5976943221872], [370.61543844885136, -1010.4976943221544], [347.2154384454029, -1006.7476943227405], [334.9154384437725, -1004.7476943224609], [308.5154384478983, -1000.497694322533]], "source": 3485520292, "length": 56.95739815033072}, {"destination": 385113794, "path": [[2951.8154384433615, -545.3976943226024], [2993.7654384468715, -407.24769432287644]], "source": 1317671247, "length": 31.741956656389156}, {"destination": 1317671275, "path": [[712.9154384486469, 714.5023056782662], [692.465438447698, 459.1523056767244]], "source": 475977684, "length": 56.92026403235082}, {"destination": 1316694062, "path": [[712.9154384486469, 714.5023056782662], [911.6154384471997, 706.0523056772183]], "source": 475977684, "length": 37.834360366275085}, {"destination": 1317671343, "path": [[712.9154384486469, 714.5023056782662], [712.7154384463097, 1012.0023056767735]], "source": 475977684, "length": 66.16107407716713}, {"destination": 1317671121, "path": [[1576.0654384493478, 677.8023056774884], [1575.6154384476417, 637.452305676689], [1588.8654384497158, 465.95230567803014]], "source": 475977686, "length": 47.19732366007811}, {"destination": 1317671298, "path": [[1576.0654384493478, 677.8023056774884], [1577.0154384497914, 759.7023056771235]], "source": 475977686, "length": 18.214742582144073}, {"destination": 1317671254, "path": [[1576.0654384493478, 677.8023056774884], [1784.9654384463065, 666.9523056768156]], "source": 475977686, "length": 39.80059721187284}, {"destination": 1887596184, "path": [[-555.0845615545086, -7310.597694322852], [-483.3345615509188, -7306.347694322923]], "source": 1887596197, "length": 13.675316357166656}, {"destination": 1887596162, "path": [[-555.0845615545086, -7310.597694322852], [-582.084561550289, -7266.4976943226375]], "source": 1887596197, "length": 11.069650502123453}, {"destination": 1887596157, "path": [[-555.0845615545086, -7310.597694322852], [-555.6345615502778, -7365.547694321961], [-542.2345615500035, -7424.647694323383]], "source": 1887596197, "length": 25.60880159131625}, {"destination": 1469016620, "path": [[-6604.7845615528895, -1509.3976943223452], [-6301.734561553474, -1167.6476943218718]], "source": 1469016717, "length": 95.38067943804339}, {"destination": 1469016734, "path": [[-6604.7845615528895, -1509.3976943223452], [-6540.434561550512, -1559.8476943221585]], "source": 1469016717, "length": 16.6017615835057}, {"destination": 1469016799, "path": [[-6604.7845615528895, -1509.3976943223452], [-6699.584561552285, -1429.4476943224054]], "source": 1469016717, "length": 25.32054515298282}, {"destination": 1316471896, "path": [[761.3654384499569, 4279.202305676577], [653.6654384490248, 3902.20230567806], [598.2154384440719, 3725.902305676598]], "source": 476559329, "length": 126.90776315002202}, {"destination": 476554817, "path": [[761.3654384499569, 4279.202305676577], [1010.3654384465699, 4226.402305677723], [1329.2654384500224, 4190.952305677342], [1487.9654384429841, 4185.40230567821]], "source": 476559329, "length": 140.16030190239277}, {"destination": 495646795, "path": [[7924.165438446096, -7338.097694322698], [7941.465438449313, -7282.997694321835]], "source": 495646690, "length": 12.687650783466397}, {"destination": 495646692, "path": [[7924.165438446096, -7338.097694322698], [7964.065438443413, -7375.097694323429], [7967.815438448156, -7407.697694322479], [7921.265438447734, -7464.647694321869], [7883.565438447704, -7482.097694323286]], "source": 495646690, "length": 42.07967121893327}, {"destination": 495646692, "path": [[7924.165438446096, -7338.097694322698], [7911.465438446896, -7415.747694322406], [7883.565438447704, -7482.097694323286]], "source": 495646690, "length": 33.116778819460045}, {"destination": 385114529, "path": [[3234.5154384429975, -300.54769432297235], [3271.2654384496886, -266.39769432179605]], "source": 1548518395, "length": 10.32092679456833}, {"destination": 385113795, "path": [[3234.5154384429975, -300.54769432297235], [3164.2154384456944, -421.19769432247267]], "source": 1548518395, "length": 29.97750690273077}, {"destination": 481390039, "path": [[3234.5154384429975, -300.54769432297235], [3120.0654384448967, -258.9976943223604]], "source": 1548518395, "length": 23.645212652316552}, {"destination": 495646690, "path": [[7883.565438447704, -7482.097694323286], [7911.465438446896, -7415.747694322406], [7924.165438446096, -7338.097694322698]], "source": 495646692, "length": 33.116778819460045}, {"destination": 495646690, "path": [[7883.565438447704, -7482.097694323286], [7921.265438447734, -7464.647694321869], [7967.815438448156, -7407.697694322479], [7964.065438443413, -7375.097694323429], [7924.165438446096, -7338.097694322698]], "source": 495646692, "length": 42.07967121893327}, {"destination": 495645973, "path": [[7883.565438447704, -7482.097694323286], [7850.065438447018, -7502.447694323067], [7788.7654384483085, -7549.597694323395], [7728.715438446443, -7575.247694322939], [7657.315438443391, -7584.447694322094], [7547.115438448771, -7546.697694323257], [7502.565438443298, -7508.697694323274], [7453.56543844622, -7433.647694321977]], "source": 495646692, "length": 103.63727581662067}, {"destination": 2629549321, "path": [[7195.815438443276, 2908.70230567819], [7130.015438448822, 2696.152305677657]], "source": 654391101, "length": 48.897553905022114}, {"destination": 2629549325, "path": [[7195.815438443276, 2908.70230567819], [7524.815438443966, 2869.4023056772267]], "source": 654391101, "length": 63.17758637297068}, {"destination": 477576916, "path": [[-8957.084561551199, -797.6476943234445], [-9138.134561553103, -1118.2976943224787]], "source": 5002541034, "length": 79.18605306943593}, {"destination": 476794486, "path": [[-8957.084561551199, -797.6476943234445], [-8931.784561553968, -757.1476943226685]], "source": 5002541034, "length": 10.21074596181338}, {"destination": 1889249354, "path": [[-4006.2845615551623, -3460.9476943234795], [-3997.0345615500946, -3412.1976943222166], [-3998.984561555119, -3392.2476943217816], [-4000.9845615500694, -3380.5476943218337], [-4012.2345615500876, -3356.2476943220786], [-4024.4845615546865, -3340.097694323418], [-4041.884561551967, -3325.1976943233785], [-4063.3345615503913, -3311.3976943219823], [-4107.734561550558, -3290.797694322833]], "source": 1889249305, "length": 47.54879995744268}, {"destination": 3355916998, "path": [[-4006.2845615551623, -3460.9476943234795], [-4012.7845615529623, -3474.3976943225616]], "source": 1889249305, "length": 3.2361705051244196}, {"destination": 479280655, "path": [[434.5154384495231, -3921.2476943220054], [239.31543844923908, -3880.8476943223977], [-22.18456155134163, -3820.597694321748], [-196.08456155140175, -3784.997694323167], [-307.7345615523086, -3764.0476943234803]], "source": 4858951665, "length": 145.4285848629518}, {"destination": 1320103644, "path": [[2165.515438449006, 4213.002305677449], [2141.46543844862, 4095.702305678017]], "source": 476559347, "length": 26.484263246525234}, {"destination": 476555419, "path": [[2165.515438449006, 4213.002305677449], [2206.0154384462294, 4415.502305677776], [2274.465438446782, 4718.102305677263]], "source": 476559347, "length": 114.23083885183038}, {"destination": 1320103580, "path": [[2165.515438449006, 4213.002305677449], [2320.615438449636, 4222.252305677188], [2464.965438448985, 4241.152305677787], [2929.215438449262, 4367.102305677051]], "source": 476559347, "length": 149.97501771386305}, {"destination": 1316471977, "path": [[1537.4654384459063, 1234.1023056769984], [1482.0154384480588, 1337.752305676787], [1425.4154384474305, 1386.1523056775127]], "source": 1316471807, "length": 40.57056190995629}, {"destination": 475977669, "path": [[1537.4654384459063, 1234.1023056769984], [1607.3154384486088, 1235.1523056768342]], "source": 1316471807, "length": 13.286212871161517}, {"destination": 654400890, "path": [[3491.2654384484654, 4550.6023056773865], [3595.565438445192, 4350.802305676638], [3640.265438448864, 4142.602305677201]], "source": 476559359, "length": 95.7360298496865}, {"destination": 1324294551, "path": [[3491.2654384484654, 4550.6023056773865], [3467.465438447448, 4577.502305677328], [3355.215438446635, 4670.102305677659], [2994.7654384443467, 4747.15230567746], [2814.7654384440557, 4744.602305677859]], "source": 476559359, "length": 142.0671604904078}, {"destination": 848698004, "path": [[7110.315438445979, -7460.4976943231095], [7050.815438446989, -7440.747694323235], [7012.265438447685, -7413.14769432222], [6981.165438446624, -7390.897694323328], [6950.015438448531, -7376.2476943226575], [6917.6654384435205, -7367.297694322871], [6883.715438448235, -7367.047694321726], [6855.665438443737, -7370.147694322426], [6822.915438448263, -7380.5976943219775], [6788.165438443628, -7398.69769432211], [6736.115438449986, -7437.597694321951], [6682.065438447182, -7483.297694323099]], "source": 624646145, "length": 96.44934446139378}, {"destination": 84466494, "path": [[7110.315438445979, -7460.4976943231095], [6976.565438449711, -7362.0976943225005]], "source": 624646145, "length": 33.55037511213969}, {"destination": 481499482, "path": [[-1219.6845615548568, 3392.5023056777804], [-1126.6345615510431, 3340.8023056775705], [-1120.8845615513496, 3337.6023056774784]], "source": 481499142, "length": 22.405560158436955}, {"destination": 1316236566, "path": [[-1219.6845615548568, 3392.5023056777804], [-1159.9845615535287, 3511.0023056770247]], "source": 481499142, "length": 28.695323843985655}, {"destination": 483099095, "path": [[-1219.6845615548568, 3392.5023056777804], [-1477.1845615513257, 3506.2523056765826], [-1676.7845615532906, 3574.652305676551]], "source": 481499142, "length": 96.01585083313532}, {"destination": 1317671359, "path": [[2283.7154384447444, 641.1023056767107], [2678.1154384494243, 611.0523056772621]], "source": 475977736, "length": 75.30169317353753}, {"destination": 1317671021, "path": [[2283.7154384447444, 641.1023056767107], [2273.9654384480446, 798.8523056781105]], "source": 475977736, "length": 35.13111286589778}, {"destination": 1317671293, "path": [[2283.7154384447444, 641.1023056767107], [2271.315438449051, 553.4523056773821]], "source": 475977736, "length": 19.634428459649524}, {"destination": 1317670769, "path": [[3197.815438447549, 571.4023056775375], [3193.615438448205, 518.6523056774917]], "source": 475977737, "length": 11.758204551834838}, {"destination": 1317671084, "path": [[3197.815438447549, 571.4023056775375], [3292.165438445238, 564.5023056768395], [3375.565438446415, 534.9023056773206]], "source": 475977737, "length": 35.180260657229994}, {"destination": 475978428, "path": [[3197.815438447549, 571.4023056775375], [3225.6654384497097, 952.9523056777123]], "source": 475977737, "length": 85.01805855045482}, {"destination": 477666889, "path": [[-7651.584561550351, -3708.8476943232254], [-7642.334561552389, -3694.9476943224367]], "source": 5021317130, "length": 3.5597622373610633}, {"destination": 1890935410, "path": [[-7651.584561550351, -3708.8476943232254], [-7673.884561555155, -3677.5976943221876], [-7759.534561550652, -3625.9476943225623]], "source": 5021317130, "length": 28.070890726057165}, {"destination": 1990174510, "path": [[-7651.584561550351, -3708.8476943232254], [-7838.034561551411, -3987.347694321741]], "source": 5021317130, "length": 71.36562336937939}, {"destination": 1993253283, "path": [[7736.015438446486, -5752.197694322447], [7775.615438447403, -5704.397694323405], [7796.1654384495205, -5657.9476943223735], [7792.715438448284, -5625.447694322716]], "source": 63312209, "length": 31.330743709661004}, {"destination": 1765485421, "path": [[7736.015438446486, -5752.197694322447], [7900.5654384474155, -5707.997694322841], [8002.615438449822, -5687.847694321846]], "source": 63312209, "length": 52.71221963556303}, {"destination": 5021317156, "path": [[-7977.384561556278, -4192.3476943228625], [-8060.384561552781, -4154.9976943233705], [-8173.184561556468, -4211.347694322853], [-8256.884561554045, -4241.747694322839]], "source": 5021317138, "length": 59.969902745802344}, {"destination": 1172174594, "path": [[-7977.384561556278, -4192.3476943228625], [-8107.984561554815, -4383.097694322658]], "source": 5021317138, "length": 49.15547289824699}, {"destination": 1172174596, "path": [[-7977.384561556278, -4192.3476943228625], [-7922.834561554737, -4112.6476943222915]], "source": 5021317138, "length": 20.536796395473306}, {"destination": 1316623456, "path": [[-771.6345615520481, -1067.4476943233203], [-740.1345615534183, -927.7476943232443]], "source": 475975342, "length": 31.6401436977041}, {"destination": 1316623687, "path": [[-771.6345615520481, -1067.4476943233203], [-633.6845615564357, -1084.747694322985], [-625.7345615523491, -1038.347694322539], [-584.3845615558507, -1043.5476943229105], [-542.2845615541405, -1048.6976943226978]], "source": 475975342, "length": 52.97899481526967}, {"destination": 848690433, "path": [[-1595.734561554707, -2371.847694321971], [-1735.1845615536376, -2331.5476943217564]], "source": 845390852, "length": 27.991467040374552}, {"destination": 5021317153, "path": [[-8593.684561553517, -4594.5976943233545], [-8869.384561556615, -4420.547694323318]], "source": 5021317146, "length": 65.16624201352846}, {"destination": 477665906, "path": [[-8593.684561553517, -4594.5976943233545], [-8503.53456155517, -4651.547694322744], [-8422.13456155605, -4704.547694322158], [-8621.834561552078, -5021.047694322434]], "source": 5021317146, "length": 120.74553553674117}, {"destination": 477666011, "path": [[-8593.684561553517, -4594.5976943233545], [-8576.584561552636, -4568.74769432325], [-8515.584561550328, -4606.197694322134]], "source": 5021317146, "length": 20.88416918686129}, {"destination": 477665815, "path": [[-8593.684561553517, -4594.5976943233545], [-8685.834561553918, -4738.497694322774], [-8614.384561553834, -4782.097694322473]], "source": 5021317146, "length": 53.17672136100235}, {"destination": 5021317141, "path": [[-9058.8345615501, -4300.997694322461], [-9017.084561556032, -4327.347694323081]], "source": 5021317148, "length": 9.866892982028913}, {"destination": 5021317222, "path": [[-9058.8345615501, -4300.997694322461], [-9246.084561553402, -4513.797694322364], [-9283.63456155523, -4555.747694322321]], "source": 5021317148, "length": 70.9718163138135}, {"destination": 1404152835, "path": [[-327.83456155272006, 6657.952305676673], [-437.3345615533708, 6690.302305678131]], "source": 856909573, "length": 22.034020900530628}, {"destination": 1404037076, "path": [[-327.83456155272006, 6657.952305676673], [-298.5345615513779, 6715.802305677698]], "source": 856909573, "length": 14.020263118356697}, {"destination": 608700679, "path": [[-327.83456155272006, 6657.952305676673], [-610.3845615541559, 6134.702305677919]], "source": 856909573, "length": 128.17552589575155}, {"destination": 602360666, "path": [[6883.815438449403, -3106.897694323152], [6951.81543844825, -3004.0976943226383]], "source": 602360664, "length": 26.265050144347494}, {"destination": 495771182, "path": [[6883.815438449403, -3106.897694323152], [6587.06543844545, -2976.597694322791], [6447.565438449487, -2912.347694323358]], "source": 602360664, "length": 93.56558400110393}, {"destination": 5021317146, "path": [[-8869.384561556615, -4420.547694323318], [-8593.684561553517, -4594.5976943233545]], "source": 5021317153, "length": 65.16624201352846}, {"destination": 1928818266, "path": [[-8869.384561556615, -4420.547694323318], [-8840.234561553472, -4387.297694322001], [-8769.184561550957, -4433.497694321886], [-8787.58456155282, -4455.197694323232]], "source": 5021317153, "length": 32.17529641383534}, {"destination": 5021317141, "path": [[-8869.384561556615, -4420.547694323318], [-9017.084561556032, -4327.347694323081]], "source": 5021317153, "length": 34.905526274880565}, {"destination": 477666889, "path": [[-7612.234561555908, -3648.547694321991], [-7642.334561552389, -3694.9476943224367]], "source": 5021317154, "length": 11.800287084295018}, {"destination": 3047854933, "path": [[-7612.234561555908, -3648.547694321991], [-7341.534561554397, -3772.797694322705]], "source": 5021317154, "length": 58.423021158917805}, {"destination": 5021317166, "path": [[-7612.234561555908, -3648.547694321991], [-7593.684561555847, -3619.9476943217232], [-7499.484561556357, -3474.5976943231226], [-7408.884561556306, -3368.9976943218626], [-7322.834561556136, -3273.2976943226076], [-7255.134561553688, -3158.147694323432], [-7278.1845615566, -3147.9976943220577], [-7306.384561552193, -3199.597694322875], [-7318.0845615539165, -3220.2976943231934]], "source": 5021317154, "length": 151.57115630629278}, {"destination": 5021317156, "path": [[-8601.834561552834, -4305.197694321805], [-8483.63456154999, -4296.697694321949], [-8329.984561555648, -4268.247694323435], [-8256.884561554045, -4241.747694322839]], "source": 5021317155, "length": 67.54793752146917}, {"destination": 5021317141, "path": [[-8601.834561552834, -4305.197694321805], [-8615.084561554908, -4306.147694322249], [-8762.384561556757, -4306.147694322249], [-8863.234561552246, -4291.897694322699], [-8967.734561551311, -4271.497694322335], [-9017.084561556032, -4327.347694323081]], "source": 5021317155, "length": 85.92539155841537}, {"destination": 1990203597, "path": [[-8601.834561552834, -4305.197694321805], [-8604.284561556597, -4259.647694322411]], "source": 5021317155, "length": 10.140775156123313}, {"destination": 1990203594, "path": [[-8256.884561554045, -4241.747694322839], [-8278.684561553007, -4192.647694322815]], "source": 5021317156, "length": 11.680145068503613}, {"destination": 5021317155, "path": [[-8256.884561554045, -4241.747694322839], [-8329.984561555648, -4268.247694323435], [-8483.63456154999, -4296.697694321949], [-8601.834561552834, -4305.197694321805]], "source": 5021317156, "length": 67.54793752146917}, {"destination": 5021317138, "path": [[-8256.884561554045, -4241.747694322839], [-8173.184561556468, -4211.347694322853], [-8060.384561552781, -4154.9976943233705], [-7977.384561556278, -4192.3476943228625]], "source": 5021317156, "length": 59.969902745802344}, {"destination": 5021317165, "path": [[-8732.834561556047, -4196.347694323421], [-8659.134561554538, -4198.697694322462], [-8548.88456155578, -4192.647694322815], [-8452.784561555403, -4178.947694322588]], "source": 5021317158, "length": 53.5570745145047}, {"destination": 1729319686, "path": [[-8732.834561556047, -4196.347694323421], [-8767.23456155304, -4195.247694323001]], "source": 5021317158, "length": 6.545727476521414}, {"destination": 1990203597, "path": [[-8732.834561556047, -4196.347694323421], [-8728.484561551397, -4260.797694323415], [-8604.284561556597, -4259.647694322411]], "source": 5021317158, "length": 37.9754404095588}, {"destination": 1990203594, "path": [[-8434.984561553449, -4234.29769432282], [-8342.18456155611, -4212.347694322105], [-8278.684561553007, -4192.647694322815]], "source": 5021317160, "length": 31.15408953847104}, {"destination": 5021317165, "path": [[-8434.984561553449, -4234.29769432282], [-8452.784561555403, -4178.947694322588]], "source": 5021317160, "length": 12.765903693724146}, {"destination": 1990203597, "path": [[-8434.984561553449, -4234.29769432282], [-8510.834561555213, -4248.1976943218315], [-8604.284561556597, -4259.647694322411]], "source": 5021317160, "length": 32.70186168741276}, {"destination": 1990203594, "path": [[-8211.784561552804, -4102.997694323207], [-8182.28456155623, -4151.69769432211], [-8278.684561553007, -4192.647694322815]], "source": 5021317164, "length": 32.665554447042865}, {"destination": 5021317165, "path": [[-8211.784561552804, -4102.997694323207], [-8272.584561552776, -4126.647694322472], [-8347.784561550498, -4151.347694323348], [-8452.784561555403, -4178.947694322588]], "source": 5021317164, "length": 48.90835175036966}, {"destination": 476681047, "path": [[-8211.784561552804, -4102.997694323207], [-8162.434561555187, -4083.2476943233332]], "source": 5021317164, "length": 10.361453294366981}, {"destination": 1319641380, "path": [[3713.7654384480356, 4634.502305677302], [3673.6654384483813, 4625.302305678148]], "source": 476559405, "length": 7.896208550386619}, {"destination": 1404037095, "path": [[3713.7654384480356, 4634.502305677302], [3635.8154384430463, 4714.102305676704], [3574.1154384467677, 4748.502305677249], [3494.4654384432283, 4772.802305677004]], "source": 476559405, "length": 53.18188836297378}, {"destination": 5021317154, "path": [[-7318.0845615539165, -3220.2976943231934], [-7306.384561552193, -3199.597694322875], [-7278.1845615566, -3147.9976943220577], [-7255.134561553688, -3158.147694323432], [-7322.834561556136, -3273.2976943226076], [-7408.884561556306, -3368.9976943218626], [-7499.484561556357, -3474.5976943231226], [-7593.684561555847, -3619.9476943217232], [-7612.234561555908, -3648.547694321991]], "source": 5021317166, "length": 151.57115630629278}, {"destination": 1890769419, "path": [[-7318.0845615539165, -3220.2976943231934], [-7325.184561551623, -3216.8976943225402], [-7391.33456155372, -3172.7976943223266], [-7692.434561555217, -2978.2476943225333], [-8157.584561551801, -2669.847694322769], [-8268.084561557032, -2597.047694322896]], "source": 5021317166, "length": 227.71550624682456}, {"destination": 1890844107, "path": [[-7318.0845615539165, -3220.2976943231934], [-7290.78456155463, -3233.447694322322], [-7270.384561550713, -3238.8976943220628], [-7254.084561552077, -3236.947694322367], [-7233.984561551665, -3232.297694323094], [-7219.084561555178, -3220.797694321931], [-7207.034561552917, -3207.0476943228955], [-7156.234561556119, -3129.147694322043], [-6992.434561553296, -2901.9976943231995]], "source": 5021317166, "length": 103.92818114608747}, {"destination": 5021317177, "path": [[-7568.734561552048, -3562.3476943218434], [-7435.484561554517, -3551.547694321755]], "source": 5021317167, "length": 25.452258390009487}, {"destination": 5021317187, "path": [[-7568.734561552048, -3562.3476943218434], [-7644.034561550939, -3679.647694323052], [-7651.084561551614, -3690.797694321901]], "source": 5021317167, "length": 32.57726730782555}, {"destination": 5021317169, "path": [[-7568.734561552048, -3562.3476943218434], [-7593.33456155531, -3510.247694322288], [-7497.784561550702, -3382.647694323282]], "source": 5021317167, "length": 46.19112450437614}, {"destination": 1324294594, "path": [[3067.0654384437057, 5187.852305677865], [2941.0154384450493, 5182.652305677493]], "source": 1324295176, "length": 24.001584874624957}, {"destination": 1324294940, "path": [[3067.0654384437057, 5187.852305677865], [3140.5154384458456, 5190.852305677396], [3214.465438446723, 5204.502305677039]], "source": 1324295176, "length": 28.37441153388299}, {"destination": 1324294615, "path": [[3067.0654384437057, 5187.852305677865], [3094.01543844956, 5090.3023056765305], [3103.065438445185, 5048.002305677812], [3166.415438442982, 5037.552305678261], [3147.6654384476888, 4932.002305677585], [3099.365438444579, 4938.9023056782835]], "source": 1324295176, "length": 77.1805431272232}, {"destination": 476557955, "path": [[1992.2154384488522, 3213.6523056767173], [2009.2654384455955, 3346.2523056773107]], "source": 1320103603, "length": 29.666676955956753}, {"destination": 1320103684, "path": [[1992.2154384488522, 3213.6523056767173], [1970.6654384492595, 3046.2023056774256]], "source": 1320103603, "length": 37.46402832485586}, {"destination": 1320103589, "path": [[1992.2154384488522, 3213.6523056767173], [1924.715438448743, 3213.9523056766707], [1881.8154384447894, 3225.452305677834], [1763.7654384472512, 3252.952305677681]], "source": 1320103603, "length": 44.657676481209855}, {"destination": 1582473433, "path": [[6967.065438445275, -6609.697694322847], [7046.565438443508, -6671.497694322071]], "source": 3121830238, "length": 20.43031673365744}, {"destination": 495646003, "path": [[6967.065438445275, -6609.697694322847], [7155.015438449653, -6505.797694321913], [7346.7654384487, -6355.647694322286], [7496.365438449004, -6268.697694322256], [7588.2654384500365, -6248.097694323107], [7676.365438449295, -6287.497694323463], [7876.315438444692, -6480.597694322299]], "source": 3121830238, "length": 220.71874937667954}, {"destination": 3121830244, "path": [[6967.065438445275, -6609.697694322847], [6897.665438444278, -6683.447694323164], [6888.465438443347, -6786.197694323093], [6982.065438450036, -6938.947694322906]], "source": 3121830238, "length": 82.31818907011828}, {"destination": 4470914092, "path": [[6967.065438445275, -6609.697694322847], [6958.065438446682, -6602.697694322756], [6911.26543844689, -6571.197694322351], [6868.465438444105, -6558.397694321982], [6829.715438449568, -6544.697694321755]], "source": 3121830238, "length": 30.23323319584331}, {"destination": 639309902, "path": [[1055.0654384431368, 1141.3023056778825], [1072.915438449229, 1333.7523056780042]], "source": 639309879, "length": 42.933283069831404}, {"destination": 3356028134, "path": [[1055.0654384431368, 1141.3023056778825], [1156.4654384486062, 1134.3523056766003], [1161.6154384483934, 1192.9023056769238]], "source": 639309879, "length": 32.40366495189929}, {"destination": 3356028133, "path": [[1055.0654384431368, 1141.3023056778825], [973.5154384458156, 1146.0023056777402], [977.4654384457904, 1207.6023056781792]], "source": 639309879, "length": 29.26397816942015}, {"destination": 5021317169, "path": [[-7435.484561554517, -3551.547694321755], [-7410.034561551982, -3507.247694322757], [-7403.834561550582, -3483.9476943222535], [-7408.384561550463, -3450.697694322713], [-7424.584561555037, -3429.697694322442], [-7497.784561550702, -3382.647694323282]], "source": 5021317177, "length": 46.74415536245183}, {"destination": 5021317178, "path": [[-7435.484561554517, -3551.547694321755], [-7703.184561556498, -3966.447694322639]], "source": 5021317177, "length": 105.38021119242532}, {"destination": 5021317181, "path": [[-7435.484561554517, -3551.547694321755], [-7282.484561550007, -3621.097694322728]], "source": 5021317177, "length": 32.949844245175754}, {"destination": 5021317167, "path": [[-7435.484561554517, -3551.547694321755], [-7568.734561552048, -3562.3476943218434]], "source": 5021317177, "length": 25.452258390009487}, {"destination": 5021317177, "path": [[-7703.184561556498, -3966.447694322639], [-7435.484561554517, -3551.547694321755]], "source": 5021317178, "length": 105.38021119242532}, {"destination": 850279563, "path": [[-7703.184561556498, -3966.447694322639], [-7656.334561552569, -3987.1976943217646]], "source": 5021317178, "length": 10.032658600354617}, {"destination": 5021317228, "path": [[-7703.184561556498, -3966.447694322639], [-7743.68456155372, -4027.347694322003]], "source": 5021317178, "length": 15.580405595567443}, {"destination": 1582517413, "path": [[-7703.184561556498, -3966.447694322639], [-7764.334561557007, -3939.3976943227217], [-7798.33456155643, -3924.347694322705]], "source": 5021317178, "length": 20.373828589689893}, {"destination": 1316237161, "path": [[-704.0845615549074, 1680.3523056765357], [-722.1845615532629, 1596.5023056772054]], "source": 639309883, "length": 18.962387137978663}, {"destination": 1316236957, "path": [[-704.0845615549074, 1680.3523056765357], [-1029.5345615531915, 1787.0523056782163]], "source": 639309883, "length": 66.28628182187936}, {"destination": 639309886, "path": [[-704.0845615549074, 1680.3523056765357], [-655.2345615560284, 1794.202305678283], [-574.2345615544764, 1794.7023056770206], [-347.7345615507943, 1723.602305677474]], "source": 639309883, "length": 88.26073012985049}, {"destination": 1928818257, "path": [[-8061.534561555562, -4507.497694323348], [-8122.484561553733, -4481.397694322098], [-8249.784561556338, -4422.19769432306]], "source": 5021317180, "length": 40.51723906542465}, {"destination": 5021317227, "path": [[-8061.534561555562, -4507.497694323348], [-7977.684561552678, -4379.2976943226595]], "source": 5021317180, "length": 32.66606683794025}, {"destination": 1928818270, "path": [[-8061.534561555562, -4507.497694323348], [-8085.984561553516, -4519.697694322033], [-8112.434561553528, -4528.447694323035], [-8156.184561556756, -4532.797694322355], [-8466.484561552079, -4500.047694323328]], "source": 5021317180, "length": 78.60217765389352}, {"destination": 5021317177, "path": [[-7282.484561550007, -3621.097694322728], [-7435.484561554517, -3551.547694321755]], "source": 5021317181, "length": 32.949844245175754}, {"destination": 5021317182, "path": [[-7282.484561550007, -3621.097694322728], [-7223.084561552185, -3609.9976943226866], [-6695.834561554648, -3812.547694321822]], "source": 5021317181, "length": 121.47603176117805}, {"destination": 1990203575, "path": [[-7282.484561550007, -3621.097694322728], [-7401.184561551589, -3797.8976943229272], [-7640.034561553932, -4170.697694322101], [-7513.984561555276, -4221.097694323106], [-7528.884561551763, -4247.247694323164], [-7685.134561555174, -4185.24769432338], [-7904.084561552338, -4084.64769432193]], "source": 5021317181, "length": 252.81760944045936}, {"destination": 639309883, "path": [[-347.7345615507943, 1723.602305677474], [-574.2345615544764, 1794.7023056770206], [-655.2345615560284, 1794.202305678283], [-704.0845615549074, 1680.3523056765357]], "source": 639309886, "length": 88.26073012985049}, {"destination": 639308707, "path": [[-347.7345615507943, 1723.602305677474], [-292.6345615534842, 1822.4523056780129], [-224.88456155400627, 1935.7523056768855]], "source": 639309886, "length": 52.652738522955694}, {"destination": 1890818667, "path": [[-8136.684561556251, -1832.197694323412], [-8154.884561555775, -1822.397694322575], [-8181.734561553356, -1812.0476943224162], [-8217.934561550066, -1804.0476943230742], [-8274.284561551325, -1791.4476943232671], [-8286.334561553587, -1785.6976943217974], [-8297.084561554868, -1776.497694322643], [-8303.784561555005, -1765.0476943220638], [-8309.334561552361, -1753.6976943226534], [-8321.184561552287, -1742.0976943220978], [-8361.43456155014, -1722.597694323369]], "source": 1890732891, "length": 51.20642364804781}, {"destination": 1316471872, "path": [[934.1654384442677, 2100.652305676576], [880.8654384466763, 1925.752305677264]], "source": 1316471819, "length": 40.1950386003125}, {"destination": 1316471753, "path": [[934.1654384442677, 2100.652305676576], [952.9154384466665, 2162.102305677038], [970.3654384480842, 2214.6023056777153]], "source": 1316471819, "length": 26.261706060833184}, {"destination": 1316472174, "path": [[934.1654384442677, 2100.652305676576], [1034.0654384464187, 2071.7023056775474]], "source": 1316471819, "length": 20.060375723488566}, {"destination": 1891590987, "path": [[-8429.134561552586, -1484.0476943227543], [-8503.484561551033, -1490.097694322401], [-8550.184561556762, -1494.3976943229131]], "source": 1891590939, "length": 23.134613738244017}, {"destination": 654401048, "path": [[3393.465438449539, 4071.7523056770233], [3380.2154384474647, 4067.2523056777263], [3305.1154384438064, 3989.252305677482]], "source": 1320103607, "length": 25.180472274796344}, {"destination": 1320104049, "path": [[3393.465438449539, 4071.7523056770233], [3448.565438446849, 4090.4023056782535]], "source": 1320103607, "length": 11.270559209658089}, {"destination": 1320103835, "path": [[3393.465438449539, 4071.7523056770233], [3286.615438447882, 4061.552305676841]], "source": 1320103607, "length": 20.44795492802759}, {"destination": 481397312, "path": [[-4758.484561556032, 1015.3023056780341], [-3818.534561553122, 820.652305677072]], "source": 481397090, "length": 183.9218602115855}, {"destination": 1315785613, "path": [[-4758.484561556032, 1015.3023056780341], [-4759.0345615518, 939.7023056774145]], "source": 481397090, "length": 16.812955129004777}, {"destination": 3356028131, "path": [[1072.915438449229, 1333.7523056780042], [1179.9154384490862, 1322.4023056768174], [1173.3154384430122, 1261.6023056768454]], "source": 639309902, "length": 34.084484246033725}, {"destination": 3356028132, "path": [[1072.915438449229, 1333.7523056780042], [994.7154384448709, 1342.9523056771586], [984.3654384482647, 1275.8523056781712]], "source": 639309902, "length": 30.063493280031636}, {"destination": 639309879, "path": [[1072.915438449229, 1333.7523056780042], [1055.0654384431368, 1141.3023056778825]], "source": 639309902, "length": 42.933283069831404}, {"destination": 1316623368, "path": [[1649.1154384468132, -1410.1976943230454], [1662.565438444119, -1353.3476943230482]], "source": 1316623373, "length": 12.898997021525547}, {"destination": 1316623714, "path": [[1649.1154384468132, -1410.1976943230454], [1736.865438445534, -1442.2476943227734]], "source": 1316623373, "length": 18.145586072547793}, {"destination": 1316623659, "path": [[1649.1154384468132, -1410.1976943230454], [1573.2154384480168, -1394.0476943226088], [1376.8154384479203, -1366.3976943227851]], "source": 1316623373, "length": 52.725499974153536}, {"destination": 1316623189, "path": [[1649.1154384468132, -1410.1976943230454], [1633.1154384445767, -1478.0976943225]], "source": 1316623373, "length": 15.40354812613476}, {"destination": 619530378, "path": [[307.16543844988564, 7801.352305676801], [-91.13456155063204, 7914.402305678081], [-472.53456155260665, 8028.202305677468], [-604.2345615568934, 8055.952305676684]], "source": 622622486, "length": 182.45080275513098}, {"destination": 856909277, "path": [[307.16543844988564, 7801.352305676801], [212.76543844805929, 7657.952305677895], [53.46543844808593, 7400.652305676658], [-213.9845615545255, 6891.202305677524]], "source": 622622486, "length": 225.53835569258746}, {"destination": 623413798, "path": [[307.16543844988564, 7801.352305676801], [645.1154384450319, 7757.7523056771015], [988.0654384488707, 7717.802305677424], [1442.0154384495731, 7665.752305676677]], "source": 622622486, "length": 217.95322941353015}, {"destination": 856909486, "path": [[307.16543844988564, 7801.352305676801], [390.3154384445884, 7985.102305678282], [507.66543844815715, 8213.302305676962]], "source": 622622486, "length": 99.25881048743099}, {"destination": 1205016002, "path": [[5094.765438443005, -6951.197694322175], [5228.565438443411, -6976.297694322398], [5350.665438449198, -7075.347694321721]], "source": 620136803, "length": 58.05010857316231}, {"destination": 620136814, "path": [[5094.765438443005, -6951.197694322175], [5114.065438448279, -6905.697694323365], [5123.265438449209, -6857.94769432313], [5122.115438446428, -6809.547694322404], [5110.615438447041, -6762.147694322706], [5089.215438445649, -6717.347694323194], [5058.515438449263, -6676.697694322442], [5019.665438446453, -6641.497694323206], [4973.915438448274, -6612.947694321747], [4922.865438445001, -6592.097694323229]], "source": 620136803, "length": 96.87014888614836}, {"destination": 1785693343, "path": [[5094.765438443005, -6951.197694322175], [5068.965438447038, -6989.397694322719], [5036.065438446258, -7023.3476943233345], [4996.965438444078, -7052.147694322386], [4952.815438443281, -7074.997694322959], [4904.815438443677, -7091.197694322204], [4854.365438447417, -7100.297694321966], [4802.8154384454065, -7102.097694323462], [4751.615438443934, -7096.497694321968], [4702.2654384463185, -7083.697694323377], [4656.065438446432, -7063.99769432231], [4614.415438446429, -7037.997694322229]], "source": 620136803, "length": 107.9092166126275}, {"destination": 640627221, "path": [[-8675.184561553806, -6233.397694321851], [-8557.534561553837, -5842.947694322475]], "source": 638736468, "length": 89.66760867956721}, {"destination": 1324294809, "path": [[-3.8345615536172772, 5895.452305678006], [-25.584561555547225, 5830.302305676938]], "source": 1324295182, "length": 15.067542151218793}, {"destination": 1316236461, "path": [[-2176.584561553341, 3450.2023056770527], [-2231.7845615518195, 3333.202305677574]], "source": 1316236985, "length": 28.057877452673253}, {"destination": 1316198759, "path": [[-3067.034561553328, 2154.2023056770886], [-2818.584561552484, 2051.152305677206]], "source": 1316198756, "length": 52.51465646678671}, {"destination": 601145296, "path": [[-8291.434561556343, -5087.547694323292], [-8263.634561551215, -5030.247694323364]], "source": 5021317210, "length": 13.796048869642943}, {"destination": 5021317211, "path": [[-8291.434561556343, -5087.547694323292], [-8750.734561552064, -4958.797694323281], [-8872.08456155264, -4929.397694322546], [-9011.08456155697, -4865.397694322482]], "source": 5021317210, "length": 145.91318127324016}, {"destination": 5021317210, "path": [[-9011.08456155697, -4865.397694322482], [-8872.08456155264, -4929.397694322546], [-8750.734561552064, -4958.797694323281], [-8291.434561556343, -5087.547694323292]], "source": 5021317211, "length": 145.91318127324016}, {"destination": 5021317212, "path": [[-9011.08456155697, -4865.397694322482], [-8967.134561551404, -4782.347694321842]], "source": 5021317211, "length": 20.2724384542572}, {"destination": 5021317211, "path": [[-8967.134561551404, -4782.347694321842], [-9011.08456155697, -4865.397694322482]], "source": 5021317212, "length": 20.2724384542572}, {"destination": 5021317222, "path": [[-8967.134561551404, -4782.347694321842], [-8885.534561557051, -4810.897694323302], [-8409.68456155622, -4958.447694322743], [-8346.134561556084, -4973.04769432283], [-8299.534561551525, -4963.297694322577], [-8271.184561550626, -4943.89769432324], [-8252.984561551102, -4919.647694322293], [-8145.134561551969, -4673.997694322196], [-8136.034561552207, -4648.747694321997], [-8150.784561550495, -4636.097694323382], [-8215.534561550441, -4623.497694321799], [-8913.884561550844, -4522.49769432278], [-9365.834561556596, -4447.747694323212], [-9394.234561554527, -4450.647694323351], [-9385.184561551796, -4474.947694323106], [-9353.384561556766, -4501.147694321972], [-9283.63456155523, -4555.747694322321]], "source": 5021317212, "length": 488.49322941594795}, {"destination": 5021317222, "path": [[-8967.134561551404, -4782.347694321842], [-9016.084561551452, -4765.247694322738], [-9283.63456155523, -4555.747694322321]], "source": 5021317212, "length": 79.04056243529223}, {"destination": 93332051, "path": [[-402.534561551704, 1504.902305677902], [-465.23456155256326, 1393.452305677556], [-484.03456155199365, 1344.152305676971]], "source": 3356022885, "length": 39.03695905594542}, {"destination": 1831147405, "path": [[-402.534561551704, 1504.902305677902], [-312.33456155632666, 1471.9023056777303]], "source": 3356022885, "length": 18.658133639672066}, {"destination": 5021317148, "path": [[-9283.63456155523, -4555.747694322321], [-9246.084561553402, -4513.797694322364], [-9058.8345615501, -4300.997694322461]], "source": 5021317222, "length": 70.9718163138135}, {"destination": 5021317212, "path": [[-9283.63456155523, -4555.747694322321], [-9353.384561556766, -4501.147694321972], [-9385.184561551796, -4474.947694323106], [-9394.234561554527, -4450.647694323351], [-9365.834561556596, -4447.747694323212], [-8913.884561550844, -4522.49769432278], [-8215.534561550441, -4623.497694321799], [-8150.784561550495, -4636.097694323382], [-8136.034561552207, -4648.747694321997], [-8145.134561551969, -4673.997694322196], [-8252.984561551102, -4919.647694322293], [-8271.184561550626, -4943.89769432324], [-8299.534561551525, -4963.297694322577], [-8346.134561556084, -4973.04769432283], [-8409.68456155622, -4958.447694322743], [-8885.534561557051, -4810.897694323302], [-8967.134561551404, -4782.347694321842]], "source": 5021317222, "length": 488.49322941594806}, {"destination": 5021317212, "path": [[-9283.63456155523, -4555.747694322321], [-9016.084561551452, -4765.247694322738], [-8967.134561551404, -4782.347694321842]], "source": 5021317222, "length": 79.04056243529223}, {"destination": 93332133, "path": [[-641.9845615539543, 1170.3023056774953], [-608.4845615532686, 1232.5523056766485], [-570.0845615521644, 1318.8523056779645]], "source": 3356022888, "length": 35.774469619394836}, {"destination": 1831147423, "path": [[-641.9845615539543, 1170.3023056774953], [-681.8845615512714, 1187.402305676599], [-683.8345615562957, 1249.40230567816], [-507.3345615542735, 1376.7523056777975]], "source": 3356022888, "length": 66.19779492660271}, {"destination": 599406978, "path": [[-581.3845615563196, 1147.8523056780432], [-692.8345615548892, 932.65230567674], [-865.5345615551369, 620.852305678099], [-944.934561552202, 490.10230567780866]], "source": 3356022889, "length": 161.83231176158702}, {"destination": 1831147423, "path": [[-581.3845615563196, 1147.8523056780432], [-540.3345615562216, 1135.8023056775578], [-507.03456155076765, 1202.0523056772704], [-441.0845615510084, 1227.602305677422], [-507.3345615542735, 1376.7523056777975]], "source": 3356022889, "length": 73.54189399383156}, {"destination": 1315678544, "path": [[-4404.284561552175, -4629.6476943226135], [-4445.534561554609, -4719.547694323367], [-4474.934561550015, -4785.747694322496]], "source": 3836778602, "length": 37.224240360039104}, {"destination": 267194970, "path": [[-4404.284561552175, -4629.6476943226135], [-4585.234561552908, -4580.1976943220525]], "source": 3836778602, "length": 36.122775966182246}, {"destination": 5021317180, "path": [[-7977.684561552678, -4379.2976943226595], [-8061.534561555562, -4507.497694323348]], "source": 5021317227, "length": 32.66606683794025}, {"destination": 1172174594, "path": [[-7977.684561552678, -4379.2976943226595], [-8003.8345615562885, -4366.497694322291], [-8038.634561550851, -4419.397694322313], [-8070.934561551723, -4403.447694322438], [-8107.984561554815, -4383.097694322658]], "source": 5021317227, "length": 34.6948506695119}, {"destination": 5021317228, "path": [[-7977.684561552678, -4379.2976943226595], [-7960.934561552335, -4353.697694321923], [-7743.68456155372, -4027.347694322003]], "source": 5021317227, "length": 90.03430778448677}, {"destination": 5021317178, "path": [[-7743.68456155372, -4027.347694322003], [-7703.184561556498, -3966.447694322639]], "source": 5021317228, "length": 15.580405595567443}, {"destination": 5021317227, "path": [[-7743.68456155372, -4027.347694322003], [-7960.934561552335, -4353.697694321923], [-7977.684561552678, -4379.2976943226595]], "source": 5021317228, "length": 90.03430778448677}, {"destination": 1990174510, "path": [[-7743.68456155372, -4027.347694322003], [-7838.034561551411, -3987.347694321741]], "source": 5021317228, "length": 20.025076144028784}, {"destination": 1319641268, "path": [[4624.415438449603, 3908.4023056776828], [4712.665438447061, 3916.20230567824]], "source": 4198258802, "length": 16.87342106881385}, {"destination": 1319204590, "path": [[4624.415438449603, 3908.4023056776828], [4623.3654384479905, 3925.9023056779088], [4610.215438447085, 4059.052305677824]], "source": 4198258802, "length": 33.61374263733069}, {"destination": 4198258583, "path": [[4624.415438449603, 3908.4023056776828], [4300.515438444563, 3893.302305677082], [4046.6654384445633, 3872.202305677419], [3737.9154384495905, 3861.7023056772837]], "source": 4198258802, "length": 168.9661295792148}, {"destination": 1891590954, "path": [[-6901.534561556844, -2876.1476943230946], [-6886.434561550914, -2828.6476943222283], [-6885.0845615529015, -2791.9476943232266], [-6889.784561550982, -2730.44769432218]], "source": 1890502811, "length": 32.817357024304115}, {"destination": 3355899012, "path": [[-6901.534561556844, -2876.1476943230946], [-6781.134561556712, -2714.2476943229353], [-6533.384561556943, -2364.3476943231435], [-6497.384561555464, -2313.0976943228634]], "source": 1890502811, "length": 146.9284142072293}, {"destination": 624738894, "path": [[-1936.9845615528902, -2278.197694321804], [-1925.9845615522408, -2219.7476943226493]], "source": 152847380, "length": 13.16559697926841}, {"destination": 479284103, "path": [[-1936.9845615528902, -2278.197694321804], [-2036.234561550998, -2234.0476943227827]], "source": 152847380, "length": 21.274858757593485}, {"destination": 75352048, "path": [[-4116.28456155455, -3688.397694322276], [-4234.08456155272, -3922.8976943217476]], "source": 476548799, "length": 56.757813214642844}, {"destination": 477615709, "path": [[-4116.28456155455, -3688.397694322276], [-4182.2845615513415, -3666.8476943226833], [-4351.034561551614, -3607.747694323038], [-4469.984561552565, -3556.4476943221734], [-4653.334561552924, -3455.547694322547]], "source": 476548799, "length": 114.90635993633065}, {"destination": 477640432, "path": [[-5649.634561549988, -6937.847694322485], [-5702.684561555316, -7086.447694321762]], "source": 477640830, "length": 34.55232403785441}, {"destination": 477639369, "path": [[-5649.634561549988, -6937.847694322485], [-5628.684561550301, -6886.597694322205], [-5618.634561550096, -6876.797694323144], [-5586.284561552191, -6871.847694322142], [-5566.8845615528535, -6864.4976943232905], [-5553.23456155321, -6856.497694322172], [-5539.534561556537, -6842.647694321969], [-5531.184561554881, -6827.147694322022]], "source": 477640830, "length": 36.230073193688824}, {"destination": 477640827, "path": [[-5649.634561549988, -6937.847694322485], [-5801.484561551717, -6896.047694322505]], "source": 477640830, "length": 30.33287337094949}, {"destination": 1887877308, "path": [[-5649.634561549988, -6937.847694322485], [-5463.984561551171, -6985.447694322744], [-5325.934561554391, -7017.447694321888], [-5251.18456155127, -7034.6476943221605], [-5180.13456155586, -7053.6976943227355], [-4883.984561551813, -7141.897694323163], [-4798.934561556223, -7016.147694322683]], "source": 477640830, "length": 184.8611936139305}, {"destination": 1780414612, "path": [[11347.515438444589, -4688.49769432289], [11371.515438447943, -4631.097694321796]], "source": 1780414592, "length": 13.556832885531897}, {"destination": 1780414637, "path": [[11347.515438444589, -4688.49769432289], [11220.26543844612, -4938.397694322915]], "source": 1780414592, "length": 60.61447054747855}, {"destination": 385113782, "path": [[832.515438446535, -411.3976943234121], [652.2654384468751, -389.94769432321164]], "source": 2460670081, "length": 34.608490081864275}, {"destination": 4273384790, "path": [[832.515438446535, -411.3976943234121], [776.4154384446442, -724.5476943218421], [660.1154384497931, -707.3476943233459]], "source": 2460670081, "length": 92.89861261251647}, {"destination": 1780414618, "path": [[10773.115438446723, -5196.64769432282], [10539.765438444703, -5515.3976943227435]], "source": 1780414601, "length": 83.62879401124148}, {"destination": 1780414636, "path": [[10773.115438446723, -5196.64769432282], [10980.615438448638, -5263.147694321901], [11120.065438447567, -5062.597694323045], [11178.965438446652, -4956.14769432251]], "source": 1780414601, "length": 120.21336471118926}, {"destination": 1780414630, "path": [[10773.115438446723, -5196.64769432282], [10786.515438446997, -5127.84769432173], [10846.465438447694, -5075.09769432346], [10889.41543844868, -5020.047694323182]], "source": 1780414601, "length": 46.584958706930706}, {"destination": 1771400913, "path": [[9238.115438449768, -5512.297694322044], [9292.265438446633, -5428.047694323368]], "source": 1780414602, "length": 21.379240091026407}, {"destination": 1771400938, "path": [[9238.115438449768, -5512.297694322044], [9179.565438444115, -5603.347694322025]], "source": 1780414602, "length": 23.107564993616112}, {"destination": 1780414630, "path": [[9238.115438449768, -5512.297694322044], [10889.41543844868, -5020.047694323182]], "source": 1780414602, "length": 332.5310116287706}, {"destination": 495640698, "path": [[3885.4654384437026, -4706.997694322368], [4064.0654384489494, -4564.147694322784]], "source": 893859979, "length": 46.503634707130445}, {"destination": 893859981, "path": [[3885.4654384437026, -4706.997694322368], [3992.065438445991, -4802.4476943222535]], "source": 893859979, "length": 29.350866818818513}, {"destination": 1721498095, "path": [[3885.4654384437026, -4706.997694322368], [3680.665438444919, -4895.247694323146], [3594.3654384453794, -4904.047694322955], [3544.465438444888, -4918.69769432185], [3458.6154384470547, -4988.397694322799], [3458.6154384470547, -5039.797694323056], [3452.015438448086, -5071.697694322807], [3334.2154384499167, -5174.29769432276], [3316.6154384431934, -5189.64769432273], [3425.6154384451065, -5292.547694322636]], "source": 893859979, "length": 192.51386391499466}, {"destination": 1780414612, "path": [[11413.515438448485, -4554.497694321924], [11371.515438447943, -4631.097694321796]], "source": 1780414604, "length": 18.81422910328537}, {"destination": 3662230614, "path": [[11413.515438448485, -4554.497694321924], [11225.315438444739, -4606.897694323208]], "source": 1780414604, "length": 37.63636150852158}, {"destination": 1721498161, "path": [[3992.065438445991, -4802.4476943222535], [4029.46543844962, -4774.097694323132]], "source": 893859981, "length": 9.503980367890346}, {"destination": 893859979, "path": [[3992.065438445991, -4802.4476943222535], [3885.4654384437026, -4706.997694322368]], "source": 893859981, "length": 29.350866818818513}, {"destination": 1721498215, "path": [[3992.065438445991, -4802.4476943222535], [3714.6654384443423, -5035.597694321936], [3665.7654384484317, -5079.447694322781]], "source": 893859981, "length": 87.439355437716}, {"destination": 481394996, "path": [[-1796.1845615559469, -1619.8476943234396], [-2099.934561556438, -1580.847694322429], [-2455.634561556508, -1531.5976943224287]], "source": 481433742, "length": 126.93287345090106}, {"destination": 481390839, "path": [[-1796.1845615559469, -1619.8476943234396], [-1759.7845615568986, -1416.5476943226452], [-1687.1345615570021, -1076.0976943231526], [-1650.884561556154, -903.5476943228815], [-1562.5345615504216, -639.4976943226993]], "source": 481433742, "length": 222.76770181337037}, {"destination": 1315785635, "path": [[-2197.18456155249, -560.6476943231797], [-2218.3345615545136, -628.447694323242]], "source": 1315785235, "length": 15.605548583030277}, {"destination": 481394324, "path": [[-2197.18456155249, -560.6476943231797], [-2172.18456155166, -480.5476943232634]], "source": 1315785235, "length": 18.437037747860327}, {"destination": 1315785459, "path": [[-2197.18456155249, -560.6476943231797], [-2412.984561551923, -504.3976943230888]], "source": 1315785235, "length": 42.90283325886327}, {"destination": 1780414633, "path": [[9243.615438442986, -5175.997694323087], [11075.565438446232, -4650.797694322861]], "source": 1780414611, "length": 367.40789846934376}, {"destination": 1771400942, "path": [[9243.615438442986, -5175.997694323087], [8979.015438448812, -5210.397694321856], [8868.415438449518, -5313.247694322953]], "source": 1780414611, "length": 81.96372135533795}, {"destination": 1771400913, "path": [[9243.615438442986, -5175.997694323087], [9292.265438446633, -5428.047694323368]], "source": 1780414611, "length": 56.81169781683446}, {"destination": 1780414592, "path": [[11371.515438447943, -4631.097694321796], [11347.515438444589, -4688.49769432289]], "source": 1780414612, "length": 13.556832885531897}, {"destination": 1780414604, "path": [[11371.515438447943, -4631.097694321796], [11413.515438448485, -4554.497694321924]], "source": 1780414612, "length": 18.81422910328537}, {"destination": 115547719, "path": [[11371.515438447943, -4631.097694321796], [11295.41543844681, -4657.947694322928]], "source": 1780414612, "length": 15.654274144969436}, {"destination": 1315678817, "path": [[-2951.3845615554146, -5201.197694322701], [-2973.134561550239, -5272.24769432344]], "source": 1315678574, "length": 16.333309321782288}, {"destination": 1315678676, "path": [[-2951.3845615554146, -5201.197694322701], [-2745.134561550344, -5244.747694321816]], "source": 1315678574, "length": 40.39656023509458}, {"destination": 1315678701, "path": [[-2951.3845615554146, -5201.197694322701], [-2936.034561550116, -5151.147694322233]], "source": 1315678574, "length": 11.506785322050066}, {"destination": 1581175594, "path": [[2223.26543844531, -6283.197694322951], [2361.0654384498275, -6420.3476943234255]], "source": 602364054, "length": 40.21005887511152}, {"destination": 495641404, "path": [[2223.26543844531, -6283.197694322951], [2257.0154384453645, -6224.997694323164]], "source": 602364054, "length": 14.44672743755331}, {"destination": 495641874, "path": [[2223.26543844531, -6283.197694322951], [2202.3154384456234, -6345.59769432208], [2174.3654384493993, -6471.947694322466]], "source": 602364054, "length": 43.03452830504715}, {"destination": 1404618523, "path": [[2351.015438449622, 8870.752305677242], [2650.765438446001, 8641.702305677512]], "source": 1404618499, "length": 76.45503471350814}, {"destination": 1780414601, "path": [[10539.765438444703, -5515.3976943227435], [10773.115438446723, -5196.64769432282]], "source": 1780414618, "length": 83.62879401124148}, {"destination": 2932694433, "path": [[9278.215438449422, -5221.947694321827], [9998.815438443387, -5020.347694323135]], "source": 1780414619, "length": 144.17101138822986}, {"destination": 1890502906, "path": [[-7499.184561552852, -1307.3976943225318], [-6782.234561555356, -1722.7976943221533]], "source": 479298586, "length": 164.68919804474467}, {"destination": 5017787788, "path": [[-7499.184561552852, -1307.3976943225318], [-7450.184561555772, -1229.7476943228248]], "source": 479298586, "length": 19.622030811790687}, {"destination": 5021317177, "path": [[-7497.784561550702, -3382.647694323282], [-7424.584561555037, -3429.697694322442], [-7408.384561550463, -3450.697694322713], [-7403.834561550582, -3483.9476943222535], [-7410.034561551982, -3507.247694322757], [-7435.484561554517, -3551.547694321755]], "source": 5021317169, "length": 46.74415536245183}, {"destination": 5021317171, "path": [[-7497.784561550702, -3382.647694323282], [-7817.084561551724, -3176.547694321741], [-9038.684561552656, -2372.997694322976]], "source": 5021317169, "length": 369.15779539844004}, {"destination": 5021317167, "path": [[-7497.784561550702, -3382.647694323282], [-7593.33456155531, -3510.247694322288], [-7568.734561552048, -3562.3476943218434]], "source": 5021317169, "length": 46.19112450437614}, {"destination": 1315785490, "path": [[-4598.034561553277, 1791.1523056781675], [-4256.884561556262, 1669.5023056776392]], "source": 385114569, "length": 70.29396609435167}, {"destination": 483110717, "path": [[-4598.034561553277, 1791.1523056781675], [-4619.934561553408, 1697.8023056779534], [-4708.88456155194, 1318.7023056779879]], "source": 385114569, "length": 107.16229203254828}, {"destination": 601145319, "path": [[-4598.034561553277, 1791.1523056781675], [-4661.934561553949, 1815.552305677315]], "source": 385114569, "length": 13.308918280141171}, {"destination": 477634435, "path": [[-5668.684561555892, -6566.697694323054], [-5680.7345615510485, -6595.7476943232505]], "source": 1887877284, "length": 6.854443386727649}, {"destination": 477639508, "path": [[-5668.684561555892, -6566.697694323054], [-5460.0845615553335, -6608.397694321866]], "source": 1887877284, "length": 40.73393866127102}, {"destination": 1780414601, "path": [[10889.41543844868, -5020.047694323182], [10846.465438447694, -5075.09769432346], [10786.515438446997, -5127.84769432173], [10773.115438446723, -5196.64769432282]], "source": 1780414630, "length": 46.584958706930706}, {"destination": 1780414602, "path": [[10889.41543844868, -5020.047694323182], [9238.115438449768, -5512.297694322044]], "source": 1780414630, "length": 332.5310116287706}, {"destination": 1780414636, "path": [[10889.41543844868, -5020.047694323182], [11178.965438446652, -4956.14769432251]], "source": 1780414630, "length": 56.862599180063725}, {"destination": 1780414633, "path": [[10889.41543844868, -5020.047694323182], [11075.565438446232, -4650.797694322861]], "source": 1780414630, "length": 89.42161814379311}, {"destination": 1780414611, "path": [[11075.565438446232, -4650.797694322861], [9243.615438442986, -5175.997694323087]], "source": 1780414633, "length": 367.40789846934376}, {"destination": 1780414630, "path": [[11075.565438446232, -4650.797694322861], [10889.41543844868, -5020.047694323182]], "source": 1780414633, "length": 89.42161814379311}, {"destination": 3662230614, "path": [[11075.565438446232, -4650.797694322861], [11225.315438444739, -4606.897694323208]], "source": 1780414633, "length": 30.102766565273658}, {"destination": 1780414601, "path": [[11178.965438446652, -4956.14769432251], [11120.065438447567, -5062.597694323045], [10980.615438448638, -5263.147694321901], [10773.115438446723, -5196.64769432282]], "source": 1780414636, "length": 120.21336471118926}, {"destination": 1780414637, "path": [[11178.965438446652, -4956.14769432251], [11220.26543844612, -4938.397694322915]], "source": 1780414636, "length": 8.789606091919206}, {"destination": 1780414630, "path": [[11178.965438446652, -4956.14769432251], [10889.41543844868, -5020.047694323182]], "source": 1780414636, "length": 56.862599180063725}, {"destination": 1780414592, "path": [[11220.26543844612, -4938.397694322915], [11347.515438444589, -4688.49769432289]], "source": 1780414637, "length": 60.61447054747855}, {"destination": 1780414636, "path": [[11220.26543844612, -4938.397694322915], [11178.965438446652, -4956.14769432251]], "source": 1780414637, "length": 8.789606091919206}, {"destination": 1771400994, "path": [[8716.61543844482, -5652.797694322587], [8931.915438445514, -5590.847694323386]], "source": 1771400904, "length": 43.194891316141785}, {"destination": 1771400967, "path": [[8716.61543844482, -5652.797694322587], [8752.165438444592, -5744.297694322498]], "source": 1771400904, "length": 21.441961250694668}, {"destination": 1771400991, "path": [[8716.61543844482, -5652.797694322587], [8414.765438445214, -5739.647694323225]], "source": 1771400904, "length": 60.55890954898524}, {"destination": 4273347013, "path": [[892.2654384448947, -854.3476943234651], [899.7654384472753, -821.3476943232934], [847.1654384436533, -814.1976943232265], [834.9154384461599, -867.1976943226412]], "source": 4273351027, "length": 29.619689326885883}, {"destination": 4273347013, "path": [[892.2654384448947, -854.3476943234651], [887.2654384433076, -876.197694323011], [834.9154384461599, -867.1976943226412]], "source": 4273351027, "length": 15.10576800093954}, {"destination": 4273350990, "path": [[892.2654384448947, -854.3476943234651], [974.2154384468904, -871.0976943220317], [982.1654384438716, -900.6976943233269], [963.9654384443475, -970.1476943231313], [919.7154384494866, -961.3976943221303], [910.7154384437877, -1002.3976943234203]], "source": 4273351027, "length": 56.519286226552026}, {"destination": 1784682724, "path": [[8616.0154384487, -5282.0476943225], [8692.165438446864, -5490.797694323035]], "source": 1784682678, "length": 48.62974262940881}, {"destination": 1316472082, "path": [[2277.4154384492817, 3327.652305676665], [2277.965438445051, 3145.4523056773096]], "source": 1320103625, "length": 40.519639095121605}, {"destination": 1316472147, "path": [[2277.4154384492817, 3327.652305676665], [2277.315438448113, 3366.7023056782596]], "source": 1320103625, "length": 8.684386970497103}, {"destination": 1320103709, "path": [[2277.4154384492817, 3327.652305676665], [2420.7654384440502, 3337.852305676847], [2474.9654384450537, 3352.8023056774714]], "source": 1320103625, "length": 38.187770087692925}, {"destination": 1316623736, "path": [[2361.815438447934, -919.2976943221964], [2329.015438448323, -1084.8476943223773]], "source": 1316623497, "length": 37.341377221646}, {"destination": 1317670881, "path": [[2231.1654384452595, 1213.452305677265], [1968.6154384430665, 1180.2023056777243], [1788.6654384469125, 1154.0523056776665]], "source": 475977913, "length": 85.18793576466557}, {"destination": 475978414, "path": [[2231.1654384452595, 1213.452305677265], [2264.715438442977, 948.9023056765689]], "source": 475977913, "length": 59.1782130895955}, {"destination": 103938914, "path": [[8076.415438445394, -4553.147694322135], [8023.965438447078, -4802.0976943217165], [7997.165438446529, -5130.04769432257], [7974.865438448831, -5343.797694322916], [7856.06543844608, -5440.947694323128]], "source": 1784682682, "length": 208.34872365873812}, {"destination": 1784682709, "path": [[8076.415438445394, -4553.147694322135], [8068.815438448951, -4539.947694322422], [8066.965438445095, -4525.397694322919], [8071.06543844327, -4511.097694322785], [8075.515438449088, -4504.297694323256], [8087.515438447213, -4493.797694323121], [8102.965438446574, -4487.447694321744], [8120.065438447455, -4485.997694322563], [8143.815438444335, -4492.997694322654]], "source": 1784682682, "length": 26.102330938994484}, {"destination": 1888393442, "path": [[2479.1154384473657, -2700.347694322147], [2463.0154384439606, -2702.2976943218423], [2443.015438444718, -2707.5976943233827], [2427.165438447787, -2715.54769432214], [2403.015438446232, -2724.6976943224863], [2380.2154384497953, -2729.297694322952], [2361.4654384473965, -2728.1476943219473], [2348.0654384471222, -2722.4476943228383], [2293.9654384472874, -2679.6476943218295]], "source": 1888393403, "length": 40.482021015683486}, {"destination": 601661225, "path": [[-8360.334561551497, 6477.652305678205], [-8297.834561552974, 6716.452305678189], [-8309.634561555868, 6776.802305678231], [-8363.08456155166, 6827.152305676876], [-9246.784561554477, 7108.102305677377]], "source": 601661130, "length": 262.46909917330026}, {"destination": 601661132, "path": [[-8360.334561551497, 6477.652305678205], [-7616.084561554715, 6208.702305677605]], "source": 601661130, "length": 153.67175839960856}, {"destination": 601661230, "path": [[-8360.334561551497, 6477.652305678205], [-8435.734561551555, 6192.602305677752], [-8650.88456155405, 5209.05230567692]], "source": 601661130, "length": 287.5208694709369}, {"destination": 4708397776, "path": [[-6562.634561554149, -5870.497694322907], [-6617.334561553889, -5857.647694321955], [-6701.334561554972, -5837.197694322782]], "source": 443291839, "length": 27.393813891729103}, {"destination": 267198435, "path": [[-6562.634561554149, -5870.497694322907], [-6426.534561555286, -5631.147694321825], [-6398.434561553757, -5594.747694322777], [-6367.834561551434, -5562.647694322464], [-6305.384561557048, -5522.647694322202]], "source": 443291839, "length": 92.9334324406962}, {"destination": 267198208, "path": [[-7987.734561552884, -4609.697694322179], [-7282.234561550638, -4780.947694323246]], "source": 850278592, "length": 139.45368698437258}, {"destination": 601145298, "path": [[-7987.734561552884, -4609.697694322179], [-8045.584561550357, -4600.947694322955]], "source": 850278592, "length": 11.171363347475207}, {"destination": 156253446, "path": [[-7987.734561552884, -4609.697694322179], [-8117.134561551609, -4873.447694322408], [-8220.034561553291, -5089.79769432294]], "source": 850278592, "length": 115.5480781319207}, {"destination": 1316236673, "path": [[-3011.234561554943, 1291.1523056775563], [-3018.784561554355, 1278.0523056772354], [-3048.0845615556973, 1233.4523056782841]], "source": 1316237003, "length": 14.623709672720802}, {"destination": 1316236411, "path": [[-3011.234561554943, 1291.1523056775563], [-2973.0845615532075, 1357.402305677269]], "source": 1316237003, "length": 16.423006589018296}, {"destination": 1316236661, "path": [[-3011.234561554943, 1291.1523056775563], [-3177.0345615527162, 1358.302305677128], [-3265.4345615554803, 1424.8523056767935], [-3386.134561552012, 1477.6023056768395]], "source": 1316237003, "length": 83.06523947013807}, {"destination": 87781592, "path": [[-8954.98456155508, 2559.602305677089], [-8332.934561551043, 2401.252305677559]], "source": 71129462, "length": 123.43245523138002}, {"destination": 483118665, "path": [[-8954.98456155508, 2559.602305677089], [-8942.984561556954, 2916.3523056769945], [-8915.534561552362, 3247.052305678011]], "source": 71129462, "length": 153.1000751152206}, {"destination": 857781031, "path": [[-8954.98456155508, 2559.602305677089], [-8985.334561550928, 2422.202305677246], [-9057.13456155155, 2131.102305677146], [-9085.534561556586, 2025.0023056771483], [-9129.834561555583, 1931.00230567822]], "source": 71129462, "length": 144.00305105256678}, {"destination": 1320103962, "path": [[1500.7654384433522, 3030.5023056769187], [1476.2654384483653, 2921.252305677413]], "source": 1316471841, "length": 24.73865079668646}, {"destination": 476554810, "path": [[1500.7654384433522, 3030.5023056769187], [1433.715438444949, 3044.2523056777304], [1322.5154384457483, 3072.9023056768056]], "source": 1316471841, "length": 35.20066280304018}, {"destination": 1320104061, "path": [[1500.7654384433522, 3030.5023056769187], [1525.7154384471505, 3027.552305677972]], "source": 1316471841, "length": 4.7902428463473194}, {"destination": 495770277, "path": [[8908.415438448003, -6120.9976943228385], [8981.465438445468, -6155.54769432336]], "source": 4345393150, "length": 15.873817450640749}, {"destination": 4345393149, "path": [[8908.415438448003, -6120.9976943228385], [8864.515438446575, -6210.9476943224]], "source": 4345393150, "length": 21.676068990743666}, {"destination": 5021317160, "path": [[-8278.684561553007, -4192.647694322815], [-8342.18456155611, -4212.347694322105], [-8434.984561553449, -4234.29769432282]], "source": 1990203594, "length": 31.15408953847104}, {"destination": 5021317164, "path": [[-8278.684561553007, -4192.647694322815], [-8182.28456155623, -4151.69769432211], [-8211.784561552804, -4102.997694323207]], "source": 1990203594, "length": 32.665554447042865}, {"destination": 5021317156, "path": [[-8278.684561553007, -4192.647694322815], [-8256.884561554045, -4241.747694322839]], "source": 1990203594, "length": 11.680145068503613}, {"destination": 267198762, "path": [[-5802.7845615526985, -7347.997694322928], [-5790.034561556467, -7350.897694323066]], "source": 1887877323, "length": 2.509960686587873}, {"destination": 267198763, "path": [[-5802.7845615526985, -7347.997694322928], [-5890.234561555018, -7605.897694322294], [-5896.584561554619, -7637.497694322093], [-5899.43456155595, -7668.247694322617], [-5899.084561555412, -7707.347694323019]], "source": 1887877323, "length": 82.40318424253874}, {"destination": 1632904379, "path": [[-5802.7845615526985, -7347.997694322928], [-5879.884561551307, -7330.497694322702]], "source": 1887877323, "length": 15.167996525565659}, {"destination": 850261273, "path": [[-5626.034561551307, -7392.547694323071], [-5441.034561556535, -7439.547694323423], [-5016.934561552944, -7590.147694322979], [-4939.534561550829, -7617.94769432278]], "source": 1887877324, "length": 139.9763868100327}, {"destination": 267198762, "path": [[-5626.034561551307, -7392.547694323071], [-5790.034561556467, -7350.897694323066]], "source": 1887877324, "length": 32.529899745328926}, {"destination": 5021317160, "path": [[-8604.284561556597, -4259.647694322411], [-8510.834561555213, -4248.1976943218315], [-8434.984561553449, -4234.29769432282]], "source": 1990203597, "length": 32.70186168741276}, {"destination": 5021317155, "path": [[-8604.284561556597, -4259.647694322411], [-8601.834561552834, -4305.197694321805]], "source": 1990203597, "length": 10.140775156123313}, {"destination": 5021317158, "path": [[-8604.284561556597, -4259.647694322411], [-8728.484561551397, -4260.797694323415], [-8732.834561556047, -4196.347694323421]], "source": 1990203597, "length": 37.9754404095588}, {"destination": 4708397768, "path": [[-6728.284561553721, -5931.6476943234165], [-6975.384561556552, -5875.647694322694]], "source": 4708397783, "length": 48.60796102677613}, {"destination": 4708397776, "path": [[-6728.284561553721, -5931.6476943234165], [-6701.334561554972, -5837.197694322782]], "source": 4708397783, "length": 21.621114784346783}, {"destination": 4708397784, "path": [[-6728.284561553721, -5931.6476943234165], [-6777.334561554937, -6005.797694323079]], "source": 4708397783, "length": 18.94479304418698}, {"destination": 1172174594, "path": [[-8297.084561554868, -4682.84769432259], [-8107.984561554815, -4383.097694322658]], "source": 1990203599, "length": 75.74110366668732}, {"destination": 2531707872, "path": [[-8719.334561554604, -216.4976943230812], [-8852.084561553398, -581.6476943234505]], "source": 1572286538, "length": 85.03936382444672}, {"destination": 87752549, "path": [[-8719.334561554604, -216.4976943230812], [-8578.734561552892, 67.4523056769516], [-8547.4345615566, 130.6523056765485]], "source": 1572286538, "length": 83.83855704457154}, {"destination": 479305781, "path": [[-8719.334561554604, -216.4976943230812], [-8787.684561553988, -187.9476943233982], [-8997.834561554897, -100.14769432231674], [-9021.384561556544, -49.84769432248015], [-8893.034561552326, 137.9523056765919], [-8857.134561552015, 208.8523056773539]], "source": 1572286538, "length": 136.55082956861293}, {"destination": 1784682682, "path": [[8143.815438444335, -4492.997694322654], [8156.215438447134, -4503.197694322836], [8163.765438446546, -4516.347694321965], [8165.665438447433, -4530.947694322052], [8161.565438449259, -4545.197694323378], [8152.01543844779, -4557.397694322063], [8138.165438445811, -4566.09769432248], [8121.665438444836, -4570.197694322431], [8104.515438446924, -4569.197694323179], [8088.815438448193, -4563.297694321733], [8076.415438445394, -4553.147694322135]], "source": 1784682709, "length": 32.66107906359277}, {"destination": 1317671204, "path": [[2477.465438445847, -303.0476943219895], [2469.015438443023, -260.94769432205567], [2431.465438448299, -235.74769432244125], [2430.615438449024, -221.79769432284502]], "source": 1317671082, "length": 21.681794764048234}, {"destination": 481389838, "path": [[2477.465438445847, -303.0476943219895], [2220.465438448116, -341.34769432192513]], "source": 1317671082, "length": 49.61028112587393}, {"destination": 1317670782, "path": [[2477.465438445847, -303.0476943219895], [2592.5154384438542, -279.29769432333273], [2784.315438447038, -221.4976943228919], [2795.7654384493935, -220.6976943224248]], "source": 1317671082, "length": 63.36436607399543}, {"destination": 476914699, "path": [[11166.665438445023, -4848.747694323308], [11024.665438448266, -4868.74769432255]], "source": 476914724, "length": 27.365457353001478}, {"destination": 554689606, "path": [[11166.665438445023, -4848.747694323308], [11076.565438443708, -4966.147694322131], [10982.815438445925, -5111.697694323069], [10943.515438448514, -5164.297694323139]], "source": 476914724, "length": 82.06206427756089}, {"destination": 495771066, "path": [[6659.465438445977, -6048.547694321726], [6678.265438445407, -6085.247694322505], [6614.1154384453675, -6110.697694323264], [6555.765438449157, -6123.697694322416]], "source": 1771400911, "length": 33.82374415734438}, {"destination": 4470914109, "path": [[6659.465438445977, -6048.547694321726], [6873.41543844866, -5972.347694322977]], "source": 1771400911, "length": 44.070393702801795}, {"destination": 4470914103, "path": [[6659.465438445977, -6048.547694321726], [6596.315438443412, -6017.097694321905], [6562.465438449294, -5974.847694321994], [6557.3154384495065, -5920.0476943228605]], "source": 1771400911, "length": 37.51218878776299}, {"destination": 1784682709, "path": [[7998.2654384451735, -4457.847694322226], [8099.065438443631, -4478.747694323104], [8143.815438444335, -4492.997694322654]], "source": 1784682716, "length": 28.80293799599768}, {"destination": 495771303, "path": [[7998.2654384451735, -4457.847694322226], [7913.315438443647, -4751.897694323048], [7866.665438449161, -4934.647694321726]], "source": 1784682716, "length": 108.95797052630627}, {"destination": 4153722393, "path": [[-5659.884561552531, 1652.3523056779509], [-5225.234561549996, 1497.1023056773447]], "source": 483110054, "length": 89.58142785396856}, {"destination": 479319990, "path": [[-5659.884561552531, 1652.3523056779509], [-5561.6345615518985, 1895.8523056777922]], "source": 483110054, "length": 57.28486099355272}, {"destination": 1316471890, "path": [[1415.065438443719, 2648.652305676791], [1538.4654384433816, 2603.8023056766947], [1634.9154384442954, 2585.502305677778]], "source": 1320103632, "length": 44.28908032867457}, {"destination": 1320103653, "path": [[1415.065438443719, 2648.652305676791], [1302.4154384453368, 2684.102305677172], [1155.3654384499623, 2726.002305676545]], "source": 1320103632, "length": 52.30624117346164}, {"destination": 1320103925, "path": [[1415.065438443719, 2648.652305676791], [1427.065438448949, 2702.1023056779113]], "source": 1320103632, "length": 12.104174515438869}, {"destination": 1320104005, "path": [[1415.065438443719, 2648.652305676791], [1401.8154384487502, 2589.452305677753]], "source": 1320103632, "length": 13.404398910434603}, {"destination": 103764456, "path": [[2293.9654384472874, -2679.6476943218295], [2220.3654384469473, -2744.197694322992]], "source": 1888393442, "length": 20.048691026643716}, {"destination": 1888393403, "path": [[2293.9654384472874, -2679.6476943218295], [2348.0654384471222, -2722.4476943228383], [2361.4654384473965, -2728.1476943219473], [2380.2154384497953, -2729.297694322952], [2403.015438446232, -2724.6976943224863], [2427.165438447787, -2715.54769432214], [2443.015438444718, -2707.5976943233827], [2463.0154384439606, -2702.2976943218423], [2479.1154384473657, -2700.347694322147]], "source": 1888393442, "length": 40.48202101568349}, {"destination": 1769172092, "path": [[2747.1154384457463, -5957.2976943229605], [2702.71543844558, -6010.8976943222815]], "source": 93466414, "length": 14.607413564333521}, {"destination": 84487532, "path": [[2747.1154384457463, -5957.2976943229605], [2781.1154384451697, -5908.947694322819]], "source": 93466414, "length": 12.546571307695727}, {"destination": 4345393128, "path": [[8692.165438446864, -5490.797694323035], [8794.815438449177, -5456.347694321906]], "source": 1784682724, "length": 20.968913928804415}, {"destination": 1320104009, "path": [[3440.8154384450995, 2696.652305678171], [3218.815438444267, 2667.002305678068]], "source": 4868839655, "length": 42.732124255859866}, {"destination": 4252530974, "path": [[3440.8154384450995, 2696.652305678171], [3800.065438447575, 2744.6023056771905]], "source": 4868839655, "length": 69.15015022120168}, {"destination": 1320103895, "path": [[3440.8154384450995, 2696.652305678171], [3445.3654384449806, 2663.4523056774383], [3458.115438448317, 2566.3023056772263]], "source": 4868839655, "length": 29.17495299954749}, {"destination": 476553848, "path": [[693.6154384433735, 4291.552305677015], [784.1654384463936, 4682.902305678027]], "source": 599406827, "length": 88.71989145324139}, {"destination": 476559329, "path": [[693.6154384433735, 4291.552305677015], [761.3654384499569, 4279.202305676577]], "source": 599406827, "length": 13.174835395542416}, {"destination": 3355899011, "path": [[-6293.734561552355, -1989.5476943219137], [-6204.484561550316, -1831.8476943228745]], "source": 1890502815, "length": 38.961829803148994}, {"destination": 1890502796, "path": [[-6293.734561552355, -1989.5476943219137], [-6235.934561551914, -2013.847694323445]], "source": 1890502815, "length": 12.248142516590837}, {"destination": 603884628, "path": [[-1675.184561555909, 6180.052305676753], [-2088.9345615557886, 6234.052305677195]], "source": 482731178, "length": 79.60481749787299}, {"destination": 482731177, "path": [[-1675.184561555909, 6180.052305676753], [-1663.184561550679, 6252.802305677818]], "source": 482731178, "length": 16.339102204911836}, {"destination": 482731172, "path": [[-1675.184561555909, 6180.052305676753], [-1758.13456155538, 5816.302305676757]], "source": 482731178, "length": 82.41850031737103}, {"destination": 1316236929, "path": [[320.46543844899134, 3042.352305676843], [-123.48456155564236, 3273.202305678069]], "source": 599406834, "length": 98.81529009860834}, {"destination": 476556641, "path": [[320.46543844899134, 3042.352305676843], [374.16543844415173, 3011.952305676857]], "source": 599406834, "length": 12.247774588489804}, {"destination": 1316236759, "path": [[320.46543844899134, 3042.352305676843], [403.26543844315665, 3265.802305676857]], "source": 599406834, "length": 52.12845705004553}, {"destination": 1317671336, "path": [[3494.0654384456593, 1364.60230567792], [3488.765438447672, 1393.2023056781873]], "source": 1317671355, "length": 6.4395341095893786}, {"destination": 1317671039, "path": [[3494.0654384456593, 1364.60230567792], [3502.565438445515, 1318.752305676796]], "source": 1317671355, "length": 10.323982712726874}, {"destination": 1317670831, "path": [[3494.0654384456593, 1364.60230567792], [3437.265438449799, 1353.752305677247], [3348.3154384441605, 1342.25230567786]], "source": 1317671355, "length": 28.177771040388357}, {"destination": 1771400976, "path": [[8939.115438444389, -5554.397694321978], [8879.915438448905, -5560.297694323424], [8828.965438446801, -5543.097694323152], [8760.56543844328, -5564.897694322113], [8518.815438449677, -5812.847694322443]], "source": 1771400916, "length": 107.41872825170618}, {"destination": 1771400994, "path": [[8939.115438444389, -5554.397694321978], [8931.915438445514, -5590.847694323386]], "source": 1771400916, "length": 8.220553296710332}, {"destination": 3723332410, "path": [[8939.115438444389, -5554.397694321978], [9110.465438446625, -5590.497694322849]], "source": 1771400916, "length": 33.55641880918081}, {"destination": 1771400942, "path": [[8939.115438444389, -5554.397694321978], [8868.415438449518, -5313.247694322953]], "source": 1771400916, "length": 55.28862209399463}, {"destination": 1782221468, "path": [[6056.365438446675, -8279.19769432306], [6009.865438443285, -8250.447694322815], [5899.615438444527, -8182.3476943228], [5895.615438447521, -8141.097694322141], [5858.8154384437985, -8114.347694322177]], "source": 1769171987, "length": 55.16076252037004}, {"destination": 1769172100, "path": [[6056.365438446675, -8279.19769432306], [6183.965438445683, -8142.247694323146]], "source": 1769171987, "length": 38.93869071189771}, {"destination": 1320103803, "path": [[3048.4654384466126, 2649.55230567665], [3050.2154384492997, 2685.9023056768906], [3048.415438449581, 2750.6023056780296], [3056.465438447731, 2849.1523056768388]], "source": 4875052074, "length": 44.45328043868335}, {"destination": 477640984, "path": [[-6694.8345615500675, -7113.897694322802], [-6504.284561550832, -6655.497694323387]], "source": 477640961, "length": 108.19086922817948}, {"destination": 267198570, "path": [[-6694.8345615500675, -7113.897694322802], [-7155.784561554412, -6988.69769432342]], "source": 477640961, "length": 91.96274319920961}, {"destination": 874287498, "path": [[-6694.8345615500675, -7113.897694322802], [-6102.7845615555525, -7276.397694322867], [-5976.684561552758, -7306.447694322315]], "source": 477640961, "length": 143.12299372328062}, {"destination": 1315678657, "path": [[-6130.984561551145, -3540.647694322274], [-6221.134561556596, -3504.047694322665], [-6466.48456155674, -3403.1476943230386]], "source": 1315678593, "length": 70.74736123110185}, {"destination": 477641733, "path": [[-6130.984561551145, -3540.647694322274], [-6182.934561550724, -3620.297694322261]], "source": 1315678593, "length": 20.281772501552112}, {"destination": 1890531875, "path": [[-7322.934561550199, -1569.6976943218033], [-7441.534561550611, -1487.6476943221917], [-7533.984561554518, -1427.2976943221493]], "source": 1890502816, "length": 51.12878089843433}, {"destination": 475977000, "path": [[-944.934561552202, 490.10230567780866], [-1005.0345615510992, 497.0023056767303]], "source": 599406978, "length": 11.532212983849952}, {"destination": 599407025, "path": [[-944.934561552202, 490.10230567780866], [-1151.184561550167, 63.85230567751421]], "source": 599406978, "length": 102.58809062920913}, {"destination": 2969936436, "path": [[-944.934561552202, 490.10230567780866], [-448.7845615557262, 323.30230567723106]], "source": 599406978, "length": 101.38419663192012}, {"destination": 483116732, "path": [[-7027.334561556131, 1655.4523056768744], [-7016.534561550714, 1698.2023056772987], [-6977.284561550334, 1853.4023056773208], [-6919.484561556999, 2001.452305677276]], "source": 654575691, "length": 79.75025772124948}, {"destination": 479322189, "path": [[-7027.334561556131, 1655.4523056768744], [-6976.234561555828, 1642.9023056776514], [-6740.734561553552, 1585.152305677795], [-6432.43456155318, 1512.1023056767767]], "source": 654575691, "length": 117.544129929776}, {"destination": 483116582, "path": [[-7027.334561556131, 1655.4523056768744], [-7085.034561555403, 1418.00230567668], [-7110.384561556771, 1361.6023056766126]], "source": 654575691, "length": 67.3719944577173}, {"destination": 1317670775, "path": [[3217.315438448054, 117.45230567683507], [3252.1654384467524, 294.40230567701065]], "source": 1317670985, "length": 39.90632088815264}, {"destination": 477640961, "path": [[-6504.284561550832, -6655.497694323387], [-6694.8345615500675, -7113.897694322802]], "source": 477640984, "length": 108.19086922817948}, {"destination": 477640643, "path": [[-6504.284561550832, -6655.497694323387], [-6292.084561550837, -6690.547694322646]], "source": 477640984, "length": 41.09476223145427}, {"destination": 477641134, "path": [[-6504.284561550832, -6655.497694323387], [-6402.284561552562, -6335.397694321899]], "source": 477640984, "length": 73.78187314734525}, {"destination": 1729306105, "path": [[-4843.034561552884, -5475.197694321921], [-4545.43456155676, -5596.647694321888]], "source": 477639727, "length": 62.703613180171246}, {"destination": 267195122, "path": [[-4843.034561552884, -5475.197694321921], [-5138.734561555225, -5350.597694322445]], "source": 477639727, "length": 62.68442155165939}, {"destination": 477639734, "path": [[-4843.034561552884, -5475.197694321921], [-5019.184561554368, -5791.647694323387]], "source": 477639727, "length": 77.93961920425176}, {"destination": 4868839655, "path": [[3800.065438447575, 2744.6023056771905], [3440.8154384450995, 2696.652305678171]], "source": 4252530974, "length": 69.15015022120168}, {"destination": 1320103751, "path": [[3800.065438447575, 2744.6023056771905], [3797.4154384485814, 2801.6023056771646]], "source": 4252530974, "length": 12.686585206209148}, {"destination": 476560879, "path": [[3800.065438447575, 2744.6023056771905], [3803.4154384476437, 2672.2523056772475], [3827.31543844983, 2493.752305676722], [3887.415438448727, 2308.7523056766204], [3938.7154384442624, 2181.8523056769122]], "source": 4252530974, "length": 128.61881897630587}, {"destination": 1316623254, "path": [[-712.434561556563, -804.4976943217819], [-486.5845615569242, -843.5976943221846], [-456.1845615569382, -843.3476943228158]], "source": 1316623408, "length": 49.60261974957355}, {"destination": 481390471, "path": [[-712.434561556563, -804.4976943217819], [-688.7345615567142, -699.0976943228588]], "source": 1316623408, "length": 23.869418418486937}, {"destination": 1316623387, "path": [[2240.765438443759, -547.897694323396], [2218.865438443629, -629.8976943224233]], "source": 475978022, "length": 18.705653155123528}, {"destination": 385113791, "path": [[2240.765438443759, -547.897694323396], [2243.7154384462588, -460.49769432343624]], "source": 475978022, "length": 19.44485309094546}, {"destination": 1316623647, "path": [[2240.765438443759, -547.897694323396], [2310.8654384458305, -540.8476943227214], [2305.4654384466744, -634.897694322234], [2388.6154384484826, -648.6476943230457], [2410.0654384469067, -618.8476943229659], [2414.565438449756, -428.3476943225395]], "source": 475978022, "length": 100.6239020367174}, {"destination": 1316623473, "path": [[1936.2654384451616, -1631.7976943227563], [2019.3154384458012, -1362.647694323371]], "source": 475978025, "length": 61.90474484089346}, {"destination": 475974959, "path": [[1936.2654384451616, -1631.7976943227563], [2346.8154384431728, -1637.1476943231046], [2463.9654384444043, -1672.6976943228779]], "source": 475978025, "length": 101.7202597631956}, {"destination": 1889249313, "path": [[-4777.134561550156, -2980.547694322766], [-5048.684561550943, -2833.1476943233015], [-5151.384561550287, -2759.5476943229614]], "source": 477616429, "length": 86.6455478208895}, {"destination": 1889249235, "path": [[-4777.134561550156, -2980.547694322766], [-4746.084561553233, -2939.0976943233227]], "source": 477616429, "length": 10.946841615740029}, {"destination": 1889255124, "path": [[-1635.4845615538238, -3449.9976943234146], [-1762.0845615553549, -3372.1976943219543], [-1873.3845615557243, -3321.7476943221413], [-1964.5845615556823, -3298.797694322175], [-1998.1345615533996, -3294.19769432171], [-2023.884561552336, -3294.3476943234627], [-2060.7345615530903, -3301.1976943218], [-2082.1845615515144, -3310.397694322731], [-2102.734561553632, -3332.047694321716], [-2118.834561557037, -3364.147694322028], [-2153.6845615557354, -3437.5476943218073], [-2181.1845615502534, -3503.547694322151]], "source": 1889255133, "length": 141.93644128141813}, {"destination": 1889255135, "path": [[-1635.4845615538238, -3449.9976943234146], [-1716.1345615548385, -3369.1976943224236], [-1777.9345615522857, -3316.297694322401], [-1830.7345615511394, -3284.247694322673], [-1887.7345615564423, -3268.6976943221425], [-1952.434561552252, -3263.5476943223553], [-2013.0845615540238, -3267.94769432226], [-2091.0845615560447, -3287.9976943220868]], "source": 1889255133, "length": 103.36163848413958}, {"destination": 93792610, "path": [[9374.21543844863, -1066.0476943229469], [10026.615438448516, -1367.5976943225976], [10826.365438447283, -1674.5476943231806]], "source": 115005745, "length": 307.7313353881847}, {"destination": 114903203, "path": [[9374.21543844863, -1066.0476943229469], [9553.615438449015, -942.9476943232373], [9726.315438449263, -799.3476943219946], [9804.365438448314, -712.0976943220114], [9858.015438446444, -628.1476943232889], [9954.165438443852, -461.84769432322526]], "source": 115005745, "length": 176.51277052293733}, {"destination": 85647366, "path": [[9374.21543844863, -1066.0476943229469], [8249.16543844978, -1487.697694322776]], "source": 115005745, "length": 233.5938152773596}, {"destination": 1317670954, "path": [[1860.0154384458278, -441.64769432342155], [1795.6154384464185, -441.59769432283724]], "source": 1317670986, "length": 12.247038699127616}, {"destination": 385113788, "path": [[1860.0154384458278, -441.64769432342155], [1940.765438448011, -547.1976943223211]], "source": 1317670986, "length": 28.050167126214752}, {"destination": 1317671370, "path": [[1860.0154384458278, -441.64769432342155], [1926.0154384497241, -441.6976943222295], [1971.6654384467347, -424.1976943220038]], "source": 1317670986, "length": 22.064698424850764}, {"destination": 1317671095, "path": [[1860.0154384458278, -441.64769432342155], [1821.115438445986, -263.4976943234335]], "source": 1317670986, "length": 40.30352924397618}, {"destination": 1316472177, "path": [[548.1154384483489, 2145.2523056773034], [631.7654384488947, 2122.202305677945], [690.765438449148, 2115.3023056772467]], "source": 1320103646, "length": 28.039631314947282}, {"destination": 1316471930, "path": [[548.1154384483489, 2145.2523056773034], [481.06543844994576, 2163.7523056767805]], "source": 1320103646, "length": 13.398682533502315}, {"destination": 1320103708, "path": [[548.1154384483489, 2145.2523056773034], [575.5654384458353, 2248.3023056771854]], "source": 1320103646, "length": 23.504525255433006}, {"destination": 1316623587, "path": [[1289.765438443169, -1647.1976943233103], [1356.6654384433718, -1644.3976943225634]], "source": 1316623413, "length": 12.736924775778052}, {"destination": 1316623307, "path": [[1289.765438443169, -1647.1976943233103], [1307.7154384433243, -1529.3976943233645], [1270.1654384486005, -1508.7476943218549]], "source": 1316623413, "length": 34.908705316219184}, {"destination": 1315785174, "path": [[-2627.134561556943, -2322.947694322508], [-2838.8345615510957, -2270.0476943224858]], "source": 1315785241, "length": 41.94105134003083}, {"destination": 483106120, "path": [[-4676.034561555298, 6107.90230567737], [-4799.934561553699, 5753.502305678282]], "source": 971168073, "length": 82.26263381198783}, {"destination": 483103362, "path": [[-4676.034561555298, 6107.90230567737], [-4538.134561556717, 6550.35230567691]], "source": 971168073, "length": 101.83213619955878}, {"destination": 971168079, "path": [[-4676.034561555298, 6107.90230567737], [-5424.834561551961, 6113.002305676574], [-5750.98456155132, 6139.552305677754]], "source": 971168073, "length": 204.73614547587977}, {"destination": 622622443, "path": [[-6595.134561550253, 6395.0523056774955], [-6537.134561554581, 6510.052305676694], [-6466.48456155674, 6621.252305677672], [-6369.234561553583, 6747.002305678151], [-6235.834561550746, 6900.152305677309], [-5953.284561556416, 7199.0023056773825]], "source": 971168076, "length": 217.46766216358077}, {"destination": 971168079, "path": [[-6595.134561550253, 6395.0523056774955], [-5859.384561553326, 6177.252305677783], [-5750.98456155132, 6139.552305677754]], "source": 971168076, "length": 170.33948169363237}, {"destination": 971168073, "path": [[-5750.98456155132, 6139.552305677754], [-5424.834561551961, 6113.002305676574], [-4676.034561555298, 6107.90230567737]], "source": 971168079, "length": 204.73614547587977}, {"destination": 478373282, "path": [[-5750.98456155132, 6139.552305677754], [-5853.734561554802, 5629.852305677474]], "source": 971168079, "length": 115.02460947247559}, {"destination": 971168076, "path": [[-5750.98456155132, 6139.552305677754], [-5859.384561553326, 6177.252305677783], [-6595.134561550253, 6395.0523056774955]], "source": 971168079, "length": 170.33948169363237}, {"destination": 423833614, "path": [[-5750.98456155132, 6139.552305677754], [-5632.434561555045, 6718.602305676669], [-5538.034561553218, 6891.002305676963], [-5488.384561552095, 6982.252305677505]], "source": 971168079, "length": 195.45287614901824}, {"destination": 639308696, "path": [[-2724.6345615523637, 2230.052305677077], [-2611.1345615547066, 2439.0523056769807]], "source": 1316198736, "length": 51.24719793574619}, {"destination": 1316198815, "path": [[-2724.6345615523637, 2230.052305677077], [-2733.084561555188, 2213.9023056766405]], "source": 1316198736, "length": 3.934956276855874}, {"destination": 1316198775, "path": [[-2724.6345615523637, 2230.052305677077], [-2605.6845615514135, 2177.1523056770548], [-2567.434561555615, 2146.552305678284]], "source": 1316198736, "length": 35.45905813729822}, {"destination": 639308698, "path": [[-2586.6345615526143, 1768.3023056775937], [-2788.0845615513294, 1851.4523056776256], [-2891.734561551118, 1912.0023056782288]], "source": 1316198738, "length": 66.41325919607847}, {"destination": 1316198732, "path": [[-2586.6345615526143, 1768.3023056775937], [-2346.384561555226, 1699.802305678233]], "source": 1316198738, "length": 48.16305673490034}, {"destination": 1316198798, "path": [[-2586.6345615526143, 1768.3023056775937], [-2557.184561553072, 1830.2523056767939]], "source": 1316198738, "length": 14.872174038912746}, {"destination": 1316236510, "path": [[-2586.6345615526143, 1768.3023056775937], [-2608.5345615527444, 1722.252305677685]], "source": 1316198738, "length": 11.055800703983472}, {"destination": 1316198763, "path": [[-2853.6345615535197, 1984.5023056781486], [-3099.2345615530326, 2087.252305678078]], "source": 1316198740, "length": 51.997930998577885}, {"destination": 1316198773, "path": [[-2853.6345615535197, 1984.5023056781486], [-2884.0345615535057, 1926.6523056771234]], "source": 1316198740, "length": 14.104223296906614}, {"destination": 1316198759, "path": [[-2853.6345615535197, 1984.5023056781486], [-2818.584561552484, 2051.152305677206]], "source": 1316198740, "length": 16.251992152949608}, {"destination": 1316198803, "path": [[-2702.234561553496, 1968.40230567652], [-2523.0345615554484, 1902.0523056774152]], "source": 1316198742, "length": 37.1371101998569}, {"destination": 479282364, "path": [[-2036.234561550998, -2234.0476943227827], [-2223.9845615530385, -2159.497694321999], [-2344.684561556676, -2105.047694323403], [-2445.2845615527963, -2063.74769432216]], "source": 479284103, "length": 86.53674850757086}, {"destination": 1316196954, "path": [[-2258.2345615518307, 1861.8023056777843], [-2116.5845615556123, 2097.5523056776524]], "source": 1316198744, "length": 58.9445833477361}, {"destination": 1316198811, "path": [[-2258.2345615518307, 1861.8023056777843], [-2306.4845615508034, 1781.5523056778916]], "source": 1316198744, "length": 20.067562924479972}, {"destination": 1316198803, "path": [[-2258.2345615518307, 1861.8023056777843], [-2342.83456155282, 1885.8523056781705], [-2377.6845615515185, 1851.4523056776256], [-2523.0345615554484, 1902.0523056774152]], "source": 1316198744, "length": 56.92167471204776}, {"destination": 481498188, "path": [[-1082.9845615560885, 3664.0023056779823], [-1042.9345615534658, 3743.502305677993]], "source": 1316236424, "length": 19.250602320048188}, {"destination": 1316236708, "path": [[-1082.9845615560885, 3664.0023056779823], [-835.4845615556883, 3546.552305676798], [-775.4845615508543, 3510.852305677048]], "source": 1316236424, "length": 67.73380257099971}, {"destination": 1316236597, "path": [[-1082.9845615560885, 3664.0023056779823], [-1121.9845615499935, 3586.55230567706]], "source": 1316236424, "length": 18.75281195627578}, {"destination": 1316198771, "path": [[-2761.6345615513183, 2159.5023056768523], [-2599.8845615546884, 2095.1523056780275]], "source": 1316198747, "length": 33.92743174243201}, {"destination": 1316198796, "path": [[-2761.6345615513183, 2159.5023056768523], [-2776.284561555542, 2131.6523056782444]], "source": 1316198747, "length": 6.790372502616521}, {"destination": 1316198815, "path": [[-2761.6345615513183, 2159.5023056768523], [-2733.084561555188, 2213.9023056766405]], "source": 1316198747, "length": 13.260410419809345}, {"destination": 1316236521, "path": [[-2439.7845615524716, 2077.25230567668], [-2454.1345615531895, 2047.052305677255]], "source": 1316198748, "length": 7.249363086004532}, {"destination": 1316198781, "path": [[-2439.7845615524716, 2077.25230567668], [-2420.634561552504, 2117.5023056780874], [-2315.684561551734, 2245.1023056770937]], "source": 1316198748, "length": 44.356795408542204}, {"destination": 1316198775, "path": [[-2439.7845615524716, 2077.25230567668], [-2567.434561555615, 2146.552305678284]], "source": 1316198748, "length": 28.755094557793285}, {"destination": 85646340, "path": [[10809.665438443972, 1857.8523056778095], [10748.265438444094, 1743.7023056778855], [10661.865438443385, 1495.1523056776496], [10523.365438444898, 846.9023056765224], [10476.96543844978, 677.7023056780962], [10428.715438443704, 549.2523056780385], [10250.165438449698, 177.1523056781632], [10182.91543844896, 44.00230567824792], [10032.715438448748, -274.09769432296116]], "source": 115005789, "length": 498.8047870581654}, {"destination": 115006151, "path": [[10809.665438443972, 1857.8523056778095], [10902.865438445986, 2034.9023056773774], [11126.36543844303, 2393.7023056781472], [11328.31543844759, 2769.452305678044], [11415.365438445235, 2982.302305676754], [11558.86543844531, 3398.4023056774504], [11663.765438449047, 3713.6523056773285]], "source": 115005789, "length": 445.0715727689666}, {"destination": 1888338541, "path": [[-1329.4345615548764, -3686.647694323142], [-1401.7345615542354, -3644.5976943220157], [-1460.5345615521514, -3597.6976943228324]], "source": 479279454, "length": 31.918052038924856}, {"destination": 1315785391, "path": [[-1329.4345615548764, -3686.647694323142], [-1402.0845615547728, -3884.847694322957]], "source": 479279454, "length": 46.191917133986266}, {"destination": 4451359097, "path": [[3683.4654384492183, -5631.8476943229], [3912.0654384490194, -5258.047694322699]], "source": 495636197, "length": 93.80821718519563}, {"destination": 602360650, "path": [[3683.4654384492183, -5631.8476943229], [4371.365438444741, -5928.297694323348], [4451.965438448724, -5954.197694322261], [4542.665438449944, -5970.197694322721], [4827.765438449205, -5987.397694322994]], "source": 495636197, "length": 234.80599981069452}, {"destination": 4451234430, "path": [[3683.4654384492183, -5631.8476943229], [3648.2654384499824, -5691.197694321914], [3499.815438445353, -5941.2976943225], [3435.1654384465746, -6047.097694322545]], "source": 495636197, "length": 103.71825621572384}, {"destination": 1316198815, "path": [[-2978.5345615565006, 2310.202305677578], [-2733.084561555188, 2213.9023056766405]], "source": 1316198754, "length": 51.3580506778661}, {"destination": 3121830238, "path": [[6982.065438450036, -6938.947694322906], [6888.465438443347, -6786.197694323093], [6897.665438444278, -6683.447694323164], [6967.065438445275, -6609.697694322847]], "source": 3121830244, "length": 82.31818907011828}, {"destination": 1316198756, "path": [[-2818.584561552484, 2051.152305677206], [-3067.034561553328, 2154.2023056770886]], "source": 1316198759, "length": 52.51465646678671}, {"destination": 1316198740, "path": [[-2818.584561552484, 2051.152305677206], [-2853.6345615535197, 1984.5023056781486]], "source": 1316198759, "length": 16.251992152949608}, {"destination": 1316198767, "path": [[-2818.584561552484, 2051.152305677206], [-2796.1345615565847, 2093.9023056776305]], "source": 1316198759, "length": 10.422163760383203}, {"destination": 1316198740, "path": [[-3099.2345615530326, 2087.252305678078], [-2853.6345615535197, 1984.5023056781486]], "source": 1316198763, "length": 51.997930998577885}, {"destination": 1316236320, "path": [[-2457.784561556764, 851.6023056781563], [-2586.93456155612, 920.3523056768859]], "source": 1316198765, "length": 28.93117378878155}, {"destination": 1316197001, "path": [[-2457.784561556764, 851.6023056781563], [-2463.5345615564574, 844.5023056768974], [-2529.7345615555855, 772.4523056769073]], "source": 1316198765, "length": 22.294912277296657}, {"destination": 1316196995, "path": [[-2457.784561556764, 851.6023056781563], [-2340.134561556795, 780.3023056780489], [-2313.334561556246, 800.9523056777823], [-2112.1845615539314, 743.6023056772711], [-2061.1845615547963, 780.3023056780489], [-1932.8845615547152, 719.4523056774926], [-1906.9845615504732, 777.1023056779569]], "source": 1316198765, "length": 128.91809731833396}, {"destination": 1316196981, "path": [[-2457.784561556764, 851.6023056781563], [-2415.2345615533477, 904.1523056776413]], "source": 1316198765, "length": 14.21465913388201}, {"destination": 476561130, "path": [[6263.1154384433785, 1694.1023056773474], [6523.315438442978, 1605.9023056769206]], "source": 1563362026, "length": 53.230085966694354}, {"destination": 1563362061, "path": [[6263.1154384433785, 1694.1023056773474], [6321.9154384484, 1810.6523056768965]], "source": 1563362026, "length": 28.22888749984181}, {"destination": 482729263, "path": [[6263.1154384433785, 1694.1023056773474], [5986.865438444511, 1787.7523056775146], [5768.265438447884, 1860.2023056768503]], "source": 1563362026, "length": 101.10026716860006}, {"destination": 1316198796, "path": [[-2796.1345615565847, 2093.9023056776305], [-2776.284561555542, 2131.6523056782444]], "source": 1316198767, "length": 9.204331636643658}, {"destination": 1316198788, "path": [[-2796.1345615565847, 2093.9023056776305], [-2715.684561550802, 2064.7523056780415], [-2637.884561551118, 2034.9523056779617]], "source": 1316198767, "length": 32.82925447416143}, {"destination": 1316198759, "path": [[-2796.1345615565847, 2093.9023056776305], [-2818.584561552484, 2051.152305677206]], "source": 1316198767, "length": 10.422163760383203}, {"destination": 1316236506, "path": [[-2742.834561551888, 1439.7523056768337], [-2889.38456155563, 1502.8023056782304]], "source": 1316198769, "length": 31.19896659289525}, {"destination": 1316236653, "path": [[-2742.834561551888, 1439.7523056768337], [-2700.4345615537773, 1528.9023056777041]], "source": 1316198769, "length": 21.4032557991488}, {"destination": 482732999, "path": [[-2742.834561551888, 1439.7523056768337], [-2599.234561550645, 1378.0023056781943]], "source": 1316198769, "length": 30.56773494042949}, {"destination": 1316198794, "path": [[-2599.8845615546884, 2095.1523056780275], [-2514.4845615514555, 2062.452305677809], [-2462.8345615553826, 2028.7023056777543]], "source": 1316198771, "length": 30.157667680625885}, {"destination": 1316198747, "path": [[-2599.8845615546884, 2095.1523056780275], [-2761.6345615513183, 2159.5023056768523]], "source": 1316198771, "length": 33.92743174243201}, {"destination": 1316198788, "path": [[-2599.8845615546884, 2095.1523056780275], [-2637.884561551118, 2034.9523056779617]], "source": 1316198771, "length": 15.213976887074018}, {"destination": 1316198775, "path": [[-2599.8845615546884, 2095.1523056780275], [-2567.434561555615, 2146.552305678284]], "source": 1316198771, "length": 12.98985944212297}, {"destination": 639308698, "path": [[-2884.0345615535057, 1926.6523056771234], [-2891.734561551118, 1912.0023056782288]], "source": 1316198773, "length": 3.5711373276469978}, {"destination": 1316198740, "path": [[-2884.0345615535057, 1926.6523056771234], [-2853.6345615535197, 1984.5023056781486]], "source": 1316198773, "length": 14.104223296906614}, {"destination": 1316236621, "path": [[-2884.0345615535057, 1926.6523056771234], [-2983.8845615515197, 1967.9523056765902], [-3112.6845615503385, 1995.9523056769513]], "source": 1316198773, "length": 46.36806253518654}, {"destination": 475978428, "path": [[3242.2154384477153, 1179.4023056772573], [3225.6654384497097, 952.9523056777123]], "source": 1317671261, "length": 50.45851705628262}, {"destination": 1317671140, "path": [[3242.2154384477153, 1179.4023056772573], [3245.0154384449093, 1217.3023056778475], [3242.315438448884, 1252.602305678252]], "source": 1317671261, "length": 16.312568210777826}, {"destination": 1317670910, "path": [[3242.2154384477153, 1179.4023056772573], [3136.8654384493766, 1188.602305678188], [3048.2654384442753, 1183.7023056777696]], "source": 1317671261, "length": 37.02441875416631}, {"destination": 1316198736, "path": [[-2567.434561555615, 2146.552305678284], [-2605.6845615514135, 2177.1523056770548], [-2724.6345615523637, 2230.052305677077]], "source": 1316198775, "length": 35.45905813729822}, {"destination": 1316198771, "path": [[-2567.434561555615, 2146.552305678284], [-2599.8845615546884, 2095.1523056780275]], "source": 1316198775, "length": 12.98985944212297}, {"destination": 1316198748, "path": [[-2567.434561555615, 2146.552305678284], [-2439.7845615524716, 2077.25230567668]], "source": 1316198775, "length": 28.755094557793285}, {"destination": 1316198813, "path": [[-2567.434561555615, 2146.552305678284], [-2538.33456155661, 2192.602305678193], [-2431.434561550816, 2336.3023056770517]], "source": 1316198775, "length": 49.51648249147667}, {"destination": 1316236665, "path": [[-1258.5845615546987, 2846.0023056773307], [-1224.4845615541067, 2897.8523056775175]], "source": 1316236425, "length": 13.229789803245882}, {"destination": 1316236614, "path": [[-1258.5845615546987, 2846.0023056773307], [-1271.0345615545293, 2827.2023056779008]], "source": 1316236425, "length": 4.803395136220971}, {"destination": 1316237025, "path": [[-1258.5845615546987, 2846.0023056773307], [-1275.3345615550415, 2865.3023056772754], [-1368.8345615534558, 2905.552305676906]], "source": 1316236425, "length": 25.253065921064692}, {"destination": 4451234396, "path": [[3912.0654384490194, -5258.047694322699], [3845.3154384470167, -5240.347694321912], [3800.6154384433444, -5245.297694322915]], "source": 4451359097, "length": 21.85944527374883}, {"destination": 84487949, "path": [[3912.0654384490194, -5258.047694322699], [3940.1654384434437, -5212.097694322182]], "source": 4451359097, "length": 11.531431430327734}, {"destination": 495636197, "path": [[3912.0654384490194, -5258.047694322699], [3683.4654384492183, -5631.8476943229]], "source": 4451359097, "length": 93.80821718519563}, {"destination": 1319641232, "path": [[5167.21543844767, 3938.4023056765473], [5144.265438445927, 4154.50230567771], [5131.665438447897, 4273.002305676954], [5127.165438445047, 4315.202305678056]], "source": 476559738, "length": 84.14207895747278}, {"destination": 476559746, "path": [[5167.21543844767, 3938.4023056765473], [5406.765438443983, 3977.552305677534], [5469.365438443674, 3987.802305676524], [5663.3154384471145, 4019.8523056780286], [6057.515438449456, 4050.602305676776], [6430.015438446901, 4054.20230567799], [6756.465438449766, 4035.602305677344], [7475.065438448781, 4038.85230567802]], "source": 476559738, "length": 441.1028865580865}, {"destination": 1319641206, "path": [[5167.21543844767, 3938.4023056765473], [5184.915438448456, 3823.202305676787], [5188.365438449693, 3800.652305677943], [5197.465438449455, 3741.502305677713], [5213.315438446387, 3638.402305677246], [5232.2654384440175, 3413.30230567749]], "source": 476559738, "length": 117.47943584866688}, {"destination": 1319641286, "path": [[5167.21543844767, 3938.4023056765473], [4933.715438447451, 3927.452305678258]], "source": 476559738, "length": 44.475400826893946}, {"destination": 482731602, "path": [[-347.5345615555625, 6015.352305677624], [-664.2845615516535, 6052.602305677723]], "source": 1324295231, "length": 60.81131322642541}, {"destination": 1324294228, "path": [[-347.5345615555625, 6015.352305677624], [-403.4845615521476, 5897.752305678239], [-437.484561551571, 5834.452305677473]], "source": 1324295231, "length": 43.72691971466901}, {"destination": 1316198748, "path": [[-2315.684561551734, 2245.1023056770937], [-2420.634561552504, 2117.5023056780874], [-2439.7845615524716, 2077.25230567668]], "source": 1316198781, "length": 44.356795408542204}, {"destination": 1316198813, "path": [[-2315.684561551734, 2245.1023056770937], [-2431.434561550816, 2336.3023056770517]], "source": 1316198781, "length": 29.93237543570838}, {"destination": 4333704545, "path": [[-7705.134561554416, 2240.7523056777736], [-7662.4345615528, 2388.352305677799]], "source": 71129470, "length": 33.81434309303281}, {"destination": 1316198798, "path": [[-2798.83456155261, 1934.002305677751], [-2557.184561553072, 1830.2523056767939]], "source": 1316198784, "length": 51.42355378053137}, {"destination": 476559738, "path": [[7475.065438448781, 4038.85230567802], [6756.465438449766, 4035.602305677344], [6430.015438446901, 4054.20230567799], [6057.515438449456, 4050.602305676776], [5663.3154384471145, 4019.8523056780286], [5469.365438443674, 3987.802305676524], [5406.765438443983, 3977.552305677534], [5167.21543844767, 3938.4023056765473]], "source": 476559746, "length": 441.1028865580865}, {"destination": 476561683, "path": [[7475.065438448781, 4038.85230567802], [7671.465438448877, 4379.902305677419], [7807.165438443064, 4593.252305676643], [7845.765438446506, 4686.152305676927], [7853.715438443487, 4848.602305678185], [7800.96543844877, 5193.202305678213]], "source": 476559746, "length": 273.93169946861025}, {"destination": 4451234402, "path": [[3479.165438449172, -5392.797694321772], [3389.8154384459644, -5323.997694322457]], "source": 1721497987, "length": 22.86387387908236}, {"destination": 4451234404, "path": [[3479.165438449172, -5392.797694321772], [3496.265438442947, -5377.247694323018]], "source": 1721497987, "length": 4.746771603822818}, {"destination": 4451234418, "path": [[3479.165438449172, -5392.797694321772], [3255.515438446821, -5629.7976943220365]], "source": 1721497987, "length": 67.72377265532491}, {"destination": 1316198786, "path": [[-2637.884561551118, 2034.9523056779617], [-2489.284561555394, 1973.1023056781537]], "source": 1316198788, "length": 31.430367423503487}, {"destination": 1316198771, "path": [[-2637.884561551118, 2034.9523056779617], [-2599.8845615546884, 2095.1523056780275]], "source": 1316198788, "length": 15.213976887074018}, {"destination": 1316198767, "path": [[-2637.884561551118, 2034.9523056779617], [-2715.684561550802, 2064.7523056780415], [-2796.1345615565847, 2093.9023056776305]], "source": 1316198788, "length": 32.82925447416143}, {"destination": 618426802, "path": [[10552.215438444535, 5945.852305677235], [11541.315438449828, 6420.25230567711]], "source": 501838913, "length": 215.68715921123058}, {"destination": 1316198801, "path": [[-2393.7845615549236, 1138.1023056777906], [-2327.484561554627, 1289.652305677791]], "source": 1316198793, "length": 35.98441113119956}, {"destination": 1316236521, "path": [[-2462.8345615553826, 2028.7023056777543], [-2454.1345615531895, 2047.052305677255]], "source": 1316198794, "length": 4.401974893910495}, {"destination": 1316198786, "path": [[-2462.8345615553826, 2028.7023056777543], [-2489.284561555394, 1973.1023056781537]], "source": 1316198794, "length": 13.349150587315966}, {"destination": 1316198771, "path": [[-2462.8345615553826, 2028.7023056777543], [-2514.4845615514555, 2062.452305677809], [-2599.8845615546884, 2095.1523056780275]], "source": 1316198794, "length": 30.157667680625885}, {"destination": 1316198800, "path": [[-2776.284561555542, 2131.6523056782444], [-3024.1345615564796, 2232.2023056773332]], "source": 1316198796, "length": 52.171317326718984}, {"destination": 1316198747, "path": [[-2776.284561555542, 2131.6523056782444], [-2761.6345615513183, 2159.5023056768523]], "source": 1316198796, "length": 6.790372502616521}, {"destination": 1316198767, "path": [[-2776.284561555542, 2131.6523056782444], [-2796.1345615565847, 2093.9023056776305]], "source": 1316198796, "length": 9.204331636643658}, {"destination": 1324294938, "path": [[-502.1345615503492, 5714.052305677342], [-476.08456155501244, 5762.502305676875]], "source": 1324295234, "length": 11.859711721997854}, {"destination": 1324294372, "path": [[-502.1345615503492, 5714.052305677342], [-512.634561552261, 5694.552305676836]], "source": 1324295234, "length": 4.773279509335052}, {"destination": 1324294989, "path": [[-502.1345615503492, 5714.052305677342], [-599.2845615523379, 5760.10230567725], [-620.734561550762, 5744.052305677982]], "source": 1324295234, "length": 26.54611253474252}, {"destination": 1316198784, "path": [[-2557.184561553072, 1830.2523056767939], [-2798.83456155261, 1934.002305677751]], "source": 1316198798, "length": 51.42355378053137}, {"destination": 1316198738, "path": [[-2557.184561553072, 1830.2523056767939], [-2586.6345615526143, 1768.3023056775937]], "source": 1316198798, "length": 14.872174038912746}, {"destination": 1316198803, "path": [[-2557.184561553072, 1830.2523056767939], [-2523.0345615554484, 1902.0523056774152]], "source": 1316198798, "length": 17.238036854850826}, {"destination": 1316198811, "path": [[-2557.184561553072, 1830.2523056767939], [-2431.3345615567528, 1798.7023056775797], [-2306.4845615508034, 1781.5523056778916]], "source": 1316198798, "length": 48.98921430747846}, {"destination": 1316198796, "path": [[-3024.1345615564796, 2232.2023056773332], [-2776.284561555542, 2131.6523056782444]], "source": 1316198800, "length": 52.171317326718984}, {"destination": 1316198793, "path": [[-2327.484561554627, 1289.652305677791], [-2393.7845615549236, 1138.1023056777906]], "source": 1316198801, "length": 35.98441113119956}, {"destination": 1316195130, "path": [[-2327.484561554627, 1289.652305677791], [-2240.584561555181, 1261.402305678061]], "source": 1316198801, "length": 17.680179066645902}, {"destination": 1316237189, "path": [[-2327.484561554627, 1289.652305677791], [-2419.284561554491, 1319.5023056766786]], "source": 1316198801, "length": 18.677445484245077}, {"destination": 2629549320, "path": [[7456.915438446287, 2677.7023056769876], [7295.865438443627, 2709.452305676763], [7251.615438448766, 2665.6023056776944]], "source": 2629549324, "length": 44.31255562898256}, {"destination": 2629549325, "path": [[7456.915438446287, 2677.7023056769876], [7524.815438443966, 2869.4023056772267]], "source": 2629549324, "length": 44.54505630552336}, {"destination": 2629549326, "path": [[7456.915438446287, 2677.7023056769876], [7768.565438446729, 2606.1023056769272]], "source": 2629549324, "length": 61.371773531924845}, {"destination": 1316198744, "path": [[-2523.0345615554484, 1902.0523056774152], [-2377.6845615515185, 1851.4523056776256], [-2342.83456155282, 1885.8523056781705], [-2258.2345615518307, 1861.8023056777843]], "source": 1316198803, "length": 56.92167471204776}, {"destination": 1316198786, "path": [[-2523.0345615554484, 1902.0523056774152], [-2489.284561555394, 1973.1023056781537]], "source": 1316198803, "length": 17.054589549362795}, {"destination": 1316198798, "path": [[-2523.0345615554484, 1902.0523056774152], [-2557.184561553072, 1830.2523056767939]], "source": 1316198803, "length": 17.238036854850826}, {"destination": 1316198742, "path": [[-2523.0345615554484, 1902.0523056774152], [-2702.234561553496, 1968.40230567652]], "source": 1316198803, "length": 37.1371101998569}, {"destination": 1780414611, "path": [[8868.415438449518, -5313.247694322953], [8979.015438448812, -5210.397694321856], [9243.615438442986, -5175.997694323087]], "source": 1771400942, "length": 81.96372135533795}, {"destination": 1771400916, "path": [[8868.415438449518, -5313.247694322953], [8939.115438444389, -5554.397694321978]], "source": 1771400942, "length": 55.28862209399463}, {"destination": 1774850251, "path": [[8868.415438449518, -5313.247694322953], [8494.615438443987, -5420.897694323301]], "source": 1771400942, "length": 75.00145481474998}, {"destination": 1316236929, "path": [[-159.53456155415324, 3215.5023056770206], [-123.48456155564236, 3273.202305678069]], "source": 1316236426, "length": 14.548990476512929}, {"destination": 1316236363, "path": [[-159.53456155415324, 3215.5023056770206], [14.765438443475887, 3129.1023056780887]], "source": 1316236426, "length": 38.31523941937673}, {"destination": 1316236508, "path": [[-159.53456155415324, 3215.5023056770206], [-197.48456155355143, 3154.7023056770486]], "source": 1316236426, "length": 15.327001360649861}, {"destination": 1316198744, "path": [[-2306.4845615508034, 1781.5523056778916], [-2258.2345615518307, 1861.8023056777843]], "source": 1316198811, "length": 20.067562924479972}, {"destination": 1316198732, "path": [[-2306.4845615508034, 1781.5523056778916], [-2334.7845615546703, 1734.4523056781468], [-2346.384561555226, 1699.802305678233]], "source": 1316198811, "length": 19.79174597349448}, {"destination": 1316198798, "path": [[-2306.4845615508034, 1781.5523056778916], [-2431.3345615567528, 1798.7023056775797], [-2557.184561553072, 1830.2523056767939]], "source": 1316198811, "length": 48.98921430747846}, {"destination": 4267598454, "path": [[8987.865438449206, -11.447694323152291], [9029.71543844444, 48.752305676913466]], "source": 602667420, "length": 15.574909198238743}, {"destination": 85647366, "path": [[8987.865438449206, -11.447694323152291], [8936.465438445395, -71.64769432321805], [7954.265438449682, -1335.2976943217243], [8249.16543844978, -1487.697694322776]], "source": 602667420, "length": 419.5370487827052}, {"destination": 1315785601, "path": [[-4985.584561552514, -1379.5476943219142], [-4863.784561550233, -1215.4976943232755]], "source": 479292469, "length": 43.21460451013203}, {"destination": 479288842, "path": [[-4985.584561552514, -1379.5476943219142], [-4658.8845615502805, -1549.6976943225604]], "source": 479292469, "length": 72.74358952511889}, {"destination": 601663327, "path": [[-4985.584561552514, -1379.5476943219142], [-5607.434561554214, -1058.4976943217584]], "source": 479292469, "length": 138.13751304716237}, {"destination": 481500915, "path": [[5105.465438447254, 2109.5523056775532], [5163.815438443464, 2092.702305677818]], "source": 1319204493, "length": 11.712893383092446}, {"destination": 1319204588, "path": [[5105.465438447254, 2109.5523056775532], [5046.665438449338, 1956.952305677717]], "source": 1319204493, "length": 35.731683865067396}, {"destination": 1319204501, "path": [[5105.465438447254, 2109.5523056775532], [4968.815438445517, 2159.4523056780445]], "source": 1319204493, "length": 28.258245397604263}, {"destination": 1316198736, "path": [[-2733.084561555188, 2213.9023056766405], [-2724.6345615523637, 2230.052305677077]], "source": 1316198815, "length": 3.934956276855874}, {"destination": 1316198754, "path": [[-2733.084561555188, 2213.9023056766405], [-2978.5345615565006, 2310.202305677578]], "source": 1316198815, "length": 51.3580506778661}, {"destination": 1316198747, "path": [[-2733.084561555188, 2213.9023056766405], [-2761.6345615513183, 2159.5023056768523]], "source": 1316198815, "length": 13.260410419809345}, {"destination": 1469016668, "path": [[-7248.53456155472, -1103.4476943230231], [-6936.134561556173, -1305.1476943228836]], "source": 1469016732, "length": 74.44051829709306}, {"destination": 1473995278, "path": [[8880.51543844881, -14.447694322683446], [8687.56543844995, 54.75230567775213], [8385.91543844558, -334.6976943223723]], "source": 602667419, "length": 143.67479137575702}, {"destination": 1316623210, "path": [[-1465.184561553201, -550.3976943224131], [-978.6845615522566, -644.1976943225569]], "source": 599407018, "length": 94.83973639850598}, {"destination": 481390470, "path": [[-1465.184561553201, -550.3976943224131], [-1529.0345615568413, -536.1476943228638]], "source": 599407018, "length": 12.548726150357849}, {"destination": 845389542, "path": [[-1465.184561553201, -550.3976943224131], [-1582.7845615561387, -919.2976943221964], [-1620.884561553737, -1082.7476943227055], [-1697.6845615559455, -1423.447694323343], [-1735.934561551744, -1629.8476943230612]], "source": 599407018, "length": 245.73526916833714}, {"destination": 84489489, "path": [[4275.015438444996, -4671.197694323226], [4438.71543844665, -4561.6476943219905], [5454.26543844485, -3719.3476943233604], [5543.865438447427, -3587.797694322603], [5607.565438445761, -3504.0976943232495], [5685.365438445444, -3492.6476943226703], [5739.115438444742, -3457.547694322827], [5834.2154384476435, -3368.1976943231716], [5860.365438444149, -3313.147694322893], [5899.26543844399, -3260.997694322754], [5986.415438449911, -3213.947694321817], [6015.265438449546, -3184.147694321737], [6095.0654384441805, -3174.397694323261], [6123.965438447954, -3161.6976943222853], [6160.115438447633, -3087.8476943225764], [6169.465438446764, -2977.7476943220195], [6225.165438443981, -2907.1976943217946], [6327.715438445125, -2812.047694321862], [6391.41543844346, -2780.497694322648], [6436.865438445238, -2733.4976943222955]], "source": 1721498027, "length": 613.669480437705}, {"destination": 1721498186, "path": [[4275.015438444996, -4671.197694323226], [4221.815438448573, -4677.59769432341], [4177.5154384495745, -4706.247694322485], [3988.4654384465534, -4861.0476943231615], [3456.0154384450925, -5319.74769432253], [3263.6654384461394, -5494.09769432252], [2896.9154384483886, -5863.947694322746], [2828.915438449542, -5929.997694321898]], "source": 1721498027, "length": 394.9839266641581}, {"destination": 554685947, "path": [[4275.015438444996, -4671.197694323226], [4347.815438443093, -4717.447694321919]], "source": 1721498027, "length": 17.245877672565754}, {"destination": 4867879866, "path": [[4275.015438444996, -4671.197694323226], [4208.16543844893, -4625.8976943232], [4176.9654384467, -4654.647694323444]], "source": 1721498027, "length": 24.942497058526484}, {"destination": 4867879866, "path": [[4275.015438444996, -4671.197694323226], [4179.965438446232, -4621.547694322104], [4082.0654384461363, -4542.447694323215], [4059.2654384496996, -4559.647694321711], [4176.9654384467, -4654.647694323444]], "source": 1721498027, "length": 83.3507766189982}, {"destination": 477640984, "path": [[-6402.284561552562, -6335.397694321899], [-6504.284561550832, -6655.497694323387]], "source": 477641134, "length": 73.78187314734525}, {"destination": 477634435, "path": [[-6402.284561552562, -6335.397694321899], [-6253.5345615515325, -6383.797694322624], [-6148.234561550225, -6420.647694323378], [-6073.48456155421, -6449.347694323038], [-6014.584561555125, -6475.597694322488], [-5913.3345615549615, -6521.447694321836], [-5854.884561550478, -6543.647694321919], [-5727.034561552102, -6582.497694322953], [-5680.7345615510485, -6595.7476943232505]], "source": 477641134, "length": 149.13804263081653}, {"destination": 639308696, "path": [[-2431.434561550816, 2336.3023056770517], [-2504.784561551787, 2377.802305677079], [-2611.1345615547066, 2439.0523056769807]], "source": 1316198813, "length": 41.111346235675256}, {"destination": 1316198775, "path": [[-2431.434561550816, 2336.3023056770517], [-2538.33456155661, 2192.602305678193], [-2567.434561555615, 2146.552305678284]], "source": 1316198813, "length": 49.51648249147667}, {"destination": 1316623640, "path": [[-1151.184561550167, 63.85230567751421], [-1318.834561551796, -250.847694323042]], "source": 599407025, "length": 76.906079628779}, {"destination": 385113562, "path": [[-1151.184561550167, 63.85230567751421], [-1223.084561551957, 71.45230567751071]], "source": 599407025, "length": 13.777090611239021}, {"destination": 482730676, "path": [[5163.815438443464, 2092.702305677818], [5192.965438446607, 2140.902305677983], [5205.665438445805, 2182.7023056779635], [5217.615438446899, 2405.2523056781183], [5222.215438443811, 2509.302305677252]], "source": 481500915, "length": 94.37476291754776}, {"destination": 1319204589, "path": [[5163.815438443464, 2092.702305677818], [5339.015438444505, 2024.3023056778497]], "source": 481500915, "length": 36.62761040222432}, {"destination": 1319204493, "path": [[5163.815438443464, 2092.702305677818], [5105.465438447254, 2109.5523056775532]], "source": 481500915, "length": 11.712893383092446}, {"destination": 624738555, "path": [[9353.115438443638, -3715.5976943221704], [9273.315438449004, -3661.6976943228965], [9186.815438447127, -3619.297694323009], [8471.465438447012, -3431.0976943228156], [8274.965438445746, -3380.097694321904], [7729.465438444549, -3255.397694323037], [7431.2654384485195, -3186.147694322017], [7253.415438448485, -3141.547694323066], [7060.3154384443205, -3092.6476943218263], [6786.015438443372, -3008.247694323174], [6559.315438444457, -2924.847694321997], [6297.515438447476, -2822.0476943232597], [6002.165438445672, -2734.5976943227156], [5870.215438449122, -2701.5476943219596], [5748.765438447379, -2674.597694323211], [5604.865438449735, -2644.797694323131], [5481.065438445398, -2618.147694322559], [5338.665438443968, -2596.2976943230133], [5194.665438445156, -2577.897694322928], [5042.765438446395, -2569.5976943218566], [4896.365438447958, -2565.4476943230975], [4736.065438443404, -2571.647694322721], [4577.315438446305, -2587.247694322059], [4410.715438446288, -2607.3976943230546], [4224.615438445767, -2631.797694322202], [4060.9154384441126, -2648.747694323106], [3893.015438443115, -2657.547694322915], [3713.8654384492042, -2662.697694322702], [3534.815438449357, -2662.197694322188], [3347.7154384442542, -2652.4476943219356], [3146.1654384443705, -2633.047694322599], [2918.0154384462753, -2606.397694322027], [2740.815438443178, -2585.7476943222937], [2570.865438443093, -2564.3976943232615], [2216.465438444004, -2529.9976943227166], [2084.915438445023, -2518.5476943221374], [1911.3154384484687, -2507.147694322143], [1737.6654384477774, -2497.4976943230586], [1493.3154384451086, -2493.9976943230135], [1190.065438443355, -2507.8476943232176], [830.8654384450165, -2517.397694322909], [357.8154384484833, -2533.847694323299], [4.015438449300746, -2536.84769432283], [-195.98456155023314, -2532.8476943222713]], "source": 63302403, "length": 1862.301135742038}, {"destination": 848698213, "path": [[9353.115438443638, -3715.5976943221704], [8339.915438448032, -3443.197694322109]], "source": 63302403, "length": 201.96633525072303}, {"destination": 4273347088, "path": [[815.6154384479919, -931.6476943226348], [822.315438448129, -909.3476943231593]], "source": 4273347006, "length": 5.119476248053562}, {"destination": 3485520289, "path": [[815.6154384479919, -931.6476943226348], [800.0154384433245, -933.4976943229378], [792.6154384492179, -954.1976943232555], [779.9154384500184, -983.6976943233822]], "source": 4273347006, "length": 14.797872425270437}, {"destination": 4273347031, "path": [[815.6154384479919, -931.6476943226348], [843.3154384448471, -935.647694323194], [839.3654384448723, -947.7476943224872], [869.4154384443209, -953.0976943228353], [864.9154384485769, -974.4976943224515], [862.0654384472459, -986.147694321815], [897.2654384464818, -990.4976943229116]], "source": 4273347006, "length": 28.213585952602095}, {"destination": 4063114961, "path": [[6964.165438446912, 2285.9523056766307], [7206.015438448787, 2233.102305677193]], "source": 654391743, "length": 47.47322197407159}, {"destination": 476561131, "path": [[6964.165438446912, 2285.9523056766307], [6598.8654384483425, 1571.6523056781284]], "source": 654391743, "length": 173.38048369904925}, {"destination": 856909116, "path": [[-5427.084561553385, 7071.252305676623], [-5291.934561554967, 6995.052305677874]], "source": 423833602, "length": 30.78865983976527}, {"destination": 423833614, "path": [[-5427.084561553385, 7071.252305676623], [-5488.384561552095, 6982.252305677505]], "source": 423833602, "length": 22.971628332162627}, {"destination": 4273347088, "path": [[834.9154384461599, -867.1976943226412], [822.315438448129, -909.3476943231593]], "source": 4273347013, "length": 9.675033789769213}, {"destination": 4273351027, "path": [[834.9154384461599, -867.1976943226412], [887.2654384433076, -876.197694323011], [892.2654384448947, -854.3476943234651]], "source": 4273347013, "length": 15.10576800093954}, {"destination": 4273351027, "path": [[834.9154384461599, -867.1976943226412], [847.1654384436533, -814.1976943232265], [899.7654384472753, -821.3476943232934], [892.2654384448947, -854.3476943234651]], "source": 4273347013, "length": 29.619689326885883}, {"destination": 479279823, "path": [[-1689.3845615513214, -6395.147694322034], [-1799.3345615536782, -6699.697694322993]], "source": 479279560, "length": 70.88219114282408}, {"destination": 267195118, "path": [[-1689.3845615513214, -6395.147694322034], [-1345.7345615535132, -6476.34769432237]], "source": 479279560, "length": 67.7928728971426}, {"destination": 267195119, "path": [[-1689.3845615513214, -6395.147694322034], [-2017.0345615539986, -6302.347694322918]], "source": 479279560, "length": 65.63053340565337}, {"destination": 475985632, "path": [[8504.815438449497, 5276.102305677099], [8535.115438448316, 5151.3023056770635], [8548.115438443914, 5025.852305676537], [8552.765438444965, 4853.952305676757], [8523.565438444792, 4705.802305677409], [8475.96543844986, 4541.252305678256], [8404.46543844564, 4325.9023056769765], [8296.11543844777, 4032.202305676691]], "source": 475985639, "length": 283.9771664329155}, {"destination": 482733604, "path": [[8504.815438449497, 5276.102305677099], [8397.215438449733, 5589.952305676605], [8223.965438446612, 5956.652305677324], [7994.815438443937, 6375.052305678253]], "source": 475985639, "length": 263.4409199484789}, {"destination": 476559301, "path": [[8504.815438449497, 5276.102305677099], [7908.165438443859, 5216.002305678202]], "source": 475985639, "length": 114.2627495294337}, {"destination": 714081217, "path": [[4917.865438443414, 8714.952305677314], [4958.5654384429745, 8744.652305678002]], "source": 714081275, "length": 10.17582070065447}, {"destination": 4402078908, "path": [[4917.865438443414, 8714.952305677314], [4874.365438446659, 8683.002305676979], [4808.765438447437, 8642.452305677394], [4740.315438446885, 8611.80230567804], [4339.515438445574, 8484.552305677795], [4192.515438447231, 8437.652305676835]], "source": 714081275, "length": 152.15707193866945}, {"destination": 4573378118, "path": [[4917.865438443414, 8714.952305677314], [4208.415438448299, 9135.602305677892]], "source": 714081275, "length": 164.19740980788225}, {"destination": 1316623734, "path": [[2503.9654384499954, -1492.6976943225868], [2533.715438445938, -1471.447694322947]], "source": 1316623437, "length": 7.370805532412555}, {"destination": 1316237005, "path": [[-387.5345615540482, 3521.302305676599], [-245.38456155198674, 3463.9523056778644], [-51.58456155385238, 3376.9023056766655]], "source": 1316237048, "length": 71.52518463690672}, {"destination": 4273350990, "path": [[897.2654384464818, -990.4976943229116], [910.7154384437877, -1002.3976943234203]], "source": 4273347031, "length": 3.6792838797573126}, {"destination": 4273351022, "path": [[897.2654384464818, -990.4976943229116], [909.815438447481, -944.5976943229795]], "source": 4273347031, "length": 10.482952506875394}, {"destination": 4273347006, "path": [[897.2654384464818, -990.4976943229116], [862.0654384472459, -986.147694321815], [864.9154384485769, -974.4976943224515], [869.4154384443209, -953.0976943228353], [839.3654384448723, -947.7476943224872], [843.3154384448471, -935.647694323194], [815.6154384479919, -931.6476943226348]], "source": 4273347031, "length": 28.2135859526021}, {"destination": 3047470158, "path": [[-4705.784561551241, 8601.202305676736], [-4597.184561554002, 8540.402305676764]], "source": 3047470159, "length": 24.688323718544595}, {"destination": 1404037082, "path": [[1498.915438446602, 7057.252305678219], [1152.0654384469253, 7072.202305677067], [1087.9154384468848, 7102.002305677146], [1036.9654384447813, 7129.552305677578], [977.965438444528, 7170.852305677045], [892.1154384466945, 7191.502305676778], [816.915438448973, 7202.952305677357], [722.2154384436408, 7204.902305677052]], "source": 623414114, "length": 155.41299329684026}, {"destination": 1328999522, "path": [[1498.915438446602, 7057.252305678219], [1466.7154384468972, 7185.752305677084], [1460.3154384431605, 7234.952305678277]], "source": 623414114, "length": 40.23547535026194}, {"destination": 1328999582, "path": [[1498.915438446602, 7057.252305678219], [1502.1154384484703, 7004.902305677519]], "source": 623414114, "length": 11.658132906013165}, {"destination": 4687869273, "path": [[-405.48456155420354, 9046.452305677021], [-357.1345615540622, 9036.052305678055], [-20.134561552254127, 8997.402305677582]], "source": 4687869271, "length": 74.15677329922212}, {"destination": 1404152874, "path": [[-405.48456155420354, 9046.452305677021], [-428.78456155648337, 8936.502305678217]], "source": 4687869271, "length": 24.850244733326573}, {"destination": 1404152877, "path": [[-405.48456155420354, 9046.452305677021], [-316.5345615556703, 9465.852305677203]], "source": 4687869271, "length": 94.79254165295956}, {"destination": 1721498194, "path": [[3317.2154384430996, -5830.597694322038], [3340.015438446642, -5757.197694322258]], "source": 1721498088, "length": 16.88943760879279}, {"destination": 1721498211, "path": [[3317.2154384430996, -5830.597694322038], [3399.665438443833, -5860.947694323215]], "source": 1721498088, "length": 17.068852113000062}, {"destination": 1721498218, "path": [[3317.2154384430996, -5830.597694322038], [3105.3654384436413, -5749.747694322238]], "source": 1721498088, "length": 44.11342157537697}, {"destination": 1581175394, "path": [[3928.1154384482875, -4515.897694322035], [3424.3154384441254, -4954.2976943222075], [3354.0154384468224, -5023.39769432325], [3247.265438446334, -5114.247694322671], [3057.8654384498805, -5263.0976943230935], [2766.815438448589, -5525.697694322318], [2929.6654384438625, -5635.997694323436]], "source": 1721498093, "length": 354.5705485787067}, {"destination": 4451234402, "path": [[3425.6154384451065, -5292.547694322636], [3389.8154384459644, -5323.997694322457]], "source": 1721498095, "length": 9.760359742635954}, {"destination": 893859979, "path": [[3425.6154384451065, -5292.547694322636], [3316.6154384431934, -5189.64769432273], [3334.2154384499167, -5174.29769432276], [3452.015438448086, -5071.697694322807], [3458.6154384470547, -5039.797694323056], [3458.6154384470547, -4988.397694322799], [3544.465438444888, -4918.69769432185], [3594.3654384453794, -4904.047694322955], [3680.665438444919, -4895.247694323146], [3885.4654384437026, -4706.997694322368]], "source": 1721498095, "length": 192.51386391499466}, {"destination": 1721498215, "path": [[3425.6154384451065, -5292.547694322636], [3665.7654384484317, -5079.447694322781]], "source": 1721498095, "length": 65.81182712698237}, {"destination": 482733400, "path": [[6444.765438445188, 6811.002305678216], [6382.665438444235, 6768.102305677814]], "source": 654379432, "length": 15.183140918433612}, {"destination": 103736843, "path": [[6444.765438445188, 6811.002305678216], [7321.365438443195, 6100.152305677398]], "source": 654379432, "length": 229.75877005135754}, {"destination": 654379967, "path": [[6444.765438445188, 6811.002305678216], [7393.765438443723, 7414.352305676885]], "source": 654379432, "length": 224.90933196022615}, {"destination": 4063114961, "path": [[7547.665438444539, 2158.4523056770167], [7206.015438448787, 2233.102305677193]], "source": 654391797, "length": 67.06245910360006}, {"destination": 2629549316, "path": [[7547.665438444539, 2158.4523056770167], [7618.865438445255, 2301.9023056782826]], "source": 654391797, "length": 34.65650422976561}, {"destination": 476561132, "path": [[7547.665438444539, 2158.4523056770167], [7146.015438443954, 1466.8523056773352], [7082.015438449218, 1392.5023056771124]], "source": 654391797, "length": 192.26006955507123}, {"destination": 882614371, "path": [[5442.315438443757, 1348.402305676899], [5413.01543844952, 1296.652305677881]], "source": 482728439, "length": 12.786713751272812}, {"destination": 3356049693, "path": [[5442.315438443757, 1348.402305676899], [5869.865438448585, 1164.2023056772643]], "source": 482728439, "length": 91.045999643983}, {"destination": 1319204550, "path": [[5442.315438443757, 1348.402305676899], [5543.965438448595, 1511.2523056775017]], "source": 482728439, "length": 41.052741746085594}, {"destination": 1721498218, "path": [[3179.06543844515, -5710.747694323004], [3132.765438444096, -5720.547694322065], [3105.3654384436413, -5749.747694322238]], "source": 1721498106, "length": 17.39487174564633}, {"destination": 1721498194, "path": [[3179.06543844515, -5710.747694323004], [3254.865438449883, -5747.997694323104], [3340.015438446642, -5757.197694322258]], "source": 1721498106, "length": 32.94406036521494}, {"destination": 4451234418, "path": [[3179.06543844515, -5710.747694323004], [3255.515438446821, -5629.7976943220365]], "source": 1721498106, "length": 23.138941429387526}, {"destination": 1890769426, "path": [[-8270.43456155252, -2547.3476943229657], [-8296.334561556761, -2578.44769432225]], "source": 1890769403, "length": 8.490221707106823}, {"destination": 1890769426, "path": [[-8280.834561553263, -2588.597694321848], [-8296.334561556761, -2578.44769432225]], "source": 1890769405, "length": 3.7134197827906883}, {"destination": 1890769419, "path": [[-8280.834561553263, -2588.597694321848], [-8268.084561557032, -2597.047694322896]], "source": 1890769405, "length": 3.0674576866094037}, {"destination": 1890769423, "path": [[-8280.834561553263, -2588.597694321848], [-8254.584561555588, -2557.547694323148]], "source": 1890769405, "length": 8.520950847124608}, {"destination": 1315785287, "path": [[-3346.7845615504643, -4143.697694322767], [-3440.8345615517533, -4129.147694323266]], "source": 1315785187, "length": 18.174123323741075}, {"destination": 1890769427, "path": [[-8378.38456155282, -2477.797694321993], [-8403.834561555357, -2507.597694322072]], "source": 1890769411, "length": 8.206837277384416}, {"destination": 1890769416, "path": [[-8371.98456155619, -2528.597694322343], [-8390.234561552745, -2516.5476943218578]], "source": 1890769413, "length": 4.385564865145835}, {"destination": 1890769420, "path": [[-8371.98456155619, -2528.597694322343], [-8347.984561552836, -2497.39769432189]], "source": 1890769413, "length": 8.304544411865175}, {"destination": 1890769415, "path": [[-8371.98456155619, -2528.597694322343], [-8336.484561553447, -2551.947694323431]], "source": 1890769413, "length": 8.51724804060964}, {"destination": 1890769417, "path": [[-8336.484561553447, -2551.947694323431], [-8310.484561555142, -2521.547694323445]], "source": 1890769415, "length": 8.375866467144109}, {"destination": 1890769426, "path": [[-8336.484561553447, -2551.947694323431], [-8296.334561556761, -2578.44769432225]], "source": 1890769415, "length": 9.645178262339636}, {"destination": 1890769413, "path": [[-8336.484561553447, -2551.947694323431], [-8371.98456155619, -2528.597694322343]], "source": 1890769415, "length": 8.51724804060964}, {"destination": 1890769427, "path": [[-8390.234561552745, -2516.5476943218578], [-8403.834561555357, -2507.597694322072]], "source": 1890769416, "length": 3.263901693297166}, {"destination": 1890769413, "path": [[-8390.234561552745, -2516.5476943218578], [-8371.98456155619, -2528.597694322343]], "source": 1890769416, "length": 4.385564865145835}, {"destination": 1890769422, "path": [[-8390.234561552745, -2516.5476943218578], [-8366.18456155236, -2485.647694323134]], "source": 1890769416, "length": 8.254470676693625}, {"destination": 1890769415, "path": [[-8310.484561555142, -2521.547694323445], [-8336.484561553447, -2551.947694323431]], "source": 1890769417, "length": 8.375866467144109}, {"destination": 1890769428, "path": [[-8268.084561557032, -2597.047694322896], [-8241.834561552252, -2566.247694321788]], "source": 1890769419, "length": 8.475347073745633}, {"destination": 1890769405, "path": [[-8268.084561557032, -2597.047694322896], [-8280.834561553263, -2588.597694321848]], "source": 1890769419, "length": 3.0674576866094037}, {"destination": 5021317166, "path": [[-8268.084561557032, -2597.047694322896], [-8157.584561551801, -2669.847694322769], [-7692.434561555217, -2978.2476943225333], [-7391.33456155372, -3172.7976943223266], [-7325.184561551623, -3216.8976943225402], [-7318.0845615539165, -3220.2976943231934]], "source": 1890769419, "length": 227.7155062468246}, {"destination": 1890769413, "path": [[-8347.984561552836, -2497.39769432189], [-8371.98456155619, -2528.597694322343]], "source": 1890769420, "length": 8.304544411865175}, {"destination": 1890769416, "path": [[-8366.18456155236, -2485.647694323134], [-8390.234561552745, -2516.5476943218578]], "source": 1890769422, "length": 8.254470676693625}, {"destination": 1891590992, "path": [[-6623.834561551689, -2180.0976943229243], [-6644.134561554438, -2221.4476943229756]], "source": 1890531855, "length": 9.973191936610933}, {"destination": 1891590900, "path": [[-6623.834561551689, -2180.0976943229243], [-6630.7345615541635, -2184.7476943221977], [-6658.884561552724, -2191.5976943223113]], "source": 1890531855, "length": 7.237189030202055}, {"destination": 1469016684, "path": [[-6623.834561551689, -2180.0976943229243], [-6582.384561554022, -2112.0476943217172], [-6555.334561554105, -2098.1976943232894], [-6532.8845615511, -2090.5976943232927], [-6502.884561555788, -2080.9476943224327], [-6463.984561555946, -2062.5976943229316], [-6430.434561551124, -2044.247694323431], [-6406.984561550644, -2008.847694321858]], "source": 1890531855, "length": 58.814521280528695}, {"destination": 4273347013, "path": [[822.315438448129, -909.3476943231593], [834.9154384461599, -867.1976943226412]], "source": 4273347088, "length": 9.675033789769213}, {"destination": 4273347006, "path": [[822.315438448129, -909.3476943231593], [815.6154384479919, -931.6476943226348]], "source": 4273347088, "length": 5.119476248053562}, {"destination": 4273347087, "path": [[822.315438448129, -909.3476943231593], [881.7654384429829, -918.8976943228511]], "source": 4273347088, "length": 11.502868385107748}, {"destination": 1890769403, "path": [[-8296.334561556761, -2578.44769432225], [-8270.43456155252, -2547.3476943229657]], "source": 1890769426, "length": 8.490221707106823}, {"destination": 1890769405, "path": [[-8296.334561556761, -2578.44769432225], [-8280.834561553263, -2588.597694321848]], "source": 1890769426, "length": 3.7134197827906883}, {"destination": 1890769415, "path": [[-8296.334561556761, -2578.44769432225], [-8336.484561553447, -2551.947694323431]], "source": 1890769426, "length": 9.645178262339636}, {"destination": 1890769416, "path": [[-8403.834561555357, -2507.597694322072], [-8390.234561552745, -2516.5476943218578]], "source": 1890769427, "length": 3.263901693297166}, {"destination": 1890769411, "path": [[-8403.834561555357, -2507.597694322072], [-8378.38456155282, -2477.797694321993]], "source": 1890769427, "length": 8.206837277384416}, {"destination": 1890769419, "path": [[-8241.834561552252, -2566.247694321788], [-8268.084561557032, -2597.047694322896]], "source": 1890769428, "length": 8.475347073745633}, {"destination": 5021317146, "path": [[-8614.384561553834, -4782.097694322473], [-8685.834561553918, -4738.497694322774], [-8593.684561553517, -4594.5976943233545]], "source": 477665815, "length": 53.17672136100235}, {"destination": 4687869271, "path": [[-20.134561552254127, 8997.402305677582], [-357.1345615540622, 9036.052305678055], [-405.48456155420354, 9046.452305677021]], "source": 4687869273, "length": 74.15677329922212}, {"destination": 479298586, "path": [[-8313.034561552968, -916.6976943220106], [-8046.784561550168, -1025.9476943232926], [-7499.184561552852, -1307.3976943225318]], "source": 1890531871, "length": 177.6580229149285}, {"destination": 4715107670, "path": [[-8313.034561552968, -916.6976943220106], [-8330.28456155205, -945.9476943227685], [-8357.784561553672, -992.4476943226068]], "source": 1890531871, "length": 18.873674300930567}, {"destination": 5017787783, "path": [[-8313.034561552968, -916.6976943220106], [-8290.134561555362, -877.8976943233374]], "source": 1890531871, "length": 9.66571384367989}, {"destination": 1317671176, "path": [[2058.515438449149, 411.15230567712047], [2203.6154384466045, 399.60230567714916], [2248.615438446677, 393.0023056781806]], "source": 1317671357, "length": 36.39669125496369}, {"destination": 1317671210, "path": [[2058.515438449149, 411.15230567712047], [1973.3654384452848, 417.9023056778419]], "source": 1317671357, "length": 16.262525416353714}, {"destination": 1317671107, "path": [[2058.515438449149, 411.15230567712047], [2061.715438443912, 461.3523056775648]], "source": 1317671357, "length": 11.180637368923746}, {"destination": 1890531879, "path": [[-7533.984561554518, -1427.2976943221493], [-7585.084561554822, -1397.4476943232617], [-7834.234561556741, -1269.297694323157]], "source": 1890531875, "length": 67.05890612908391}, {"destination": 1890811948, "path": [[-7834.234561556741, -1269.297694323157], [-7855.784561556334, -1204.1976943226728]], "source": 1890531879, "length": 15.046292639851284}, {"destination": 848254822, "path": [[-7834.234561556741, -1269.297694323157], [-7882.684561550946, -1343.4976943234033], [-7905.13456155395, -1366.5476943227618], [-7917.234561553243, -1375.197694322594], [-7928.58456155443, -1383.2976943231047], [-7955.734561555517, -1389.4476943221434], [-7981.784561550853, -1392.2976943234744]], "source": 1890531879, "length": 41.71532494119907}, {"destination": 1316236473, "path": [[-1120.8845615513496, 3337.6023056774784], [-1178.5845615506219, 3237.0523056766133]], "source": 481499482, "length": 24.908929921930014}, {"destination": 1316236682, "path": [[-1120.8845615513496, 3337.6023056774784], [-1000.2345615518493, 3270.602305677883]], "source": 481499482, "length": 27.359034329169287}, {"destination": 481499142, "path": [[-1120.8845615513496, 3337.6023056774784], [-1126.6345615510431, 3340.8023056775705], [-1219.6845615548568, 3392.5023056777804]], "source": 481499482, "length": 22.405560158436955}, {"destination": 1771400976, "path": [[8752.165438444592, -5744.297694322498], [8518.815438449677, -5812.847694322443]], "source": 1771400967, "length": 46.91683696064056}, {"destination": 1771400904, "path": [[8752.165438444592, -5744.297694322498], [8716.61543844482, -5652.797694322587]], "source": 1771400967, "length": 21.441961250694668}, {"destination": 1771400943, "path": [[8752.165438444592, -5744.297694322498], [8763.815438449285, -5741.847694322289], [8910.615438445291, -5698.997694322472]], "source": 1771400967, "length": 31.77389757866422}, {"destination": 1771400999, "path": [[8752.165438444592, -5744.297694322498], [8784.715438444835, -5759.797694322444], [8779.31543844568, -5781.597694323182], [8788.715438448946, -5797.64769432245], [8822.265438446664, -5815.997694321951], [8881.465438449253, -5838.997694322501]], "source": 1771400967, "length": 35.969228080979555}, {"destination": 4867879866, "path": [[4029.46543844962, -4774.097694323132], [4146.7654384490515, -4682.547694322637], [4176.9654384467, -4654.647694323444]], "source": 1721498161, "length": 38.65435046655066}, {"destination": 4451234404, "path": [[4029.46543844962, -4774.097694323132], [4075.465438447168, -4815.747694323136], [4080.9654384474925, -4883.997694323128], [3979.0654384432855, -4919.547694322901], [3635.06543844494, -5191.847694321794], [3670.5154384435446, -5218.3476943223895], [3606.165438448272, -5277.397694323227], [3496.265438442947, -5377.247694323018]], "source": 1721498161, "length": 195.41633729472346}, {"destination": 893859981, "path": [[4029.46543844962, -4774.097694323132], [3992.065438445991, -4802.4476943222535]], "source": 1721498161, "length": 9.503980367890346}, {"destination": 1316236857, "path": [[-624.434561551368, 3530.2023056775765], [-554.584561555771, 3495.302305676518]], "source": 476559922, "length": 15.385691988405105}, {"destination": 1316236428, "path": [[-624.434561551368, 3530.2023056775765], [-730.884561555456, 3583.4523056781363]], "source": 476559922, "length": 23.454239927617234}, {"destination": 1316236807, "path": [[-624.434561551368, 3530.2023056775765], [-521.0345615509482, 3685.9023056781125]], "source": 476559922, "length": 39.82074591813495}, {"destination": 63308072, "path": [[4919.815438448439, -7106.697694322151], [4865.715438448604, -7039.847694322532]], "source": 602360594, "length": 18.07865780032755}, {"destination": 481508170, "path": [[4919.815438448439, -7106.697694322151], [4849.915438448705, -7180.547694321859], [4807.815438446994, -7224.347694322119], [4712.0654384471545, -7364.647694322101], [4835.865438444387, -7483.747694323029], [4871.765438444698, -7532.047694322586], [4973.0154384448615, -7576.047694323407], [4984.26543844488, -7602.247694322273]], "source": 602360594, "length": 145.8265378424657}, {"destination": 1890935378, "path": [[-9045.584561555132, -1563.7476943233253], [-8962.434561553324, -1545.3976943220482], [-8944.984561551904, -1538.5476943219346], [-8926.234561556612, -1523.6476943218945], [-8912.7845615522, -1516.747694322973], [-8883.284561555627, -1512.1476943225075], [-8733.084561555415, -1484.6476943226605], [-8704.934561556855, -1478.897694322967], [-8659.334561556876, -1463.9976943229271], [-8623.134561553059, -1452.547694322348], [-8590.934561553353, -1447.9476943218829], [-8560.084561551663, -1444.497694322422]], "source": 1890818618, "length": 96.99834932282648}, {"destination": 1890812022, "path": [[-9045.584561555132, -1563.7476943233253], [-9037.334561554644, -1582.6976943227323], [-9030.634561554507, -1595.3476943231237], [-9019.934561550257, -1604.4976943234701], [-9003.834561553958, -1620.5476943227382], [-8985.034561554528, -1634.2976943217736], [-8968.934561551123, -1643.4976943227043], [-8940.984561554898, -1664.6476943229516], [-8928.934561552636, -1679.5476943229914], [-8916.834561553344, -1695.5976943222595], [-8907.184561550708, -1721.2476943218035]], "source": 1890818618, "length": 44.91900353912182}, {"destination": 476078931, "path": [[773.3654384480815, -2231.3476943232045], [776.9154384433818, -2109.7976943220688]], "source": 1316623455, "length": 27.0399376733939}, {"destination": 1316623620, "path": [[773.3654384480815, -2231.3476943232045], [591.6654384492404, -2226.597694322763]], "source": 1316623455, "length": 34.568753248940055}, {"destination": 1316623575, "path": [[773.3654384480815, -2231.3476943232045], [772.4654384446694, -2318.5476943226035]], "source": 1316623455, "length": 19.39310371089883}, {"destination": 1316472064, "path": [[2989.0654384487902, 2188.652305678218], [2983.7654384436973, 2259.852305677157]], "source": 1316471722, "length": 15.866434675547445}, {"destination": 1316471860, "path": [[2989.0654384487902, 2188.652305678218], [2994.7654384443467, 2111.102305677903]], "source": 1316471722, "length": 17.280335004967096}, {"destination": 1316471788, "path": [[2989.0654384487902, 2188.652305678218], [2906.2654384475195, 2186.4023056767933], [2752.915438449577, 2184.052305677753]], "source": 1316471722, "length": 44.923530462372014}, {"destination": 1316623630, "path": [[-740.1345615534183, -927.7476943232443], [-725.3345615509943, -861.9476943234616]], "source": 1316623456, "length": 14.901536701336367}, {"destination": 1316623462, "path": [[-740.1345615534183, -927.7476943232443], [-585.784561550895, -942.2476943221625], [-322.9345615523016, -978.9476943229403]], "source": 1316623456, "length": 80.17653700102031}, {"destination": 1320104054, "path": [[2972.2654384443103, 2656.302305677372], [2967.965438443798, 2684.102305677172], [2866.5154384484026, 2720.8023056779493], [2855.2654384483844, 2862.7523056776736]], "source": 1320103691, "length": 58.82718061429621}, {"destination": 1721498027, "path": [[2828.915438449542, -5929.997694321898], [2896.9154384483886, -5863.947694322746], [3263.6654384461394, -5494.09769432252], [3456.0154384450925, -5319.74769432253], [3988.4654384465534, -4861.0476943231615], [4177.5154384495745, -4706.247694322485], [4221.815438448573, -4677.59769432341], [4275.015438444996, -4671.197694323226]], "source": 1721498186, "length": 394.98392666415816}, {"destination": 84487663, "path": [[2828.915438449542, -5929.997694321898], [3356.5654384446475, -6179.247694323209]], "source": 1721498186, "length": 114.6249714980069}, {"destination": 4868927533, "path": [[-3040.1845615557477, -4082.997694322188], [-2649.7845615551796, -4127.097694322401]], "source": 95386187, "length": 74.88149180860916}, {"destination": 95386126, "path": [[-3040.1845615557477, -4082.997694322188], [-2954.384561554946, -3750.997694321967]], "source": 95386187, "length": 75.61468604418009}, {"destination": 1887913979, "path": [[-1874.2345615549993, -6913.347694322169], [-1928.8845615506034, -6894.09769432281]], "source": 479279693, "length": 11.238526860639919}, {"destination": 479279823, "path": [[-1874.2345615549993, -6913.347694322169], [-1799.3345615536782, -6699.697694322993]], "source": 479279693, "length": 49.60228696942353}, {"destination": 103781535, "path": [[-1874.2345615549993, -6913.347694322169], [-1825.034561555583, -6930.697694322418], [-1616.3845615508876, -6999.997694322246]], "source": 479279693, "length": 52.68110585629458}, {"destination": 3355899009, "path": [[-6084.734561554228, -2066.547694322907], [-6225.48456155414, -1990.2976943217964]], "source": 1890531918, "length": 31.68511823980867}, {"destination": 3355899010, "path": [[-6084.734561554228, -2066.547694322907], [-5991.934561556889, -2118.7976943224385], [-6021.434561553462, -2155.8976943225616]], "source": 1890531918, "length": 31.105859005321904}, {"destination": 1469016803, "path": [[-6084.734561554228, -2066.547694322907], [-6107.534561550665, -2064.247694322674], [-6138.584561554694, -2065.597694322463], [-6162.384561555711, -2068.4476943220175], [-6185.634561553854, -2076.9476943218733], [-6210.534561553515, -2096.997694323477], [-6222.3345615564085, -2110.847694321905]], "source": 1890531918, "length": 29.972693777952056}, {"destination": 1771400991, "path": [[8338.115438448312, -5681.847694322783], [8414.765438445214, -5739.647694323225]], "source": 1771400973, "length": 19.433262076019904}, {"destination": 1721498088, "path": [[3340.015438446642, -5757.197694322258], [3317.2154384430996, -5830.597694322038]], "source": 1721498194, "length": 16.88943760879279}, {"destination": 1721498106, "path": [[3340.015438446642, -5757.197694322258], [3254.865438449883, -5747.997694323104], [3179.06543844515, -5710.747694323004]], "source": 1721498194, "length": 32.94406036521494}, {"destination": 4451234404, "path": [[3340.015438446642, -5757.197694322258], [3393.565438443602, -5702.247694323149], [3440.515438448699, -5637.997694321939], [3529.0654384496634, -5555.447694321813], [3563.915438448362, -5546.847694322565], [3589.3654384437923, -5486.6476943225], [3543.8154384479503, -5438.497694322919], [3541.765438448863, -5377.697694322947], [3496.265438442947, -5377.247694323018]], "source": 1721498194, "length": 114.75026188548382}, {"destination": 601145316, "path": [[-5558.734561553536, -18.69769432261137], [-5188.18456155401, -153.8976943233905]], "source": 483113556, "length": 76.61424653353278}, {"destination": 481390557, "path": [[-5558.734561553536, -18.69769432261137], [-5319.184561550117, 571.4023056775375]], "source": 483113556, "length": 138.91464201973704}, {"destination": 479299222, "path": [[-5558.734561553536, -18.69769432261137], [-5702.23456155361, -416.14769432207765]], "source": 483113556, "length": 92.50579819825649}, {"destination": 483113599, "path": [[-5558.734561553536, -18.69769432261137], [-6577.584561554772, 366.55230567816943]], "source": 483113556, "length": 211.85385684633636}, {"destination": 623414122, "path": [[1502.5154384460393, 5919.402305677224], [1509.6154384437455, 5853.652305678025]], "source": 623414118, "length": 14.684642584742274}, {"destination": 476555428, "path": [[1502.5154384460393, 5919.402305677224], [1802.265438449524, 5899.802305677326], [2010.4154384483763, 5874.452305677735], [2172.8154384490495, 5840.9523056770495], [2330.115438446967, 5809.502305677228], [2398.765438449857, 5790.502305677236]], "source": 623414118, "length": 173.38722596507938}, {"destination": 856909334, "path": [[1502.5154384460393, 5919.402305677224], [1505.4154384444018, 6182.40230567757]], "source": 623414118, "length": 58.49124441255038}, {"destination": 476560013, "path": [[1077.2654384467728, 5842.902305676745], [383.76543844975686, 5918.152305676827]], "source": 477444694, "length": 132.95760644557018}, {"destination": 476553855, "path": [[1077.2654384467728, 5842.902305676745], [1089.5654384484033, 5922.852305676684]], "source": 477444694, "length": 17.93325034934322}, {"destination": 1889249242, "path": [[-7654.134561555282, -1219.5476943226424], [-7548.884561551005, -1260.9976943220859], [-7444.284561550774, -1313.7476943221316], [-7362.434561557052, -1361.8976943217122], [-7300.784561550699, -1403.1976943229552], [-7102.484561556821, -1540.9976943221436], [-6956.83456155649, -1644.5976943231244], [-6832.784561552785, -1723.1476943226908], [-6716.08456155326, -1791.9476943220047], [-6522.9845615562, -1896.2976943228682], [-6413.234561556181, -1955.2476943225372], [-6333.534561555609, -1998.0476943217695], [-6219.634561553277, -2059.247694322863], [-6149.034561552469, -2097.9476943221443], [-5959.734561550078, -2196.7476943220986], [-5512.084561551945, -2435.3976943221055], [-5322.634561551354, -2537.347694323344], [-5167.084561556123, -2608.4476943228906], [-5081.234561551184, -2645.1476943218922], [-4964.934561556333, -2697.4476943220084], [-4875.634561550158, -2742.397694323273], [-4592.084561551246, -2885.4976943222255], [-4441.8845615510345, -2957.7476943227766], [-4294.034561553417, -3023.5976943231435]], "source": 1890531930, "length": 755.977283169575}, {"destination": 1888322965, "path": [[-7654.134561555282, -1219.5476943226424], [-7580.6345615561095, -1268.7476943220588], [-7386.334561552132, -1379.997694321844], [-7063.434561551674, -1606.2476943226045], [-6903.484561554762, -1712.5976943219712], [-6722.534561554028, -1821.2476943233469], [-6625.384561552039, -1876.8976943217554], [-6429.734561550049, -1981.4976943219876], [-6404.284561554618, -1995.0976943228227], [-6352.284561550903, -2022.3476943233009], [-6248.78456155642, -2076.547694322528], [-6165.784561552811, -2123.9976943228103], [-5917.234561550799, -2249.4976943221445], [-5430.88456155516, -2504.5976943225414], [-5067.084561552803, -2688.547694322807], [-4792.134561554917, -2841.29769432262], [-4579.834561553753, -2953.2476943234797], [-4348.834561554327, -3060.3976943233138], [-4263.684561550463, -3090.7976943232998], [-4120.634561552095, -3129.147694322043], [-3909.88456155128, -3175.8476943224423], [-3794.634561550936, -3204.2476943221486], [-3741.9845615502823, -3216.347694323218], [-3503.3345615502753, -3271.197694322936], [-3243.934561552919, -3327.3976943224425], [-3187.284561555259, -3335.947694322883], [-3102.7345615513013, -3342.7976943229964], [-3031.3345615553544, -3343.4476943217105], [-2934.6845615521033, -3340.1976943228105], [-2840.884561550183, -3333.9976943231877], [-2731.334561552501, -3316.797694322915], [-2603.0345615524197, -3298.39769432283], [-2263.134561552249, -3245.4476943222235], [-2203.034561553352, -3239.997694322483], [-2102.484561554263, -3232.747694323024], [-2009.8845615521554, -3236.4476943218533], [-1928.7845615565402, -3247.3476943231108], [-1859.8345615501444, -3264.497694322799], [-1799.0845615543094, -3284.9976943225556], [-1747.8345615558055, -3308.0976943224982], [-1699.5845615568328, -3333.7976943226267], [-1657.2345615557538, -3359.0976943234095], [-1617.7345615560057, -3386.0476943221583], [-1569.3345615517273, -3422.7476943229362], [-1526.684561554248, -3452.047694322502], [-1493.034561555362, -3475.4476943223976], [-1462.634561555376, -3491.9476943233717], [-1417.2345615506288, -3511.147694322148], [-1366.184561554462, -3526.697694322678], [-1309.034561550959, -3537.5976943221585], [-1213.6345615516575, -3550.3476943219425]], "source": 1890531930, "length": 1376.743624760669}, {"destination": 1890818619, "path": [[-8738.034561552866, -1846.8976943228909], [-8730.434561556422, -1795.397694323242], [-8726.234561549973, -1757.6976943232125]], "source": 1890818655, "length": 19.965938865744906}, {"destination": 1324294230, "path": [[383.76543844975686, 5918.152305676827], [-86.88456155425683, 5986.2023056780345]], "source": 476560013, "length": 90.78567706590295}, {"destination": 477445174, "path": [[383.76543844975686, 5918.152305676827], [395.96543844311327, 6008.50230567751]], "source": 476560013, "length": 20.226594800196917}, {"destination": 1771400991, "path": [[8518.815438449677, -5812.847694322443], [8414.765438445214, -5739.647694323225]], "source": 1771400976, "length": 25.62096081375128}, {"destination": 1771400991, "path": [[8518.815438449677, -5812.847694322443], [8238.8654384431, -5895.097694322615], [8201.315438448375, -5801.09769432191], [8414.765438445214, -5739.647694323225]], "source": 1771400976, "length": 121.20334843187737}, {"destination": 1771400916, "path": [[8518.815438449677, -5812.847694322443], [8760.56543844328, -5564.897694322113], [8828.965438446801, -5543.097694323152], [8879.915438448905, -5560.297694323424], [8939.115438444389, -5554.397694321978]], "source": 1771400976, "length": 107.41872825170617}, {"destination": 1771400967, "path": [[8518.815438449677, -5812.847694322443], [8752.165438444592, -5744.297694322498]], "source": 1771400976, "length": 46.91683696064056}, {"destination": 1721498088, "path": [[3399.665438443833, -5860.947694323215], [3317.2154384430996, -5830.597694322038]], "source": 1721498211, "length": 17.068852113000062}, {"destination": 4451234427, "path": [[3399.665438443833, -5860.947694323215], [3466.9154384445733, -5885.147694321802]], "source": 1721498211, "length": 13.874221459845174}, {"destination": 4451234430, "path": [[3399.665438443833, -5860.947694323215], [3360.7154384469595, -5928.097694322787], [3366.1154384461156, -6018.14769432174], [3435.1654384465746, -6047.097694322545]], "source": 1721498211, "length": 51.34463848631657}, {"destination": 1316623456, "path": [[-322.9345615523016, -978.9476943229403], [-585.784561550895, -942.2476943221625], [-740.1345615534183, -927.7476943232443]], "source": 1316623462, "length": 80.17653700102031}, {"destination": 4451234396, "path": [[3665.7654384484317, -5079.447694322781], [3751.0654384433906, -5153.447694322466], [3787.115438449007, -5176.947694321754], [3800.6154384433444, -5245.297694322915]], "source": 1721498215, "length": 47.143135856943765}, {"destination": 893859981, "path": [[3665.7654384484317, -5079.447694322781], [3714.6654384443423, -5035.597694321936], [3992.065438445991, -4802.4476943222535]], "source": 1721498215, "length": 87.439355437716}, {"destination": 1721498095, "path": [[3665.7654384484317, -5079.447694322781], [3425.6154384451065, -5292.547694322636]], "source": 1721498215, "length": 65.81182712698237}, {"destination": 3355899008, "path": [[-6209.184561555503, -2263.297694321764], [-6195.784561555229, -2270.1476943218777], [-6170.284561555662, -2281.6476943230414], [-6151.484561556231, -2291.947694322616], [-6132.6845615568, -2319.14769432251], [-6077.684561553553, -2250.0976943220508]], "source": 1890531945, "length": 38.303583361682875}, {"destination": 1469016803, "path": [[-6209.184561555503, -2263.297694321764], [-6223.9345615537895, -2250.647694323149], [-6235.984561556052, -2236.8976943223374], [-6245.584561554551, -2219.8976943226257], [-6249.784561553895, -2198.0976943218875], [-6251.034561550739, -2175.497694322459], [-6242.684561556189, -2148.5976943225182], [-6233.334561557058, -2126.7976943217805], [-6222.3345615564085, -2110.847694321905]], "source": 1890531945, "length": 37.40924334566628}, {"destination": 3355899007, "path": [[-6209.184561555503, -2263.297694321764], [-6226.184561555215, -2266.0476943219264], [-6240.684561554133, -2269.097694322042], [-6255.484561556557, -2275.5976943233945], [-6366.084561555852, -2224.2976943225303]], "source": 1890531945, "length": 33.21844597480751}, {"destination": 1721498088, "path": [[3105.3654384436413, -5749.747694322238], [3317.2154384430996, -5830.597694322038]], "source": 1721498218, "length": 44.11342157537697}, {"destination": 1721498106, "path": [[3105.3654384436413, -5749.747694322238], [3132.765438444096, -5720.547694322065], [3179.06543844515, -5710.747694323004]], "source": 1721498218, "length": 17.39487174564633}, {"destination": 495640875, "path": [[3105.3654384436413, -5749.747694322238], [3069.7654384468365, -5725.647694323044], [3018.2154384448268, -5689.197694323411]], "source": 1721498218, "length": 21.35400502492616}, {"destination": 1891528345, "path": [[-8361.43456155014, -1722.597694323369], [-8358.734561554116, -1707.697694323329], [-8352.034561553977, -1691.6476943222847], [-8342.684561554848, -1673.297694322784], [-8317.18456155528, -1649.2476943223978], [-8287.6845615516, -1628.5976943226642], [-8265.084561550395, -1614.897694322437], [-8243.234561554402, -1601.3976943227703], [-8232.68456155546, -1586.147694322193], [-8224.634561550203, -1570.097694322925], [-8220.634561553197, -1560.9476943225786], [-8217.934561550066, -1536.8476943233845], [-8224.93456155371, -1504.0976943225814], [-8235.634561550853, -1478.897694322967], [-8238.634561550385, -1457.29769432279], [-8238.884561556859, -1447.3476943219766]], "source": 1890818667, "length": 72.25532447036863}, {"destination": 1890732891, "path": [[-8361.43456155014, -1722.597694323369], [-8321.184561552287, -1742.0976943220978], [-8309.334561552361, -1753.6976943226534], [-8303.784561555005, -1765.0476943220638], [-8297.084561554868, -1776.497694322643], [-8286.334561553587, -1785.6976943217974], [-8274.284561551325, -1791.4476943232671], [-8217.934561550066, -1804.0476943230742], [-8181.734561553356, -1812.0476943224162], [-8154.884561555775, -1822.397694322575], [-8136.684561556251, -1832.197694323412]], "source": 1890818667, "length": 51.2064236480478}, {"destination": 1890818645, "path": [[-8361.43456155014, -1722.597694323369], [-8385.584561551696, -1713.4476943230225], [-8412.384561552244, -1712.297694322018], [-8436.534561553799, -1718.0476943217116], [-8447.28456155508, -1722.597694323369], [-8487.484561555902, -1765.0476943220638]], "source": 1890818667, "length": 29.318880895767386}, {"destination": 1890862891, "path": [[-8222.08456155238, -1928.9476943225027], [-8395.084561556132, -1818.9976943219222], [-8400.38456155412, -1815.8976943229986]], "source": 1890818669, "length": 42.21317251325355}, {"destination": 476794301, "path": [[-2403.084561557023, -4155.1476943233465], [-2346.984561555132, -3931.697694323333], [-2236.1345615564687, -3437.0476943230697], [-2220.7345615541385, -3388.247694322999], [-2203.034561553352, -3353.99769432243]], "source": 95386222, "length": 182.39929070247575}, {"destination": 599408518, "path": [[-2403.084561557023, -4155.1476943233465], [-2332.634561554414, -4170.247694322171]], "source": 95386222, "length": 13.811066225375201}, {"destination": 5021317146, "path": [[-8621.834561552078, -5021.047694322434], [-8422.13456155605, -4704.547694322158], [-8503.53456155517, -4651.547694322744], [-8593.684561553517, -4594.5976943233545]], "source": 477665906, "length": 120.74553553674117}, {"destination": 1316472118, "path": [[40.36543844421203, 4499.502305677083], [256.86543844472, 4420.752305676956]], "source": 476559988, "length": 44.745718912029076}, {"destination": 476559990, "path": [[40.36543844421203, 4499.502305677083], [121.91543844863872, 4681.502305677654], [206.96543844422877, 4831.202305677351]], "source": 476559988, "length": 80.3585842795918}, {"destination": 481500505, "path": [[206.96543844422877, 4831.202305677351], [275.815438449456, 5244.102305677956]], "source": 476559990, "length": 92.75390911030242}, {"destination": 1316471884, "path": [[206.96543844422877, 4831.202305677351], [402.1654384445128, 4790.002305677277]], "source": 476559990, "length": 38.239185976402226}, {"destination": 481498557, "path": [[206.96543844422877, 4831.202305677351], [-132.33456155603562, 4905.402305677598], [-357.1345615540622, 4970.202305678129]], "source": 476559990, "length": 111.72645723210071}, {"destination": 622622441, "path": [[-5409.13456155323, 8302.252305677272], [-5242.3845615550135, 8641.802305676905]], "source": 623416847, "length": 81.90303717907757}, {"destination": 622622442, "path": [[-5409.13456155323, 8302.252305677272], [-5898.384561554338, 7286.102305677388]], "source": 623416847, "length": 244.3916837230526}, {"destination": 623416771, "path": [[-5409.13456155323, 8302.252305677272], [-5507.284561552695, 8326.102305677097], [-5697.334561553191, 8361.902305678015], [-5805.684561551061, 8381.30230567735], [-5944.384561551886, 8397.352305676619], [-6014.084561556388, 8376.252305676957], [-6077.684561553553, 8369.952305677942], [-6370.684561552764, 8433.652305678052], [-6929.834561553605, 8604.902305677342]], "source": 623416847, "length": 300.8105093215297}, {"destination": 856909109, "path": [[-5409.13456155323, 8302.252305677272], [-5321.434561551541, 8277.702305678147], [-5150.834561554519, 8207.65230567666], [-5137.234561551906, 8169.002305677964], [-5174.784561553735, 8091.002305677719], [-5265.634561553156, 7905.402305677711]], "source": 623416847, "length": 126.02850304937687}, {"destination": 1328999608, "path": [[4115.4654384456535, 6458.202305678285], [4191.21543844625, 6127.102305677923], [3944.6154384492615, 6089.802305677239]], "source": 1328999560, "length": 122.65994089117336}, {"destination": 1324294936, "path": [[4115.4654384456535, 6458.202305678285], [3982.71543844686, 6445.152305676771], [3860.6154384481783, 6416.352305677719]], "source": 1328999560, "length": 49.50509157755357}, {"destination": 4908327490, "path": [[-6577.584561554772, 366.55230567816943], [-6444.084561550767, 670.6523056774216], [-6307.934561554874, 946.3023056781594], [-6211.734561553329, 1146.4523056776698], [-6178.234561552643, 1179.0023056779119]], "source": 483113599, "length": 196.55025954770736}, {"destination": 483113556, "path": [[-6577.584561554772, 366.55230567816943], [-5558.734561553536, -18.69769432261137]], "source": 483113599, "length": 211.85385684633636}, {"destination": 4955392152, "path": [[-2949.4845615545273, 434.2523056770631], [-2740.2845615540627, 353.9023056777779]], "source": 1316237078, "length": 43.612783668029515}, {"destination": 1316237077, "path": [[-2949.4845615545273, 434.2523056770631], [-3245.284561550932, -192.1476943227418]], "source": 1316237078, "length": 150.2342039317696}, {"destination": 481397829, "path": [[-2949.4845615545273, 434.2523056770631], [-3101.28456155212, 494.75230567708195], [-3137.634561554137, 608.6523056776372]], "source": 1316237078, "length": 58.106453421096504}, {"destination": 1316236592, "path": [[144.01543844400067, 3766.7023056773273], [100.56543844427779, 3670.552305678143]], "source": 1316237079, "length": 22.923909206742447}, {"destination": 1316237106, "path": [[144.01543844400067, 3766.7023056773273], [-69.38456155580752, 3840.552305677036]], "source": 1316237079, "length": 43.78283797760306}, {"destination": 1316236355, "path": [[144.01543844400067, 3766.7023056773273], [179.96543844844837, 3846.202305677338]], "source": 1316237079, "length": 18.956207290165565}, {"destination": 495771117, "path": [[6464.415438443893, -5144.997694323194], [6466.765438446487, -5103.397694321999]], "source": 848697997, "length": 9.261923329223675}, {"destination": 1320103666, "path": [[3678.715438447, 2512.0523056774146], [3469.315438444198, 2480.702305676985]], "source": 1320103704, "length": 40.429789440883546}, {"destination": 4451359097, "path": [[3800.6154384433444, -5245.297694322915], [3845.3154384470167, -5240.347694321912], [3912.0654384490194, -5258.047694322699]], "source": 4451234396, "length": 21.85944527374883}, {"destination": 4451234427, "path": [[3800.6154384433444, -5245.297694322915], [3720.0654384434984, -5271.547694322365], [3697.2654384470616, -5315.647694322578], [3683.265438446881, -5475.197694321921], [3657.7654384473135, -5534.79769432208], [3466.9154384445733, -5885.147694321802]], "source": 4451234396, "length": 162.76129576313744}, {"destination": 1721498215, "path": [[3800.6154384433444, -5245.297694322915], [3787.115438449007, -5176.947694321754], [3751.0654384433906, -5153.447694322466], [3665.7654384484317, -5079.447694322781]], "source": 4451234396, "length": 47.143135856943765}, {"destination": 1319641256, "path": [[4560.215438445425, 4564.702305676959], [4137.365438445784, 4571.852305677026], [4137.365438445784, 4488.902305677556]], "source": 1319204581, "length": 98.88443099963932}, {"destination": 476559409, "path": [[4560.215438445425, 4564.702305676959], [4549.215438444776, 4676.102305676722]], "source": 1319204581, "length": 24.86257286308373}, {"destination": 1319641275, "path": [[4560.215438445425, 4564.702305676959], [4586.06543844553, 4303.352305678132]], "source": 1319204581, "length": 58.32915149424631}, {"destination": 1319641077, "path": [[4560.215438445425, 4564.702305676959], [4700.215438447231, 4583.802305678119]], "source": 1319204581, "length": 26.963334056381978}, {"destination": 1769171993, "path": [[6682.065438447182, -7483.297694323099], [6128.8654384483725, -8065.6976943220825]], "source": 848698004, "length": 166.85149990508555}, {"destination": 848698007, "path": [[6682.065438447182, -7483.297694323099], [6759.315438443991, -7368.197694322731], [6776.465438449009, -7308.84769432194], [6759.615438447498, -7250.047694322248]], "source": 848698004, "length": 56.57138079767326}, {"destination": 1765485311, "path": [[6759.615438447498, -7250.047694322248], [6706.0154384464, -7175.3476943232645], [6620.315438446767, -7074.54769432303], [6567.315438445576, -6948.947694322527], [6514.46543844969, -6732.547694323188], [6497.815438443411, -6645.497694321989], [6497.215438443504, -6625.397694323354], [6500.1654384460035, -6599.697694323226], [6505.56543844516, -6583.8976943233265], [6518.115438446159, -6562.947694321863], [6536.215438444515, -6545.047694322292], [6552.865438443689, -6536.647694321829], [6578.265438449193, -6529.6476943217385], [6604.16543844633, -6531.897694323163], [6623.815438445035, -6539.04769432323], [6642.415438449234, -6548.097694322408], [6660.065438445883, -6564.547694322798], [6670.765438443027, -6581.647694321901], [6681.415438443139, -6606.097694323409]], "source": 848698007, "length": 206.9502570663903}, {"destination": 495771066, "path": [[6575.165438448494, -5141.097694322028], [6565.915438443426, -5439.497694322171], [6523.91543844999, -5659.297694322163], [6519.965438450015, -5884.297694322527], [6555.765438449157, -6123.697694322416]], "source": 848698010, "length": 219.63116096277074}, {"destination": 495771069, "path": [[6575.165438448494, -5141.097694322028], [6541.56543844664, -5316.047694321924], [6479.265438443349, -5621.147694322204], [6467.015438445856, -5710.747694323004], [6468.465438445037, -5791.647694323387], [6477.865438448305, -5881.197694321827], [6520.365438447584, -6192.847694322268], [6599.6654384434805, -6551.647694323037], [6653.715438446284, -6765.247694323406], [6665.765438448545, -6812.797694323081], [6687.465438446338, -6882.647694322231], [6724.165438448892, -6959.747694322616], [6795.865438448345, -7080.497694323284], [6874.215438443798, -7170.5976943228225], [7199.515438443882, -7456.697694323111]], "source": 848698010, "length": 555.1666161576993}, {"destination": 1889249225, "path": [[-3822.9345615548027, -3140.6976943220143], [-3756.234561556937, -3150.74769432222]], "source": 1889249255, "length": 12.8790682191804}, {"destination": 3355916994, "path": [[-3822.9345615548027, -3140.6976943220143], [-3710.034561557052, -3176.9476943228624], [-3668.1845615547104, -3188.9476943227637]], "source": 1889249255, "length": 31.326892725550113}, {"destination": 1320104092, "path": [[3220.0654384482164, 2848.252305676979], [3223.0154384436105, 3015.652305677463]], "source": 1320103992, "length": 37.23236447903223}, {"destination": 1320103803, "path": [[3220.0654384482164, 2848.252305676979], [3056.465438447731, 2849.1523056768388]], "source": 1320103992, "length": 31.114789151771394}, {"destination": 1319204556, "path": [[3220.0654384482164, 2848.252305676979], [3218.815438444267, 2778.6523056771985], [3218.815438444267, 2726.8023056770116]], "source": 1320103992, "length": 27.011630326854117}, {"destination": 475975643, "path": [[-312.13456155398944, -1268.3976943232979], [-138.28456155096092, -1290.1476943234513]], "source": 1316623472, "length": 33.41241708549545}, {"destination": 1316623230, "path": [[-312.13456155398944, -1268.3976943232979], [-483.08456155155, -1246.9476943230973]], "source": 1316623472, "length": 32.85698708942487}, {"destination": 1316623543, "path": [[-312.13456155398944, -1268.3976943232979], [-277.3345615523226, -1111.947694322879], [-272.8345615565786, -1082.5976943227288]], "source": 1316623472, "length": 41.9995680978547}, {"destination": 1784682721, "path": [[9041.615438448502, -4491.347694322912], [9001.115438444174, -4460.147694322458], [8962.41543844667, -4439.247694323356], [8921.565438448908, -4422.697694321798], [8742.865438449599, -4375.847694323198]], "source": 848698018, "length": 63.2083528684886}, {"destination": 115548403, "path": [[8981.465438445468, -6155.54769432336], [9070.615438446339, -6211.697694322283], [9808.06543844892, -6662.547694322285], [9895.765438443505, -6710.247694321935]], "source": 495770277, "length": 213.19977666803857}, {"destination": 495770279, "path": [[8981.465438445468, -6155.54769432336], [8950.065438448008, -6243.797694322595]], "source": 495770277, "length": 20.513963089020983}, {"destination": 1324294487, "path": [[3670.66543844885, 4787.502305678259], [3766.1654384493204, 4803.552305677527]], "source": 1324294638, "length": 18.510705207193496}, {"destination": 4345393149, "path": [[8950.065438448008, -6243.797694322595], [8864.515438446575, -6210.9476943224]], "source": 495770279, "length": 17.832200112452004}, {"destination": 1777868879, "path": [[8950.065438448008, -6243.797694322595], [8820.615438445146, -6571.097694322958], [8782.265438448178, -6686.097694322158]], "source": 495770279, "length": 103.43167484882946}, {"destination": 1887541364, "path": [[-322.2845615553638, -6232.447694323184], [-337.9345615499574, -6366.997694323473], [-375.28456155655476, -6621.097694322842], [-384.63456155568565, -6712.897694322706]], "source": 1887566506, "length": 107.51687925734734}, {"destination": 1777868877, "path": [[8445.41543844457, -7116.897694322332], [8410.065438447135, -7183.597694321975], [8373.565438446916, -7262.097694322733], [8274.565438448179, -7423.497694322378]], "source": 495770284, "length": 75.60184179637332}, {"destination": 848698031, "path": [[8445.41543844457, -7116.897694322332], [8367.665438449023, -7189.4976943234215]], "source": 495770284, "length": 21.891213136909112}, {"destination": 4687869271, "path": [[-316.5345615556703, 9465.852305677203], [-405.48456155420354, 9046.452305677021]], "source": 1404152877, "length": 94.79254165295956}, {"destination": 2932694426, "path": [[9278.56543844996, -4444.247694323167], [9254.765438448941, -4489.3476943226315], [9235.315438445468, -4544.747694323448], [9223.515438449682, -4596.847694323003], [9215.965438443163, -4640.447694322703], [9212.815438445432, -4688.397694321722], [9207.915438445014, -4794.04769432179]], "source": 848698030, "length": 79.66420288021433}, {"destination": 1316237182, "path": [[-1999.5345615555493, 2452.402305676671], [-1912.484561550798, 2415.502305677109]], "source": 1316237085, "length": 18.47756680777469}, {"destination": 1469016778, "path": [[-6243.984561550064, -1727.6476943219877], [-6438.434561552242, -1627.2476943228753]], "source": 1469016741, "length": 43.195725919394036}, {"destination": 1469016670, "path": [[-6243.984561550064, -1727.6476943219877], [-5853.784561551834, -1190.5976943218377]], "source": 1469016741, "length": 140.6081566420659}, {"destination": 1469016583, "path": [[-6243.984561550064, -1727.6476943219877], [-6283.634561555118, -1772.5976943232524], [-6486.534561553015, -1694.7976943217923]], "source": 1469016741, "length": 54.80733360942246}, {"destination": 848698028, "path": [[8394.165438446067, -3288.847694323138], [9043.565438446421, -3444.04769432316], [9118.265438445405, -3464.5976943217247], [9175.415438448908, -3485.147694322066], [9217.915438448188, -3507.1976943221725], [9256.265438445154, -3531.0476943219983], [9285.765438448834, -3551.7976943229], [9319.41543844772, -3582.747694322208], [9350.515438448781, -3617.397694322122], [9381.615438449842, -3658.8976943221496], [9404.115438449879, -3691.547694321784], [9424.715438449028, -3730.747694323355], [9440.165438448388, -3772.4476943221675], [9452.165438446515, -3817.047694322895], [9458.86543844665, -3859.247694322221], [9463.015438448963, -3905.047694322761], [9456.915438448732, -3964.747694322313], [9445.215438447009, -4012.2476943231786], [9427.565438443253, -4055.347694322364], [9399.965438447565, -4122.197694321983], [9356.015438449105, -4202.747694321829], [9302.665438447377, -4292.09769432326], [9261.76543844548, -4371.547694322686], [9237.065438448155, -4428.997694322589], [9214.915438448657, -4487.097694322983], [9194.965438446445, -4542.097694322678], [9182.415438445445, -4585.047694321886], [9176.71543844989, -4633.8476943219575]], "source": 848698034, "length": 440.5044824189311}, {"destination": 848698030, "path": [[8394.165438446067, -3288.847694323138], [8489.415438447168, -3289.047694321923], [9051.61543844457, -3422.59769432296], [9126.365438447692, -3442.6976943233713], [9184.91543844624, -3463.247694321936], [9248.265438444036, -3495.247694322856], [9303.165438446114, -3531.347694321951], [9347.365438443943, -3569.2476943225415], [9390.715438449604, -3617.147694322753], [9424.565438443722, -3663.597694322007], [9451.21543844607, -3714.197694321797], [9472.715438448631, -3768.547694322777], [9485.715438444231, -3817.297694322264], [9492.265438446168, -3862.2976943223366], [9492.715438447874, -3906.5476943225262], [9488.7654384479, -3950.7976943227163], [9480.76543844678, -3994.5976943229766], [9467.615438445875, -4038.4476943220448], [9453.965438446232, -4074.797694322285], [9429.16543844774, -4131.797694322259], [9372.515438442973, -4239.547694321999], [9295.215438449133, -4373.797694322335], [9278.56543844996, -4444.247694323167]], "source": 848698034, "length": 404.20302940752464}, {"destination": 1776093676, "path": [[9895.215438447736, -6982.847694322558], [9967.865438447632, -6948.647694322573], [10052.515438445653, -6932.397694322745]], "source": 4346903220, "length": 32.26538120172134}, {"destination": 4346903222, "path": [[9895.215438447736, -6982.847694322558], [9728.865438447086, -6914.947694323104]], "source": 4346903220, "length": 35.04982209857272}, {"destination": 4346903224, "path": [[9728.865438447086, -6914.947694323104], [9729.815438447531, -6859.5476943222875], [9710.315438447025, -6794.1976943224345]], "source": 4346903222, "length": 27.32076999046071}, {"destination": 4346903220, "path": [[9728.865438447086, -6914.947694323104], [9895.215438447736, -6982.847694322558]], "source": 4346903222, "length": 35.04982209857272}, {"destination": 91207598, "path": [[9728.865438447086, -6914.947694323104], [9359.96543844908, -7563.79769432236]], "source": 4346903222, "length": 160.44304292912807}, {"destination": 1771401026, "path": [[9710.315438447025, -6794.1976943224345], [9852.565438443151, -6607.497694322006]], "source": 4346903224, "length": 49.553294620549146}, {"destination": 1771400995, "path": [[9710.315438447025, -6794.1976943224345], [9554.865438445859, -6670.897694322164], [9325.66543844615, -6510.647694321748], [9207.265438448076, -6445.297694321895], [9085.9154384475, -6397.897694322197], [8984.265438449767, -6367.247694322842]], "source": 4346903224, "length": 169.2757008324118}, {"destination": 4346903222, "path": [[9710.315438447025, -6794.1976943224345], [9729.815438447531, -6859.5476943222875], [9728.865438447086, -6914.947694323104]], "source": 4346903224, "length": 27.32076999046071}, {"destination": 1771400904, "path": [[8414.765438445214, -5739.647694323225], [8716.61543844482, -5652.797694322587]], "source": 1771400991, "length": 60.55890954898524}, {"destination": 1771400976, "path": [[8414.765438445214, -5739.647694323225], [8518.815438449677, -5812.847694322443]], "source": 1771400991, "length": 25.62096081375128}, {"destination": 1771400976, "path": [[8414.765438445214, -5739.647694323225], [8201.315438448375, -5801.09769432191], [8238.8654384431, -5895.097694322615], [8518.815438449677, -5812.847694322443]], "source": 1771400991, "length": 121.20334843187739}, {"destination": 1771400973, "path": [[8414.765438445214, -5739.647694323225], [8338.115438448312, -5681.847694322783]], "source": 1771400991, "length": 19.433262076019904}, {"destination": 475977737, "path": [[3225.6654384497097, 952.9523056777123], [3197.815438447549, 571.4023056775375]], "source": 475978428, "length": 85.01805855045482}, {"destination": 1317671261, "path": [[3225.6654384497097, 952.9523056777123], [3242.2154384477153, 1179.4023056772573]], "source": 475978428, "length": 50.45851705628262}, {"destination": 1317670750, "path": [[3225.6654384497097, 952.9523056777123], [3416.7654384447133, 925.7523056778183]], "source": 475978428, "length": 36.84253191232853}, {"destination": 1317681865, "path": [[3225.6654384497097, 952.9523056777123], [2635.165438448439, 950.4523056769187]], "source": 475978428, "length": 112.29982845852615}, {"destination": 1315785225, "path": [[-3439.7345615531094, -1891.797694321795], [-3310.9845615513223, -1951.8476943218843]], "source": 1315785262, "length": 27.888727365594853}, {"destination": 1315785460, "path": [[-3439.7345615531094, -1891.797694321795], [-3458.484561555508, -1857.3976943230264], [-3480.884561554376, -1847.5976943221895]], "source": 1315785262, "length": 13.224776800774363}, {"destination": 1315785190, "path": [[-3439.7345615531094, -1891.797694321795], [-3396.784561552124, -1887.1976943231061], [-3350.5345615552073, -1818.2476943220395]], "source": 1315785262, "length": 25.908629868872772}, {"destination": 1315785543, "path": [[-3439.7345615531094, -1891.797694321795], [-3474.8345615511766, -1950.09769432275]], "source": 1315785262, "length": 14.582712783922988}, {"destination": 1889249340, "path": [[-3735.784561555988, -3008.247694323174], [-3767.034561555249, -2994.897694323484], [-3805.934561555091, -3052.2476943222186], [-3824.6845615503844, -3078.647694323422]], "source": 3355916993, "length": 28.254753690599205}, {"destination": 3355916997, "path": [[-3735.784561555988, -3008.247694323174], [-3749.1845615562625, -3028.9976943222996]], "source": 3355916993, "length": 5.270412997502306}, {"destination": 1889249347, "path": [[-3668.1845615547104, -3188.9476943227637], [-3540.384561553367, -3226.5476943234007], [-3346.93456155577, -3280.6976943220434]], "source": 3355916994, "length": 64.40745944239711}, {"destination": 1889249343, "path": [[-3668.1845615547104, -3188.9476943227637], [-3665.684561553917, -3182.8476943225323], [-3746.9345615548377, -3157.7976943228946]], "source": 3355916994, "length": 17.85704895551391}, {"destination": 1889249229, "path": [[-3749.1845615562625, -3028.9976943222996], [-3730.0345615562946, -3040.6476943234393], [-3772.3845615502682, -3107.297694322497]], "source": 3355916997, "length": 21.336634048172982}, {"destination": 1889249359, "path": [[-3749.1845615562625, -3028.9976943222996], [-3765.684561550131, -3054.547694322451]], "source": 3355916997, "length": 6.49041826817069}, {"destination": 476548799, "path": [[-4012.7845615529623, -3474.3976943225616], [-4116.28456155455, -3688.397694322276]], "source": 3355916998, "length": 51.50043753074997}, {"destination": 1889249343, "path": [[-4012.7845615529623, -3474.3976943225616], [-3984.9345615508014, -3482.8476943218334], [-3950.684561552009, -3406.5976943224996], [-3927.984561556741, -3367.5976943232654], [-3898.4845615530617, -3313.6976943222153], [-3870.2845615503634, -3274.697694322981], [-3836.784561556783, -3249.497694323367], [-3789.834561551686, -3220.797694321931], [-3763.0345615511374, -3200.197694322782], [-3749.5845615538315, -3178.3976943220437], [-3746.9345615548377, -3157.7976943228946]], "source": 3355916998, "length": 93.3079500560815}, {"destination": 1889249340, "path": [[-3979.9345615563197, -3093.397694323485], [-3973.4845615555514, -3079.7976943226504], [-3887.734561551781, -3104.9976943222646], [-3868.9845615564877, -3106.147694323269], [-3854.2345615510953, -3102.697694322032], [-3838.3845615541645, -3094.2476943227603], [-3824.6845615503844, -3078.647694323422]], "source": 3355916999, "length": 34.881905842992026}, {"destination": 1889249255, "path": [[-3979.9345615563197, -3093.397694323485], [-3822.9345615548027, -3140.6976943220143]], "source": 3355916999, "length": 31.653813607410218}, {"destination": 475978428, "path": [[2635.165438448439, 950.4523056769187], [3225.6654384497097, 952.9523056777123]], "source": 1317681865, "length": 112.29982845852615}, {"destination": 1317671237, "path": [[2635.165438448439, 950.4523056769187], [2662.115438447188, 1080.8023056778638]], "source": 1317681865, "length": 29.438251352386057}, {"destination": 475978414, "path": [[2635.165438448439, 950.4523056769187], [2264.715438442977, 948.9023056765689]], "source": 1317681865, "length": 70.45123809797508}, {"destination": 1316471824, "path": [[2517.065438446764, 1670.552305677475], [2734.815438444116, 1703.752305678208]], "source": 1316471927, "length": 42.06443193732981}, {"destination": 1316471779, "path": [[2517.065438446764, 1670.552305677475], [2501.2654384468647, 1668.0523056766815], [2238.4154384482713, 1665.7523056782252], [2238.4154384482713, 1702.4523056772268]], "source": 1316471927, "length": 61.208886365119845}, {"destination": 1316472103, "path": [[2517.065438446764, 1670.552305677475], [2495.8654384477086, 1729.9523056770738]], "source": 1316471927, "length": 13.811392508286888}, {"destination": 1320103792, "path": [[1822.7154384433675, 3702.4023056773103], [1678.215438445818, 3711.602305678241]], "source": 1320103714, "length": 27.557778993232525}, {"destination": 1320103556, "path": [[1822.7154384433675, 3702.4023056773103], [1833.515438448785, 3778.252305677299], [1854.9654384472092, 3819.5523056767656]], "source": 1320103714, "length": 27.04235933627971}, {"destination": 1320103687, "path": [[1822.7154384433675, 3702.4023056773103], [1852.6654384487529, 3700.452305677615]], "source": 1320103714, "length": 5.712715467296752}, {"destination": 479279560, "path": [[-1799.3345615536782, -6699.697694322993], [-1689.3845615513214, -6395.147694322034]], "source": 479279823, "length": 70.88219114282408}, {"destination": 850262881, "path": [[-1799.3345615536782, -6699.697694322993], [-2129.884561554718, -6585.847694323022]], "source": 479279823, "length": 67.76042650656385}, {"destination": 479279693, "path": [[-1799.3345615536782, -6699.697694322993], [-1874.2345615549993, -6913.347694322169]], "source": 479279823, "length": 49.60228696942353}, {"destination": 103787886, "path": [[-1799.3345615536782, -6699.697694322993], [-1498.3345615533494, -6796.947694322597]], "source": 479279823, "length": 61.18336339354284}, {"destination": 3318976581, "path": [[-2181.1845615502534, -3503.547694322151], [-2189.384561553709, -3537.247694323398], [-2235.4845615524255, -3740.9476943217614]], "source": 1889255124, "length": 53.79627601152743}, {"destination": 478373250, "path": [[-4512.484561551844, 2950.6523056781475], [-4964.834561555164, 3104.1023056772588]], "source": 64813782, "length": 92.55079939473436}, {"destination": 147477301, "path": [[-4512.484561551844, 2950.6523056781475], [-4669.434561556329, 2627.852305677081], [-4966.234561550209, 2052.7523056781406]], "source": 64813782, "length": 217.5445219814221}, {"destination": 483108462, "path": [[-4512.484561551844, 2950.6523056781475], [-4106.184561550208, 3727.152305676995]], "source": 64813782, "length": 189.18618951540097}, {"destination": 5021317146, "path": [[-8515.584561550328, -4606.197694322134], [-8576.584561552636, -4568.74769432325], [-8593.684561553517, -4594.5976943233545]], "source": 477666011, "length": 20.88416918686129}, {"destination": 495771171, "path": [[9442.265438444509, -3653.697694321778], [9607.265438447143, -3717.3476943230808]], "source": 848698077, "length": 34.421131724686944}, {"destination": 967329921, "path": [[169.76543845004244, -2133.647694321894], [246.06543844640782, -2129.147694322597]], "source": 481385192, "length": 14.544033831968594}, {"destination": 75355692, "path": [[169.76543845004244, -2133.647694321894], [183.71543844608595, -2509.9976943234738]], "source": 481385192, "length": 83.73859419059143}, {"destination": 481385214, "path": [[169.76543845004244, -2133.647694321894], [-172.98456155145914, -2138.3476943217515]], "source": 481385192, "length": 65.18670775625823}, {"destination": 4273412842, "path": [[340.36543844706557, -565.1976943230608], [383.66543844858825, -365.8976943228254]], "source": 4273412841, "length": 45.08083739322951}, {"destination": 4273412841, "path": [[383.66543844858825, -365.8976943228254], [340.36543844706557, -565.1976943230608]], "source": 4273412842, "length": 45.08083739322951}, {"destination": 3758885822, "path": [[383.66543844858825, -365.8976943228254], [133.1154384445199, -344.29769432264834]], "source": 4273412842, "length": 47.888691704977475}, {"destination": 967329921, "path": [[248.76543844953858, -1679.6476943223838], [246.06543844640782, -2129.147694322597]], "source": 481385195, "length": 99.96570269095434}, {"destination": 967330147, "path": [[248.76543844953858, -1679.6476943223838], [508.9654384491382, -1681.7476943220554]], "source": 481385195, "length": 49.48303926958629}, {"destination": 1316623723, "path": [[248.76543844953858, -1679.6476943223838], [71.61543844347307, -1681.1976943227337]], "source": 481385195, "length": 33.68937336417257}, {"destination": 1316623705, "path": [[248.76543844953858, -1679.6476943223838], [247.2154384491887, -1489.4476943219104], [252.8654384477136, -1427.0476943227804], [263.1154384431511, -1395.3476943218134]], "source": 481385195, "length": 63.53234131004205}, {"destination": 1324294579, "path": [[3184.515438448443, 5520.852305677337], [3217.565438447423, 5526.152305677101]], "source": 1324294433, "length": 6.3952949239235055}, {"destination": 1324294508, "path": [[3184.515438448443, 5520.852305677337], [3141.565438447458, 5514.002305677223]], "source": 1324294433, "length": 8.309969028298275}, {"destination": 1324295206, "path": [[3184.515438448443, 5520.852305677337], [3204.6154384488545, 5455.952305677414]], "source": 1324294433, "length": 14.931143432942525}, {"destination": 1581175168, "path": [[2601.6154384436163, -6197.997694322055], [2505.6154384444085, -6154.89769432287]], "source": 1581175514, "length": 20.617388125902732}, {"destination": 1581175146, "path": [[2601.6154384436163, -6197.997694322055], [2644.465438443433, -6081.097694321968], [2679.915438449143, -6038.347694323321]], "source": 1581175514, "length": 38.89858565181388}, {"destination": 1581175468, "path": [[2601.6154384436163, -6197.997694322055], [2581.265438443836, -6253.497694322263], [2504.5154384457646, -6421.147694322116], [2467.2154384433043, -6496.597694322759]], "source": 1581175514, "length": 71.18965102500997}, {"destination": 1771400912, "path": [[9084.815438448857, -6040.497694321801], [8838.365438442963, -5992.597694323365]], "source": 1771401000, "length": 48.05730594620959}, {"destination": 1771400938, "path": [[9084.815438448857, -6040.497694321801], [9179.565438444115, -5603.347694322025]], "source": 1771401000, "length": 98.8731901595538}, {"destination": 1771401030, "path": [[9084.815438448857, -6040.497694321801], [9083.765438447244, -6104.947694321794], [9099.565438447144, -6142.547694322431], [9122.36543844358, -6168.947694321858]], "source": 1771401000, "length": 30.519317587561982}, {"destination": 1769171922, "path": [[4500.365438445897, -6976.997694323472], [4470.865438449323, -6942.847694322296]], "source": 1785697735, "length": 9.442138905935673}, {"destination": 1993253315, "path": [[4500.365438445897, -6976.997694323472], [4514.365438446077, -6993.197694322717]], "source": 1785697735, "length": 4.4811132986317945}, {"destination": 3344153902, "path": [[4500.365438445897, -6976.997694323472], [4563.215438444957, -6928.397694322186], [4588.065438447586, -6892.497694321875], [4596.115438445736, -6861.547694322568], [4593.015438445036, -6842.747694323137]], "source": 1785697735, "length": 36.66336811937917}, {"destination": 1316623722, "path": [[1283.4654384477062, -1045.847694323143], [1275.5154384436196, -1079.8476943225664], [1277.0654384439695, -1107.447694321806]], "source": 1316623486, "length": 13.856612689781132}, {"destination": 1316623275, "path": [[1283.4654384477062, -1045.847694323143], [1203.115438443092, -1038.5476943230997], [1170.9154384433873, -1015.5976943231337], [1068.9654384492542, -1004.1476943225547], [1031.415438447425, -1013.3476943234854], [978.815438443803, -1013.4476943228776]], "source": 1316623486, "length": 60.32299255309404}, {"destination": 1316623638, "path": [[1283.4654384477062, -1045.847694323143], [1299.6154384481429, -976.5976943221233]], "source": 1316623486, "length": 15.703709423037273}, {"destination": 1316623339, "path": [[1283.4654384477062, -1045.847694323143], [1444.5154384432612, -1075.2476943221013]], "source": 1316623486, "length": 31.31675145975294}, {"destination": 601661130, "path": [[-9246.784561554477, 7108.102305677377], [-8363.08456155166, 6827.152305676876], [-8309.634561555868, 6776.802305678231], [-8297.834561552974, 6716.452305678189], [-8360.334561551497, 6477.652305678205]], "source": 601661225, "length": 262.4690991733003}, {"destination": 1317670822, "path": [[1455.6654384492163, 913.8023056767253], [1342.365438446791, 925.0523056767435]], "source": 1317671274, "length": 21.69144783952843}, {"destination": 1317671038, "path": [[1455.6654384492163, 913.8023056767253], [1459.2654384486536, 810.2023056775209]], "source": 1317671274, "length": 23.04957217095178}, {"destination": 1317671333, "path": [[1455.6654384492163, 913.8023056767253], [1506.2154384466453, 908.8023056769146], [1535.7154384432192, 874.4023056781458], [1578.315438443667, 869.8023056776805]], "source": 1317671274, "length": 27.32980875801755}, {"destination": 1316623432, "path": [[-172.98456155145914, -2138.3476943217515], [-184.28456155561435, -2064.247694322674]], "source": 481385214, "length": 16.618853452033616}, {"destination": 481385192, "path": [[-172.98456155145914, -2138.3476943217515], [169.76543845004244, -2133.647694321894]], "source": 481385214, "length": 65.18670775625823}, {"destination": 152847559, "path": [[-172.98456155145914, -2138.3476943217515], [-128.53456155426102, -2368.7476943230477], [-87.78456155056347, -2499.5976943227306]], "source": 481385214, "length": 82.04508561974757}, {"destination": 1316623465, "path": [[1741.2154384430778, -732.3476943223994], [1562.5154384437678, -701.3976943230915]], "source": 1316623488, "length": 34.67314401189342}, {"destination": 385113786, "path": [[1741.2154384430778, -732.3476943223994], [1757.9654384434207, -616.0976943228036]], "source": 1316623488, "length": 26.048317351904316}, {"destination": 1316623433, "path": [[1741.2154384430778, -732.3476943223994], [1721.5654384443724, -857.4476943223885]], "source": 1316623488, "length": 28.07072329047322}, {"destination": 1315785241, "path": [[-2838.8345615510957, -2270.0476943224858], [-2627.134561556943, -2322.947694322508]], "source": 1315785174, "length": 41.94105134003083}, {"destination": 1315785227, "path": [[-2838.8345615510957, -2270.0476943224858], [-2881.8845615532496, -2340.147694322781]], "source": 1315785174, "length": 17.608411425753463}, {"destination": 608700679, "path": [[-846.8345615568751, 6163.852305677508], [-610.3845615541559, 6134.702305677919]], "source": 1404152880, "length": 45.43669683725891}, {"destination": 1404152799, "path": [[-846.8345615568751, 6163.852305677508], [-722.8845615543378, 6457.002305676696]], "source": 1404152880, "length": 69.32536016232943}, {"destination": 1779937921, "path": [[8020.1154384482725, -7143.94769432225], [8175.7654384446705, -7224.197694322143], [8183.815438449927, -7228.147694322118]], "source": 495649612, "length": 36.32617995232791}, {"destination": 495646348, "path": [[8020.1154384482725, -7143.94769432225], [7989.315438443611, -7188.297694321833]], "source": 495649612, "length": 11.471091903030153}, {"destination": 495646343, "path": [[8020.1154384482725, -7143.94769432225], [8077.26543844467, -7026.747694322211]], "source": 495649612, "length": 28.23878324445065}, {"destination": 1316623506, "path": [[2168.8654384490746, -817.0976943233654], [2281.3154384451195, -838.9976943217192], [2329.6154384482293, -788.5476943219061], [2469.1654384483286, -818.9976943224764]], "source": 1316623490, "length": 63.81976557990728}, {"destination": 1316623701, "path": [[2168.8654384490746, -817.0976943233654], [2193.8654384499046, -723.4476943231982]], "source": 1316623490, "length": 21.362792735061422}, {"destination": 1316623510, "path": [[2168.8654384490746, -817.0976943233654], [2042.615438448081, -804.5976943229505], [2037.2654384459565, -777.0976943231034], [1857.5654384491713, -767.8976943221727]], "source": 1316623490, "length": 64.60253066657155}, {"destination": 1316623591, "path": [[2168.8654384490746, -817.0976943233654], [2138.2654384467514, -931.5476943232426]], "source": 1316623490, "length": 26.109142460645764}, {"destination": 93792440, "path": [[9678.615438446059, -3753.647694322737], [9651.81543844551, -3816.297694323012]], "source": 495771174, "length": 14.83516116594481}, {"destination": 495771172, "path": [[9678.615438446059, -3753.647694322737], [11421.815438446003, -4306.697694323347]], "source": 495771174, "length": 353.5607585261996}, {"destination": 1316236544, "path": [[-1871.2345615554682, 2665.952305678232], [-1735.984561555881, 2598.5023056769305]], "source": 1316237102, "length": 29.776449463694025}, {"destination": 1316236522, "path": [[-1871.2345615554682, 2665.952305678232], [-1907.2345615569475, 2614.202305677438]], "source": 1316237102, "length": 13.391617757838127}, {"destination": 1316237227, "path": [[-1871.2345615554682, 2665.952305678232], [-1999.5345615555493, 2746.002305677564], [-2083.8845615500645, 2789.252305676726]], "source": 1316237102, "length": 48.90859830935884}, {"destination": 1316236407, "path": [[-1871.2345615554682, 2665.952305678232], [-1826.284561552427, 2730.502305677618]], "source": 1316237102, "length": 16.708096630889536}, {"destination": 267198013, "path": [[-6529.134561553463, -4206.897694322364], [-6698.184561550135, -4550.697694321926]], "source": 1315678681, "length": 82.9404313771432}, {"destination": 1315678639, "path": [[-6529.134561553463, -4206.897694322364], [-5853.034561553727, -4434.797694322868]], "source": 1315678681, "length": 138.19269901342133}, {"destination": 87781592, "path": [[-8198.53456155073, 3087.4523056780845], [-8332.934561551043, 2401.252305677559]], "source": 71129881, "length": 154.7299890858223}, {"destination": 483118665, "path": [[-8198.53456155073, 3087.4523056780845], [-8915.534561552362, 3247.052305678011]], "source": 71129881, "length": 140.90561041672942}, {"destination": 857780844, "path": [[-8198.53456155073, 3087.4523056780845], [-7570.784561551136, 2948.9023056772367], [-7515.984561550226, 2936.8523056767517]], "source": 71129881, "length": 134.06093121952975}, {"destination": 76482085, "path": [[-8198.53456155073, 3087.4523056780845], [-8012.334561556145, 4116.602305677119]], "source": 71129881, "length": 231.59626592120753}, {"destination": 63303824, "path": [[8742.865438449599, -4375.847694323198], [8071.165438444439, -4205.497694321992]], "source": 1784682721, "length": 133.22637956576142}, {"destination": 1784682705, "path": [[8742.865438449599, -4375.847694323198], [8718.415438444537, -4454.79769432211], [8688.36543844509, -4554.8976943230455]], "source": 1784682721, "length": 41.1457172396849}, {"destination": 1315785444, "path": [[-3302.9345615531724, -1747.2976943224694], [-3330.3345615536273, -1788.1476943220064]], "source": 1315785178, "length": 10.472630404586996}, {"destination": 103938914, "path": [[7860.515438444792, -4994.197694323077], [7855.015438444469, -5363.897694323327], [7856.06543844608, -5440.947694323128]], "source": 103938846, "length": 99.36032141422277}, {"destination": 495772550, "path": [[7860.515438444792, -4994.197694323077], [7790.465438446859, -4998.947694321742]], "source": 103938846, "length": 13.361972361176814}, {"destination": 3110525726, "path": [[-5116.934561556263, 509.20230567719216], [-5117.584561553202, 509.402305677753]], "source": 3110525728, "length": 0.13425897559227123}, {"destination": 3110525726, "path": [[-5116.934561556263, 509.20230567719216], [-5136.684561556138, 484.7023056768762], [-5161.184561551125, 477.20230567804833], [-5175.834561555348, 453.702305676984], [-5153.084561555943, 427.60230567751023], [-5115.7845615534825, 434.00230567769427], [-5105.784561550308, 458.35230567803364], [-5121.934561550745, 478.6523056772296], [-5117.584561553202, 509.402305677753]], "source": 3110525728, "length": 50.05161560165923}, {"destination": 601145318, "path": [[-5116.934561556263, 509.20230567719216], [-5076.884561553641, 496.90230567733806], [-4928.3845615519795, 455.5023056767027]], "source": 3110525728, "length": 37.795941248945695}, {"destination": 1320104079, "path": [[2761.4154384494327, 3186.4523056768235], [2831.165438443861, 3185.8523056769172]], "source": 1320103728, "length": 13.266526062030412}, {"destination": 1320103605, "path": [[2761.4154384494327, 3186.4523056768235], [2756.315438446677, 3245.252305676516]], "source": 1320103728, "length": 13.112779355877795}, {"destination": 1316471887, "path": [[2761.4154384494327, 3186.4523056768235], [2697.065438447055, 3152.052305678055], [2611.2154384492214, 3126.802305677856], [2511.965438444008, 3117.9023056768783], [2508.165438449339, 3142.002305677849]], "source": 1320103728, "length": 56.08457827997541}, {"destination": 103788043, "path": [[-1732.534561554644, -5942.397694322921], [-1211.7845615549072, -6053.747694322098]], "source": 1315785179, "length": 102.06861467648858}, {"destination": 1315785421, "path": [[-1732.534561554644, -5942.397694322921], [-1691.03456155284, -5818.147694322207], [-1526.0845615543417, -5331.9976943218]], "source": 1315785179, "length": 141.30948145876707}, {"destination": 423833602, "path": [[-5488.384561552095, 6982.252305677505], [-5427.084561553385, 7071.252305676623]], "source": 423833614, "length": 22.971628332162627}, {"destination": 622622443, "path": [[-5488.384561552095, 6982.252305677505], [-5711.434561554541, 7106.852305676981], [-5953.284561556416, 7199.0023056773825]], "source": 423833614, "length": 101.03017365101708}, {"destination": 971168079, "path": [[-5488.384561552095, 6982.252305677505], [-5538.034561553218, 6891.002305676963], [-5632.434561555045, 6718.602305676669], [-5750.98456155132, 6139.552305677754]], "source": 423833614, "length": 195.45287614901827}, {"destination": 1320104104, "path": [[3692.165438444306, 2067.102305677082], [3689.4654384482806, 2122.1523056773603], [3614.365438444622, 2147.352305676975], [3402.4654384481323, 2147.352305676975], [3271.16543844852, 2134.7023056765834]], "source": 1320103730, "length": 93.02422975367277}, {"destination": 1320104081, "path": [[3692.165438444306, 2067.102305677082], [3614.365438444622, 2046.4523056773487]], "source": 1320103730, "length": 15.492229235919195}, {"destination": 1320103981, "path": [[3692.165438444306, 2067.102305677082], [3718.9654384448545, 1993.7023056773028], [3729.715438446135, 1950.1023056776035], [3752.6154384437405, 1931.302305678173]], "source": 1320103730, "length": 33.04741234787361}, {"destination": 602392061, "path": [[8970.765438448325, -7326.797694322096], [9034.46543844666, -7192.897694322298], [9152.615438445366, -6977.747694323355]], "source": 84466485, "length": 85.0059400760274}, {"destination": 91207598, "path": [[8970.765438448325, -7326.797694322096], [9359.96543844908, -7563.79769432236]], "source": 84466485, "length": 90.8538037024575}, {"destination": 495769239, "path": [[8970.765438448325, -7326.797694322096], [8546.115438448964, -7071.397694321746]], "source": 84466485, "length": 98.72006876359718}, {"destination": 486183676, "path": [[-8745.684561553446, 8126.052305676978], [-8792.784561556744, 8010.002305677944]], "source": 2716408631, "length": 27.31914488502302}, {"destination": 2716408639, "path": [[-8745.684561553446, 8126.052305676978], [-8749.284561552884, 8052.952305677152], [-8741.234561554735, 8008.252305677032], [-8705.93456155433, 7989.652305678163], [-8669.384561549976, 7977.70230567707], [-7762.934561554857, 7797.702305676779], [-7554.534561556637, 7774.402305678052]], "source": 2716408631, "length": 258.63063751731613}, {"destination": 2716408639, "path": [[-8745.684561553446, 8126.052305676978], [-8712.634561554467, 8071.102305677869], [-8676.43456155065, 8048.152305677902], [-7712.58456155266, 7855.752305676589], [-7554.534561556637, 7774.402305678052]], "source": 2716408631, "length": 245.6536408529591}, {"destination": 2354289898, "path": [[-580.7845615564133, -7231.647694322163], [-561.1845615547395, -7119.2476943231495]], "source": 1883880248, "length": 25.27280343621589}, {"destination": 1883856735, "path": [[-580.7845615564133, -7231.647694322163], [-482.284561556412, -7238.497694322276]], "source": 1883880248, "length": 18.790981382922638}, {"destination": 1887596162, "path": [[-580.7845615564133, -7231.647694322163], [-582.084561550289, -7266.4976943226375]], "source": 1883880248, "length": 7.754545528292847}, {"destination": 103781535, "path": [[-580.7845615564133, -7231.647694322163], [-615.8845615544806, -7227.397694322235], [-793.2345615557779, -7193.8476943227415], [-1058.334561555796, -7143.747694323466], [-1314.1345615537148, -7093.197694322484], [-1444.0845615553144, -7059.597694322406], [-1538.1345615566033, -7031.247694323284], [-1616.3845615508876, -6999.997694322246]], "source": 1883880248, "length": 204.02047614452772}, {"destination": 602360641, "path": [[7844.165438449125, -7959.3976943233], [8259.665438444586, -8237.747694321839]], "source": 84466490, "length": 100.36592557387223}, {"destination": 602360612, "path": [[7844.165438449125, -7959.3976943233], [7787.865438444896, -8022.24769432236]], "source": 84466490, "length": 17.605596066015657}, {"destination": 1315785438, "path": [[-1428.2345615512781, -4372.1476943225925], [-1302.784561552528, -4402.5476943225785], [-1272.384561552542, -4406.297694321992], [-1249.5345615519682, -4408.347694322856]], "source": 1315785183, "length": 35.00330162355904}, {"destination": 423833610, "path": [[-9066.584561551848, 7872.002305678194], [-9093.534561550598, 7924.252305677726], [-9118.084561556827, 7961.25230567668], [-9177.084561549975, 7999.102305676686], [-9265.834561553276, 8021.602305676723]], "source": 2716408636, "length": 53.79588093289706}, {"destination": 486193667, "path": [[-9066.584561551848, 7872.002305678194], [-9035.584561551957, 7953.752305677853], [-9008.834561555544, 8029.702305677233]], "source": 2716408636, "length": 36.752834509054544}, {"destination": 2716405305, "path": [[-8686.234561551486, 7945.202305677412], [-8741.234561554735, 7953.252305677339], [-8774.734561555419, 7942.902305677179], [-8806.934561555125, 7922.252305677446], [-8893.784561550434, 7787.402305677205]], "source": 2716408637, "length": 59.281103971273154}, {"destination": 486183676, "path": [[-8686.234561551486, 7945.202305677412], [-8746.184561552183, 7970.152305677658], [-8779.68456155287, 7995.402305677857], [-8792.784561556744, 8010.002305677944]], "source": 2716408637, "length": 25.267023463081145}, {"destination": 848697997, "path": [[6976.565438449711, -7362.0976943225005], [6930.915438445595, -7316.197694322568], [6877.365438448634, -7275.097694321886], [6831.0154384434445, -7234.447694322909], [6793.46543844872, -7198.5476943225985], [6757.265438444903, -7158.147694322992], [6708.265438447825, -7087.997694322113], [6675.965438446951, -7032.847694322441], [6651.465438444859, -6984.397694322908], [6622.515438444054, -6920.247694322868], [6601.3654384491365, -6856.047694322243], [6576.815438450012, -6754.5976943232945], [6557.465438447707, -6659.797694322123], [6515.465438447165, -6469.147694321719], [6463.865438448124, -6218.047694321882], [6418.815438443915, -5914.647694321929], [6411.415438449808, -5859.947694322187], [6407.065438445159, -5807.947694322024], [6404.215438443827, -5748.697694322402], [6404.0654384456275, -5695.747694321795], [6408.115438446771, -5643.747694323409], [6414.165438449971, -5591.397694322708], [6426.915438446202, -5528.697694321849], [6443.065438446638, -5436.997694323153], [6455.865438447006, -5364.147694322696], [6468.6154384432375, -5295.9476943232885], [6471.715438443936, -5227.147694322199], [6464.415438443893, -5144.997694323194]], "source": 84466494, "length": 520.027614991019}, {"destination": 848698007, "path": [[6976.565438449711, -7362.0976943225005], [6759.615438447498, -7250.047694322248]], "source": 84466494, "length": 48.193549216375125}, {"destination": 495770568, "path": [[8837.515438443688, -6094.047694322313], [8860.115438444893, -6043.997694321845], [8888.51543844993, -5973.997694322719], [8924.915438448978, -5876.347694321993], [8968.265438447532, -5728.947694322528], [8979.41543844638, -5683.09769432318]], "source": 495770431, "length": 95.4170574520705}, {"destination": 4345393150, "path": [[8837.515438443688, -6094.047694322313], [8908.415438448003, -6120.9976943228385]], "source": 495770431, "length": 14.753833611546145}, {"destination": 1769171993, "path": [[6059.965438446114, -8135.7476943217935], [6128.8654384483725, -8065.6976943220825]], "source": 84466496, "length": 20.35451972656595}, {"destination": 602360589, "path": [[6059.965438446114, -8135.7476943217935], [6066.215438444544, -8194.047694322748]], "source": 84466496, "length": 13.019313764884577}, {"destination": 848698077, "path": [[8398.06543844901, -3319.1476943219554], [8877.665438447479, -3442.997694323324], [9162.415438446204, -3525.54769432345], [9442.265438444509, -3653.697694321778]], "source": 848698181, "length": 212.80920046012704}, {"destination": 848698213, "path": [[8398.06543844901, -3319.1476943219554], [8339.915438448032, -3443.197694322109]], "source": 848698181, "length": 29.721310648488952}, {"destination": 848698181, "path": [[8311.415438448932, -3300.547694323086], [8398.06543844901, -3319.1476943219554]], "source": 848698182, "length": 16.988403121875415}, {"destination": 1404036952, "path": [[-746.8345615535554, 5129.252305676957], [-660.8845615545533, 5147.602305678234], [-559.084561551515, 5161.352305677269], [-491.28456155500544, 5158.852305678252]], "source": 1404037125, "length": 49.35667827216929}, {"destination": 1404037149, "path": [[-746.8345615535554, 5129.252305676957], [-787.0845615514099, 5163.652305677502], [-759.3845615545547, 5220.752305676868]], "source": 1404037125, "length": 24.569843730188815}, {"destination": 1404037126, "path": [[-746.8345615535554, 5129.252305676957], [-918.4845615521908, 5060.402305677058], [-1047.1845615569464, 5007.602305678205]], "source": 1404037125, "length": 63.20726761925687}, {"destination": 1767289265, "path": [[4984.26543844488, -7602.247694322273], [5003.015438447278, -7645.74769432258], [4998.765438443797, -7763.197694321988], [4981.5654384488535, -7836.54769432296], [4904.315438444939, -7997.997694323189], [4873.315438445047, -8057.247694322811], [4866.965438445448, -8090.697694322913], [4840.165438444899, -8180.097694323152], [4699.3154384438185, -8231.697694322193]], "source": 481508170, "length": 163.5038216529917}, {"destination": 602360594, "path": [[4984.26543844488, -7602.247694322273], [4973.0154384448615, -7576.047694323407], [4871.765438444698, -7532.047694322586], [4835.865438444387, -7483.747694323029], [4712.0654384471545, -7364.647694322101], [4807.815438446994, -7224.347694322119], [4849.915438448705, -7180.547694321859], [4919.815438448439, -7106.697694322151]], "source": 481508170, "length": 145.8265378424657}, {"destination": 481506490, "path": [[4984.26543844488, -7602.247694322273], [4926.415438447407, -7645.047694323282], [4883.015438444716, -7677.4476943217705], [4863.165438443673, -7679.497694322635], [4846.615438445668, -7676.597694322496], [4831.115438449274, -7668.1976943220325], [4821.015438444931, -7656.597694323253], [4816.16543844865, -7642.797694321856], [4817.665438444863, -7626.697694322004], [4825.015438449043, -7613.697694322852], [4837.065438444199, -7603.647694322646], [4848.8154384429545, -7598.647694322835], [4865.515438446266, -7596.447694321995], [4882.015438447241, -7599.247694322741], [4897.915438448308, -7607.897694322574], [4907.915438444377, -7619.4976943231295], [4912.915438445963, -7635.6476943217895], [4910.915438443908, -7649.947694321923], [4903.315438447464, -7662.84769432346], [4896.765438445527, -7671.347694323316], [4870.065438446147, -7682.247694322797], [4844.115438444874, -7684.247694323077], [4721.165438446917, -7693.197694322862]], "source": 481508170, "length": 114.5546079191449}, {"destination": 2716405305, "path": [[-7455.234561554391, 7654.052305676729], [-7607.33456155549, 7654.402305677266], [-8467.63456155486, 7817.902305676583], [-8712.634561554467, 7870.352305676675], [-8758.634561552015, 7874.102305677866], [-8795.784561556275, 7861.202305678105], [-8854.584561554191, 7815.802305676911], [-8893.784561550434, 7787.402305677205]], "source": 2716408652, "length": 285.8427667884887}, {"destination": 2716408637, "path": [[-7455.234561554391, 7654.052305676729], [-7555.884561554649, 7701.652305676987], [-8686.234561551486, 7945.202305677412]], "source": 2716408652, "length": 243.58876074676584}, {"destination": 1315785354, "path": [[-2359.834561552532, -1233.4476943234308], [-2348.334561553145, -1197.6476943225123], [-2340.034561555626, -1157.6976943228346], [-2334.834561551702, -1132.447694322636], [-2310.8845615524842, -1014.3976943233213], [-2294.2845615503416, -939.2976943232156], [-2283.784561555535, -886.3976943231933], [-2262.1845615518055, -782.3976943228672]], "source": 1315785186, "length": 102.04671576559954}, {"destination": 481394996, "path": [[-2359.834561552532, -1233.4476943234308], [-2369.4845615551685, -1263.5476943234635], [-2389.334561556211, -1325.1976943227105], [-2455.634561556508, -1531.5976943224287]], "source": 1315785186, "length": 68.76339993969151}, {"destination": 1315785414, "path": [[-2359.834561552532, -1233.4476943234308], [-2611.034561553538, -1167.0476943219655], [-2771.534561553324, -1122.2476943224535], [-3039.5845615558414, -1063.3476943233688]], "source": 1315785186, "length": 134.7370660360462}, {"destination": 1316237128, "path": [[-1020.2345615510922, 2530.2523056769387], [-1092.5345615504511, 2382.6523056769133]], "source": 1316237112, "length": 35.58837997029657}, {"destination": 1316237001, "path": [[-1020.2345615510922, 2530.2523056769387], [-1101.53456155615, 2573.202305677924]], "source": 1316237112, "length": 18.17437127723578}, {"destination": 1316236642, "path": [[-1020.2345615510922, 2530.2523056769387], [-874.7345615560675, 2453.3523056771146], [-827.434561550433, 2435.4023056769593]], "source": 1316237112, "length": 42.371044865421}, {"destination": 93438340, "path": [[11433.115438443054, -6225.497694321902], [11314.615438443809, -6610.747694322683], [11264.715438443318, -6707.64769432175], [11093.365438448189, -7017.347694322496]], "source": 554691043, "length": 188.32691946560965}, {"destination": 602361950, "path": [[11433.115438443054, -6225.497694321902], [11199.365438443465, -6114.147694322724], [11172.515438445884, -6077.447694321947], [11183.265438447164, -6008.6476943226335], [11428.66543844434, -5354.4476943230275]], "source": 554691043, "length": 228.73074396752486}, {"destination": 848698182, "path": [[8271.665438449816, -3423.3476943228425], [8311.415438448932, -3300.547694323086]], "source": 848698196, "length": 28.336437434099523}, {"destination": 495771183, "path": [[8271.665438449816, -3423.3476943228425], [8139.965438445529, -3390.2476943232787], [6961.465438443782, -3132.747694323257]], "source": 848698196, "length": 257.40569495126647}, {"destination": 482733400, "path": [[7491.2654384462485, 5808.70230567676], [7327.015438448825, 6032.502305677312], [7295.815438446596, 6074.45230567727], [7278.915438448053, 6088.45230567745], [6849.465438449442, 6445.152305676771], [6382.665438444235, 6768.102305677814]], "source": 654392158, "length": 302.35212718625627}, {"destination": 618170115, "path": [[7491.2654384462485, 5808.70230567676], [7251.665438445798, 6023.752305678087], [6208.215438448406, 6850.5523056767715], [6048.915438448432, 6963.152305678122], [5553.515438442957, 7208.6023056776585], [5220.065438443555, 7363.552305676535], [5086.465438445486, 7430.552305677907], [5000.81543844999, 7494.502305677386], [4942.265438444338, 7548.652305677805], [4883.865438443991, 7626.602305677466], [4852.065438448961, 7695.15230567741], [4829.915438449461, 7781.952305677464], [4821.215438447269, 7862.102305677965], [4824.015438444462, 7944.852305676875], [4844.16543844901, 8054.202305677549], [4914.665438448651, 8284.002305677162], [4954.665438447137, 8346.50230567746]], "source": 654392158, "length": 810.8313826063903}, {"destination": 476559301, "path": [[7566.415438446938, 5895.302305678029], [7672.0654384487825, 5749.502305677723], [7751.015438444142, 5631.502305677216], [7812.515438445189, 5474.1023056781305], [7908.165438443859, 5216.002305678202]], "source": 654392159, "length": 165.49967658050915}, {"destination": 599409562, "path": [[-2129.884561554718, -6585.847694323022], [-2216.3345615524577, -6792.547694322692]], "source": 850262881, "length": 48.81878635449064}, {"destination": 479279823, "path": [[-2129.884561554718, -6585.847694323022], [-1799.3345615536782, -6699.697694322993]], "source": 850262881, "length": 67.76042650656385}, {"destination": 63298510, "path": [[7856.06543844608, -5440.947694323128], [7858.1154384451675, -5520.1476943231855], [7861.0654384476675, -5562.14769432195], [7870.5154384479665, -5604.0976943219075]], "source": 103938914, "length": 36.47435349766319}, {"destination": 677800163, "path": [[4486.215438447516, -655.0976943220377], [4467.315438446917, -676.1476943228928], [4370.765438444834, -785.0976943224452], [4263.465438448577, -900.8976943221114], [4107.565438445704, -1063.0476943234157], [3951.665438449936, -1212.0476943220383], [3801.7654384461252, -1336.9476943232428], [3704.265438443599, -1419.5476943221763], [3494.9154384449344, -1589.0976943229161], [3234.2654384436287, -1802.7976943226777], [3132.4154384435587, -1889.4476943227546], [2842.7654384444168, -2140.647694321984], [2471.2654384444477, -2465.0976943227934], [2201.8654384439174, -2684.297694322879], [2102.8654384451784, -2774.647694321786], [1807.5154384433745, -3062.6976943217696], [1610.8654384439092, -3255.1476943218913], [1343.615438443635, -3525.097694321744], [1110.4654384439527, -3759.2976943230383], [912.8154384470122, -3934.6976943228638], [804.0654384444679, -4046.0976943226256], [686.5654384498043, -4211.847694323367], [605.2654384447465, -4341.247694322093], [500.7654384456828, -4489.797694322561], [460.56543844485986, -4563.547694322878], [359.21543844352755, -4757.147694322228], [190.0154384486541, -5038.847694322612]], "source": 1888382779, "length": 1280.2485169865963}, {"destination": 677734741, "path": [[4486.215438447516, -655.0976943220377], [4472.715438446074, -707.0976943222007], [4461.965438444793, -740.3476943217413], [4444.715438445712, -790.047694323448]], "source": 1888382779, "length": 31.047280474253476}, {"destination": 602364807, "path": [[2705.3654384445736, -6998.947694322411], [2672.715438443163, -7065.947694322005]], "source": 602364772, "length": 16.141536254114882}, {"destination": 1782376803, "path": [[8339.915438448032, -3443.197694322109], [8193.815438445996, -3842.8476943224155]], "source": 848698213, "length": 93.11912577328921}, {"destination": 848698196, "path": [[8339.915438448032, -3443.197694322109], [8271.665438449816, -3423.3476943228425]], "source": 848698213, "length": 13.708229320191027}, {"destination": 874283609, "path": [[-5061.9345615530165, -8024.847694322545], [-5143.034561555737, -7966.897694322128], [-5285.784561550599, -7914.847694323157], [-5437.134561553592, -7893.097694323003], [-5556.084561554542, -7899.247694322043], [-5658.134561556949, -7922.997694322476], [-5718.684561550446, -7945.847694323049], [-5787.234561552168, -7972.347694321868], [-5891.634561550063, -8021.447694321892], [-5933.934561554111, -8061.597694322131]], "source": 479915836, "length": 183.11423973315638}, {"destination": 267198765, "path": [[-5061.9345615530165, -8024.847694322545], [-4991.634561555713, -7759.4476943225745]], "source": 479915836, "length": 60.51700054733153}, {"destination": 3113807403, "path": [[-6551.084561550624, 1253.952305678041], [-6530.4345615544435, 1247.4023056778806]], "source": 3055920274, "length": 4.189009131658576}, {"destination": 479322189, "path": [[-6551.084561550624, 1253.952305678041], [-6432.43456155318, 1512.1023056767767]], "source": 3055920274, "length": 61.68524213831405}, {"destination": 483116582, "path": [[-6551.084561550624, 1253.952305678041], [-6797.18456155598, 1331.6523056765561], [-6973.134561555127, 1357.3523056766844], [-7022.334561554544, 1362.2523056771029], [-7110.384561556771, 1361.6023056766126]], "source": 3055920274, "length": 110.00279462864016}, {"destination": 1315678842, "path": [[-6564.084561553329, -3580.597694321952], [-6288.184561554999, -3685.2476943227684]], "source": 1315678697, "length": 57.394573601297296}, {"destination": 477641710, "path": [[-6564.084561553329, -3580.597694321952], [-6512.984561553026, -3489.447694322578]], "source": 1315678697, "length": 22.479459442452246}, {"destination": 1315785581, "path": [[359.31543844469616, -3336.347694322228], [433.8154384484483, -3355.5476943227804]], "source": 1315785260, "length": 14.796228457881503}, {"destination": 1315785631, "path": [[359.31543844469616, -3336.347694322228], [370.51543844768275, -3305.9976943228266]], "source": 1315785260, "length": 7.0769891491024515}, {"destination": 1315785219, "path": [[-4249.734561554419, 757.3023056774986], [-4451.284561554303, 803.9023056767292]], "source": 1315785195, "length": 39.70594292598569}, {"destination": 848733096, "path": [[2745.0154384496273, -7104.8476943218475], [2814.7654384440557, -7127.797694321814], [2939.2154384453306, -7101.747694322924]], "source": 602364804, "length": 38.5727153299528}, {"destination": 848733097, "path": [[2745.0154384496273, -7104.8476943218475], [2715.4654384489163, -7152.997694323204]], "source": 602364804, "length": 12.093000397432116}, {"destination": 602364807, "path": [[2745.0154384496273, -7104.8476943218475], [2672.715438443163, -7065.947694322005]], "source": 602364804, "length": 16.24283930360817}, {"destination": 1316623490, "path": [[1857.5654384491713, -767.8976943221727], [2037.2654384459565, -777.0976943231034], [2042.615438448081, -804.5976943229505], [2168.8654384490746, -817.0976943233654]], "source": 1316623510, "length": 64.60253066657155}, {"destination": 602364804, "path": [[2672.715438443163, -7065.947694322005], [2745.0154384496273, -7104.8476943218475]], "source": 602364807, "length": 16.24283930360817}, {"destination": 848733115, "path": [[2672.715438443163, -7065.947694322005], [2643.1154384454203, -7003.947694322222], [2600.165438444435, -6953.497694322408], [2562.6154384497113, -6916.797694323406], [2562.6154384497113, -6880.097694322629], [2584.115438445167, -6834.247694323281], [2637.715438446264, -6783.797694323468], [2723.5654384440977, -6756.297694321845], [2806.6654384488743, -6763.09769432315], [2895.2154384498385, -6779.197694323003], [2948.8654384479673, -6802.147694322968], [3013.2654384473767, -6880.097694322629], [3042.6654384498875, -6953.897694321753]], "source": 602364807, "length": 174.40643210352937}, {"destination": 602364772, "path": [[2672.715438443163, -7065.947694322005], [2705.3654384445736, -6998.947694322411]], "source": 602364807, "length": 16.141536254114882}, {"destination": 4346903220, "path": [[10052.515438445653, -6932.397694322745], [9967.865438447632, -6948.647694322573], [9895.215438447736, -6982.847694322558]], "source": 1776093676, "length": 32.26538120172134}, {"destination": 1776093638, "path": [[10052.515438445653, -6932.397694322745], [10148.415438443692, -6741.697694321758]], "source": 1776093676, "length": 46.16381202272112}, {"destination": 1782376799, "path": [[7772.415438445534, -3932.847694322561], [7798.715438447345, -3911.047694321823], [7821.515438443783, -3885.8476943222086], [7834.965438448194, -3859.447694322782], [7838.965438445201, -3842.2476943225092], [7872.415438448854, -3870.997694322753], [7926.665438446889, -3881.0476943229587], [7979.715438445111, -3859.547694322174], [8017.265438446941, -3835.4476943229797], [8065.515438445914, -3822.8476943231726], [8097.715438445619, -3822.8476943231726], [8116.515438445049, -3826.247694322049], [8130.565438449366, -3828.9976943222114]], "source": 1489390329, "length": 86.132256840223}, {"destination": 3733749299, "path": [[8077.26543844467, -7026.747694322211], [8116.415438443881, -7025.3476943218375], [8153.065438449403, -7029.997694322887], [8240.16543844408, -7057.89769432208], [8292.015438449596, -7056.297694322921]], "source": 495646343, "length": 42.047386145145765}, {"destination": 495646219, "path": [[8077.26543844467, -7026.747694322211], [8084.415438446513, -7001.7976943219655], [8088.715438447025, -6976.4976943229585], [8080.51543844357, -6956.047694322009], [8059.115438449282, -6909.147694322826]], "source": 495646343, "length": 27.400843960782154}, {"destination": 495649612, "path": [[8077.26543844467, -7026.747694322211], [8020.1154384482725, -7143.94769432225]], "source": 495646343, "length": 28.23878324445065}, {"destination": 2716408741, "path": [[-8940.334561550855, 8210.202305678038], [-8910.134561553206, 8289.852305678025]], "source": 2716408719, "length": 18.621385958188018}, {"destination": 1317671370, "path": [[1940.715438443874, -345.8476943229982], [1971.6654384467347, -424.1976943220038]], "source": 1317671414, "length": 18.39127454079085}, {"destination": 1317671221, "path": [[1940.715438443874, -345.8476943229982], [1905.8654384451756, -359.5976943220336], [1883.0654384487389, -267.94769432214594]], "source": 1317671414, "length": 28.13781413885638}, {"destination": 1317670927, "path": [[1940.715438443874, -345.8476943229982], [1987.6654384489711, -333.6476943225364]], "source": 1317671414, "length": 9.331723194478522}, {"destination": 1315678758, "path": [[-2175.634561552897, -7005.147694322033], [-2016.1345615505866, -7066.44769432252]], "source": 1315678702, "length": 33.250991088934306}, {"destination": 1769172096, "path": [[3746.765438449984, -6288.44769432213], [3440.2154384451933, -6148.54769432327]], "source": 1776086120, "length": 66.07287826573896}, {"destination": 1769171939, "path": [[3746.765438449984, -6288.44769432213], [4006.5154384478774, -6406.997694321959], [4445.115438443281, -6601.997694323458]], "source": 1776086120, "length": 149.98540249063353}, {"destination": 1776086140, "path": [[3746.765438449984, -6288.44769432213], [3821.0154384472617, -6258.397694322682], [4514.415438443109, -6561.297694322121]], "source": 1776086120, "length": 163.6782316481055}, {"destination": 1315785394, "path": [[-4171.234561553661, -1487.0976943228698], [-4362.384561552801, -1384.8976943222624]], "source": 1315785261, "length": 42.87078512317476}, {"destination": 1315785427, "path": [[-4171.234561553661, -1487.0976943228698], [-4117.834561554901, -1425.597694321823]], "source": 1315785261, "length": 17.034760622840235}, {"destination": 63302402, "path": [[9287.315438449185, -4223.697694323292], [9557.265438445484, -3784.7476943220217]], "source": 848698274, "length": 110.29193026002658}, {"destination": 2049820744, "path": [[3561.8654384492743, -7590.147694322979], [3518.66543844892, -7567.397694321798]], "source": 602364835, "length": 9.64704693973048}, {"destination": 2049820777, "path": [[3561.8654384492743, -7590.147694322979], [3622.315438448709, -7548.447694322391]], "source": 602364835, "length": 14.768487315153141}, {"destination": 623417146, "path": [[-8910.134561553206, 8289.852305678025], [-8849.584561552603, 8449.45230567795], [-8758.384561552646, 8698.002305678187]], "source": 2716408741, "length": 95.24847696570504}, {"destination": 267198281, "path": [[-5209.4845615542345, -5466.4976943232805], [-5332.234561556959, -5667.497694322065]], "source": 1887591336, "length": 50.427428164634954}, {"destination": 1887591342, "path": [[-5209.4845615542345, -5466.4976943232805], [-5300.284561556623, -5457.997694323424], [-5323.08456155306, -5448.847694323078]], "source": 1887591336, "length": 22.159016787345557}, {"destination": 476559394, "path": [[-527.4345615546849, 4529.3023056771635], [-474.58456155169415, 4652.152305677504]], "source": 1316471964, "length": 29.110832221934775}, {"destination": 481498188, "path": [[-527.4345615546849, 4529.3023056771635], [-554.4845615546024, 4475.152305676744], [-657.4845615503477, 4328.3523056771855], [-1042.9345615534658, 3743.502305677993]], "source": 1316471964, "length": 200.46929482685889}, {"destination": 1316471743, "path": [[-527.4345615546849, 4529.3023056771635], [-690.5845615534645, 4590.202305676527]], "source": 1316471964, "length": 33.856429573607265}, {"destination": 1887591336, "path": [[-5323.08456155306, -5448.847694323078], [-5300.284561556623, -5457.997694323424], [-5209.4845615542345, -5466.4976943232805]], "source": 1887591342, "length": 22.159016787345557}, {"destination": 1887591353, "path": [[-5323.08456155306, -5448.847694323078], [-5429.2345615536415, -5437.497694321891]], "source": 1887591342, "length": 20.341674822783794}, {"destination": 1887591399, "path": [[-5323.08456155306, -5448.847694323078], [-5185.884561555554, -5385.797694323457], [-5150.6345615521805, -5370.097694322951]], "source": 1887591342, "length": 37.175986627552064}, {"destination": 1887591342, "path": [[-5429.2345615536415, -5437.497694321891], [-5323.08456155306, -5448.847694323078]], "source": 1887591353, "length": 20.341674822783794}, {"destination": 1883880248, "path": [[-1616.3845615508876, -6999.997694322246], [-1538.1345615566033, -7031.247694323284], [-1444.0845615553144, -7059.597694322406], [-1314.1345615537148, -7093.197694322484], [-1058.334561555796, -7143.747694323466], [-793.2345615557779, -7193.8476943227415], [-615.8845615544806, -7227.397694322235], [-580.7845615564133, -7231.647694322163]], "source": 103781535, "length": 204.0204761445277}, {"destination": 4824459322, "path": [[-1616.3845615508876, -6999.997694322246], [-1626.3345615570302, -7021.247694321886]], "source": 103781535, "length": 5.091230646312458}, {"destination": 479279693, "path": [[-1616.3845615508876, -6999.997694322246], [-1825.034561555583, -6930.697694322418], [-1874.2345615549993, -6913.347694322169]], "source": 103781535, "length": 52.68110585629458}, {"destination": 63298507, "path": [[7265.16543844724, -5978.297694323232], [7572.5654384442005, -5875.197694322765], [8182.865438449482, -5661.64769432298]], "source": 476912576, "length": 188.17675663943862}, {"destination": 495770431, "path": [[7265.16543844724, -5978.297694323232], [7422.915438446864, -5956.897694321839], [7547.915438443908, -5946.197694322919], [7688.315438443283, -5938.747694322899], [7894.365438446016, -5941.847694321822], [8010.865438443205, -5945.047694321915], [8131.165438449272, -5951.497694322683], [8273.515438446566, -5965.147694322326], [8425.415438445327, -5987.047694322456], [8592.065438449481, -6024.947694323047], [8837.515438443688, -6094.047694322313]], "source": 476912576, "length": 303.72992572968474}, {"destination": 1887596136, "path": [[-778.7345615568597, -4687.19769432191], [-396.18456155210424, -4816.5976943224105], [55.86543844771086, -4955.097694322674]], "source": 95386562, "length": 169.5379864976175}, {"destination": 476794281, "path": [[-778.7345615568597, -4687.19769432191], [-551.4845615550712, -4112.147694321777], [-525.9845615555037, -4057.897694321966], [-490.084561555193, -4005.0476943225276]], "source": 95386562, "length": 161.58326876694838}, {"destination": 1887575214, "path": [[-778.7345615568597, -4687.19769432191], [-842.234561552857, -4882.09769432224], [-885.3345615520425, -5024.447694323087]], "source": 95386562, "length": 77.695099637423}, {"destination": 1890761713, "path": [[-9127.384561551822, -1833.2476943232477], [-9095.234561556254, -1799.947694323123], [-9073.784561550725, -1785.047694323083], [-9053.634561553281, -1774.747694321732], [-9015.88456155622, -1762.7476943218312], [-8981.034561550416, -1754.7476943224892], [-8947.684561555036, -1754.097694321999], [-8928.934561552636, -1754.647694323097]], "source": 1890761668, "length": 43.75232867427641}, {"destination": 1890812042, "path": [[-9127.384561551822, -1833.2476943232477], [-9079.734561552756, -1898.1476943231712]], "source": 1890761668, "length": 17.04137282862085}, {"destination": 1890811994, "path": [[-9127.384561551822, -1833.2476943232477], [-9130.234561553152, -1830.997694321823], [-9134.484561556634, -1829.6976943226184]], "source": 1890761668, "length": 1.6011463283149625}, {"destination": 4273214059, "path": [[713.6154384497218, -1585.297694322918], [723.2154384482214, -1518.647694322084]], "source": 4273219689, "length": 14.934161227793753}, {"destination": 4273214085, "path": [[713.6154384497218, -1585.297694322918], [719.165438447078, -1586.097694323385], [812.9154384448611, -1599.5476943224674], [823.0154384492039, -1604.8976943228154], [830.3154384492473, -1610.8476943230698]], "source": 4273219689, "length": 23.3274212447064}, {"destination": 4273214086, "path": [[713.6154384497218, -1585.297694322918], [708.6654384451663, -1623.6976943222458], [714.9654384477344, -1633.797694323036], [726.4654384471214, -1637.9976943223796]], "source": 4273219689, "length": 13.516215907628528}, {"destination": 4273214063, "path": [[713.6154384497218, -1585.297694322918], [703.6154384465476, -1583.7476943225681]], "source": 4273219689, "length": 1.9316502822992696}, {"destination": 476913948, "path": [[8979.41543844638, -5683.09769432318], [9031.465438447129, -5393.397694323454], [9054.065438448333, -5275.797694322293]], "source": 495770568, "length": 91.68603772079362}, {"destination": 1784595711, "path": [[8979.41543844638, -5683.09769432318], [9004.465438444242, -5591.747694323246], [9015.41543844786, -5558.497694321929], [9024.065438445916, -5534.247694322758], [9035.465438444135, -5508.697694322606], [9057.415438448403, -5465.297694323468], [9070.51543844517, -5444.497694321982], [9086.865438447945, -5425.097694322645], [9097.415438446887, -5413.797694322042], [9123.665438444561, -5387.897694323129], [9142.915438445698, -5373.997694322341], [9171.215438449564, -5355.147694322326], [9195.065438447615, -5341.64769432266], [9241.4154384457, -5318.9476943220625]], "source": 495770568, "length": 99.39501340421863}, {"destination": 1315678593, "path": [[-6080.634561556053, -3464.097694322987], [-6130.984561551145, -3540.647694322274]], "source": 1315678711, "length": 19.531335722142035}, {"destination": 1315678691, "path": [[-6080.634561556053, -3464.097694322987], [-5938.8345615545295, -3519.647694322003]], "source": 1315678711, "length": 29.659384859913125}, {"destination": 1315678764, "path": [[-6080.634561556053, -3464.097694322987], [-6426.334561552949, -3328.6476943228395]], "source": 1315678711, "length": 72.31045590026709}, {"destination": 845390842, "path": [[-1099.1845615535567, -3113.547694322705], [-1449.7345615538393, -2995.197694323437], [-1737.6845615544312, -2894.5476943231797]], "source": 479280077, "length": 130.82317301086772}, {"destination": 476792266, "path": [[-1099.1845615535567, -3113.547694322705], [-1183.5345615551773, -3377.347694321742], [-1223.6845615518632, -3474.947694321884], [-1236.4345615551997, -3503.247694322198]], "source": 479280077, "length": 90.57238879373502}, {"destination": 1315785597, "path": [[-1099.1845615535567, -3113.547694322705], [-815.2345615499712, -3189.647694322062]], "source": 479280077, "length": 56.58573848271066}, {"destination": 1774850241, "path": [[7870.5154384479665, -5604.0976943219075], [7928.415438449576, -5583.947694322688], [7978.565438449436, -5569.497694322578]], "source": 63298510, "length": 21.95019408303626}, {"destination": 1993253283, "path": [[7870.5154384479665, -5604.0976943219075], [7792.715438448284, -5625.447694322716]], "source": 63298510, "length": 15.536960065690343}, {"destination": 1765485421, "path": [[7870.5154384479665, -5604.0976943219075], [7917.565438447127, -5663.947694323213], [7996.815438445992, -5688.697694322897], [8002.615438449822, -5687.847694321846]], "source": 63298510, "length": 33.195829912278015}, {"destination": 1320104100, "path": [[2267.365438449076, 2523.7023056767785], [2259.8654384466954, 2548.7523056781924], [2133.9154384492076, 2569.402305677926]], "source": 1320103757, "length": 30.140961941471726}, {"destination": 1316471813, "path": [[2267.365438449076, 2523.7023056767785], [2128.415438448883, 2507.552305678118]], "source": 1320103757, "length": 26.66874681656434}, {"destination": 1316471863, "path": [[2267.365438449076, 2523.7023056767785], [2328.0654384478794, 2530.7523056774526]], "source": 1320103757, "length": 11.649625859076718}, {"destination": 850261339, "path": [[-4798.934561556223, -7016.147694322683], [-4684.13456155048, -7049.697694322177]], "source": 1887877308, "length": 23.068333271938325}, {"destination": 477640830, "path": [[-4798.934561556223, -7016.147694322683], [-4883.984561551813, -7141.897694323163], [-5180.13456155586, -7053.6976943227355], [-5251.18456155127, -7034.6476943221605], [-5325.934561554391, -7017.447694321888], [-5463.984561551171, -6985.447694322744], [-5649.634561549988, -6937.847694322485]], "source": 1887877308, "length": 184.8611936139305}, {"destination": 1315785360, "path": [[-897.6345615536729, -2524.7476943217607], [-981.2845615542187, -2760.8976943227503]], "source": 479280088, "length": 54.873665220425096}, {"destination": 845390852, "path": [[-897.6345615536729, -2524.7476943217607], [-1116.3845615556056, -2487.0476943217313], [-1336.0845615508765, -2436.1476943219886], [-1595.734561554707, -2371.847694321971]], "source": 479280088, "length": 137.1237146980019}, {"destination": 479302873, "path": [[-7592.934561550635, 956.1523056778043], [-7612.684561550509, 915.1523056782906], [-7805.534561555305, 462.452305677985]], "source": 483122140, "length": 117.00903767844426}, {"destination": 483115423, "path": [[-7592.934561550635, 956.1523056778043], [-7573.134561553729, 998.7023056776678], [-7521.884561555225, 1109.0023056770092], [-7444.384561551942, 1307.5023056767777], [-7427.734561552768, 1350.2023056766177]], "source": 483122140, "length": 93.12867447120874}, {"destination": 1315785476, "path": [[-4531.384561552442, 1044.0023056776936], [-4405.734561551355, 1018.1523056775887]], "source": 1315785210, "length": 24.57746142008834}, {"destination": 1316472158, "path": [[224.06543844510907, 2457.0523056777206], [393.41543844528815, 2405.2023056775342]], "source": 1316471789, "length": 34.20917644256905}, {"destination": 476675195, "path": [[-7183.134561550731, -3400.9476943221985], [-7225.934561553515, -3454.647694322688]], "source": 476675164, "length": 14.452029275206856}, {"destination": 1316471891, "path": [[362.86543844710195, 2337.2523056774953], [508.365438449232, 2280.452305678082], [491.1654384471831, 2206.9523056771345]], "source": 1316471974, "length": 47.087783063555634}, {"destination": 1316471805, "path": [[362.86543844710195, 2337.2523056774953], [351.41543844474654, 2311.752305677928]], "source": 1316471974, "length": 6.074384105647914}, {"destination": 1316472158, "path": [[362.86543844710195, 2337.2523056774953], [393.41543844528815, 2405.2023056775342]], "source": 1316471974, "length": 16.189483724944296}, {"destination": 620134808, "path": [[8795.365438444947, -6179.547694323162], [8724.915438449443, -6155.447694322192], [8619.065438445261, -6117.897694322139], [8440.415438442982, -6067.347694322933]], "source": 495770430, "length": 72.00042852272207}, {"destination": 495770431, "path": [[8795.365438444947, -6179.547694323162], [8837.515438443688, -6094.047694322313]], "source": 495770430, "length": 20.63442963986823}, {"destination": 1887591336, "path": [[-5150.6345615521805, -5370.097694322951], [-5209.4845615542345, -5466.4976943232805]], "source": 1887591399, "length": 24.18301946965025}, {"destination": 1887591342, "path": [[-5150.6345615521805, -5370.097694322951], [-5185.884561555554, -5385.797694323457], [-5323.08456155306, -5448.847694323078]], "source": 1887591399, "length": 37.175986627552064}, {"destination": 385114529, "path": [[3827.1154384474926, -341.99769432241567], [3271.2654384496886, -266.39769432179605]], "source": 475978728, "length": 107.03476333216841}, {"destination": 475978741, "path": [[3827.1154384474926, -341.99769432241567], [4135.565438446065, 202.20230567780106], [4450.065438447837, 653.3023056771725]], "source": 475978728, "length": 251.28678557960518}, {"destination": 103736983, "path": [[3827.1154384474926, -341.99769432241567], [4474.315438443455, -505.09769432238727]], "source": 475978728, "length": 128.31133879869472}, {"destination": 1774845833, "path": [[4198.765438445662, -7931.447694321747], [4141.865438448633, -7886.797694322212], [4098.715438445311, -7832.047694321886], [4071.6154384483616, -7770.197694322079], [4062.115438443925, -7704.647694323441], [4070.7154384449495, -7638.997694321859], [4096.965438449729, -7576.897694322682], [4139.36543844784, -7521.697694322427], [4195.6154384479305, -7476.447694322986], [4262.665438446334, -7443.647694323374]], "source": 481504379, "length": 132.18172657469026}, {"destination": 1774845860, "path": [[4198.765438445662, -7931.447694321747], [4252.615438446128, -7958.497694323441], [4311.465438448181, -7976.347694322428], [4373.165438444459, -7984.347694321769], [4435.565438448919, -7982.297694322682], [4496.415438445922, -7970.247694322196], [4553.4654384482565, -7948.597694323212], [4604.71543844676, -7918.097694322058], [4648.36543844882, -7879.89769432329], [4682.765438445813, -7835.347694323147], [4706.7154384450305, -7786.097694323146], [4719.41543844423, -7733.797694323031]], "source": 481504379, "length": 130.59353615400246}, {"destination": 1774845838, "path": [[4198.765438445662, -7931.447694321747], [4296.315438445219, -7811.1976943233685]], "source": 481504379, "length": 32.54527294656489}, {"destination": 1316236976, "path": [[-1529.684561553779, 2641.952305676654], [-1496.4845615565991, 2692.652305677612]], "source": 1316236446, "length": 12.922731531191317}, {"destination": 1316236841, "path": [[-1529.684561553779, 2641.952305676654], [-1649.9345615557104, 2715.352305678209]], "source": 1316236446, "length": 28.097359667236866}, {"destination": 1316236858, "path": [[-1529.684561553779, 2641.952305676654], [-1385.33456155443, 2583.152305676961], [-1358.4845615568497, 2594.6523056781243], [-1315.584561552896, 2585.452305677194], [-1315.584561552896, 2553.3523056768813], [-1253.8845615566174, 2525.8023056782263]], "source": 1316236446, "length": 64.9063096268669}, {"destination": 1316236381, "path": [[-1529.684561553779, 2641.952305676654], [-1562.884561550959, 2591.402305677448]], "source": 1316236446, "length": 12.893755586227453}, {"destination": 1316471727, "path": [[765.8654384457009, 2018.9523056775015], [673.3154384477302, 2048.652305678189]], "source": 1316471976, "length": 18.79961275768289}, {"destination": 1315785281, "path": [[-4230.984561552021, 1323.8523056777751], [-4118.334561553638, 1296.3523056779281]], "source": 1315785214, "length": 22.279102859913632}, {"destination": 1316471831, "path": [[1425.4154384474305, 1386.1523056775127], [1450.7154384446608, 1458.5523056780403]], "source": 1316471977, "length": 16.804375995837937}, {"destination": 1316471876, "path": [[1425.4154384474305, 1386.1523056775127], [1398.8654384462507, 1408.85230567811], [1323.7654384496977, 1445.5523056771112], [1235.265438445765, 1452.402305677225], [1186.4154384468861, 1444.7523056766443]], "source": 1316471977, "length": 49.933821917298225}, {"destination": 1316471807, "path": [[1425.4154384474305, 1386.1523056775127], [1482.0154384480588, 1337.752305676787], [1537.4654384459063, 1234.1023056769984]], "source": 1316471977, "length": 40.57056190995629}, {"destination": 1315242557, "path": [[-2767.584561553349, -8251.647694322628], [-2246.2845615507376, -8388.797694323102], [-2190.9345615540587, -8403.497694322581]], "source": 1315242567, "length": 114.72543783375362}, {"destination": 103795925, "path": [[-2767.584561553349, -8251.647694322628], [-2723.3345615513826, -8133.6976943227055], [-2694.7845615552524, -8049.59769432223]], "source": 1315242567, "length": 47.02226889021705}, {"destination": 1316471792, "path": [[550.265438448605, 3497.302305676797], [509.1154384473384, 3394.002305677546], [420.5154384493426, 3141.402305677943]], "source": 1316471978, "length": 82.91791588154382}, {"destination": 1316471757, "path": [[550.265438448605, 3497.302305676797], [791.6654384487742, 3391.8023056767056]], "source": 1316471978, "length": 51.558243613693314}, {"destination": 482731172, "path": [[-1891.1345615535424, 5541.052305677141], [-1758.13456155538, 5816.302305676757]], "source": 482731179, "length": 66.23364175327751}, {"destination": 654393951, "path": [[-1891.1345615535424, 5541.052305677141], [-2015.5845615548174, 5614.302305676943]], "source": 482731179, "length": 28.733616517235056}, {"destination": 4267598457, "path": [[10032.715438448748, -274.09769432296116], [10011.115438445016, -328.9476943226788]], "source": 85646340, "length": 12.871368147811815}, {"destination": 4867879900, "path": [[10032.715438448748, -274.09769432296116], [9189.615438444322, 57.052305677984805], [9173.515438448021, 37.45230567808733], [9121.765438443674, 13.302305676532455]], "source": 85646340, "length": 192.97574624424615}, {"destination": 115005789, "path": [[10032.715438448748, -274.09769432296116], [10182.91543844896, 44.00230567824792], [10250.165438449698, 177.1523056781632], [10428.715438443704, 549.2523056780385], [10476.96543844978, 677.7023056780962], [10523.365438444898, 846.9023056765224], [10661.865438443385, 1495.1523056776496], [10748.265438444094, 1743.7023056778855], [10809.665438443972, 1857.8523056778095]], "source": 85646340, "length": 498.80478705816535}, {"destination": 96243750, "path": [[10032.715438448748, -274.09769432296116], [10225.815438445807, -348.6476943219685], [10655.565438447922, -506.39769432336834], [11296.615438446623, -758.8476943229949]], "source": 85646340, "length": 263.44236337022016}, {"destination": 267194982, "path": [[-6182.934561550724, -3620.297694322261], [-6360.584561555526, -3910.7976943224544]], "source": 477641733, "length": 72.9033036926016}, {"destination": 477641710, "path": [[-6182.934561550724, -3620.297694322261], [-6512.984561553026, -3489.447694322578]], "source": 477641733, "length": 69.17933926730514}, {"destination": 1315785459, "path": [[-2430.384561556309, -576.8476943224243], [-2412.984561551923, -504.3976943230888]], "source": 1315785217, "length": 16.448231429524125}, {"destination": 1315785508, "path": [[-2430.384561556309, -576.8476943224243], [-2446.9345615543148, -643.647694323235]], "source": 1315785217, "length": 15.18521838179675}, {"destination": 1315785387, "path": [[-2430.384561556309, -576.8476943224243], [-2729.084561551076, -504.1976943225279]], "source": 1315785217, "length": 59.05655405965328}, {"destination": 1315785635, "path": [[-2430.384561556309, -576.8476943224243], [-2218.3345615545136, -628.447694323242]], "source": 1315785217, "length": 41.926328752217124}, {"destination": 1785693361, "path": [[4728.9154384486665, -6586.54769432232], [4761.065438444234, -6579.997694322159], [4793.865438443845, -6576.447694323307]], "source": 1785693356, "length": 12.56953706676316}, {"destination": 1205027230, "path": [[4728.9154384486665, -6586.54769432232], [4718.815438444324, -6548.897694322875], [4682.81543844995, -6561.347694322705]], "source": 1785693356, "length": 15.9747200428465}, {"destination": 1785693367, "path": [[4728.9154384486665, -6586.54769432232], [4696.165438446087, -6596.547694321942], [4664.915438446826, -6609.697694322847], [4635.615438445484, -6625.747694322115]], "source": 1785693356, "length": 19.853534345875076}, {"destination": 1315785299, "path": [[808.1154384456113, -3086.697694323348], [1207.7654384441416, -3217.397694323054]], "source": 1315785218, "length": 81.36581315170494}, {"destination": 1315785357, "path": [[808.1154384456113, -3086.697694323348], [780.0654384482186, -3150.647694322828]], "source": 1315785218, "length": 15.189669132236263}, {"destination": 1315785542, "path": [[808.1154384456113, -3086.697694323348], [569.3654384444358, -3015.5976943220253], [546.4154384497988, -3074.0976943217647]], "source": 1315785218, "length": 61.79757044111153}, {"destination": 1315678788, "path": [[-3200.184561556796, -4865.1976943219215], [-3053.6345615530536, -4903.197694321903]], "source": 1315678723, "length": 29.11996401256682}, {"destination": 477647749, "path": [[-3200.184561556796, -4865.1976943219215], [-3200.6845615555335, -4666.047694323439], [-3196.8345615567273, -4638.14769432247]], "source": 1315678723, "length": 50.536917589703684}, {"destination": 602392064, "path": [[10702.415438444747, -7763.347694321965], [10825.815438444408, -7543.847694321926]], "source": 554691077, "length": 54.16072640252606}, {"destination": 1491042380, "path": [[10702.415438444747, -7763.347694321965], [10476.015438449338, -8090.597694321744]], "source": 554691077, "length": 84.55544585210565}, {"destination": 479293180, "path": [[-4998.2845615517135, -1992.9476943225666], [-4702.584561556478, -2143.0476943233857]], "source": 479293036, "length": 65.39280463922027}, {"destination": 1315785405, "path": [[-4998.2845615517135, -1992.9476943225666], [-5065.484561555422, -2073.547694322997]], "source": 479293036, "length": 22.01355953540146}, {"destination": 1315678569, "path": [[-4288.634561554261, -5064.797694322109], [-4302.2845615539045, -5096.197694323124]], "source": 1315678726, "length": 7.449861066550461}, {"destination": 1315678805, "path": [[-4288.634561554261, -5064.797694322109], [-4573.634561552353, -4969.147694323439]], "source": 1315678726, "length": 58.21825873586942}, {"destination": 1315678575, "path": [[-4288.634561554261, -5064.797694322109], [-4252.684561556918, -4980.947694322779]], "source": 1315678726, "length": 19.861027869846207}, {"destination": 1779952829, "path": [[6829.715438449568, -6544.697694321755], [6772.815438445434, -6531.847694322579], [6628.365438444916, -6511.947694322728], [6456.96543844565, -6511.597694322191], [6394.065438449559, -6532.2976943225085]], "source": 4470914092, "length": 84.4176635819196}, {"destination": 3121830238, "path": [[6829.715438449568, -6544.697694321755], [6868.465438444105, -6558.397694321982], [6911.26543844689, -6571.197694322351], [6958.065438446682, -6602.697694322756], [6967.065438445275, -6609.697694322847]], "source": 4470914092, "length": 30.23323319584331}, {"destination": 1993253294, "path": [[6829.715438449568, -6544.697694321755], [6738.715438444842, -6596.097694322012]], "source": 4470914092, "length": 20.737905783561246}, {"destination": 1993253294, "path": [[6829.715438449568, -6544.697694321755], [6807.86543844647, -6596.847694321895], [6795.865438448345, -6624.647694323471], [6786.015438443372, -6646.14769432248], [6766.665438448172, -6648.397694322128], [6754.915438449416, -6640.997694322692], [6748.365438447479, -6625.847694323284], [6738.715438444842, -6596.097694322012]], "source": 4470914092, "length": 40.99044788554069}, {"destination": 1315785608, "path": [[-4045.884561556079, 1034.8523056773474], [-4257.784561552569, 1057.8023056773134], [-4388.184561555874, 1085.4023056765527]], "source": 1315785266, "length": 66.16749813034636}, {"destination": 3357316284, "path": [[6627.515438445642, -6047.247694322522], [6720.365438447117, -6057.5476943220965], [7686.96543844527, -5694.647694323152], [7967.115438447081, -5616.147694322393], [8787.11543844446, -5365.197694322532], [8826.065438448439, -5286.547694321797], [8833.115438449113, -5201.797694322608]], "source": 4470914101, "length": 478.09498286847014}, {"destination": 1779952828, "path": [[6627.515438445642, -6047.247694322522], [6210.415438445693, -6000.847694322076], [6141.5154384434345, -5991.947694322875], [6148.365438448877, -6014.747694322864], [6152.415438450021, -6035.147694323228], [6152.315438448852, -6055.797694322962], [6144.165438449534, -6080.097694322717], [6129.465438448278, -6100.847694321843], [6113.115438445504, -6116.74769432291], [6094.665438446611, -6126.647694323139], [6122.515438448772, -6161.647694321815], [6208.765438444175, -6284.297694323371]], "source": 4470914101, "length": 168.76762351251176}, {"destination": 4470914102, "path": [[6627.515438445642, -6047.247694322522], [6753.465438443129, -5883.597694323228]], "source": 4470914101, "length": 43.566985862113086}, {"destination": 4470914103, "path": [[6753.465438443129, -5883.597694323228], [6696.115438444394, -5877.5976943223895], [6640.265438448978, -5883.847694322597], [6598.965438449512, -5898.347694323292], [6557.3154384495065, -5920.0476943228605]], "source": 4470914102, "length": 39.459089467983134}, {"destination": 4470914101, "path": [[6753.465438443129, -5883.597694323228], [6627.515438445642, -6047.247694322522]], "source": 4470914102, "length": 43.566985862113086}, {"destination": 4470914109, "path": [[6753.465438443129, -5883.597694323228], [6790.865438446758, -5905.647694323335], [6838.265438446456, -5941.997694321799], [6873.41543844866, -5972.347694322977]], "source": 4470914102, "length": 30.244992844205708}, {"destination": 1993253276, "path": [[6557.3154384495065, -5920.0476943228605], [6551.165438445139, -5854.247694323078], [6545.565438443646, -5678.197694322762], [6640.065438446641, -5225.947694322386], [6679.515438449357, -5166.847694322741], [6748.665438443879, -5113.797694322741], [6784.615438448327, -5096.8976943224225], [6838.215438449424, -5089.097694321865], [6993.565438449423, -5074.247694322409]], "source": 4470914103, "length": 236.6768296900546}, {"destination": 4470914102, "path": [[6557.3154384495065, -5920.0476943228605], [6598.965438449512, -5898.347694323292], [6640.265438448978, -5883.847694322597], [6696.115438444394, -5877.5976943223895], [6753.465438443129, -5883.597694323228]], "source": 4470914103, "length": 39.459089467983134}, {"destination": 1771400911, "path": [[6557.3154384495065, -5920.0476943228605], [6562.465438449294, -5974.847694321994], [6596.315438443412, -6017.097694321905], [6659.465438445977, -6048.547694321726]], "source": 4470914103, "length": 37.51218878776299}, {"destination": 1315785649, "path": [[-4870.584561551539, -27.14769432188291], [-4838.884561550572, 54.30230567782246]], "source": 1562117605, "length": 19.09028558070568}, {"destination": 1315785349, "path": [[-4870.584561551539, -27.14769432188291], [-4898.634561556037, -99.14769432306514]], "source": 1562117605, "length": 16.877159621013867}, {"destination": 1562117599, "path": [[-4870.584561551539, -27.14769432188291], [-4687.034561555947, -84.39769432300182]], "source": 1562117605, "length": 37.155307352192025}, {"destination": 602360648, "path": [[4533.065438444339, -6690.147694323301], [4648.715438449358, -6732.547694323188], [4804.465438446925, -6762.797694323197]], "source": 93466463, "length": 54.29610064576839}, {"destination": 1785697731, "path": [[4533.065438444339, -6690.147694323301], [4636.965438443496, -6709.347694322077], [4692.065438447912, -6709.497694322053], [4735.315438445297, -6698.697694321964], [4769.965438448764, -6679.597694322581], [4785.815438445696, -6658.547694321725], [4797.765438446788, -6633.1476943233265], [4807.615438444656, -6597.047694322456]], "source": 93466463, "length": 66.99616064869322}, {"destination": 1765485440, "path": [[6873.41543844866, -5972.347694322977], [6965.7154384472615, -5939.447694322197]], "source": 4470914109, "length": 19.01459775931537}, {"destination": 4470914102, "path": [[6873.41543844866, -5972.347694322977], [6838.265438446456, -5941.997694321799], [6790.865438446758, -5905.647694323335], [6753.465438443129, -5883.597694323228]], "source": 4470914109, "length": 30.24499284420571}, {"destination": 1771400911, "path": [[6873.41543844866, -5972.347694322977], [6659.465438445977, -6048.547694321726]], "source": 4470914109, "length": 44.070393702801795}, {"destination": 602393460, "path": [[6383.465438446478, 923.4523056775856], [6014.015438445596, 1054.6523056778055], [5403.965438446789, 1313.5023056776163], [4608.315438446198, 1631.8523056781942], [4173.815438448969, 1696.102305677627], [3857.3154384451414, 1650.2023056776948], [3401.815438444089, 1515.8523056779673]], "source": 3356046290, "length": 609.1927072271277}, {"destination": 2367476047, "path": [[6383.465438446478, 923.4523056775856], [6366.365438445599, 899.6023056777602], [6298.5154384449515, 927.8023056769058], [6159.015438448989, 941.6023056765255], [6079.365438445449, 915.6523056770283]], "source": 3356046290, "length": 63.48487734485058}, {"destination": 479283552, "path": [[-2881.8845615532496, -2340.147694322781], [-2944.3845615517716, -2441.947694322266]], "source": 1315785227, "length": 25.569550524614563}, {"destination": 1315785320, "path": [[-2881.8845615532496, -2340.147694322781], [-2656.634561553517, -2396.347694322287]], "source": 1315785227, "length": 44.62025904275296}, {"destination": 1315785483, "path": [[-243.63456155640506, -5570.397694322438], [-169.38456155202175, -5415.197694322415], [-79.23456155367603, -5275.197694322386]], "source": 476671870, "length": 72.832777065513}, {"destination": 1887596198, "path": [[-243.63456155640506, -5570.397694322438], [-311.4845615570516, -5556.997694322164]], "source": 476671870, "length": 13.241025584703243}, {"destination": 1315785457, "path": [[-92.38456155458152, -2793.347694321824], [24.415438446112603, -2817.4476943227946]], "source": 1315785228, "length": 22.84810079322786}, {"destination": 1315785259, "path": [[-92.38456155458152, -2793.347694321824], [-175.63456155045287, -3070.647694322304]], "source": 1315785228, "length": 63.66827606077635}, {"destination": 1315785638, "path": [[-92.38456155458152, -2793.347694321824], [-379.43456155176136, -2731.197694322063]], "source": 1315785228, "length": 56.3081567416744}, {"destination": 1320103809, "path": [[2435.415438448274, 2417.002305676874], [2479.7654384443035, 2415.752305678254], [2525.3654384442825, 2412.4023056781853]], "source": 1320103938, "length": 17.143196822559112}, {"destination": 1320103677, "path": [[2435.415438448274, 2417.002305676874], [2434.2154384484616, 2335.4523056777766]], "source": 1320103938, "length": 18.137388831348993}, {"destination": 1320104077, "path": [[2435.415438448274, 2417.002305676874], [2436.8654384474553, 2514.3523056776476]], "source": 1320103938, "length": 21.651523364705287}, {"destination": 1887913942, "path": [[-2954.384561554946, -3750.997694321967], [-3613.9345615566754, -3651.6476943226908]], "source": 95386126, "length": 127.34893782164886}, {"destination": 477621319, "path": [[-2954.384561554946, -3750.997694321967], [-2943.0845615507906, -3701.2476943232286], [-2934.2845615545343, -3655.847694322034], [-2899.3345615546673, -3467.1476943231028]], "source": 95386126, "length": 63.99354356312929}, {"destination": 479300368, "path": [[-6757.484561553894, 10.002305677048184], [-6130.884561549976, -260.69769432268686]], "source": 479298745, "length": 133.50473824379725}, {"destination": 3113807409, "path": [[-6757.484561553894, 10.002305677048184], [-6739.13456155617, 41.302305676893525], [-6639.134561552851, 242.65230567799279]], "source": 479298745, "length": 56.43506188242775}, {"destination": 3113807404, "path": [[-6757.484561553894, 10.002305677048184], [-7064.284561550949, 147.65230567803656], [-7118.234561552583, 168.652305676531]], "source": 479298745, "length": 77.16027872150653}, {"destination": 1315785597, "path": [[-739.8345615570179, -3214.5976943223077], [-815.2345615499712, -3189.647694322062]], "source": 479280217, "length": 15.373971787132009}, {"destination": 1315785454, "path": [[-739.8345615570179, -3214.5976943223077], [-708.8345615500202, -3134.3476943224146]], "source": 479280217, "length": 18.795057803843694}, {"destination": 479280511, "path": [[-739.8345615570179, -3214.5976943223077], [-570.584561550902, -3287.747694322718]], "source": 479280217, "length": 36.062220763773716}, {"destination": 1890769405, "path": [[-8254.584561555588, -2557.547694323148], [-8280.834561553263, -2588.597694321848]], "source": 1890769423, "length": 8.520950847124608}, {"destination": 1315678568, "path": [[-5776.584561552056, -3418.3476943230316], [-5858.784561553421, -3550.997694322433]], "source": 477641820, "length": 33.385431976273594}, {"destination": 267198468, "path": [[-5776.584561552056, -3418.3476943230316], [-5351.884561555664, -3598.4976943232996]], "source": 477641820, "length": 90.15117817192157}, {"destination": 1316236408, "path": [[-101.08456155677459, 4239.402305676876], [-66.08456155277054, 4305.752305677757]], "source": 1316237157, "length": 16.18753514672297}, {"destination": 1316236333, "path": [[-101.08456155677459, 4239.402305676876], [-81.78456155150116, 4234.702305677019], [71.11543844473545, 4181.952305676972]], "source": 1316237157, "length": 35.17322999525146}, {"destination": 1315678544, "path": [[-4534.684561555479, -4893.297694323451], [-4474.934561550015, -4785.747694322496]], "source": 1315678736, "length": 26.479328359299522}, {"destination": 1315678805, "path": [[-4534.684561555479, -4893.297694323451], [-4573.634561552353, -4969.147694323439]], "source": 1315678736, "length": 18.42236675186479}, {"destination": 1315678575, "path": [[-4534.684561555479, -4893.297694323451], [-4252.684561556918, -4980.947694322779]], "source": 1315678736, "length": 57.05564180688814}, {"destination": 874287746, "path": [[-5879.884561551307, -7330.497694322702], [-5951.834561550129, -7514.847694322313], [-5969.134561553346, -7568.44769432341], [-5977.234561555633, -7603.69769432323], [-5978.034561550771, -7646.19769432251], [-5972.734561552784, -7675.497694322075], [-5959.984561556553, -7711.747694322923]], "source": 1632904379, "length": 88.0394385461934}, {"destination": 267198467, "path": [[-5879.884561551307, -7330.497694322702], [-5933.134561551868, -7317.19769432182]], "source": 1632904379, "length": 10.548518469895562}, {"destination": 1887877323, "path": [[-5879.884561551307, -7330.497694322702], [-5802.7845615526985, -7347.997694322928]], "source": 1632904379, "length": 15.167996525565659}, {"destination": 856909363, "path": [[2603.615438445672, 6723.752305678232], [2899.5154384432453, 6726.8523056771555]], "source": 623413761, "length": 56.2839022861518}, {"destination": 1328999494, "path": [[2603.615438445672, 6723.752305678232], [2587.265438450004, 6993.752305676892]], "source": 623413761, "length": 60.12576532097405}, {"destination": 856909299, "path": [[2603.615438445672, 6723.752305678232], [2582.165438447248, 6590.702305677709], [2487.1654384455155, 6337.002305677686]], "source": 623413761, "length": 89.1119064856021}, {"destination": 479283382, "path": [[-2445.2845615527963, -2063.74769432216], [-2662.5345615514107, -1985.7976943224999]], "source": 479282364, "length": 44.802684849007925}, {"destination": 1316236987, "path": [[-1540.8845615567657, 2268.902305678111], [-1720.0345615506762, 2351.902305678166]], "source": 1316237159, "length": 38.74959192362112}, {"destination": 3569237097, "path": [[-7498.13456155124, -583.7976943219303], [-7544.634561554631, -555.7476943227613], [-7557.434561554999, -492.44769432199575], [-7484.484561551597, -436.39769432246567], [-7353.134561554953, -476.19769432216685], [-7219.234561553378, -419.7476943232914], [-7037.734561556874, -512.797694321776]], "source": 3569237100, "length": 138.89258882853}, {"destination": 3569237107, "path": [[-7498.13456155124, -583.7976943219303], [-7566.534561554761, -689.0976943232374]], "source": 3569237100, "length": 26.787609744652976}, {"destination": 3569237107, "path": [[-7498.13456155124, -583.7976943219303], [-7448.884561554792, -584.9976943217428], [-7408.884561556306, -613.2976943220569], [-7410.584561554856, -653.9976943233938], [-7440.684561551336, -682.0476943225628], [-7489.984561551921, -667.4976943230604], [-7566.534561554761, -689.0976943232374]], "source": 3569237100, "length": 62.0136408480772}, {"destination": 1315678865, "path": [[-5417.634561553086, -3666.9476943220757], [-4955.1345615554965, -3877.897694323451]], "source": 1315678739, "length": 99.67732116806918}, {"destination": 267198468, "path": [[-5417.634561553086, -3666.9476943220757], [-5351.884561555664, -3598.4976943232996]], "source": 1315678739, "length": 19.699044965769744}, {"destination": 1316623499, "path": [[-1367.5345615524748, -361.29769432236003], [-1399.4845615528106, -420.247694322029]], "source": 1316623550, "length": 14.44953453510969}, {"destination": 1316623303, "path": [[-1367.5345615524748, -361.29769432236003], [-1006.9345615519865, -433.0476943223971], [-968.0345615521446, -320.2476943222621]], "source": 1316623550, "length": 96.56085152832281}, {"destination": 1320103860, "path": [[2061.51543844868, 1631.3023056770958], [2112.465438443678, 1759.7523056771536], [2117.6154384434653, 1867.2523056775249]], "source": 1320103785, "length": 54.09198600897604}, {"destination": 1316623589, "path": [[1750.2654384458083, -1235.7976943224712], [1991.6654384459775, -1300.0476943219041], [1968.0154384431603, -1366.5476943227618]], "source": 1316623529, "length": 63.53597557619489}, {"destination": 476554809, "path": [[1046.8654384467868, 2444.60230567789], [1102.7654384463403, 2612.6023056782797]], "source": 1316471999, "length": 38.84472042951334}, {"destination": 1316471706, "path": [[1046.8654384467868, 2444.60230567789], [924.115438444062, 2493.752305676722], [945.5654384495915, 2585.502305677778]], "source": 1316471999, "length": 46.585216243679845}, {"destination": 1320103679, "path": [[1046.8654384467868, 2444.60230567789], [1037.3154384453187, 2415.8523056776457]], "source": 1316471999, "length": 6.646836327448721}, {"destination": 1469016586, "path": [[-7666.83456155448, -844.3976943226517], [-7846.334561556034, -757.5476943220139], [-7883.584561554358, -769.2476943219617], [-7919.484561554668, -806.0476943221317], [-7982.984561550666, -810.9476943225502], [-8007.734561552126, -767.1476943222899], [-8053.534561554443, -740.5476943223022], [-8015.634561552077, -692.8976943232357]], "source": 3569237116, "length": 103.71115976817572}, {"destination": 3569237107, "path": [[-7666.83456155448, -844.3976943226517], [-7566.534561554761, -689.0976943232374]], "source": 3569237116, "length": 39.4540965050088}, {"destination": 3569237107, "path": [[-7666.83456155448, -844.3976943226517], [-7623.984561554664, -862.1976943228304], [-7550.134561554955, -866.897694322688], [-7530.9845615549875, -836.4476943221177], [-7566.534561554761, -745.2476943221598], [-7566.534561554761, -689.0976943232374]], "source": 3569237116, "length": 64.696958898412}, {"destination": 1316236461, "path": [[-2297.284561556978, 3349.3023056774264], [-2231.7845615518195, 3333.202305677574]], "source": 1316237162, "length": 12.961381251722372}, {"destination": 84466496, "path": [[6128.8654384483725, -8065.6976943220825], [6059.965438446114, -8135.7476943217935]], "source": 1769171993, "length": 20.35451972656595}, {"destination": 1769172169, "path": [[6128.8654384483725, -8065.6976943220825], [6080.665438446431, -8032.147694322589], [6036.415438444465, -8039.047694323287], [5978.765438449329, -8040.197694322515], [5662.265438445502, -7826.897694322099], [5386.815438448877, -7598.4976943228585], [5199.565438445575, -7398.147694322787], [5108.415438449754, -7270.747694322566], [5088.115438447005, -7240.197694322604], [5055.465438445594, -7171.247694323312]], "source": 1769171993, "length": 295.5239148067453}, {"destination": 848698004, "path": [[6128.8654384483725, -8065.6976943220825], [6682.065438447182, -7483.297694323099]], "source": 1769171993, "length": 166.85149990508555}, {"destination": 1769172086, "path": [[6128.8654384483725, -8065.6976943220825], [6186.615438444676, -8111.297694322062]], "source": 1769171993, "length": 14.946829312627056}, {"destination": 156253438, "path": [[-8792.834561553775, -6638.69769432246], [-8697.88456155618, -6603.597694322616]], "source": 973126787, "length": 19.6697417960095}, {"destination": 601145294, "path": [[-8792.834561553775, -6638.69769432246], [-8768.38456155582, -6556.74769432224]], "source": 973126787, "length": 18.808719356108444}, {"destination": 874287498, "path": [[-6090.784561550322, -7727.197694322285], [-6087.884561551959, -7634.897694321907], [-6080.034561556147, -7585.597694323098], [-6066.884561555242, -7533.497694321767], [-6051.984561551649, -7490.147694323213], [-5976.684561552758, -7306.447694322315]], "source": 874287211, "length": 96.78940444978818}, {"destination": 874287746, "path": [[-6090.784561550322, -7727.197694322285], [-6053.334561556767, -7719.697694323458], [-6007.584561551483, -7714.447694322502], [-5959.984561556553, -7711.747694322923]], "source": 874287211, "length": 25.159560931733402}, {"destination": 479294032, "path": [[-3861.7845615505075, -2545.0976943233172], [-3534.434561551336, -2697.547694323177]], "source": 1315785238, "length": 70.88301761902689}, {"destination": 1315785331, "path": [[-3861.7845615505075, -2545.0976943233172], [-3821.4845615556214, -2485.59769432255]], "source": 1315785238, "length": 15.291089460375586}, {"destination": 1890935355, "path": [[-8082.934561556954, -1776.9476943225727], [-8050.284561555543, -1698.5476943229828], [-8039.5845615512935, -1666.4476943226703], [-8028.834561550013, -1619.3976943217335], [-8023.484561554995, -1595.3476943231237], [-7999.534561555776, -1477.1476943220564], [-7994.634561555358, -1455.5976943224637]], "source": 1890745479, "length": 73.59826234542363}, {"destination": 1315678760, "path": [[-1245.8845615554992, -6197.297694322757], [-1285.634561554616, -6319.947694322536]], "source": 1315678743, "length": 28.30413575778514}, {"destination": 1315678827, "path": [[-1245.8845615554992, -6197.297694322757], [-920.8845615518158, -6273.0476943233525]], "source": 1315678743, "length": 64.05250756611359}, {"destination": 103788043, "path": [[-1245.8845615554992, -6197.297694322757], [-1211.7845615549072, -6053.747694322098]], "source": 1315678743, "length": 32.575997584370675}, {"destination": 63303824, "path": [[8086.365438444432, -4136.647694322093], [8071.165438444439, -4205.497694321992]], "source": 478379149, "length": 15.582140897192868}, {"destination": 848698274, "path": [[8086.365438444432, -4136.647694322093], [8282.265438445791, -4165.0476943218], [8946.415438444434, -4325.79769432273], [8996.015438448523, -4336.297694322866], [9047.315438444059, -4339.4476943223735], [9089.265438447568, -4338.047694322], [9131.26543844811, -4326.397694322637], [9171.615438447134, -4307.297694323253], [9208.51543844492, -4287.547694323379], [9242.315438449112, -4261.497694322714], [9287.315438449185, -4223.697694323292]], "source": 478379149, "length": 242.60832391557037}, {"destination": 848698028, "path": [[8086.365438444432, -4136.647694322093], [8177.515438447358, -4179.697694322471], [8265.615438446617, -4207.347694322294], [8874.215438446243, -4359.997694322715], [8953.415438448075, -4383.19769432205], [9003.465438446767, -4402.497694321994], [9055.065438445808, -4431.997694322121], [9095.615438447168, -4465.547694323391], [9125.46543844428, -4500.59769432265], [9153.01543845004, -4549.097694322768], [9168.315438444097, -4586.89769432219], [9176.71543844989, -4633.8476943219575]], "source": 478379149, "length": 248.23476978066532}, {"destination": 1315785582, "path": [[-3278.7845615516176, -4185.24769432338], [-3232.034561555963, -4192.897694322184]], "source": 1315785240, "length": 9.051285689647633}, {"destination": 1890935455, "path": [[-7291.684561550937, -3078.0976943223236], [-7257.98456155502, -3028.1476943230246], [-7241.884561551615, -2999.447694323365], [-7237.834561550471, -2983.3976943223206], [-7240.5345615536025, -2960.497694322939], [-7250.184561556239, -2903.7476943223337]], "source": 1890844097, "length": 41.42676394344154}, {"destination": 2049850521, "path": [[5139.215438447309, -6742.297694323441], [5168.465438444514, -6740.947694321875], [5197.715438448824, -6742.497694322225]], "source": 2049850517, "length": 11.14187701444792}, {"destination": 2049850503, "path": [[5139.215438447309, -6742.297694323441], [5246.065438448966, -6702.147694323202]], "source": 2049850517, "length": 22.1921598855439}, {"destination": 4867880024, "path": [[3570.165438446793, -8297.79769432193], [3548.215438449631, -8388.797694323102]], "source": 1765493273, "length": 20.663237107226504}, {"destination": 84487116, "path": [[3570.165438446793, -8297.79769432193], [3771.865438444877, -8409.247694322275]], "source": 1765493273, "length": 45.662758587752286}, {"destination": 1776116855, "path": [[3570.165438446793, -8297.79769432193], [3356.8654384481533, -8181.397694322357], [3121.4654384470464, -8005.79769432197]], "source": 1765493273, "length": 107.51378145221122}, {"destination": 1320104113, "path": [[2456.6154384473293, 3469.1523056782357], [2495.115438449602, 3484.652305678182], [2640.6154384446268, 3487.8023056776897]], "source": 1316472004, "length": 35.77429094541811}, {"destination": 1320103771, "path": [[2456.6154384473293, 3469.1523056782357], [2403.915438449644, 3447.952305677404], [2340.1154384430356, 3403.0023056779155]], "source": 1316472004, "length": 26.797366422644565}, {"destination": 1320103861, "path": [[2456.6154384473293, 3469.1523056782357], [2469.915438446435, 3384.6523056766387]], "source": 1316472004, "length": 18.961674181405712}, {"destination": 1316623432, "path": [[-207.08456155205113, -1701.1976943219765], [-204.6845615524262, -1859.3476943227215], [-184.28456155561435, -2064.247694322674]], "source": 475975536, "length": 80.90637813477869}, {"destination": 1316623723, "path": [[-207.08456155205113, -1701.1976943219765], [71.61543844347307, -1681.1976943227337]], "source": 475975536, "length": 53.185028685988414}, {"destination": 475975347, "path": [[-207.08456155205113, -1701.1976943219765], [-895.4845615534168, -1712.4476943219947]], "source": 475975536, "length": 130.93313620676454}, {"destination": 1316623299, "path": [[-207.08456155205113, -1701.1976943219765], [-152.53456155051026, -1372.2476943218708]], "source": 475975536, "length": 73.88709469487647}, {"destination": 495770279, "path": [[9444.665438444134, -6532.547694321877], [9253.515438444992, -6413.547694322119], [9076.915438448907, -6311.997694322003], [8950.065438448008, -6243.797694322595]], "source": 495771014, "length": 113.92012621822522}, {"destination": 63308065, "path": [[4872.66543844811, -6560.0476943217245], [4870.465438443716, -6643.647694323462], [4876.06543844521, -6691.097694321968], [4893.815438443027, -6729.647694323049], [4918.615438448625, -6773.597694323285], [4924.41543844535, -6789.647694322553]], "source": 2049850540, "length": 53.0025640811649}, {"destination": 2049850517, "path": [[4872.66543844811, -6560.0476943217245], [4900.465438446134, -6643.697694322271], [4924.865438447057, -6686.247694322134], [4952.765438446249, -6713.647694322589], [4990.615438444479, -6735.547694322719], [5033.515438448432, -6745.847694322293], [5080.165438450023, -6746.89769432213], [5139.215438447309, -6742.297694323441]], "source": 2049850540, "length": 75.26769501951006}, {"destination": 1887575216, "path": [[-885.3345615520425, -5024.447694323087], [-688.5845615514086, -5071.697694322807], [-502.3845615568234, -5114.397694322648], [-407.43456155212243, -5142.447694321817], [-316.38456155036465, -5175.147694322035], [-135.18456155026115, -5249.197694322305]], "source": 1887575214, "length": 151.5861225819699}, {"destination": 1315678610, "path": [[-885.3345615520425, -5024.447694323087], [-934.3345615562271, -5158.447694322277]], "source": 1887575214, "length": 31.2227900410595}, {"destination": 95386562, "path": [[-885.3345615520425, -5024.447694323087], [-842.234561552857, -4882.09769432224], [-778.7345615568597, -4687.19769432191]], "source": 1887575214, "length": 77.695099637423}, {"destination": 1887596136, "path": [[-135.18456155026115, -5249.197694322305], [55.86543844771086, -4955.097694322674]], "source": 1887575216, "length": 74.81683057130616}, {"destination": 1315785483, "path": [[-135.18456155026115, -5249.197694322305], [-79.23456155367603, -5275.197694322386]], "source": 1887575216, "length": 12.108641275360434}, {"destination": 1887575214, "path": [[-135.18456155026115, -5249.197694322305], [-316.38456155036465, -5175.147694322035], [-407.43456155212243, -5142.447694321817], [-502.3845615568234, -5114.397694322648], [-688.5845615514086, -5071.697694322807], [-885.3345615520425, -5024.447694323087]], "source": 1887575216, "length": 151.5861225819699}, {"destination": 1887596198, "path": [[-135.18456155026115, -5249.197694322305], [-243.93456155280546, -5419.047694322998], [-286.8345615567591, -5491.297694321773], [-311.4845615570516, -5556.997694322164]], "source": 1887575216, "length": 76.42743837029825}, {"destination": 1315785211, "path": [[-3474.8345615511766, -1950.09769432275], [-3353.184561554201, -2012.1976943219265]], "source": 1315785543, "length": 26.94226751160411}, {"destination": 1315785262, "path": [[-3474.8345615511766, -1950.09769432275], [-3439.7345615531094, -1891.797694321795]], "source": 1315785543, "length": 14.582712783922988}, {"destination": 1315785246, "path": [[-3474.8345615511766, -1950.09769432275], [-3779.8345615556173, -1791.197694322122]], "source": 1315785543, "length": 67.91726194915448}, {"destination": 1315785271, "path": [[-3474.8345615511766, -1950.09769432275], [-3510.834561552656, -2009.7976943223016]], "source": 1315785543, "length": 14.937781776853646}, {"destination": 481390560, "path": [[-4002.2845615510505, 194.1023056772906], [-4103.184561550677, 221.30230567718456]], "source": 385113971, "length": 20.11936936896495}, {"destination": 1315785477, "path": [[-4002.2845615510505, 194.1023056772906], [-3973.4345615514144, 339.502305678252]], "source": 385113971, "length": 32.797684347050556}, {"destination": 481439262, "path": [[-4002.2845615510505, 194.1023056772906], [-4012.9845615552995, 93.40230567822516]], "source": 385113971, "length": 22.486875462513847}, {"destination": 848698274, "path": [[9196.565438443828, -4407.3976943224125], [9254.465438445437, -4293.497694321857], [9287.315438449185, -4223.697694323292]], "source": 478379193, "length": 44.351875104239525}, {"destination": 1315785512, "path": [[-3337.784561551871, -2552.1976943227996], [-3226.634561556807, -2601.097694322263]], "source": 1315785247, "length": 23.769716523886125}, {"destination": 1315785448, "path": [[-4233.6345615510145, 1197.70230567795], [-4352.184561554395, 1223.552305678055]], "source": 1315785248, "length": 23.266735717200444}, {"destination": 623411698, "path": [[3222.2154384484725, 8642.952305677909], [3145.9654384491387, 8691.552305677418], [3079.5654384476734, 8738.752305676557], [3015.2654384494326, 8785.952305677469]], "source": 622622524, "length": 50.62676231589114}, {"destination": 1404618525, "path": [[3222.2154384484725, 8642.952305677909], [3226.4654384448477, 8534.652305677071], [3244.565438443203, 8405.102305676593], [3256.9654384460023, 8358.40230567797]], "source": 622622524, "length": 63.76460897968651}, {"destination": 1769172185, "path": [[3196.3154384442305, -7904.197694323046], [3220.315438447585, -7926.547694323105]], "source": 1489398796, "length": 6.747765823102021}, {"destination": 495771121, "path": [[6025.265438445615, -3985.647694323191], [6153.8154384450645, -3984.9976943227007], [6626.915438445735, -4020.647694321866]], "source": 478379215, "length": 114.75581564684626}, {"destination": 84488166, "path": [[6025.265438445615, -3985.647694323191], [6080.865438448768, -4054.7476943224583]], "source": 478379215, "length": 18.653302554523453}, {"destination": 84488167, "path": [[6025.265438445615, -3985.647694323191], [5982.165438446429, -3935.447694322747], [5640.565438447709, -3622.2976943225403]], "source": 478379215, "length": 109.08286124698998}, {"destination": 1315785631, "path": [[218.665438445953, -3391.747694323044], [264.265438445932, -3277.047694322022], [370.51543844768275, -3305.9976943228266]], "source": 1315785544, "length": 48.14686756399392}, {"destination": 1317670864, "path": [[2189.2654384458865, -26.797694323121846], [2064.1154384435367, -22.047694322679945]], "source": 475977916, "length": 23.82330850214751}, {"destination": 1317671080, "path": [[2189.2654384458865, -26.797694323121846], [2197.865438446911, -188.2476943233513], [2206.265438445598, -237.99769432208961]], "source": 475977916, "length": 47.120276888778804}, {"destination": 1317671269, "path": [[2189.2654384458865, -26.797694323121846], [2195.7654384436864, 19.10230567681026]], "source": 475977916, "length": 10.282432061902787}, {"destination": 1316471825, "path": [[-1591.4345615541947, 4132.15230567765], [-1650.7345615508484, 4055.8023056771476]], "source": 1316471865, "length": 20.383943858395405}, {"destination": 1316471827, "path": [[-1591.4345615541947, 4132.15230567765], [-1552.3345615520157, 4182.502305678071]], "source": 1316471865, "length": 13.44166373167081}, {"destination": 1316472171, "path": [[-1591.4345615541947, 4132.15230567765], [-1728.584561554669, 4202.552305677898]], "source": 1316471865, "length": 30.422029212931648}, {"destination": 1316471853, "path": [[-1591.4345615541947, 4132.15230567765], [-1475.9345615544817, 4069.4023056779824]], "source": 1316471865, "length": 26.024778668293692}, {"destination": 477636653, "path": [[-7285.184561553137, -6456.747694322474], [-7368.384561551977, -6673.197694322397]], "source": 477633750, "length": 50.669380078297095}, {"destination": 267198558, "path": [[-7285.184561553137, -6456.747694322474], [-6978.834561550684, -6571.147694321766]], "source": 477633750, "length": 63.56450045367239}, {"destination": 1315785213, "path": [[-4365.084561555932, -50.047694323041014], [-4630.634561550551, 66.95230567821397], [-4813.934561553879, 118.30230567788647]], "source": 1315785252, "length": 93.49061831888866}, {"destination": 2354289894, "path": [[-3114.5845615512258, -6568.547694323357], [-3084.7345615541144, -6578.597694321787]], "source": 2354289882, "length": 6.099555335916588}, {"destination": 477636580, "path": [[-7561.134561555605, -6364.847694323217], [-7655.634561551495, -6574.347694321858]], "source": 477633756, "length": 49.9356762998134}, {"destination": 477633764, "path": [[-7561.134561555605, -6364.847694323217], [-7901.084561552807, -6247.897694322546]], "source": 477633756, "length": 69.67626920477271}, {"destination": 477633750, "path": [[-7561.134561555605, -6364.847694323217], [-7285.184561553137, -6456.747694322474]], "source": 477633756, "length": 56.31039755018921}, {"destination": 1316196985, "path": [[-1839.5345615545011, 1122.6523056766523], [-1802.5345615555466, 1191.1523056777896]], "source": 1316237178, "length": 16.780223667930485}, {"destination": 1316195130, "path": [[-1839.5345615545011, 1122.6523056766523], [-2140.084561553124, 1228.7023056778423], [-2240.584561555181, 1261.402305678061]], "source": 1316237178, "length": 82.28118397145398}, {"destination": 1316236660, "path": [[-1839.5345615545011, 1122.6523056766523], [-1457.4345615514517, 965.2023056769821]], "source": 1316237178, "length": 80.66238582540393}, {"destination": 1316236561, "path": [[-1839.5345615545011, 1122.6523056766523], [-1875.7845615553492, 1055.6523056770573]], "source": 1316237178, "length": 16.41751779952339}, {"destination": 1316236508, "path": [[-20.084561555222535, 3074.05230567781], [-197.48456155355143, 3154.7023056770486]], "source": 1316236454, "length": 38.2098308398276}, {"destination": 4824459322, "path": [[-1941.6345615539399, -6918.0976943226115], [-1667.0845615536223, -7008.647694322079], [-1626.3345615570302, -7021.247694321886]], "source": 2354289892, "length": 64.19231329963822}, {"destination": 1887913979, "path": [[-1941.6345615539399, -6918.0976943226115], [-1928.8845615506034, -6894.09769432281]], "source": 2354289892, "length": 5.862983550135168}, {"destination": 1315678828, "path": [[-1941.6345615539399, -6918.0976943226115], [-2006.0345615533492, -7044.447694322997]], "source": 2354289892, "length": 30.651356472203084}, {"destination": 2354289885, "path": [[-1941.6345615539399, -6918.0976943226115], [-2232.984561551632, -6837.397694322789]], "source": 2354289892, "length": 58.232809005355435}, {"destination": 1328999522, "path": [[1442.0154384495731, 7665.752305676677], [1450.6154384434922, 7309.602305676677], [1460.3154384431605, 7234.952305678277]], "source": 623413798, "length": 95.92439901568828}, {"destination": 623412587, "path": [[1442.0154384495731, 7665.752305676677], [1720.5654384468971, 7674.652305677654], [1968.165438448466, 7694.8523056774575], [2182.4654384445807, 7730.402305677231], [2539.8654384432007, 7801.052305676848]], "source": 623413798, "length": 211.61621977971208}, {"destination": 856909486, "path": [[1442.0154384495731, 7665.752305676677], [1450.015438443586, 7857.802305677453], [1455.6154384450792, 7912.052305677264], [1460.9654384472037, 7976.302305676697], [1439.5154384487796, 8017.552305677355], [1380.5154384485263, 8035.952305677441], [1191.665438447842, 8087.00230567716], [886.5654384493382, 8155.602305677689], [641.9154384431636, 8189.452305677136], [507.66543844815715, 8213.302305676962]], "source": 623413798, "length": 262.05145476123556}, {"destination": 622622486, "path": [[1442.0154384495731, 7665.752305676677], [988.0654384488707, 7717.802305677424], [645.1154384450319, 7757.7523056771015], [307.16543844988564, 7801.352305676801]], "source": 623413798, "length": 217.95322941353015}, {"destination": 2354289882, "path": [[-3084.7345615541144, -6578.597694321787], [-3114.5845615512258, -6568.547694323357]], "source": 2354289894, "length": 6.099555335916588}, {"destination": 601097074, "path": [[-3084.7345615541144, -6578.597694321787], [-3066.6845615527905, -6532.597694322461]], "source": 2354289894, "length": 10.790112467091195}, {"destination": 599408842, "path": [[-3084.7345615541144, -6578.597694321787], [-3022.2345615555923, -6597.6476943223615]], "source": 2354289894, "length": 12.616415305089069}, {"destination": 1316623678, "path": [[1731.465438446378, -1199.09769432347], [1784.4154384434319, -983.9976943233353]], "source": 1316623569, "length": 48.88437333758963}, {"destination": 1317671045, "path": [[2729.165438445591, 390.40230567799483], [2667.81543844985, 394.95230567787587]], "source": 1317670780, "length": 11.710584741425576}, {"destination": 1317670902, "path": [[2729.165438445591, 390.40230567799483], [2882.065438448933, 378.9523056774158], [2914.9154384455755, 373.30230567711453]], "source": 1317670780, "length": 35.55988514707698}, {"destination": 1317671421, "path": [[2729.165438445591, 390.40230567799483], [2718.4154384443104, 339.9523056781817]], "source": 1317670780, "length": 11.404902882334769}, {"destination": 2354289912, "path": [[-561.1845615547395, -7119.2476943231495], [-472.68456155080685, -7127.197694321907]], "source": 2354289898, "length": 16.920359929619597}, {"destination": 1883880248, "path": [[-561.1845615547395, -7119.2476943231495], [-580.7845615564133, -7231.647694322163]], "source": 2354289898, "length": 25.27280343621589}, {"destination": 1887596173, "path": [[-561.1845615547395, -7119.2476943231495], [-552.8845615501154, -7040.697694321807], [-505.734561556892, -6697.197694322199]], "source": 2354289898, "length": 94.45522593923553}, {"destination": 477634424, "path": [[-8165.884561556424, -6160.297694322026], [-8076.984561554923, -5886.497694323367]], "source": 477633771, "length": 63.193276714316546}, {"destination": 477633764, "path": [[-8165.884561556424, -6160.297694322026], [-7901.084561552807, -6247.897694322546]], "source": 477633771, "length": 53.988136730649096}, {"destination": 477633780, "path": [[-8165.884561556424, -6160.297694322026], [-8369.634561553596, -6035.147694323228], [-8502.834561554097, -5915.04769432305]], "source": 477633771, "length": 84.5116545357815}, {"destination": 477636511, "path": [[-8165.884561556424, -6160.297694322026], [-8276.484561555719, -6526.547694322815]], "source": 477633771, "length": 84.12147157125662}, {"destination": 1316236349, "path": [[-738.9345615536058, 2225.3523056772196], [-539.0845615522721, 2157.8523056771105]], "source": 1316237000, "length": 40.8644933056042}, {"destination": 477634433, "path": [[-7163.934561553731, -6100.29769432252], [-6769.63456155022, -6206.997694322425]], "source": 477634429, "length": 78.64023949293629}, {"destination": 477633750, "path": [[-7163.934561553731, -6100.29769432252], [-7237.5845615511025, -6324.747694321786], [-7285.184561553137, -6456.747694322474]], "source": 477634429, "length": 82.56194822564831}, {"destination": 1315785484, "path": [[967.0154384480156, -3348.1476943233447], [727.7154384439655, -3272.94769432207]], "source": 1315785256, "length": 48.480691143620774}, {"destination": 477633771, "path": [[-8502.834561554097, -5915.04769432305], [-8369.634561553596, -6035.147694323228], [-8165.884561556424, -6160.297694322026]], "source": 477633780, "length": 84.5116545357815}, {"destination": 156253438, "path": [[-8502.834561554097, -5915.04769432305], [-8697.88456155618, -6603.597694322616]], "source": 477633780, "length": 157.55420925868185}, {"destination": 1317671082, "path": [[2795.7654384493935, -220.6976943224248], [2784.315438447038, -221.4976943228919], [2592.5154384438542, -279.29769432333273], [2477.465438445847, -303.0476943219895]], "source": 1317670782, "length": 63.36436607399541}, {"destination": 1317671003, "path": [[2795.7654384493935, -220.6976943224248], [2812.315438447399, -327.49769432172116], [2820.2654384443804, -382.7476943225605]], "source": 1317670782, "length": 36.33862507413538}, {"destination": 1317671332, "path": [[2795.7654384493935, -220.6976943224248], [2774.76543844557, -127.94769432211694]], "source": 1317670782, "length": 21.009706595849547}, {"destination": 1317671102, "path": [[2795.7654384493935, -220.6976943224248], [2891.6154384432957, -214.14769432226421], [2904.6654384430326, -216.34769432310463]], "source": 1317670782, "length": 20.815488537015863}, {"destination": 2354289898, "path": [[-472.68456155080685, -7127.197694321907], [-561.1845615547395, -7119.2476943231495]], "source": 2354289912, "length": 16.920359929619597}, {"destination": 601097043, "path": [[-472.68456155080685, -7127.197694321907], [-454.0345615566821, -6912.947694322824], [-428.58456155414615, -6711.797694322286]], "source": 2354289912, "length": 92.77353193531442}, {"destination": 2354289915, "path": [[-472.68456155080685, -7127.197694321907], [-427.5845615566709, -7130.447694322584]], "source": 2354289912, "length": 8.606199312926002}, {"destination": 2354289912, "path": [[-427.5845615566709, -7130.447694322584], [-472.68456155080685, -7127.197694321907]], "source": 2354289915, "length": 8.606199312926002}, {"destination": 2354289921, "path": [[-427.5845615566709, -7130.447694322584], [-390.93456155114836, -7133.1976943227455]], "source": 2354289915, "length": 6.995652786627108}, {"destination": 1883856710, "path": [[-427.5845615566709, -7130.447694322584], [-438.4845615561517, -7234.297694322933]], "source": 2354289915, "length": 23.18796713838978}, {"destination": 477636380, "path": [[-8697.88456155618, -6603.597694322616], [-8595.034561551529, -6639.847694323464]], "source": 156253438, "length": 21.152926618798375}, {"destination": 973126787, "path": [[-8697.88456155618, -6603.597694322616], [-8792.834561553775, -6638.69769432246]], "source": 156253438, "length": 19.6697417960095}, {"destination": 156253588, "path": [[-8697.88456155618, -6603.597694322616], [-8733.084561555415, -6727.047694322863], [-8821.334561552874, -6921.497694323264], [-8908.034561549983, -7159.697694323341]], "source": 156253438, "length": 130.12270733361441}, {"destination": 601145294, "path": [[-8697.88456155618, -6603.597694322616], [-8768.38456155582, -6556.74769432224]], "source": 156253438, "length": 16.978054774239236}, {"destination": 1316196944, "path": [[-1713.0845615511703, 1356.7523056767782], [-1679.6345615546215, 1425.0523056773545]], "source": 1316196998, "length": 16.467672010150604}, {"destination": 1316236739, "path": [[-1713.0845615511703, 1356.7523056767782], [-1910.984561554585, 1445.452305677719], [-2383.0845615506746, 1589.952305677045], [-2368.4345615535563, 1633.8523056766974]], "source": 1316196998, "length": 148.005825005482}, {"destination": 1316196949, "path": [[-1713.0845615511703, 1356.7523056767782], [-1760.7845615543738, 1268.4023056781512]], "source": 1316196998, "length": 21.641322508928713}, {"destination": 1316196990, "path": [[-1713.0845615511703, 1356.7523056767782], [-1522.0845615502299, 1271.1523056765373], [-1339.684561550314, 1207.352305677034]], "source": 1316196998, "length": 78.48753746280016}, {"destination": 848690433, "path": [[-1453.534561555614, -2378.4976943233005], [-1735.1845615536376, -2331.5476943217564]], "source": 848690432, "length": 54.56731398761074}, {"destination": 848690442, "path": [[-1453.534561555614, -2378.4976943233005], [-1737.8345615526314, -2293.6476943229422]], "source": 848690432, "length": 57.261571137339686}, {"destination": 599408452, "path": [[-1735.1845615536376, -2331.5476943217564], [-1863.23456155435, -2302.2976943227745]], "source": 848690433, "length": 25.20406098358224}, {"destination": 1315785228, "path": [[-175.63456155045287, -3070.647694322304], [-92.38456155458152, -2793.347694321824]], "source": 1315785259, "length": 63.66827606077635}, {"destination": 1769172092, "path": [[3298.965438446544, -6270.447694323167], [2702.71543844558, -6010.8976943222815]], "source": 4451470239, "length": 127.22275964722974}, {"destination": 1769172062, "path": [[3298.965438446544, -6270.447694323167], [3350.265438449185, -6292.747694322642]], "source": 4451470239, "length": 10.942724249356843}, {"destination": 495629582, "path": [[3298.965438446544, -6270.447694323167], [3192.565438446593, -6437.797694323066], [3149.6154384456077, -6533.197694322368], [3136.765438448208, -6610.247694322169], [3136.765438448208, -6698.2976943226195], [3130.61543844384, -6764.797694323477]], "source": 4451470239, "length": 116.81960397930784}, {"destination": 2629549316, "path": [[7503.915438448416, 2331.502305677802], [7618.865438445255, 2301.9023056782826]], "source": 2629549317, "length": 22.830737812569836}, {"destination": 4063114957, "path": [[7503.915438448416, 2331.502305677802], [7271.665438445041, 2388.402305676607]], "source": 2629549317, "length": 45.946395293769925}, {"destination": 2629549319, "path": [[7503.915438448416, 2331.502305677802], [7569.665438445838, 2484.7023056775442], [7296.215438444165, 2561.252305676831]], "source": 2629549317, "length": 91.01324200872514}, {"destination": 477633780, "path": [[-8220.034561553291, -5089.79769432294], [-8334.884561556066, -5401.747694323333], [-8465.68456155694, -5808.397694321954], [-8502.834561554097, -5915.04769432305]], "source": 156253446, "length": 191.2708575026648}, {"destination": 477635095, "path": [[-8220.034561553291, -5089.79769432294], [-8157.734561550001, -5099.897694321953], [-7849.584561554934, -5171.497694322014]], "source": 156253446, "length": 72.77749570401964}, {"destination": 2629549320, "path": [[7296.215438444165, 2561.252305676831], [7251.615438448766, 2665.6023056776944]], "source": 2629549319, "length": 24.70802913119775}, {"destination": 2629549322, "path": [[7296.215438444165, 2561.252305676831], [7233.165438449873, 2397.8523056769063]], "source": 2629549319, "length": 38.265692333958704}, {"destination": 2629549317, "path": [[7296.215438444165, 2561.252305676831], [7569.665438445838, 2484.7023056775442], [7503.915438448416, 2331.502305677802]], "source": 2629549319, "length": 91.01324200872514}, {"destination": 2629549321, "path": [[7251.615438448766, 2665.6023056776944], [7130.015438448822, 2696.152305677657]], "source": 2629549320, "length": 24.103506073208614}, {"destination": 2629549324, "path": [[7251.615438448766, 2665.6023056776944], [7295.865438443627, 2709.452305676763], [7456.915438446287, 2677.7023056769876]], "source": 2629549320, "length": 44.31255562898256}, {"destination": 2629549319, "path": [[7251.615438448766, 2665.6023056776944], [7296.215438444165, 2561.252305676831]], "source": 2629549320, "length": 24.70802913119775}, {"destination": 1469016667, "path": [[-6301.734561553474, -1167.6476943218718], [-6422.434561550006, -1089.6976943222114]], "source": 1469016620, "length": 28.764025952475023}, {"destination": 1469016717, "path": [[-6301.734561553474, -1167.6476943218718], [-6604.7845615528895, -1509.3976943223452]], "source": 1469016620, "length": 95.38067943804339}, {"destination": 1469016599, "path": [[-6301.734561553474, -1167.6476943218718], [-6138.334561555325, -1004.6476943230687]], "source": 1469016620, "length": 47.745066584398124}, {"destination": 848690444, "path": [[-1737.8345615526314, -2293.6476943229422], [-1858.684561554469, -2266.8476943223936]], "source": 848690442, "length": 23.741451638908565}, {"destination": 599408452, "path": [[-1858.684561554469, -2266.8476943223936], [-1863.23456155435, -2302.2976943227745]], "source": 848690444, "length": 7.9309448606881014}, {"destination": 2629549324, "path": [[7524.815438443966, 2869.4023056772267], [7456.915438446287, 2677.7023056769876]], "source": 2629549325, "length": 44.54505630552336}, {"destination": 654391101, "path": [[7524.815438443966, 2869.4023056772267], [7195.815438443276, 2908.70230567819]], "source": 2629549325, "length": 63.17758637297068}, {"destination": 654391102, "path": [[7524.815438443966, 2869.4023056772267], [7871.765438444811, 2827.9523056777834]], "source": 2629549325, "length": 66.62465543419725}, {"destination": 2629549328, "path": [[7768.565438446729, 2606.1023056769272], [7680.515438444501, 2427.652305676986]], "source": 2629549326, "length": 43.07391190987926}, {"destination": 2629549324, "path": [[7768.565438446729, 2606.1023056769272], [7456.915438446287, 2677.7023056769876]], "source": 2629549326, "length": 61.371773531924845}, {"destination": 654391102, "path": [[7768.565438446729, 2606.1023056769272], [7776.865438444247, 2622.902305677854], [7871.765438444811, 2827.9523056777834]], "source": 2629549326, "length": 53.098409219860585}, {"destination": 2629549328, "path": [[8056.415438446152, 2797.002305676699], [7818.665438449557, 2413.552305677413], [7680.515438444501, 2427.652305676986]], "source": 2629549327, "length": 122.98129272274923}, {"destination": 654391102, "path": [[8056.415438446152, 2797.002305676699], [7871.765438444811, 2827.9523056777834]], "source": 2629549327, "length": 35.78524339368315}, {"destination": 2629549335, "path": [[8056.415438446152, 2797.002305676699], [8354.765438447486, 3441.1523056778747], [8387.165438449529, 3558.602305677283]], "source": 2629549327, "length": 180.91747793398793}, {"destination": 2629549316, "path": [[7680.515438444501, 2427.652305676986], [7618.865438445255, 2301.9023056782826]], "source": 2629549328, "length": 30.3238096225718}, {"destination": 2629549326, "path": [[7680.515438444501, 2427.652305676986], [7768.565438446729, 2606.1023056769272]], "source": 2629549328, "length": 43.07391190987926}, {"destination": 2629549327, "path": [[7680.515438444501, 2427.652305676986], [7818.665438449557, 2413.552305677413], [8056.415438446152, 2797.002305676699]], "source": 2629549328, "length": 122.98129272274923}, {"destination": 483099888, "path": [[-452.3845615551636, 3444.2023056779904], [-704.8845615500454, 3106.552305677468]], "source": 483099864, "length": 89.1323892457874}, {"destination": 1316236857, "path": [[-452.3845615551636, 3444.2023056779904], [-554.584561555771, 3495.302305676518]], "source": 483099864, "length": 22.515514414560833}, {"destination": 1316236929, "path": [[-452.3845615551636, 3444.2023056779904], [-123.48456155564236, 3273.202305678069]], "source": 483099864, "length": 73.20457563026923}, {"destination": 1317671033, "path": [[3394.3654384458455, 638.1523056777638], [3399.5654384497698, 666.4023056774937]], "source": 1317671019, "length": 6.359965436288513}, {"destination": 848690456, "path": [[-1767.934561556217, -2189.647694322616], [-1493.2845615547308, -2227.947694322552], [-798.3845615555651, -2355.0976943234045], [-643.1345615567352, -2400.997694323337], [-434.63456155024005, -2478.5976943224596]], "source": 848690453, "length": 262.5326378596449}, {"destination": 152847559, "path": [[-1767.934561556217, -2189.647694322616], [-1464.2345615527574, -2271.8976943227885], [-876.1845615552488, -2387.747694323039], [-553.6345615553273, -2426.6976943234654], [-238.08456155194335, -2446.1976943221944], [-87.78456155056347, -2499.5976943227306]], "source": 848690453, "length": 328.39148524232365}, {"destination": 475985632, "path": [[8144.51543844541, 3613.8023056775382], [8296.11543844777, 4032.202305676691]], "source": 2629549334, "length": 97.41272827501257}, {"destination": 654391102, "path": [[8144.51543844541, 3613.8023056775382], [8091.565438448356, 3467.702305677278], [8047.215438445221, 3338.552305677922], [7871.765438444811, 2827.9523056777834]], "source": 2629549334, "length": 182.30420838506132}, {"destination": 2629549335, "path": [[8144.51543844541, 3613.8023056775382], [8387.165438449529, 3558.602305677283]], "source": 2629549334, "length": 47.75337164996635}, {"destination": 2629549331, "path": [[8387.165438449529, 3558.602305677283], [8518.065438444466, 4034.002305678186]], "source": 2629549335, "length": 108.61584316836877}, {"destination": 2629549334, "path": [[8387.165438449529, 3558.602305677283], [8144.51543844541, 3613.8023056775382]], "source": 2629549335, "length": 47.75337164996635}, {"destination": 2629549327, "path": [[8387.165438449529, 3558.602305677283], [8354.765438447486, 3441.1523056778747], [8056.415438446152, 2797.002305676699]], "source": 2629549335, "length": 180.91747793398793}, {"destination": 848698091, "path": [[-434.63456155024005, -2478.5976943224596], [-207.13456155618815, -2492.847694322009], [3.4654384464261057, -2492.547694322056], [358.96543844415874, -2486.3476943224327], [509.31543844967564, -2478.5976943224596], [1562.6154384449364, -2445.847694323433], [1752.8154384436334, -2448.3976943230346], [1939.4154384499984, -2457.1976943228437], [2232.0154384445345, -2476.747694322157], [2601.915438447122, -2510.897694323333], [2759.015438449808, -2529.347694322226], [2936.4154384481367, -2547.5976943223345], [3141.715438445658, -2570.0476943217864], [3313.765438448968, -2587.7976943231574], [3483.115438449147, -2598.4476943232694], [3651.115438444208, -2601.297694322824], [3831.365438443868, -2596.997694322312], [4012.5154384469397, -2589.597694322876], [4192.965438448937, -2572.8476943225332], [4371.0654384483405, -2551.247694322356], [4532.015438449833, -2529.647694322179], [4690.665438445762, -2513.297694322958], [4842.615438448661, -2502.9976943233833], [4984.415438443079, -2503.5476943227054], [5138.065438444528, -2510.4976943222114], [5271.465438447365, -2524.347694322415], [5400.86543844609, -2544.1476943228736], [5528.115438444558, -2567.8976943233065], [5659.715438447676, -2593.0476943223366], [5806.565438447819, -2625.7476943225556], [5979.015438448698, -2670.7476943226284], [6124.71543844606, -2710.597694322914], [6339.365438449818, -2777.7476943224856], [6551.415438444508, -2860.7476943225406], [6811.215438446538, -2957.097694322286], [7066.715438448056, -3043.7976943229473], [7307.515438448319, -3107.947694322988], [7451.865438447669, -3145.997694321778], [7749.565438444961, -3216.097694322073], [7842.2154384441, -3237.297694322905]], "source": 848690456, "length": 1603.9202717130204}, {"destination": 4573378112, "path": [[5280.565438447127, 7928.102305676532], [5078.1154384438305, 8158.85230567659]], "source": 4573378111, "length": 64.15724980499044}, {"destination": 4573378113, "path": [[5280.565438447127, 7928.102305676532], [5310.115438447838, 7994.0023056774835]], "source": 4573378111, "length": 15.69624663734414}, {"destination": 1315785563, "path": [[-5116.084561556989, -1751.8976943229347], [-4913.6845615507245, -1859.4476943221139]], "source": 1315785263, "length": 45.31553686363385}, {"destination": 1316471969, "path": [[902.7654384468065, 3397.5523056781753], [928.3654384475426, 3438.3523056771282]], "source": 1316472026, "length": 10.297322085892379}, {"destination": 1316471757, "path": [[902.7654384468065, 3397.5523056781753], [867.7654384499078, 3358.5023056765804], [791.6654384487742, 3391.8023056767056]], "source": 1316472026, "length": 27.19943741665355}, {"destination": 1316471919, "path": [[902.7654384468065, 3397.5523056781753], [1054.7154384497048, 3357.25230567796]], "source": 1316472026, "length": 30.25656413466079}, {"destination": 1320103900, "path": [[1943.4654384440364, 2232.2523056779173], [1957.9654384429546, 2318.9023056779943]], "source": 1320103813, "length": 19.466625514896656}, {"destination": 4273147783, "path": [[420.61543844340576, -1301.3476943228852], [426.7154384436367, -1282.047694322941]], "source": 4273147782, "length": 4.444762973397698}, {"destination": 2049850540, "path": [[4873.015438448647, -6546.797694323203], [4872.66543844811, -6560.0476943217245]], "source": 3344153898, "length": 2.9475884648396304}, {"destination": 1205015989, "path": [[4873.015438448647, -6546.797694323203], [4936.715438446981, -6561.097694323336]], "source": 3344153898, "length": 12.522843566287147}, {"destination": 1320104114, "path": [[2678.6654384451936, 2728.5523056779225], [2527.865438445076, 2713.202305677953]], "source": 1320103815, "length": 28.881911157978987}, {"destination": 1320103802, "path": [[2678.6654384451936, 2728.5523056779225], [2678.565438444025, 2806.5023056775826]], "source": 1320103815, "length": 17.335272286165598}, {"destination": 1320103918, "path": [[2678.6654384451936, 2728.5523056779225], [2682.5154384439998, 2623.0023056772466]], "source": 1320103815, "length": 23.484577554469176}, {"destination": 1319204548, "path": [[5672.665438446245, 1726.4023056782207], [5607.215438445223, 1609.1523056775968]], "source": 482729260, "length": 28.89376680347204}, {"destination": 1319204572, "path": [[5672.665438446245, 1726.4023056782207], [5457.0154384450125, 1794.05230567653], [5344.36543844663, 1830.752305677308], [5330.965438446356, 1798.6523056769954], [5228.9654384480855, 1841.152305678051]], "source": 482729260, "length": 95.76793525270975}, {"destination": 482729263, "path": [[5672.665438446245, 1726.4023056782207], [5768.265438447884, 1860.2023056768503]], "source": 482729260, "length": 34.87065135232218}, {"destination": 1785693354, "path": [[4471.865438446798, -6633.547694322672], [4503.165438443091, -6586.397694322343], [4609.715438448347, -6643.647694323462]], "source": 3344153901, "length": 35.98523739243173}, {"destination": 1785697731, "path": [[4471.865438446798, -6633.547694322672], [4489.215438447047, -6641.247694322061], [4546.465438444613, -6661.997694322963], [4616.865438443085, -6678.397694322768], [4665.815438443133, -6676.897694323003], [4727.515438446517, -6661.997694322963], [4773.115438446495, -6633.347694322111], [4807.615438444656, -6597.047694322456]], "source": 3344153901, "length": 72.0794687091071}, {"destination": 1785697747, "path": [[4593.015438445036, -6842.747694323137], [4589.365438448567, -6820.2476943231], [4575.965438448293, -6785.847694322555], [4560.565438445963, -6746.697694323345]], "source": 3344153902, "length": 22.30071930682187}, {"destination": 1769172134, "path": [[4593.015438445036, -6842.747694323137], [4557.265438450031, -6831.697694321903]], "source": 3344153902, "length": 7.2281970172211425}, {"destination": 1319641025, "path": [[5768.265438447884, 1860.2023056768503], [5523.715438449983, 1947.6523056773942]], "source": 482729263, "length": 50.41071443272866}, {"destination": 1563362026, "path": [[5768.265438447884, 1860.2023056768503], [5986.865438444511, 1787.7523056775146], [6263.1154384433785, 1694.1023056773474]], "source": 482729263, "length": 101.10026716860006}, {"destination": 482729267, "path": [[5768.265438447884, 1860.2023056768503], [5840.015438444369, 1946.252305677021], [5916.715438445408, 2137.3023056767693], [5999.515438446679, 2404.3023056776747]], "source": 482729263, "length": 129.8555072970166}, {"destination": 482729260, "path": [[5768.265438447884, 1860.2023056768503], [5672.665438446245, 1726.4023056782207]], "source": 482729263, "length": 34.87065135232218}, {"destination": 1317671134, "path": [[811.5154384498169, 1083.1023056780964], [1034.1654384475873, 1080.8023056778638], [1042.2154384457372, 1046.4023056773185], [1122.6654384444146, 1044.102305677086], [1122.6654384444146, 1002.8023056776192], [1162.9154384493745, 1005.1023056778519]], "source": 1317670792, "length": 82.3129916048086}, {"destination": 1319641362, "path": [[5999.515438446679, 2404.3023056776747], [5564.265438444238, 2462.402305678069]], "source": 482729267, "length": 83.77867655634746}, {"destination": 482730682, "path": [[5999.515438446679, 2404.3023056776747], [6369.765438449804, 2369.4523056772], [6874.565438444335, 2290.452305677704]], "source": 482729267, "length": 168.43736874645862}, {"destination": 482729263, "path": [[5999.515438446679, 2404.3023056776747], [5916.715438445408, 2137.3023056767693], [5840.015438444369, 1946.252305677021], [5768.265438447884, 1860.2023056768503]], "source": 482729267, "length": 129.8555072970166}, {"destination": 1320103779, "path": [[1594.8154384446411, 3142.852305677124], [1586.7654384464913, 3080.952305676732], [1573.4654384473856, 3021.8523056770864]], "source": 1320103817, "length": 27.235028573258063}, {"destination": 623406700, "path": [[-7554.534561556637, 7774.402305678052], [-7252.434561550558, 7687.002305678092]], "source": 2716408639, "length": 60.65861525860749}, {"destination": 1320104059, "path": [[1470.4154384475032, 2298.302305677069], [1562.1154384461988, 2284.102305678104]], "source": 1320103818, "length": 17.723201862451507}, {"destination": 1320104078, "path": [[1470.4154384475032, 2298.302305677069], [1449.9654384465543, 2202.4023056772535], [1434.3154384448553, 2145.3023056778875]], "source": 1320103818, "length": 34.72160080197815}, {"destination": 1320103982, "path": [[1470.4154384475032, 2298.302305677069], [1452.615438445548, 2301.0523056772313], [1385.115438445439, 2318.252305677504]], "source": 1320103818, "length": 16.835973546014404}, {"destination": 848690593, "path": [[-3376.1345615559435, -1456.9476943222526], [-3272.0845615514804, -1506.9476943221362]], "source": 848690496, "length": 22.697312722537553}, {"destination": 624738901, "path": [[-3376.1345615559435, -1456.9476943222526], [-3288.1345615507485, -1558.5976943217615], [-3140.634561553668, -1681.2476943233178], [-3057.1345615513223, -1727.2476943226422], [-2939.4345615543216, -1783.3476943227565], [-2641.73456155703, -1896.8976943227744], [-2394.984561554736, -1995.4976943221682], [-2120.0345615568494, -2108.997694323378], [-1977.884561554788, -2180.6976943228306], [-1801.534561550966, -2235.1976943220106], [-1367.734561554812, -2342.397694322429]], "source": 848690496, "length": 436.5157304665091}, {"destination": 2932694433, "path": [[11164.01543844603, -4694.397694322561], [9998.815438443387, -5020.347694323135]], "source": 85654851, "length": 233.12125571615883}, {"destination": 3662230614, "path": [[11164.01543844603, -4694.397694322561], [11225.315438444739, -4606.897694323208]], "source": 85654851, "length": 22.683211865826063}, {"destination": 115547719, "path": [[11164.01543844603, -4694.397694322561], [11295.41543844681, -4657.947694322928]], "source": 85654851, "length": 26.26813827315961}, {"destination": 1317670965, "path": [[3273.6654384493136, -47.64769432341609], [3381.5654384454774, -73.39769432235244]], "source": 1317671035, "length": 21.303646337831378}, {"destination": 1317670798, "path": [[3273.6654384493136, -47.64769432341609], [3303.3654384482247, 69.25230567667029]], "source": 1317671035, "length": 26.603950435547414}, {"destination": 1317670983, "path": [[3273.6654384493136, -47.64769432341609], [3222.71543844721, -31.597694322371694], [3144.4654384458204, -29.297694322139023]], "source": 1317671035, "length": 25.21516394830055}, {"destination": 971168073, "path": [[-4799.934561553699, 5753.502305678282], [-4676.034561555298, 6107.90230567737]], "source": 483106120, "length": 82.26263381198783}, {"destination": 483106129, "path": [[-4799.934561553699, 5753.502305678282], [-4166.5845615526105, 5548.8523056776985]], "source": 483106120, "length": 128.77045646587104}, {"destination": 95612191, "path": [[-4799.934561553699, 5753.502305678282], [-4877.184561550507, 5569.952305677361], [-4945.33456155466, 5321.8523056770555]], "source": 483106120, "length": 100.06060795002983}, {"destination": 1316236332, "path": [[-923.9845615525155, 3312.6023056766485], [-848.8845615559626, 3383.7023056779713]], "source": 1316237196, "length": 21.307876525188227}, {"destination": 482732480, "path": [[-2136.6845615560237, 4624.652305677657], [-1924.9345615506286, 4510.702305676517]], "source": 654397600, "length": 47.58225983812291}, {"destination": 654397601, "path": [[-2136.6845615560237, 4624.652305677657], [-2278.8845615551168, 4400.152305677807]], "source": 654397600, "length": 56.78107160518846}, {"destination": 654394586, "path": [[-2136.6845615560237, 4624.652305677657], [-2541.984561553079, 4842.702305676738]], "source": 654397600, "length": 91.06846783292194}, {"destination": 482731602, "path": [[-923.5845615549465, 5737.702305676607], [-664.2845615516535, 6052.602305677723]], "source": 481500495, "length": 85.65343847397347}, {"destination": 482731172, "path": [[-923.5845615549465, 5737.702305676607], [-1075.7845615501083, 5853.002305677535], [-1161.5845615509102, 5908.052305677813], [-1238.8345615548246, 5915.402305676665], [-1397.6345615560604, 5897.0523056771635], [-1758.13456155538, 5816.302305676757]], "source": 481500495, "length": 175.21042190869312}, {"destination": 1324295098, "path": [[-923.5845615549465, 5737.702305676607], [-692.4845615543518, 5613.202305676524]], "source": 481500495, "length": 51.94755459464565}, {"destination": 482731911, "path": [[-923.5845615549465, 5737.702305676607], [-1388.6845615544985, 5223.452305678222]], "source": 481500495, "length": 144.58264242487368}, {"destination": 1315785480, "path": [[-1296.4845615499598, -2939.3476943226915], [-1277.5345615523293, -2855.7976943233143]], "source": 1315785272, "length": 18.92670641001876}, {"destination": 1315785558, "path": [[-1296.4845615499598, -2939.3476943226915], [-1162.6845615566594, -2988.097694322178]], "source": 1315785272, "length": 27.65702309880981}, {"destination": 1315785430, "path": [[-1296.4845615499598, -2939.3476943226915], [-1433.5845615534026, -2889.4476943222003], [-1615.1845615510751, -2830.197694322578]], "source": 1315785272, "length": 65.29568494941563}, {"destination": 1316623482, "path": [[-688.7345615567142, -699.0976943228588], [-673.5345615567212, -631.3976943221888]], "source": 481390471, "length": 15.330823079038804}, {"destination": 1316623210, "path": [[-688.7345615567142, -699.0976943228588], [-978.6845615522566, -644.1976943225569]], "source": 481390471, "length": 56.474933344159275}, {"destination": 1316236368, "path": [[140.8654384462693, 4367.752305677542], [-6.584561553779622, 4420.302305677026]], "source": 1316237198, "length": 30.380969923415144}, {"destination": 481500505, "path": [[-56.68456155660806, 5326.652305678082], [275.815438449456, 5244.102305677956]], "source": 481500502, "length": 65.8498874042654}, {"destination": 1324294850, "path": [[-56.68456155660806, 5326.652305678082], [-44.03456155444019, 5416.002305677736]], "source": 481500502, "length": 20.01584753107759}, {"destination": 1404037003, "path": [[-56.68456155660806, 5326.652305678082], [-146.58456155558497, 5359.4523056776925]], "source": 481500502, "length": 18.589414563590015}, {"destination": 1782221395, "path": [[5842.565438449299, -8130.897694321959], [5844.065438445512, -8132.047694322963], [5847.165438446211, -8135.297694321864], [5851.0654384491545, -8142.797694322468], [5851.765438443124, -8150.99769432237], [5850.815438449786, -8155.097694322322], [5846.615438443337, -8162.497694321757], [5839.665438443831, -8168.197694322643], [5830.865438447574, -8171.547694322711], [5821.265438449074, -8172.147694322618], [5815.215438445875, -8170.99769432339], [5807.065438446557, -8167.197694323391]], "source": 1782221369, "length": 16.172456162554877}, {"destination": 1782221468, "path": [[5842.565438449299, -8130.897694321959], [5858.8154384437985, -8114.347694322177]], "source": 1782221369, "length": 4.805271096119174}, {"destination": 1782221471, "path": [[5842.565438449299, -8130.897694321959], [5836.2654384467305, -8127.197694323129], [5827.015438448769, -8124.947694323481], [5817.3654384461315, -8125.547694323387], [5809.265438443845, -8128.547694322919], [5802.165438446138, -8134.097694322051], [5801.365438443895, -8135.44769432184]], "source": 1782221369, "length": 8.993308810549099}, {"destination": 481500507, "path": [[275.815438449456, 5244.102305677956], [455.1654384457038, 5193.902305677511], [545.2154384499863, 5163.902305676871], [663.3654384486931, 5116.1523056766355], [884.3654384449451, 5034.6523056781225]], "source": 481500505, "length": 124.89981122453122}, {"destination": 476560013, "path": [[275.815438449456, 5244.102305677956], [331.2154384431665, 5589.502305676675], [371.91543844983244, 5846.102305676837], [383.76543844975686, 5918.152305676827]], "source": 481500505, "length": 151.3021352530107}, {"destination": 481500502, "path": [[275.815438449456, 5244.102305677956], [-56.68456155660806, 5326.652305678082]], "source": 481500505, "length": 65.8498874042654}, {"destination": 481500505, "path": [[884.3654384449451, 5034.6523056781225], [663.3654384486931, 5116.1523056766355], [545.2154384499863, 5163.902305676871], [455.1654384457038, 5193.902305677511], [275.815438449456, 5244.102305677956]], "source": 481500507, "length": 124.89981122453122}, {"destination": 481500509, "path": [[884.3654384449451, 5034.6523056781225], [956.3654384479037, 5038.202305676976]], "source": 481500507, "length": 13.716445221030618}, {"destination": 477444694, "path": [[884.3654384449451, 5034.6523056781225], [957.2154384471787, 5274.352305677965], [1032.3654384478687, 5592.002305677468], [1077.2654384467728, 5842.902305676745]], "source": 481500507, "length": 183.59926719262776}, {"destination": 476553962, "path": [[956.3654384479037, 5038.202305676976], [933.5654384443615, 4972.75230567773], [862.2154384454461, 4659.602305677524]], "source": 481500509, "length": 86.13915300498486}, {"destination": 481500507, "path": [[956.3654384479037, 5038.202305676976], [884.3654384449451, 5034.6523056781225]], "source": 481500509, "length": 13.716445221030618}, {"destination": 476555427, "path": [[956.3654384479037, 5038.202305676976], [1065.8154384444174, 5059.452305676615], [2089.065438447335, 5135.802305677117], [2403.465438447938, 5160.5523056768025]], "source": 481500509, "length": 276.7484453710126}, {"destination": 1316471778, "path": [[798.865438447649, 2762.252305677393], [769.0654384475692, 2776.952305676872]], "source": 1316472037, "length": 6.542973120213258}, {"destination": 1316471773, "path": [[798.865438447649, 2762.252305677393], [730.9654384499709, 2615.3523056766658], [684.1154384460424, 2540.0523056777756]], "source": 1316472037, "length": 54.09771570424774}, {"destination": 1316471774, "path": [[798.865438447649, 2762.252305677393], [907.5654384460563, 2708.7523056774644]], "source": 1316472037, "length": 23.852043180837896}, {"destination": 385113975, "path": [[-3220.4345615554075, -1713.7476943229758], [-3266.7345615564614, -1679.4476943218228], [-3313.634561550316, -1641.7476943217935], [-3447.7345615542276, -1482.89769432175], [-3550.9845615564473, -1346.4476943223503], [-3599.38456155362, -1277.7476943224287]], "source": 848690530, "length": 121.43925412398922}, {"destination": 1315785505, "path": [[-4301.03456155706, -4281.697694322517], [-3957.784561556821, -4381.097694322378]], "source": 1315785275, "length": 68.9120731545712}, {"destination": 482733394, "path": [[4891.46543844754, 5543.202305677397], [4873.015438448647, 5585.10230567677], [4779.215438446727, 5798.402305677186]], "source": 481500517, "length": 60.6365188849625}, {"destination": 1324295167, "path": [[4891.46543844754, 5543.202305677397], [4553.365438447088, 5468.652305676614]], "source": 481500517, "length": 66.40724991335865}, {"destination": 1319641111, "path": [[4891.46543844754, 5543.202305677397], [4917.565438447014, 5475.202305676774]], "source": 481500517, "length": 15.916343515261273}, {"destination": 210643104, "path": [[2257.365438445902, -2579.797694322039], [2269.2654384499633, -2549.9976943219594], [2273.3154384440013, -2529.347694322226], [2275.965438442995, -2451.347694321981], [2275.965438442995, -2400.8976943221683], [2278.665438446126, -2383.6976943218956], [2289.4154384474064, -2364.1976943231666], [2305.515438443706, -2348.1476943221223], [2528.115438444445, -2152.047694321979], [2660.8654384432384, -2031.6476943218477], [2706.4654384432174, -1990.347694322381], [2722.5654384466225, -1970.8476943218757], [2734.7654384470843, -1947.5976943219564], [2733.315438447903, -1929.597694322993], [2723.915438444635, -1913.5476943219487], [2701.1154384481983, -1896.3476943234525], [2567.0154384442867, -1804.5976943223964], [2530.8154384475756, -1787.3976943221237], [2513.365438446158, -1781.6476943224302], [2498.615438447871, -1781.6476943224302], [2479.8154384484405, -1785.0976943218911], [2463.7654384491725, -1796.54769432247], [2454.3654384459046, -1808.047694321857], [2438.265438449605, -1836.6976943227087], [2355.115438447797, -1994.947694322846], [2285.365438446263, -2123.3976943229036], [2266.615438443864, -2148.5976943225182], [2253.1654384465583, -2165.797694322791], [2189.4654384482237, -2216.9976943224865], [2120.4154384477647, -2272.4476943221107], [2077.515438443811, -2307.997694321884], [2058.7154384443807, -2317.1976943228146], [1936.8154384480363, -2355.8476943232877], [1820.0654384443737, -2376.7476943223896]], "source": 1883258214, "length": 432.11550506306355}, {"destination": 475974969, "path": [[2257.365438445902, -2579.797694322039], [2783.2154384483943, -2133.047694321988], [2987.765438447809, -1932.0976943220103]], "source": 1883258214, "length": 200.20893814255203}, {"destination": 1328999531, "path": [[4987.8154384472855, 6127.102305677923], [5178.265438445351, 6221.152305677435], [5213.165438448186, 6253.252305677748], [5213.165438448186, 6278.502305677946], [5199.7154384437745, 6319.752305676829], [5131.06543844799, 6428.452305677012]], "source": 1328999407, "length": 94.18847921127625}, {"destination": 2629549331, "path": [[8561.215438447789, 4492.452305678185], [8561.215438447789, 4310.652305678175], [8518.065438444466, 4034.002305678186]], "source": 2629549333, "length": 102.49950216211123}, {"destination": 482731912, "path": [[-2278.8845615551168, 4400.152305677807], [-2078.634561556214, 4302.602305678249]], "source": 654397601, "length": 43.83067217982884}, {"destination": 654397600, "path": [[-2278.8845615551168, 4400.152305677807], [-2136.6845615560237, 4624.652305677657]], "source": 654397601, "length": 56.78107160518846}, {"destination": 654397602, "path": [[-2278.8845615551168, 4400.152305677807], [-2586.6845615567513, 3901.852305677522]], "source": 654397601, "length": 125.32886602343147}, {"destination": 1320103962, "path": [[1647.9654384440323, 2821.2523056776463], [1661.8654384430442, 2876.8023056766624], [1476.2654384483653, 2921.252305677413]], "source": 1320103826, "length": 49.28956822856777}, {"destination": 1320103989, "path": [[1647.9654384440323, 2821.2523056776463], [1814.7154384493547, 2791.902305677496], [1924.0654384446998, 2770.302305677319]], "source": 1320103826, "length": 53.721936371963096}, {"destination": 1316471709, "path": [[1647.9654384440323, 2821.2523056776463], [1642.9654384495507, 2801.152305677235], [1653.6654384466942, 2665.8023056782554]], "source": 1320103826, "length": 34.73776279847421}, {"destination": 1316236422, "path": [[-1546.2345615517847, 3892.902305677737], [-1672.3345615545782, 3993.8523056779472], [-1832.3345615556264, 4064.7523056769332]], "source": 1316237203, "length": 67.12330031275144}, {"destination": 481394324, "path": [[-2127.284561552756, -494.79769432281273], [-2172.18456155166, -480.5476943232634]], "source": 481394037, "length": 9.108360846273484}, {"destination": 475976301, "path": [[-2127.284561552756, -494.79769432281273], [-1996.784561555387, -120.2476943227282], [-1857.6345615528567, 145.70230567656495]], "source": 481394037, "length": 151.7093382078341}, {"destination": 481390839, "path": [[-2127.284561552756, -494.79769432281273], [-1859.134561556175, -562.7976943234358], [-1562.5345615504216, -639.4976943226993]], "source": 481394037, "length": 112.11577018674745}, {"destination": 1320104049, "path": [[3640.265438448864, 4142.602305677201], [3448.565438446849, 4090.4023056782535]], "source": 654400890, "length": 38.26263031541784}, {"destination": 476559359, "path": [[3640.265438448864, 4142.602305677201], [3595.565438445192, 4350.802305676638], [3491.2654384484654, 4550.6023056773865]], "source": 654400890, "length": 95.7360298496865}, {"destination": 1319641142, "path": [[3640.265438448864, 4142.602305677201], [3753.565438444184, 4176.852305677769]], "source": 654400890, "length": 22.854608510193238}, {"destination": 4198258583, "path": [[3640.265438448864, 4142.602305677201], [3704.965438444674, 3922.5023056772557], [3737.9154384495905, 3861.7023056772837]], "source": 654400890, "length": 65.37376497073723}, {"destination": 1315785353, "path": [[-3407.5345615534047, -2687.6476943229477], [-3209.1845615553893, -2770.1976943230734], [-3174.1345615543537, -2715.2976943227713]], "source": 1315785279, "length": 55.85869042886771}, {"destination": 479280217, "path": [[-570.584561550902, -3287.747694322718], [-739.8345615570179, -3214.5976943223077]], "source": 479280511, "length": 36.062220763773716}, {"destination": 602334140, "path": [[-570.584561550902, -3287.747694322718], [-190.68456155224567, -3421.547694323124]], "source": 479280511, "length": 78.12914975936611}, {"destination": 476792268, "path": [[-570.584561550902, -3287.747694322718], [-742.8845615535806, -3644.247694323255]], "source": 479280511, "length": 85.78539205737147}, {"destination": 3421417542, "path": [[-4379.9345615553875, 9040.502305676768], [-4318.98456155011, 9177.202305677312]], "source": 3421417540, "length": 32.53627150288238}, {"destination": 3047470158, "path": [[-4379.9345615553875, 9040.502305676768], [-4330.734561555972, 9019.952305678202], [-4429.58456155651, 8874.202305676703], [-4577.084561553591, 8672.302305678058], [-4535.934561552323, 8635.702305676674], [-4597.184561554002, 8540.402305676764]], "source": 3421417540, "length": 136.3078189617999}, {"destination": 3421417543, "path": [[-4379.9345615553875, 9040.502305676768], [-4593.1845615569955, 9101.30230567674]], "source": 3421417540, "length": 42.75616151253934}, {"destination": 1315785520, "path": [[-3455.684561551209, -4199.697694321713], [-3718.5345615569076, -4147.897694322111]], "source": 1315785193, "length": 51.29237606803822}, {"destination": 1315785287, "path": [[-3455.684561551209, -4199.697694321713], [-3440.8345615517533, -4129.147694323266]], "source": 1315785193, "length": 15.941804702088135}, {"destination": 1315785431, "path": [[-3455.684561551209, -4199.697694321713], [-3471.934561552814, -4283.897694323357]], "source": 1315785193, "length": 18.978540303102882}, {"destination": 1316623524, "path": [[1606.7654384457342, -952.197694322976], [1583.565438444623, -1112.1976943222478]], "source": 1316623595, "length": 35.85493969643754}, {"destination": 773662836, "path": [[1606.7654384457342, -952.197694322976], [1703.9654384447545, -969.597694322033]], "source": 1316623595, "length": 18.88523231049029}, {"destination": 1316623614, "path": [[1606.7654384457342, -952.197694322976], [1317.4154384429926, -900.4476943221817]], "source": 1316623595, "length": 56.215645555845434}, {"destination": 1328999505, "path": [[2166.165438445944, 7131.85230567781], [2174.2154384440937, 7294.702305676637]], "source": 1328999408, "length": 36.24855593163983}, {"destination": 1328999515, "path": [[2166.165438445944, 7131.85230567781], [2402.165438446957, 7108.902305677844]], "source": 1328999408, "length": 45.176499437377245}, {"destination": 1328999428, "path": [[2166.165438445944, 7131.85230567781], [2109.8154384446843, 7106.602305677612], [2099.315438449878, 6979.302305676782]], "source": 1328999408, "length": 40.48047846874153}, {"destination": 1469016626, "path": [[-8269.534561556213, -842.9976943222783], [-8380.684561551278, -796.49769432244]], "source": 5017787782, "length": 23.531159721185084}, {"destination": 5017787783, "path": [[-8269.534561556213, -842.9976943222783], [-8290.134561555362, -877.8976943233374]], "source": 5017787782, "length": 8.694758868341937}, {"destination": 1469016687, "path": [[-8269.534561556213, -842.9976943222783], [-7581.134561554847, -1130.9476943228701]], "source": 5017787782, "length": 145.73442290242045}, {"destination": 602360641, "path": [[8222.115438449862, -8278.9976943225], [8259.665438444586, -8237.747694321839]], "source": 495771015, "length": 11.624842688638925}, {"destination": 602360612, "path": [[8222.115438449862, -8278.9976943225], [7787.865438444896, -8022.24769432236]], "source": 495771015, "length": 100.38765452311253}, {"destination": 5002541034, "path": [[-8381.284561551183, -1032.2976943228923], [-8501.134561555546, -983.447694322237], [-8957.084561551199, -797.6476943234445]], "source": 5017787784, "length": 121.29759475166864}, {"destination": 5017787781, "path": [[-8381.284561551183, -1032.2976943228923], [-8401.884561550332, -1067.147694323367]], "source": 5017787784, "length": 8.684386970497103}, {"destination": 4715107670, "path": [[-8381.284561551183, -1032.2976943228923], [-8357.784561553672, -992.4476943226068]], "source": 5017787784, "length": 9.925634493411941}, {"destination": 5017787784, "path": [[-7997.184561553184, -1137.3976943218622], [-8075.984561550342, -1156.5976943224143], [-8381.284561551183, -1032.2976943228923]], "source": 5017787785, "length": 79.88453407833114}, {"destination": 4715107670, "path": [[-7997.184561553184, -1137.3976943218622], [-8357.784561553672, -992.4476943226068]], "source": 5017787785, "length": 75.77310628948622}, {"destination": 1320103768, "path": [[1581.3654384473352, 4014.502305677681], [1439.015438450042, 4045.9023056769183]], "source": 1320103831, "length": 27.959411520200565}, {"destination": 3569237097, "path": [[-7450.184561555772, -1229.7476943228248], [-7037.734561556874, -512.797694321776]], "source": 5017787788, "length": 177.69062565218945}, {"destination": 479298586, "path": [[-7450.184561555772, -1229.7476943228248], [-7499.184561552852, -1307.3976943225318]], "source": 5017787788, "length": 19.622030811790687}, {"destination": 1890502906, "path": [[-7450.184561555772, -1229.7476943228248], [-7302.184561552849, -1317.1476943227844], [-7111.734561554784, -1436.3976943219113], [-6782.234561555356, -1722.7976943221533]], "source": 5017787788, "length": 168.4399442607055}, {"destination": 2932033124, "path": [[3793.515438445638, 9467.452305678136], [4255.265438445122, 9171.802305678157]], "source": 714080235, "length": 109.71303889846506}, {"destination": 714080390, "path": [[3793.515438445638, 9467.452305678136], [3676.4654384455753, 9451.052305676554]], "source": 714080235, "length": 22.561101329952596}, {"destination": 479280655, "path": [[-190.68456155224567, -3421.547694323124], [-252.3345615514927, -3545.7476943232537], [-307.7345615523086, -3764.0476943234803]], "source": 602334140, "length": 79.68308956826088}, {"destination": 1315785457, "path": [[-190.68456155224567, -3421.547694323124], [-27.38456155526592, -2971.6976943223726], [24.415438446112603, -2817.4476943227946]], "source": 602334140, "length": 140.44040444794905}, {"destination": 479280511, "path": [[-190.68456155224567, -3421.547694323124], [-570.584561550902, -3287.747694322718]], "source": 602334140, "length": 78.12914975936611}, {"destination": 476078767, "path": [[-190.68456155224567, -3421.547694323124], [287.16543844353737, -3528.297694321836]], "source": 602334140, "length": 93.91672053165601}, {"destination": 495646197, "path": [[7959.065438448932, -6065.197694322677], [7956.915438448676, -6088.1476943226435], [7901.865438448396, -6300.89769432196], [7967.315438449418, -6315.597694323216]], "source": 495771025, "length": 66.4449764511389}, {"destination": 1777868876, "path": [[7959.065438448932, -6065.197694322677], [7892.815438445667, -6067.0476943229805], [7810.5154384431335, -6075.097694322906], [7719.565438449649, -6104.29769432308], [6697.165438446007, -6475.697694321881], [6690.915438447575, -6548.497694321753], [6831.715438444518, -7071.397694321746], [7098.165438449655, -7315.997694322007], [7364.115438448948, -7524.297694322612], [7696.315438444401, -7745.997694321715]], "source": 495771025, "length": 616.6583727377607}, {"destination": 495771029, "path": [[7959.065438448932, -6065.197694322677], [8145.365438444685, -6086.647694322877]], "source": 495771025, "length": 35.74391510803882}, {"destination": 1771402887, "path": [[7959.065438448932, -6065.197694322677], [7960.4654384439755, -6041.5476943234125]], "source": 495771025, "length": 5.266991761830187}, {"destination": 1317670926, "path": [[2823.0654384486797, 1250.5523056773882], [2970.1654384481913, 1258.7023056767066]], "source": 1317671296, "length": 28.033775641352598}, {"destination": 477643018, "path": [[-8908.034561549983, -7159.697694323341], [-8597.134561554754, -7262.947694322009], [-8433.434561553098, -7314.997694322756], [-8075.184561555205, -7429.59769432261], [-8005.0845615531325, -7450.747694322857]], "source": 156253588, "length": 183.49115965937986}, {"destination": 874295583, "path": [[-8908.034561549983, -7159.697694323341], [-8915.534561552362, -7176.797694322446]], "source": 156253588, "length": 4.062304776669011}, {"destination": 1771402888, "path": [[8145.365438444685, -6086.647694322877], [8159.7154384454025, -6054.14769432322]], "source": 495771029, "length": 7.725434585652081}, {"destination": 495771025, "path": [[8145.365438444685, -6086.647694322877], [7959.065438448932, -6065.197694322677]], "source": 495771029, "length": 35.74391510803882}, {"destination": 1771400970, "path": [[8145.365438444685, -6086.647694322877], [8662.665438443184, -6194.397694322617]], "source": 495771029, "length": 101.23959166801214}, {"destination": 495646197, "path": [[8145.365438444685, -6086.647694322877], [8133.015438446023, -6115.847694323051], [8061.46543844477, -6336.047694322388], [7967.315438449418, -6315.597694323216]], "source": 495771029, "length": 76.20033170088212}, {"destination": 1320103952, "path": [[1881.8154384447894, 3904.402305677124], [1865.015438447415, 3851.3523056771246]], "source": 1320103833, "length": 12.222729494860602}, {"destination": 1320103971, "path": [[1881.8154384447894, 3904.402305677124], [1916.6654384434878, 4051.202305676682]], "source": 1320103833, "length": 33.31300409157226}, {"destination": 1320103891, "path": [[1881.8154384447894, 3904.402305677124], [2095.5154384481034, 3868.2523056774444]], "source": 1320103833, "length": 41.43037076104704}, {"destination": 2932694433, "path": [[9207.915438445014, -4794.04769432179], [9764.715438443262, -4624.397694323435], [9800.915438447078, -4622.097694323202], [9831.765438448769, -4632.44769432336], [9862.615438443356, -4658.797694322203], [9998.815438443387, -5020.347694323135]], "source": 2932694426, "length": 218.36786805215348}, {"destination": 476913931, "path": [[9207.915438445014, -4794.04769432179], [9195.66543844752, -5082.197694322943]], "source": 2932694426, "length": 64.12401795183469}, {"destination": 479282332, "path": [[-2720.6345615553573, -2777.9976943218544], [-2652.534561555342, -2578.44769432225]], "source": 1315785278, "length": 46.22877916212695}, {"destination": 1315785311, "path": [[-2720.6345615553573, -2777.9976943218544], [-2774.684561551055, -2749.54769432334], [-2849.3345615530075, -2725.64769432293]], "source": 1315785278, "length": 27.227316852033816}, {"destination": 1320103800, "path": [[2712.3154384440795, 1846.5523056772072], [2805.7154384484306, 1859.6523056775281]], "source": 1320103834, "length": 18.000218572967047}, {"destination": 1316471899, "path": [[2712.3154384440795, 1846.5523056772072], [2707.915438449504, 1874.4023056775916]], "source": 1320103834, "length": 6.249895916429223}, {"destination": 1320104052, "path": [[2712.3154384440795, 1846.5523056772072], [2726.31543844426, 1757.9023056768506]], "source": 1320103834, "length": 19.89390044222157}, {"destination": 475975057, "path": [[-591.9845615522945, -268.6476943232208], [-566.7345615520958, -150.1476943222002]], "source": 1316623266, "length": 26.787273290861467}, {"destination": 1316623555, "path": [[-591.9845615522945, -268.6476943232208], [-725.2845615539627, -244.99769432217988], [-800.3845615505156, -212.8476943230595], [-845.9845615504946, -187.64769432344508], [-934.4845615544273, -155.54769432313265]], "source": 1316623266, "length": 70.46822024107895}, {"destination": 1489398792, "path": [[3461.2654384460484, -7372.19769432329], [3514.4654384495766, -7393.547694322322], [3580.165438449967, -7403.897694322481], [3631.115438444965, -7396.997694321783], [3670.015438444807, -7372.947694323173], [3686.115438448212, -7346.54769432197], [3710.265438449767, -7299.547694323393], [3708.9154384446488, -7273.147694322191], [3702.2154384445116, -7226.147694321839], [3635.1654384461085, -7184.897694322955], [3582.815438448961, -7163.097694322218], [3531.8654384468573, -7171.097694323336], [3470.1654384434732, -7175.697694322025]], "source": 1489398803, "length": 125.65845032673792}, {"destination": 1489398789, "path": [[3461.2654384460484, -7372.19769432329], [3459.4654384463297, -7315.5976943226615], [3448.715438445049, -7281.197694322117], [3429.9654384497558, -7260.547694322384]], "source": 1489398803, "length": 26.324333398577295}, {"destination": 1581175183, "path": [[3461.2654384460484, -7372.19769432329], [3447.465438448205, -7405.347694323438], [3420.5154384494563, -7436.397694322139], [3398.115438443483, -7463.447694322056], [3370.165438447259, -7486.547694321999]], "source": 1489398803, "length": 31.186844545855408}, {"destination": 624739067, "path": [[-3272.0845615514804, -1506.9476943221362], [-3232.1845615541633, -1541.6476943226344], [-3111.1345615499886, -1652.5976943224664], [-3034.9845615518234, -1699.7476943227953], [-2919.33456155391, -1756.9476943233299], [-2816.7845615527654, -1802.2976943221636], [-2457.784561556764, -1935.3476943226865]], "source": 848690593, "length": 184.2125560643572}, {"destination": 1315785414, "path": [[-3272.0845615514804, -1506.9476943221362], [-3202.3845615540836, -1428.8476943224991], [-3146.5845615556987, -1355.44769432272], [-3039.5845615558414, -1063.3476943233688]], "source": 848690593, "length": 109.3901186787393}, {"destination": 654401048, "path": [[3286.615438447882, 4061.552305676841], [3305.1154384438064, 3989.252305677482]], "source": 1320103835, "length": 16.459186693446533}, {"destination": 654405017, "path": [[3286.615438447882, 4061.552305676841], [3156.1654384475446, 4432.952305677418]], "source": 1320103835, "length": 86.24145963290196}, {"destination": 1320103995, "path": [[3286.615438447882, 4061.552305676841], [3193.2654384476677, 4028.252305676716], [3112.8154384489903, 3982.4023056773685], [3089.465438449679, 3973.4023056769984]], "source": 1320103835, "length": 42.49481497920049}, {"destination": 1320103607, "path": [[3286.615438447882, 4061.552305676841], [3393.465438449539, 4071.7523056770233]], "source": 1320103835, "length": 20.44795492802759}, {"destination": 475984763, "path": [[7082.015438449218, 1392.5023056771124], [6742.865438447154, 1029.4523056781914], [6570.215438443938, 886.7023056779999]], "source": 476561132, "length": 149.00946632633745}, {"destination": 654391797, "path": [[7082.015438449218, 1392.5023056771124], [7146.015438443954, 1466.8523056773352], [7547.665438444539, 2158.4523056770167]], "source": 476561132, "length": 192.26006955507123}, {"destination": 476561131, "path": [[7082.015438449218, 1392.5023056771124], [6598.8654384483425, 1571.6523056781284]], "source": 476561132, "length": 100.14999666144884}, {"destination": 3283676144, "path": [[3407.065438445045, -6201.697694322661], [3376.5654384438903, -6250.597694322124]], "source": 3283676143, "length": 12.324798456193992}, {"destination": 1785697755, "path": [[3407.065438445045, -6201.697694322661], [4365.215438447478, -6627.197694323073]], "source": 3283676143, "length": 205.2966810621618}, {"destination": 4451470238, "path": [[3407.065438445045, -6201.697694322661], [3421.9154384445005, -6177.847694322835]], "source": 3283676143, "length": 6.0087454157882325}, {"destination": 1317671216, "path": [[2664.815438443213, 37.20230567694216], [2664.815438443213, 87.6523056767553]], "source": 1317671363, "length": 11.220066850478286}, {"destination": 1317671057, "path": [[2664.815438443213, 37.20230567694216], [2608.465438449059, 32.602305678253174], [2485.0654384493964, 41.8023056774075]], "source": 1317671363, "length": 34.3210673823673}, {"destination": 1317671442, "path": [[2664.815438443213, 37.20230567694216], [2946.4154384442054, 34.90230567670949]], "source": 1317671363, "length": 53.554776149545496}, {"destination": 1317671321, "path": [[2664.815438443213, 37.20230567694216], [2646.015438443783, 9.65230567828712], [2482.265438445097, 9.65230567828712]], "source": 1317671363, "length": 38.23471922608201}, {"destination": 482729690, "path": [[6223.115438444893, 3039.2023056773355], [6262.7654384499465, 3034.352305677501], [7104.315438446918, 2923.2023056771086]], "source": 482729885, "length": 169.56372812057995}, {"destination": 482729685, "path": [[6223.115438444893, 3039.2023056773355], [6122.165438448235, 3051.5023056771897], [5861.11543844936, 3089.3523056771955], [5669.715438443745, 3102.802305678054], [5566.965438447369, 3090.0523056782704], [5226.065438449723, 3065.402305677978]], "source": 482729885, "length": 191.0838054235677}, {"destination": 1319641206, "path": [[6223.115438444893, 3039.2023056773355], [6300.215438443502, 3417.502305676834], [6204.965438449506, 3425.452305677368], [6114.115438442979, 3433.0523056773645], [6020.065438448796, 3440.9023056767296], [5854.015438444549, 3454.802305677518], [5727.315438448954, 3446.902305677568], [5524.21543844872, 3434.2023056765925], [5232.2654384440175, 3413.30230567749]], "source": 482729885, "length": 289.2721994402804}, {"destination": 1315785282, "path": [[-2560.0845615514345, -705.9976943217805], [-2468.6345615521077, -729.4476943222605]], "source": 1315785289, "length": 18.156261773161713}, {"destination": 1765485347, "path": [[6555.765438449157, -6123.697694322416], [6401.915438445371, -6136.347694322808]], "source": 495771066, "length": 29.388918687311183}, {"destination": 1765485347, "path": [[6555.765438449157, -6123.697694322416], [6544.41543844797, -6161.247694322469], [6532.165438443371, -6183.547694321945], [6513.515438449247, -6195.7976943229905], [6492.265438446055, -6202.347694323152], [6468.565438446205, -6198.997694323083], [6445.365438445095, -6187.69769432248], [6429.015438449425, -6175.997694322533], [6419.765438444358, -6164.247694322001], [6401.915438445371, -6136.347694322808]], "source": 495771066, "length": 46.79773686882074}, {"destination": 1765485334, "path": [[6555.765438449157, -6123.697694322416], [6612.315438445648, -6143.347694322898], [6661.815438448571, -6156.0976943226815], [6699.5154384485995, -6161.297694323053], [6753.415438446098, -6161.547694322422], [6821.165438445576, -6148.297694322125]], "source": 495771066, "length": 52.162167421718294}, {"destination": 1771400911, "path": [[6555.765438449157, -6123.697694322416], [6614.1154384453675, -6110.697694323264], [6678.265438445407, -6085.247694322505], [6659.465438445977, -6048.547694321726]], "source": 495771066, "length": 33.82374415734438}, {"destination": 602360609, "path": [[7199.515438443882, -7456.697694323111], [7330.565438444126, -7554.947694321967], [7637.615438447654, -7782.347694321956], [7744.715438448679, -7887.697694322071]], "source": 495771069, "length": 141.42268796028873}, {"destination": 1890844100, "path": [[-7286.584561555287, -2827.3476943230235], [-7280.584561556225, -2817.1476943228413], [-7276.384561556881, -2813.4976943228194], [-7267.084561554782, -2808.9476943229383], [-7257.934561550883, -2807.397694322589]], "source": 1890844095, "length": 7.48742805455162}, {"destination": 1890844109, "path": [[-7286.584561555287, -2827.3476943230235], [-7287.134561551056, -2838.097694322528], [-7283.184561551081, -2847.3476943222663], [-7278.134561552462, -2852.797694322007], [-7269.234561555038, -2857.947694321794]], "source": 1890844095, "length": 8.169485150679375}, {"destination": 1890935383, "path": [[-7286.584561555287, -2827.3476943230235], [-7314.284561552142, -2823.997694322955], [-7354.6345615511655, -2824.0476943217627]], "source": 1890844095, "length": 12.992530229841933}, {"destination": 1317671096, "path": [[2256.3654384484266, 447.80230567731394], [2260.0154384448956, 473.50230567744234]], "source": 1317670816, "length": 5.756720528308633}, {"destination": 1317671107, "path": [[2256.3654384484266, 447.80230567731394], [2061.715438443912, 461.3523056775648]], "source": 1317670816, "length": 37.13977967347295}, {"destination": 1317670894, "path": [[2256.3654384484266, 447.80230567731394], [2253.21543844359, 425.5023056778384]], "source": 1317670816, "length": 4.994722612667136}, {"destination": 1890844121, "path": [[-7257.934561550883, -2807.397694322589], [-7242.784561555027, -2810.147694322751], [-7234.134561556971, -2815.5976943224914], [-7230.184561556996, -2819.997694322396], [-7225.784561555315, -2831.047694321853], [-7226.534561553422, -2840.1976943222]], "source": 1890844100, "length": 10.864312379803536}, {"destination": 1890935411, "path": [[-7257.934561550883, -2807.397694322589], [-7250.034561550933, -2779.8976943227417], [-7250.034561550933, -2761.5476943232406], [-7258.084561556188, -2722.54769432223], [-7268.834561550364, -2680.1476943223433], [-7271.634561554663, -2665.2476943223037]], "source": 1890844100, "length": 32.190366677464915}, {"destination": 1890844095, "path": [[-7257.934561550883, -2807.397694322589], [-7267.084561554782, -2808.9476943229383], [-7276.384561556881, -2813.4976943228194], [-7280.584561556225, -2817.1476943228413], [-7286.584561555287, -2827.3476943230235]], "source": 1890844100, "length": 7.48742805455162}, {"destination": 1315785339, "path": [[-3871.5845615513444, -1421.5976943230403], [-4031.534561555361, -1327.5476943217514]], "source": 1315785292, "length": 36.91438265275391}, {"destination": 1315678760, "path": [[-1345.7345615535132, -6476.34769432237], [-1285.634561554616, -6319.947694322536]], "source": 267195118, "length": 36.61087422672781}, {"destination": 479279560, "path": [[-1345.7345615535132, -6476.34769432237], [-1689.3845615513214, -6395.147694322034]], "source": 267195118, "length": 67.7928728971426}, {"destination": 1315678630, "path": [[-1345.7345615535132, -6476.34769432237], [-1466.8845615517512, -6746.597694322176]], "source": 267195118, "length": 64.36440262647439}, {"destination": 1890844121, "path": [[-6992.434561553296, -2901.9976943231995], [-7018.284561553401, -2895.197694321894], [-7030.134561553325, -2892.047694322386], [-7226.534561553422, -2840.1976943222]], "source": 1890844107, "length": 46.59116770367061}, {"destination": 5021317166, "path": [[-6992.434561553296, -2901.9976943231995], [-7156.234561556119, -3129.147694322043], [-7207.034561552917, -3207.0476943228955], [-7219.084561555178, -3220.797694321931], [-7233.984561551665, -3232.297694323094], [-7254.084561552077, -3236.947694322367], [-7270.384561550713, -3238.8976943220628], [-7290.78456155463, -3233.447694322322], [-7318.0845615539165, -3220.2976943231934]], "source": 1890844107, "length": 103.92818114608745}, {"destination": 1891590953, "path": [[-6992.434561553296, -2901.9976943231995], [-6940.134561553179, -2832.0476943228814], [-6934.784561551055, -2813.6976943233803], [-6935.9845615508675, -2755.797694321771]], "source": 1890844107, "length": 35.54679328298478}, {"destination": 4273147819, "path": [[474.0654384463028, -1516.0476943218982], [456.06543844911585, -1529.3976943233645], [433.11543844737344, -1548.3976943233556], [423.0654384471677, -1571.697694322083], [417.3654384445058, -1583.9476943231289], [514.8154384500003, -1589.4476943234536], [529.1654384436129, -1590.697694322074]], "source": 4273147810, "length": 40.372420546251924}, {"destination": 4273147789, "path": [[474.0654384463028, -1516.0476943218982], [478.91543844968965, -1493.9976943217914], [452.66543844491025, -1489.847694323032], [457.2654384489283, -1468.6476943222006], [465.81543844581574, -1421.6476943218481], [472.1154384483839, -1407.9476943233972], [477.81543844394037, -1390.947694321909]], "source": 4273147810, "length": 32.64683696209544}, {"destination": 4273147830, "path": [[474.0654384463028, -1516.0476943218982], [491.06543844601447, -1520.1976943224338], [530.4654384445939, -1527.2476943231084], [542.015438448118, -1528.4976943217289]], "source": 4273147810, "length": 13.229818630986383}, {"destination": 1469016754, "path": [[-6609.134561550434, -1636.197694322661], [-6798.534561553993, -1545.6976943220013]], "source": 1469016653, "length": 41.259030526557844}, {"destination": 1469016734, "path": [[-6609.134561550434, -1636.197694322661], [-6540.434561550512, -1559.8476943221585]], "source": 1469016653, "length": 21.423669018666292}, {"destination": 1469016583, "path": [[-6609.134561550434, -1636.197694322661], [-6486.534561553015, -1694.7976943217923]], "source": 1469016653, "length": 26.709101458735066}, {"destination": 3560335842, "path": [[1151.1654384435133, 5844.152305677142], [1091.8654384468596, 5592.052305678052], [1077.1654384456042, 5540.252305676674]], "source": 477444686, "length": 69.04171557875756}, {"destination": 477444694, "path": [[1151.1654384435133, 5844.152305677142], [1077.2654384467728, 5842.902305676745]], "source": 477444686, "length": 14.057498188316615}, {"destination": 1890844107, "path": [[-7226.534561553422, -2840.1976943222], [-7030.134561553325, -2892.047694322386], [-7018.284561553401, -2895.197694321894], [-6992.434561553296, -2901.9976943231995]], "source": 1890844121, "length": 46.59116770367061}, {"destination": 1890844100, "path": [[-7226.534561553422, -2840.1976943222], [-7225.784561555315, -2831.047694321853], [-7230.184561556996, -2819.997694322396], [-7234.134561556971, -2815.5976943224914], [-7242.784561555027, -2810.147694322751], [-7257.934561550883, -2807.397694322589]], "source": 1890844121, "length": 10.864312379803536}, {"destination": 1890844109, "path": [[-7226.534561553422, -2840.1976943222], [-7228.884561556015, -2845.597694323132], [-7239.2845615567585, -2855.7476943227302], [-7253.684561554508, -2860.1476943226344], [-7269.234561555038, -2857.947694321794]], "source": 1890844121, "length": 10.188053484425108}, {"destination": 475977000, "path": [[-1223.084561551957, 71.45230567751071], [-1115.0845615546245, 291.30230567808724], [-1005.0345615510992, 497.0023056767303]], "source": 385113562, "length": 103.33693777213418}, {"destination": 475976301, "path": [[-1223.084561551957, 71.45230567751071], [-1385.5845615537987, 28.25230567715664], [-1561.5345615529463, 17.25230567828362], [-1711.7345615531576, 57.60230567730673], [-1857.6345615528567, 145.70230567656495]], "source": 385113562, "length": 129.81835762196113}, {"destination": 1315678810, "path": [[-3699.984561556846, -7613.747694323436], [-4250.934561554232, -7548.047694323046]], "source": 1315678799, "length": 105.77213175187404}, {"destination": 482729435, "path": [[4741.715438449035, 1123.0023056771897], [4026.115438449551, 1288.9523056767162]], "source": 482729441, "length": 141.00548512380905}, {"destination": 2971714382, "path": [[4741.715438449035, 1123.0023056771897], [4717.815438446849, 1082.5023056781902]], "source": 482729441, "length": 10.088648602474606}, {"destination": 475979135, "path": [[4741.715438449035, 1123.0023056771897], [4910.865438446876, 1446.202305677602], [4931.5654384471945, 1485.202305676836]], "source": 482729441, "length": 88.27151519235389}, {"destination": 1320103684, "path": [[1892.2154384455325, 3044.8523056776367], [1970.6654384492595, 3046.2023056774256]], "source": 1320103846, "length": 14.922690360646211}, {"destination": 1320103628, "path": [[1892.2154384455325, 3044.8523056776367], [1854.9654384472092, 3044.2523056777304], [1728.9154384485528, 3058.002305676766]], "source": 1320103846, "length": 31.252250783818184}, {"destination": 1320104094, "path": [[1892.2154384455325, 3044.8523056776367], [1900.5654384471882, 3090.102305677078], [1739.6154384456963, 3115.352305677277]], "source": 1320103846, "length": 41.30864208484062}, {"destination": 1316694012, "path": [[92.66543844432817, 62.40230567655658], [-167.33456155293425, 62.40230567655658], [-183.6345615515711, 62.40230567655658], [-210.2345615568879, 65.70230567781721]], "source": 1316693990, "length": 57.65663186334554}, {"destination": 63301576, "path": [[11474.865438444227, -4404.847694322811], [11383.4154384449, -4373.447694321797]], "source": 109354129, "length": 18.739109645349142}, {"destination": 115547719, "path": [[11474.865438444227, -4404.847694322811], [11295.41543844681, -4657.947694322928]], "source": 109354129, "length": 65.82237120596935}, {"destination": 1404037117, "path": [[-103.08456155172507, 5257.702305677014], [-132.58456155540443, 5184.302305677235]], "source": 1404036972, "length": 17.26076541362302}, {"destination": 1890502906, "path": [[-8833.934561550905, -671.2476943224743], [-8643.184561556438, -743.7976943229785], [-8421.934561553713, -826.3476943231041], [-8188.034561555924, -919.0976943234119], [-7951.184561555636, -1014.4476943221292], [-7717.834561553616, -1117.6476943219882], [-7561.284561553804, -1193.8476943225141], [-7231.034561556271, -1402.0476943219505], [-6782.234561555356, -1722.7976943221533]], "source": 1890531922, "length": 457.8899645651529}, {"destination": 103896524, "path": [[-8833.934561550905, -671.2476943224743], [-8707.984561553418, -738.047694323285], [-8533.33456155525, -817.1476943221734], [-8356.084561555122, -902.0476943231159], [-8166.1845615528255, -992.1476943226537]], "source": 1890531922, "length": 145.702544523696}, {"destination": 1319204488, "path": [[3938.7154384442624, 2181.8523056769122], [4277.215438449389, 2319.8523056766617], [4385.965438444828, 2326.952305677921], [4445.665438446156, 2318.2023056769194], [4505.615438446853, 2310.7523056768996]], "source": 476560879, "length": 115.09982923641985}, {"destination": 4252530974, "path": [[3938.7154384442624, 2181.8523056769122], [3887.415438448727, 2308.7523056766204], [3827.31543844983, 2493.752305676722], [3803.4154384476437, 2672.2523056772475], [3800.065438447575, 2744.6023056771905]], "source": 476560879, "length": 128.61881897630587}, {"destination": 1320104095, "path": [[3938.7154384442624, 2181.8523056769122], [3958.6654384464737, 2125.1023056780837]], "source": 476560879, "length": 13.178597338052953}, {"destination": 495771121, "path": [[6614.565438447073, -4092.647694323048], [6626.915438445735, -4020.647694321866]], "source": 495771120, "length": 16.183080372604426}, {"destination": 84488166, "path": [[6614.565438447073, -4092.647694323048], [6437.065438447576, -4080.3976943220023], [6080.865438448768, -4054.7476943224583]], "source": 495771120, "length": 101.83512630226288}, {"destination": 1776086120, "path": [[4514.415438443109, -6561.297694322121], [3821.0154384472617, -6258.397694322682], [3746.765438449984, -6288.44769432213]], "source": 1776086140, "length": 163.6782316481055}, {"destination": 1315785218, "path": [[1207.7654384441416, -3217.397694323054], [808.1154384456113, -3086.697694323348]], "source": 1315785299, "length": 81.36581315170494}, {"destination": 1320104106, "path": [[1916.6654384434878, 3454.802305677518], [1854.9654384472092, 3470.852305676786], [1841.5654384469349, 3498.4023056772176]], "source": 1320103701, "length": 18.900356073648673}, {"destination": 1315678666, "path": [[-3164.034561550011, -7410.497694323226], [-2774.134561555286, -7479.847694321862]], "source": 1315678804, "length": 75.72337148622792}, {"destination": 1315678655, "path": [[-3164.034561550011, -7410.497694323226], [-3202.734561554621, -7522.847694323431]], "source": 1315678804, "length": 26.04658729090788}, {"destination": 1890935355, "path": [[-7963.48456155016, -1462.5476943219696], [-7994.634561555358, -1455.5976943224637]], "source": 1890935454, "length": 6.122415382843473}, {"destination": 476913933, "path": [[9241.4154384457, -5318.9476943220625], [9377.515438444561, -5277.447694322035]], "source": 1784595711, "length": 27.475895161178325}, {"destination": 848690530, "path": [[-2981.934561553601, -1861.6476943229543], [-3116.784561555619, -1781.1476943219163], [-3220.4345615554075, -1713.7476943229758]], "source": 848690687, "length": 56.03688153689769}, {"destination": 1315785318, "path": [[-2981.934561553601, -1861.6476943229543], [-3075.1845615526463, -2003.6976943220707]], "source": 848690687, "length": 36.22729122123467}, {"destination": 4273147824, "path": [[529.1654384436129, -1590.697694322074], [527.0154384433567, -1631.747694322172], [582.2154384489409, -1635.447694322778], [592.2154384450096, -1638.4976943228935]], "source": 4273147819, "length": 21.685136230891406}, {"destination": 4273147810, "path": [[529.1654384436129, -1590.697694322074], [514.8154384500003, -1589.4476943234536], [417.3654384445058, -1583.9476943231289], [423.0654384471677, -1571.697694322083], [433.11543844737344, -1548.3976943233556], [456.06543844911585, -1529.3976943233645], [474.0654384463028, -1516.0476943218982]], "source": 4273147819, "length": 40.37242054625192}, {"destination": 4273214077, "path": [[529.1654384436129, -1590.697694322074], [534.9154384433064, -1574.147694322292], [540.5154384447997, -1538.2976943225658]], "source": 4273147819, "length": 11.880774790059345}, {"destination": 1315785400, "path": [[-4253.534561556194, -4199.1476943223915], [-4003.1845615544626, -4278.54769432301]], "source": 1315785302, "length": 50.77448320287283}, {"destination": 1315785274, "path": [[-4658.8845615502805, -1549.6976943225604], [-4738.184561553282, -1642.2476943223073]], "source": 479288842, "length": 25.515564205679745}, {"destination": 479292469, "path": [[-4658.8845615502805, -1549.6976943225604], [-4985.584561552514, -1379.5476943219142]], "source": 479288842, "length": 72.74358952511889}, {"destination": 479286446, "path": [[-4658.8845615502805, -1549.6976943225604], [-4360.684561554252, -1705.347694322512]], "source": 479288842, "length": 66.43716924845285}, {"destination": 1315678745, "path": [[-4840.4845615550585, -4945.747694321767], [-4609.1345615550945, -5038.3476943220985]], "source": 1315678807, "length": 48.57299737106203}, {"destination": 267198015, "path": [[-4840.4845615550585, -4945.747694321767], [-4901.6845615526, -5047.7476943218135]], "source": 1315678807, "length": 25.49471541035641}, {"destination": 677799505, "path": [[-307.7345615523086, -3764.0476943234803], [-384.1845615539796, -3877.3476943223527]], "source": 479280655, "length": 29.089616838066576}, {"destination": 602334140, "path": [[-307.7345615523086, -3764.0476943234803], [-252.3345615514927, -3545.7476943232537], [-190.68456155224567, -3421.547694323124]], "source": 479280655, "length": 79.68308956826088}, {"destination": 4858951665, "path": [[-307.7345615523086, -3764.0476943234803], [-196.08456155140175, -3784.997694323167], [-22.18456155134163, -3820.597694321748], [239.31543844923908, -3880.8476943223977], [434.5154384495231, -3921.2476943220054]], "source": 479280655, "length": 145.4285848629518}, {"destination": 5021317160, "path": [[-8452.784561555403, -4178.947694322588], [-8434.984561553449, -4234.29769432282]], "source": 5021317165, "length": 12.765903693724146}, {"destination": 5021317164, "path": [[-8452.784561555403, -4178.947694322588], [-8347.784561550498, -4151.347694323348], [-8272.584561552776, -4126.647694322472], [-8211.784561552804, -4102.997694323207]], "source": 5021317165, "length": 48.90835175036966}, {"destination": 5021317158, "path": [[-8452.784561555403, -4178.947694322588], [-8548.88456155578, -4192.647694322815], [-8659.134561554538, -4198.697694322462], [-8732.834561556047, -4196.347694323421]], "source": 5021317165, "length": 53.5570745145047}, {"destination": 1315785352, "path": [[-862.2345615520999, -3024.797694322956], [-762.08456155058, -3058.5976943218184]], "source": 1315785304, "length": 20.47416363014644}, {"destination": 495640875, "path": [[2929.6654384438625, -5635.997694323436], [3018.2154384448268, -5689.197694323411]], "source": 1581175394, "length": 20.578883632299608}, {"destination": 1581175309, "path": [[2929.6654384438625, -5635.997694323436], [2861.2654384474467, -5708.24769432221], [2822.365438447605, -5712.847694322676], [2771.4154384455014, -5723.147694322251]], "source": 1581175394, "length": 38.093839180268844}, {"destination": 1721498093, "path": [[2929.6654384438625, -5635.997694323436], [2766.815438448589, -5525.697694322318], [3057.8654384498805, -5263.0976943230935], [3247.265438446334, -5114.247694322671], [3354.0154384468224, -5023.39769432325], [3424.3154384441254, -4954.2976943222075], [3928.1154384482875, -4515.897694322035]], "source": 1581175394, "length": 354.5705485787067}, {"destination": 1581175343, "path": [[2929.6654384438625, -5635.997694323436], [2867.0154384471402, -5650.147694321817], [2820.0654384491486, -5698.297694323173], [2703.4154384466547, -5721.2476943231395], [2645.7154384473824, -5744.147694322521], [2623.915438448421, -5787.397694323459]], "source": 1581175394, "length": 71.59338767620692}, {"destination": 1320103835, "path": [[3305.1154384438064, 3989.252305677482], [3286.615438447882, 4061.552305676841]], "source": 654401048, "length": 16.459186693446533}, {"destination": 476556038, "path": [[3305.1154384438064, 3989.252305677482], [3246.115438443553, 3915.852305677703], [3203.215438446705, 3801.1523056766805]], "source": 654401048, "length": 46.589138917042064}, {"destination": 1320103607, "path": [[3305.1154384438064, 3989.252305677482], [3380.2154384474647, 4067.2523056777263], [3393.465438449539, 4071.7523056770233]], "source": 654401048, "length": 25.180472274796344}, {"destination": 601145315, "path": [[-5295.884561554942, -589.1476943222784], [-5360.2345615502145, -553.8976943224583]], "source": 152878617, "length": 14.532875200728835}, {"destination": 479290062, "path": [[-5295.884561554942, -589.1476943222784], [-4605.234561552152, -859.5476943220604]], "source": 152878617, "length": 144.45167703508588}, {"destination": 601663327, "path": [[-5295.884561554942, -589.1476943222784], [-5351.084561553421, -712.9476943230628], [-5420.3345615562175, -846.8476943228609], [-5497.934561553564, -968.0976943222674], [-5607.434561554214, -1058.4976943217584]], "source": 152878617, "length": 121.70840296973165}, {"destination": 78604047, "path": [[-5622.934561550608, -2460.5476943229123], [-6199.934561550435, -2153.5476943217445], [-6263.4345615535385, -2119.747694322882], [-6378.684561553882, -2058.3976943218117], [-6459.084561555528, -2015.6476943231637], [-6720.584561556108, -1876.4976943224099], [-6901.184561556306, -1766.8476943217825], [-7078.9845615522045, -1652.5976943224664], [-7368.934561554852, -1448.547694321789], [-7523.734561551975, -1354.4976943222764], [-7720.934561554315, -1248.6976943222317], [-7911.584561554719, -1171.2476943230854], [-8101.784561553415, -1104.5976943222513]], "source": 78011931, "length": 561.279913842603}, {"destination": 1315785194, "path": [[-4209.834561549997, 1798.6023056781873], [-4196.234561554491, 1835.9523056776793]], "source": 1315785306, "length": 8.699940180325736}, {"destination": 1315785196, "path": [[-4209.834561549997, 1798.6023056781873], [-4221.23456155532, 1767.35230567715]], "source": 1315785306, "length": 7.2797588716686805}, {"destination": 1315785570, "path": [[-4209.834561549997, 1798.6023056781873], [-4088.834561549959, 1757.3523056775286]], "source": 1315785306, "length": 24.77269111182074}, {"destination": 1324294606, "path": [[4190.665438443375, 4976.152305676606], [4141.815438444496, 4970.902305677427]], "source": 1324294429, "length": 9.364503395497787}, {"destination": 1324295054, "path": [[4190.665438443375, 4976.152305676606], [4282.115438449808, 4985.902305676859]], "source": 1324294429, "length": 17.527867918028395}, {"destination": 1324294590, "path": [[4190.665438443375, 4976.152305676606], [4199.065438449168, 4888.452305676694], [4293.8654384485635, 4891.952305676739]], "source": 1324294429, "length": 37.61586178180332}, {"destination": 1316236718, "path": [[-2058.5345615558026, 2615.302305677858], [-1994.384561555762, 2585.9023056771234]], "source": 1316237232, "length": 13.842354314313749}, {"destination": 1316236875, "path": [[-3419.684561556835, 1334.3023056773263], [-3235.4345615530633, 1251.6023056772242], [-3093.334561555139, 1164.5523056778018]], "source": 483098146, "length": 72.81608949319326}, {"destination": 385113763, "path": [[-3419.684561556835, 1334.3023056773263], [-3632.1345615561995, 1420.2023056775204]], "source": 483098146, "length": 44.6917054308405}, {"destination": 483098150, "path": [[-3419.684561556835, 1334.3023056773263], [-3602.884561551889, 754.6523056767285]], "source": 483098146, "length": 133.53362885725448}, {"destination": 1315785507, "path": [[-4163.284561556679, -2102.3476943220485], [-4523.834561553031, -1914.1976943224392]], "source": 1315785307, "length": 80.32278150605977}, {"destination": 479284692, "path": [[-4163.284561556679, -2102.3476943220485], [-4007.0845615503004, -1891.5476943224262]], "source": 1315785307, "length": 55.497860235532286}, {"destination": 495771173, "path": [[11421.815438446003, -4306.697694323347], [11509.915438445261, -4337.59769432207]], "source": 495771172, "length": 18.107300531323077}, {"destination": 109354129, "path": [[11509.915438445261, -4337.59769432207], [11474.865438444227, -4404.847694322811]], "source": 495771173, "length": 16.37354124481014}, {"destination": 481397312, "path": [[-3602.884561551889, 754.6523056767285], [-3818.534561553122, 820.652305677072]], "source": 483098150, "length": 43.55850333443454}, {"destination": 481390832, "path": [[-3602.884561551889, 754.6523056767285], [-3733.334561552226, 348.4023056774532], [-3805.784561556891, 70.00230567655308]], "source": 483098150, "length": 157.1180661711997}, {"destination": 483098146, "path": [[-3602.884561551889, 754.6523056767285], [-3419.684561556835, 1334.3023056773263]], "source": 483098150, "length": 133.53362885725448}, {"destination": 481397829, "path": [[-3602.884561551889, 754.6523056767285], [-3475.3345615570197, 720.6023056767208], [-3346.484561554064, 678.3023056780024], [-3137.634561554137, 608.6523056776372]], "source": 483098150, "length": 94.29009337614563}, {"destination": 1315785650, "path": [[-857.0845615523126, -2928.8976943231405], [-719.6845615524694, -2959.047694321981]], "source": 1315785308, "length": 26.974696467281536}, {"destination": 1730911844, "path": [[-8538.934561556744, -1745.547694323335], [-8535.784561551907, -1735.5476943219373], [-8535.584561556676, -1722.7476943233455], [-8538.884561552606, -1708.8476943225573], [-8548.684561553444, -1698.5976943217906], [-8563.884561553437, -1692.6476943233126]], "source": 1730911786, "length": 14.429019347059773}, {"destination": 1890818645, "path": [[-8538.934561556744, -1745.547694323335], [-8487.484561555902, -1765.0476943220638]], "source": 1730911786, "length": 10.701206799450462}, {"destination": 476678903, "path": [[-8538.934561556744, -1745.547694323335], [-8557.23456155033, -1742.0976943220978], [-8580.23456155621, -1740.3476943229634], [-8614.83456155554, -1740.4976943229399]], "source": 1730911786, "length": 14.53339374892009}, {"destination": 84489488, "path": [[6447.565438449487, -2912.347694323358], [6538.765438449445, -2788.49769432199]], "source": 495771182, "length": 32.54804212071258}, {"destination": 84489489, "path": [[6447.565438449487, -2912.347694323358], [6340.365438447293, -2863.9476943226327], [6436.865438445238, -2733.4976943222955]], "source": 495771182, "length": 57.379706377777}, {"destination": 84488167, "path": [[6447.565438449487, -2912.347694323358], [5710.5654384486115, -3536.1976943217855], [5640.565438447709, -3622.2976943225403]], "source": 495771182, "length": 220.52364948380037}, {"destination": 602360664, "path": [[6961.465438443782, -3132.747694323257], [6883.815438449403, -3106.897694323152]], "source": 495771183, "length": 15.845118935926228}, {"destination": 478379222, "path": [[6961.465438443782, -3132.747694323257], [6897.0654384443715, -3247.3976943219186], [6793.2154384493515, -3471.297694321862], [6737.465438447998, -3750.1476943226917], [6715.665438449037, -4027.347694322003]], "source": 495771183, "length": 206.55059339688364}, {"destination": 1320103905, "path": [[2726.565438443629, 3053.402305678077], [2737.265438447878, 2920.352305677554], [2772.165438443608, 2920.352305677554], [2782.9154384448884, 2861.702305677838]], "source": 1320103703, "length": 49.499305803252206}, {"destination": 1317670908, "path": [[3644.5154384452394, 1353.1523056773408], [3811.8654384433626, 1371.6523056768183]], "source": 1317670835, "length": 32.090844234507074}, {"destination": 1469016738, "path": [[-5853.784561551834, -1190.5976943218377], [-5998.684561554057, -1095.8976943218345]], "source": 1469016670, "length": 34.68159084480748}, {"destination": 1469016738, "path": [[-5853.784561551834, -1190.5976943218377], [-5794.78456155158, -1087.3976943219786], [-5950.3345615539165, -1000.2476943231642], [-5998.684561554057, -1095.8976943218345]], "source": 1469016670, "length": 84.08429377567019}, {"destination": 1469016741, "path": [[-5853.784561551834, -1190.5976943218377], [-6243.984561550064, -1727.6476943219877]], "source": 1469016670, "length": 140.6081566420659}, {"destination": 1317671120, "path": [[2447.4154384463986, 411.20230567770477], [2468.9654384459914, 409.6023056767706]], "source": 1317670756, "length": 4.114112140296424}, {"destination": 1317671124, "path": [[2447.4154384463986, 411.20230567770477], [2450.2154384435926, 473.00230567692836]], "source": 1317670756, "length": 13.753519865813072}, {"destination": 1317670894, "path": [[2447.4154384463986, 411.20230567770477], [2253.21543844359, 425.5023056778384]], "source": 1317670756, "length": 37.06824426021359}, {"destination": 1782221395, "path": [[5741.315438449135, -8232.747694322028], [5807.065438446557, -8167.197694323391]], "source": 1782221407, "length": 19.204196622208922}, {"destination": 1315785179, "path": [[-1982.384561550532, -5876.847694322507], [-1732.534561554644, -5942.397694322921]], "source": 267198012, "length": 49.69459553489855}, {"destination": 267195119, "path": [[-1982.384561550532, -5876.847694322507], [-2017.0345615539986, -6302.347694322918]], "source": 267198012, "length": 94.85612786820437}, {"destination": 1320103954, "path": [[1326.5654384468917, 2333.152305677544], [1310.865438448161, 2282.4523056765856], [1289.0154384450625, 2241.402305678264]], "source": 1320103859, "length": 21.693506469703063}, {"destination": 1320103982, "path": [[1326.5654384468917, 2333.152305677544], [1385.115438445439, 2318.252305677504]], "source": 1320103859, "length": 11.617475007358287}, {"destination": 1320103599, "path": [[1326.5654384468917, 2333.152305677544], [1201.6654384439107, 2359.4523056775784]], "source": 1320103859, "length": 24.462965379604526}, {"destination": 1315678639, "path": [[-5972.384561552246, -4714.447694322388], [-5853.034561553727, -4434.797694322868]], "source": 267198014, "length": 66.20288168282639}, {"destination": 477615647, "path": [[-5972.384561552246, -4714.447694322388], [-5309.834561550986, -4891.597694323124]], "source": 267198014, "length": 132.0013259673549}, {"destination": 1317671121, "path": [[1734.2154384465402, 470.7023056766957], [1588.8654384497158, 465.95230567803014]], "source": 1317670837, "length": 27.66191079401433}, {"destination": 1317671027, "path": [[1734.2154384465402, 470.7023056766957], [1736.865438445534, 546.4023056767076], [1825.9654384493729, 534.9523056779049]], "source": 1317670837, "length": 33.97741247662289}, {"destination": 1317671076, "path": [[1734.2154384465402, 470.7023056766957], [1825.715438450004, 466.1023056780067]], "source": 1317670837, "length": 17.430931269348534}, {"destination": 1315785188, "path": [[-2533.284561550886, -2524.797694322345], [-2463.5345615564574, -2550.0476943225435], [-2428.6845615506536, -2513.3476943217656]], "source": 1315785312, "length": 24.91673329261331}, {"destination": 4273214057, "path": [[542.015438448118, -1528.4976943217289], [568.3654384469605, -1531.3976943218677], [576.3654384480787, -1541.6476943226344], [593.6654384441908, -1542.7476943230545], [600.7154384448654, -1555.9476943227678], [652.0154384475063, -1555.9476943227678], [678.9654384462551, -1539.9976943228921], [688.6154384488918, -1534.5476943231517], [709.1154384468723, -1535.0976943224737]], "source": 4273147830, "length": 36.40815135663935}, {"destination": 4273147810, "path": [[542.015438448118, -1528.4976943217289], [530.4654384445939, -1527.2476943231084], [491.06543844601447, -1520.1976943224338], [474.0654384463028, -1516.0476943218982]], "source": 4273147830, "length": 13.229818630986385}, {"destination": 4273214077, "path": [[542.015438448118, -1528.4976943217289], [540.5154384447997, -1538.2976943225658]], "source": 4273147830, "length": 2.1979141560259166}, {"destination": 85654851, "path": [[11295.41543844681, -4657.947694322928], [11164.01543844603, -4694.397694322561]], "source": 115547719, "length": 26.26813827315961}, {"destination": 1780414612, "path": [[11295.41543844681, -4657.947694322928], [11371.515438447943, -4631.097694321796]], "source": 115547719, "length": 15.654274144969436}, {"destination": 115547773, "path": [[11295.41543844681, -4657.947694322928], [11252.515438449962, -4716.647694323228]], "source": 115547719, "length": 15.39359807975994}, {"destination": 5021317130, "path": [[-7642.334561552389, -3694.9476943224367], [-7651.584561550351, -3708.8476943232254]], "source": 477666889, "length": 3.5597622373610633}, {"destination": 5021317187, "path": [[-7642.334561552389, -3694.9476943224367], [-7651.084561551614, -3690.797694321901]], "source": 477666889, "length": 1.903449494455876}, {"destination": 5021317154, "path": [[-7642.334561552389, -3694.9476943224367], [-7612.234561555908, -3648.547694321991]], "source": 477666889, "length": 11.800287084295018}, {"destination": 4451470239, "path": [[3325.3154384453865, -6228.997694321947], [3298.965438446544, -6270.447694323167]], "source": 476913230, "length": 10.491976016124875}, {"destination": 93466414, "path": [[3325.3154384453865, -6228.997694321947], [2747.1154384457463, -5957.2976943229605]], "source": 476913230, "length": 125.45289000882654}, {"destination": 84487663, "path": [[3325.3154384453865, -6228.997694321947], [3356.5654384446475, -6179.247694323209]], "source": 476913230, "length": 12.558418366808407}, {"destination": 1315785614, "path": [[-4222.884561556839, -1018.5476943220806], [-4314.784561550767, -1123.4976943228503]], "source": 479288912, "length": 29.157699013150868}, {"destination": 479290062, "path": [[-4222.884561556839, -1018.5476943220806], [-4605.234561552152, -859.5476943220604]], "source": 479288912, "length": 80.85277944003136}, {"destination": 479286375, "path": [[-4222.884561556839, -1018.5476943220806], [-3875.634561552488, -1146.5476943222086]], "source": 479288912, "length": 71.90968888018594}, {"destination": 848733098, "path": [[3130.61543844384, -6764.797694323477], [3292.1154384482065, -6849.497694322082]], "source": 495629582, "length": 36.025213344005735}, {"destination": 639308683, "path": [[-2841.7845615535953, 2633.9023056767273], [-2762.2345615512245, 2746.552305676886]], "source": 483098199, "length": 29.26599310801751}, {"destination": 483091135, "path": [[-2841.7845615535953, 2633.9023056767273], [-2565.684561552928, 2486.7523056766317]], "source": 483098199, "length": 61.871832662569}, {"destination": 3056370065, "path": [[7083.065438443726, -1831.2476943229683], [7117.415438443686, -1829.7976943220106], [7123.16543844338, -1824.7976943222]], "source": 1473995326, "length": 8.093688547635574}, {"destination": 93246664, "path": [[-8471.334561555466, 1656.6523056766869], [-8489.034561556253, 1617.952305677406], [-8615.434561555447, 1341.2523056768323], [-8634.084561556676, 1299.8523056779732]], "source": 85011021, "length": 85.17191326666186}, {"destination": 2629524985, "path": [[-8471.334561555466, 1656.6523056766869], [-8416.034561555818, 1632.652305676885], [-8326.68456155261, 1589.5523056776995], [-8311.13456155208, 1582.4523056782168]], "source": 85011021, "length": 34.653915385761536}, {"destination": 87781592, "path": [[-8471.334561555466, 1656.6523056766869], [-8456.184561552505, 1692.6523056781662], [-8332.934561551043, 2401.252305677559]], "source": 85011021, "length": 167.82761130245964}, {"destination": 857781031, "path": [[-8471.334561555466, 1656.6523056766869], [-8515.08456155159, 1675.002305677964], [-9129.834561555583, 1931.00230567822]], "source": 85011021, "length": 139.30466388014912}, {"destination": 479279560, "path": [[-2017.0345615539986, -6302.347694322918], [-1689.3845615513214, -6395.147694322034]], "source": 267195119, "length": 65.63053340565337}, {"destination": 850262881, "path": [[-2017.0345615539986, -6302.347694322918], [-2026.1845615507923, -6337.747694322715], [-2129.884561554718, -6585.847694323022]], "source": 267195119, "length": 66.6552765965269}, {"destination": 599408845, "path": [[-2017.0345615539986, -6302.347694322918], [-2873.1845615510565, -6082.497694322342]], "source": 267195119, "length": 169.97743062522025}, {"destination": 1316623391, "path": [[1015.31543844402, -1205.9976943223915], [1192.3654384489168, -1224.3476943218923], [1192.3654384489168, -1205.9976943223915], [1283.0654384430318, -1215.447694322691]], "source": 1316623632, "length": 55.37263211578752}, {"destination": 1730911786, "path": [[-8563.884561553437, -1692.6476943233126], [-8548.684561553444, -1698.5976943217906], [-8538.884561552606, -1708.8476943225573], [-8535.584561556676, -1722.7476943233455], [-8535.784561551907, -1735.5476943219373], [-8538.934561556744, -1745.547694323335]], "source": 1730911844, "length": 14.429019347059773}, {"destination": 1891590987, "path": [[-8563.884561553437, -1692.6476943233126], [-8544.6345615523, -1554.1976943218572], [-8545.534561555713, -1527.6476943224538], [-8550.184561556762, -1494.3976943229131]], "source": 1730911844, "length": 44.361393442559006}, {"destination": 476678903, "path": [[-8563.884561553437, -1692.6476943233126], [-8583.034561553404, -1695.6476943228438], [-8597.834561555828, -1701.597694323098], [-8610.934561552596, -1721.8476943217097], [-8614.83456155554, -1740.4976943229399]], "source": 1730911844, "length": 16.169954858152664}, {"destination": 1316236930, "path": [[-29.334561553184813, 2306.752305678117], [-288.2845615559404, 2408.8523056775557]], "source": 476552806, "length": 54.22982452750865}, {"destination": 1316471903, "path": [[-29.334561553184813, 2306.752305678117], [8.365438446844564, 2386.0523056775664]], "source": 476552806, "length": 19.03733570197948}, {"destination": 1404037025, "path": [[-200.7345615524514, 5179.952305677915], [-188.934561556664, 5221.002305678013]], "source": 1404037141, "length": 9.401004829289212}, {"destination": 1404037018, "path": [[-200.7345615524514, 5179.952305677915], [-216.23456155595022, 5125.952305677472]], "source": 1404037141, "length": 12.365681681465006}, {"destination": 1404037085, "path": [[-200.7345615524514, 5179.952305677915], [-237.0845615544681, 5184.302305677235], [-331.08456155162, 5216.402305677548], [-347.1845615550251, 5154.452305676571]], "source": 1404037141, "length": 40.34490944201296}, {"destination": 1581175202, "path": [[2174.3654384493993, -6471.947694322466], [2139.5654384477325, -6619.947694321837], [2136.0654384494637, -6852.397694322221], [2156.2654384439384, -6993.49769432267]], "source": 495641874, "length": 116.88461925415208}, {"destination": 1581175603, "path": [[2174.3654384493993, -6471.947694322466], [2304.715438448568, -6457.047694322427]], "source": 495641874, "length": 25.005711677392668}, {"destination": 602364054, "path": [[2174.3654384493993, -6471.947694322466], [2202.3154384456234, -6345.59769432208], [2223.26543844531, -6283.197694322951]], "source": 495641874, "length": 43.03452830504715}, {"destination": 654578475, "path": [[-6771.18456155057, -4901.747694322722], [-6483.434561552314, -4972.297694322947]], "source": 267198397, "length": 56.92121406248899}, {"destination": 477626301, "path": [[-6771.18456155057, -4901.747694322722], [-7073.23456155251, -4832.647694323456]], "source": 267198397, "length": 59.455659253871765}, {"destination": 267198431, "path": [[-6771.18456155057, -4901.747694322722], [-6937.834561554723, -5381.69769432173]], "source": 267198397, "length": 111.3408478487393}, {"destination": 1315678738, "path": [[-1695.134561551015, -4808.847694322438], [-2021.484561552711, -4750.197694322722], [-2259.6345615539803, -4703.497694322323]], "source": 1315678824, "length": 109.87252900783817}, {"destination": 1315785326, "path": [[-1695.134561551015, -4808.847694322438], [-1730.1845615520506, -5000.097694322747]], "source": 1315678824, "length": 43.05109883283551}, {"destination": 1316237057, "path": [[-2498.1845615528186, 3153.2523056778673], [-2259.3345615504745, 3540.3523056771746], [-1865.8845615533437, 3388.8023056771744]], "source": 483098227, "length": 179.40537211089062}, {"destination": 385114252, "path": [[-2498.1845615528186, 3153.2523056778673], [-2653.634561553986, 3230.3523056782524]], "source": 483098227, "length": 34.17649183701353}, {"destination": 1316237190, "path": [[-2498.1845615528186, 3153.2523056778673], [-2539.334561554085, 3079.352305677574]], "source": 483098227, "length": 18.20311096294766}, {"destination": 483090542, "path": [[-2498.1845615528186, 3153.2523056778673], [-2185.1845615543652, 3026.102305677014]], "source": 483098227, "length": 65.90228696435676}, {"destination": 1315785272, "path": [[-1162.6845615566594, -2988.097694322178], [-1296.4845615499598, -2939.3476943226915]], "source": 1315785558, "length": 27.65702309880981}, {"destination": 1320103920, "path": [[3136.915438446408, 2195.55230567714], [3281.2654384457574, 2197.1023056774898]], "source": 1320103870, "length": 27.45456536158965}, {"destination": 1769171872, "path": [[3775.8654384489887, -7350.647694321921], [3586.3154384472296, -7508.19769432276]], "source": 1769171926, "length": 50.26542010828354}, {"destination": 1780414592, "path": [[11252.515438449962, -4716.647694323228], [11347.515438444589, -4688.49769432289]], "source": 115547773, "length": 19.118591263598006}, {"destination": 476914724, "path": [[11252.515438449962, -4716.647694323228], [11222.465438443407, -4771.6976943217305], [11166.665438445023, -4848.747694323308]], "source": 115547773, "length": 33.66427255451406}, {"destination": 714088176, "path": [[3298.665438443038, 9298.20230567735], [3190.165438446968, 9254.302305677698], [2890.515438444652, 9123.152305678062]], "source": 4573378123, "length": 86.85594209835659}, {"destination": 714080390, "path": [[3298.665438443038, 9298.20230567735], [3676.4654384455753, 9451.052305676554]], "source": 4573378123, "length": 79.4951464648188}, {"destination": 1890531855, "path": [[-6406.984561550644, -2008.847694321858], [-6430.434561551124, -2044.247694323431], [-6463.984561555946, -2062.5976943229316], [-6502.884561555788, -2080.9476943224327], [-6532.8845615511, -2090.5976943232927], [-6555.334561554105, -2098.1976943232894], [-6582.384561554022, -2112.0476943217172], [-6623.834561551689, -2180.0976943229243]], "source": 1469016684, "length": 58.81452128052869}, {"destination": 3355899011, "path": [[-6406.984561550644, -2008.847694321858], [-6394.234561554413, -1983.447694323459], [-6380.834561554138, -1950.197694322142], [-6378.134561551007, -1927.2976943227604], [-6379.484561556126, -1912.3476943221362], [-6379.784561552526, -1883.0476943225704], [-6387.784561553644, -1854.397694321719], [-6398.884561555462, -1820.0976943223422], [-6281.8845615524315, -1799.3476943232167], [-6204.484561550316, -1831.8476943228745]], "source": 1469016684, "length": 82.5233426870079}, {"destination": 1469016803, "path": [[-6406.984561550644, -2008.847694321858], [-6222.3345615564085, -2110.847694321905]], "source": 1469016684, "length": 41.80351074446034}, {"destination": 1320103931, "path": [[2908.965438443545, 3395.152305676774], [2745.8154384447653, 3366.6523056776755]], "source": 1320103706, "length": 31.669185202798236}, {"destination": 267198570, "path": [[-7460.7345615547165, -6907.047694323154], [-7155.784561554412, -6988.69769432342]], "source": 477625999, "length": 60.760901537609854}, {"destination": 477626820, "path": [[-7460.7345615547165, -6907.047694323154], [-7765.534561556819, -6836.547694321737]], "source": 477625999, "length": 60.03913677800754}, {"destination": 1320103605, "path": [[2662.1654384442195, 3230.002305677715], [2756.315438446677, 3245.252305676516]], "source": 1320103979, "length": 18.22438871534656}, {"destination": 1315785235, "path": [[-2172.18456155166, -480.5476943232634], [-2197.18456155249, -560.6476943231797]], "source": 481394324, "length": 18.437037747860327}, {"destination": 481394037, "path": [[-2172.18456155166, -480.5476943232634], [-2127.284561552756, -494.79769432281273]], "source": 481394324, "length": 9.108360846273484}, {"destination": 1315785550, "path": [[-2172.18456155166, -480.5476943232634], [-2321.6845615507964, -441.2476943222998], [-2390.184561555486, -423.24769432333653]], "source": 481394324, "length": 43.37122108819328}, {"destination": 210686289, "path": [[-1730.1845615520506, -5000.097694322747], [-1809.2845615527153, -5278.097694322525]], "source": 1315785326, "length": 63.62777767145726}, {"destination": 1315678738, "path": [[-1730.1845615520506, -5000.097694322747], [-1902.9345615564353, -4958.14769432279], [-2007.5345615566675, -4939.797694323289], [-2071.934561556077, -4951.247694322092], [-2310.6345615531154, -4903.097694322511], [-2259.6345615539803, -4703.497694322323]], "source": 1315785326, "length": 159.03099603740134}, {"destination": 4273347088, "path": [[881.7654384429829, -918.8976943228511], [822.315438448129, -909.3476943231593]], "source": 4273347087, "length": 11.502868385107748}, {"destination": 4273351022, "path": [[881.7654384429829, -918.8976943228511], [892.1654384437261, -885.1476943227965], [955.1654384480912, -895.7976943229085], [950.6154384482102, -919.1476943222199], [916.0154384488806, -922.0476943223588], [909.815438447481, -944.5976943229795]], "source": 4273347087, "length": 37.000272022134816}, {"destination": 4273351022, "path": [[881.7654384429829, -918.8976943228511], [876.5654384461641, -937.5976943228892], [909.815438447481, -944.5976943229795]], "source": 4273347087, "length": 10.784363430123179}, {"destination": 483108104, "path": [[-2880.3845615570367, 5000.352305676969], [-2823.5345615570395, 5108.30230567727], [-2746.9845615542, 5301.45230567669], [-2676.63456155276, 5585.002305677378], [-2611.8345615557814, 5946.452305677141]], "source": 601145284, "length": 217.46934814500213}, {"destination": 483106129, "path": [[-2880.3845615570367, 5000.352305676969], [-3250.284561552519, 5206.002305676804], [-3615.134561556488, 5375.402305677568], [-4166.5845615526105, 5548.8523056776985]], "source": 601145284, "length": 274.6201585588896}, {"destination": 482732359, "path": [[-2880.3845615570367, 5000.352305676969], [-2806.484561553191, 4985.002305677]], "source": 601145284, "length": 14.463561850843911}, {"destination": 5017787782, "path": [[-7581.134561554847, -1130.9476943228701], [-8269.534561556213, -842.9976943222783]], "source": 1469016687, "length": 145.73442290242045}, {"destination": 2629524985, "path": [[-7889.084561554682, 1444.6523056772521], [-7957.134561550561, 1459.9023056778292], [-8101.684561552247, 1492.3523056769027], [-8122.884561551302, 1501.3523056772726], [-8260.384561552313, 1559.0023056777368], [-8300.484561551968, 1576.9523056778921], [-8311.13456155208, 1582.4523056782168]], "source": 85011298, "length": 86.40105889457875}, {"destination": 4779853276, "path": [[-7889.084561554682, 1444.6523056772521], [-7830.834561552536, 1430.1523056765575], [-7753.334561556358, 1414.9023056777564], [-7570.18456155123, 1378.7023056774929], [-7514.334561555814, 1367.0523056781292]], "source": 85011298, "length": 73.34339269968083}, {"destination": 93246685, "path": [[-7889.084561554682, 1444.6523056772521], [-7904.534561554045, 1404.102305677668], [-8033.4345615540315, 1141.0523056767374], [-8049.784561556806, 1107.7023056778046]], "source": 85011298, "length": 80.95548998001938}, {"destination": 4333704543, "path": [[-7889.084561554682, 1444.6523056772521], [-7873.284561554783, 1490.2023056766466], [-7866.684561555814, 1521.0523056765624]], "source": 85011298, "length": 17.541028297463306}, {"destination": 483103066, "path": [[-2550.484561552935, 6288.902305676913], [-3168.184561552323, 6372.702305677436], [-3912.9345615549482, 6471.802305677344]], "source": 601145285, "length": 262.3071308226937}, {"destination": 601145286, "path": [[-2550.484561552935, 6288.902305676913], [-2522.2845615502365, 6358.752305677839]], "source": 601145285, "length": 16.433978668401654}, {"destination": 1315785429, "path": [[-3176.834561550379, -4572.597694322056], [-2793.434561553454, -4671.4476943225945]], "source": 1315785328, "length": 76.14685729049782}, {"destination": 1315785566, "path": [[-3176.834561550379, -4572.597694322056], [-3119.78456155515, -4363.947694322689]], "source": 1315785328, "length": 47.65285880779148}, {"destination": 481397312, "path": [[-3632.1345615561995, 1420.2023056775204], [-3818.534561553122, 820.652305677072]], "source": 385113763, "length": 137.96591084870857}, {"destination": 4705342936, "path": [[-3632.1345615561995, 1420.2023056775204], [-4001.534561552944, 1567.602305676985]], "source": 385113763, "length": 77.52307870336811}, {"destination": 483098146, "path": [[-3632.1345615561995, 1420.2023056775204], [-3419.684561556835, 1334.3023056773263]], "source": 385113763, "length": 44.6917054308405}, {"destination": 482732943, "path": [[-3632.1345615561995, 1420.2023056775204], [-3470.234561554264, 1824.5523056776847]], "source": 385113763, "length": 95.04866998107698}, {"destination": 495771120, "path": [[6478.215438448842, -5042.997694323148], [6468.9654384437745, -4848.247694322794], [6589.015438443368, -4325.4476943221935], [6614.565438447073, -4092.647694323048]], "source": 495771300, "length": 213.83147873561154}, {"destination": 495771302, "path": [[6478.215438448842, -5042.997694323148], [6584.015438448887, -5036.697694322356]], "source": 495771300, "length": 20.166574105595025}, {"destination": 1320104041, "path": [[1981.1654384440658, 1453.6023056770375], [2069.56543844683, 1441.0023056772302], [2179.565438446218, 1446.9523056774847]], "source": 1320103878, "length": 38.00466403871248}, {"destination": 1320103722, "path": [[1981.1654384440658, 1453.6023056770375], [1979.0154384438097, 1437.752305676554]], "source": 1320103878, "length": 3.5470804648198233}, {"destination": 1320103783, "path": [[1981.1654384440658, 1453.6023056770375], [1986.4654384491587, 1493.15230567737]], "source": 1320103878, "length": 8.853460751821654}, {"destination": 63305187, "path": [[6584.015438448887, -5036.697694322356], [6577.065438449381, -5100.197694321906]], "source": 495771302, "length": 14.183239171725328}, {"destination": 495772551, "path": [[6584.015438448887, -5036.697694322356], [7794.465438443865, -4937.897694322402]], "source": 495771302, "length": 231.2150060831698}, {"destination": 103938846, "path": [[7866.665438449161, -4934.647694321726], [7860.515438444792, -4994.197694323077]], "source": 495771303, "length": 13.295028529516975}, {"destination": 1890502904, "path": [[-6077.684561553553, -2250.0976943220508], [-6178.934561553717, -2196.6476943227062], [-6307.834561553705, -2128.5976943232754]], "source": 3355899008, "length": 51.43475073426493}, {"destination": 1890531945, "path": [[-6077.684561553553, -2250.0976943220508], [-6132.6845615568, -2319.14769432251], [-6151.484561556231, -2291.947694322616], [-6170.284561555662, -2281.6476943230414], [-6195.784561555229, -2270.1476943218777], [-6209.184561555503, -2263.297694321764]], "source": 3355899008, "length": 38.303583361682875}, {"destination": 4397155856, "path": [[-5180.384561555229, 4116.402305676558], [-4896.284561553443, 4013.2023056767]], "source": 483106759, "length": 58.70465071917548}, {"destination": 857780856, "path": [[-5180.384561555229, 4116.402305676558], [-5469.184561555096, 3591.352305678086], [-5621.684561553764, 3310.1523056782157]], "source": 483106759, "length": 197.97385929580534}, {"destination": 95612191, "path": [[-5180.384561555229, 4116.402305676558], [-4945.33456155466, 5321.8523056770555]], "source": 483106759, "length": 271.78201982590963}, {"destination": 476792266, "path": [[-1445.6845615526959, -3442.8976943221555], [-1397.3345615525545, -3461.647694322778], [-1347.6345615544005, -3475.6976943217664], [-1318.1845615548582, -3483.297694321763], [-1292.134561552416, -3490.0476943224844], [-1236.4345615551997, -3503.247694322198]], "source": 1888323059, "length": 42.065435076613255}, {"destination": 1888338492, "path": [[-1445.6845615526959, -3442.8976943221555], [-1391.5345615558294, -3494.2976943224126], [-1360.1345615512628, -3518.8476943233127], [-1313.1845615532711, -3547.897694321733], [-1270.1845615552543, -3571.3976943227976]], "source": 1888323059, "length": 44.198703118181804}, {"destination": 1315785646, "path": [[-4947.134561554378, -224.3476943224465], [-4924.234561556773, -165.24769432280095]], "source": 1315785560, "length": 13.845609424132833}, {"destination": 1319641377, "path": [[5046.815438447538, 4375.002305677001], [4912.665438446595, 4388.402305677275]], "source": 1319641032, "length": 25.687008814863596}, {"destination": 1319641106, "path": [[5046.815438447538, 4375.002305677001], [5054.815438448657, 4452.652305676707], [5036.065438446258, 4546.702305677996], [5024.315438447502, 4619.402305676701]], "source": 1319641032, "length": 54.87456472745417}, {"destination": 1319641359, "path": [[5046.815438447538, 4375.002305677001], [5121.61543844769, 4367.502305678173]], "source": 1319641032, "length": 14.323614358931206}, {"destination": 267198210, "path": [[-6695.834561554648, -3812.547694321822], [-6680.884561554023, -3788.897694322557]], "source": 5021317182, "length": 5.9771637545484095}, {"destination": 5021317181, "path": [[-6695.834561554648, -3812.547694321822], [-7223.084561552185, -3609.9976943226866], [-7282.484561550007, -3621.097694322728]], "source": 5021317182, "length": 121.47603176117805}, {"destination": 4273412842, "path": [[652.2654384468751, -389.94769432321164], [428.9154384480298, -369.7976943222159], [383.66543844858825, -365.8976943228254]], "source": 385113782, "length": 51.35817109816641}, {"destination": 475976364, "path": [[652.2654384468751, -389.94769432321164], [655.2154384493747, -326.3976943230773], [664.465438447337, -10.047694322778966]], "source": 385113782, "length": 84.51956700386886}, {"destination": 4273376086, "path": [[652.2654384468751, -389.94769432321164], [583.1654384493845, -697.6476943219012]], "source": 385113782, "length": 69.67976161019925}, {"destination": 1316623488, "path": [[1757.9654384434207, -616.0976943228036], [1741.2154384430778, -732.3476943223994]], "source": 385113786, "length": 26.048317351904316}, {"destination": 1316623328, "path": [[1757.9654384434207, -616.0976943228036], [1801.3154384490804, -611.9976943228522]], "source": 385113786, "length": 8.29368453483554}, {"destination": 1317671241, "path": [[1940.765438448011, -547.1976943223211], [2020.7154384479509, -509.3476943223152]], "source": 385113788, "length": 17.378371024214296}, {"destination": 1317670986, "path": [[1940.765438448011, -547.1976943223211], [1860.0154384458278, -441.64769432342155]], "source": 385113788, "length": 28.050167126214752}, {"destination": 481389763, "path": [[2086.215438446004, -491.94769432325813], [2068.6654384434178, -458.5476943219646], [2050.4654384438936, -393.9976943225787]], "source": 385113789, "length": 22.91010243872193}, {"destination": 385113791, "path": [[2086.215438446004, -491.94769432325813], [2243.7154384462588, -460.49769432343624]], "source": 385113789, "length": 30.757321878999303}, {"destination": 4573378127, "path": [[3464.4154384437797, 9138.402305676862], [3419.8154384483814, 9225.9523056768]], "source": 4573378125, "length": 21.237970690385954}, {"destination": 475978022, "path": [[2243.7154384462588, -460.49769432343624], [2240.765438443759, -547.897694323396]], "source": 385113791, "length": 19.44485309094546}, {"destination": 481389838, "path": [[2243.7154384462588, -460.49769432343624], [2220.465438448116, -341.34769432192513]], "source": 385113791, "length": 26.864211203160515}, {"destination": 1316623647, "path": [[2243.7154384462588, -460.49769432343624], [2414.565438449756, -428.3476943225395]], "source": 385113791, "length": 33.267792047159865}, {"destination": 481389986, "path": [[2993.7654384468715, -407.24769432287644], [3016.1654384457393, -354.9976943233446], [3067.5654384495488, -243.5476943229986]], "source": 385113794, "length": 39.019633921719276}, {"destination": 385113795, "path": [[2993.7654384468715, -407.24769432287644], [3164.2154384456944, -421.19769432247267]], "source": 385113794, "length": 32.56257642139756}, {"destination": 1317671247, "path": [[2993.7654384468715, -407.24769432287644], [2951.8154384433615, -545.3976943226024]], "source": 385113794, "length": 31.741956656389156}, {"destination": 152848312, "path": [[3164.2154384456944, -421.19769432247267], [3094.7654384476664, -606.7476943218963], [3039.315438449819, -768.7476943232241], [2971.7654384455727, -966.1476943225722], [2892.715438449045, -1197.1976943225827]], "source": 385113795, "length": 180.14300468861924}, {"destination": 1548518395, "path": [[3164.2154384456944, -421.19769432247267], [3234.5154384429975, -300.54769432297235]], "source": 385113795, "length": 29.97750690273077}, {"destination": 476792264, "path": [[-1900.4845615526733, -3187.8976943229277], [-1856.4345615530442, -3190.0976943219916], [-1814.4845615566396, -3194.947694321826]], "source": 1889255114, "length": 16.440322849793283}, {"destination": 1315785290, "path": [[-4491.284561552789, -2588.8476943229934], [-4770.084561556587, -2453.6976943227983], [-4894.034561552018, -2388.1476943223843]], "source": 1315785335, "length": 88.65804434435327}, {"destination": 479293261, "path": [[-4491.284561552789, -2588.8476943229934], [-4326.5345615566275, -2324.3476943228816]], "source": 1315785335, "length": 66.64507902371449}, {"destination": 95612298, "path": [[-7616.084561554715, 6208.702305677605], [-7499.934561550958, 6166.702305677063], [-6741.38456155049, 5924.65230567818]], "source": 601661132, "length": 177.97264433932193}, {"destination": 1807311606, "path": [[-7616.084561554715, 6208.702305677605], [-7852.984561552034, 4957.85230567769]], "source": 601661132, "length": 281.80208999393193}, {"destination": 601661206, "path": [[-7616.084561554715, 6208.702305677605], [-7549.684561553249, 6515.702305676996], [-7434.884561554611, 7051.452305677941], [-7348.884561551472, 7537.9023056765245], [-7338.434561553697, 7577.302305676881], [-7320.934561555248, 7612.602305677285]], "source": 601661132, "length": 317.4851752182932}, {"destination": 1320103696, "path": [[3752.6154384437405, 1931.302305678173], [3643.1654384472267, 1879.002305678057]], "source": 1320103981, "length": 23.844484780552776}, {"destination": 1320103720, "path": [[3752.6154384437405, 1931.302305678173], [3807.465438448787, 1975.3523056778022], [3853.065438448766, 2007.4523056781145]], "source": 1320103981, "length": 25.54218911549909}, {"destination": 1320103730, "path": [[3752.6154384437405, 1931.302305678173], [3729.715438446135, 1950.1023056776035], [3718.9654384448545, 1993.7023056773028], [3692.165438444306, 2067.102305677082]], "source": 1320103981, "length": 33.04741234787361}, {"destination": 1889255114, "path": [[-2059.5845615503094, -3208.647694322053], [-2013.9845615503305, -3200.597694322127], [-1969.1345615555633, -3192.397694322224], [-1900.4845615526733, -3187.8976943229277]], "source": 1889255121, "length": 30.667952877623804}, {"destination": 1889255135, "path": [[-2059.5845615503094, -3208.647694322053], [-2091.0845615560447, -3287.9976943220868]], "source": 1889255121, "length": 18.635416649677786}, {"destination": 599408842, "path": [[-2232.984561551632, -6837.397694322789], [-2703.48456155034, -6686.097694322158], [-2951.5845615506464, -6613.847694323383], [-3022.2345615555923, -6597.6476943223615]], "source": 2354289885, "length": 159.32525886831718}, {"destination": 2354289892, "path": [[-2232.984561551632, -6837.397694322789], [-1941.6345615539399, -6918.0976943226115]], "source": 2354289885, "length": 58.232809005355435}, {"destination": 477629510, "path": [[-2232.984561551632, -6837.397694322789], [-2254.3845615530245, -6895.047694323253], [-2324.934561556802, -7089.347694321901], [-2408.3345615508733, -7313.647694322966]], "source": 2354289885, "length": 111.0384081481439}, {"destination": 1320103785, "path": [[2117.6154384434653, 1867.2523056775249], [2112.465438443678, 1759.7523056771536], [2061.51543844868, 1631.3023056770958]], "source": 1320103860, "length": 54.09198600897604}, {"destination": 1320103980, "path": [[2117.6154384434653, 1867.2523056775249], [2168.515438448537, 1870.252305677056]], "source": 1320103860, "length": 9.702939915767221}, {"destination": 1320104029, "path": [[2117.6154384434653, 1867.2523056775249], [2045.2654384470748, 1863.0023056775967], [2039.8154384437817, 1844.1523056775823]], "source": 1320103860, "length": 18.10934282612185}, {"destination": 5002541034, "path": [[-9138.134561553103, -1118.2976943224787], [-8957.084561551199, -797.6476943234445]], "source": 477576916, "length": 79.18605306943593}, {"destination": 482730676, "path": [[5226.065438449723, 3065.402305677978], [5233.16543844743, 2826.052305676896], [5222.215438443811, 2509.302305677252]], "source": 482729685, "length": 123.71912866716667}, {"destination": 482729885, "path": [[5226.065438449723, 3065.402305677978], [5566.965438447369, 3090.0523056782704], [5669.715438443745, 3102.802305678054], [5861.11543844936, 3089.3523056771955], [6122.165438448235, 3051.5023056771897], [6223.115438444893, 3039.2023056773355]], "source": 482729685, "length": 191.0838054235677}, {"destination": 1319641206, "path": [[5226.065438449723, 3065.402305677978], [5251.9654384468595, 3179.60230567671], [5243.465438447003, 3280.3023056775514], [5241.965438443685, 3298.152305676538], [5232.2654384440175, 3413.30230567749]], "source": 482729685, "length": 77.97821849183595}, {"destination": 654405679, "path": [[5226.065438449723, 3065.402305677978], [4864.365438443485, 2990.752305677802], [4567.315438443131, 2934.1523056771734], [4520.815438446845, 2926.902305677714], [4448.915438445056, 2917.8523056767604], [4327.965438449155, 2897.0023056782425], [4057.3154384446752, 2865.9023056771816], [3818.2154384429623, 2828.302305676544]], "source": 482729685, "length": 273.0905716971601}, {"destination": 476559746, "path": [[7104.315438446918, 2923.2023056771086], [7279.715438443191, 3586.10230567713], [7406.965438448765, 3881.002305677228], [7475.065438448781, 4038.85230567802]], "source": 482729690, "length": 258.472539559808}, {"destination": 482729885, "path": [[7104.315438446918, 2923.2023056771086], [6262.7654384499465, 3034.352305677501], [6223.115438444893, 3039.2023056773355]], "source": 482729690, "length": 169.56372812057995}, {"destination": 1320104001, "path": [[1645.7654384467446, 3548.8523056770305], [1604.9654384460155, 3448.0023056779883]], "source": 1320103887, "length": 23.732339003603986}, {"destination": 1320103978, "path": [[1645.7654384467446, 3548.8523056770305], [1662.4654384429505, 3632.6023056769686]], "source": 1320103887, "length": 18.894297642389397}, {"destination": 1320103994, "path": [[1645.7654384467446, 3548.8523056770305], [1530.4154384452318, 3571.8023056769966], [1492.8654384434026, 3601.6023056770764], [1376.0154384456769, 3626.45230567793]], "source": 1320103887, "length": 55.16682899056775}, {"destination": 1320104106, "path": [[1645.7654384467446, 3548.8523056770305], [1841.5654384469349, 3498.4023056772176]], "source": 1320103887, "length": 38.891791886850264}, {"destination": 1315678697, "path": [[-6288.184561554999, -3685.2476943227684], [-6564.084561553329, -3580.597694321952]], "source": 1315678842, "length": 57.394573601297296}, {"destination": 1889255124, "path": [[-2091.0845615560447, -3287.9976943220868], [-2112.5845615515004, -3318.947694323171], [-2128.6845615549055, -3345.9976943230886], [-2160.3845615558726, -3418.0476943230788], [-2181.1845615502534, -3503.547694322151]], "source": 1889255135, "length": 51.29649639627551}, {"destination": 476794301, "path": [[-2091.0845615560447, -3287.9976943220868], [-2162.7345615513605, -3325.997694322069], [-2203.034561553352, -3353.99769432243]], "source": 1889255135, "length": 25.907327925056187}, {"destination": 1317671008, "path": [[2064.1154384435367, -22.047694322679945], [2072.165438448792, -95.84769432180451], [2096.3154384432414, -104.99769432215089], [2098.9654384493406, -189.84769432250914], [1983.6654384448593, -185.2976943226281], [1985.915438446284, -261.19769432320084]], "source": 1317670864, "length": 79.21839740969239}, {"destination": 1317671177, "path": [[2064.1154384435367, -22.047694322679945], [1964.8154384483973, -18.247694322681696]], "source": 1317670864, "length": 18.903120235584208}, {"destination": 475977916, "path": [[2064.1154384435367, -22.047694322679945], [2189.2654384458865, -26.797694323121846]], "source": 1317670864, "length": 23.82330850214751}, {"destination": 1316236353, "path": [[-1870.7845615537622, 3980.7523056776263], [-1723.2845615566816, 3927.3023056782818]], "source": 1316236744, "length": 30.467026984210225}, {"destination": 1316237210, "path": [[-1870.7845615537622, 3980.7523056776263], [-1903.9345615539105, 3905.6523056775204]], "source": 1316236744, "length": 17.85190057890449}, {"destination": 1316236422, "path": [[-1870.7845615537622, 3980.7523056776263], [-1838.634561551089, 4053.502305676915], [-1832.3345615556264, 4064.7523056769332]], "source": 1316236744, "length": 20.07029929662355}, {"destination": 1889255121, "path": [[-2139.8845615507867, -3222.597694323426], [-2105.6345615519945, -3215.697694322728], [-2059.5845615503094, -3208.647694322053]], "source": 1889255141, "length": 15.58569284828225}, {"destination": 1889249276, "path": [[-2139.8845615507867, -3222.597694323426], [-2122.084561555937, -3182.0976943226497]], "source": 1889255141, "length": 9.621320811763226}, {"destination": 624739122, "path": [[-1735.934561551744, -1629.8476943230612], [-1821.2345615538084, -2067.697694322135], [-1838.5845615540575, -2172.3976943217594]], "source": 845389542, "length": 122.2322049171813}, {"destination": 1316623285, "path": [[-1735.934561551744, -1629.8476943230612], [-1356.6845615500256, -1683.6476943229427], [-1097.1845615515008, -1719.7976943226222]], "source": 845389542, "length": 123.10391177278899}, {"destination": 1315785347, "path": [[-3442.0845615557027, -1774.3476943223868], [-3541.634561550211, -1726.647694322736]], "source": 1315785340, "length": 21.700171526926972}, {"destination": 1315785460, "path": [[-3442.0845615557027, -1774.3476943223868], [-3480.884561554376, -1847.5976943221895]], "source": 1315785340, "length": 17.883174594455294}, {"destination": 1315785286, "path": [[-3442.0845615557027, -1774.3476943223868], [-3399.484561555255, -1699.147694322889]], "source": 1315785340, "length": 18.582383175076586}, {"destination": 1315785190, "path": [[-3442.0845615557027, -1774.3476943223868], [-3350.5345615552073, -1818.2476943220395]], "source": 1315785340, "length": 19.960160483579436}, {"destination": 1563362026, "path": [[6523.315438442978, 1605.9023056769206], [6263.1154384433785, 1694.1023056773474]], "source": 476561130, "length": 53.230085966694354}, {"destination": 476561131, "path": [[6523.315438442978, 1605.9023056769206], [6598.8654384483425, 1571.6523056781284]], "source": 476561130, "length": 16.261971204162904}, {"destination": 482730682, "path": [[6523.315438442978, 1605.9023056769206], [6874.565438444335, 2290.452305677704]], "source": 476561130, "length": 166.24823323218183}, {"destination": 476561130, "path": [[6598.8654384483425, 1571.6523056781284], [6523.315438442978, 1605.9023056769206]], "source": 476561131, "length": 16.261971204162904}, {"destination": 3356046291, "path": [[6598.8654384483425, 1571.6523056781284], [6281.215438448839, 1190.9523056772287]], "source": 476561131, "length": 104.00630453078884}, {"destination": 476561132, "path": [[6598.8654384483425, 1571.6523056781284], [7082.015438449218, 1392.5023056771124]], "source": 476561131, "length": 100.14999666144884}, {"destination": 1315785352, "path": [[-792.3345615523658, -3123.447694322934], [-762.08456155058, -3058.5976943218184]], "source": 1315785562, "length": 15.52709551235825}, {"destination": 1315785428, "path": [[-792.3345615523658, -3123.447694322934], [-915.8845615502287, -3082.097694322883]], "source": 1315785562, "length": 25.229615759060277}, {"destination": 1315785597, "path": [[-792.3345615523658, -3123.447694322934], [-815.2345615499712, -3189.647694322062]], "source": 1315785562, "length": 15.352559355504598}, {"destination": 1462576341, "path": [[-8046.684561556105, 1698.8523056777894], [-7988.334561552791, 1854.8023056776942], [-7896.2345615565255, 2117.8023056780403], [-8086.684561554592, 2162.852305676921]], "source": 2629533650, "length": 135.04837654719873}, {"destination": 2629533646, "path": [[-8046.684561556105, 1698.8523056777894], [-8227.484561551535, 1761.8023056780175]], "source": 2629533650, "length": 37.12473104141536}, {"destination": 4333704543, "path": [[-8046.684561556105, 1698.8523056777894], [-8049.584561554468, 1681.0023056770262], [-8031.484561556113, 1652.1523056773901], [-8012.884561551914, 1635.8523056769768], [-7981.934561556159, 1623.5523056771228], [-7996.38456155094, 1588.0523056779339], [-7976.784561556371, 1580.1523056779843], [-7987.0845615559465, 1560.2523056781338], [-7959.984561551892, 1551.552305677717], [-7866.684561555814, 1521.0523056765624]], "source": 2629533650, "length": 64.66610788651616}, {"destination": 4573378123, "path": [[2890.515438444652, 9123.152305678062], [3190.165438446968, 9254.302305677698], [3298.665438443038, 9298.20230567735]], "source": 714088176, "length": 86.85594209835659}, {"destination": 4573378149, "path": [[2890.515438444652, 9123.152305678062], [2949.765438444274, 9086.752305677237], [3107.1154384463284, 8988.152305677844], [3209.615438443336, 8932.402305678266], [3390.165438446502, 8846.002305677559], [3574.6654384496424, 8767.202305676847], [3719.515438447729, 8710.552305677411], [3868.265438448759, 8655.002305676619], [3901.6654384482763, 8639.302305677887]], "source": 714088176, "length": 221.07772081102522}, {"destination": 1320103833, "path": [[2095.5154384481034, 3868.2523056774444], [1881.8154384447894, 3904.402305677124]], "source": 1320103891, "length": 41.43037076104704}, {"destination": 1320103964, "path": [[2095.5154384481034, 3868.2523056774444], [2124.9654384476457, 4014.002305677167]], "source": 1320103891, "length": 32.89372301691119}, {"destination": 1320104117, "path": [[2095.5154384481034, 3868.2523056774444], [2070.7654384466423, 3745.7023056770568]], "source": 1320103891, "length": 27.65734897202959}, {"destination": 1317671096, "path": [[2372.415438443909, 466.1023056780067], [2260.0154384448956, 473.50230567744234]], "source": 1317670868, "length": 21.438598333288365}, {"destination": 1317671106, "path": [[1967.3154384491909, 291.7523056780169], [1967.5154384444227, 314.70230567798296], [1969.465438449447, 349.152305677336]], "source": 1317670953, "length": 12.774014252888753}, {"destination": 1317670820, "path": [[1967.3154384491909, 291.7523056780169], [1865.6154384473211, 298.65230567693857], [1743.9154384462086, 305.5023056770523]], "source": 1317670953, "length": 42.595225863756355}, {"destination": 1317671230, "path": [[1967.3154384491909, 291.7523056780169], [1966.6654384451476, 211.502305678124]], "source": 1317670953, "length": 17.846851250397627}, {"destination": 1316623342, "path": [[2402.015438448757, -1400.9476943233067], [2281.3154384451195, -1394.0476943226088], [2184.765438443037, -1350.4976943217173]], "source": 1316623658, "length": 43.76290468407621}, {"destination": 93310272, "path": [[-3976.084561550408, 2783.4023056776405], [-4531.88456155118, 1924.0523056769375]], "source": 479297279, "length": 218.39511845111016}, {"destination": 624783812, "path": [[-3976.084561550408, 2783.4023056776405], [-4036.484561552811, 2803.7523056774207]], "source": 479297279, "length": 12.345987027738513}, {"destination": 850278592, "path": [[-7282.234561550638, -4780.947694323246], [-7987.734561552884, -4609.697694322179]], "source": 267198208, "length": 139.45368698437258}, {"destination": 267198209, "path": [[-7282.234561550638, -4780.947694323246], [-7081.784561556504, -4422.697694321798]], "source": 267198208, "length": 88.31965243912975}, {"destination": 477626301, "path": [[-7282.234561550638, -4780.947694323246], [-7073.23456155251, -4832.647694323456]], "source": 267198208, "length": 41.37159344061423}, {"destination": 267198013, "path": [[-7081.784561556504, -4422.697694321798], [-6698.184561550135, -4550.697694321926]], "source": 267198209, "length": 78.30049757038526}, {"destination": 5021317182, "path": [[-7081.784561556504, -4422.697694321798], [-6695.834561554648, -3812.547694321822]], "source": 267198209, "length": 154.26689310681144}, {"destination": 1315678776, "path": [[-6680.884561554023, -3788.897694322557], [-6594.934561555021, -3635.5976943234227]], "source": 267198210, "length": 37.807551608982266}, {"destination": 1890502861, "path": [[-6680.884561554023, -3788.897694322557], [-7044.784561550443, -3638.5976943229534], [-7141.184561554326, -3602.597694323251], [-7287.084561554025, -3546.097694322015]], "source": 267198210, "length": 127.30777930203807}, {"destination": 1316694008, "path": [[998.9154384442145, 438.70230567755186], [1208.6654384475537, 431.2523056775319]], "source": 1317670870, "length": 39.92325584503033}, {"destination": 1317671138, "path": [[998.9154384442145, 438.70230567755186], [937.5654384484733, 440.852305677808], [889.3154384495006, 452.352305677195], [851.7654384476714, 454.65230567742765], [841.0154384463908, 434.00230567769427], [803.4654384445616, 431.7023056774616]], "source": 1317670870, "length": 40.5502714729482}, {"destination": 1317671183, "path": [[998.9154384442145, 438.70230567755186], [1001.9654384478827, 544.1023056782512]], "source": 1317670870, "length": 23.447322066213577}, {"destination": 1315678691, "path": [[-6030.684561551425, -3685.2476943227684], [-5938.8345615545295, -3519.647694322003]], "source": 1315678849, "length": 40.75970714332488}, {"destination": 1316623505, "path": [[2108.765438443072, -1042.047694323145], [2271.415438443114, -1073.6476943229434]], "source": 481387485, "length": 31.719091440923265}, {"destination": 1316623591, "path": [[2108.765438443072, -1042.047694323145], [2138.2654384467514, -931.5476943232426]], "source": 481387485, "length": 25.20638521556709}, {"destination": 1316623332, "path": [[2108.765438443072, -1042.047694323145], [2073.6154384479732, -1173.597694322126]], "source": 481387485, "length": 30.00920871090882}, {"destination": 1316623425, "path": [[2108.765438443072, -1042.047694323145], [1952.7654384461357, -1014.1476943221761]], "source": 481387485, "length": 30.30805305495619}, {"destination": 1890935434, "path": [[-7284.184561555662, -2511.8476943220003], [-7272.284561551601, -2504.2476943220036], [-7256.334561553502, -2502.0976943217474], [-7245.534561555189, -2504.6976943219333], [-7239.6345615501905, -2507.797694322633], [-7232.134561554914, -2514.9476943227], [-7228.884561556015, -2520.797694321786], [-7227.334561555665, -2531.997694322996]], "source": 1890885389, "length": 15.429059011885455}, {"destination": 1890885413, "path": [[-7284.184561555662, -2511.8476943220003], [-7334.1345615531845, -2450.7976943226595], [-7347.584561550491, -2440.497694323085], [-7383.784561554307, -2416.397694322114], [-7397.184561554582, -2411.7976943234253]], "source": 1890885389, "length": 31.47234484371265}, {"destination": 1890935430, "path": [[-7284.184561555662, -2511.8476943220003], [-7288.734561555543, -2517.947694322231], [-7291.634561553906, -2527.2476943225543], [-7289.78456155005, -2539.047694321894], [-7285.534561553675, -2545.797694322616], [-7277.4345615513885, -2552.4476943221684]], "source": 1890885389, "length": 10.237919745873295}, {"destination": 1316471746, "path": [[2103.615438443285, 2394.6023056780064], [2096.2154384491782, 2360.752305676783], [2133.765438443902, 2363.0523056770157], [2131.1154384449082, 2294.2023056771177], [2317.1154384442616, 2273.8523056773374]], "source": 1320103896, "length": 65.8000892982397}, {"destination": 1316471813, "path": [[2103.615438443285, 2394.6023056780064], [2128.415438448883, 2507.552305678118]], "source": 1320103896, "length": 25.557916062101416}, {"destination": 1320103767, "path": [[2103.615438443285, 2394.6023056780064], [1972.9654384477158, 2408.8523056775557]], "source": 1320103896, "length": 25.048565781769234}, {"destination": 1316237057, "path": [[-1781.6345615528917, 3357.202305677376], [-1865.8845615533437, 3388.8023056771744]], "source": 483098387, "length": 17.4964739284147}, {"destination": 1316236610, "path": [[-1781.6345615528917, 3357.202305677376], [-1738.2345615502004, 3450.55230567759]], "source": 483098387, "length": 22.340709675455656}, {"destination": 1316236596, "path": [[-1781.6345615528917, 3357.202305677376], [-1811.5845615511716, 3300.2023056774024]], "source": 483098387, "length": 13.897263233872359}, {"destination": 267194971, "path": [[-3297.4845615569848, -5589.9476943217505], [-3203.5345615568644, -4951.747694322606]], "source": 267198230, "length": 143.0493000383607}, {"destination": 1315678766, "path": [[-3297.4845615569848, -5589.9476943217505], [-3163.784561550642, -5623.797694322974]], "source": 267198230, "length": 26.514023243509683}, {"destination": 267195120, "path": [[-3373.78456155335, -5960.54769432186], [-2927.584561554397, -6068.697694322722]], "source": 267198231, "length": 88.18689184160375}, {"destination": 267195121, "path": [[-3373.78456155335, -5960.54769432186], [-4085.634561555196, -5766.597694321973]], "source": 267198231, "length": 142.06287272309265}, {"destination": 267198300, "path": [[-3373.78456155335, -5960.54769432186], [-3476.084561555126, -6338.997694323112], [-3498.484561553994, -6368.047694323309]], "source": 267198231, "length": 94.12047552913911}, {"destination": 267198230, "path": [[-3373.78456155335, -5960.54769432186], [-3297.4845615569848, -5589.9476943217505]], "source": 267198231, "length": 83.68508527312578}, {"destination": 476561865, "path": [[5552.165438444945, 8154.752305676638], [5510.165438444403, 8081.202305676882], [5457.865438444287, 7965.302305677824], [5411.565438443233, 7845.202305677645], [5282.515438445045, 7481.602305677626]], "source": 482734042, "length": 158.45923047913064}, {"destination": 714084514, "path": [[5552.165438444945, 8154.752305676638], [5513.46543844744, 8175.152305677003]], "source": 482734042, "length": 8.646945127752607}, {"destination": 1891590908, "path": [[-7397.184561554582, -2411.7976943234253], [-7407.934561555862, -2410.697694323005], [-7436.084561554424, -2411.7976943234253], [-7458.88456155086, -2407.247694321768], [-7476.284561555247, -2399.197694321842], [-7486.134561553115, -2393.1976943227796]], "source": 1890885413, "length": 17.929407589962356}, {"destination": 1890935428, "path": [[-7397.184561554582, -2411.7976943234253], [-7393.534561551007, -2402.5976943224946], [-7390.834561554982, -2386.5476943232266], [-7393.534561551007, -2369.3476943229543], [-7402.934561554275, -2347.5976943228006], [-7455.234561554391, -2267.2976943223234], [-7471.334561550691, -2242.097694322709], [-7542.734561553743, -2159.5976943231676]], "source": 1890885413, "length": 64.43323744156214}, {"destination": 1890885389, "path": [[-7397.184561554582, -2411.7976943234253], [-7383.784561554307, -2416.397694322114], [-7347.584561550491, -2440.497694323085], [-7334.1345615531845, -2450.7976943226595], [-7284.184561555662, -2511.8476943220003]], "source": 1890885413, "length": 31.47234484371265}, {"destination": 1320103898, "path": [[1957.9654384429546, 2318.9023056779943], [2056.115438449524, 2301.0523056772313], [2050.7654384473994, 2252.902305677651], [2315.51543844688, 2235.8023056767706]], "source": 1320103900, "length": 80.33336157609016}, {"destination": 1320103813, "path": [[1957.9654384429546, 2318.9023056779943], [1943.4654384440364, 2232.2523056779173]], "source": 1320103900, "length": 19.466625514896656}, {"destination": 1320103767, "path": [[1957.9654384429546, 2318.9023056779943], [1972.9654384477158, 2408.8523056775557]], "source": 1320103900, "length": 20.20631035620727}, {"destination": 1316198794, "path": [[-2489.284561555394, 1973.1023056781537], [-2462.8345615553826, 2028.7023056777543]], "source": 1316198786, "length": 13.349150587315966}, {"destination": 1316198803, "path": [[-2489.284561555394, 1973.1023056781537], [-2523.0345615554484, 1902.0523056774152]], "source": 1316198786, "length": 17.054589549362795}, {"destination": 1316198788, "path": [[-2489.284561555394, 1973.1023056781537], [-2637.884561551118, 2034.9523056779617]], "source": 1316198786, "length": 31.430367423503487}, {"destination": 601661130, "path": [[-8650.88456155405, 5209.05230567692], [-8435.734561551555, 6192.602305677752], [-8360.334561551497, 6477.652305678205]], "source": 601661230, "length": 287.5208694709369}, {"destination": 71128708, "path": [[-8650.88456155405, 5209.05230567692], [-8821.984561556917, 4366.652305677121]], "source": 601661230, "length": 190.1467596826457}, {"destination": 1807311606, "path": [[-8650.88456155405, 5209.05230567692], [-7852.984561552034, 4957.85230567769]], "source": 601661230, "length": 161.70998979293867}, {"destination": 1887854441, "path": [[-4052.0345615533415, -7084.447694323259], [-4157.534561556986, -7249.147694322389]], "source": 1315678856, "length": 41.761016420512924}, {"destination": 4712669477, "path": [[-4052.0345615533415, -7084.447694323259], [-3846.834561556989, -7169.697694322963]], "source": 1315678856, "length": 43.379467691624406}, {"destination": 495771174, "path": [[9684.76543844332, -3668.147694321888], [9678.615438446059, -3753.647694322737]], "source": 1800806199, "length": 19.05011386811361}, {"destination": 602392070, "path": [[9684.76543844332, -3668.147694321888], [10029.31543844454, -3170.097694322749], [10186.015438449658, -2913.9976943231004], [10273.315438446672, -2751.147694322498], [10473.11543844387, -2367.74769432202]], "source": 1800806199, "length": 326.15338621336434}, {"destination": 1891590969, "path": [[-7667.434561554387, -2271.4976943234433], [-7524.434561553051, -2368.84769432244]], "source": 1890885433, "length": 34.75881645861189}, {"destination": 477626400, "path": [[-6937.834561554723, -5381.69769432173], [-7237.384561555871, -5311.147694323282]], "source": 267198431, "length": 59.080814377703014}, {"destination": 654578474, "path": [[-6937.834561554723, -5381.69769432173], [-6626.134561550145, -5451.397694322679]], "source": 267198431, "length": 61.26300463398462}, {"destination": 602259363, "path": [[-6937.834561554723, -5381.69769432173], [-7056.7845615556735, -5750.697694322682]], "source": 267198431, "length": 85.12199050914025}, {"destination": 773662874, "path": [[460.56543844485986, -1224.6976943224297], [562.4654384490668, -1237.7976943227509]], "source": 4273147781, "length": 19.595832241699192}, {"destination": 4273376066, "path": [[460.56543844485986, -1224.6976943224297], [447.8154384486288, -1223.0476943226877], [340.36543844706557, -1209.3976943230446], [320.2654384466541, -1206.7976943228587]], "source": 4273147781, "length": 26.974360832116183}, {"destination": 4273147783, "path": [[460.56543844485986, -1224.6976943224297], [434.3654384442175, -1257.747694323186], [426.7154384436367, -1282.047694322941]], "source": 4273147781, "length": 14.475742742180236}, {"destination": 1315785418, "path": [[-2262.1845615518055, -782.3976943228672], [-2253.9345615513184, -742.597694323166], [-2243.184561550038, -694.1976943224404]], "source": 1315785354, "length": 19.94564344505617}, {"destination": 1315785186, "path": [[-2262.1845615518055, -782.3976943228672], [-2283.784561555535, -886.3976943231933], [-2294.2845615503416, -939.2976943232156], [-2310.8845615524842, -1014.3976943233213], [-2334.834561551702, -1132.447694322636], [-2340.034561555626, -1157.6976943228346], [-2348.334561553145, -1197.6476943225123], [-2359.834561552532, -1233.4476943234308]], "source": 1315785354, "length": 102.04671576559954}, {"destination": 1315785282, "path": [[-2262.1845615518055, -782.3976943228672], [-2468.6345615521077, -729.4476943222605]], "source": 1315785354, "length": 40.98814604184726}, {"destination": 1581175339, "path": [[2711.0654384472355, -5855.047694321769], [2666.215438445363, -5808.897694322468], [2642.065438443808, -5797.397694323081]], "source": 1581175404, "length": 18.59874815629565}, {"destination": 1581175422, "path": [[2711.0654384472355, -5855.047694321769], [2689.6154384488113, -5863.047694322887], [2676.215438448537, -5874.547694322274], [2660.115438445132, -5893.9976943221955], [2644.765438446939, -5930.447694321828], [2636.715438448789, -5970.547694323258]], "source": 1581175404, "length": 31.02008309188064}, {"destination": 1581175407, "path": [[2711.0654384472355, -5855.047694321769], [2758.7654384433336, -5897.197694322287]], "source": 1581175404, "length": 13.043520324167147}, {"destination": 482731172, "path": [[-2194.6345615546647, 5951.702305678097], [-1925.1845615499974, 5851.902305677115], [-1758.13456155538, 5816.302305676757]], "source": 654393155, "length": 88.59120387756337}, {"destination": 603884631, "path": [[-2194.6345615546647, 5951.702305678097], [-2265.83456155538, 5761.602305677016]], "source": 654393155, "length": 44.392238454224334}, {"destination": 152847380, "path": [[-1863.23456155435, -2302.2976943227745], [-1936.9845615528902, -2278.197694321804]], "source": 599408452, "length": 15.01391177167294}, {"destination": 599408454, "path": [[-1863.23456155435, -2302.2976943227745], [-1969.0845615514263, -2815.5476943219073]], "source": 599408452, "length": 115.90298282034817}, {"destination": 845390842, "path": [[-1969.0845615514263, -2815.5476943219073], [-1737.6845615544312, -2894.5476943231797]], "source": 599408454, "length": 47.38067538014524}, {"destination": 95663349, "path": [[-1969.0845615514263, -2815.5476943219073], [-2036.4345615533352, -2794.0476943228987]], "source": 599408454, "length": 13.670372578120784}, {"destination": 476792263, "path": [[-1969.0845615514263, -2815.5476943219073], [-2022.634561555492, -3057.9476943231043], [-2052.184561556203, -3181.1976943227905]], "source": 599408454, "length": 82.84040056019907}, {"destination": 1317671312, "path": [[1788.6654384469125, 1154.0523056776665], [1787.865438444669, 1053.3023056780166]], "source": 1317670881, "length": 22.406370987398184}, {"destination": 475977667, "path": [[1788.6654384469125, 1154.0523056776665], [1591.9154384462786, 1158.6523056781316]], "source": 1317670881, "length": 37.4310556702503}, {"destination": 267195121, "path": [[-4240.58456155052, -6064.897694322724], [-4118.784561555344, -5830.397694323253], [-4085.634561555196, -5766.597694321973]], "source": 267198280, "length": 72.58715612774498}, {"destination": 267198300, "path": [[-4240.58456155052, -6064.897694322724], [-3498.484561553994, -6368.047694323309]], "source": 267198280, "length": 156.3856593112685}, {"destination": 1314685710, "path": [[-4240.58456155052, -6064.897694322724], [-4297.584561555823, -6188.3976943217785], [-4319.384561554784, -6235.697694322084]], "source": 267198280, "length": 40.83308537790591}, {"destination": 1729306039, "path": [[-4240.58456155052, -6064.897694322724], [-4701.334561552529, -5903.147694322542]], "source": 267198280, "length": 94.70759846000104}, {"destination": 1314685712, "path": [[-5332.234561556959, -5667.497694322065], [-5438.684561553941, -5996.347694322779]], "source": 267198281, "length": 75.88245562370189}, {"destination": 267198435, "path": [[-5332.234561556959, -5667.497694322065], [-5385.184561554013, -5656.247694322047], [-5724.984561553015, -5607.547694323145], [-6066.534561554704, -5563.897694322861], [-6210.584561550548, -5543.397694323105], [-6305.384561557048, -5522.647694322202]], "source": 267198281, "length": 187.93058537109079}, {"destination": 477639693, "path": [[-5332.234561556959, -5667.497694322065], [-5073.984561555279, -5770.0976943220185]], "source": 267198281, "length": 54.147911530036694}, {"destination": 1581175160, "path": [[2320.0154384497296, -6970.647694322096], [2323.365438449798, -7076.147694322188], [2363.4654384494524, -7217.297694323222], [2383.565438449864, -7271.647694322425]], "source": 495632202, "length": 68.45042077136746}, {"destination": 848733097, "path": [[2320.0154384497296, -6970.647694322096], [2715.4654384489163, -7152.997694323204]], "source": 495632202, "length": 85.43054860693897}, {"destination": 495629563, "path": [[2320.0154384497296, -6970.647694322096], [2324.1154384479046, -6881.797694322955], [2339.0654384485288, -6784.147694322229], [2367.615438444659, -6694.047694322691], [2459.7654384450607, -6511.647694322775]], "source": 495632202, "length": 106.6226960258578}, {"destination": 103781336, "path": [[-1954.2345615519707, -7736.647694322584], [-1943.8345615512276, -7713.197694322105], [-1845.7845615529322, -7481.6476943233565]], "source": 1883856717, "length": 60.34321306347904}, {"destination": 654414267, "path": [[-1954.2345615519707, -7736.647694322584], [-2113.3345615567123, -7669.597694322405], [-2220.5845615559383, -7621.447694322825], [-2274.234561554067, -7599.647694322087], [-2417.7345615541412, -7557.2476943222], [-2494.434561555181, -7547.997694322461]], "source": 1883856717, "length": 111.6507885113839}, {"destination": 1315785218, "path": [[780.0654384482186, -3150.647694322828], [808.1154384456113, -3086.697694323348]], "source": 1315785357, "length": 15.189669132236263}, {"destination": 1315785372, "path": [[780.0654384482186, -3150.647694322828], [758.3654384433203, -3211.3976943222156]], "source": 1315785357, "length": 14.126570933791818}, {"destination": 1315785386, "path": [[780.0654384482186, -3150.647694322828], [1007.2154384488385, -3221.4476943224213]], "source": 1315785357, "length": 45.97473133441402}, {"destination": 1315785542, "path": [[780.0654384482186, -3150.647694322828], [546.4154384497988, -3074.0976943217647]], "source": 1315785357, "length": 47.58046037307369}, {"destination": 599408842, "path": [[-3008.784561551181, -6547.397694323109], [-3022.2345615555923, -6597.6476943223615]], "source": 1883856720, "length": 11.464018501163547}, {"destination": 601097074, "path": [[-3008.784561551181, -6547.397694323109], [-3066.6845615527905, -6532.597694322461]], "source": 1883856720, "length": 11.490325214051941}, {"destination": 599409562, "path": [[-3008.784561551181, -6547.397694323109], [-2681.9345615507473, -6647.947694322198], [-2216.3345615524577, -6792.547694322692]], "source": 1883856720, "length": 160.23996124203882}, {"destination": 267198281, "path": [[-6305.384561557048, -5522.647694322202], [-6210.584561550548, -5543.397694323105], [-6066.534561554704, -5563.897694322861], [-5724.984561553015, -5607.547694323145], [-5385.184561554013, -5656.247694322047], [-5332.234561556959, -5667.497694322065]], "source": 267198435, "length": 187.93058537109079}, {"destination": 654578474, "path": [[-6305.384561557048, -5522.647694322202], [-6626.134561550145, -5451.397694322679]], "source": 267198435, "length": 63.01510489489226}, {"destination": 267198436, "path": [[-6305.384561557048, -5522.647694322202], [-6245.134561552845, -5462.897694322066], [-6213.584561550078, -5415.947694322298], [-6086.234561550441, -5057.097694322721]], "source": 267198435, "length": 112.98403172183289}, {"destination": 477615613, "path": [[-6305.384561557048, -5522.647694322202], [-5698.234561556603, -5152.097694322677]], "source": 267198435, "length": 141.84300333457114}, {"destination": 1315785489, "path": [[-1446.0345615532333, -4043.997694322954], [-1469.3845615525447, -4128.447694322191]], "source": 1315785578, "length": 19.2982975384465}, {"destination": 1315785458, "path": [[-1446.0345615532333, -4043.997694322954], [-1224.3345615559065, -4091.2476943226748]], "source": 1315785578, "length": 43.44714629584503}, {"destination": 2991483746, "path": [[-4528.734561553449, 9244.252305677492], [-4411.184561554648, 9441.902305677984]], "source": 2991483745, "length": 49.3153704853047}, {"destination": 622622435, "path": [[-4528.734561553449, 9244.252305677492], [-4788.584561552511, 9327.352305676939], [-4928.884561550717, 9389.202305676747]], "source": 2991483745, "length": 82.79036188536192}, {"destination": 3421417542, "path": [[-4528.734561553449, 9244.252305677492], [-4318.98456155011, 9177.202305677312]], "source": 2991483745, "length": 42.591636552117194}, {"destination": 482733092, "path": [[-5188.18456155401, -153.8976943233905], [-5115.084561552408, -177.29769432328624]], "source": 601145316, "length": 14.843360492108006}, {"destination": 483113556, "path": [[-5188.18456155401, -153.8976943233905], [-5558.734561553536, -18.69769432261137]], "source": 601145316, "length": 76.61424653353278}, {"destination": 601145318, "path": [[-5188.18456155401, -153.8976943233905], [-5045.63456155438, 175.80230567659783], [-4928.3845615519795, 455.5023056767027]], "source": 601145316, "length": 144.25117097483343}, {"destination": 267198280, "path": [[-3498.484561553994, -6368.047694323309], [-4240.58456155052, -6064.897694322724]], "source": 267198300, "length": 156.3856593112685}, {"destination": 601097074, "path": [[-3498.484561553994, -6368.047694323309], [-3147.2345615526365, -6510.14769432301], [-3066.6845615527905, -6532.597694322461]], "source": 267198300, "length": 89.99704234859894}, {"destination": 267198231, "path": [[-3498.484561553994, -6368.047694323309], [-3476.084561555126, -6338.997694323112], [-3373.78456155335, -5960.54769432186]], "source": 267198300, "length": 94.12047552913911}, {"destination": 1315785300, "path": [[-1569.6845615522648, -2678.7976943225544], [-1260.5345615526176, -2780.7476943220167]], "source": 1315785293, "length": 63.00866844054509}, {"destination": 1315785573, "path": [[-1569.6845615522648, -2678.7976943225544], [-1548.8845615507785, -2598.1976943221243], [-1240.434561552206, -2692.2476943234133]], "source": 1315785293, "length": 80.62836161676964}, {"destination": 1315785575, "path": [[-1569.6845615522648, -2678.7976943225544], [-1589.1345615557384, -2754.1476943220287]], "source": 1315785293, "length": 17.160482064184077}, {"destination": 1883880248, "path": [[-482.284561556412, -7238.497694322276], [-580.7845615564133, -7231.647694322163]], "source": 1883856735, "length": 18.790981382922638}, {"destination": 2354289912, "path": [[-482.284561556412, -7238.497694322276], [-480.68456155192507, -7218.847694321795], [-472.68456155080685, -7127.197694321907]], "source": 1883856735, "length": 24.818092025399004}, {"destination": 1883856710, "path": [[-482.284561556412, -7238.497694322276], [-438.4845615561517, -7234.297694322933]], "source": 1883856735, "length": 8.380169506969265}, {"destination": 618426817, "path": [[11640.965438445506, 6492.502305677661], [11659.915438443135, 6461.202305677815]], "source": 79811522, "length": 7.839505633718734}, {"destination": 619349605, "path": [[11640.965438445506, 6492.502305677661], [11490.915438443495, 6720.852305678093], [11392.165438444124, 6873.602305677906], [10861.115438444813, 7754.502305678201]], "source": 79811522, "length": 317.47917561744464}, {"destination": 1317670986, "path": [[1821.115438445986, -263.4976943234335], [1860.0154384458278, -441.64769432342155]], "source": 1317671095, "length": 40.30352924397618}, {"destination": 1317671347, "path": [[1821.115438445986, -263.4976943234335], [1774.5654384455634, -272.447694323219]], "source": 1317671095, "length": 9.073165546335858}, {"destination": 1317671221, "path": [[1821.115438445986, -263.4976943234335], [1883.0654384487389, -267.94769432214594]], "source": 1317671095, "length": 11.822415741931325}, {"destination": 602360670, "path": [[6080.865438448768, -4054.7476943224583], [5723.36543844898, -4384.747694322399], [5610.2654384488915, -4494.597694321811], [5474.915438448135, -4663.897694323183], [5322.365438445331, -4826.94769432257]], "source": 84488166, "length": 224.62610064196676}, {"destination": 478379215, "path": [[6080.865438448768, -4054.7476943224583], [6025.265438445615, -3985.647694323191]], "source": 84488166, "length": 18.653302554523453}, {"destination": 1320103914, "path": [[2469.915438446435, 3384.6523056766387], [2619.2654384473713, 3399.7523056772393]], "source": 1320103861, "length": 28.602046393692053}, {"destination": 1316472004, "path": [[2469.915438446435, 3384.6523056766387], [2456.6154384473293, 3469.1523056782357]], "source": 1320103861, "length": 18.961674181405712}, {"destination": 1320103709, "path": [[2469.915438446435, 3384.6523056766387], [2474.9654384450537, 3352.8023056774714]], "source": 1320103861, "length": 7.147320416895224}, {"destination": 1315785288, "path": [[-4315.134561551304, 21.702305676996048], [-4460.084561550559, 89.95230567698798]], "source": 1315785362, "length": 31.467909579085283}, {"destination": 1315785534, "path": [[-4315.134561551304, 21.702305676996048], [-4212.734561555464, -26.49769432316873]], "source": 1315785362, "length": 22.228680863087334}, {"destination": 1315785239, "path": [[-4315.134561551304, 21.702305676996048], [-4292.684561555405, 69.20230567786234], [-4258.284561551307, 172.05230567718388]], "source": 1315785362, "length": 35.18420624830135}, {"destination": 1317671028, "path": [[301.91543844892976, 378.9523056774158], [291.1654384476492, 154.15230567761284], [259.5154384437137, 85.15230567773813]], "source": 1317671006, "length": 66.51828840508185}, {"destination": 1315678666, "path": [[-2812.1845615558527, -7602.297694322857], [-2774.134561555286, -7479.847694321862]], "source": 1315678867, "length": 28.176477991123615}, {"destination": 1315678634, "path": [[-2812.1845615558527, -7602.297694322857], [-2876.534561551125, -7804.097694322109]], "source": 1315678867, "length": 46.51642421941981}, {"destination": 1315678655, "path": [[-2812.1845615558527, -7602.297694322857], [-3202.734561554621, -7522.847694323431]], "source": 1315678867, "length": 76.33257425608133}, {"destination": 654379432, "path": [[6201.115438443594, 7004.65230567815], [6324.415438449194, 6911.052305676791], [6444.765438445188, 6811.002305678216]], "source": 476561693, "length": 63.27975516052041}, {"destination": 654381492, "path": [[6201.115438443594, 7004.65230567815], [7167.565438443546, 7787.352305676621]], "source": 476561693, "length": 253.15664670305952}, {"destination": 1316196995, "path": [[-1865.384561554606, 869.7523056770962], [-1906.9845615504732, 777.1023056779569]], "source": 1316192118, "length": 22.07080355520527}, {"destination": 479291272, "path": [[-3599.38456155362, -1277.7476943224287], [-3780.034561550849, -952.997694323443]], "source": 385113975, "length": 79.97553732051513}, {"destination": 1315785561, "path": [[-3599.38456155362, -1277.7476943224287], [-3669.0345615539854, -1233.6976943227996]], "source": 385113975, "length": 16.47423828600955}, {"destination": 848690496, "path": [[-3599.38456155362, -1277.7476943224287], [-3514.7845615526307, -1332.6976943233149], [-3376.1345615559435, -1456.9476943222526]], "source": 385113975, "length": 58.3965038996448}, {"destination": 477633771, "path": [[-8076.984561554923, -5886.497694323367], [-8165.884561556424, -6160.297694322026]], "source": 477634424, "length": 63.193276714316546}, {"destination": 477635164, "path": [[-8076.984561554923, -5886.497694323367], [-7808.284561555467, -5934.947694322901]], "source": 477634424, "length": 52.21638631631674}, {"destination": 477635095, "path": [[-8076.984561554923, -5886.497694323367], [-7849.584561554934, -5171.497694322014]], "source": 477634424, "length": 164.78335410727536}, {"destination": 477633756, "path": [[-7451.934561551354, -6020.247694323189], [-7561.134561555605, -6364.847694323217]], "source": 477634427, "length": 79.39871950991761}, {"destination": 4708397781, "path": [[-7451.934561551354, -6020.247694323189], [-7269.43456155027, -6070.947694322371]], "source": 477634427, "length": 36.48757837102498}, {"destination": 1320103861, "path": [[2619.2654384473713, 3399.7523056772393], [2469.915438446435, 3384.6523056766387]], "source": 1320103914, "length": 28.602046393692053}, {"destination": 267198568, "path": [[-7236.734561551828, -8276.74769432285], [-7241.984561552783, -8188.997694322353], [-7246.884561553202, -7987.697694321838], [-7246.284561553295, -7929.447694323244], [-7244.334561555377, -7880.747694322565], [-7218.084561550597, -7591.697694323329]], "source": 477643992, "length": 152.5834900792945}, {"destination": 477644839, "path": [[-7236.734561551828, -8276.74769432285], [-7158.434561553406, -8261.947694322203], [-7019.184561556813, -8216.797694322153], [-6919.334561551694, -8179.447694322661], [-6833.08456155629, -8138.897694323077], [-6723.784561550872, -8085.447694321957], [-6577.834561554141, -8014.047694322457], [-6408.934561555669, -7920.097694322337], [-6363.6345615520895, -7888.1476943220005], [-6316.234561552392, -7848.447694323469]], "source": 477643992, "length": 201.0117162805843}, {"destination": 477641134, "path": [[-6769.63456155022, -6206.997694322425], [-6402.284561552562, -6335.397694321899]], "source": 477634433, "length": 75.46142740565101}, {"destination": 443291839, "path": [[-6769.63456155022, -6206.997694322425], [-6562.634561554149, -5870.497694322907]], "source": 477634433, "length": 84.5542733577113}, {"destination": 420697447, "path": [[-5680.7345615510485, -6595.7476943232505], [-5755.034561552464, -6777.197694322723]], "source": 477634435, "length": 42.754369727197115}, {"destination": 654382714, "path": [[6049.815438444739, 6193.702305678173], [6009.565438446884, 6251.052305676907], [5966.015438445993, 6275.352305676663], [5947.8654384435, 6285.452305677452], [5799.465438443008, 6375.052305678253]], "source": 1319641348, "length": 63.432995958989196}, {"destination": 1320103928, "path": [[2333.2154384476667, 2651.102305677], [2158.065438443657, 2652.0023056768596]], "source": 1320103916, "length": 33.31111020811855}, {"destination": 1320103945, "path": [[2333.2154384476667, 2651.102305677], [2332.015438447854, 2623.5523056765687]], "source": 1320103916, "length": 6.131241550880289}, {"destination": 1320103970, "path": [[2333.2154384476667, 2651.102305677], [2336.3154384483664, 2724.302305677995]], "source": 1320103916, "length": 16.289658715620128}, {"destination": 1774845833, "path": [[4348.7654384435355, -7591.097694323424], [4262.665438446334, -7443.647694323374]], "source": 1774845835, "length": 36.65097902740408}, {"destination": 1774845838, "path": [[4348.7654384435355, -7591.097694323424], [4307.965438449912, -7608.247694323111], [4275.015438444996, -7635.097694322468], [4253.015438443697, -7669.147694322475], [4243.915438443935, -7707.297694322435], [4248.5654384449845, -7745.997694321715], [4266.615438446308, -7781.697694323242], [4296.315438445219, -7811.1976943233685]], "source": 1774845835, "length": 60.565077827356696}, {"destination": 1774845854, "path": [[4348.7654384435355, -7591.097694323424], [4395.465438449264, -7585.147694323169], [4442.015438449687, -7591.897694322114], [4483.815438447891, -7610.647694322736], [4516.715438448671, -7639.547694322957], [4537.515438443052, -7675.797694322028], [4544.165438446157, -7715.747694323482]], "source": 1774845835, "length": 53.8532439131129}, {"destination": 63298507, "path": [[8002.615438449822, -5687.847694321846], [8182.865438449482, -5661.64769432298]], "source": 1765485421, "length": 34.765946299474805}, {"destination": 1317671176, "path": [[2253.21543844359, 425.5023056778384], [2248.615438446677, 393.0023056781806]], "source": 1317670894, "length": 7.2803778724666754}, {"destination": 1317670816, "path": [[2253.21543844359, 425.5023056778384], [2256.3654384484266, 447.80230567731394]], "source": 1317670894, "length": 4.994722612667136}, {"destination": 1317670756, "path": [[2253.21543844359, 425.5023056778384], [2447.4154384463986, 411.20230567770477]], "source": 1317670894, "length": 37.06824426021359}, {"destination": 1887877324, "path": [[-5705.784561556015, -7679.797694322588], [-5703.584561551623, -7634.897694321907], [-5700.8845615555965, -7612.947694322969], [-5695.484561556441, -7591.647694322745], [-5626.034561551307, -7392.547694323071]], "source": 1887854488, "length": 65.95401555776729}, {"destination": 267198765, "path": [[-5705.784561556015, -7679.797694322588], [-5652.784561554825, -7674.047694322894], [-5510.384561553394, -7666.847694322243], [-5346.6845615517395, -7676.247694321958], [-5157.384561556455, -7710.4976943225265], [-4991.634561555713, -7759.4476943225745]], "source": 1887854488, "length": 138.61143657783876}, {"destination": 1581175404, "path": [[2758.7654384433336, -5897.197694322287], [2711.0654384472355, -5855.047694321769]], "source": 1581175407, "length": 13.043520324167147}, {"destination": 84487532, "path": [[2758.7654384433336, -5897.197694322287], [2781.1154384451697, -5908.947694322819]], "source": 1581175407, "length": 4.989306320512617}, {"destination": 1581175309, "path": [[2758.7654384433336, -5897.197694322287], [2837.115438445892, -5755.297694323147], [2771.4154384455014, -5723.147694322251]], "source": 1581175407, "length": 49.291545376792996}, {"destination": 1469016788, "path": [[-6280.734561556756, -921.9476943229665], [-6248.084561555344, -883.2476943219092]], "source": 1469016730, "length": 10.613254817528269}, {"destination": 1469016667, "path": [[-6280.734561556756, -921.9476943229665], [-6422.434561550006, -1089.6976943222114]], "source": 1469016730, "length": 46.02028730499337}, {"destination": 1469016652, "path": [[-6280.734561556756, -921.9476943229665], [-6510.934561553939, -796.0976943230946], [-6962.684561550248, -543.7976943234446]], "source": 1469016730, "length": 154.56734633683914}, {"destination": 1469016599, "path": [[-6280.734561556756, -921.9476943229665], [-6138.334561555325, -1004.6476943230687]], "source": 1469016730, "length": 32.73497045657092}, {"destination": 1774845835, "path": [[4544.165438446157, -7715.747694323482], [4537.515438443052, -7675.797694322028], [4516.715438448671, -7639.547694322957], [4483.815438447891, -7610.647694322736], [4442.015438449687, -7591.897694322114], [4395.465438449264, -7585.147694323169], [4348.7654384435355, -7591.097694323424]], "source": 1774845854, "length": 53.8532439131129}, {"destination": 1774845860, "path": [[4544.165438446157, -7715.747694323482], [4719.41543844423, -7733.797694323031]], "source": 1774845854, "length": 33.56299848604203}, {"destination": 1774845838, "path": [[4544.165438446157, -7715.747694323482], [4535.565438445133, -7756.397694322459], [4512.3654384440215, -7792.6476943233065], [4476.865438448385, -7820.697694322476], [4432.815438448756, -7837.647694323379], [4384.765438445015, -7841.797694322139], [4337.615438444686, -7832.647694321793], [4296.315438445219, -7811.1976943233685]], "source": 1774845854, "length": 64.31712226571784}, {"destination": 1320104104, "path": [[3281.2654384457574, 2197.1023056774898], [3271.16543844852, 2134.7023056765834]], "source": 1320103920, "length": 14.009652301583216}, {"destination": 1320103627, "path": [[3281.2654384457574, 2197.1023056774898], [3504.4654384464025, 2212.2523056768982]], "source": 1320103920, "length": 42.58168980887051}, {"destination": 1320103870, "path": [[3281.2654384457574, 2197.1023056774898], [3136.915438446408, 2195.55230567714]], "source": 1320103920, "length": 27.45456536158965}, {"destination": 1316471719, "path": [[3281.2654384457574, 2197.1023056774898], [3269.415438445833, 2288.40230567684]], "source": 1320103920, "length": 20.428993255174902}, {"destination": 4708397771, "path": [[-7056.7845615556735, -5750.697694322682], [-7148.7845615507695, -5728.997694323112]], "source": 602259363, "length": 18.147076082218366}, {"destination": 4708397780, "path": [[-7056.7845615556735, -5750.697694322682], [-7087.33456155386, -5850.297694323103]], "source": 602259363, "length": 22.89912680758291}, {"destination": 481506490, "path": [[4719.41543844423, -7733.797694323031], [4721.165438446917, -7693.197694322862]], "source": 1774845860, "length": 9.034841024551733}, {"destination": 481504379, "path": [[4719.41543844423, -7733.797694323031], [4706.7154384450305, -7786.097694323146], [4682.765438445813, -7835.347694323147], [4648.36543844882, -7879.89769432329], [4604.71543844676, -7918.097694322058], [4553.4654384482565, -7948.597694323212], [4496.415438445922, -7970.247694322196], [4435.565438448919, -7982.297694322682], [4373.165438444459, -7984.347694321769], [4311.465438448181, -7976.347694322428], [4252.615438446128, -7958.497694323441], [4198.765438445662, -7931.447694321747]], "source": 1774845860, "length": 130.5935361540025}, {"destination": 1774845854, "path": [[4719.41543844423, -7733.797694323031], [4544.165438446157, -7715.747694323482]], "source": 1774845860, "length": 33.56299848604203}, {"destination": 477626400, "path": [[-7345.984561553109, -5682.547694322082], [-7237.384561555871, -5311.147694323282]], "source": 602259365, "length": 85.13797692328515}, {"destination": 477634427, "path": [[-7345.984561553109, -5682.547694322082], [-7451.934561551354, -6020.247694323189]], "source": 602259365, "length": 77.75629174514702}, {"destination": 967329921, "path": [[512.465438447407, -2115.5476943217623], [246.06543844640782, -2129.147694322597]], "source": 882614840, "length": 50.74953759029468}, {"destination": 476078931, "path": [[512.465438447407, -2115.5476943217623], [776.9154384433818, -2109.7976943220688]], "source": 882614840, "length": 50.30485128313407}, {"destination": 967330147, "path": [[512.465438447407, -2115.5476943217623], [508.9654384491382, -1681.7476943220554]], "source": 882614840, "length": 96.47514052614152}, {"destination": 1316623703, "path": [[512.465438447407, -2115.5476943217623], [514.2154384429887, -2302.397694322167]], "source": 882614840, "length": 41.55494230404102}, {"destination": 1782221369, "path": [[5858.8154384437985, -8114.347694322177], [5842.565438449299, -8130.897694321959]], "source": 1782221468, "length": 4.805271096119174}, {"destination": 1769171987, "path": [[5858.8154384437985, -8114.347694322177], [5895.615438447521, -8141.097694322141], [5899.615438444527, -8182.3476943228], [6009.865438443285, -8250.447694322815], [6056.365438446675, -8279.19769432306]], "source": 1782221468, "length": 55.16076252037004}, {"destination": 1769171951, "path": [[5858.8154384437985, -8114.347694322177], [5813.015438448588, -8081.047694322052], [5631.765438444347, -7967.697694322595], [5566.865438446201, -7921.647694322686], [5352.465438448917, -7756.997694322365], [5212.665438449449, -7628.5476943223075], [5100.315438447467, -7481.847694322141], [5019.865438448789, -7368.347694322708], [4931.365438444856, -7216.947694322684]], "source": 1782221468, "length": 270.13354451866974}, {"destination": 1316471914, "path": [[2672.6154384490997, 2098.552305676904], [2758.5654384481018, 2104.202305677205]], "source": 1316472162, "length": 16.394169942856678}, {"destination": 1316471926, "path": [[2672.6154384490997, 2098.552305676904], [2683.5154384485804, 2029.2023056782682]], "source": 1316472162, "length": 15.561883671378666}, {"destination": 1316471895, "path": [[2672.6154384490997, 2098.552305676904], [2688.965438444768, 2258.352305677391]], "source": 1316472162, "length": 35.673875576174694}, {"destination": 4573378138, "path": [[4093.265438449123, 8997.552305677558], [4027.165438444058, 9037.252305677868]], "source": 4573378133, "length": 15.363122640589042}, {"destination": 4573378135, "path": [[4093.265438449123, 8997.552305677558], [4051.065438446244, 8946.952305677769]], "source": 4573378133, "length": 13.822155523457996}, {"destination": 115548357, "path": [[9920.565438449103, -6829.04769432291], [9875.71543844723, -6807.34769432334], [9843.715438449863, -6791.897694322202]], "source": 115548081, "length": 16.786524501586594}, {"destination": 602392063, "path": [[9920.565438449103, -6829.04769432291], [9793.665438444066, -7013.9976943224265], [9659.315438447891, -7219.847694322823]], "source": 115548081, "length": 100.11062853819747}, {"destination": 475979699, "path": [[6070.615438446225, 1077.702305677164], [6147.815438446003, 1041.3523056769236]], "source": 475979698, "length": 16.759801263432227}, {"destination": 3356046292, "path": [[6070.615438446225, 1077.702305677164], [6141.465438446403, 1147.902305676851], [6168.36543844812, 1174.0023056781013], [6221.315438445174, 1238.452305678095]], "source": 475979698, "length": 45.876354740790816}, {"destination": 475984763, "path": [[6147.815438446003, 1041.3523056769236], [6570.215438443938, 886.7023056779999]], "source": 475979699, "length": 87.38279230973403}, {"destination": 475979717, "path": [[6147.815438446003, 1041.3523056769236], [6110.915438448217, 1008.102305677383]], "source": 475979699, "length": 10.193961404609762}, {"destination": 1315785424, "path": [[-2530.8345615542294, -4140.54769432326], [-2609.8345615537255, -4420.19769432278]], "source": 1315785374, "length": 63.979931184858046}, {"destination": 95386222, "path": [[-2530.8345615542294, -4140.54769432326], [-2403.084561557023, -4155.1476943233465]], "source": 1315785374, "length": 24.50823959986859}, {"destination": 1887854524, "path": [[-3747.3345615524067, -7705.9976943232305], [-3762.1345615548307, -7758.947694322061], [-3982.1345615536075, -7713.997694322572]], "source": 1887854519, "length": 55.115732377769724}, {"destination": 1317670769, "path": [[3187.165438447437, 438.3023056782065], [3193.615438448205, 518.6523056774917]], "source": 1317670900, "length": 17.911375157627887}, {"destination": 1317671197, "path": [[3187.165438447437, 438.3023056782065], [3183.3154384486306, 390.20230567743397]], "source": 1317670900, "length": 10.722241546327064}, {"destination": 1317671047, "path": [[3187.165438447437, 438.3023056782065], [2921.565438448681, 473.10230567809697]], "source": 1317670900, "length": 51.099431746499505}, {"destination": 478379193, "path": [[9110.365438445457, -4657.847694321759], [9121.065438449705, -4609.647694323371], [9135.865438445024, -4550.597694322533], [9151.565438443755, -4506.997694322834], [9168.015438447695, -4463.847694323064], [9196.565438443828, -4407.3976943224125]], "source": 848698015, "length": 58.25722119022272}, {"destination": 848698018, "path": [[9110.365438445457, -4657.847694321759], [9103.31543844478, -4608.047694322437], [9091.165438448457, -4566.347694321848], [9068.515438443115, -4528.497694321843], [9041.615438448502, -4491.347694322912]], "source": 848698015, "length": 39.88578190313763}, {"destination": 1887854544, "path": [[-3982.1345615536075, -7713.997694322572], [-4011.034561550275, -7817.347694322408]], "source": 1887854524, "length": 23.6314867150227}, {"destination": 1315678678, "path": [[-3982.1345615536075, -7713.997694322572], [-4277.334561550106, -7653.64769432253]], "source": 1887854524, "length": 57.711685651543554}, {"destination": 1887854519, "path": [[-3982.1345615536075, -7713.997694322572], [-3762.1345615548307, -7758.947694322061], [-3747.3345615524067, -7705.9976943232305]], "source": 1887854524, "length": 55.115732377769724}, {"destination": 477626400, "path": [[-7073.23456155251, -4832.647694323456], [-7237.384561555871, -5311.147694323282]], "source": 477626301, "length": 110.897019860783}, {"destination": 267198208, "path": [[-7073.23456155251, -4832.647694323456], [-7282.234561550638, -4780.947694323246]], "source": 477626301, "length": 41.37159344061423}, {"destination": 267198397, "path": [[-7073.23456155251, -4832.647694323456], [-6771.18456155057, -4901.747694322722]], "source": 477626301, "length": 59.455659253871765}, {"destination": 1315785515, "path": [[-2918.434561550498, -2849.1976943225695], [-3130.0845615547246, -2777.397694321948]], "source": 1315785569, "length": 43.299196122020284}, {"destination": 1315785371, "path": [[-2918.434561550498, -2849.1976943225695], [-2860.484561551857, -2868.7976943224667]], "source": 1315785569, "length": 11.85058886547703}, {"destination": 1315785311, "path": [[-2918.434561550498, -2849.1976943225695], [-2849.3345615530075, -2725.64769432293]], "source": 1315785569, "length": 30.456671546939322}, {"destination": 1319641362, "path": [[5523.715438449983, 1947.6523056773942], [5540.315438445021, 2000.602305678001], [5556.415438448425, 2179.502305677872], [5564.265438444238, 2462.402305678069]], "source": 1319641025, "length": 115.02650350003475}, {"destination": 1319204589, "path": [[5523.715438449983, 1947.6523056773942], [5339.015438444505, 2024.3023056778497]], "source": 1319641025, "length": 39.043747407497165}, {"destination": 482729263, "path": [[5523.715438449983, 1947.6523056773942], [5768.265438447884, 1860.2023056768503]], "source": 1319641025, "length": 50.41071443272866}, {"destination": 1320103859, "path": [[1289.0154384450625, 2241.402305678264], [1310.865438448161, 2282.4523056765856], [1326.5654384468917, 2333.152305677544]], "source": 1320103954, "length": 21.693506469703063}, {"destination": 1320103892, "path": [[1289.0154384450625, 2241.402305678264], [1264.9654384446762, 2168.0023056767086]], "source": 1320103954, "length": 16.951757520297885}, {"destination": 1316472087, "path": [[1289.0154384450625, 2241.402305678264], [1171.015438444556, 2273.5523056773845], [1146.9654384441696, 2186.652305677939]], "source": 1320103954, "length": 43.41222954630416}, {"destination": 1320103555, "path": [[1495.5654384465333, 3349.3023056774264], [1359.9154384493772, 3394.752305677429]], "source": 1320103926, "length": 27.70781298483035}, {"destination": 479297947, "path": [[-2522.2845615502365, 6358.752305677839], [-2410.884561555804, 6349.252305676956]], "source": 601145286, "length": 21.2932788271436}, {"destination": 2991482229, "path": [[-2522.2845615502365, 6358.752305677839], [-2349.4345615517886, 6649.352305677425], [-2315.934561551103, 6712.102305677092]], "source": 601145286, "length": 87.84857115942002}, {"destination": 4153722393, "path": [[-4766.084561552475, 1333.1023056775139], [-5225.234561549996, 1497.1023056773447]], "source": 601145287, "length": 94.63057961772104}, {"destination": 483110717, "path": [[-4766.084561552475, 1333.1023056775139], [-4708.88456155194, 1318.7023056779879]], "source": 601145287, "length": 11.339917151737312}, {"destination": 601145319, "path": [[-4766.084561552475, 1333.1023056775139], [-4685.234561556228, 1707.7023056781827], [-4661.934561553949, 1815.552305677315]], "source": 601145287, "length": 109.10526693990626}, {"destination": 93310272, "path": [[-4603.234561550096, 1940.15230567679], [-4531.88456155118, 1924.0523056769375]], "source": 601145288, "length": 14.033756191092326}, {"destination": 624783812, "path": [[-4603.234561550096, 1940.15230567679], [-4120.384561552726, 2699.2023056777725], [-4036.484561552811, 2803.7523056774207]], "source": 601145288, "length": 220.36537026971496}, {"destination": 147477301, "path": [[-4603.234561550096, 1940.15230567679], [-4966.234561550209, 2052.7523056781406]], "source": 601145288, "length": 73.43640741753809}, {"destination": 601145290, "path": [[-3262.2845615506435, 4232.6023056773465], [-3031.534561550586, 4697.352305678138]], "source": 601145289, "length": 112.28722755784604}, {"destination": 483103101, "path": [[-3262.2845615506435, 4232.6023056773465], [-3523.184561551318, 4326.3023056780985], [-3585.4345615504712, 4399.202305677363], [-3641.2345615559616, 4601.0523056772], [-3683.9345615504726, 4779.152305676604], [-3761.6845615531247, 4869.152305676749]], "source": 601145289, "length": 185.33625034093907}, {"destination": 76482738, "path": [[-3031.534561550586, 4697.352305678138], [-2950.434561554971, 4667.3023056769125]], "source": 601145290, "length": 16.809738467173286}, {"destination": 601145284, "path": [[-3031.534561550586, 4697.352305678138], [-2880.3845615570367, 5000.352305676969]], "source": 601145290, "length": 73.2600804075296}, {"destination": 483103101, "path": [[-3031.534561550586, 4697.352305678138], [-3761.6845615531247, 4869.152305676749]], "source": 601145290, "length": 144.02768884629708}, {"destination": 638736468, "path": [[-8768.38456155582, -6556.74769432224], [-8675.184561553806, -6233.397694321851]], "source": 601145294, "length": 74.06138130564553}, {"destination": 156253438, "path": [[-8768.38456155582, -6556.74769432224], [-8697.88456155618, -6603.597694322616]], "source": 601145294, "length": 16.978054774239236}, {"destination": 601145298, "path": [[-8263.634561551215, -5030.247694323364], [-8203.884561552855, -4902.9476943225345], [-8143.28456155522, -4791.047694322259], [-8045.584561550357, -4600.947694322955]], "source": 601145296, "length": 104.10697959448864}, {"destination": 850278592, "path": [[-8045.584561550357, -4600.947694322955], [-7987.734561552884, -4609.697694322179]], "source": 601145298, "length": 11.171363347475207}, {"destination": 850279563, "path": [[-8045.584561550357, -4600.947694322955], [-7968.584561552916, -4476.597694322848], [-7809.184561551774, -4219.297694323387], [-7656.334561552569, -3987.1976943217646]], "source": 601145298, "length": 155.2813222894735}, {"destination": 476682044, "path": [[-7288.234561556806, -3417.94769432191], [-7480.684561556927, -3294.19769432171], [-7581.234561556016, -3227.747694323213], [-8006.734561554651, -2946.5976943221503], [-8177.384561555811, -2833.5476943226467], [-8687.084561550762, -2494.8476943222886], [-8852.034561556366, -2389.297694323389], [-8975.48456155306, -2307.797694323099]], "source": 601145300, "length": 404.8486474799221}, {"destination": 601145301, "path": [[-7288.234561556806, -3417.94769432191], [-7251.684561552452, -3362.5476943228705]], "source": 601145300, "length": 14.145697951082683}, {"destination": 1890732708, "path": [[-7251.684561552452, -3362.5476943228705], [-7219.184561556347, -3317.097694322868]], "source": 601145301, "length": 11.847546352239343}, {"destination": 476675164, "path": [[-7251.684561552452, -3362.5476943228705], [-7183.134561550731, -3400.9476943221985]], "source": 601145301, "length": 15.583297657589192}, {"destination": 1320104043, "path": [[1995.265438445415, 2555.302305676577], [1875.365438444021, 2573.7023056766616]], "source": 1320103929, "length": 23.166968824051615}, {"destination": 1315785593, "path": [[-4501.884561555869, 1177.0523056782167], [-4370.334561556888, 1153.8523056771055]], "source": 1315785380, "length": 25.544159410888103}, {"destination": 1315785282, "path": [[-2494.634561550413, -812.5476943234844], [-2468.6345615521077, -729.4476943222605]], "source": 1315785197, "length": 19.130844053262024}, {"destination": 1319641320, "path": [[4711.51543844428, 4110.852305677426], [4913.765438445239, 4096.702305677269]], "source": 1319641051, "length": 38.59402636853609}, {"destination": 1319641145, "path": [[4711.51543844428, 4110.852305677426], [4703.46543844613, 4186.552305677438]], "source": 1319641051, "length": 16.904372687919043}, {"destination": 1319641268, "path": [[4711.51543844428, 4110.852305677426], [4712.665438447061, 3916.20230567824]], "source": 1319641051, "length": 43.288787361010876}, {"destination": 1328999408, "path": [[2099.315438449878, 6979.302305676782], [2109.8154384446843, 7106.602305677612], [2166.165438445944, 7131.85230567781]], "source": 1328999428, "length": 40.48047846874153}, {"destination": 1328999473, "path": [[2099.315438449878, 6979.302305676782], [1973.4654384464534, 6984.702305677714]], "source": 1328999428, "length": 23.96663738509853}, {"destination": 1328999459, "path": [[2099.315438449878, 6979.302305676782], [2096.41543844441, 6897.852305677077], [2120.565438445965, 6886.402305678274], [2133.965438446239, 6799.202305677099], [2075.0154384430175, 6801.552305677916]], "source": 1328999428, "length": 54.15703363892862}, {"destination": 1328999569, "path": [[2099.315438449878, 6979.302305676782], [2340.51543844771, 6968.952305676623]], "source": 1328999428, "length": 45.93383948952689}, {"destination": 1320103624, "path": [[3069.865438448005, 3484.652305678182], [3056.215438448362, 3568.102305678167]], "source": 1320104080, "length": 18.738869164497455}, {"destination": 1317671132, "path": [[3217.6654384485914, 1460.0023056772216], [3233.9654384472283, 1360.6523056779452]], "source": 475978939, "length": 22.310836466524307}, {"destination": 1317671157, "path": [[3217.6654384485914, 1460.0023056772216], [2880.1654384480457, 1356.6023056768017], [2624.31543844599, 1298.5023056781843]], "source": 475978939, "length": 118.5227017212695}, {"destination": 1320104120, "path": [[2745.8154384447653, 3366.6523056776755], [2635.365438443671, 3358.4523056777725]], "source": 1320103931, "length": 21.08464438722953}, {"destination": 1320103706, "path": [[2745.8154384447653, 3366.6523056776755], [2908.965438443545, 3395.152305676774]], "source": 1320103931, "length": 31.669185202798236}, {"destination": 1320103924, "path": [[2745.8154384447653, 3366.6523056776755], [2739.965438443903, 3434.1523056777846]], "source": 1320103931, "length": 15.052281452634146}, {"destination": 1320104110, "path": [[2745.8154384447653, 3366.6523056776755], [2751.765438446796, 3297.8523056765853]], "source": 1320103931, "length": 15.341988797375777}, {"destination": 654578475, "path": [[-6086.234561550441, -5057.097694322721], [-6333.784561554978, -5008.997694321948], [-6483.434561552314, -4972.297694322947]], "source": 267198436, "length": 77.87535580535132}, {"destination": 477615613, "path": [[-6086.234561550441, -5057.097694322721], [-5698.234561556603, -5152.097694322677]], "source": 267198436, "length": 76.74383268616789}, {"destination": 267198014, "path": [[-6086.234561550441, -5057.097694322721], [-5972.384561552246, -4714.447694322388]], "source": 267198436, "length": 79.2174603931048}, {"destination": 267198435, "path": [[-6086.234561550441, -5057.097694322721], [-6213.584561550078, -5415.947694322298], [-6245.134561552845, -5462.897694322066], [-6305.384561557048, -5522.647694322202]], "source": 267198436, "length": 112.98403172183289}, {"destination": 477641795, "path": [[-5740.284561554176, -4137.147694322607], [-5881.134561555256, -4086.497694322233], [-6134.7845615529195, -3996.5476943226718]], "source": 267198437, "length": 81.2722474497784}, {"destination": 1315678607, "path": [[-5740.284561554176, -4137.147694322607], [-5738.28456155212, -4107.147694321967], [-5728.034561556683, -4070.447694322965], [-5680.584561552849, -3980.097694322282], [-5656.48456155543, -3938.647694322839], [-5628.934561556775, -3897.1976943233954], [-5537.734561556817, -3793.9976943217603]], "source": 267198437, "length": 86.76166465206312}, {"destination": 3110525728, "path": [[-4928.3845615519795, 455.5023056767027], [-5076.884561553641, 496.90230567733806], [-5116.934561556263, 509.20230567719216]], "source": 601145318, "length": 37.795941248945695}, {"destination": 481390556, "path": [[-4928.3845615519795, 455.5023056767027], [-4854.334561557039, 436.9523056766411]], "source": 601145318, "length": 14.673897984939178}, {"destination": 1563370132, "path": [[-4928.3845615519795, 455.5023056767027], [-4897.284561550919, 529.2523056770193], [-4870.18456155397, 643.502305678112], [-4811.3345615519165, 1015.4023056774264]], "source": 601145318, "length": 126.82138328721966}, {"destination": 601145288, "path": [[-4661.934561553949, 1815.552305677315], [-4603.234561550096, 1940.15230567679]], "source": 601145319, "length": 29.87405513635861}, {"destination": 385114569, "path": [[-4661.934561553949, 1815.552305677315], [-4598.034561553277, 1791.1523056781675]], "source": 601145319, "length": 13.308918280141171}, {"destination": 482729435, "path": [[3811.8654384433626, 1371.6523056768183], [4026.115438449551, 1288.9523056767162]], "source": 1317670908, "length": 44.703803671149196}, {"destination": 1317670835, "path": [[3811.8654384433626, 1371.6523056768183], [3644.5154384452394, 1353.1523056773408]], "source": 1317670908, "length": 32.090844234507074}, {"destination": 1317671334, "path": [[3811.8654384433626, 1371.6523056768183], [3834.2154384451987, 1532.652305677118], [3611.9654384449973, 1450.2023056781609]], "source": 1317670908, "length": 82.12906319730143}, {"destination": 601145289, "path": [[-3644.984561553599, 3507.8023056769325], [-3262.2845615506435, 4232.6023056773465]], "source": 601145322, "length": 176.85948665467652}, {"destination": 76482739, "path": [[-3644.984561553599, 3507.8023056769325], [-3506.1845615516063, 3554.552305677916]], "source": 601145322, "length": 28.3712438165541}, {"destination": 1324295104, "path": [[4997.815438443354, 5144.902305676879], [4998.41543844326, 5178.902305678079], [4998.765438443797, 5198.202305678024], [4981.5654384488535, 5308.302305676804], [4952.115438449311, 5385.1023056772365]], "source": 1319641067, "length": 54.5326940023016}, {"destination": 1319641417, "path": [[4997.815438443354, 5144.902305676879], [4529.115438444364, 5122.452305677427]], "source": 1319641067, "length": 89.28272350115523}, {"destination": 1319641415, "path": [[4997.815438443354, 5144.902305676879], [4995.615438446066, 5023.352305677519], [4995.265438445529, 5004.952305677435]], "source": 1319641067, "length": 31.129119320318996}, {"destination": 475977913, "path": [[2411.3654384478878, 1250.152305678043], [2231.1654384452595, 1213.452305677265]], "source": 475980794, "length": 35.22833742912815}, {"destination": 1320103945, "path": [[2525.3654384442825, 2631.352305677126], [2479.7654384443035, 2635.9523056775915], [2332.015438447854, 2623.5523056765687]], "source": 1320103933, "length": 36.96631032138032}, {"destination": 1320104114, "path": [[2525.3654384442825, 2631.352305677126], [2527.865438445076, 2713.202305677953]], "source": 1320103933, "length": 18.20880396026733}, {"destination": 1320103918, "path": [[2525.3654384442825, 2631.352305677126], [2682.5154384439998, 2623.0023056772466]], "source": 1320103933, "length": 29.94456763524142}, {"destination": 1317671409, "path": [[3048.2654384442753, 1183.7023056777696], [3051.0154384444377, 1161.1023056765646], [3048.2154384472437, 1112.9023056781762]], "source": 1317670910, "length": 15.78445868397781}, {"destination": 1317670907, "path": [[3048.2654384442753, 1183.7023056777696], [2970.7654384480975, 1179.4023056772573]], "source": 1317670910, "length": 14.769707800863682}, {"destination": 1317671261, "path": [[3048.2654384442753, 1183.7023056777696], [3136.8654384493766, 1188.602305678188], [3242.2154384477153, 1179.4023056772573]], "source": 1317670910, "length": 37.02441875416631}, {"destination": 1319641265, "path": [[4137.365438445784, 4312.252305677333], [4290.415438447326, 4312.702305677263]], "source": 1319641080, "length": 29.108664935821878}, {"destination": 1319641235, "path": [[4137.365438445784, 4312.252305677333], [4137.365438445784, 4248.402305677246], [4051.5654384449817, 4234.652305678211], [3982.5654384486597, 4221.252305677936]], "source": 1319641080, "length": 44.25887834900978}, {"destination": 1319641175, "path": [[4137.365438445784, 4312.252305677333], [4137.365438445784, 4381.052305676647]], "source": 1319641080, "length": 15.300222603262329}, {"destination": 1581175241, "path": [[3305.215438444975, -7176.84769432303], [3276.0154384448015, -7189.897694322766]], "source": 1489398823, "length": 6.265738517046227}, {"destination": 1489398838, "path": [[3305.215438444975, -7176.84769432303], [3315.9654384462556, -7144.7476943227175], [3340.1154384478104, -7120.647694321747]], "source": 1489398823, "length": 14.482847805498713}, {"destination": 1489398735, "path": [[3305.215438444975, -7176.84769432303], [3353.5154384480848, -7190.597694322065], [3389.715438444796, -7205.4976943221045], [3428.6154384446377, -7231.897694323308]], "source": 1489398823, "length": 26.762579589739588}, {"destination": 1324295152, "path": [[4992.3654384471665, 4844.302305677673], [4529.115438444364, 4808.202305676801], [4506.965438444866, 4804.902305677317]], "source": 1319641082, "length": 92.74827469994094}, {"destination": 481501398, "path": [[4992.3654384471665, 4844.302305677673], [4990.015438444572, 4715.102305677732]], "source": 1319641082, "length": 28.736282547956755}, {"destination": 1319641415, "path": [[4992.3654384471665, 4844.302305677673], [4994.86543844796, 4983.852305677772], [4995.265438445529, 5004.952305677435]], "source": 1319641082, "length": 35.73153114797788}, {"destination": 3117897473, "path": [[981.0154384481962, -1791.3976943226828], [1059.9154384465237, -1860.3976943225575]], "source": 1745207295, "length": 21.46128779949002}, {"destination": 3117897473, "path": [[981.0154384481962, -1791.3976943226828], [1034.6154384492934, -1749.5476943221179], [1080.8654384462102, -1730.7976943232716], [1137.5154384438702, -1743.6476943224477], [1188.365438444805, -1764.3976943233497], [1224.2154384480841, -1785.1476943224752], [1194.1654384486355, -1802.9476943226541], [1140.9654384451073, -1832.5976943227574], [1059.9154384465237, -1860.3976943225575]], "source": 1745207295, "length": 89.26211394509002}, {"destination": 3117897473, "path": [[981.0154384481962, -1791.3976943226828], [950.2154384435357, -1816.7976943228582], [897.015438447113, -1885.9976943232937], [897.015438447113, -1913.6976943219252], [924.7654384481052, -1919.5976943233718], [975.6654384460717, -1907.7476943234474], [1026.5154384470065, -1897.847694323218], [1059.9154384465237, -1860.3976943225575]], "source": 1745207295, "length": 68.57586350741387}, {"destination": 773662870, "path": [[981.0154384481962, -1791.3976943226828], [951.8154384480226, -1765.847694322531], [883.065438443964, -1705.7476943218576]], "source": 1745207295, "length": 26.641874560435014}, {"destination": 4715107668, "path": [[102.86543844983953, -4319.897694323061], [83.66543844573471, -4314.797694322081], [44.71543844886128, -4302.547694322811], [-16.03456155407912, -4279.147694322915], [-89.03456155451295, -4250.347694322088], [-170.63456155597123, -4215.247694322244], [-206.98456155088252, -4198.547694322486]], "source": 4715107669, "length": 64.88897528181963}, {"destination": 4715079375, "path": [[102.86543844983953, -4319.897694323061], [109.91543844340868, -4308.397694321897]], "source": 4715107669, "length": 2.8889087524601744}]}'); diff --git a/js/hash_table.js b/js/hash_table.js index 9194a309738225203dec0214f9249bb76526b3fd..f8abf7b6edf5571122a99b5dd2b673acc81f3ed9 100644 --- a/js/hash_table.js +++ b/js/hash_table.js @@ -39,8 +39,9 @@ const INITIAL_HASH_TABLE_CAPACITY = 7; // eslint-disable-line no-magic-numbers const MAXIMUM_LOAD_FACTOR = 2 / 3; // eslint-disable-line no-magic-numbers class HashTable { - constructor(hashFunction) { + constructor(hashFunction, equalityFunction = (left, right) => left === right) { this._hashFunction = (element) => mod(hashFunction(element), this._buckets.length); + this._equalityFunction = equalityFunction; this.clear(); } @@ -64,13 +65,19 @@ class HashTable { return this._size; } + _getBucketAndIndex(key) { + const bucket = this._buckets[this._hashFunction(key)]; + const index = bucket.findIndex((pair) => this._equalityFunction(pair[0], key)); + return [bucket, index]; + } + has(key) { - return this._buckets[this._hashFunction(key)].map((pair) => pair[0]).includes(key); + const [_, index] = this._getBucketAndIndex(key); + return index >= 0; } get(key) { - const bucket = this._buckets[this._hashFunction(key)]; - const index = bucket.findIndex((pair) => pair[0] === key); + const [bucket, index] = this._getBucketAndIndex(key); if (index >= 0) { return bucket[index][1]; } @@ -78,8 +85,7 @@ class HashTable { } set(key, value) { - const bucket = this._buckets[this._hashFunction(key)]; - const index = bucket.findIndex((pair) => pair[0] === key); + const [bucket, index] = this._getBucketAndIndex(key); if (index >= 0) { bucket[index][1] = value; } else { @@ -92,9 +98,12 @@ class HashTable { return this; } + add(key) { + this.set(key, undefined); + } + delete(key) { - const bucket = this._buckets[this._hashFunction(key)]; - const index = bucket.findIndex((pair) => pair[0] === key); + const [bucket, index] = this._getBucketAndIndex(key); if (index >= 0) { --this._size; bucket.splice(index, 1); diff --git a/js/heat_map.js b/js/heat_map.js deleted file mode 100644 index 8a0ad23ea97c0610a448c9a1f3a5445aa9303fe7..0000000000000000000000000000000000000000 --- a/js/heat_map.js +++ /dev/null @@ -1,86 +0,0 @@ -/* exported computeHeatMap */ - -class EdgeLabeledGraph { - constructor(vertices, defaultLabel) { - const verticesList = [...vertices]; // copy the vertices to a list in case they can only be iterated over once - this.edges = new Map(); - for (const source of verticesList) { - const adjacencies = new Map(); - for (const destination of verticesList) { - adjacencies.set(destination, defaultLabel); - } - this.edges.set(source, adjacencies); - } - } - - get vertices() { - return this.edges.keys(); - } - - getLabel(source, destination) { - return this.edges.get(source).get(destination); - } - - setLabel(source, destination, label) { - return this.edges.get(source).set(destination, label); - } - - capLabel(source, destination, label) { - const adjacencies = this.edges.get(source); - adjacencies.set(destination, Math.min(adjacencies.get(destination), label)); - } - - increaseLabel(source, destination, increase) { - const adjacencies = this.edges.get(source); - adjacencies.set(destination, adjacencies.get(destination) + increase); - } -} - -function computeTransitGraph(city) { - return undefined; // TODO: stub -} - -// Preliminaries: -// W[u][v] is the (possibly infinite) weight from u to v. -// -// Standard Floyd–Warshall Recurrence: -// D^(i)[u][v] is the distance from u to v using only the first i vertices as intermediates, so -// D^(n)[u][v] is the distance from u to v. -// -// D^(0)[u][v] = … -// D^(i)[u][v] = … for 1 ≤ i ≤ n -// -// Recurrence for Shortest-Path Successors: -// S^(i)[u][v] is a vertex that immediately follows u in a shortest path from u to v using only the first i vertices as intermediates, so -// S^(n)[u][v] is a vertex that immediately follows u in a shortest path from u to v. -// -// S^(0)[u][v] = … if … -// … otherwise -// S^(i)[u][v] = … if … -// … if … -// … otherwise for 1 ≤ i ≤ n -function computeShortestPathSuccessors(transitGraph) { - return undefined; // TODO: stub -} - -// Preliminaries: -// S^(n)[u][v] is defined as above computeShortestPathSuccessors. -// -// Recurrence for Traffic Matrix: -// T^(i)[u][v] is the number of distinct paths that visit a vertex \(u\) in their first \(i\) steps while traveling to a final destination \(v\), so -// T^(n-1)[u][v] is the number of distinct paths that travel via \(u\) to their final destination \(v\). -// -// T^(0)[u][v] = 1 -// T^(i)[u][v] = 1 + sum_{w|S^(n)[w][v]=u} T^(i-1)[w][v] for 1 ≤ i ≤ n -// -function computeTrafficMatrix(successors) { - return undefined; // TODO: stub -} - -function computeHeatFromTraffic(traffic) { - return undefined; // TODO: stub -} - -function computeHeatMap(city) { - return undefined; // TODO: stub -} diff --git a/js/index.js b/js/index.js index 4fd763a5f9dd3541958b2a876a4eace813c29560..a579ea7c2e40ef14785a0db5ed2feb7b85529dd2 100644 --- a/js/index.js +++ b/js/index.js @@ -1,36 +1,22 @@ -/* globals Coprogram block PositionedVertex PositionedEdge City Route Bus Passenger Patch loadGraphs AVERY_MAP dataToGraphs */ +/* globals Coprogram block PositionedVertex PositionedEdge City Route Bus Passenger Patch PLACEHOLDER_GRAPHS loadGraphs findPseudofaces */ // Configuration const LOAD_MAPS_FROM_SERVER = false; -const HARD_CODED_MAP = AVERY_MAP; -const SERVER_MAP_CENTER_ADDRESS = 'Eiffel Tower, Paris, France'; -const SERVER_MAP_RADIUS = 1000; // meters +const SERVER_MAP_CENTER_ADDRESS = 'Avery Hall, Lincoln, NE, USA'; +const SERVER_MAP_RADIUS = 750; // meters const PASSENGER_COUNT = 16; -const BUS_CAPACITY = 6; +const BUS_CAPACITY = 8; +const INITIAL_SLOWNESS = 250; +const SPEED_ADJUSTMENT_FACTOR = 1.1; function generatePassengerWaitTime() { - return 1 + Math.random(); + return BUS_CAPACITY + Math.random(); } -// Setup +// Global -let graphs = {}; -if (LOAD_MAPS_FROM_SERVER) { - loadGraphs(SERVER_MAP_CENTER_ADDRESS, SERVER_MAP_RADIUS, (loadedGraphs) => { - graphs = loadedGraphs; - }, console.error); -} else { - graphs = dataToGraphs(HARD_CODED_MAP); -} - -const city = new City(graphs.walkGraph, graphs.driveGraph); -const passengers = []; -for (let i = PASSENGER_COUNT; i--;) { - const passenger = new Passenger(city, `#${i}`, generatePassengerWaitTime(), city.chooseRandomWalkVertex()); - passengers.push(passenger); - passenger.start(); -} +let city = undefined; // Utility functions @@ -120,8 +106,8 @@ const CANCEL = new Option('Cancel'); const DONE = new Option('Done'); const ADD_ROUTE = new Option('Add Route', function*addRoute() { - const patch = new Patch(graphs.driveGraph, undefined); - const preview = new Patch(graphs.driveGraph, undefined); + const patch = new Patch(city.driveGraph, undefined); + const preview = new Patch(city.driveGraph, undefined); visualization.visualization('setClickability', {vertices: true}); visualization.visualization('setPatch', patch, preview); visualization.visualization('synchronize'); @@ -168,9 +154,47 @@ const ADD_ROUTE = new Option('Add Route', function*addRoute() { } }); +const GENERATE_ROUTES = new Option('Generate Routes', function*generateRoutes() { + visualization.visualization('setClickability', {}); + if ((yield* showMenu('Really retire all routes and generate new ones?', [YES, NO])) === YES) { + city.startBulkEdit(); + for (const route of city.routes) { + if (route !== undefined) { + route.retire(); + } + } + const pseudofaces = findPseudofaces(city.driveGraph); + for (const pseudoface of pseudofaces) { + const route = new Route(city, pseudoface.vertices[0], pseudoface.vertices.top()); + route.patch(...pseudoface.vertices); + const arc = route.getArc(pseudoface.vertices[0]); + const bus = new Bus(arc, BUS_CAPACITY); + bus.start(); + } + city.stopBulkEdit(); + visualization.visualization('synchronize'); + } + return undefined; +}); + +const RETIRE_ROUTES = new Option('Retire All Routes', function*retireRoutes() { + visualization.visualization('setClickability', {}); + if ((yield* showMenu('Really retire all routes?', [YES, NO])) === YES) { + city.startBulkEdit(); + for (const route of city.routes) { + if (route !== undefined) { + route.retire(); + } + } + city.stopBulkEdit(); + visualization.visualization('synchronize'); + } + return undefined; +}); + const CHANGE_ROUTE = new Option('Change Route', function*changeRoute(route) { - const patch = new Patch(graphs.driveGraph, route); - const preview = new Patch(graphs.driveGraph, route); + const patch = new Patch(city.driveGraph, route); + const preview = new Patch(city.driveGraph, route); visualization.visualization('setClickability', {vertices: true}); visualization.visualization('setPatch', patch, preview); visualization.visualization('synchronize'); @@ -261,7 +285,7 @@ const STOP_BUS = new Option('Stop Bus', function*stopBus(bus) { const MENUS = new Map(); MENUS.set(undefined, { prompt: '', - options: [ADD_ROUTE], + options: [ADD_ROUTE, GENERATE_ROUTES, RETIRE_ROUTES], }); MENUS.set(Route, { prompt: '', @@ -286,11 +310,11 @@ const main = new Coprogram(function*main() { visualization.visualization('setSelection', selection); selectionControls.html(convertSelectionToHTML(selection)); let menu = MENUS.get(undefined); - // Start with a simulation slowness of 1000, adjustable by a factor of 1.1. - let slowness = 1000; + // Configure the simulation slowness and adjustments + let slowness = INITIAL_SLOWNESS; visualization.visualization('setSlowness', slowness); const slowButton = $('<button>🐢</button>').on('click', () => { - slowness *= 1.1; // eslint-disable-line no-magic-numbers + slowness *= SPEED_ADJUSTMENT_FACTOR; visualization.visualization('setSlowness', slowness); }); const pauseButton = $('<button>⏸</button>').on('click', () => { @@ -301,7 +325,7 @@ const main = new Coprogram(function*main() { } }); const fastButton = $('<button>🐇</button>').on('click', () => { - slowness /= 1.1; // eslint-disable-line no-magic-numbers + slowness /= SPEED_ADJUSTMENT_FACTOR; visualization.visualization('setSlowness', slowness); }); speedControls.empty().append(slowButton).append(' ').append(pauseButton).append(' ').append(fastButton); @@ -345,14 +369,35 @@ const main = new Coprogram(function*main() { // Start the app. -visualization.visualization({ - city, - passengers, - ready() { - main.unblock(READY); - }, - interact(event) { - main.unblock(event); - }, -}); -main.run(); +function start(graphs) { + city = new City(graphs.walkGraph, graphs.driveGraph); + const passengers = []; + for (let i = PASSENGER_COUNT; i--;) { + const passenger = new Passenger(city, `#${i}`, generatePassengerWaitTime(), city.chooseRandomWalkVertex()); + passengers.push(passenger); + passenger.start(); + } + visualization.empty(); + visualization.visualization({ + city, + passengers, + ready() { + main.unblock(READY); + }, + interact(event) { + main.unblock(event); + }, + }); + main.run(); +} + +function fail(serverResponse) { + console.error(serverResponse); + visualization.find('.loading').text('[Failed to load map from server.]'); +} + +if (LOAD_MAPS_FROM_SERVER) { + loadGraphs(SERVER_MAP_CENTER_ADDRESS, SERVER_MAP_RADIUS, start, fail); +} else { + start(PLACEHOLDER_GRAPHS); +} diff --git a/js/loading.js b/js/loading.js index eb941f67d37b67ac0cdcfb4f338f0e0dc8a50418..4cc42e8355052e4dc871e826ca703f7231831af6 100644 --- a/js/loading.js +++ b/js/loading.js @@ -1,9 +1,106 @@ -/* exported loadGraphs */ +/* exported PLACEHOLDER_GRAPHS loadGraphs */ /* globals PositionedVertex PositionedEdge UndirectedGraph */ +/* eslint-disable no-magic-numbers */ + +const WALK_TYPE = 'walk'; +const DRIVE_TYPE = 'drive'; const WALK_SPEED = 5; const DRIVE_SPEED = 15; +const PLACEHOLDER_MAP = { + vertices: [ + { + name: 0, + position: [100, 0], + }, + { + name: 1, + position: [0, 100], + }, + { + name: 2, + position: [-50, 0], + }, + { + name: 3, + position: [0, -100], + }, + ], + edges: [ + { + type: WALK_TYPE, + source: 0, + destination: 1, + path: [[100, 0], [100, 80], [0, 80], [0, 100]], + length: 200, + }, + { + type: WALK_TYPE, + source: 1, + destination: 2, + path: [[0, 100], [-50, 100], [-50, 0]], + length: 150, + }, + { + type: WALK_TYPE, + source: 2, + destination: 3, + path: [[-50, 0], [-100, 0], [-100, -100], [0, -100]], + length: 250, + }, + { + type: WALK_TYPE, + source: 3, + destination: 0, + path: [[0, -100], [0, -80], [100, -80], [100, 0]], + length: 200, + }, + { + type: WALK_TYPE, + source: 0, + destination: 2, + path: [[100, 0], [50, 0], [50, -25], [-50, -25], [-50, 0]], + length: 200, + }, + { + type: DRIVE_TYPE, + source: 0, + destination: 1, + path: [[100, 0], [100, 80], [0, 80], [0, 100]], + length: 200, + }, + { + type: DRIVE_TYPE, + source: 1, + destination: 2, + path: [[0, 100], [-50, 100], [-50, 0]], + length: 150, + }, + { + type: DRIVE_TYPE, + source: 2, + destination: 3, + path: [[-50, 0], [-100, 0], [-100, -100], [0, -100]], + length: 250, + }, + { + type: DRIVE_TYPE, + source: 3, + destination: 0, + path: [[0, -100], [0, -80], [100, -80], [100, 0]], + length: 200, + }, + { + type: DRIVE_TYPE, + source: 0, + destination: 2, + path: [[100, 0], [50, 0], [50, -25], [-50, -25], [-50, 0]], + length: 200, + }, + ], +}; + function dataToGraphs(data) { const verticesByName = new Map(); const walkGraph = new UndirectedGraph(); @@ -17,11 +114,11 @@ function dataToGraphs(data) { for (const description of data.edges) { const source = verticesByName.get(description.source); const destination = verticesByName.get(description.destination); - if (walkGraph.getEdge(source, destination) === undefined) { + if (description.type === WALK_TYPE && walkGraph.getEdge(source, destination) === undefined) { const edge = new PositionedEdge(source, description.path, description.length / WALK_SPEED, destination); walkGraph.addEdge(source, edge, destination); } - if (driveGraph.getEdge(source, destination) === undefined) { + if (description.type === DRIVE_TYPE && driveGraph.getEdge(source, destination) === undefined) { const edge = new PositionedEdge(source, description.path, description.length / DRIVE_SPEED, destination); driveGraph.addEdge(source, edge, destination); } @@ -32,9 +129,10 @@ function dataToGraphs(data) { }; } +const PLACEHOLDER_GRAPHS = dataToGraphs(PLACEHOLDER_MAP); + function loadGraphs(address, radius, success, error) { $.ajax({ - async: false, url: 'server/city.cgi', data: { address, diff --git a/js/positioned_graph.js b/js/positioned_graph.js index 538912fb6e3935ebcc6db45dc1c92cd7d874cc6c..ca3d5609b3aa091d20a8c66392c6c134e247db49 100644 --- a/js/positioned_graph.js +++ b/js/positioned_graph.js @@ -1,4 +1,4 @@ -/* exported Placement PositionedVertex PositionedEdge */ +/* exported toVector Placement PositionedVertex PositionedEdge */ /* globals Vertex UndirectedEdge */ const PI = Math.PI; @@ -72,6 +72,8 @@ class Placement { } interpolate(other, progress) { + console.assert(this.progress <= progress && progress < other.progress, + `Tried to interpolate the position at progress ${progress} using bounds that do not contain it: ${this.progress} and ${other.progress}.`); const fraction = (progress - this.progress) / (other.progress - this.progress); const complement = 1 - fraction; const position = [complement * this.position[0] + fraction * other.position[0], complement * this.position[1] + fraction * other.position[1]]; @@ -80,7 +82,8 @@ class Placement { } toString() { - return `translate(${this.position[0]}, ${this.position[1]}) rotate(${this.theta * 360 / TAU}, 0, 0)`; + // Used fixed precision to work around an animation bug where JQuery SVG doesn't properly handle coordinates in scientific notation. + return `translate(${this.position[0].toFixed(10)}, ${this.position[1].toFixed(10)}) rotate(${(this.theta * 360 / TAU).toFixed(10)}, 0, 0)`; } } @@ -132,12 +135,13 @@ class Track { } getPlacements(startingProgress = 0) { + console.assert(startingProgress >= 0 && startingProgress < this.placements.top().progress, + `Attempted to get placements using an out-of-bounds starting progress, ${startingProgress}`); for (let i = 0; i < this.placements.length - 1; ++i) { if (this.placements[i + 1].progress > startingProgress) { return [this.placements[i].interpolate(this.placements[i + 1], startingProgress)].concat(this.placements.slice(i + 1)); } } - console.assert(false, `Attempted to get placements using an out-of-bounds starting progress, ${startingProgress}`); return []; } } @@ -146,6 +150,9 @@ class PositionedVertex extends Vertex { constructor(name, position) { super(name); this.position = position; + this._cachedOffsetMagnitude = undefined; + this._cachedTurningDistance = undefined; + this._cachedTrack = undefined; } } @@ -158,7 +165,12 @@ class PositionedEdge extends UndirectedEdge { } getTrack(offsetMagnitude, turningDistance) { - return new Track(this.path, offsetMagnitude, turningDistance); + if (offsetMagnitude !== this._cachedOffsetMagnitude || turningDistance !== this._cachedTurningDistance) { + this._cachedOffsetMagnitude = offsetMagnitude; + this._cachedTurningDistance = turningDistance; + this._cachedTrack = new Track(this.path, offsetMagnitude, turningDistance); + } + return this._cachedTrack; } reverse() { diff --git a/js/priority_queue.js b/js/priority_queue.js index 6081aeef0c1a2052cc37851813fc08c2c7ab3dd7..cc21cd16b65ea2d50f66d2ec0637d3cebbbba0ac 100644 --- a/js/priority_queue.js +++ b/js/priority_queue.js @@ -1,30 +1,83 @@ /* exported PriorityQueue */ /* globals identity */ +class PriorityQueueVertex { + constructor(element, measure) { + this.element = element; + this.measure = measure; + } +} + class PriorityQueue { constructor(metric = identity) { this.metric = metric; - this.elements = []; + this._vertices = []; } - _getNextIndex() { - return this.elements.indexOfMinimum(this.metric); + peek() { + return this._vertices.length > 0 ? this._vertices[0].element : undefined; } - peek() { - const nextIndex = this._getNextIndex(); - return nextIndex !== undefined ? this.elements[nextIndex] : undefined; + _bubbleUp(vertex, initialIndex) { + let index = initialIndex; + while (index > 0) { + const parentIndex = Math.floor((index - 1) / 2); + const parent = this._vertices[parentIndex]; + if (parent.measure < vertex.measure) { + break; + } + this._vertices[index] = parent; + index = parentIndex; + } + this._vertices[index] = vertex; + return index; + } + + _bubbleDown(vertex, moribundIndex) { + let index = moribundIndex; + for (;;) { + this._vertices[index] = vertex; + let swapIndex = index; + for (const candidateIndex of [2 * index + 1, 2 * index + 2]) { + if (candidateIndex < this._vertices.length - 1 && this._vertices[candidateIndex].measure < this._vertices[swapIndex].measure) { + swapIndex = candidateIndex; + } + } + if (swapIndex === index) { + break; + } + this._vertices[index] = this._vertices[swapIndex]; + index = swapIndex; + } + this._vertices[index] = vertex; } enqueue(element) { - this.elements.push(element); + this._bubbleUp(new PriorityQueueVertex(element, this.metric(element)), this._vertices.length); + } + + _dequeue(moribundIndex = 0) { + const result = this._vertices[moribundIndex].element; + const vertex = this._vertices.top(); + if (moribundIndex > 0 && vertex.measure < this._vertices[Math.floor((moribundIndex - 1) / 2)].measure) { + this._bubbleUp(vertex, moribundIndex); + } else { + this._bubbleDown(vertex, moribundIndex); + } + this._vertices.pop(); + return result; } dequeue() { - return this.elements.remove(this._getNextIndex()); + return this._dequeue(); } delete(element) { - this.elements.delete(element); + for (let index = 0; index < this._vertices.length; ++index) { + if (this._vertices[index].element === element) { + this._dequeue(index); + return; + } + } } } diff --git a/js/pseudoplanarity.js b/js/pseudoplanarity.js new file mode 100644 index 0000000000000000000000000000000000000000..83f52fe4e00d3d95bdd555622da4ec42fc648c08 --- /dev/null +++ b/js/pseudoplanarity.js @@ -0,0 +1,100 @@ +/* exported findPseudofaces */ +/* globals HashTable toVector */ + +function indexVertices(graph) { + const result = new Map(); + for (const vertex of graph.vertices) { + result.set(vertex, result.size); + } + return result; +} + +class RotationSystem { + constructor(positionedGraph) { + this.successorMaps = new Map(); + for (const vertex of positionedGraph.vertices) { + const neighbors = positionedGraph.getNeighbors(vertex); + if (neighbors.length > 0) { + const angles = new Map(neighbors.map((neighbor) => [neighbor, Math.atan2(...toVector(vertex.position, neighbor.position))])); + neighbors.sort((left, right) => angles.get(left) - angles.get(right)); + const successors = new Map(); + for (let index = 0; index < neighbors.length; ++index) { + const predecessor = neighbors[index]; + const successor = neighbors[(index + 1) % neighbors.length]; + successors.set(predecessor, successor); + } + this.successorMaps.set(vertex, successors); + } + } + } + + getNextNeighbor(vertex, neighbor) { + return this.successorMaps.get(vertex).get(neighbor); + } +} + +class Pseudoface { + constructor(vertices, indexing) { + console.assert(vertices.length > 2, `Tried to create a face from the degenerate cycle ${vertices}.`); + const start = vertices.indexOfMinimum((vertex) => indexing.get(vertex)); + const aligned = vertices.slice(start).concat(vertices.slice(0, start)); + this.vertices = indexing.get(aligned[1]) < indexing.get(aligned.top()) ? aligned : [aligned[0]].concat(aligned.slice(1).reverse()); + this.hashCode = 0; + for (const vertex of this.vertices) { + this.hashCode = 3 * this.hashCode + indexing.get(vertex); // eslint-disable-line no-magic-numbers + } + } + + equals(other) { + if (this.vertices.length !== other.vertices.length || this.hashCode !== other.hashCode) { + return false; + } + for (let index = 0; index < this.vertices.length; ++index) { + if (this.vertices[index] !== other.vertices[index]) { + return false; + } + } + return true; + } +} + +function findPseudoface(indexing, rotationSystem, edge) { + const vertices = [edge.source, edge.destination]; + let neighbor = edge.source; + const seen = new Set([edge.destination]); + while (vertices.length > 1) { + const next = rotationSystem.getNextNeighbor(vertices.top(0), neighbor); + if (next === vertices.top(1)) { + neighbor = vertices.pop(); + seen.delete(neighbor); + } else { + if (seen.has(next)) { + return undefined; + } + if (next === edge.source) { + return vertices.length > 2 ? new Pseudoface(vertices, indexing) : undefined; + } + neighbor = vertices.top(); + vertices.push(next); + seen.add(next); + } + } + return undefined; +} + +function findPseudofaces(positionedGraph) { + const indexing = indexVertices(positionedGraph); + const rotationSystem = new RotationSystem(positionedGraph); + const pseudofaces = []; + const seen = new HashTable((face) => face.hashCode, (left, right) => left.equals(right)); + for (const edge of positionedGraph.edges) { + for (const seed of [edge, edge.reverse()]) { + const pseudoface = findPseudoface(indexing, rotationSystem, seed); + if (pseudoface !== undefined && !seen.has(pseudoface)) { + pseudofaces.push(pseudoface); + seen.add(pseudoface); + } + } + } + return pseudofaces; +} diff --git a/js/simulation.js b/js/simulation.js index 48c653d095617ff25f29619129fdd5243aa5d107..b9dbfb6970a46135afe0223d63cc14ed9ab191db 100644 --- a/js/simulation.js +++ b/js/simulation.js @@ -39,6 +39,8 @@ class Simulation { step() { for (let event = this._dequeueNextEvent(); event !== undefined; event = this._dequeueNextEvent(this.currentTime)) { + console.assert(event.time >= this.currentTime, + `Failed to dequeue events in chronological order; saw an event with timestamp ${event.time} after time ${this.currentTime}.`); this.currentTime = event.time; event.effect(); } diff --git a/js/transit.js b/js/transit.js index 9433b7278b18cac6c9d494fff5c9cf2593205923..43ed0a404a20273a1e53df415b9d3175a00c4298 100644 --- a/js/transit.js +++ b/js/transit.js @@ -7,8 +7,16 @@ class Vertex { this.passengers = []; } + getWaitingIndex(passenger) { + const waitingPassengers = this.passengers.filter((candidate) => candidate.queued); + const result = waitingPassengers.indexOf(passenger); + return result < 0 ? waitingPassengers.length : result; + } + addPassenger(passenger) { - this.passengers.push(passenger); + if (!this.passengers.includes(passenger)) { + this.passengers.push(passenger); + } } removePassenger(passenger) { @@ -27,6 +35,8 @@ class City extends Simulation { this.driveGraph = driveGraph; this.routes = []; this._passengers = []; + this._inBulkEdit = false; + this._needsRestartAfterBulkEdit = false; } chooseRandomWalkVertex() { @@ -38,8 +48,26 @@ class City extends Simulation { } restart() { - for (const passenger of this._passengers) { - passenger.restart(); + if (this._inBulkEdit) { + this._needsRestartAfterBulkEdit = true; + } else { + for (const passenger of this._passengers) { + passenger.restart(); + } + } + } + + startBulkEdit() { + console.assert(!this._inBulkEdit, `Attempted to start a bulk edit of the city ${this} while a bulk edit was already in progress.`); + this._inBulkEdit = true; + this._needsRestartAfterBulkEdit = false; + } + + stopBulkEdit() { + console.assert(this._inBulkEdit, `Attempted to stop a bulk edit of the city ${this} while no bulk edit was in progress.`); + this._inBulkEdit = false; + if (this._needsRestartAfterBulkEdit) { + this.restart(); } } } @@ -203,6 +231,10 @@ class Route { this._maybeDispose(); } + get continuingBuses() { + return new Set([...this.buses].filter((bus) => !bus.stopping)); + } + removeBus(bus) { this.buses.delete(bus); this._maybeDispose(); @@ -240,10 +272,6 @@ class Route { } } - get expectedBusSeparation() { - return this.buses.size > 0 ? this.coreLength / this.buses.size : Infinity; - } - getArc(source) { console.assert(this.has(source), `Tried to get the arc corresponding to ${source}, which is not part of the route ${this}.`); return this.waypoints.get(source).exit; @@ -323,7 +351,7 @@ class Bus extends Agent { this.unloadingDelay = unloadingDelay; this.loadingDelay = loadingDelay; this.stopping = false; - arc.route.city.restart(); + this.simulation.restart(); } get vertex() { @@ -416,7 +444,7 @@ class Bus extends Agent { this._arc = undefined; arc.removeBus(this); this.restart(); - arc.route.city.restart(); + this.simulation.restart(); } } @@ -433,9 +461,8 @@ class Bus extends Agent { stop() { this.stopping = true; - // order matters - this._arc.route.city.restart(); this._maybeDispose(); + this.simulation.restart(); } _decide() { @@ -545,14 +572,12 @@ class PlanningGraph { result.push(new PlanningVertex(undefined, neighbor, vertex.eta + edge.weight)); } for (const route of this.city.routes) { - if (route !== undefined && (route !== vertex.route || vertex.isStarter)) { - const separation = vertex.isStarter && route.buses.size > 0 ? 0.0 : route.expectedBusSeparation; - if (Number.isFinite(separation) && route.hasInCore(vertex.destination)) { + if (route !== undefined && (route !== vertex.route || vertex.isStarter) && route.has(vertex.destination)) { + const boardingEta = route.getNextArrival(vertex.destination, vertex.eta).eta; + if (Number.isFinite(boardingEta)) { const firstArc = route.getArc(vertex.destination); - const seen = new Set(); - seen.add(firstArc); - // semi-pessimistically assume that a bus will have just left but the buses are equally spaced - for (let eta = vertex.eta + separation + firstArc.edge.weight, arc = firstArc.next; !seen.has(arc); eta += arc.edge.weight, arc = arc.next) { + const seen = new Set([firstArc]); + for (let eta = boardingEta + firstArc.edge.weight, arc = firstArc.next; !seen.has(arc); eta += arc.edge.weight, arc = arc.next) { result.push(new PlanningVertex(route, arc.originalSource.vertex, eta)); seen.add(arc); } @@ -702,6 +727,10 @@ class Passenger extends Agent { return undefined; } + get queued() { + return this.vertex !== undefined && this.plan[0].route !== undefined; + } + isWaitingFor(bus) { return this.bus === undefined && this._boardingBeginTime === undefined && bus.arc.route === this.plan[0].route; } diff --git a/js/undirected_graph.js b/js/undirected_graph.js index f5b7e996c9bc1379a185ddf99123639e49431e8f..9990b653bd2333077d102aad2a64700181a88e21 100644 --- a/js/undirected_graph.js +++ b/js/undirected_graph.js @@ -1,5 +1,5 @@ /* exported UndirectedEdge UndirectedGraph shortestUndirectedPath */ -/* globals identity */ +/* globals identity PriorityQueue */ class UndirectedEdge { constructor(weight) { @@ -13,77 +13,82 @@ class UndirectedEdge { class UndirectedGraph { constructor() { - this.vertices = []; - this.edges = []; - this.adjacencyMatrix = []; + this.edgeMaps = new Map(); } - addVertex(vertex) { - this.vertices.push(vertex); - for (const adjacencyColumn of this.adjacencyMatrix) { - adjacencyColumn.push(undefined); - console.assert(adjacencyColumn.length === this.vertices.length, 'Vertex count does not match adjacency matrix height.'); + get vertices() { + return [...this.edgeMaps.keys()]; + } + + get edges() { + const results = []; + for (const edgeMap of this.edgeMaps.values()) { + results.push(...edgeMap.values()); } - this.adjacencyMatrix.push(this.vertices.concat().fill(undefined)); - console.assert(this.adjacencyMatrix.length === this.vertices.length, 'Vertex count does not match adjacency matrix width.'); + return results; + } + + addVertex(vertex) { + console.assert(!this.edgeMaps.has(vertex), `Tried to add the vertex ${vertex} to a graph multiple times.`); + this.edgeMaps.set(vertex, new Map()); } addEdge(source, edge, destination) { - const sourceIndex = this.vertices.indexOf(source); - console.assert(sourceIndex >= 0, `Edge ${edge} added to nonexistent vertex ${source}.`); - const destinationIndex = this.vertices.indexOf(destination); - console.assert(destinationIndex >= 0, `Edge ${edge} added to nonexistent vertex ${destination}.`); - if (sourceIndex !== destinationIndex) { - console.assert(this.adjacencyMatrix[sourceIndex][destinationIndex] === undefined, - `Added edge ${edge}, which conflicts with the edge ${this.adjacencyMatrix[sourceIndex][destinationIndex]}.`); - this.edges.push(edge); - this.adjacencyMatrix[sourceIndex][destinationIndex] = edge; - this.adjacencyMatrix[destinationIndex][sourceIndex] = edge.reverse(); + console.assert(this.edgeMaps.has(source), `Edge ${edge} added to nonexistent vertex ${source}.`); + console.assert(this.edgeMaps.has(destination), `Edge ${edge} added to nonexistent vertex ${destination}.`); + if (source !== destination) { + const edgeMap = this.edgeMaps.get(source); + const conflict = edgeMap.get(destination); + console.assert(conflict === undefined, `Added edge ${edge}, which conflicts with the edge ${conflict}.`); + edgeMap.set(destination, edge); + this.edgeMaps.get(destination).set(source, edge.reverse()); } } getNeighbors(vertex) { - const vertexIndex = this.vertices.indexOf(vertex); - console.assert(vertexIndex >= 0, `Cannot get neighbors of nonexistent vertex ${vertex}.`); - const adjacencyColumn = this.adjacencyMatrix[vertexIndex]; - const result = []; - for (let i = this.vertices.length; i--;) { - if (adjacencyColumn[i] !== undefined) { - result.push(this.vertices[i]); - } - } - return result; + const edgeMap = this.edgeMaps.get(vertex); + console.assert(edgeMap !== undefined, `Cannot get neighbors of nonexistent vertex ${vertex}.`); + return [...edgeMap.keys()]; } getEdge(source, destination) { - const sourceIndex = this.vertices.indexOf(source); - console.assert(sourceIndex >= 0, `Cannot get edge incident on nonexistent vertex ${source}.`); - const destinationIndex = this.vertices.indexOf(destination); - console.assert(destinationIndex >= 0, `Cannot get edge incident on nonexistent vertex ${destination}.`); - return this.adjacencyMatrix[sourceIndex][destinationIndex]; + const edgeMap = this.edgeMaps.get(source); + console.assert(edgeMap !== undefined, `Cannot get edge incident on nonexistent vertex ${source}.`); + console.assert(this.edgeMaps.has(destination), `Cannot get edge incident on nonexistent vertex ${destination}.`); + return edgeMap.get(destination); } } function shortestUndirectedPath(graph, source, destinationPredicate, projection = identity) { - const stack = [source]; - const visited = new Set(); - function helper() { - const endpoint = stack.top(); - if (destinationPredicate(endpoint)) { - return stack.concat(); + let destination = undefined; + const backpointers = new Map(); + const initialPair = [undefined, source]; + const priorities = new Map([[initialPair, 0]]); + const worklist = new PriorityQueue((pair) => priorities.get(pair)); + worklist.enqueue(initialPair); + while (worklist.peek() !== undefined) { + const workitem = worklist.dequeue(); + const [from, to] = workitem; + if (backpointers.has(projection(to))) { + continue; + } + backpointers.set(projection(to), from); + if (destinationPredicate(to)) { + destination = to; + break; } - visited.add(projection(endpoint)); - for (const neighbor of graph.getNeighbors(endpoint)) { - if (!visited.has(projection(neighbor))) { - stack.push(neighbor); - const result = helper(); - stack.pop(); - if (result !== undefined) { - return result; - } - } + for (const neighbor of graph.getNeighbors(to)) { + const newPair = [to, neighbor]; + priorities.set(newPair, priorities.get(workitem) + graph.getEdge(to, neighbor).weight); + worklist.enqueue(newPair); } + } + if (destination === undefined) { return undefined; } - return helper(); + const path = []; + for (let current = destination; current !== undefined; current = backpointers.get(projection(current))) { + path.push(current); + } + return path.reverse(); } diff --git a/js/visualization.js b/js/visualization.js index e5a3bdb778a7ea4e250f9bc5d015909d62d1f022..3e39f025ad74372fbd16a168195f702701beed8f 100644 --- a/js/visualization.js +++ b/js/visualization.js @@ -7,12 +7,13 @@ function sanitizeAttributeValue(attributeValue) { } class Subwidget { - constructor(owner, entity, options = undefined) { + constructor(owner, entity, options = undefined, blockClicks) { this._owner = owner; this._entity = entity; this._element = owner.svg.group(options); this._highlight = owner.svg.group(this.element, {opacity: 0.0}); this.clickable = false; + this._blockClicks = blockClicks; $(this._element).on('click', (event) => { if (event.which === PRIMARY_BUTTON) { event.entity = entity; @@ -36,7 +37,7 @@ class Subwidget { } get slowness() { - return this._owner.throttledSimulation.slowness; + return this._owner.throttledSimulation !== undefined ? this._owner.throttledSimulation.slowness : 0; } get element() { @@ -68,29 +69,39 @@ class Subwidget { set clickable(clickable) { console.assert(!this.destroyed, `Tried to change the clickability of the destroyed widget ${this}.`); - $(this._element).css('pointer-events', clickable ? 'auto' : 'none'); + if (!this._blockClicks) { + $(this._element).css('pointer-events', clickable ? 'auto' : 'none'); + } } } class VertexDot extends Subwidget { - constructor(owner, vertex) { + constructor(owner, vertex, onDriveGraph) { super(owner, vertex, { class: 'vertex', id: sanitizeAttributeValue(vertex.name), transform: String(new Placement(vertex.position, 0)), - }); - owner.svg.circle(this.element, 0, 0, owner.option('vertexRadius'), owner.option('vertexStyle')); - owner.svg.circle(this.highlight, 0, 0, owner.option('vertexRadius') + owner.option('selectorPadding'), owner.option('fillSelectorStyle')); + }, !onDriveGraph); + if (onDriveGraph) { + owner.svg.circle(this.element, 0, 0, owner.option('vertexRadius'), owner.option('vertexStyle')); + owner.svg.circle(this.highlight, 0, 0, owner.option('vertexRadius') + owner.option('selectorPadding'), owner.option('fillSelectorStyle')); + } else { + owner.svg.circle(this.element, 0, 0, owner.option('vertexSmallRadius'), owner.option('vertexSmallStyle')); + } } } class EdgePavement extends Subwidget { - constructor(owner, edge) { - super(owner, edge, {class: 'edge'}); - owner.svg.polyline(this.element, edge.path, owner.option('edgePavementStyle')); - owner.svg.polyline(this.element, edge.path, owner.option('edgeStripeStyle')); - owner.svg.polyline(this.highlight, edge.path, Object.assign({}, owner.option('strokeSelectorStyle'), - {strokeWidth: owner.option('edgePavementStyle').strokeWidth + owner.option('selectorPadding')})); + constructor(owner, edge, onDriveGraph) { + super(owner, edge, {class: 'edge'}, !onDriveGraph); + if (onDriveGraph) { + owner.svg.polyline(this.element, edge.path, owner.option('edgePavementStyle')); + owner.svg.polyline(this.element, edge.path, owner.option('edgeStripeStyle')); + owner.svg.polyline(this.highlight, edge.path, Object.assign({}, owner.option('strokeSelectorStyle'), + {strokeWidth: owner.option('edgePavementStyle').strokeWidth + owner.option('selectorPadding')})); + } else { + owner.svg.polyline(this.element, edge.path, owner.option('edgeSidewalkStyle')); + } } } @@ -160,19 +171,30 @@ class BusBox extends Subwidget { for (let i = 0; i < bus.capacity; ++i) { const x = length / 2 - length * (Math.floor(i / 2) + 0.5) / Math.ceil(bus.capacity / 2); const y = i === bus.capacity - 1 && bus.capacity % 2 === 1 ? 0 : i % 2 === 0 ? -width / 2 / 2 : width / 2 / 2; - owner.svg.circle(this.element, x, y, owner.option('riderRadius'), owner.option('passengerStyle')); + const circle = owner.svg.circle(this.element, x, y, owner.option('riderRadius'), owner.option('passengerStyle')); + $(circle).animate({svgOpacity: 0.0}, 0, 'linear'); } width += 2 * owner.option('selectorPadding'); length += 2 * owner.option('selectorPadding'); rounding += owner.option('selectorPadding'); owner.svg.rect(this.highlight, -length / 2, -width / 2, length, width, rounding, rounding, owner.option('fillSelectorStyle')); + this._cachedEdge = undefined; + this._cachedStopping = undefined; + this._cachedSlowness = undefined; this.refresh(); } refresh() { - $(this.element).stop(true); - const edge = this._entity.arc.edge; - if (this._entity.progress !== undefined) { // moving + if (this._entity.progress !== undefined) { + const edge = this._entity.arc.edge; + if (edge === this._cachedEdge && this._entity.stopping === this._cachedStopping && this.slowness === this._cachedSlowness) { + return; + } + this._cachedEdge = edge; + this._cachedStopping = this._entity.stopping; + this._cachedSlowness = this.slowness; + $(this.element).stop(true); + this._owner.svg.change($(this.element).children('rect')[0], this._entity.stopping ? this._moribundStyle : this._activeStyle); const offset = this._owner.option('busOffset'); const placements = edge.getTrack(offset, offset).getPlacements(this._entity.progress); for (let i = 0; i < placements.length; ++i) { @@ -181,16 +203,18 @@ class BusBox extends Subwidget { $(this.element).animate({svgTransform: String(placements[i])}, delay, 'linear'); } } + } else { + $(this.element).stop(true); + this._owner.svg.change($(this.element).children('rect')[0], this._entity.stopping ? this._moribundStyle : this._activeStyle); + $(this.element).children('circle').each((index, element) => { + const passenger = this._entity.boardingIndex === index ? this._entity.boardingPassenger : this._entity.passengers[index]; + const targetOpacity = passenger !== undefined && !passenger.alighting ? 1.0 : 0.0; + const delay = (passenger !== undefined ? passenger.alighting ? passenger.alightingETA : passenger.boardingETA : 0) * this.slowness; + if (Number.isFinite(delay)) { + $(element).stop(true).animate({svgOpacity: targetOpacity}, delay, 'linear'); + } + }); } - this._owner.svg.change($(this.element).children('rect')[0], this._entity.stopping ? this._moribundStyle : this._activeStyle); - $(this.element).children('circle').each((index, element) => { - const passenger = this._entity.boardingIndex === index ? this._entity.boardingPassenger : this._entity.passengers[index]; - const targetOpacity = passenger !== undefined && !passenger.alighting ? 1.0 : 0.0; - const delay = (passenger !== undefined ? passenger.alighting ? passenger.alightingETA : passenger.boardingETA : 0) * this.slowness; - if (Number.isFinite(delay)) { - $(element).stop(true).animate({svgOpacity: targetOpacity}, delay, 'linear'); - } - }); } } @@ -202,23 +226,30 @@ class PassengerDot extends Subwidget { }); owner.svg.circle(this.element, 0, 0, owner.option('passengerRadius'), owner.option('passengerStyle')); owner.svg.circle(this.highlight, 0, 0, owner.option('passengerRadius') + owner.option('selectorPadding'), owner.option('fillSelectorStyle')); + this._cachedEdge = undefined; + this._cachedSlowness = undefined; } - _getWaitingPassengerPosition(vertex, index) { + _getWaitingPassengerPosition(vertex) { let [x, y] = vertex.position; const vertexRadius = this._owner.option('vertexRadius'); const passengerRadius = this._owner.option('passengerRadius'); const rows = Math.max(Math.floor(vertexRadius / passengerRadius / 2), 1); + const index = vertex.getWaitingIndex(this._entity); x += vertexRadius + 2 * passengerRadius + Math.floor(index / rows) * 2 * passengerRadius; y += -vertexRadius + ((index % rows) * 2 + 1) * vertexRadius / rows; return [x, y]; } refresh() { - $(this.element).stop(true); if (this._entity.walkingSource !== undefined) { // walking - $(this.element).animate({svgOpacity: 1.0}, 0); const edge = this._entity.simulation.walkGraph.getEdge(this._entity.walkingSource, this._entity.immediateDestination); + if (edge === this._cachedEdge && this.slowness === this._cachedSlowness) { + return; + } + this._cachedEdge = edge; + this._cachedSlowness = this.slowness; + $(this.element).stop(true).animate({svgOpacity: 1.0}, 0); console.assert(edge !== undefined, `Found passenger walking from ${this._entity.walkingSource} to ${this._entity.immediateDestination}, but there is no such edge.`); const offset = this._owner.option('passengerOffset'); @@ -230,28 +261,27 @@ class PassengerDot extends Subwidget { } } } else if (this._entity.boarding) { // boarding - $(this.element).animate({ + $(this.element).stop(true).animate({ svgOpacity: 0.0, svgTransform: String(new Placement(this._entity.vertex.position, 0)), }, this._entity.boardingETA * this.slowness); } else if (this._entity.alighting) { // alighting - const position = this._getWaitingPassengerPosition(this._entity.immediateDestination, this._entity.immediateDestination.passengers.length); - $(this.element).animate({ + const position = this._getWaitingPassengerPosition(this._entity.immediateDestination); + $(this.element).stop(true).animate({ svgOpacity: 1.0, svgTransform: String(new Placement(position, 0)), }, this._entity.alightingETA * this.slowness); - } else if (this._entity.bus !== undefined) { // riding - $(this.element).animate({ + } else if (this._entity.bus === undefined && this._entity.queued) { // waiting for bus + const position = this._getWaitingPassengerPosition(this._entity.vertex); + $(this.element).stop(true).animate({ + svgOpacity: 1.0, + svgTransform: String(new Placement(position, 0)), + }, 0); + } else if (this._entity.bus !== undefined || this._entity.destination !== undefined) { // riding or inside location + $(this.element).stop(true).animate({ svgOpacity: 0.0, svgTransform: String(new Placement(this._entity.immediateDestination.position, 0)), }, 0); - } else if (this._entity.destination !== undefined) { // waiting - if (this._entity.vertex !== undefined) { // waiting for bus - const position = this._getWaitingPassengerPosition(this._entity.vertex, this._entity.vertex.passengers.indexOf(this._entity)); - $(this.element).animate({svgTransform: String(new Placement(position, 0))}, 0); - } else { // waiting for errand - $(this.element).animate({svgTransform: String(new Placement(this._entity.destination.position, 0))}, 0); - } } else { console.assert(false, `Passenger ${this._entity} cannot be classified as walking, riding, or waiting, and so cannot be animated.`); } @@ -292,11 +322,14 @@ $.widget('transit.visualization', { this._edgePavements = new Map(); for (const edge of this._city.walkGraph.edges) { - this._edgePavements.set(edge, new EdgePavement(this, edge)); + this._edgePavements.set(edge, new EdgePavement(this, edge, false)); + } + for (const edge of this._city.driveGraph.edges) { + this._edgePavements.set(edge, new EdgePavement(this, edge, true)); } this._vertexDots = new Map(); - for (const vertex of this._city.walkGraph.vertices) { - this._vertexDots.set(vertex, new VertexDot(this, vertex)); + for (const vertex of this._city.driveGraph.vertices) { + this._vertexDots.set(vertex, new VertexDot(this, vertex, this._city.driveGraph.getNeighbors(vertex).length > 0)); } this._patchTrace = undefined; this._patchPreviewTrace = undefined; diff --git a/js/visualization_style.js b/js/visualization_style.js index 7c4f06944603b32e0ee0a81177c468ca02ea592a..7b443d6f67c789c9f5e938bc5b5169140cc82b03 100644 --- a/js/visualization_style.js +++ b/js/visualization_style.js @@ -18,12 +18,25 @@ const transitVisualizationDefaultOptions = { stroke: 'none', fill: 'rgba(255, 128, 0, 0.5)', }, + vertexSmallRadius: 3.0, + vertexSmallStyle: { + stroke: 'rgba(0, 0, 0, 1.0)', + strokeWidth: 1.5, + fill: 'rgba(255, 255, 255, 1.0)', + }, vertexRadius: 7.0, vertexStyle: { stroke: 'rgba(0, 0, 0, 1.0)', strokeWidth: 3.0, fill: 'rgba(255, 255, 255, 1.0)', }, + edgeSidewalkStyle: { + stroke: 'rgba(128, 128, 128, 1.0)', + strokeWidth: 3.0, + strokeLineCap: 'round', + strokeLineJoin: 'round', + fill: 'none', + }, edgePavementStyle: { stroke: 'rgba(96, 96, 96, 1.0)', strokeWidth: 11.0, diff --git a/libraries/jquery-svg/jquery.svg.css b/libraries/jquery-svg/jquery.svg.css old mode 100755 new mode 100644 diff --git a/libraries/jquery-svg/jquery.svg.min.js b/libraries/jquery-svg/jquery.svg.min.js old mode 100755 new mode 100644 diff --git a/libraries/jquery-svg/jquery.svganim.min.js b/libraries/jquery-svg/jquery.svganim.min.js old mode 100755 new mode 100644 diff --git a/libraries/jquery-svg/jquery.svgdom.min.js b/libraries/jquery-svg/jquery.svgdom.min.js old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/AUTHORS.txt b/libraries/jquery-ui/AUTHORS.txt old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/LICENSE.txt b/libraries/jquery-ui/LICENSE.txt old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/external/jquery/jquery.js b/libraries/jquery-ui/external/jquery/jquery.js deleted file mode 100755 index 7fc60fca78b6201f814da4b2906cae2b69ee9610..0000000000000000000000000000000000000000 --- a/libraries/jquery-ui/external/jquery/jquery.js +++ /dev/null @@ -1,11008 +0,0 @@ -/*! - * jQuery JavaScript Library v1.12.4 - * http://jquery.com/ - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license - * http://jquery.org/license - * - * Date: 2016-05-20T17:17Z - */ - -(function( global, factory ) { - - if ( typeof module === "object" && typeof module.exports === "object" ) { - // For CommonJS and CommonJS-like environments where a proper `window` - // is present, execute the factory and get jQuery. - // For environments that do not have a `window` with a `document` - // (such as Node.js), expose a factory as module.exports. - // This accentuates the need for the creation of a real `window`. - // e.g. var jQuery = require("jquery")(window); - // See ticket #14549 for more info. - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Support: Firefox 18+ -// Can't be in strict mode, several libs including ASP.NET trace -// the stack via arguments.caller.callee and Firefox dies if -// you try to trace through "use strict" call chains. (#13335) -//"use strict"; -var deletedIds = []; - -var document = window.document; - -var slice = deletedIds.slice; - -var concat = deletedIds.concat; - -var push = deletedIds.push; - -var indexOf = deletedIds.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var support = {}; - - - -var - version = "1.12.4", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }, - - // Support: Android<4.1, IE<9 - // Make sure we trim BOM and NBSP - rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, - - // Matches dashed string for camelizing - rmsPrefix = /^-ms-/, - rdashAlpha = /-([\da-z])/gi, - - // Used by jQuery.camelCase as callback to replace() - fcamelCase = function( all, letter ) { - return letter.toUpperCase(); - }; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // Start with an empty selector - selector: "", - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - return num != null ? - - // Return just the one element from the set - ( num < 0 ? this[ num + this.length ] : this[ num ] ) : - - // Return all the elements in a clean array - slice.call( this ); - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - ret.context = this.context; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: deletedIds.sort, - splice: deletedIds.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var src, copyIsArray, copy, name, options, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !jQuery.isFunction( target ) ) { - target = {}; - } - - // extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - src = target[ name ]; - copy = options[ name ]; - - // Prevent never-ending loop - if ( target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = jQuery.isArray( copy ) ) ) ) { - - if ( copyIsArray ) { - copyIsArray = false; - clone = src && jQuery.isArray( src ) ? src : []; - - } else { - clone = src && jQuery.isPlainObject( src ) ? src : {}; - } - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - // See test/unit/core.js for details concerning isFunction. - // Since version 1.3, DOM methods and functions like alert - // aren't supported. They return false on IE (#2968). - isFunction: function( obj ) { - return jQuery.type( obj ) === "function"; - }, - - isArray: Array.isArray || function( obj ) { - return jQuery.type( obj ) === "array"; - }, - - isWindow: function( obj ) { - /* jshint eqeqeq: false */ - return obj != null && obj == obj.window; - }, - - isNumeric: function( obj ) { - - // parseFloat NaNs numeric-cast false positives (null|true|false|"") - // ...but misinterprets leading-number strings, particularly hex literals ("0x...") - // subtraction forces infinities to NaN - // adding 1 corrects loss of precision from parseFloat (#15100) - var realStringObj = obj && obj.toString(); - return !jQuery.isArray( obj ) && ( realStringObj - parseFloat( realStringObj ) + 1 ) >= 0; - }, - - isEmptyObject: function( obj ) { - var name; - for ( name in obj ) { - return false; - } - return true; - }, - - isPlainObject: function( obj ) { - var key; - - // Must be an Object. - // Because of IE, we also have to check the presence of the constructor property. - // Make sure that DOM nodes and window objects don't pass through, as well - if ( !obj || jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { - return false; - } - - try { - - // Not own constructor property must be Object - if ( obj.constructor && - !hasOwn.call( obj, "constructor" ) && - !hasOwn.call( obj.constructor.prototype, "isPrototypeOf" ) ) { - return false; - } - } catch ( e ) { - - // IE8,9 Will throw exceptions on certain host objects #9897 - return false; - } - - // Support: IE<9 - // Handle iteration over inherited properties before own properties. - if ( !support.ownFirst ) { - for ( key in obj ) { - return hasOwn.call( obj, key ); - } - } - - // Own properties are enumerated firstly, so to speed up, - // if last one is own, then all properties are own. - for ( key in obj ) {} - - return key === undefined || hasOwn.call( obj, key ); - }, - - type: function( obj ) { - if ( obj == null ) { - return obj + ""; - } - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; - }, - - // Workarounds based on findings by Jim Driscoll - // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context - globalEval: function( data ) { - if ( data && jQuery.trim( data ) ) { - - // We use execScript on Internet Explorer - // We use an anonymous function so that context is window - // rather than jQuery in Firefox - ( window.execScript || function( data ) { - window[ "eval" ].call( window, data ); // jscs:ignore requireDotNotation - } )( data ); - } - }, - - // Convert dashed to camelCase; used by the css and data modules - // Microsoft forgot to hump their vendor prefix (#9572) - camelCase: function( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); - }, - - nodeName: function( elem, name ) { - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - // Support: Android<4.1, IE<9 - trim: function( text ) { - return text == null ? - "" : - ( text + "" ).replace( rtrim, "" ); - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - var len; - - if ( arr ) { - if ( indexOf ) { - return indexOf.call( arr, elem, i ); - } - - len = arr.length; - i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; - - for ( ; i < len; i++ ) { - - // Skip accessing in sparse arrays - if ( i in arr && arr[ i ] === elem ) { - return i; - } - } - } - - return -1; - }, - - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - while ( j < len ) { - first[ i++ ] = second[ j++ ]; - } - - // Support: IE<9 - // Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists) - if ( len !== len ) { - while ( second[ j ] !== undefined ) { - first[ i++ ] = second[ j++ ]; - } - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return concat.apply( [], ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // Bind a function to a context, optionally partially applying any - // arguments. - proxy: function( fn, context ) { - var args, proxy, tmp; - - if ( typeof context === "string" ) { - tmp = fn[ context ]; - context = fn; - fn = tmp; - } - - // Quick check to determine if target is callable, in the spec - // this throws a TypeError, but we will just return undefined. - if ( !jQuery.isFunction( fn ) ) { - return undefined; - } - - // Simulated bind - args = slice.call( arguments, 2 ); - proxy = function() { - return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); - }; - - // Set the guid of unique handler to the same of original handler, so it can be removed - proxy.guid = fn.guid = fn.guid || jQuery.guid++; - - return proxy; - }, - - now: function() { - return +( new Date() ); - }, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -// JSHint would error on this code due to the Symbol not being defined in ES5. -// Defining this global in .jshintrc would create a danger of using the global -// unguarded in another place, it seems safer to just disable JSHint for these -// three lines. -/* jshint ignore: start */ -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = deletedIds[ Symbol.iterator ]; -} -/* jshint ignore: end */ - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -} ); - -function isArrayLike( obj ) { - - // Support: iOS 8.2 (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = jQuery.type( obj ); - - if ( type === "function" || jQuery.isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v2.2.1 - * http://sizzlejs.com/ - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license - * http://jquery.org/license - * - * Date: 2015-10-17 - */ -(function( window ) { - -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + 1 * new Date(), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // General-purpose constants - MAX_NEGATIVE = 1 << 31, - - // Instance methods - hasOwn = ({}).hasOwnProperty, - arr = [], - pop = arr.pop, - push_native = arr.push, - push = arr.push, - slice = arr.slice, - // Use a stripped-down indexOf as it's faster than native - // http://jsperf.com/thor-indexof-vs-for/5 - indexOf = function( list, elem ) { - var i = 0, - len = list.length; - for ( ; i < len; i++ ) { - if ( list[i] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - - // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier - identifier = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + - "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), - - rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + - "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + - "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + - whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - rescape = /'|\\/g, - - // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), - funescape = function( _, escaped, escapedWhitespace ) { - var high = "0x" + escaped - 0x10000; - // NaN means non-codepoint - // Support: Firefox<24 - // Workaround erroneous numeric interpretation of +"0x" - return high !== high || escapedWhitespace ? - escaped : - high < 0 ? - // BMP codepoint - String.fromCharCode( high + 0x10000 ) : - // Supplemental Plane codepoint (surrogate pair) - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // Used for iframes - // See setDocument() - // Removing the function wrapper causes a "Permission Denied" - // error in IE - unloadHandler = function() { - setDocument(); - }; - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - (arr = slice.call( preferredDoc.childNodes )), - preferredDoc.childNodes - ); - // Support: Android<4.0 - // Detect silently failing push.apply - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - push_native.apply( target, slice.call(els) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - // Can't trust NodeList.length - while ( (target[j++] = els[i++]) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, nidselect, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - - if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { - setDocument( context ); - } - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { - - // ID selector - if ( (m = match[1]) ) { - - // Document context - if ( nodeType === 9 ) { - if ( (elem = context.getElementById( m )) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && (elem = newContext.getElementById( m )) && - contains( context, elem ) && - elem.id === m ) { - - results.push( elem ); - return results; - } - } - - // Type selector - } else if ( match[2] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( (m = match[3]) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( support.qsa && - !compilerCache[ selector + " " ] && - (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { - - if ( nodeType !== 1 ) { - newContext = context; - newSelector = selector; - - // qSA looks outside Element context, which is not what we want - // Thanks to Andrew Dupont for this workaround technique - // Support: IE <=8 - // Exclude object elements - } else if ( context.nodeName.toLowerCase() !== "object" ) { - - // Capture the context ID, setting it first if necessary - if ( (nid = context.getAttribute( "id" )) ) { - nid = nid.replace( rescape, "\\$&" ); - } else { - context.setAttribute( "id", (nid = expando) ); - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - nidselect = ridentifier.test( nid ) ? "#" + nid : "[id='" + nid + "']"; - while ( i-- ) { - groups[i] = nidselect + " " + toSelector( groups[i] ); - } - newSelector = groups.join( "," ); - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - } - - if ( newSelector ) { - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return (cache[ key + " " ] = value); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created div and expects a boolean result - */ -function assert( fn ) { - var div = document.createElement("div"); - - try { - return !!fn( div ); - } catch (e) { - return false; - } finally { - // Remove from its parent by default - if ( div.parentNode ) { - div.parentNode.removeChild( div ); - } - // release memory in IE - div = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split("|"), - i = arr.length; - - while ( i-- ) { - Expr.attrHandle[ arr[i] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - ( ~b.sourceIndex || MAX_NEGATIVE ) - - ( ~a.sourceIndex || MAX_NEGATIVE ); - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( (cur = cur.nextSibling) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return (name === "input" || name === "button") && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction(function( argument ) { - argument = +argument; - return markFunction(function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ (j = matchIndexes[i]) ] ) { - seed[j] = !(matches[j] = seed[j]); - } - } - }); - }); -} - -/** - * Checks a node for validity as a Sizzle context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== "undefined" && context; -} - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * Detects XML nodes - * @param {Element|Object} elem An element or a document - * @returns {Boolean} True iff elem is a non-HTML XML node - */ -isXML = Sizzle.isXML = function( elem ) { - // documentElement is verified for cases where it doesn't yet exist - // (such as loading iframes in IE - #4833) - var documentElement = elem && (elem.ownerDocument || elem).documentElement; - return documentElement ? documentElement.nodeName !== "HTML" : false; -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, parent, - doc = node ? node.ownerDocument || node : preferredDoc; - - // Return early if doc is invalid or already selected - if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Update global variables - document = doc; - docElem = document.documentElement; - documentIsHTML = !isXML( document ); - - // Support: IE 9-11, Edge - // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - if ( (parent = document.defaultView) && parent.top !== parent ) { - // Support: IE 11 - if ( parent.addEventListener ) { - parent.addEventListener( "unload", unloadHandler, false ); - - // Support: IE 9 - 10 only - } else if ( parent.attachEvent ) { - parent.attachEvent( "onunload", unloadHandler ); - } - } - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties - // (excepting IE8 booleans) - support.attributes = assert(function( div ) { - div.className = "i"; - return !div.getAttribute("className"); - }); - - /* getElement(s)By* - ---------------------------------------------------------------------- */ - - // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert(function( div ) { - div.appendChild( document.createComment("") ); - return !div.getElementsByTagName("*").length; - }); - - // Support: IE<9 - support.getElementsByClassName = rnative.test( document.getElementsByClassName ); - - // Support: IE<10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert(function( div ) { - docElem.appendChild( div ).id = expando; - return !document.getElementsByName || !document.getElementsByName( expando ).length; - }); - - // ID find and filter - if ( support.getById ) { - Expr.find["ID"] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var m = context.getElementById( id ); - return m ? [ m ] : []; - } - }; - Expr.filter["ID"] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute("id") === attrId; - }; - }; - } else { - // Support: IE6/7 - // getElementById is not reliable as a find shortcut - delete Expr.find["ID"]; - - Expr.filter["ID"] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode("id"); - return node && node.value === attrId; - }; - }; - } - - // Tag - Expr.find["TAG"] = support.getElementsByTagName ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( tag ); - - // DocumentFragment nodes don't have gEBTN - } else if ( support.qsa ) { - return context.querySelectorAll( tag ); - } - } : - - function( tag, context ) { - var elem, - tmp = [], - i = 0, - // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( (elem = results[i++]) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Class - Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21) - // We allow this because of a bug in IE8/9 that throws an error - // whenever `document.activeElement` is accessed on an iframe - // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See http://bugs.jquery.com/ticket/13378 - rbuggyQSA = []; - - if ( (support.qsa = rnative.test( document.querySelectorAll )) ) { - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert(function( div ) { - // Select is set to empty string on purpose - // This is to test IE's treatment of not explicitly - // setting a boolean content attribute, - // since its presence should be enough - // http://bugs.jquery.com/ticket/12359 - docElem.appendChild( div ).innerHTML = "<a id='" + expando + "'></a>" + - "<select id='" + expando + "-\r\\' msallowcapture=''>" + - "<option selected=''></option></select>"; - - // Support: IE8, Opera 11-12.16 - // Nothing should be selected when empty strings follow ^= or $= or *= - // The test attribute must be unknown in Opera but "safe" for WinRT - // http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( div.querySelectorAll("[msallowcapture^='']").length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !div.querySelectorAll("[selected]").length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ - if ( !div.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push("~="); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !div.querySelectorAll(":checked").length ) { - rbuggyQSA.push(":checked"); - } - - // Support: Safari 8+, iOS 8+ - // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibing-combinator selector` fails - if ( !div.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push(".#.+[+~]"); - } - }); - - assert(function( div ) { - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement("input"); - input.setAttribute( "type", "hidden" ); - div.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE8 - // Enforce case-sensitivity of name attribute - if ( div.querySelectorAll("[name=d]").length ) { - rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( !div.querySelectorAll(":enabled").length ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Opera 10-11 does not throw on post-comma invalid pseudos - div.querySelectorAll("*,:x"); - rbuggyQSA.push(",.*:"); - }); - } - - if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || - docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector) )) ) { - - assert(function( div ) { - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( div, "div" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( div, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - }); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); - - /* Contains - ---------------------------------------------------------------------- */ - hasCompare = rnative.test( docElem.compareDocumentPosition ); - - // Element contains another - // Purposefully self-exclusive - // As in, an element does not contain itself - contains = hasCompare || rnative.test( docElem.contains ) ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - )); - } : - function( a, b ) { - if ( b ) { - while ( (b = b.parentNode) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = hasCompare ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { - - // Choose the first element that is related to our preferred document - if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { - return -1; - } - if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } : - function( a, b ) { - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Parentless nodes are either documents or disconnected - if ( !aup || !bup ) { - return a === document ? -1 : - b === document ? 1 : - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( (cur = cur.parentNode) ) { - ap.unshift( cur ); - } - cur = b; - while ( (cur = cur.parentNode) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[i] === bp[i] ) { - i++; - } - - return i ? - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[i], bp[i] ) : - - // Otherwise nodes in our document sort first - ap[i] === preferredDoc ? -1 : - bp[i] === preferredDoc ? 1 : - 0; - }; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } - - // Make sure that attribute selectors are quoted - expr = expr.replace( rattributeQuotes, "='$1']" ); - - if ( support.matchesSelector && documentIsHTML && - !compilerCache[ expr + " " ] && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch (e) {} - } - - return Sizzle( expr, document, null, [ elem ] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - // Set document vars if needed - if ( ( context.ownerDocument || context ) !== document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val !== undefined ? - val : - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - (val = elem.getAttributeNode(name)) && val.specified ? - val.value : - null; -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( (elem = results[i++]) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - // If no nodeType, this is expected to be an array - while ( (node = elem[i++]) ) { - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - // Use textContent for elements - // innerText usage removed for consistency of new lines (jQuery #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[1] = match[1].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); - - if ( match[2] === "~=" ) { - match[3] = " " + match[3] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[1] = match[1].toLowerCase(); - - if ( match[1].slice( 0, 3 ) === "nth" ) { - // nth-* requires argument - if ( !match[3] ) { - Sizzle.error( match[0] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); - match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); - - // other types prohibit arguments - } else if ( match[3] ) { - Sizzle.error( match[0] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[6] && match[2]; - - if ( matchExpr["CHILD"].test( match[0] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[3] ) { - match[2] = match[4] || match[5] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - // Get excess from tokenize (recursively) - (excess = tokenize( unquoted, true )) && - // advance to the next closing parenthesis - (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { - - // excess is a negative index - match[0] = match[0].slice( 0, excess ); - match[2] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { return true; } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && - classCache( className, function( elem ) { - return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" ); - }); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - }; - }, - - "CHILD": function( type, what, argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, context, xml ) { - var cache, uniqueCache, outerCache, node, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( (node = node[ dir ]) ) { - if ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) { - - return false; - } - } - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - - // Seek `elem` from a previously-cached index - - // ...in a gzip-friendly way - node = parent; - outerCache = node[ expando ] || (node[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( (node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - (diff = nodeIndex = 0) || start.pop()) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - } else { - // Use previously-cached element index if available - if ( useCache ) { - // ...in a gzip-friendly way - node = elem; - outerCache = node[ expando ] || (node[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } - - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - // Use the same loop as above to seek `elem` from the start - while ( (node = ++nodeIndex && node && node[ dir ] || - (diff = nodeIndex = 0) || start.pop()) ) { - - if ( ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || (node[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); - - uniqueCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction(function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf( seed, matched[i] ); - seed[ idx ] = !( matches[ idx ] = matched[i] ); - } - }) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - // Potentially complex pseudos - "not": markFunction(function( selector ) { - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction(function( seed, matches, context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( (elem = unmatched[i]) ) { - seed[i] = !(matches[i] = elem); - } - } - }) : - function( elem, context, xml ) { - input[0] = elem; - matcher( input, null, xml, results ); - // Don't keep the element (issue #299) - input[0] = null; - return !results.pop(); - }; - }), - - "has": markFunction(function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - }), - - "contains": markFunction(function( text ) { - text = text.replace( runescape, funescape ); - return function( elem ) { - return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; - }; - }), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - // lang value must be a valid identifier - if ( !ridentifier.test(lang || "") ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( (elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); - return false; - }; - }), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); - }, - - // Boolean properties - "enabled": function( elem ) { - return elem.disabled === false; - }, - - "disabled": function( elem ) { - return elem.disabled === true; - }, - - "checked": function( elem ) { - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); - }, - - "selected": function( elem ) { - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos["empty"]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - - // Support: IE<8 - // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - "first": createPositionalPseudo(function() { - return [ 0 ]; - }), - - "last": createPositionalPseudo(function( matchIndexes, length ) { - return [ length - 1 ]; - }), - - "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - }), - - "even": createPositionalPseudo(function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "odd": createPositionalPseudo(function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - }) - } -}; - -Expr.pseudos["nth"] = Expr.pseudos["eq"]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -tokenize = Sizzle.tokenize = function( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || (match = rcomma.exec( soFar )) ) { - if ( match ) { - // Don't consume trailing commas as valid - soFar = soFar.slice( match[0].length ) || soFar; - } - groups.push( (tokens = []) ); - } - - matched = false; - - // Combinators - if ( (match = rcombinators.exec( soFar )) ) { - matched = match.shift(); - tokens.push({ - value: matched, - // Cast descendant combinators to space - type: match[0].replace( rtrim, " " ) - }); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || - (match = preFilters[ type ]( match ))) ) { - matched = match.shift(); - tokens.push({ - value: matched, - type: type, - matches: match - }); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -}; - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[i].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - checkNonElements = base && dir === "parentNode", - doneName = done++; - - return combinator.first ? - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, uniqueCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching - if ( xml ) { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || (elem[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {}); - - if ( (oldCache = uniqueCache[ dir ]) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return (newCache[ 2 ] = oldCache[ 2 ]); - } else { - // Reuse newcache so results back-propagate to previous elements - uniqueCache[ dir ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { - return true; - } - } - } - } - } - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[i]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[0]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[i], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( (elem = unmatched[i]) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction(function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( (elem = temp[i]) ) { - matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( (elem = matcherOut[i]) ) { - // Restore matcherIn since elem is not yet a final match - temp.push( (matcherIn[i] = elem) ); - } - } - postFinder( null, (matcherOut = []), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( (elem = matcherOut[i]) && - (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) { - - seed[temp] = !(results[temp] = elem); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - }); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[0].type ], - implicitRelative = leadingRelative || Expr.relative[" "], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - (checkContext = context).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - // Avoid hanging onto element (issue #299) - checkContext = null; - return ret; - } ]; - - for ( ; i < len; i++ ) { - if ( (matcher = Expr.relative[ tokens[i].type ]) ) { - matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; - } else { - matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[j].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), - len = elems.length; - - if ( outermost ) { - outermostContext = context === document || context || outermost; - } - - // Add elements passing elementMatchers directly to results - // Support: IE<9, Safari - // Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id - for ( ; i !== len && (elem = elems[i]) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - if ( !context && elem.ownerDocument !== document ) { - setDocument( elem ); - xml = !documentIsHTML; - } - while ( (matcher = elementMatchers[j++]) ) { - if ( matcher( elem, context || document, xml) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - // They will have gone through all possible matchers - if ( (elem = !matcher && elem) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. - if ( bySet && i !== matchedCount ) { - j = 0; - while ( (matcher = setMatchers[j++]) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !(unmatched[i] || setMatched[i]) ) { - setMatched[i] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[i] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -}; - -/** - * A low-level selection function that works with Sizzle's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with Sizzle.compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -select = Sizzle.select = function( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( (selector = compiled.selector || selector) ); - - results = results || []; - - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) - if ( match.length === 1 ) { - - // Reduce context if the leading compound selector is an ID - tokens = match[0] = match[0].slice( 0 ); - if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && - support.getById && context.nodeType === 9 && documentIsHTML && - Expr.relative[ tokens[1].type ] ) { - - context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[i]; - - // Abort if we hit a combinator - if ( Expr.relative[ (type = token.type) ] ) { - break; - } - if ( (find = Expr.find[ type ]) ) { - // Search, expanding context for leading sibling combinators - if ( (seed = find( - token.matches[0].replace( runescape, funescape ), - rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context - )) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -}; - -// One-time assignments - -// Sort stability -support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; - -// Support: Chrome 14-35+ -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = !!hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert(function( div1 ) { - // Should return 1, but returns 4 (following) - return div1.compareDocumentPosition( document.createElement("div") ) & 1; -}); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert(function( div ) { - div.innerHTML = "<a href='#'></a>"; - return div.firstChild.getAttribute("href") === "#" ; -}) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - }); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert(function( div ) { - div.innerHTML = "<input/>"; - div.firstChild.setAttribute( "value", "" ); - return div.firstChild.getAttribute( "value" ) === ""; -}) ) { - addHandle( "value", function( elem, name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - }); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert(function( div ) { - return div.getAttribute("disabled") == null; -}) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return elem[ name ] === true ? name.toLowerCase() : - (val = elem.getAttributeNode( name )) && val.specified ? - val.value : - null; - } - }); -} - -return Sizzle; - -})( window ); - - - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; - - - -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; - - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - -var rsingleTag = ( /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/ ); - - - -var risSimple = /^.[^:#\[\.,]*$/; - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( jQuery.isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - /* jshint -W018 */ - return !!qualifier.call( elem, i, elem ) !== not; - } ); - - } - - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - } ); - - } - - if ( typeof qualifier === "string" ) { - if ( risSimple.test( qualifier ) ) { - return jQuery.filter( qualifier, elements, not ); - } - - qualifier = jQuery.filter( qualifier, elements ); - } - - return jQuery.grep( elements, function( elem ) { - return ( jQuery.inArray( elem, qualifier ) > -1 ) !== not; - } ); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - return elems.length === 1 && elem.nodeType === 1 ? - jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] : - jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); -}; - -jQuery.fn.extend( { - find: function( selector ) { - var i, - ret = [], - self = this, - len = self.length; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - } ) ); - } - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - // Needed because $( selector, context ) becomes $( context ).find( selector ) - ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); - ret.selector = this.selector ? this.selector + " " + selector : selector; - return ret; - }, - filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); - }, - not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -} ); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // A simple way to check for HTML strings - // Prioritize #id over <tag> to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, - - init = jQuery.fn.init = function( selector, context, root ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // init accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector.charAt( 0 ) === "<" && - selector.charAt( selector.length - 1 ) === ">" && - selector.length >= 3 ) { - - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { - - // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; - - // scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - - // Properties of context are called as methods if possible - if ( jQuery.isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[ 2 ] ); - - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - if ( elem && elem.parentNode ) { - - // Handle the case where IE and Opera return items - // by name instead of ID - if ( elem.id !== match[ 2 ] ) { - return rootjQuery.find( selector ); - } - - // Otherwise, we inject the element directly into the jQuery object - this.length = 1; - this[ 0 ] = elem; - } - - this.context = document; - this.selector = selector; - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this.context = this[ 0 ] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( jQuery.isFunction( selector ) ) { - return typeof root.ready !== "undefined" ? - root.ready( selector ) : - - // Execute immediately if ready is not present - selector( jQuery ); - } - - if ( selector.selector !== undefined ) { - this.selector = selector.selector; - this.context = selector.context; - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - - // methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend( { - has: function( target ) { - var i, - targets = jQuery( target, this ), - len = targets.length; - - return this.filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { - return true; - } - } - } ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? - jQuery( selectors, context || this.context ) : - 0; - - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { - - // Always skip document fragments - if ( cur.nodeType < 11 && ( pos ? - pos.index( cur ) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { - - matched.push( cur ); - break; - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); - }, - - // Determine the position of an element within - // the matched set of elements - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; - } - - // index in selector - if ( typeof elem === "string" ) { - return jQuery.inArray( this[ 0 ], jQuery( elem ) ); - } - - // Locate the position of the desired element - return jQuery.inArray( - - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[ 0 ] : elem, this ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.uniqueSort( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - } -} ); - -function sibling( cur, dir ) { - do { - cur = cur[ dir ]; - } while ( cur && cur.nodeType !== 1 ); - - return cur; -} - -jQuery.each( { - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, i, until ) { - return dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, i, until ) { - return dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, i, until ) { - return dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return siblings( elem.firstChild ); - }, - contents: function( elem ) { - return jQuery.nodeName( elem, "iframe" ) ? - elem.contentDocument || elem.contentWindow.document : - jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var ret = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - ret = jQuery.filter( selector, ret ); - } - - if ( this.length > 1 ) { - - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - ret = jQuery.uniqueSort( ret ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - ret = ret.reverse(); - } - } - - return this.pushStack( ret ); - }; -} ); -var rnotwhite = ( /\S+/g ); - - - -// Convert String-formatted options into Object-formatted ones -function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { - object[ flag ] = true; - } ); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - createOptions( options ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists - memory, - - // Flag to know if list was already fired - fired, - - // Flag to prevent firing - locked, - - // Actual callback list - list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - - // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } - } - } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { - list = []; - - // Otherwise, this object is spent - } else { - list = ""; - } - } - }, - - // Actual Callbacks object - self = { - - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { - jQuery.each( args, function( _, arg ) { - if ( jQuery.isFunction( arg ) ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && jQuery.type( arg ) !== "string" ) { - - // Inspect recursively - add( arg ); - } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); - } - } - return this; - }, - - // Remove a callback from the list - remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; - } - } - } ); - return this; - }, - - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; - }, - - // Remove all callbacks from the list - empty: function() { - if ( list ) { - list = []; - } - return this; - }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values - disable: function() { - locked = queue = []; - list = memory = ""; - return this; - }, - disabled: function() { - return !list; - }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions - lock: function() { - locked = true; - if ( !memory ) { - self.disable(); - } - return this; - }, - locked: function() { - return !!locked; - }, - - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( !locked ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); - } - } - return this; - }, - - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -jQuery.extend( { - - Deferred: function( func ) { - var tuples = [ - - // action, add listener, listener list, final state - [ "resolve", "done", jQuery.Callbacks( "once memory" ), "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), "rejected" ], - [ "notify", "progress", jQuery.Callbacks( "memory" ) ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - then: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( i, tuple ) { - var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; - - // deferred[ done | fail | progress ] for forwarding actions to newDefer - deferred[ tuple[ 1 ] ]( function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && jQuery.isFunction( returned.promise ) ) { - returned.promise() - .progress( newDefer.notify ) - .done( newDefer.resolve ) - .fail( newDefer.reject ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( - this === promise ? newDefer.promise() : this, - fn ? [ returned ] : arguments - ); - } - } ); - } ); - fns = null; - } ).promise(); - }, - - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Keep pipe for back-compat - promise.pipe = promise.then; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 3 ]; - - // promise[ done | fail | progress ] = list.add - promise[ tuple[ 1 ] ] = list.add; - - // Handle state - if ( stateString ) { - list.add( function() { - - // state = [ resolved | rejected ] - state = stateString; - - // [ reject_list | resolve_list ].disable; progress_list.lock - }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); - } - - // deferred[ resolve | reject | notify ] - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? promise : this, arguments ); - return this; - }; - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( subordinate /* , ..., subordinateN */ ) { - var i = 0, - resolveValues = slice.call( arguments ), - length = resolveValues.length, - - // the count of uncompleted subordinates - remaining = length !== 1 || - ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, - - // the master Deferred. - // If resolveValues consist of only a single Deferred, just use that. - deferred = remaining === 1 ? subordinate : jQuery.Deferred(), - - // Update function for both resolve and progress values - updateFunc = function( i, contexts, values ) { - return function( value ) { - contexts[ i ] = this; - values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( values === progressValues ) { - deferred.notifyWith( contexts, values ); - - } else if ( !( --remaining ) ) { - deferred.resolveWith( contexts, values ); - } - }; - }, - - progressValues, progressContexts, resolveContexts; - - // add listeners to Deferred subordinates; treat others as resolved - if ( length > 1 ) { - progressValues = new Array( length ); - progressContexts = new Array( length ); - resolveContexts = new Array( length ); - for ( ; i < length; i++ ) { - if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { - resolveValues[ i ].promise() - .progress( updateFunc( i, progressContexts, progressValues ) ) - .done( updateFunc( i, resolveContexts, resolveValues ) ) - .fail( deferred.reject ); - } else { - --remaining; - } - } - } - - // if we're not waiting on anything, resolve the master - if ( !remaining ) { - deferred.resolveWith( resolveContexts, resolveValues ); - } - - return deferred.promise(); - } -} ); - - -// The deferred used on DOM ready -var readyList; - -jQuery.fn.ready = function( fn ) { - - // Add the callback - jQuery.ready.promise().done( fn ); - - return this; -}; - -jQuery.extend( { - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Hold (or release) the ready event - holdReady: function( hold ) { - if ( hold ) { - jQuery.readyWait++; - } else { - jQuery.ready( true ); - } - }, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - - // Trigger any bound ready events - if ( jQuery.fn.triggerHandler ) { - jQuery( document ).triggerHandler( "ready" ); - jQuery( document ).off( "ready" ); - } - } -} ); - -/** - * Clean-up method for dom ready events - */ -function detach() { - if ( document.addEventListener ) { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); - - } else { - document.detachEvent( "onreadystatechange", completed ); - window.detachEvent( "onload", completed ); - } -} - -/** - * The ready event handler and self cleanup method - */ -function completed() { - - // readyState === "complete" is good enough for us to call the dom ready in oldIE - if ( document.addEventListener || - window.event.type === "load" || - document.readyState === "complete" ) { - - detach(); - jQuery.ready(); - } -} - -jQuery.ready.promise = function( obj ) { - if ( !readyList ) { - - readyList = jQuery.Deferred(); - - // Catch cases where $(document).ready() is called - // after the browser event has already occurred. - // Support: IE6-10 - // Older IE sometimes signals "interactive" too soon - if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { - - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); - - // Standards-based browsers support DOMContentLoaded - } else if ( document.addEventListener ) { - - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); - - // If IE event model is used - } else { - - // Ensure firing before onload, maybe late but safe also for iframes - document.attachEvent( "onreadystatechange", completed ); - - // A fallback to window.onload, that will always work - window.attachEvent( "onload", completed ); - - // If IE and not a frame - // continually check to see if the document is ready - var top = false; - - try { - top = window.frameElement == null && document.documentElement; - } catch ( e ) {} - - if ( top && top.doScroll ) { - ( function doScrollCheck() { - if ( !jQuery.isReady ) { - - try { - - // Use the trick by Diego Perini - // http://javascript.nwbox.com/IEContentLoaded/ - top.doScroll( "left" ); - } catch ( e ) { - return window.setTimeout( doScrollCheck, 50 ); - } - - // detach all dom ready events - detach(); - - // and execute any waiting functions - jQuery.ready(); - } - } )(); - } - } - } - return readyList.promise( obj ); -}; - -// Kick off the DOM ready check even if the user does not -jQuery.ready.promise(); - - - - -// Support: IE<9 -// Iteration over object's inherited properties before its own -var i; -for ( i in jQuery( support ) ) { - break; -} -support.ownFirst = i === "0"; - -// Note: most support tests are defined in their respective modules. -// false until the test is run -support.inlineBlockNeedsLayout = false; - -// Execute ASAP in case we need to set body.style.zoom -jQuery( function() { - - // Minified: var a,b,c,d - var val, div, body, container; - - body = document.getElementsByTagName( "body" )[ 0 ]; - if ( !body || !body.style ) { - - // Return for frameset docs that don't have a body - return; - } - - // Setup - div = document.createElement( "div" ); - container = document.createElement( "div" ); - container.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px"; - body.appendChild( container ).appendChild( div ); - - if ( typeof div.style.zoom !== "undefined" ) { - - // Support: IE<8 - // Check if natively block-level elements act like inline-block - // elements when setting their display to 'inline' and giving - // them layout - div.style.cssText = "display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1"; - - support.inlineBlockNeedsLayout = val = div.offsetWidth === 3; - if ( val ) { - - // Prevent IE 6 from affecting layout for positioned elements #11048 - // Prevent IE from shrinking the body in IE 7 mode #12869 - // Support: IE<8 - body.style.zoom = 1; - } - } - - body.removeChild( container ); -} ); - - -( function() { - var div = document.createElement( "div" ); - - // Support: IE<9 - support.deleteExpando = true; - try { - delete div.test; - } catch ( e ) { - support.deleteExpando = false; - } - - // Null elements to avoid leaks in IE. - div = null; -} )(); -var acceptData = function( elem ) { - var noData = jQuery.noData[ ( elem.nodeName + " " ).toLowerCase() ], - nodeType = +elem.nodeType || 1; - - // Do not set data on non-element DOM nodes because it will not be cleared (#8335). - return nodeType !== 1 && nodeType !== 9 ? - false : - - // Nodes accept data unless otherwise specified; rejection can be conditional - !noData || noData !== true && elem.getAttribute( "classid" ) === noData; -}; - - - - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /([A-Z])/g; - -function dataAttr( elem, key, data ) { - - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - - var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); - - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = data === "true" ? true : - data === "false" ? false : - data === "null" ? null : - - // Only convert to a number if it doesn't change the string - +data + "" === data ? +data : - rbrace.test( data ) ? jQuery.parseJSON( data ) : - data; - } catch ( e ) {} - - // Make sure we set the data so it isn't changed later - jQuery.data( elem, key, data ); - - } else { - data = undefined; - } - } - - return data; -} - -// checks a cache object for emptiness -function isEmptyDataObject( obj ) { - var name; - for ( name in obj ) { - - // if the public data object is empty, the private is still empty - if ( name === "data" && jQuery.isEmptyObject( obj[ name ] ) ) { - continue; - } - if ( name !== "toJSON" ) { - return false; - } - } - - return true; -} - -function internalData( elem, name, data, pvt /* Internal Use Only */ ) { - if ( !acceptData( elem ) ) { - return; - } - - var ret, thisCache, - internalKey = jQuery.expando, - - // We have to handle DOM nodes and JS objects differently because IE6-7 - // can't GC object references properly across the DOM-JS boundary - isNode = elem.nodeType, - - // Only DOM nodes need the global jQuery cache; JS object data is - // attached directly to the object so GC can occur automatically - cache = isNode ? jQuery.cache : elem, - - // Only defining an ID for JS objects if its cache already exists allows - // the code to shortcut on the same path as a DOM node with no cache - id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; - - // Avoid doing any more work than we need to when trying to get data on an - // object that has no data at all - if ( ( !id || !cache[ id ] || ( !pvt && !cache[ id ].data ) ) && - data === undefined && typeof name === "string" ) { - return; - } - - if ( !id ) { - - // Only DOM nodes need a new unique ID for each element since their data - // ends up in the global cache - if ( isNode ) { - id = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++; - } else { - id = internalKey; - } - } - - if ( !cache[ id ] ) { - - // Avoid exposing jQuery metadata on plain JS objects when the object - // is serialized using JSON.stringify - cache[ id ] = isNode ? {} : { toJSON: jQuery.noop }; - } - - // An object can be passed to jQuery.data instead of a key/value pair; this gets - // shallow copied over onto the existing cache - if ( typeof name === "object" || typeof name === "function" ) { - if ( pvt ) { - cache[ id ] = jQuery.extend( cache[ id ], name ); - } else { - cache[ id ].data = jQuery.extend( cache[ id ].data, name ); - } - } - - thisCache = cache[ id ]; - - // jQuery data() is stored in a separate object inside the object's internal data - // cache in order to avoid key collisions between internal data and user-defined - // data. - if ( !pvt ) { - if ( !thisCache.data ) { - thisCache.data = {}; - } - - thisCache = thisCache.data; - } - - if ( data !== undefined ) { - thisCache[ jQuery.camelCase( name ) ] = data; - } - - // Check for both converted-to-camel and non-converted data property names - // If a data property was specified - if ( typeof name === "string" ) { - - // First Try to find as-is property data - ret = thisCache[ name ]; - - // Test for null|undefined property data - if ( ret == null ) { - - // Try to find the camelCased property - ret = thisCache[ jQuery.camelCase( name ) ]; - } - } else { - ret = thisCache; - } - - return ret; -} - -function internalRemoveData( elem, name, pvt ) { - if ( !acceptData( elem ) ) { - return; - } - - var thisCache, i, - isNode = elem.nodeType, - - // See jQuery.data for more information - cache = isNode ? jQuery.cache : elem, - id = isNode ? elem[ jQuery.expando ] : jQuery.expando; - - // If there is already no cache entry for this object, there is no - // purpose in continuing - if ( !cache[ id ] ) { - return; - } - - if ( name ) { - - thisCache = pvt ? cache[ id ] : cache[ id ].data; - - if ( thisCache ) { - - // Support array or space separated string names for data keys - if ( !jQuery.isArray( name ) ) { - - // try the string as a key before any manipulation - if ( name in thisCache ) { - name = [ name ]; - } else { - - // split the camel cased version by spaces unless a key with the spaces exists - name = jQuery.camelCase( name ); - if ( name in thisCache ) { - name = [ name ]; - } else { - name = name.split( " " ); - } - } - } else { - - // If "name" is an array of keys... - // When data is initially created, via ("key", "val") signature, - // keys will be converted to camelCase. - // Since there is no way to tell _how_ a key was added, remove - // both plain key and camelCase key. #12786 - // This will only penalize the array argument path. - name = name.concat( jQuery.map( name, jQuery.camelCase ) ); - } - - i = name.length; - while ( i-- ) { - delete thisCache[ name[ i ] ]; - } - - // If there is no data left in the cache, we want to continue - // and let the cache object itself get destroyed - if ( pvt ? !isEmptyDataObject( thisCache ) : !jQuery.isEmptyObject( thisCache ) ) { - return; - } - } - } - - // See jQuery.data for more information - if ( !pvt ) { - delete cache[ id ].data; - - // Don't destroy the parent cache unless the internal data object - // had been the only thing left in it - if ( !isEmptyDataObject( cache[ id ] ) ) { - return; - } - } - - // Destroy the cache - if ( isNode ) { - jQuery.cleanData( [ elem ], true ); - - // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) - /* jshint eqeqeq: false */ - } else if ( support.deleteExpando || cache != cache.window ) { - /* jshint eqeqeq: true */ - delete cache[ id ]; - - // When all else fails, undefined - } else { - cache[ id ] = undefined; - } -} - -jQuery.extend( { - cache: {}, - - // The following elements (space-suffixed to avoid Object.prototype collisions) - // throw uncatchable exceptions if you attempt to set expando properties - noData: { - "applet ": true, - "embed ": true, - - // ...but Flash objects (which have this classid) *can* handle expandos - "object ": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" - }, - - hasData: function( elem ) { - elem = elem.nodeType ? jQuery.cache[ elem[ jQuery.expando ] ] : elem[ jQuery.expando ]; - return !!elem && !isEmptyDataObject( elem ); - }, - - data: function( elem, name, data ) { - return internalData( elem, name, data ); - }, - - removeData: function( elem, name ) { - return internalRemoveData( elem, name ); - }, - - // For internal use only. - _data: function( elem, name, data ) { - return internalData( elem, name, data, true ); - }, - - _removeData: function( elem, name ) { - return internalRemoveData( elem, name, true ); - } -} ); - -jQuery.fn.extend( { - data: function( key, value ) { - var i, name, data, - elem = this[ 0 ], - attrs = elem && elem.attributes; - - // Special expections of .data basically thwart jQuery.access, - // so implement the relevant behavior ourselves - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = jQuery.data( elem ); - - if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE11+ - // The attrs elements can be null (#14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = jQuery.camelCase( name.slice( 5 ) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - jQuery._data( elem, "parsedAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each( function() { - jQuery.data( this, key ); - } ); - } - - return arguments.length > 1 ? - - // Sets one value - this.each( function() { - jQuery.data( this, key, value ); - } ) : - - // Gets one value - // Try to fetch any internally stored data first - elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined; - }, - - removeData: function( key ) { - return this.each( function() { - jQuery.removeData( this, key ); - } ); - } -} ); - - -jQuery.extend( { - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = jQuery._data( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || jQuery.isArray( data ) ) { - queue = jQuery._data( elem, type, jQuery.makeArray( data ) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // not intended for public consumption - generates a queueHooks object, - // or returns the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return jQuery._data( elem, key ) || jQuery._data( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - jQuery._removeData( elem, type + "queue" ); - jQuery._removeData( elem, key ); - } ) - } ); - } -} ); - -jQuery.fn.extend( { - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); - } - - return data === undefined ? - this : - this.each( function() { - var queue = jQuery.queue( this, type, data ); - - // ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - } ); - }, - dequeue: function( type ) { - return this.each( function() { - jQuery.dequeue( this, type ); - } ); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = jQuery._data( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -} ); - - -( function() { - var shrinkWrapBlocksVal; - - support.shrinkWrapBlocks = function() { - if ( shrinkWrapBlocksVal != null ) { - return shrinkWrapBlocksVal; - } - - // Will be changed later if needed. - shrinkWrapBlocksVal = false; - - // Minified: var b,c,d - var div, body, container; - - body = document.getElementsByTagName( "body" )[ 0 ]; - if ( !body || !body.style ) { - - // Test fired too early or in an unsupported environment, exit. - return; - } - - // Setup - div = document.createElement( "div" ); - container = document.createElement( "div" ); - container.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px"; - body.appendChild( container ).appendChild( div ); - - // Support: IE6 - // Check if elements with layout shrink-wrap their children - if ( typeof div.style.zoom !== "undefined" ) { - - // Reset CSS: box-sizing; display; margin; border - div.style.cssText = - - // Support: Firefox<29, Android 2.3 - // Vendor-prefix box-sizing - "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" + - "box-sizing:content-box;display:block;margin:0;border:0;" + - "padding:1px;width:1px;zoom:1"; - div.appendChild( document.createElement( "div" ) ).style.width = "5px"; - shrinkWrapBlocksVal = div.offsetWidth !== 3; - } - - body.removeChild( container ); - - return shrinkWrapBlocksVal; - }; - -} )(); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var isHidden = function( elem, el ) { - - // isHidden might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - return jQuery.css( elem, "display" ) === "none" || - !jQuery.contains( elem.ownerDocument, elem ); - }; - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, - scale = 1, - maxIterations = 20, - currentValue = tween ? - function() { return tween.cur(); } : - function() { return jQuery.css( elem, prop, "" ); }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Make sure we update the tween properties later on - valueParts = valueParts || []; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - do { - - // If previous iteration zeroed out, double until we get *something*. - // Use string for doubling so we don't accidentally see scale as unchanged below - scale = scale || ".5"; - - // Adjust and apply - initialInUnit = initialInUnit / scale; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Update scale, tolerating zero or NaN from tween.cur() - // Break the loop if scale is unchanged or perfect, or if we've just had enough. - } while ( - scale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations - ); - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - length = elems.length, - bulk = key == null; - - // Sets many values - if ( jQuery.type( key ) === "object" ) { - chainable = true; - for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !jQuery.isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < length; i++ ) { - fn( - elems[ i ], - key, - raw ? value : value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); - } - } - } - - return chainable ? - elems : - - // Gets - bulk ? - fn.call( elems ) : - length ? fn( elems[ 0 ], key ) : emptyGet; -}; -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([\w:-]+)/ ); - -var rscriptType = ( /^$|\/(?:java|ecma)script/i ); - -var rleadingWhitespace = ( /^\s+/ ); - -var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|" + - "details|dialog|figcaption|figure|footer|header|hgroup|main|" + - "mark|meter|nav|output|picture|progress|section|summary|template|time|video"; - - - -function createSafeFragment( document ) { - var list = nodeNames.split( "|" ), - safeFrag = document.createDocumentFragment(); - - if ( safeFrag.createElement ) { - while ( list.length ) { - safeFrag.createElement( - list.pop() - ); - } - } - return safeFrag; -} - - -( function() { - var div = document.createElement( "div" ), - fragment = document.createDocumentFragment(), - input = document.createElement( "input" ); - - // Setup - div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"; - - // IE strips leading whitespace when .innerHTML is used - support.leadingWhitespace = div.firstChild.nodeType === 3; - - // Make sure that tbody elements aren't automatically inserted - // IE will insert them into empty tables - support.tbody = !div.getElementsByTagName( "tbody" ).length; - - // Make sure that link elements get serialized correctly by innerHTML - // This requires a wrapper element in IE - support.htmlSerialize = !!div.getElementsByTagName( "link" ).length; - - // Makes sure cloning an html5 element does not cause problems - // Where outerHTML is undefined, this still works - support.html5Clone = - document.createElement( "nav" ).cloneNode( true ).outerHTML !== "<:nav></:nav>"; - - // Check if a disconnected checkbox will retain its checked - // value of true after appended to the DOM (IE6/7) - input.type = "checkbox"; - input.checked = true; - fragment.appendChild( input ); - support.appendChecked = input.checked; - - // Make sure textarea (and checkbox) defaultValue is properly cloned - // Support: IE6-IE11+ - div.innerHTML = "<textarea>x</textarea>"; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; - - // #11217 - WebKit loses check when the name is after the checked attribute - fragment.appendChild( div ); - - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input = document.createElement( "input" ); - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3 - // old WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE<9 - // Cloned elements keep attachEvent handlers, we use addEventListener on IE9+ - support.noCloneEvent = !!div.addEventListener; - - // Support: IE<9 - // Since attributes and properties are the same in IE, - // cleanData must set properties to undefined rather than use removeAttribute - div[ jQuery.expando ] = 1; - support.attributes = !div.getAttribute( jQuery.expando ); -} )(); - - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - option: [ 1, "<select multiple='multiple'>", "</select>" ], - legend: [ 1, "<fieldset>", "</fieldset>" ], - area: [ 1, "<map>", "</map>" ], - - // Support: IE8 - param: [ 1, "<object>", "</object>" ], - thead: [ 1, "<table>", "</table>" ], - tr: [ 2, "<table><tbody>", "</tbody></table>" ], - col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ], - td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ], - - // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, - // unless wrapped in a div with non-breaking characters in front of it. - _default: support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X<div>", "</div>" ] -}; - -// Support: IE8-IE9 -wrapMap.optgroup = wrapMap.option; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - - -function getAll( context, tag ) { - var elems, elem, - i = 0, - found = typeof context.getElementsByTagName !== "undefined" ? - context.getElementsByTagName( tag || "*" ) : - typeof context.querySelectorAll !== "undefined" ? - context.querySelectorAll( tag || "*" ) : - undefined; - - if ( !found ) { - for ( found = [], elems = context.childNodes || context; - ( elem = elems[ i ] ) != null; - i++ - ) { - if ( !tag || jQuery.nodeName( elem, tag ) ) { - found.push( elem ); - } else { - jQuery.merge( found, getAll( elem, tag ) ); - } - } - } - - return tag === undefined || tag && jQuery.nodeName( context, tag ) ? - jQuery.merge( [ context ], found ) : - found; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var elem, - i = 0; - for ( ; ( elem = elems[ i ] ) != null; i++ ) { - jQuery._data( - elem, - "globalEval", - !refElements || jQuery._data( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/, - rtbody = /<tbody/i; - -function fixDefaultChecked( elem ) { - if ( rcheckableType.test( elem.type ) ) { - elem.defaultChecked = elem.checked; - } -} - -function buildFragment( elems, context, scripts, selection, ignored ) { - var j, elem, contains, - tmp, tag, tbody, wrap, - l = elems.length, - - // Ensure a safe fragment - safe = createSafeFragment( context ), - - nodes = [], - i = 0; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( jQuery.type( elem ) === "object" ) { - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || safe.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Manually add leading whitespace removed by IE - if ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { - nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[ 0 ] ) ); - } - - // Remove IE's autoinserted <tbody> from table fragments - if ( !support.tbody ) { - - // String was a <table>, *may* have spurious <tbody> - elem = tag === "table" && !rtbody.test( elem ) ? - tmp.firstChild : - - // String was a bare <thead> or <tfoot> - wrap[ 1 ] === "<table>" && !rtbody.test( elem ) ? - tmp : - 0; - - j = elem && elem.childNodes.length; - while ( j-- ) { - if ( jQuery.nodeName( ( tbody = elem.childNodes[ j ] ), "tbody" ) && - !tbody.childNodes.length ) { - - elem.removeChild( tbody ); - } - } - } - - jQuery.merge( nodes, tmp.childNodes ); - - // Fix #12392 for WebKit and IE > 9 - tmp.textContent = ""; - - // Fix #12392 for oldIE - while ( tmp.firstChild ) { - tmp.removeChild( tmp.firstChild ); - } - - // Remember the top-level container for proper cleanup - tmp = safe.lastChild; - } - } - } - - // Fix #11356: Clear elements from fragment - if ( tmp ) { - safe.removeChild( tmp ); - } - - // Reset defaultChecked for any radios and checkboxes - // about to be appended to the DOM in IE 6/7 (#8060) - if ( !support.appendChecked ) { - jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked ); - } - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - - continue; - } - - contains = jQuery.contains( elem.ownerDocument, elem ); - - // Append to fragment - tmp = getAll( safe.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( contains ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - tmp = null; - - return safe; -} - - -( function() { - var i, eventName, - div = document.createElement( "div" ); - - // Support: IE<9 (lack submit/change bubble), Firefox (lack focus(in | out) events) - for ( i in { submit: true, change: true, focusin: true } ) { - eventName = "on" + i; - - if ( !( support[ i ] = eventName in window ) ) { - - // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP) - div.setAttribute( eventName, "t" ); - support[ i ] = div.attributes[ eventName ].expando === false; - } - } - - // Null elements to avoid leaks in IE. - div = null; -} )(); - - -var rformElems = /^(?:input|select|textarea)$/i, - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -// Support: IE9 -// See #13393 for more info -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - var tmp, events, t, handleObjIn, - special, eventHandle, handleObj, - handlers, type, namespaces, origType, - elemData = jQuery._data( elem ); - - // Don't attach events to noData or text/comment nodes (but allow plain objects) - if ( !elemData ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { - events = elemData.events = {}; - } - if ( !( eventHandle = elemData.handle ) ) { - eventHandle = elemData.handle = function( e ) { - - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && - ( !e || jQuery.event.triggered !== e.type ) ? - jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : - undefined; - }; - - // Add elem as a property of the handle fn to prevent a memory leak - // with IE non-native events - eventHandle.elem = elem; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnotwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend( { - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener/attachEvent if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - - // Bind the global event handler to the element - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle, false ); - - } else if ( elem.attachEvent ) { - elem.attachEvent( "on" + type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - // Nullify elem to prevent memory leaks in IE - elem = null; - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - var j, handleObj, tmp, - origCount, t, events, - special, handlers, type, - namespaces, origType, - elemData = jQuery.hasData( elem ) && jQuery._data( elem ); - - if ( !elemData || !( events = elemData.events ) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnotwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - delete elemData.handle; - - // removeData also checks for emptiness and clears the expando if empty - // so use it instead of delete - jQuery._removeData( elem, "events" ); - } - }, - - trigger: function( event, data, elem, onlyHandlers ) { - var handle, ontype, cur, - bubbleType, special, tmp, i, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; - - cur = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "." ) > -1 ) { - - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split( "." ); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf( ":" ) < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join( "." ); - event.rnamespace = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === ( elem.ownerDocument || document ) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { - - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && - jQuery._data( cur, "handle" ); - - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( - ( !special._default || - special._default.apply( eventPath.pop(), data ) === false - ) && acceptData( elem ) - ) { - - // Call a native DOM method on the target with the same name name as the event. - // Can't use an .isFunction() check here because IE6/7 fails that test. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - try { - elem[ type ](); - } catch ( e ) { - - // IE<9 dies on focus/blur to hidden element (#1486,#12518) - // only reproducible on winXP IE8 native, not IE9 in IE8 mode - } - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - dispatch: function( event ) { - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( event ); - - var i, j, ret, matched, handleObj, - handlerQueue = [], - args = slice.call( arguments ), - handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { - - // Triggered event must either 1) have no namespace, or 2) have namespace(s) - // a subset or equal to those in the bound event (both can have no namespace). - if ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, matches, sel, handleObj, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Support (at least): Chrome, IE9 - // Find delegate handlers - // Black-hole SVG <use> instance trees (#13180) - // - // Support: Firefox<=42+ - // Avoid non-left-click in FF but don't block IE radio events (#3861, gh-2343) - if ( delegateCount && cur.nodeType && - ( event.type !== "click" || isNaN( event.button ) || event.button < 1 ) ) { - - /* jshint eqeqeq: false */ - for ( ; cur != this; cur = cur.parentNode || this ) { - /* jshint eqeqeq: true */ - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && ( cur.disabled !== true || event.type !== "click" ) ) { - matches = []; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matches[ sel ] === undefined ) { - matches[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matches[ sel ] ) { - matches.push( handleObj ); - } - } - if ( matches.length ) { - handlerQueue.push( { elem: cur, handlers: matches } ); - } - } - } - } - - // Add the remaining (directly-bound) handlers - if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: this, handlers: handlers.slice( delegateCount ) } ); - } - - return handlerQueue; - }, - - fix: function( event ) { - if ( event[ jQuery.expando ] ) { - return event; - } - - // Create a writable copy of the event object and normalize some properties - var i, prop, copy, - type = event.type, - originalEvent = event, - fixHook = this.fixHooks[ type ]; - - if ( !fixHook ) { - this.fixHooks[ type ] = fixHook = - rmouseEvent.test( type ) ? this.mouseHooks : - rkeyEvent.test( type ) ? this.keyHooks : - {}; - } - copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; - - event = new jQuery.Event( originalEvent ); - - i = copy.length; - while ( i-- ) { - prop = copy[ i ]; - event[ prop ] = originalEvent[ prop ]; - } - - // Support: IE<9 - // Fix target property (#1925) - if ( !event.target ) { - event.target = originalEvent.srcElement || document; - } - - // Support: Safari 6-8+ - // Target should not be a text node (#504, #13143) - if ( event.target.nodeType === 3 ) { - event.target = event.target.parentNode; - } - - // Support: IE<9 - // For mouse/key events, metaKey==false if it's undefined (#3368, #11328) - event.metaKey = !!event.metaKey; - - return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; - }, - - // Includes some event props shared by KeyEvent and MouseEvent - props: ( "altKey bubbles cancelable ctrlKey currentTarget detail eventPhase " + - "metaKey relatedTarget shiftKey target timeStamp view which" ).split( " " ), - - fixHooks: {}, - - keyHooks: { - props: "char charCode key keyCode".split( " " ), - filter: function( event, original ) { - - // Add which for key events - if ( event.which == null ) { - event.which = original.charCode != null ? original.charCode : original.keyCode; - } - - return event; - } - }, - - mouseHooks: { - props: ( "button buttons clientX clientY fromElement offsetX offsetY " + - "pageX pageY screenX screenY toElement" ).split( " " ), - filter: function( event, original ) { - var body, eventDoc, doc, - button = original.button, - fromElement = original.fromElement; - - // Calculate pageX/Y if missing and clientX/Y available - if ( event.pageX == null && original.clientX != null ) { - eventDoc = event.target.ownerDocument || document; - doc = eventDoc.documentElement; - body = eventDoc.body; - - event.pageX = original.clientX + - ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); - event.pageY = original.clientY + - ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - - ( doc && doc.clientTop || body && body.clientTop || 0 ); - } - - // Add relatedTarget, if necessary - if ( !event.relatedTarget && fromElement ) { - event.relatedTarget = fromElement === event.target ? - original.toElement : - fromElement; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - // Note: button is not normalized, so don't use it - if ( !event.which && button !== undefined ) { - event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); - } - - return event; - } - }, - - special: { - load: { - - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - focus: { - - // Fire native event if possible so blur/focus sequence is correct - trigger: function() { - if ( this !== safeActiveElement() && this.focus ) { - try { - this.focus(); - return false; - } catch ( e ) { - - // Support: IE<9 - // If we error on focus to hidden element (#1486, #12518), - // let .trigger() run the handlers - } - } - }, - delegateType: "focusin" - }, - blur: { - trigger: function() { - if ( this === safeActiveElement() && this.blur ) { - this.blur(); - return false; - } - }, - delegateType: "focusout" - }, - click: { - - // For checkbox, fire native event so checked state will be right - trigger: function() { - if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) { - this.click(); - return false; - } - }, - - // For cross-browser consistency, don't fire native .click() on links - _default: function( event ) { - return jQuery.nodeName( event.target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - }, - - // Piggyback on a donor event to simulate a different one - simulate: function( type, elem, event ) { - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true - - // Previously, `originalEvent: {}` was set here, so stopPropagation call - // would not be triggered on donor event, since in our own - // jQuery.event.stopPropagation function we had a check for existence of - // originalEvent.stopPropagation method, so, consequently it would be a noop. - // - // Guard for simulated events was moved to jQuery.event.stopPropagation function - // since `originalEvent` should point to the original event for the - // constancy with other events and for more focused logic - } - ); - - jQuery.event.trigger( e, null, elem ); - - if ( e.isDefaultPrevented() ) { - event.preventDefault(); - } - } -}; - -jQuery.removeEvent = document.removeEventListener ? - function( elem, type, handle ) { - - // This "if" is needed for plain objects - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); - } - } : - function( elem, type, handle ) { - var name = "on" + type; - - if ( elem.detachEvent ) { - - // #8545, #7054, preventing memory leaks for custom events in IE6-8 - // detachEvent needed property on element, by name of that event, - // to properly expose it to GC - if ( typeof elem[ name ] === "undefined" ) { - elem[ name ] = null; - } - - elem.detachEvent( name, handle ); - } - }; - -jQuery.Event = function( src, props ) { - - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - - // Support: IE < 9, Android < 4.0 - src.returnValue === false ? - returnTrue : - returnFalse; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || jQuery.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - constructor: jQuery.Event, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - if ( !e ) { - return; - } - - // If preventDefault exists, run it on the original event - if ( e.preventDefault ) { - e.preventDefault(); - - // Support: IE - // Otherwise set the returnValue property of the original event to false - } else { - e.returnValue = false; - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - - if ( !e || this.isSimulated ) { - return; - } - - // If stopPropagation exists, run it on the original event - if ( e.stopPropagation ) { - e.stopPropagation(); - } - - // Support: IE - // Set the cancelBubble property of the original event to true - e.cancelBubble = true; - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && e.stopImmediatePropagation ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://code.google.com/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mouseenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -} ); - -// IE submit delegation -if ( !support.submit ) { - - jQuery.event.special.submit = { - setup: function() { - - // Only need this for delegated form submit events - if ( jQuery.nodeName( this, "form" ) ) { - return false; - } - - // Lazy-add a submit handler when a descendant form may potentially be submitted - jQuery.event.add( this, "click._submit keypress._submit", function( e ) { - - // Node name check avoids a VML-related crash in IE (#9807) - var elem = e.target, - form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? - - // Support: IE <=8 - // We use jQuery.prop instead of elem.form - // to allow fixing the IE8 delegated submit issue (gh-2332) - // by 3rd party polyfills/workarounds. - jQuery.prop( elem, "form" ) : - undefined; - - if ( form && !jQuery._data( form, "submit" ) ) { - jQuery.event.add( form, "submit._submit", function( event ) { - event._submitBubble = true; - } ); - jQuery._data( form, "submit", true ); - } - } ); - - // return undefined since we don't need an event listener - }, - - postDispatch: function( event ) { - - // If form was submitted by the user, bubble the event up the tree - if ( event._submitBubble ) { - delete event._submitBubble; - if ( this.parentNode && !event.isTrigger ) { - jQuery.event.simulate( "submit", this.parentNode, event ); - } - } - }, - - teardown: function() { - - // Only need this for delegated form submit events - if ( jQuery.nodeName( this, "form" ) ) { - return false; - } - - // Remove delegated handlers; cleanData eventually reaps submit handlers attached above - jQuery.event.remove( this, "._submit" ); - } - }; -} - -// IE change delegation and checkbox/radio fix -if ( !support.change ) { - - jQuery.event.special.change = { - - setup: function() { - - if ( rformElems.test( this.nodeName ) ) { - - // IE doesn't fire change on a check/radio until blur; trigger it on click - // after a propertychange. Eat the blur-change in special.change.handle. - // This still fires onchange a second time for check/radio after blur. - if ( this.type === "checkbox" || this.type === "radio" ) { - jQuery.event.add( this, "propertychange._change", function( event ) { - if ( event.originalEvent.propertyName === "checked" ) { - this._justChanged = true; - } - } ); - jQuery.event.add( this, "click._change", function( event ) { - if ( this._justChanged && !event.isTrigger ) { - this._justChanged = false; - } - - // Allow triggered, simulated change events (#11500) - jQuery.event.simulate( "change", this, event ); - } ); - } - return false; - } - - // Delegated event; lazy-add a change handler on descendant inputs - jQuery.event.add( this, "beforeactivate._change", function( e ) { - var elem = e.target; - - if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "change" ) ) { - jQuery.event.add( elem, "change._change", function( event ) { - if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { - jQuery.event.simulate( "change", this.parentNode, event ); - } - } ); - jQuery._data( elem, "change", true ); - } - } ); - }, - - handle: function( event ) { - var elem = event.target; - - // Swallow native change events from checkbox/radio, we already triggered them above - if ( this !== elem || event.isSimulated || event.isTrigger || - ( elem.type !== "radio" && elem.type !== "checkbox" ) ) { - - return event.handleObj.handler.apply( this, arguments ); - } - }, - - teardown: function() { - jQuery.event.remove( this, "._change" ); - - return !rformElems.test( this.nodeName ); - } - }; -} - -// Support: Firefox -// Firefox doesn't have focus(in | out) events -// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 -// -// Support: Chrome, Safari -// focus(in | out) events fire after focus & blur events, -// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order -// Related ticket - https://code.google.com/p/chromium/issues/detail?id=449857 -if ( !support.focusin ) { - jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler on the document while someone wants focusin/focusout - var handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - var doc = this.ownerDocument || this, - attaches = jQuery._data( doc, fix ); - - if ( !attaches ) { - doc.addEventListener( orig, handler, true ); - } - jQuery._data( doc, fix, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this, - attaches = jQuery._data( doc, fix ) - 1; - - if ( !attaches ) { - doc.removeEventListener( orig, handler, true ); - jQuery._removeData( doc, fix ); - } else { - jQuery._data( doc, fix, attaches ); - } - } - }; - } ); -} - -jQuery.fn.extend( { - - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); - }, - one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each( function() { - jQuery.event.remove( this, types, fn, selector ); - } ); - }, - - trigger: function( type, data ) { - return this.each( function() { - jQuery.event.trigger( type, data, this ); - } ); - }, - triggerHandler: function( type, data ) { - var elem = this[ 0 ]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -} ); - - -var rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, - rnoshimcache = new RegExp( "<(?:" + nodeNames + ")[\\s/>]", "i" ), - rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi, - - // Support: IE 10-11, Edge 10240+ - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /<script|<style|<link/i, - - // checked="checked" or checked - rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, - rscriptTypeMasked = /^true\/(.*)/, - rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g, - safeFragment = createSafeFragment( document ), - fragmentDiv = safeFragment.appendChild( document.createElement( "div" ) ); - -// Support: IE<8 -// Manipulating tables requires a tbody -function manipulationTarget( elem, content ) { - return jQuery.nodeName( elem, "table" ) && - jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? - - elem.getElementsByTagName( "tbody" )[ 0 ] || - elem.appendChild( elem.ownerDocument.createElement( "tbody" ) ) : - elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = ( jQuery.find.attr( elem, "type" ) !== null ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - var match = rscriptTypeMasked.exec( elem.type ); - if ( match ) { - elem.type = match[ 1 ]; - } else { - elem.removeAttribute( "type" ); - } - return elem; -} - -function cloneCopyEvent( src, dest ) { - if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { - return; - } - - var type, i, l, - oldData = jQuery._data( src ), - curData = jQuery._data( dest, oldData ), - events = oldData.events; - - if ( events ) { - delete curData.handle; - curData.events = {}; - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - - // make the cloned public data object a copy from the original - if ( curData.data ) { - curData.data = jQuery.extend( {}, curData.data ); - } -} - -function fixCloneNodeIssues( src, dest ) { - var nodeName, e, data; - - // We do not need to do anything for non-Elements - if ( dest.nodeType !== 1 ) { - return; - } - - nodeName = dest.nodeName.toLowerCase(); - - // IE6-8 copies events bound via attachEvent when using cloneNode. - if ( !support.noCloneEvent && dest[ jQuery.expando ] ) { - data = jQuery._data( dest ); - - for ( e in data.events ) { - jQuery.removeEvent( dest, e, data.handle ); - } - - // Event data gets referenced instead of copied if the expando gets copied too - dest.removeAttribute( jQuery.expando ); - } - - // IE blanks contents when cloning scripts, and tries to evaluate newly-set text - if ( nodeName === "script" && dest.text !== src.text ) { - disableScript( dest ).text = src.text; - restoreScript( dest ); - - // IE6-10 improperly clones children of object elements using classid. - // IE10 throws NoModificationAllowedError if parent is null, #12132. - } else if ( nodeName === "object" ) { - if ( dest.parentNode ) { - dest.outerHTML = src.outerHTML; - } - - // This path appears unavoidable for IE9. When cloning an object - // element in IE9, the outerHTML strategy above is not sufficient. - // If the src has innerHTML and the destination does not, - // copy the src.innerHTML into the dest.innerHTML. #10324 - if ( support.html5Clone && ( src.innerHTML && !jQuery.trim( dest.innerHTML ) ) ) { - dest.innerHTML = src.innerHTML; - } - - } else if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - - // IE6-8 fails to persist the checked state of a cloned checkbox - // or radio button. Worse, IE6-7 fail to give the cloned element - // a checked appearance if the defaultChecked value isn't also set - - dest.defaultChecked = dest.checked = src.checked; - - // IE6-7 get confused and end up setting the value of a cloned - // checkbox/radio button to an empty string instead of "on" - if ( dest.value !== src.value ) { - dest.value = src.value; - } - - // IE6-8 fails to return the selected option to the default selected - // state when cloning options - } else if ( nodeName === "option" ) { - dest.defaultSelected = dest.selected = src.defaultSelected; - - // IE6-8 fails to set the defaultValue to the correct value when - // cloning other types of input fields - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = concat.apply( [], args ); - - var first, node, hasScripts, - scripts, doc, fragment, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - isFunction = jQuery.isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( isFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( isFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android<4.1, PhantomJS<2 - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !jQuery._data( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl ) { - jQuery._evalUrl( node.src ); - } - } else { - jQuery.globalEval( - ( node.text || node.textContent || node.innerHTML || "" ) - .replace( rcleanScript, "" ) - ); - } - } - } - } - - // Fix #11809: Avoid leaking memory - fragment = first = null; - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - elems = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = elems[ i ] ) != null; i++ ) { - - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && jQuery.contains( node.ownerDocument, node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html.replace( rxhtmlTag, "<$1></$2>" ); - }, - - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var destElements, node, clone, i, srcElements, - inPage = jQuery.contains( elem.ownerDocument, elem ); - - if ( support.html5Clone || jQuery.isXMLDoc( elem ) || - !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { - - clone = elem.cloneNode( true ); - - // IE<=8 does not properly clone detached, unknown element nodes - } else { - fragmentDiv.innerHTML = elem.outerHTML; - fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); - } - - if ( ( !support.noCloneEvent || !support.noCloneChecked ) && - ( elem.nodeType === 1 || elem.nodeType === 11 ) && !jQuery.isXMLDoc( elem ) ) { - - // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - // Fix all IE cloning issues - for ( i = 0; ( node = srcElements[ i ] ) != null; ++i ) { - - // Ensure that the destination node is not null; Fixes #9587 - if ( destElements[ i ] ) { - fixCloneNodeIssues( node, destElements[ i ] ); - } - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0; ( node = srcElements[ i ] ) != null; i++ ) { - cloneCopyEvent( node, destElements[ i ] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - destElements = srcElements = node = null; - - // Return the cloned set - return clone; - }, - - cleanData: function( elems, /* internal */ forceAcceptData ) { - var elem, type, id, data, - i = 0, - internalKey = jQuery.expando, - cache = jQuery.cache, - attributes = support.attributes, - special = jQuery.event.special; - - for ( ; ( elem = elems[ i ] ) != null; i++ ) { - if ( forceAcceptData || acceptData( elem ) ) { - - id = elem[ internalKey ]; - data = id && cache[ id ]; - - if ( data ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Remove cache only if it was not already removed by jQuery.event.remove - if ( cache[ id ] ) { - - delete cache[ id ]; - - // Support: IE<9 - // IE does not allow us to delete expando properties from nodes - // IE creates expando attributes along with the property - // IE does not have a removeAttribute function on Document nodes - if ( !attributes && typeof elem.removeAttribute !== "undefined" ) { - elem.removeAttribute( internalKey ); - - // Webkit & Blink performance suffers when deleting properties - // from DOM nodes, so set to undefined instead - // https://code.google.com/p/chromium/issues/detail?id=378607 - } else { - elem[ internalKey ] = undefined; - } - - deletedIds.push( id ); - } - } - } - } - } -} ); - -jQuery.fn.extend( { - - // Keep domManip exposed until 3.0 (gh-2225) - domManip: domManip, - - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, - - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().append( - ( this[ 0 ] && this[ 0 ].ownerDocument || document ).createTextNode( value ) - ); - }, null, value, arguments.length ); - }, - - append: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - } ); - }, - - prepend: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - } ); - }, - - before: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - } ); - }, - - after: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - } ); - }, - - empty: function() { - var elem, - i = 0; - - for ( ; ( elem = this[ i ] ) != null; i++ ) { - - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - } - - // Remove any remaining nodes - while ( elem.firstChild ) { - elem.removeChild( elem.firstChild ); - } - - // If this is a select, ensure that it displays empty (#12336) - // Support: IE<9 - if ( elem.options && jQuery.nodeName( elem, "select" ) ) { - elem.options.length = 0; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined ) { - return elem.nodeType === 1 ? - elem.innerHTML.replace( rinlinejQuery, "" ) : - undefined; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - ( support.htmlSerialize || !rnoshimcache.test( value ) ) && - ( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && - !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - - value = jQuery.htmlPrefilter( value ); - - try { - for ( ; i < l; i++ ) { - - // Remove element nodes and prevent memory leaks - elem = this[ i ] || {}; - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var ignored = []; - - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; - - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); - } - } - - // Force callback invocation - }, ignored ); - } -} ); - -jQuery.each( { - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - i = 0, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone( true ); - jQuery( insert[ i ] )[ original ]( elems ); - - // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get() - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -} ); - - -var iframe, - elemdisplay = { - - // Support: Firefox - // We have to pre-define these values for FF (#10227) - HTML: "block", - BODY: "block" - }; - -/** - * Retrieve the actual display of a element - * @param {String} name nodeName of the element - * @param {Object} doc Document object - */ - -// Called only from within defaultDisplay -function actualDisplay( name, doc ) { - var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), - - display = jQuery.css( elem[ 0 ], "display" ); - - // We don't have any data stored on the element, - // so use "detach" method as fast way to get rid of the element - elem.detach(); - - return display; -} - -/** - * Try to determine the default display value of an element - * @param {String} nodeName - */ -function defaultDisplay( nodeName ) { - var doc = document, - display = elemdisplay[ nodeName ]; - - if ( !display ) { - display = actualDisplay( nodeName, doc ); - - // If the simple way fails, read from inside an iframe - if ( display === "none" || !display ) { - - // Use the already-created iframe if possible - iframe = ( iframe || jQuery( "<iframe frameborder='0' width='0' height='0'/>" ) ) - .appendTo( doc.documentElement ); - - // Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse - doc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document; - - // Support: IE - doc.write(); - doc.close(); - - display = actualDisplay( nodeName, doc ); - iframe.detach(); - } - - // Store the correct default display - elemdisplay[ nodeName ] = display; - } - - return display; -} -var rmargin = ( /^margin/ ); - -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var swap = function( elem, options, callback, args ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.apply( elem, args || [] ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - -var documentElement = document.documentElement; - - - -( function() { - var pixelPositionVal, pixelMarginRightVal, boxSizingReliableVal, - reliableHiddenOffsetsVal, reliableMarginRightVal, reliableMarginLeftVal, - container = document.createElement( "div" ), - div = document.createElement( "div" ); - - // Finish early in limited (non-browser) environments - if ( !div.style ) { - return; - } - - div.style.cssText = "float:left;opacity:.5"; - - // Support: IE<9 - // Make sure that element opacity exists (as opposed to filter) - support.opacity = div.style.opacity === "0.5"; - - // Verify style float existence - // (IE uses styleFloat instead of cssFloat) - support.cssFloat = !!div.style.cssFloat; - - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - container = document.createElement( "div" ); - container.style.cssText = "border:0;width:8px;height:0;top:0;left:-9999px;" + - "padding:0;margin-top:1px;position:absolute"; - div.innerHTML = ""; - container.appendChild( div ); - - // Support: Firefox<29, Android 2.3 - // Vendor-prefix box-sizing - support.boxSizing = div.style.boxSizing === "" || div.style.MozBoxSizing === "" || - div.style.WebkitBoxSizing === ""; - - jQuery.extend( support, { - reliableHiddenOffsets: function() { - if ( pixelPositionVal == null ) { - computeStyleTests(); - } - return reliableHiddenOffsetsVal; - }, - - boxSizingReliable: function() { - - // We're checking for pixelPositionVal here instead of boxSizingReliableVal - // since that compresses better and they're computed together anyway. - if ( pixelPositionVal == null ) { - computeStyleTests(); - } - return boxSizingReliableVal; - }, - - pixelMarginRight: function() { - - // Support: Android 4.0-4.3 - if ( pixelPositionVal == null ) { - computeStyleTests(); - } - return pixelMarginRightVal; - }, - - pixelPosition: function() { - if ( pixelPositionVal == null ) { - computeStyleTests(); - } - return pixelPositionVal; - }, - - reliableMarginRight: function() { - - // Support: Android 2.3 - if ( pixelPositionVal == null ) { - computeStyleTests(); - } - return reliableMarginRightVal; - }, - - reliableMarginLeft: function() { - - // Support: IE <=8 only, Android 4.0 - 4.3 only, Firefox <=3 - 37 - if ( pixelPositionVal == null ) { - computeStyleTests(); - } - return reliableMarginLeftVal; - } - } ); - - function computeStyleTests() { - var contents, divStyle, - documentElement = document.documentElement; - - // Setup - documentElement.appendChild( container ); - - div.style.cssText = - - // Support: Android 2.3 - // Vendor-prefix box-sizing - "-webkit-box-sizing:border-box;box-sizing:border-box;" + - "position:relative;display:block;" + - "margin:auto;border:1px;padding:1px;" + - "top:1%;width:50%"; - - // Support: IE<9 - // Assume reasonable values in the absence of getComputedStyle - pixelPositionVal = boxSizingReliableVal = reliableMarginLeftVal = false; - pixelMarginRightVal = reliableMarginRightVal = true; - - // Check for getComputedStyle so that this code is not run in IE<9. - if ( window.getComputedStyle ) { - divStyle = window.getComputedStyle( div ); - pixelPositionVal = ( divStyle || {} ).top !== "1%"; - reliableMarginLeftVal = ( divStyle || {} ).marginLeft === "2px"; - boxSizingReliableVal = ( divStyle || { width: "4px" } ).width === "4px"; - - // Support: Android 4.0 - 4.3 only - // Some styles come back with percentage values, even though they shouldn't - div.style.marginRight = "50%"; - pixelMarginRightVal = ( divStyle || { marginRight: "4px" } ).marginRight === "4px"; - - // Support: Android 2.3 only - // Div with explicit width and no margin-right incorrectly - // gets computed margin-right based on width of container (#3333) - // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right - contents = div.appendChild( document.createElement( "div" ) ); - - // Reset CSS: box-sizing; display; margin; border; padding - contents.style.cssText = div.style.cssText = - - // Support: Android 2.3 - // Vendor-prefix box-sizing - "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" + - "box-sizing:content-box;display:block;margin:0;border:0;padding:0"; - contents.style.marginRight = contents.style.width = "0"; - div.style.width = "1px"; - - reliableMarginRightVal = - !parseFloat( ( window.getComputedStyle( contents ) || {} ).marginRight ); - - div.removeChild( contents ); - } - - // Support: IE6-8 - // First check that getClientRects works as expected - // Check if table cells still have offsetWidth/Height when they are set - // to display:none and there are still other visible table cells in a - // table row; if so, offsetWidth/Height are not reliable for use when - // determining if an element has been hidden directly using - // display:none (it is still safe to use offsets if a parent element is - // hidden; don safety goggles and see bug #4512 for more information). - div.style.display = "none"; - reliableHiddenOffsetsVal = div.getClientRects().length === 0; - if ( reliableHiddenOffsetsVal ) { - div.style.display = ""; - div.innerHTML = "<table><tr><td></td><td>t</td></tr></table>"; - div.childNodes[ 0 ].style.borderCollapse = "separate"; - contents = div.getElementsByTagName( "td" ); - contents[ 0 ].style.cssText = "margin:0;border:0;padding:0;display:none"; - reliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0; - if ( reliableHiddenOffsetsVal ) { - contents[ 0 ].style.display = ""; - contents[ 1 ].style.display = "none"; - reliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0; - } - } - - // Teardown - documentElement.removeChild( container ); - } - -} )(); - - -var getStyles, curCSS, - rposition = /^(top|right|bottom|left)$/; - -if ( window.getComputedStyle ) { - getStyles = function( elem ) { - - // Support: IE<=11+, Firefox<=30+ (#15098, #14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } - - return view.getComputedStyle( elem ); - }; - - curCSS = function( elem, name, computed ) { - var width, minWidth, maxWidth, ret, - style = elem.style; - - computed = computed || getStyles( elem ); - - // getPropertyValue is only needed for .css('filter') in IE9, see #12537 - ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined; - - // Support: Opera 12.1x only - // Fall back to style even without computed - // computed is undefined for elems on document fragments - if ( ( ret === "" || ret === undefined ) && !jQuery.contains( elem.ownerDocument, elem ) ) { - ret = jQuery.style( elem, name ); - } - - if ( computed ) { - - // A tribute to the "awesome hack by Dean Edwards" - // Chrome < 17 and Safari 5.0 uses "computed value" - // instead of "used value" for margin-right - // Safari 5.1.7 (at least) returns percentage for a larger set of values, - // but width seems to be reliably pixels - // this is against the CSSOM draft spec: - // http://dev.w3.org/csswg/cssom/#resolved-values - if ( !support.pixelMarginRight() && rnumnonpx.test( ret ) && rmargin.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - // Support: IE - // IE returns zIndex value as an integer. - return ret === undefined ? - ret : - ret + ""; - }; -} else if ( documentElement.currentStyle ) { - getStyles = function( elem ) { - return elem.currentStyle; - }; - - curCSS = function( elem, name, computed ) { - var left, rs, rsLeft, ret, - style = elem.style; - - computed = computed || getStyles( elem ); - ret = computed ? computed[ name ] : undefined; - - // Avoid setting ret to empty string here - // so we don't default to auto - if ( ret == null && style && style[ name ] ) { - ret = style[ name ]; - } - - // From the awesome hack by Dean Edwards - // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 - - // If we're not dealing with a regular pixel number - // but a number that has a weird ending, we need to convert it to pixels - // but not position css attributes, as those are - // proportional to the parent element instead - // and we can't measure the parent instead because it - // might trigger a "stacking dolls" problem - if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { - - // Remember the original values - left = style.left; - rs = elem.runtimeStyle; - rsLeft = rs && rs.left; - - // Put in the new values to get a computed value out - if ( rsLeft ) { - rs.left = elem.currentStyle.left; - } - style.left = name === "fontSize" ? "1em" : ret; - ret = style.pixelLeft + "px"; - - // Revert the changed values - style.left = left; - if ( rsLeft ) { - rs.left = rsLeft; - } - } - - // Support: IE - // IE returns zIndex value as an integer. - return ret === undefined ? - ret : - ret + "" || "auto"; - }; -} - - - - -function addGetHookIf( conditionFn, hookFn ) { - - // Define the hook, we'll check on the first run if it's really needed. - return { - get: function() { - if ( conditionFn() ) { - - // Hook not needed (or it's not possible to use it due - // to missing dependency), remove it. - delete this.get; - return; - } - - // Hook needed; redefine it so that the support test is not executed again. - return ( this.get = hookFn ).apply( this, arguments ); - } - }; -} - - -var - - ralpha = /alpha\([^)]*\)/i, - ropacity = /opacity\s*=\s*([^)]*)/i, - - // swappable if display is none or starts with table except - // "table", "table-cell", or "table-caption" - // see here for display values: - // https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rnumsplit = new RegExp( "^(" + pnum + ")(.*)$", "i" ), - - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: "0", - fontWeight: "400" - }, - - cssPrefixes = [ "Webkit", "O", "Moz", "ms" ], - emptyStyle = document.createElement( "div" ).style; - - -// return a css property mapped to a potentially vendor prefixed property -function vendorPropName( name ) { - - // shortcut for names that are not vendor prefixed - if ( name in emptyStyle ) { - return name; - } - - // check for vendor prefixed names - var capName = name.charAt( 0 ).toUpperCase() + name.slice( 1 ), - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in emptyStyle ) { - return name; - } - } -} - -function showHide( elements, show ) { - var display, elem, hidden, - values = [], - index = 0, - length = elements.length; - - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - values[ index ] = jQuery._data( elem, "olddisplay" ); - display = elem.style.display; - if ( show ) { - - // Reset the inline display of this element to learn if it is - // being hidden by cascaded rules or not - if ( !values[ index ] && display === "none" ) { - elem.style.display = ""; - } - - // Set elements which have been overridden with display: none - // in a stylesheet to whatever the default browser style is - // for such an element - if ( elem.style.display === "" && isHidden( elem ) ) { - values[ index ] = - jQuery._data( elem, "olddisplay", defaultDisplay( elem.nodeName ) ); - } - } else { - hidden = isHidden( elem ); - - if ( display && display !== "none" || !hidden ) { - jQuery._data( - elem, - "olddisplay", - hidden ? display : jQuery.css( elem, "display" ) - ); - } - } - } - - // Set the display of most of the elements in a second loop - // to avoid the constant reflow - for ( index = 0; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - if ( !show || elem.style.display === "none" || elem.style.display === "" ) { - elem.style.display = show ? values[ index ] || "" : "none"; - } - } - - return elements; -} - -function setPositiveNumber( elem, value, subtract ) { - var matches = rnumsplit.exec( value ); - return matches ? - - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : - value; -} - -function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { - var i = extra === ( isBorderBox ? "border" : "content" ) ? - - // If we already have the right measurement, avoid augmentation - 4 : - - // Otherwise initialize for horizontal or vertical properties - name === "width" ? 1 : 0, - - val = 0; - - for ( ; i < 4; i += 2 ) { - - // both box models exclude margin, so add it if we want it - if ( extra === "margin" ) { - val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); - } - - if ( isBorderBox ) { - - // border-box includes padding, so remove it if we want content - if ( extra === "content" ) { - val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // at this point, extra isn't border nor margin, so remove border - if ( extra !== "margin" ) { - val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } else { - - // at this point, extra isn't content, so add padding - val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // at this point, extra isn't content nor padding, so add border - if ( extra !== "padding" ) { - val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - return val; -} - -function getWidthOrHeight( elem, name, extra ) { - - // Start with offset property, which is equivalent to the border-box value - var valueIsBorderBox = true, - val = name === "width" ? elem.offsetWidth : elem.offsetHeight, - styles = getStyles( elem ), - isBorderBox = support.boxSizing && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // some non-html elements return undefined for offsetWidth, so check for null/undefined - // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 - // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 - if ( val <= 0 || val == null ) { - - // Fall back to computed then uncomputed css if necessary - val = curCSS( elem, name, styles ); - if ( val < 0 || val == null ) { - val = elem.style[ name ]; - } - - // Computed unit is not pixels. Stop here and return. - if ( rnumnonpx.test( val ) ) { - return val; - } - - // we need the check for style in case a browser which returns unreliable values - // for getComputedStyle silently falls back to the reliable elem.style - valueIsBorderBox = isBorderBox && - ( support.boxSizingReliable() || val === elem.style[ name ] ); - - // Normalize "", auto, and prepare for extra - val = parseFloat( val ) || 0; - } - - // use the active box-sizing model to add/subtract irrelevant styles - return ( val + - augmentWidthOrHeight( - elem, - name, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles - ) - ) + "px"; -} - -jQuery.extend( { - - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "animationIterationCount": true, - "columnCount": true, - "fillOpacity": true, - "flexGrow": true, - "flexShrink": true, - "fontWeight": true, - "lineHeight": true, - "opacity": true, - "order": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: { - - // normalize float css property - "float": support.cssFloat ? "cssFloat" : "styleFloat" - }, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = jQuery.camelCase( name ), - style = elem.style; - - name = jQuery.cssProps[ origName ] || - ( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName ); - - // gets hook for the prefixed version - // followed by the unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // Convert "+=" or "-=" to relative numbers (#7345) - if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { - value = adjustCSS( elem, name, ret ); - - // Fixes bug #9237 - type = "number"; - } - - // Make sure that null and NaN values aren't set. See: #7116 - if ( value == null || value !== value ) { - return; - } - - // If a number was passed in, add the unit (except for certain CSS properties) - if ( type === "number" ) { - value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); - } - - // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, - // but it would mean to define eight - // (for every problematic property) identical functions - if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !( "set" in hooks ) || - ( value = hooks.set( elem, value, extra ) ) !== undefined ) { - - // Support: IE - // Swallow errors from 'invalid' CSS values (#5509) - try { - style[ name ] = value; - } catch ( e ) {} - } - - } else { - - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && - ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { - - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var num, val, hooks, - origName = jQuery.camelCase( name ); - - // Make sure that we're working with the right name - name = jQuery.cssProps[ origName ] || - ( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName ); - - // gets hook for the prefixed version - // followed by the unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - //convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Return, converting to number if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || isFinite( num ) ? num || 0 : val; - } - return val; - } -} ); - -jQuery.each( [ "height", "width" ], function( i, name ) { - jQuery.cssHooks[ name ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - - // certain elements can have dimension info if we invisibly show them - // however, it must have a current display style that would benefit from this - return rdisplayswap.test( jQuery.css( elem, "display" ) ) && - elem.offsetWidth === 0 ? - swap( elem, cssShow, function() { - return getWidthOrHeight( elem, name, extra ); - } ) : - getWidthOrHeight( elem, name, extra ); - } - }, - - set: function( elem, value, extra ) { - var styles = extra && getStyles( elem ); - return setPositiveNumber( elem, value, extra ? - augmentWidthOrHeight( - elem, - name, - extra, - support.boxSizing && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - styles - ) : 0 - ); - } - }; -} ); - -if ( !support.opacity ) { - jQuery.cssHooks.opacity = { - get: function( elem, computed ) { - - // IE uses filters for opacity - return ropacity.test( ( computed && elem.currentStyle ? - elem.currentStyle.filter : - elem.style.filter ) || "" ) ? - ( 0.01 * parseFloat( RegExp.$1 ) ) + "" : - computed ? "1" : ""; - }, - - set: function( elem, value ) { - var style = elem.style, - currentStyle = elem.currentStyle, - opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "", - filter = currentStyle && currentStyle.filter || style.filter || ""; - - // IE has trouble with opacity if it does not have layout - // Force it by setting the zoom level - style.zoom = 1; - - // if setting opacity to 1, and no other filters exist - - // attempt to remove filter attribute #6652 - // if value === "", then remove inline opacity #12685 - if ( ( value >= 1 || value === "" ) && - jQuery.trim( filter.replace( ralpha, "" ) ) === "" && - style.removeAttribute ) { - - // Setting style.filter to null, "" & " " still leave "filter:" in the cssText - // if "filter:" is present at all, clearType is disabled, we want to avoid this - // style.removeAttribute is IE Only, but so apparently is this code path... - style.removeAttribute( "filter" ); - - // if there is no filter style applied in a css rule - // or unset inline opacity, we are done - if ( value === "" || currentStyle && !currentStyle.filter ) { - return; - } - } - - // otherwise, set new filter values - style.filter = ralpha.test( filter ) ? - filter.replace( ralpha, opacity ) : - filter + " " + opacity; - } - }; -} - -jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight, - function( elem, computed ) { - if ( computed ) { - return swap( elem, { "display": "inline-block" }, - curCSS, [ elem, "marginRight" ] ); - } - } -); - -jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, - function( elem, computed ) { - if ( computed ) { - return ( - parseFloat( curCSS( elem, "marginLeft" ) ) || - - // Support: IE<=11+ - // Running getBoundingClientRect on a disconnected node in IE throws an error - // Support: IE8 only - // getClientRects() errors on disconnected elems - ( jQuery.contains( elem.ownerDocument, elem ) ? - elem.getBoundingClientRect().left - - swap( elem, { marginLeft: 0 }, function() { - return elem.getBoundingClientRect().left; - } ) : - 0 - ) - ) + "px"; - } - } -); - -// These hooks are used by animate to expand properties -jQuery.each( { - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i = 0, - expanded = {}, - - // assumes a single number if not a string - parts = typeof value === "string" ? value.split( " " ) : [ value ]; - - for ( ; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; - - if ( !rmargin.test( prefix ) ) { - jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; - } -} ); - -jQuery.fn.extend( { - css: function( name, value ) { - return access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( jQuery.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - }, - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHidden( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); - - -function Tween( elem, options, prop, end, easing ) { - return new Tween.prototype.init( elem, options, prop, end, easing ); -} -jQuery.Tween = Tween; - -Tween.prototype = { - constructor: Tween, - init: function( elem, options, prop, end, easing, unit ) { - this.elem = elem; - this.prop = prop; - this.easing = easing || jQuery.easing._default; - this.options = options; - this.start = this.now = this.cur(); - this.end = end; - this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); - }, - cur: function() { - var hooks = Tween.propHooks[ this.prop ]; - - return hooks && hooks.get ? - hooks.get( this ) : - Tween.propHooks._default.get( this ); - }, - run: function( percent ) { - var eased, - hooks = Tween.propHooks[ this.prop ]; - - if ( this.options.duration ) { - this.pos = eased = jQuery.easing[ this.easing ]( - percent, this.options.duration * percent, 0, 1, this.options.duration - ); - } else { - this.pos = eased = percent; - } - this.now = ( this.end - this.start ) * eased + this.start; - - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - if ( hooks && hooks.set ) { - hooks.set( this ); - } else { - Tween.propHooks._default.set( this ); - } - return this; - } -}; - -Tween.prototype.init.prototype = Tween.prototype; - -Tween.propHooks = { - _default: { - get: function( tween ) { - var result; - - // Use a property on the element directly when it is not a DOM element, - // or when there is no matching style property that exists. - if ( tween.elem.nodeType !== 1 || - tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { - return tween.elem[ tween.prop ]; - } - - // passing an empty string as a 3rd parameter to .css will automatically - // attempt a parseFloat and fallback to a string if the parse fails - // so, simple values such as "10px" are parsed to Float. - // complex values such as "rotate(1rad)" are returned as is. - result = jQuery.css( tween.elem, tween.prop, "" ); - - // Empty strings, null, undefined and "auto" are converted to 0. - return !result || result === "auto" ? 0 : result; - }, - set: function( tween ) { - - // use step hook for back compat - use cssHook if its there - use .style if its - // available and use plain properties where available - if ( jQuery.fx.step[ tween.prop ] ) { - jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.nodeType === 1 && - ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || - jQuery.cssHooks[ tween.prop ] ) ) { - jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); - } else { - tween.elem[ tween.prop ] = tween.now; - } - } - } -}; - -// Support: IE <=9 -// Panic based approach to setting things on disconnected nodes - -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { - set: function( tween ) { - if ( tween.elem.nodeType && tween.elem.parentNode ) { - tween.elem[ tween.prop ] = tween.now; - } - } -}; - -jQuery.easing = { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return 0.5 - Math.cos( p * Math.PI ) / 2; - }, - _default: "swing" -}; - -jQuery.fx = Tween.prototype.init; - -// Back Compat <1.8 extension point -jQuery.fx.step = {}; - - - - -var - fxNow, timerId, - rfxtypes = /^(?:toggle|show|hide)$/, - rrun = /queueHooks$/; - -// Animations created synchronously will run synchronously -function createFxNow() { - window.setTimeout( function() { - fxNow = undefined; - } ); - return ( fxNow = jQuery.now() ); -} - -// Generate parameters to create a standard animation -function genFx( type, includeWidth ) { - var which, - attrs = { height: type }, - i = 0; - - // if we include width, step value is 1 to do all cssExpand values, - // if we don't include width, step value is 2 to skip over Left and Right - includeWidth = includeWidth ? 1 : 0; - for ( ; i < 4 ; i += 2 - includeWidth ) { - which = cssExpand[ i ]; - attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; - } - - if ( includeWidth ) { - attrs.opacity = attrs.width = type; - } - - return attrs; -} - -function createTween( value, prop, animation ) { - var tween, - collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), - index = 0, - length = collection.length; - for ( ; index < length; index++ ) { - if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { - - // we're done with this property - return tween; - } - } -} - -function defaultPrefilter( elem, props, opts ) { - /* jshint validthis: true */ - var prop, value, toggle, tween, hooks, oldfire, display, checkDisplay, - anim = this, - orig = {}, - style = elem.style, - hidden = elem.nodeType && isHidden( elem ), - dataShow = jQuery._data( elem, "fxshow" ); - - // handle queue: false promises - if ( !opts.queue ) { - hooks = jQuery._queueHooks( elem, "fx" ); - if ( hooks.unqueued == null ) { - hooks.unqueued = 0; - oldfire = hooks.empty.fire; - hooks.empty.fire = function() { - if ( !hooks.unqueued ) { - oldfire(); - } - }; - } - hooks.unqueued++; - - anim.always( function() { - - // doing this makes sure that the complete handler will be called - // before this completes - anim.always( function() { - hooks.unqueued--; - if ( !jQuery.queue( elem, "fx" ).length ) { - hooks.empty.fire(); - } - } ); - } ); - } - - // height/width overflow pass - if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) { - - // Make sure that nothing sneaks out - // Record all 3 overflow attributes because IE does not - // change the overflow attribute when overflowX and - // overflowY are set to the same value - opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; - - // Set display property to inline-block for height/width - // animations on inline elements that are having width/height animated - display = jQuery.css( elem, "display" ); - - // Test default display if display is currently "none" - checkDisplay = display === "none" ? - jQuery._data( elem, "olddisplay" ) || defaultDisplay( elem.nodeName ) : display; - - if ( checkDisplay === "inline" && jQuery.css( elem, "float" ) === "none" ) { - - // inline-level elements accept inline-block; - // block-level elements need to be inline with layout - if ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === "inline" ) { - style.display = "inline-block"; - } else { - style.zoom = 1; - } - } - } - - if ( opts.overflow ) { - style.overflow = "hidden"; - if ( !support.shrinkWrapBlocks() ) { - anim.always( function() { - style.overflow = opts.overflow[ 0 ]; - style.overflowX = opts.overflow[ 1 ]; - style.overflowY = opts.overflow[ 2 ]; - } ); - } - } - - // show/hide pass - for ( prop in props ) { - value = props[ prop ]; - if ( rfxtypes.exec( value ) ) { - delete props[ prop ]; - toggle = toggle || value === "toggle"; - if ( value === ( hidden ? "hide" : "show" ) ) { - - // If there is dataShow left over from a stopped hide or show - // and we are going to proceed with show, we should pretend to be hidden - if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { - hidden = true; - } else { - continue; - } - } - orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); - - // Any non-fx value stops us from restoring the original display value - } else { - display = undefined; - } - } - - if ( !jQuery.isEmptyObject( orig ) ) { - if ( dataShow ) { - if ( "hidden" in dataShow ) { - hidden = dataShow.hidden; - } - } else { - dataShow = jQuery._data( elem, "fxshow", {} ); - } - - // store state if its toggle - enables .stop().toggle() to "reverse" - if ( toggle ) { - dataShow.hidden = !hidden; - } - if ( hidden ) { - jQuery( elem ).show(); - } else { - anim.done( function() { - jQuery( elem ).hide(); - } ); - } - anim.done( function() { - var prop; - jQuery._removeData( elem, "fxshow" ); - for ( prop in orig ) { - jQuery.style( elem, prop, orig[ prop ] ); - } - } ); - for ( prop in orig ) { - tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); - - if ( !( prop in dataShow ) ) { - dataShow[ prop ] = tween.start; - if ( hidden ) { - tween.end = tween.start; - tween.start = prop === "width" || prop === "height" ? 1 : 0; - } - } - } - - // If this is a noop like .hide().hide(), restore an overwritten display value - } else if ( ( display === "none" ? defaultDisplay( elem.nodeName ) : display ) === "inline" ) { - style.display = display; - } -} - -function propFilter( props, specialEasing ) { - var index, name, easing, value, hooks; - - // camelCase, specialEasing and expand cssHook pass - for ( index in props ) { - name = jQuery.camelCase( index ); - easing = specialEasing[ name ]; - value = props[ index ]; - if ( jQuery.isArray( value ) ) { - easing = value[ 1 ]; - value = props[ index ] = value[ 0 ]; - } - - if ( index !== name ) { - props[ name ] = value; - delete props[ index ]; - } - - hooks = jQuery.cssHooks[ name ]; - if ( hooks && "expand" in hooks ) { - value = hooks.expand( value ); - delete props[ name ]; - - // not quite $.extend, this wont overwrite keys already present. - // also - reusing 'index' from above because we have the correct "name" - for ( index in value ) { - if ( !( index in props ) ) { - props[ index ] = value[ index ]; - specialEasing[ index ] = easing; - } - } - } else { - specialEasing[ name ] = easing; - } - } -} - -function Animation( elem, properties, options ) { - var result, - stopped, - index = 0, - length = Animation.prefilters.length, - deferred = jQuery.Deferred().always( function() { - - // don't match elem in the :animated selector - delete tick.elem; - } ), - tick = function() { - if ( stopped ) { - return false; - } - var currentTime = fxNow || createFxNow(), - remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), - - // Support: Android 2.3 - // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) - temp = remaining / animation.duration || 0, - percent = 1 - temp, - index = 0, - length = animation.tweens.length; - - for ( ; index < length ; index++ ) { - animation.tweens[ index ].run( percent ); - } - - deferred.notifyWith( elem, [ animation, percent, remaining ] ); - - if ( percent < 1 && length ) { - return remaining; - } else { - deferred.resolveWith( elem, [ animation ] ); - return false; - } - }, - animation = deferred.promise( { - elem: elem, - props: jQuery.extend( {}, properties ), - opts: jQuery.extend( true, { - specialEasing: {}, - easing: jQuery.easing._default - }, options ), - originalProperties: properties, - originalOptions: options, - startTime: fxNow || createFxNow(), - duration: options.duration, - tweens: [], - createTween: function( prop, end ) { - var tween = jQuery.Tween( elem, animation.opts, prop, end, - animation.opts.specialEasing[ prop ] || animation.opts.easing ); - animation.tweens.push( tween ); - return tween; - }, - stop: function( gotoEnd ) { - var index = 0, - - // if we are going to the end, we want to run all the tweens - // otherwise we skip this part - length = gotoEnd ? animation.tweens.length : 0; - if ( stopped ) { - return this; - } - stopped = true; - for ( ; index < length ; index++ ) { - animation.tweens[ index ].run( 1 ); - } - - // resolve when we played the last frame - // otherwise, reject - if ( gotoEnd ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - deferred.resolveWith( elem, [ animation, gotoEnd ] ); - } else { - deferred.rejectWith( elem, [ animation, gotoEnd ] ); - } - return this; - } - } ), - props = animation.props; - - propFilter( props, animation.opts.specialEasing ); - - for ( ; index < length ; index++ ) { - result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); - if ( result ) { - if ( jQuery.isFunction( result.stop ) ) { - jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = - jQuery.proxy( result.stop, result ); - } - return result; - } - } - - jQuery.map( props, createTween, animation ); - - if ( jQuery.isFunction( animation.opts.start ) ) { - animation.opts.start.call( elem, animation ); - } - - jQuery.fx.timer( - jQuery.extend( tick, { - elem: elem, - anim: animation, - queue: animation.opts.queue - } ) - ); - - // attach callbacks from options - return animation.progress( animation.opts.progress ) - .done( animation.opts.done, animation.opts.complete ) - .fail( animation.opts.fail ) - .always( animation.opts.always ); -} - -jQuery.Animation = jQuery.extend( Animation, { - - tweeners: { - "*": [ function( prop, value ) { - var tween = this.createTween( prop, value ); - adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); - return tween; - } ] - }, - - tweener: function( props, callback ) { - if ( jQuery.isFunction( props ) ) { - callback = props; - props = [ "*" ]; - } else { - props = props.match( rnotwhite ); - } - - var prop, - index = 0, - length = props.length; - - for ( ; index < length ; index++ ) { - prop = props[ index ]; - Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; - Animation.tweeners[ prop ].unshift( callback ); - } - }, - - prefilters: [ defaultPrefilter ], - - prefilter: function( callback, prepend ) { - if ( prepend ) { - Animation.prefilters.unshift( callback ); - } else { - Animation.prefilters.push( callback ); - } - } -} ); - -jQuery.speed = function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - jQuery.isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing - }; - - opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration : - opt.duration in jQuery.fx.speeds ? - jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default; - - // normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function() { - if ( jQuery.isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } - }; - - return opt; -}; - -jQuery.fn.extend( { - fadeTo: function( speed, to, easing, callback ) { - - // show any hidden elements after setting opacity to 0 - return this.filter( isHidden ).css( "opacity", 0 ).show() - - // animate to the value specified - .end().animate( { opacity: to }, speed, easing, callback ); - }, - animate: function( prop, speed, easing, callback ) { - var empty = jQuery.isEmptyObject( prop ), - optall = jQuery.speed( speed, easing, callback ), - doAnimation = function() { - - // Operate on a copy of prop so per-property easing won't be lost - var anim = Animation( this, jQuery.extend( {}, prop ), optall ); - - // Empty animations, or finishing resolves immediately - if ( empty || jQuery._data( this, "finish" ) ) { - anim.stop( true ); - } - }; - doAnimation.finish = doAnimation; - - return empty || optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - stop: function( type, clearQueue, gotoEnd ) { - var stopQueue = function( hooks ) { - var stop = hooks.stop; - delete hooks.stop; - stop( gotoEnd ); - }; - - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue && type !== false ) { - this.queue( type || "fx", [] ); - } - - return this.each( function() { - var dequeue = true, - index = type != null && type + "queueHooks", - timers = jQuery.timers, - data = jQuery._data( this ); - - if ( index ) { - if ( data[ index ] && data[ index ].stop ) { - stopQueue( data[ index ] ); - } - } else { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { - stopQueue( data[ index ] ); - } - } - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && - ( type == null || timers[ index ].queue === type ) ) { - - timers[ index ].anim.stop( gotoEnd ); - dequeue = false; - timers.splice( index, 1 ); - } - } - - // start the next in the queue if the last step wasn't forced - // timers currently will call their complete callbacks, which will dequeue - // but only if they were gotoEnd - if ( dequeue || !gotoEnd ) { - jQuery.dequeue( this, type ); - } - } ); - }, - finish: function( type ) { - if ( type !== false ) { - type = type || "fx"; - } - return this.each( function() { - var index, - data = jQuery._data( this ), - queue = data[ type + "queue" ], - hooks = data[ type + "queueHooks" ], - timers = jQuery.timers, - length = queue ? queue.length : 0; - - // enable finishing flag on private data - data.finish = true; - - // empty the queue first - jQuery.queue( this, type, [] ); - - if ( hooks && hooks.stop ) { - hooks.stop.call( this, true ); - } - - // look for any active animations, and finish them - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && timers[ index ].queue === type ) { - timers[ index ].anim.stop( true ); - timers.splice( index, 1 ); - } - } - - // look for any animations in the old queue and finish them - for ( index = 0; index < length; index++ ) { - if ( queue[ index ] && queue[ index ].finish ) { - queue[ index ].finish.call( this ); - } - } - - // turn off finishing flag - delete data.finish; - } ); - } -} ); - -jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) { - var cssFn = jQuery.fn[ name ]; - jQuery.fn[ name ] = function( speed, easing, callback ) { - return speed == null || typeof speed === "boolean" ? - cssFn.apply( this, arguments ) : - this.animate( genFx( name, true ), speed, easing, callback ); - }; -} ); - -// Generate shortcuts for custom animations -jQuery.each( { - slideDown: genFx( "show" ), - slideUp: genFx( "hide" ), - slideToggle: genFx( "toggle" ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -} ); - -jQuery.timers = []; -jQuery.fx.tick = function() { - var timer, - timers = jQuery.timers, - i = 0; - - fxNow = jQuery.now(); - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - - // Checks the timer has not already been removed - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - fxNow = undefined; -}; - -jQuery.fx.timer = function( timer ) { - jQuery.timers.push( timer ); - if ( timer() ) { - jQuery.fx.start(); - } else { - jQuery.timers.pop(); - } -}; - -jQuery.fx.interval = 13; - -jQuery.fx.start = function() { - if ( !timerId ) { - timerId = window.setInterval( jQuery.fx.tick, jQuery.fx.interval ); - } -}; - -jQuery.fx.stop = function() { - window.clearInterval( timerId ); - timerId = null; -}; - -jQuery.fx.speeds = { - slow: 600, - fast: 200, - - // Default speed - _default: 400 -}; - - -// Based off of the plugin by Clint Helfers, with permission. -// http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ -jQuery.fn.delay = function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = window.setTimeout( next, time ); - hooks.stop = function() { - window.clearTimeout( timeout ); - }; - } ); -}; - - -( function() { - var a, - input = document.createElement( "input" ), - div = document.createElement( "div" ), - select = document.createElement( "select" ), - opt = select.appendChild( document.createElement( "option" ) ); - - // Setup - div = document.createElement( "div" ); - div.setAttribute( "className", "t" ); - div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"; - a = div.getElementsByTagName( "a" )[ 0 ]; - - // Support: Windows Web Apps (WWA) - // `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "checkbox" ); - div.appendChild( input ); - - a = div.getElementsByTagName( "a" )[ 0 ]; - - // First batch of tests. - a.style.cssText = "top:1px"; - - // Test setAttribute on camelCase class. - // If it works, we need attrFixes when doing get/setAttribute (ie6/7) - support.getSetAttribute = div.className !== "t"; - - // Get the style information from getAttribute - // (IE uses .cssText instead) - support.style = /top/.test( a.getAttribute( "style" ) ); - - // Make sure that URLs aren't manipulated - // (IE normalizes it by default) - support.hrefNormalized = a.getAttribute( "href" ) === "/a"; - - // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) - support.checkOn = !!input.value; - - // Make sure that a selected-by-default option has a working selected property. - // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) - support.optSelected = opt.selected; - - // Tests for enctype support on a form (#6743) - support.enctype = !!document.createElement( "form" ).enctype; - - // Make sure that the options inside disabled selects aren't marked as disabled - // (WebKit marks them as disabled) - select.disabled = true; - support.optDisabled = !opt.disabled; - - // Support: IE8 only - // Check if we can trust getAttribute("value") - input = document.createElement( "input" ); - input.setAttribute( "value", "" ); - support.input = input.getAttribute( "value" ) === ""; - - // Check if an input maintains its value after becoming a radio - input.value = "t"; - input.setAttribute( "type", "radio" ); - support.radioValue = input.value === "t"; -} )(); - - -var rreturn = /\r/g, - rspaces = /[\x20\t\r\n\f]+/g; - -jQuery.fn.extend( { - val: function( value ) { - var hooks, ret, isFunction, - elem = this[ 0 ]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || - jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( - hooks && - "get" in hooks && - ( ret = hooks.get( elem, "value" ) ) !== undefined - ) { - return ret; - } - - ret = elem.value; - - return typeof ret === "string" ? - - // handle most common string cases - ret.replace( rreturn, "" ) : - - // handle cases where value is null/undef or number - ret == null ? "" : ret; - } - - return; - } - - isFunction = jQuery.isFunction( value ); - - return this.each( function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( isFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - } else if ( typeof val === "number" ) { - val += ""; - } else if ( jQuery.isArray( val ) ) { - val = jQuery.map( val, function( value ) { - return value == null ? "" : value + ""; - } ); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - } ); - } -} ); - -jQuery.extend( { - valHooks: { - option: { - get: function( elem ) { - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - - // Support: IE10-11+ - // option.text throws exceptions (#14686, #14858) - // Strip and collapse whitespace - // https://html.spec.whatwg.org/#strip-and-collapse-whitespace - jQuery.trim( jQuery.text( elem ) ).replace( rspaces, " " ); - } - }, - select: { - get: function( elem ) { - var value, option, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one" || index < 0, - values = one ? null : [], - max = one ? index + 1 : options.length, - i = index < 0 ? - max : - one ? index : 0; - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // oldIE doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - - // Don't return options that are disabled or in a disabled optgroup - ( support.optDisabled ? - !option.disabled : - option.getAttribute( "disabled" ) === null ) && - ( !option.parentNode.disabled || - !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - - if ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 ) { - - // Support: IE6 - // When new option element is added to select box we need to - // force reflow of newly added node in order to workaround delay - // of initialization properties - try { - option.selected = optionSet = true; - - } catch ( _ ) { - - // Will be executed only in IE6 - option.scrollHeight; - } - - } else { - option.selected = false; - } - } - - // Force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - - return options; - } - } - } -} ); - -// Radios and checkboxes getter/setter -jQuery.each( [ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( jQuery.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); - } - } - }; - if ( !support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - return elem.getAttribute( "value" ) === null ? "on" : elem.value; - }; - } -} ); - - - - -var nodeHook, boolHook, - attrHandle = jQuery.expr.attrHandle, - ruseDefault = /^(?:checked|selected)$/i, - getSetAttribute = support.getSetAttribute, - getSetInput = support.input; - -jQuery.fn.extend( { - attr: function( name, value ) { - return access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each( function() { - jQuery.removeAttr( this, name ); - } ); - } -} ); - -jQuery.extend( { - attr: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set attributes on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - // All attributes are lowercase - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - name = name.toLowerCase(); - hooks = jQuery.attrHooks[ name ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook ); - } - - if ( value !== undefined ) { - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - } - - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - elem.setAttribute( name, value + "" ); - return value; - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? undefined : ret; - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !support.radioValue && value === "radio" && - jQuery.nodeName( elem, "input" ) ) { - - // Setting the type on a radio button after the value resets the value in IE8-9 - // Reset value to default in case type is set after value during creation - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - removeAttr: function( elem, value ) { - var name, propName, - i = 0, - attrNames = value && value.match( rnotwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( ( name = attrNames[ i++ ] ) ) { - propName = jQuery.propFix[ name ] || name; - - // Boolean attributes get special treatment (#10870) - if ( jQuery.expr.match.bool.test( name ) ) { - - // Set corresponding property to false - if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { - elem[ propName ] = false; - - // Support: IE<9 - // Also clear defaultChecked/defaultSelected (if appropriate) - } else { - elem[ jQuery.camelCase( "default-" + name ) ] = - elem[ propName ] = false; - } - - // See #9699 for explanation of this approach (setting first, then removal) - } else { - jQuery.attr( elem, name, "" ); - } - - elem.removeAttribute( getSetAttribute ? name : propName ); - } - } - } -} ); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { - - // IE<8 needs the *property* name - elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name ); - - } else { - - // Support: IE<9 - // Use defaultChecked and defaultSelected for oldIE - elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true; - } - return name; - } -}; - -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { - var getter = attrHandle[ name ] || jQuery.find.attr; - - if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { - attrHandle[ name ] = function( elem, name, isXML ) { - var ret, handle; - if ( !isXML ) { - - // Avoid an infinite loop by temporarily removing this function from the getter - handle = attrHandle[ name ]; - attrHandle[ name ] = ret; - ret = getter( elem, name, isXML ) != null ? - name.toLowerCase() : - null; - attrHandle[ name ] = handle; - } - return ret; - }; - } else { - attrHandle[ name ] = function( elem, name, isXML ) { - if ( !isXML ) { - return elem[ jQuery.camelCase( "default-" + name ) ] ? - name.toLowerCase() : - null; - } - }; - } -} ); - -// fix oldIE attroperties -if ( !getSetInput || !getSetAttribute ) { - jQuery.attrHooks.value = { - set: function( elem, value, name ) { - if ( jQuery.nodeName( elem, "input" ) ) { - - // Does not return so that setAttribute is also used - elem.defaultValue = value; - } else { - - // Use nodeHook if defined (#1954); otherwise setAttribute is fine - return nodeHook && nodeHook.set( elem, value, name ); - } - } - }; -} - -// IE6/7 do not support getting/setting some attributes with get/setAttribute -if ( !getSetAttribute ) { - - // Use this for any attribute in IE6/7 - // This fixes almost every IE6/7 issue - nodeHook = { - set: function( elem, value, name ) { - - // Set the existing or create a new attribute node - var ret = elem.getAttributeNode( name ); - if ( !ret ) { - elem.setAttributeNode( - ( ret = elem.ownerDocument.createAttribute( name ) ) - ); - } - - ret.value = value += ""; - - // Break association with cloned elements by also using setAttribute (#9646) - if ( name === "value" || value === elem.getAttribute( name ) ) { - return value; - } - } - }; - - // Some attributes are constructed with empty-string values when not defined - attrHandle.id = attrHandle.name = attrHandle.coords = - function( elem, name, isXML ) { - var ret; - if ( !isXML ) { - return ( ret = elem.getAttributeNode( name ) ) && ret.value !== "" ? - ret.value : - null; - } - }; - - // Fixing value retrieval on a button requires this module - jQuery.valHooks.button = { - get: function( elem, name ) { - var ret = elem.getAttributeNode( name ); - if ( ret && ret.specified ) { - return ret.value; - } - }, - set: nodeHook.set - }; - - // Set contenteditable to false on removals(#10429) - // Setting to empty string throws an error as an invalid value - jQuery.attrHooks.contenteditable = { - set: function( elem, value, name ) { - nodeHook.set( elem, value === "" ? false : value, name ); - } - }; - - // Set width and height to auto instead of 0 on empty string( Bug #8150 ) - // This is for removals - jQuery.each( [ "width", "height" ], function( i, name ) { - jQuery.attrHooks[ name ] = { - set: function( elem, value ) { - if ( value === "" ) { - elem.setAttribute( name, "auto" ); - return value; - } - } - }; - } ); -} - -if ( !support.style ) { - jQuery.attrHooks.style = { - get: function( elem ) { - - // Return undefined in the case of empty string - // Note: IE uppercases css property names, but if we were to .toLowerCase() - // .cssText, that would destroy case sensitivity in URL's, like in "background" - return elem.style.cssText || undefined; - }, - set: function( elem, value ) { - return ( elem.style.cssText = value + "" ); - } - }; -} - - - - -var rfocusable = /^(?:input|select|textarea|button|object)$/i, - rclickable = /^(?:a|area)$/i; - -jQuery.fn.extend( { - prop: function( name, value ) { - return access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - name = jQuery.propFix[ name ] || name; - return this.each( function() { - - // try/catch handles cases where IE balks (such as removing a property on window) - try { - this[ name ] = undefined; - delete this[ name ]; - } catch ( e ) {} - } ); - } -} ); - -jQuery.extend( { - prop: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set properties on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - return ( elem[ name ] = value ); - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - return elem[ name ]; - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - - // elem.tabIndex doesn't always return the - // correct value when it hasn't been explicitly set - // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - return tabindex ? - parseInt( tabindex, 10 ) : - rfocusable.test( elem.nodeName ) || - rclickable.test( elem.nodeName ) && elem.href ? - 0 : - -1; - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - } -} ); - -// Some attributes require a special call on IE -// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !support.hrefNormalized ) { - - // href/src property should get the full normalized URL (#10299/#12915) - jQuery.each( [ "href", "src" ], function( i, name ) { - jQuery.propHooks[ name ] = { - get: function( elem ) { - return elem.getAttribute( name, 4 ); - } - }; - } ); -} - -// Support: Safari, IE9+ -// Accessing the selectedIndex property -// forces the browser to respect setting selected -// on the option -// The getter ensures a default option is selected -// when in an optgroup -if ( !support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - var parent = elem.parentNode; - - if ( parent ) { - parent.selectedIndex; - - // Make sure that it also works with optgroups, see #5701 - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - return null; - }, - set: function( elem ) { - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - }; -} - -jQuery.each( [ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -} ); - -// IE6/7 call enctype encoding -if ( !support.enctype ) { - jQuery.propFix.enctype = "encoding"; -} - - - - -var rclass = /[\t\r\n\f]/g; - -function getClass( elem ) { - return jQuery.attr( elem, "class" ) || ""; -} - -jQuery.fn.extend( { - addClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( jQuery.isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( typeof value === "string" && value ) { - classes = value.match( rnotwhite ) || []; - - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - cur = elem.nodeType === 1 && - ( " " + curValue + " " ).replace( rclass, " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - - // only assign if different to avoid unneeded rendering. - finalValue = jQuery.trim( cur ); - if ( curValue !== finalValue ) { - jQuery.attr( elem, "class", finalValue ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( jQuery.isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( !arguments.length ) { - return this.attr( "class", "" ); - } - - if ( typeof value === "string" && value ) { - classes = value.match( rnotwhite ) || []; - - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && - ( " " + curValue + " " ).replace( rclass, " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) > -1 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = jQuery.trim( cur ); - if ( curValue !== finalValue ) { - jQuery.attr( elem, "class", finalValue ); - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value; - - if ( typeof stateVal === "boolean" && type === "string" ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - if ( jQuery.isFunction( value ) ) { - return this.each( function( i ) { - jQuery( this ).toggleClass( - value.call( this, i, getClass( this ), stateVal ), - stateVal - ); - } ); - } - - return this.each( function() { - var className, i, self, classNames; - - if ( type === "string" ) { - - // Toggle individual class names - i = 0; - self = jQuery( this ); - classNames = value.match( rnotwhite ) || []; - - while ( ( className = classNames[ i++ ] ) ) { - - // Check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( value === undefined || type === "boolean" ) { - className = getClass( this ); - if ( className ) { - - // store className if set - jQuery._data( this, "__className__", className ); - } - - // If the element has a class name or if we're passed "false", - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - jQuery.attr( this, "class", - className || value === false ? - "" : - jQuery._data( this, "__className__" ) || "" - ); - } - } ); - }, - - hasClass: function( selector ) { - var className, elem, - i = 0; - - className = " " + selector + " "; - while ( ( elem = this[ i++ ] ) ) { - if ( elem.nodeType === 1 && - ( " " + getClass( elem ) + " " ).replace( rclass, " " ) - .indexOf( className ) > -1 - ) { - return true; - } - } - - return false; - } -} ); - - - - -// Return jQuery for attributes-only inclusion - - -jQuery.each( ( "blur focus focusin focusout load resize scroll unload click dblclick " + - "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + - "change select submit keydown keypress keyup error contextmenu" ).split( " " ), - function( i, name ) { - - // Handle event binding - jQuery.fn[ name ] = function( data, fn ) { - return arguments.length > 0 ? - this.on( name, null, data, fn ) : - this.trigger( name ); - }; -} ); - -jQuery.fn.extend( { - hover: function( fnOver, fnOut ) { - return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); - } -} ); - - -var location = window.location; - -var nonce = jQuery.now(); - -var rquery = ( /\?/ ); - - - -var rvalidtokens = /(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g; - -jQuery.parseJSON = function( data ) { - - // Attempt to parse using the native JSON parser first - if ( window.JSON && window.JSON.parse ) { - - // Support: Android 2.3 - // Workaround failure to string-cast null input - return window.JSON.parse( data + "" ); - } - - var requireNonComma, - depth = null, - str = jQuery.trim( data + "" ); - - // Guard against invalid (and possibly dangerous) input by ensuring that nothing remains - // after removing valid tokens - return str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) { - - // Force termination if we see a misplaced comma - if ( requireNonComma && comma ) { - depth = 0; - } - - // Perform no more replacements after returning to outermost depth - if ( depth === 0 ) { - return token; - } - - // Commas must not follow "[", "{", or "," - requireNonComma = open || comma; - - // Determine new depth - // array/object open ("[" or "{"): depth += true - false (increment) - // array/object close ("]" or "}"): depth += false - true (decrement) - // other cases ("," or primitive): depth += true - true (numeric cast) - depth += !close - !open; - - // Remove this token - return ""; - } ) ) ? - ( Function( "return " + str ) )() : - jQuery.error( "Invalid JSON: " + data ); -}; - - -// Cross-browser xml parsing -jQuery.parseXML = function( data ) { - var xml, tmp; - if ( !data || typeof data !== "string" ) { - return null; - } - try { - if ( window.DOMParser ) { // Standard - tmp = new window.DOMParser(); - xml = tmp.parseFromString( data, "text/xml" ); - } else { // IE - xml = new window.ActiveXObject( "Microsoft.XMLDOM" ); - xml.async = "false"; - xml.loadXML( data ); - } - } catch ( e ) { - xml = undefined; - } - if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; -}; - - -var - rhash = /#.*$/, - rts = /([?&])_=[^&]*/, - - // IE leaves an \r character at EOL - rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, - - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - rurl = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = "*/".concat( "*" ), - - // Document location - ajaxLocation = location.href, - - // Segment location into parts - ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || []; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - var dataType, - i = 0, - dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || []; - - if ( jQuery.isFunction( func ) ) { - - // For each dataType in the dataTypeExpression - while ( ( dataType = dataTypes[ i++ ] ) ) { - - // Prepend if requested - if ( dataType.charAt( 0 ) === "+" ) { - dataType = dataType.slice( 1 ) || "*"; - ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); - - // Otherwise append - } else { - ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); - } - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { - - var inspected = {}, - seekingTransport = ( structure === transports ); - - function inspect( dataType ) { - var selected; - inspected[ dataType ] = true; - jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { - var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); - if ( typeof dataTypeOrTransport === "string" && - !seekingTransport && !inspected[ dataTypeOrTransport ] ) { - - options.dataTypes.unshift( dataTypeOrTransport ); - inspect( dataTypeOrTransport ); - return false; - } else if ( seekingTransport ) { - return !( selected = dataTypeOrTransport ); - } - } ); - return selected; - } - - return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var deep, key, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } - - return target; -} - -/* Handles responses to an ajax request: - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - var firstDataType, ct, finalDataType, type, - contents = s.contents, - dataTypes = s.dataTypes; - - // Remove auto dataType and get content-type in the process - while ( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -/* Chain conversions given the request and the original response - * Also sets the responseXXX fields on the jqXHR instance - */ -function ajaxConvert( s, response, jqXHR, isSuccess ) { - var conv2, current, conv, tmp, prev, - converters = {}, - - // Work with a copy of dataTypes in case we need to modify it for conversion - dataTypes = s.dataTypes.slice(); - - // Create converters map with lowercased keys - if ( dataTypes[ 1 ] ) { - for ( conv in s.converters ) { - converters[ conv.toLowerCase() ] = s.converters[ conv ]; - } - } - - current = dataTypes.shift(); - - // Convert to each sequential dataType - while ( current ) { - - if ( s.responseFields[ current ] ) { - jqXHR[ s.responseFields[ current ] ] = response; - } - - // Apply the dataFilter if provided - if ( !prev && isSuccess && s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - prev = current; - current = dataTypes.shift(); - - if ( current ) { - - // There's only work to do if current dataType is non-auto - if ( current === "*" ) { - - current = prev; - - // Convert response if prev dataType is non-auto and differs from current - } else if ( prev !== "*" && prev !== current ) { - - // Seek a direct converter - conv = converters[ prev + " " + current ] || converters[ "* " + current ]; - - // If none found, seek a pair - if ( !conv ) { - for ( conv2 in converters ) { - - // If conv2 outputs current - tmp = conv2.split( " " ); - if ( tmp[ 1 ] === current ) { - - // If prev can be converted to accepted input - conv = converters[ prev + " " + tmp[ 0 ] ] || - converters[ "* " + tmp[ 0 ] ]; - if ( conv ) { - - // Condense equivalence converters - if ( conv === true ) { - conv = converters[ conv2 ]; - - // Otherwise, insert the intermediate dataType - } else if ( converters[ conv2 ] !== true ) { - current = tmp[ 0 ]; - dataTypes.unshift( tmp[ 1 ] ); - } - break; - } - } - } - } - - // Apply converter (if not an equivalence) - if ( conv !== true ) { - - // Unless errors are allowed to bubble, catch and return them - if ( conv && s[ "throws" ] ) { // jscs:ignore requireDotNotation - response = conv( response ); - } else { - try { - response = conv( response ); - } catch ( e ) { - return { - state: "parsererror", - error: conv ? e : "No conversion from " + prev + " to " + current - }; - } - } - } - } - } - } - - return { state: "success", data: response }; -} - -jQuery.extend( { - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {}, - - ajaxSettings: { - url: ajaxLocation, - type: "GET", - isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ), - global: true, - processData: true, - async: true, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - throws: false, - traditional: false, - headers: {}, - */ - - accepts: { - "*": allTypes, - text: "text/plain", - html: "text/html", - xml: "application/xml, text/xml", - json: "application/json, text/javascript" - }, - - contents: { - xml: /\bxml\b/, - html: /\bhtml/, - json: /\bjson\b/ - }, - - responseFields: { - xml: "responseXML", - text: "responseText", - json: "responseJSON" - }, - - // Data converters - // Keys separate source (or catchall "*") and destination types with a single space - converters: { - - // Convert anything to text - "* text": String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": jQuery.parseJSON, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - url: true, - context: true - } - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - return settings ? - - // Building a settings object - ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : - - // Extending ajaxSettings - ajaxExtend( jQuery.ajaxSettings, target ); - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var - - // Cross-domain detection vars - parts, - - // Loop variable - i, - - // URL without anti-cache param - cacheURL, - - // Response headers as string - responseHeadersString, - - // timeout handle - timeoutTimer, - - // To know if global events are to be dispatched - fireGlobals, - - transport, - - // Response headers - responseHeaders, - - // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - - // Callbacks context - callbackContext = s.context || s, - - // Context for global events is callbackContext if it is a DOM node or jQuery collection - globalEventContext = s.context && - ( callbackContext.nodeType || callbackContext.jquery ) ? - jQuery( callbackContext ) : - jQuery.event, - - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - - // Status-dependent callbacks - statusCode = s.statusCode || {}, - - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - - // The jqXHR state - state = 0, - - // Default abort message - strAbort = "canceled", - - // Fake xhr - jqXHR = { - readyState: 0, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( state === 2 ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while ( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ]; - } - } - match = responseHeaders[ key.toLowerCase() ]; - } - return match == null ? null : match; - }, - - // Raw string - getAllResponseHeaders: function() { - return state === 2 ? responseHeadersString : null; - }, - - // Caches the header - setRequestHeader: function( name, value ) { - var lname = name.toLowerCase(); - if ( !state ) { - name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( !state ) { - s.mimeType = type; - } - return this; - }, - - // Status-dependent callbacks - statusCode: function( map ) { - var code; - if ( map ) { - if ( state < 2 ) { - for ( code in map ) { - - // Lazy-add the new callback in a way that preserves old ones - statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; - } - } else { - - // Execute the appropriate callbacks - jqXHR.always( map[ jqXHR.status ] ); - } - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - var finalText = statusText || strAbort; - if ( transport ) { - transport.abort( finalText ); - } - done( 0, finalText ); - return this; - } - }; - - // Attach deferreds - deferred.promise( jqXHR ).complete = completeDeferred.add; - jqXHR.success = jqXHR.done; - jqXHR.error = jqXHR.fail; - - // Remove hash character (#7531: and string promotion) - // Add protocol if not provided (#5866: IE7 issue with protocol-less urls) - // Handle falsy url in the settings object (#10093: consistency with old signature) - // We also use the url parameter if available - s.url = ( ( url || s.url || ajaxLocation ) + "" ) - .replace( rhash, "" ) - .replace( rprotocol, ajaxLocParts[ 1 ] + "//" ); - - // Alias method option to type as per ticket #12004 - s.type = options.method || options.type || s.method || s.type; - - // Extract dataTypes list - s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ]; - - // A cross-domain request is in order when we have a protocol:host:port mismatch - if ( s.crossDomain == null ) { - parts = rurl.exec( s.url.toLowerCase() ); - s.crossDomain = !!( parts && - ( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] || - ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? "80" : "443" ) ) !== - ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? "80" : "443" ) ) ) - ); - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( state === 2 ) { - return jqXHR; - } - - // We can fire global events as of now if asked to - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) - fireGlobals = jQuery.event && s.global; - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Save the URL in case we're toying with the If-Modified-Since - // and/or If-None-Match header later on - cacheURL = s.url; - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // If data is available, append data to url - if ( s.data ) { - cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data ); - - // #9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Add anti-cache in url if needed - if ( s.cache === false ) { - s.url = rts.test( cacheURL ) ? - - // If there is already a '_' parameter, set its value - cacheURL.replace( rts, "$1_=" + nonce++ ) : - - // Otherwise add one to the end - cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++; - } - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - if ( jQuery.lastModified[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); - } - if ( jQuery.etag[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? - s.accepts[ s.dataTypes[ 0 ] ] + - ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && - ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) { - - // Abort if not done already and return - return jqXHR.abort(); - } - - // aborting is no longer a cancellation - strAbort = "abort"; - - // Install callbacks on deferreds - for ( i in { success: 1, error: 1, complete: 1 } ) { - jqXHR[ i ]( s[ i ] ); - } - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - - // If request was aborted inside ajaxSend, stop there - if ( state === 2 ) { - return jqXHR; - } - - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = window.setTimeout( function() { - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - state = 1; - transport.send( requestHeaders, done ); - } catch ( e ) { - - // Propagate exception as error if not done - if ( state < 2 ) { - done( -1, e ); - - // Simply rethrow otherwise - } else { - throw e; - } - } - } - - // Callback for when everything is done - function done( status, nativeStatusText, responses, headers ) { - var isSuccess, success, error, response, modified, - statusText = nativeStatusText; - - // Called once - if ( state === 2 ) { - return; - } - - // State is "done" now - state = 2; - - // Clear timeout if it exists - if ( timeoutTimer ) { - window.clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - // Determine if successful - isSuccess = status >= 200 && status < 300 || status === 304; - - // Get response data - if ( responses ) { - response = ajaxHandleResponses( s, jqXHR, responses ); - } - - // Convert no matter what (that way responseXXX fields are always set) - response = ajaxConvert( s, response, jqXHR, isSuccess ); - - // If successful, handle type chaining - if ( isSuccess ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - modified = jqXHR.getResponseHeader( "Last-Modified" ); - if ( modified ) { - jQuery.lastModified[ cacheURL ] = modified; - } - modified = jqXHR.getResponseHeader( "etag" ); - if ( modified ) { - jQuery.etag[ cacheURL ] = modified; - } - } - - // if no content - if ( status === 204 || s.type === "HEAD" ) { - statusText = "nocontent"; - - // if not modified - } else if ( status === 304 ) { - statusText = "notmodified"; - - // If we have data, let's convert it - } else { - statusText = response.state; - success = response.data; - error = response.error; - isSuccess = !error; - } - } else { - - // We extract error from statusText - // then normalize statusText and status for non-aborts - error = statusText; - if ( status || !statusText ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = ( nativeStatusText || statusText ) + ""; - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - return jqXHR; - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - } -} ); - -jQuery.each( [ "get", "post" ], function( i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - - // shift arguments if data argument was omitted - if ( jQuery.isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - // The url can be an options object (which then must have .url) - return jQuery.ajax( jQuery.extend( { - url: url, - type: method, - dataType: type, - data: data, - success: callback - }, jQuery.isPlainObject( url ) && url ) ); - }; -} ); - - -jQuery._evalUrl = function( url ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (#11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - "throws": true - } ); -}; - - -jQuery.fn.extend( { - wrapAll: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapAll( html.call( this, i ) ); - } ); - } - - if ( this[ 0 ] ) { - - // The elements to wrap the target around - var wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); - - if ( this[ 0 ].parentNode ) { - wrap.insertBefore( this[ 0 ] ); - } - - wrap.map( function() { - var elem = this; - - while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { - elem = elem.firstChild; - } - - return elem; - } ).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapInner( html.call( this, i ) ); - } ); - } - - return this.each( function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - } ); - }, - - wrap: function( html ) { - var isFunction = jQuery.isFunction( html ); - - return this.each( function( i ) { - jQuery( this ).wrapAll( isFunction ? html.call( this, i ) : html ); - } ); - }, - - unwrap: function() { - return this.parent().each( function() { - if ( !jQuery.nodeName( this, "body" ) ) { - jQuery( this ).replaceWith( this.childNodes ); - } - } ).end(); - } -} ); - - -function getDisplay( elem ) { - return elem.style && elem.style.display || jQuery.css( elem, "display" ); -} - -function filterHidden( elem ) { - - // Disconnected elements are considered hidden - if ( !jQuery.contains( elem.ownerDocument || document, elem ) ) { - return true; - } - while ( elem && elem.nodeType === 1 ) { - if ( getDisplay( elem ) === "none" || elem.type === "hidden" ) { - return true; - } - elem = elem.parentNode; - } - return false; -} - -jQuery.expr.filters.hidden = function( elem ) { - - // Support: Opera <= 12.12 - // Opera reports offsetWidths and offsetHeights less than zero on some elements - return support.reliableHiddenOffsets() ? - ( elem.offsetWidth <= 0 && elem.offsetHeight <= 0 && - !elem.getClientRects().length ) : - filterHidden( elem ); -}; - -jQuery.expr.filters.visible = function( elem ) { - return !jQuery.expr.filters.hidden( elem ); -}; - - - - -var r20 = /%20/g, - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, - rsubmittable = /^(?:input|select|textarea|keygen)/i; - -function buildParams( prefix, obj, traditional, add ) { - var name; - - if ( jQuery.isArray( obj ) ) { - - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - - // Item is non-scalar (array or object), encode its numeric index. - buildParams( - prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", - v, - traditional, - add - ); - } - } ); - - } else if ( !traditional && jQuery.type( obj ) === "object" ) { - - // Serialize object item. - for ( name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - - // Serialize scalar item. - add( prefix, obj ); - } -} - -// Serialize an array of form elements or a set of -// key/values into a query string -jQuery.param = function( a, traditional ) { - var prefix, - s = [], - add = function( key, value ) { - - // If value is a function, invoke it and return its value - value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); - s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); - }; - - // Set traditional to true for jQuery <= 1.3.2 behavior. - if ( traditional === undefined ) { - traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional; - } - - // If an array was passed in, assume that it is an array of form elements. - if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - } ); - - } else { - - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ).replace( r20, "+" ); -}; - -jQuery.fn.extend( { - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - serializeArray: function() { - return this.map( function() { - - // Can add propHook for "elements" to filter or add form elements - var elements = jQuery.prop( this, "elements" ); - return elements ? jQuery.makeArray( elements ) : this; - } ) - .filter( function() { - var type = this.type; - - // Use .is(":disabled") so that fieldset[disabled] works - return this.name && !jQuery( this ).is( ":disabled" ) && - rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && - ( this.checked || !rcheckableType.test( type ) ); - } ) - .map( function( i, elem ) { - var val = jQuery( this ).val(); - - return val == null ? - null : - jQuery.isArray( val ) ? - jQuery.map( val, function( val ) { - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ) : - { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ).get(); - } -} ); - - -// Create the request object -// (This is still attached to ajaxSettings for backward compatibility) -jQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ? - - // Support: IE6-IE8 - function() { - - // XHR cannot access local files, always use ActiveX for that case - if ( this.isLocal ) { - return createActiveXHR(); - } - - // Support: IE 9-11 - // IE seems to error on cross-domain PATCH requests when ActiveX XHR - // is used. In IE 9+ always use the native XHR. - // Note: this condition won't catch Edge as it doesn't define - // document.documentMode but it also doesn't support ActiveX so it won't - // reach this code. - if ( document.documentMode > 8 ) { - return createStandardXHR(); - } - - // Support: IE<9 - // oldIE XHR does not support non-RFC2616 methods (#13240) - // See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx - // and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9 - // Although this check for six methods instead of eight - // since IE also does not support "trace" and "connect" - return /^(get|post|head|put|delete|options)$/i.test( this.type ) && - createStandardXHR() || createActiveXHR(); - } : - - // For all other browsers, use the standard XMLHttpRequest object - createStandardXHR; - -var xhrId = 0, - xhrCallbacks = {}, - xhrSupported = jQuery.ajaxSettings.xhr(); - -// Support: IE<10 -// Open requests must be manually aborted on unload (#5280) -// See https://support.microsoft.com/kb/2856746 for more info -if ( window.attachEvent ) { - window.attachEvent( "onunload", function() { - for ( var key in xhrCallbacks ) { - xhrCallbacks[ key ]( undefined, true ); - } - } ); -} - -// Determine support properties -support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); -xhrSupported = support.ajax = !!xhrSupported; - -// Create transport if the browser can provide an xhr -if ( xhrSupported ) { - - jQuery.ajaxTransport( function( options ) { - - // Cross domain only allowed if supported through XMLHttpRequest - if ( !options.crossDomain || support.cors ) { - - var callback; - - return { - send: function( headers, complete ) { - var i, - xhr = options.xhr(), - id = ++xhrId; - - // Open the socket - xhr.open( - options.type, - options.url, - options.async, - options.username, - options.password - ); - - // Apply custom fields if provided - if ( options.xhrFields ) { - for ( i in options.xhrFields ) { - xhr[ i ] = options.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( options.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( options.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Set headers - for ( i in headers ) { - - // Support: IE<9 - // IE's ActiveXObject throws a 'Type Mismatch' exception when setting - // request header to a null-value. - // - // To keep consistent with other XHR implementations, cast the value - // to string and ignore `undefined`. - if ( headers[ i ] !== undefined ) { - xhr.setRequestHeader( i, headers[ i ] + "" ); - } - } - - // Do send the request - // This may raise an exception which is actually - // handled in jQuery.ajax (so no try/catch here) - xhr.send( ( options.hasContent && options.data ) || null ); - - // Listener - callback = function( _, isAbort ) { - var status, statusText, responses; - - // Was never called and is aborted or complete - if ( callback && ( isAbort || xhr.readyState === 4 ) ) { - - // Clean up - delete xhrCallbacks[ id ]; - callback = undefined; - xhr.onreadystatechange = jQuery.noop; - - // Abort manually if needed - if ( isAbort ) { - if ( xhr.readyState !== 4 ) { - xhr.abort(); - } - } else { - responses = {}; - status = xhr.status; - - // Support: IE<10 - // Accessing binary-data responseText throws an exception - // (#11426) - if ( typeof xhr.responseText === "string" ) { - responses.text = xhr.responseText; - } - - // Firefox throws an exception when accessing - // statusText for faulty cross-domain requests - try { - statusText = xhr.statusText; - } catch ( e ) { - - // We normalize with Webkit giving an empty statusText - statusText = ""; - } - - // Filter status for non standard behaviors - - // If the request is local and we have data: assume a success - // (success with no data won't get notified, that's the best we - // can do given current implementations) - if ( !status && options.isLocal && !options.crossDomain ) { - status = responses.text ? 200 : 404; - - // IE - #1450: sometimes returns 1223 when it should be 204 - } else if ( status === 1223 ) { - status = 204; - } - } - } - - // Call complete if needed - if ( responses ) { - complete( status, statusText, responses, xhr.getAllResponseHeaders() ); - } - }; - - // Do send the request - // `xhr.send` may raise an exception, but it will be - // handled in jQuery.ajax (so no try/catch here) - if ( !options.async ) { - - // If we're in sync mode we fire the callback - callback(); - } else if ( xhr.readyState === 4 ) { - - // (IE6 & IE7) if it's in cache and has been - // retrieved directly we need to fire the callback - window.setTimeout( callback ); - } else { - - // Register the callback, but delay it in case `xhr.send` throws - // Add to the list of active xhr callbacks - xhr.onreadystatechange = xhrCallbacks[ id ] = callback; - } - }, - - abort: function() { - if ( callback ) { - callback( undefined, true ); - } - } - }; - } - } ); -} - -// Functions to create xhrs -function createStandardXHR() { - try { - return new window.XMLHttpRequest(); - } catch ( e ) {} -} - -function createActiveXHR() { - try { - return new window.ActiveXObject( "Microsoft.XMLHTTP" ); - } catch ( e ) {} -} - - - - -// Install script dataType -jQuery.ajaxSetup( { - accepts: { - script: "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -} ); - -// Handle cache's special case and global -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - s.global = false; - } -} ); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function( s ) { - - // This transport only deals with cross domain requests - if ( s.crossDomain ) { - - var script, - head = document.head || jQuery( "head" )[ 0 ] || document.documentElement; - - return { - - send: function( _, callback ) { - - script = document.createElement( "script" ); - - script.async = true; - - if ( s.scriptCharset ) { - script.charset = s.scriptCharset; - } - - script.src = s.url; - - // Attach handlers for all browsers - script.onload = script.onreadystatechange = function( _, isAbort ) { - - if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) { - - // Handle memory leak in IE - script.onload = script.onreadystatechange = null; - - // Remove the script - if ( script.parentNode ) { - script.parentNode.removeChild( script ); - } - - // Dereference the script - script = null; - - // Callback if not abort - if ( !isAbort ) { - callback( 200, "success" ); - } - } - }; - - // Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending - // Use native DOM manipulation to avoid our domManip AJAX trickery - head.insertBefore( script, head.firstChild ); - }, - - abort: function() { - if ( script ) { - script.onload( undefined, true ); - } - } - }; - } -} ); - - - - -var oldCallbacks = [], - rjsonp = /(=)\?(?=&|$)|\?\?/; - -// Default jsonp settings -jQuery.ajaxSetup( { - jsonp: "callback", - jsonpCallback: function() { - var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) ); - this[ callback ] = true; - return callback; - } -} ); - -// Detect, normalize options and install callbacks for jsonp requests -jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) { - - var callbackName, overwritten, responseContainer, - jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ? - "url" : - typeof s.data === "string" && - ( s.contentType || "" ) - .indexOf( "application/x-www-form-urlencoded" ) === 0 && - rjsonp.test( s.data ) && "data" - ); - - // Handle iff the expected data type is "jsonp" or we have a parameter to set - if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) { - - // Get callback name, remembering preexisting value associated with it - callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ? - s.jsonpCallback() : - s.jsonpCallback; - - // Insert callback into url or form data - if ( jsonProp ) { - s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName ); - } else if ( s.jsonp !== false ) { - s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName; - } - - // Use data converter to retrieve json after script execution - s.converters[ "script json" ] = function() { - if ( !responseContainer ) { - jQuery.error( callbackName + " was not called" ); - } - return responseContainer[ 0 ]; - }; - - // force json dataType - s.dataTypes[ 0 ] = "json"; - - // Install callback - overwritten = window[ callbackName ]; - window[ callbackName ] = function() { - responseContainer = arguments; - }; - - // Clean-up function (fires after converters) - jqXHR.always( function() { - - // If previous value didn't exist - remove it - if ( overwritten === undefined ) { - jQuery( window ).removeProp( callbackName ); - - // Otherwise restore preexisting value - } else { - window[ callbackName ] = overwritten; - } - - // Save back as free - if ( s[ callbackName ] ) { - - // make sure that re-using the options doesn't screw things around - s.jsonpCallback = originalSettings.jsonpCallback; - - // save the callback name for future use - oldCallbacks.push( callbackName ); - } - - // Call if it was a function and we have a response - if ( responseContainer && jQuery.isFunction( overwritten ) ) { - overwritten( responseContainer[ 0 ] ); - } - - responseContainer = overwritten = undefined; - } ); - - // Delegate to script - return "script"; - } -} ); - - - - -// data: string of html -// context (optional): If specified, the fragment will be created in this context, -// defaults to document -// keepScripts (optional): If true, will include scripts passed in the html string -jQuery.parseHTML = function( data, context, keepScripts ) { - if ( !data || typeof data !== "string" ) { - return null; - } - if ( typeof context === "boolean" ) { - keepScripts = context; - context = false; - } - context = context || document; - - var parsed = rsingleTag.exec( data ), - scripts = !keepScripts && []; - - // Single tag - if ( parsed ) { - return [ context.createElement( parsed[ 1 ] ) ]; - } - - parsed = buildFragment( [ data ], context, scripts ); - - if ( scripts && scripts.length ) { - jQuery( scripts ).remove(); - } - - return jQuery.merge( [], parsed.childNodes ); -}; - - -// Keep a copy of the old load method -var _load = jQuery.fn.load; - -/** - * Load a url into a page - */ -jQuery.fn.load = function( url, params, callback ) { - if ( typeof url !== "string" && _load ) { - return _load.apply( this, arguments ); - } - - var selector, type, response, - self = this, - off = url.indexOf( " " ); - - if ( off > -1 ) { - selector = jQuery.trim( url.slice( off, url.length ) ); - url = url.slice( 0, off ); - } - - // If it's a function - if ( jQuery.isFunction( params ) ) { - - // We assume that it's the callback - callback = params; - params = undefined; - - // Otherwise, build a param string - } else if ( params && typeof params === "object" ) { - type = "POST"; - } - - // If we have elements to modify, make the request - if ( self.length > 0 ) { - jQuery.ajax( { - url: url, - - // If "type" variable is undefined, then "GET" method will be used. - // Make value of this field explicit since - // user can override it through ajaxSetup method - type: type || "GET", - dataType: "html", - data: params - } ).done( function( responseText ) { - - // Save response for use in complete callback - response = arguments; - - self.html( selector ? - - // If a selector was specified, locate the right elements in a dummy div - // Exclude scripts to avoid IE 'Permission Denied' errors - jQuery( "<div>" ).append( jQuery.parseHTML( responseText ) ).find( selector ) : - - // Otherwise use the full result - responseText ); - - // If the request succeeds, this function gets "data", "status", "jqXHR" - // but they are ignored because response was set above. - // If it fails, this function gets "jqXHR", "status", "error" - } ).always( callback && function( jqXHR, status ) { - self.each( function() { - callback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] ); - } ); - } ); - } - - return this; -}; - - - - -// Attach a bunch of functions for handling common AJAX events -jQuery.each( [ - "ajaxStart", - "ajaxStop", - "ajaxComplete", - "ajaxError", - "ajaxSuccess", - "ajaxSend" -], function( i, type ) { - jQuery.fn[ type ] = function( fn ) { - return this.on( type, fn ); - }; -} ); - - - - -jQuery.expr.filters.animated = function( elem ) { - return jQuery.grep( jQuery.timers, function( fn ) { - return elem === fn.elem; - } ).length; -}; - - - - - -/** - * Gets a window from an element - */ -function getWindow( elem ) { - return jQuery.isWindow( elem ) ? - elem : - elem.nodeType === 9 ? - elem.defaultView || elem.parentWindow : - false; -} - -jQuery.offset = { - setOffset: function( elem, options, i ) { - var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition, - position = jQuery.css( elem, "position" ), - curElem = jQuery( elem ), - props = {}; - - // set position first, in-case top/left are set even on static elem - if ( position === "static" ) { - elem.style.position = "relative"; - } - - curOffset = curElem.offset(); - curCSSTop = jQuery.css( elem, "top" ); - curCSSLeft = jQuery.css( elem, "left" ); - calculatePosition = ( position === "absolute" || position === "fixed" ) && - jQuery.inArray( "auto", [ curCSSTop, curCSSLeft ] ) > -1; - - // need to be able to calculate position if either top or left - // is auto and position is either absolute or fixed - if ( calculatePosition ) { - curPosition = curElem.position(); - curTop = curPosition.top; - curLeft = curPosition.left; - } else { - curTop = parseFloat( curCSSTop ) || 0; - curLeft = parseFloat( curCSSLeft ) || 0; - } - - if ( jQuery.isFunction( options ) ) { - - // Use jQuery.extend here to allow modification of coordinates argument (gh-1848) - options = options.call( elem, i, jQuery.extend( {}, curOffset ) ); - } - - if ( options.top != null ) { - props.top = ( options.top - curOffset.top ) + curTop; - } - if ( options.left != null ) { - props.left = ( options.left - curOffset.left ) + curLeft; - } - - if ( "using" in options ) { - options.using.call( elem, props ); - } else { - curElem.css( props ); - } - } -}; - -jQuery.fn.extend( { - offset: function( options ) { - if ( arguments.length ) { - return options === undefined ? - this : - this.each( function( i ) { - jQuery.offset.setOffset( this, options, i ); - } ); - } - - var docElem, win, - box = { top: 0, left: 0 }, - elem = this[ 0 ], - doc = elem && elem.ownerDocument; - - if ( !doc ) { - return; - } - - docElem = doc.documentElement; - - // Make sure it's not a disconnected DOM node - if ( !jQuery.contains( docElem, elem ) ) { - return box; - } - - // If we don't have gBCR, just use 0,0 rather than error - // BlackBerry 5, iOS 3 (original iPhone) - if ( typeof elem.getBoundingClientRect !== "undefined" ) { - box = elem.getBoundingClientRect(); - } - win = getWindow( doc ); - return { - top: box.top + ( win.pageYOffset || docElem.scrollTop ) - ( docElem.clientTop || 0 ), - left: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 ) - }; - }, - - position: function() { - if ( !this[ 0 ] ) { - return; - } - - var offsetParent, offset, - parentOffset = { top: 0, left: 0 }, - elem = this[ 0 ]; - - // Fixed elements are offset from window (parentOffset = {top:0, left: 0}, - // because it is its only offset parent - if ( jQuery.css( elem, "position" ) === "fixed" ) { - - // we assume that getBoundingClientRect is available when computed position is fixed - offset = elem.getBoundingClientRect(); - } else { - - // Get *real* offsetParent - offsetParent = this.offsetParent(); - - // Get correct offsets - offset = this.offset(); - if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) { - parentOffset = offsetParent.offset(); - } - - // Add offsetParent borders - parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true ); - parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true ); - } - - // Subtract parent offsets and element margins - // note: when an element has margin: auto the offsetLeft and marginLeft - // are the same in Safari causing offset.left to incorrectly be 0 - return { - top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ), - left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true ) - }; - }, - - offsetParent: function() { - return this.map( function() { - var offsetParent = this.offsetParent; - - while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) && - jQuery.css( offsetParent, "position" ) === "static" ) ) { - offsetParent = offsetParent.offsetParent; - } - return offsetParent || documentElement; - } ); - } -} ); - -// Create scrollLeft and scrollTop methods -jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) { - var top = /Y/.test( prop ); - - jQuery.fn[ method ] = function( val ) { - return access( this, function( elem, method, val ) { - var win = getWindow( elem ); - - if ( val === undefined ) { - return win ? ( prop in win ) ? win[ prop ] : - win.document.documentElement[ method ] : - elem[ method ]; - } - - if ( win ) { - win.scrollTo( - !top ? val : jQuery( win ).scrollLeft(), - top ? val : jQuery( win ).scrollTop() - ); - - } else { - elem[ method ] = val; - } - }, method, val, arguments.length, null ); - }; -} ); - -// Support: Safari<7-8+, Chrome<37-44+ -// Add the top/left cssHooks using jQuery.fn.position -// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084 -// getComputedStyle returns percent when specified for top/left/bottom/right -// rather than make the css module depend on the offset module, we just check for it here -jQuery.each( [ "top", "left" ], function( i, prop ) { - jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition, - function( elem, computed ) { - if ( computed ) { - computed = curCSS( elem, prop ); - - // if curCSS returns percentage, fallback to offset - return rnumnonpx.test( computed ) ? - jQuery( elem ).position()[ prop ] + "px" : - computed; - } - } - ); -} ); - - -// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods -jQuery.each( { Height: "height", Width: "width" }, function( name, type ) { - jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, - function( defaultExtra, funcName ) { - - // margin is only for outerHeight, outerWidth - jQuery.fn[ funcName ] = function( margin, value ) { - var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ), - extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" ); - - return access( this, function( elem, type, value ) { - var doc; - - if ( jQuery.isWindow( elem ) ) { - - // As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there - // isn't a whole lot we can do. See pull request at this URL for discussion: - // https://github.com/jquery/jquery/pull/764 - return elem.document.documentElement[ "client" + name ]; - } - - // Get document width or height - if ( elem.nodeType === 9 ) { - doc = elem.documentElement; - - // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], - // whichever is greatest - // unfortunately, this causes bug #3838 in IE6/8 only, - // but there is currently no good, small way to fix it. - return Math.max( - elem.body[ "scroll" + name ], doc[ "scroll" + name ], - elem.body[ "offset" + name ], doc[ "offset" + name ], - doc[ "client" + name ] - ); - } - - return value === undefined ? - - // Get width or height on the element, requesting but not forcing parseFloat - jQuery.css( elem, type, extra ) : - - // Set width or height on the element - jQuery.style( elem, type, value, extra ); - }, type, chainable ? margin : undefined, chainable, null ); - }; - } ); -} ); - - -jQuery.fn.extend( { - - bind: function( types, data, fn ) { - return this.on( types, null, data, fn ); - }, - unbind: function( types, fn ) { - return this.off( types, null, fn ); - }, - - delegate: function( selector, types, data, fn ) { - return this.on( types, selector, data, fn ); - }, - undelegate: function( selector, types, fn ) { - - // ( namespace ) or ( selector, types [, fn] ) - return arguments.length === 1 ? - this.off( selector, "**" ) : - this.off( types, selector || "**", fn ); - } -} ); - -// The number of elements contained in the matched element set -jQuery.fn.size = function() { - return this.length; -}; - -jQuery.fn.andSelf = jQuery.fn.addBack; - - - - -// Register as a named AMD module, since jQuery can be concatenated with other -// files that may use define, but not via a proper concatenation script that -// understands anonymous AMD modules. A named AMD is safest and most robust -// way to register. Lowercase jquery is used because AMD module names are -// derived from file names, and jQuery is normally delivered in a lowercase -// file name. Do this after creating the global so that if an AMD module wants -// to call noConflict to hide this version of jQuery, it will work. - -// Note that for maximum portability, libraries that are not jQuery should -// declare themselves as anonymous modules, and avoid setting a global if an -// AMD loader is present. jQuery is a special case. For more information, see -// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon - -if ( typeof define === "function" && define.amd ) { - define( "jquery", [], function() { - return jQuery; - } ); -} - - - -var - - // Map over jQuery in case of overwrite - _jQuery = window.jQuery, - - // Map over the $ in case of overwrite - _$ = window.$; - -jQuery.noConflict = function( deep ) { - if ( window.$ === jQuery ) { - window.$ = _$; - } - - if ( deep && window.jQuery === jQuery ) { - window.jQuery = _jQuery; - } - - return jQuery; -}; - -// Expose jQuery and $ identifiers, even in -// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557) -// and CommonJS for browser emulators (#13566) -if ( !noGlobal ) { - window.jQuery = window.$ = jQuery; -} - -return jQuery; -})); diff --git a/libraries/jquery-ui/images/ui-icons_444444_256x240.png b/libraries/jquery-ui/images/ui-icons_444444_256x240.png old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/images/ui-icons_555555_256x240.png b/libraries/jquery-ui/images/ui-icons_555555_256x240.png old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/images/ui-icons_777620_256x240.png b/libraries/jquery-ui/images/ui-icons_777620_256x240.png old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/images/ui-icons_777777_256x240.png b/libraries/jquery-ui/images/ui-icons_777777_256x240.png old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/images/ui-icons_cc0000_256x240.png b/libraries/jquery-ui/images/ui-icons_cc0000_256x240.png old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/images/ui-icons_ffffff_256x240.png b/libraries/jquery-ui/images/ui-icons_ffffff_256x240.png old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/index.html b/libraries/jquery-ui/index.html deleted file mode 100755 index 1796b1cea18e10acc569dc2fb36796db878b8219..0000000000000000000000000000000000000000 --- a/libraries/jquery-ui/index.html +++ /dev/null @@ -1,559 +0,0 @@ -<!doctype html> -<html lang="us"> -<head> - <meta charset="utf-8"> - <title>jQuery UI Example Page</title> - <link href="jquery-ui.css" rel="stylesheet"> - <style> - body{ - font-family: "Trebuchet MS", sans-serif; - margin: 50px; - } - .demoHeaders { - margin-top: 2em; - } - #dialog-link { - padding: .4em 1em .4em 20px; - text-decoration: none; - position: relative; - } - #dialog-link span.ui-icon { - margin: 0 5px 0 0; - position: absolute; - left: .2em; - top: 50%; - margin-top: -8px; - } - #icons { - margin: 0; - padding: 0; - } - #icons li { - margin: 2px; - position: relative; - padding: 4px 0; - cursor: pointer; - float: left; - list-style: none; - } - #icons span.ui-icon { - float: left; - margin: 0 4px; - } - .fakewindowcontain .ui-widget-overlay { - position: absolute; - } - select { - width: 200px; - } - </style> -</head> -<body> - -<h1>Welcome to jQuery UI!</h1> - -<div class="ui-widget"> - <p>This page demonstrates the widgets and theme you selected in Download Builder. Please make sure you are using them with a compatible jQuery version.</p> -</div> - -<h1>YOUR COMPONENTS:</h1> - - -<!-- Accordion --> -<h2 class="demoHeaders">Accordion</h2> -<div id="accordion"> - <h3>First</h3> - <div>Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet.</div> - <h3>Second</h3> - <div>Phasellus mattis tincidunt nibh.</div> - <h3>Third</h3> - <div>Nam dui erat, auctor a, dignissim quis.</div> -</div> - - - -<!-- Autocomplete --> -<h2 class="demoHeaders">Autocomplete</h2> -<div> - <input id="autocomplete" title="type "a""> -</div> - - - -<!-- Button --> -<h2 class="demoHeaders">Button</h2> -<button id="button">A button element</button> -<button id="button-icon">An icon-only button</button> - - - -<!-- Checkboxradio --> -<h2 class="demoHeaders">Checkboxradio</h2> -<form style="margin-top: 1em;"> - <div id="radioset"> - <input type="radio" id="radio1" name="radio"><label for="radio1">Choice 1</label> - <input type="radio" id="radio2" name="radio" checked="checked"><label for="radio2">Choice 2</label> - <input type="radio" id="radio3" name="radio"><label for="radio3">Choice 3</label> - </div> -</form> - - - -<!-- Controlgroup --> -<h2 class="demoHeaders">Controlgroup</h2> -<fieldset> - <legend>Rental Car</legend> - <div id="controlgroup"> - <select id="car-type"> - <option>Compact car</option> - <option>Midsize car</option> - <option>Full size car</option> - <option>SUV</option> - <option>Luxury</option> - <option>Truck</option> - <option>Van</option> - </select> - <label for="transmission-standard">Standard</label> - <input type="radio" name="transmission" id="transmission-standard"> - <label for="transmission-automatic">Automatic</label> - <input type="radio" name="transmission" id="transmission-automatic"> - <label for="insurance">Insurance</label> - <input type="checkbox" name="insurance" id="insurance"> - <label for="horizontal-spinner" class="ui-controlgroup-label"># of cars</label> - <input id="horizontal-spinner" class="ui-spinner-input"> - <button>Book Now!</button> - </div> -</fieldset> - - - -<!-- Tabs --> -<h2 class="demoHeaders">Tabs</h2> -<div id="tabs"> - <ul> - <li><a href="#tabs-1">First</a></li> - <li><a href="#tabs-2">Second</a></li> - <li><a href="#tabs-3">Third</a></li> - </ul> - <div id="tabs-1">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</div> - <div id="tabs-2">Phasellus mattis tincidunt nibh. Cras orci urna, blandit id, pretium vel, aliquet ornare, felis. Maecenas scelerisque sem non nisl. Fusce sed lorem in enim dictum bibendum.</div> - <div id="tabs-3">Nam dui erat, auctor a, dignissim quis, sollicitudin eu, felis. Pellentesque nisi urna, interdum eget, sagittis et, consequat vestibulum, lacus. Mauris porttitor ullamcorper augue.</div> -</div> - - - -<h2 class="demoHeaders">Dialog</h2> -<p> - <button id="dialog-link" class="ui-button ui-corner-all ui-widget"> - <span class="ui-icon ui-icon-newwin"></span>Open Dialog - </button> -</p> - -<h2 class="demoHeaders">Overlay and Shadow Classes</h2> -<div style="position: relative; width: 96%; height: 200px; padding:1% 2%; overflow:hidden;" class="fakewindowcontain"> - <p>Lorem ipsum dolor sit amet, Nulla nec tortor. Donec id elit quis purus consectetur consequat. </p><p>Nam congue semper tellus. Sed erat dolor, dapibus sit amet, venenatis ornare, ultrices ut, nisi. Aliquam ante. Suspendisse scelerisque dui nec velit. Duis augue augue, gravida euismod, vulputate ac, facilisis id, sem. Morbi in orci. </p><p>Nulla purus lacus, pulvinar vel, malesuada ac, mattis nec, quam. Nam molestie scelerisque quam. Nullam feugiat cursus lacus.orem ipsum dolor sit amet, consectetur adipiscing elit. Donec libero risus, commodo vitae, pharetra mollis, posuere eu, pede. Nulla nec tortor. Donec id elit quis purus consectetur consequat. </p><p>Nam congue semper tellus. Sed erat dolor, dapibus sit amet, venenatis ornare, ultrices ut, nisi. Aliquam ante. Suspendisse scelerisque dui nec velit. Duis augue augue, gravida euismod, vulputate ac, facilisis id, sem. Morbi in orci. Nulla purus lacus, pulvinar vel, malesuada ac, mattis nec, quam. Nam molestie scelerisque quam. </p><p>Nullam feugiat cursus lacus.orem ipsum dolor sit amet, consectetur adipiscing elit. Donec libero risus, commodo vitae, pharetra mollis, posuere eu, pede. Nulla nec tortor. Donec id elit quis purus consectetur consequat. Nam congue semper tellus. Sed erat dolor, dapibus sit amet, venenatis ornare, ultrices ut, nisi. Aliquam ante. </p><p>Suspendisse scelerisque dui nec velit. Duis augue augue, gravida euismod, vulputate ac, facilisis id, sem. Morbi in orci. Nulla purus lacus, pulvinar vel, malesuada ac, mattis nec, quam. Nam molestie scelerisque quam. Nullam feugiat cursus lacus.orem ipsum dolor sit amet, consectetur adipiscing elit. Donec libero risus, commodo vitae, pharetra mollis, posuere eu, pede. Nulla nec tortor. Donec id elit quis purus consectetur consequat. Nam congue semper tellus. Sed erat dolor, dapibus sit amet, venenatis ornare, ultrices ut, nisi. </p> - - <!-- ui-dialog --> - <div class="ui-widget-overlay ui-front"></div> - <div style="position: absolute; width: 320px; left: 50px; top: 30px; padding: 1.2em" class="ui-widget ui-front ui-widget-content ui-corner-all ui-widget-shadow"> - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. - </div> - -</div> - -<!-- ui-dialog --> -<div id="dialog" title="Dialog Title"> - <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> -</div> - - - -<h2 class="demoHeaders">Framework Icons (content color preview)</h2> -<ul id="icons" class="ui-widget ui-helper-clearfix"> - <li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-n"><span class="ui-icon ui-icon-caret-1-n"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-ne"><span class="ui-icon ui-icon-caret-1-ne"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-e"><span class="ui-icon ui-icon-caret-1-e"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-se"><span class="ui-icon ui-icon-caret-1-se"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-s"><span class="ui-icon ui-icon-caret-1-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-sw"><span class="ui-icon ui-icon-caret-1-sw"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-w"><span class="ui-icon ui-icon-caret-1-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-nw"><span class="ui-icon ui-icon-caret-1-nw"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-caret-2-n-s"><span class="ui-icon ui-icon-caret-2-n-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-caret-2-e-w"><span class="ui-icon ui-icon-caret-2-e-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-n"><span class="ui-icon ui-icon-triangle-1-n"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-ne"><span class="ui-icon ui-icon-triangle-1-ne"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-e"><span class="ui-icon ui-icon-triangle-1-e"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-se"><span class="ui-icon ui-icon-triangle-1-se"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-s"><span class="ui-icon ui-icon-triangle-1-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-sw"><span class="ui-icon ui-icon-triangle-1-sw"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-w"><span class="ui-icon ui-icon-triangle-1-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-nw"><span class="ui-icon ui-icon-triangle-1-nw"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-2-n-s"><span class="ui-icon ui-icon-triangle-2-n-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-2-e-w"><span class="ui-icon ui-icon-triangle-2-e-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-n"><span class="ui-icon ui-icon-arrow-1-n"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-ne"><span class="ui-icon ui-icon-arrow-1-ne"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-e"><span class="ui-icon ui-icon-arrow-1-e"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-se"><span class="ui-icon ui-icon-arrow-1-se"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-s"><span class="ui-icon ui-icon-arrow-1-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-sw"><span class="ui-icon ui-icon-arrow-1-sw"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-w"><span class="ui-icon ui-icon-arrow-1-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-nw"><span class="ui-icon ui-icon-arrow-1-nw"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-2-n-s"><span class="ui-icon ui-icon-arrow-2-n-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-2-ne-sw"><span class="ui-icon ui-icon-arrow-2-ne-sw"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-2-e-w"><span class="ui-icon ui-icon-arrow-2-e-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-2-se-nw"><span class="ui-icon ui-icon-arrow-2-se-nw"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowstop-1-n"><span class="ui-icon ui-icon-arrowstop-1-n"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowstop-1-e"><span class="ui-icon ui-icon-arrowstop-1-e"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowstop-1-s"><span class="ui-icon ui-icon-arrowstop-1-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowstop-1-w"><span class="ui-icon ui-icon-arrowstop-1-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-n"><span class="ui-icon ui-icon-arrowthick-1-n"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-ne"><span class="ui-icon ui-icon-arrowthick-1-ne"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-e"><span class="ui-icon ui-icon-arrowthick-1-e"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-se"><span class="ui-icon ui-icon-arrowthick-1-se"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-s"><span class="ui-icon ui-icon-arrowthick-1-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-sw"><span class="ui-icon ui-icon-arrowthick-1-sw"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-w"><span class="ui-icon ui-icon-arrowthick-1-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-nw"><span class="ui-icon ui-icon-arrowthick-1-nw"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-2-n-s"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-2-ne-sw"><span class="ui-icon ui-icon-arrowthick-2-ne-sw"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-2-e-w"><span class="ui-icon ui-icon-arrowthick-2-e-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-2-se-nw"><span class="ui-icon ui-icon-arrowthick-2-se-nw"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthickstop-1-n"><span class="ui-icon ui-icon-arrowthickstop-1-n"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthickstop-1-e"><span class="ui-icon ui-icon-arrowthickstop-1-e"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthickstop-1-s"><span class="ui-icon ui-icon-arrowthickstop-1-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthickstop-1-w"><span class="ui-icon ui-icon-arrowthickstop-1-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturnthick-1-w"><span class="ui-icon ui-icon-arrowreturnthick-1-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturnthick-1-n"><span class="ui-icon ui-icon-arrowreturnthick-1-n"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturnthick-1-e"><span class="ui-icon ui-icon-arrowreturnthick-1-e"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturnthick-1-s"><span class="ui-icon ui-icon-arrowreturnthick-1-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturn-1-w"><span class="ui-icon ui-icon-arrowreturn-1-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturn-1-n"><span class="ui-icon ui-icon-arrowreturn-1-n"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturn-1-e"><span class="ui-icon ui-icon-arrowreturn-1-e"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturn-1-s"><span class="ui-icon ui-icon-arrowreturn-1-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowrefresh-1-w"><span class="ui-icon ui-icon-arrowrefresh-1-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowrefresh-1-n"><span class="ui-icon ui-icon-arrowrefresh-1-n"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowrefresh-1-e"><span class="ui-icon ui-icon-arrowrefresh-1-e"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrowrefresh-1-s"><span class="ui-icon ui-icon-arrowrefresh-1-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-4"><span class="ui-icon ui-icon-arrow-4"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-4-diag"><span class="ui-icon ui-icon-arrow-4-diag"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-extlink"><span class="ui-icon ui-icon-extlink"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-newwin"><span class="ui-icon ui-icon-newwin"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-refresh"><span class="ui-icon ui-icon-refresh"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-shuffle"><span class="ui-icon ui-icon-shuffle"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-transfer-e-w"><span class="ui-icon ui-icon-transfer-e-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-transferthick-e-w"><span class="ui-icon ui-icon-transferthick-e-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-folder-collapsed"><span class="ui-icon ui-icon-folder-collapsed"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-folder-open"><span class="ui-icon ui-icon-folder-open"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-document"><span class="ui-icon ui-icon-document"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-document-b"><span class="ui-icon ui-icon-document-b"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-note"><span class="ui-icon ui-icon-note"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-mail-closed"><span class="ui-icon ui-icon-mail-closed"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-mail-open"><span class="ui-icon ui-icon-mail-open"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-suitcase"><span class="ui-icon ui-icon-suitcase"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-comment"><span class="ui-icon ui-icon-comment"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-person"><span class="ui-icon ui-icon-person"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-print"><span class="ui-icon ui-icon-print"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-trash"><span class="ui-icon ui-icon-trash"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-locked"><span class="ui-icon ui-icon-locked"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-unlocked"><span class="ui-icon ui-icon-unlocked"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-bookmark"><span class="ui-icon ui-icon-bookmark"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-tag"><span class="ui-icon ui-icon-tag"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-home"><span class="ui-icon ui-icon-home"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-flag"><span class="ui-icon ui-icon-flag"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-calculator"><span class="ui-icon ui-icon-calculator"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-cart"><span class="ui-icon ui-icon-cart"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-pencil"><span class="ui-icon ui-icon-pencil"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-clock"><span class="ui-icon ui-icon-clock"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-disk"><span class="ui-icon ui-icon-disk"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-calendar"><span class="ui-icon ui-icon-calendar"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-zoomin"><span class="ui-icon ui-icon-zoomin"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-zoomout"><span class="ui-icon ui-icon-zoomout"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-search"><span class="ui-icon ui-icon-search"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-wrench"><span class="ui-icon ui-icon-wrench"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-gear"><span class="ui-icon ui-icon-gear"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-heart"><span class="ui-icon ui-icon-heart"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-star"><span class="ui-icon ui-icon-star"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-link"><span class="ui-icon ui-icon-link"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-cancel"><span class="ui-icon ui-icon-cancel"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-plus"><span class="ui-icon ui-icon-plus"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-plusthick"><span class="ui-icon ui-icon-plusthick"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-minus"><span class="ui-icon ui-icon-minus"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-minusthick"><span class="ui-icon ui-icon-minusthick"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-close"><span class="ui-icon ui-icon-close"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-closethick"><span class="ui-icon ui-icon-closethick"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-key"><span class="ui-icon ui-icon-key"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-lightbulb"><span class="ui-icon ui-icon-lightbulb"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-scissors"><span class="ui-icon ui-icon-scissors"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-clipboard"><span class="ui-icon ui-icon-clipboard"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-copy"><span class="ui-icon ui-icon-copy"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-contact"><span class="ui-icon ui-icon-contact"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-image"><span class="ui-icon ui-icon-image"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-video"><span class="ui-icon ui-icon-video"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-script"><span class="ui-icon ui-icon-script"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-alert"><span class="ui-icon ui-icon-alert"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-info"><span class="ui-icon ui-icon-info"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-notice"><span class="ui-icon ui-icon-notice"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-help"><span class="ui-icon ui-icon-help"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-check"><span class="ui-icon ui-icon-check"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-bullet"><span class="ui-icon ui-icon-bullet"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-radio-off"><span class="ui-icon ui-icon-radio-off"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-radio-on"><span class="ui-icon ui-icon-radio-on"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-pin-w"><span class="ui-icon ui-icon-pin-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-pin-s"><span class="ui-icon ui-icon-pin-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-play"><span class="ui-icon ui-icon-play"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-pause"><span class="ui-icon ui-icon-pause"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-seek-next"><span class="ui-icon ui-icon-seek-next"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-seek-prev"><span class="ui-icon ui-icon-seek-prev"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-seek-end"><span class="ui-icon ui-icon-seek-end"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-seek-first"><span class="ui-icon ui-icon-seek-first"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-stop"><span class="ui-icon ui-icon-stop"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-eject"><span class="ui-icon ui-icon-eject"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-volume-off"><span class="ui-icon ui-icon-volume-off"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-volume-on"><span class="ui-icon ui-icon-volume-on"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-power"><span class="ui-icon ui-icon-power"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-signal-diag"><span class="ui-icon ui-icon-signal-diag"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-signal"><span class="ui-icon ui-icon-signal"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-battery-0"><span class="ui-icon ui-icon-battery-0"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-battery-1"><span class="ui-icon ui-icon-battery-1"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-battery-2"><span class="ui-icon ui-icon-battery-2"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-battery-3"><span class="ui-icon ui-icon-battery-3"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circle-plus"><span class="ui-icon ui-icon-circle-plus"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circle-minus"><span class="ui-icon ui-icon-circle-minus"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circle-close"><span class="ui-icon ui-icon-circle-close"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circle-triangle-e"><span class="ui-icon ui-icon-circle-triangle-e"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circle-triangle-s"><span class="ui-icon ui-icon-circle-triangle-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circle-triangle-w"><span class="ui-icon ui-icon-circle-triangle-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circle-triangle-n"><span class="ui-icon ui-icon-circle-triangle-n"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circle-arrow-e"><span class="ui-icon ui-icon-circle-arrow-e"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circle-arrow-s"><span class="ui-icon ui-icon-circle-arrow-s"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circle-arrow-w"><span class="ui-icon ui-icon-circle-arrow-w"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circle-arrow-n"><span class="ui-icon ui-icon-circle-arrow-n"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circle-zoomin"><span class="ui-icon ui-icon-circle-zoomin"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circle-zoomout"><span class="ui-icon ui-icon-circle-zoomout"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circle-check"><span class="ui-icon ui-icon-circle-check"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circlesmall-plus"><span class="ui-icon ui-icon-circlesmall-plus"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circlesmall-minus"><span class="ui-icon ui-icon-circlesmall-minus"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-circlesmall-close"><span class="ui-icon ui-icon-circlesmall-close"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-squaresmall-plus"><span class="ui-icon ui-icon-squaresmall-plus"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-squaresmall-minus"><span class="ui-icon ui-icon-squaresmall-minus"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-squaresmall-close"><span class="ui-icon ui-icon-squaresmall-close"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-grip-dotted-vertical"><span class="ui-icon ui-icon-grip-dotted-vertical"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-grip-dotted-horizontal"><span class="ui-icon ui-icon-grip-dotted-horizontal"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-grip-solid-vertical"><span class="ui-icon ui-icon-grip-solid-vertical"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-grip-solid-horizontal"><span class="ui-icon ui-icon-grip-solid-horizontal"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-gripsmall-diagonal-se"><span class="ui-icon ui-icon-gripsmall-diagonal-se"></span></li> - <li class="ui-state-default ui-corner-all" title=".ui-icon-grip-diagonal-se"><span class="ui-icon ui-icon-grip-diagonal-se"></span></li> -</ul> - - -<!-- Slider --> -<h2 class="demoHeaders">Slider</h2> -<div id="slider"></div> - - - -<!-- Datepicker --> -<h2 class="demoHeaders">Datepicker</h2> -<div id="datepicker"></div> - - - -<!-- Progressbar --> -<h2 class="demoHeaders">Progressbar</h2> -<div id="progressbar"></div> - - - -<!-- Progressbar --> -<h2 class="demoHeaders">Selectmenu</h2> -<select id="selectmenu"> - <option>Slower</option> - <option>Slow</option> - <option selected="selected">Medium</option> - <option>Fast</option> - <option>Faster</option> -</select> - - - -<!-- Spinner --> -<h2 class="demoHeaders">Spinner</h2> -<input id="spinner"> - - - -<!-- Menu --> -<h2 class="demoHeaders">Menu</h2> -<ul style="width:100px;" id="menu"> - <li><div>Item 1</div></li> - <li><div>Item 2</div></li> - <li><div>Item 3</div> - <ul> - <li><div>Item 3-1</div></li> - <li><div>Item 3-2</div></li> - <li><div>Item 3-3</div></li> - <li><div>Item 3-4</div></li> - <li><div>Item 3-5</div></li> - </ul> - </li> - <li><div>Item 4</div></li> - <li><div>Item 5</div></li> -</ul> - - - -<!-- Tooltip --> -<h2 class="demoHeaders">Tooltip</h2> -<p id="tooltip"> - <a href="#" title="That's what this widget is">Tooltips</a> can be attached to any element. When you hover -the element with your mouse, the title attribute is displayed in a little box next to the element, just like a native tooltip. -</p> - - -<!-- Highlight / Error --> -<h2 class="demoHeaders">Highlight / Error</h2> -<div class="ui-widget"> - <div class="ui-state-highlight ui-corner-all" style="margin-top: 20px; padding: 0 .7em;"> - <p><span class="ui-icon ui-icon-info" style="float: left; margin-right: .3em;"></span> - <strong>Hey!</strong> Sample ui-state-highlight style.</p> - </div> -</div> -<br> -<div class="ui-widget"> - <div class="ui-state-error ui-corner-all" style="padding: 0 .7em;"> - <p><span class="ui-icon ui-icon-alert" style="float: left; margin-right: .3em;"></span> - <strong>Alert:</strong> Sample ui-state-error style.</p> - </div> -</div> - -<script src="external/jquery/jquery.js"></script> -<script src="jquery-ui.js"></script> -<script> - -$( "#accordion" ).accordion(); - - - -var availableTags = [ - "ActionScript", - "AppleScript", - "Asp", - "BASIC", - "C", - "C++", - "Clojure", - "COBOL", - "ColdFusion", - "Erlang", - "Fortran", - "Groovy", - "Haskell", - "Java", - "JavaScript", - "Lisp", - "Perl", - "PHP", - "Python", - "Ruby", - "Scala", - "Scheme" -]; -$( "#autocomplete" ).autocomplete({ - source: availableTags -}); - - - -$( "#button" ).button(); -$( "#button-icon" ).button({ - icon: "ui-icon-gear", - showLabel: false -}); - - - -$( "#radioset" ).buttonset(); - - - -$( "#controlgroup" ).controlgroup(); - - - -$( "#tabs" ).tabs(); - - - -$( "#dialog" ).dialog({ - autoOpen: false, - width: 400, - buttons: [ - { - text: "Ok", - click: function() { - $( this ).dialog( "close" ); - } - }, - { - text: "Cancel", - click: function() { - $( this ).dialog( "close" ); - } - } - ] -}); - -// Link to open the dialog -$( "#dialog-link" ).click(function( event ) { - $( "#dialog" ).dialog( "open" ); - event.preventDefault(); -}); - - - -$( "#datepicker" ).datepicker({ - inline: true -}); - - - -$( "#slider" ).slider({ - range: true, - values: [ 17, 67 ] -}); - - - -$( "#progressbar" ).progressbar({ - value: 20 -}); - - - -$( "#spinner" ).spinner(); - - - -$( "#menu" ).menu(); - - - -$( "#tooltip" ).tooltip(); - - - -$( "#selectmenu" ).selectmenu(); - - -// Hover states on the static widgets -$( "#dialog-link, #icons li" ).hover( - function() { - $( this ).addClass( "ui-state-hover" ); - }, - function() { - $( this ).removeClass( "ui-state-hover" ); - } -); -</script> -</body> -</html> diff --git a/libraries/jquery-ui/jquery-ui.css b/libraries/jquery-ui/jquery-ui.css old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/jquery-ui.js b/libraries/jquery-ui/jquery-ui.js old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/jquery-ui.min.css b/libraries/jquery-ui/jquery-ui.min.css old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/jquery-ui.min.js b/libraries/jquery-ui/jquery-ui.min.js old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/jquery-ui.structure.css b/libraries/jquery-ui/jquery-ui.structure.css old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/jquery-ui.structure.min.css b/libraries/jquery-ui/jquery-ui.structure.min.css old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/jquery-ui.theme.css b/libraries/jquery-ui/jquery-ui.theme.css old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/jquery-ui.theme.min.css b/libraries/jquery-ui/jquery-ui.theme.min.css old mode 100755 new mode 100644 diff --git a/libraries/jquery-ui/package.json b/libraries/jquery-ui/package.json deleted file mode 100755 index e3c846e3a8d40e5efe93ae48379aa0eff6bb4149..0000000000000000000000000000000000000000 --- a/libraries/jquery-ui/package.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "name": "jquery-ui", - "title": "jQuery UI", - "description": "A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.", - "version": "1.12.1", - "homepage": "http://jqueryui.com", - "author": { - "name": "jQuery Foundation and other contributors", - "url": "https://github.com/jquery/jquery-ui/blob/1.12.1/AUTHORS.txt" - }, - "main": "ui/widget.js", - "maintainers": [ - { - "name": "Scott González", - "email": "scott.gonzalez@gmail.com", - "url": "http://scottgonzalez.com" - }, - { - "name": "Jörn Zaefferer", - "email": "joern.zaefferer@gmail.com", - "url": "http://bassistance.de" - }, - { - "name": "Mike Sherov", - "email": "mike.sherov@gmail.com", - "url": "http://mike.sherov.com" - }, - { - "name": "TJ VanToll", - "email": "tj.vantoll@gmail.com", - "url": "http://tjvantoll.com" - }, - { - "name": "Felix Nagel", - "email": "info@felixnagel.com", - "url": "http://www.felixnagel.com" - }, - { - "name": "Alex Schmitz", - "email": "arschmitz@gmail.com", - "url": "https://github.com/arschmitz" - } - ], - "repository": { - "type": "git", - "url": "git://github.com/jquery/jquery-ui.git" - }, - "bugs": "https://bugs.jqueryui.com/", - "license": "MIT", - "scripts": { - "test": "grunt" - }, - "dependencies": {}, - "devDependencies": { - "commitplease": "2.3.0", - "grunt": "0.4.5", - "grunt-bowercopy": "1.2.4", - "grunt-cli": "0.1.13", - "grunt-compare-size": "0.4.0", - "grunt-contrib-concat": "0.5.1", - "grunt-contrib-csslint": "0.5.0", - "grunt-contrib-jshint": "0.12.0", - "grunt-contrib-qunit": "1.0.1", - "grunt-contrib-requirejs": "0.4.4", - "grunt-contrib-uglify": "0.11.1", - "grunt-git-authors": "3.1.0", - "grunt-html": "6.0.0", - "grunt-jscs": "2.1.0", - "load-grunt-tasks": "3.4.0", - "rimraf": "2.5.1", - "testswarm": "1.1.0" - }, - "keywords": [] -} diff --git a/libraries/jquery/jquery.min.js b/libraries/jquery/jquery.min.js old mode 100755 new mode 100644 index 644d35e274fd64ddaf6d12af813e820c424176a9..a1c07fd803b5fc9c54f44e31123ae4fa11e134b0 --- a/libraries/jquery/jquery.min.js +++ b/libraries/jquery/jquery.min.js @@ -1,4 +1,2 @@ -/*! jQuery v3.2.1 | (c) JS Foundation and other contributors | jquery.org/license */ -!function(a,b){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){"use strict";var c=[],d=a.document,e=Object.getPrototypeOf,f=c.slice,g=c.concat,h=c.push,i=c.indexOf,j={},k=j.toString,l=j.hasOwnProperty,m=l.toString,n=m.call(Object),o={};function p(a,b){b=b||d;var c=b.createElement("script");c.text=a,b.head.appendChild(c).parentNode.removeChild(c)}var q="3.2.1",r=function(a,b){return new r.fn.init(a,b)},s=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,t=/^-ms-/,u=/-([a-z])/g,v=function(a,b){return b.toUpperCase()};r.fn=r.prototype={jquery:q,constructor:r,length:0,toArray:function(){return f.call(this)},get:function(a){return null==a?f.call(this):a<0?this[a+this.length]:this[a]},pushStack:function(a){var b=r.merge(this.constructor(),a);return b.prevObject=this,b},each:function(a){return r.each(this,a)},map:function(a){return this.pushStack(r.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(f.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(a<0?b:0);return this.pushStack(c>=0&&c<b?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:h,sort:c.sort,splice:c.splice},r.extend=r.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||r.isFunction(g)||(g={}),h===i&&(g=this,h--);h<i;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(r.isPlainObject(d)||(e=Array.isArray(d)))?(e?(e=!1,f=c&&Array.isArray(c)?c:[]):f=c&&r.isPlainObject(c)?c:{},g[b]=r.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},r.extend({expando:"jQuery"+(q+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===r.type(a)},isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){var b=r.type(a);return("number"===b||"string"===b)&&!isNaN(a-parseFloat(a))},isPlainObject:function(a){var b,c;return!(!a||"[object Object]"!==k.call(a))&&(!(b=e(a))||(c=l.call(b,"constructor")&&b.constructor,"function"==typeof c&&m.call(c)===n))},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?j[k.call(a)]||"object":typeof a},globalEval:function(a){p(a)},camelCase:function(a){return a.replace(t,"ms-").replace(u,v)},each:function(a,b){var c,d=0;if(w(a)){for(c=a.length;d<c;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(s,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(w(Object(a))?r.merge(c,"string"==typeof a?[a]:a):h.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:i.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;d<c;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;f<g;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,f=0,h=[];if(w(a))for(d=a.length;f<d;f++)e=b(a[f],f,c),null!=e&&h.push(e);else for(f in a)e=b(a[f],f,c),null!=e&&h.push(e);return g.apply([],h)},guid:1,proxy:function(a,b){var c,d,e;if("string"==typeof b&&(c=a[b],b=a,a=c),r.isFunction(a))return d=f.call(arguments,2),e=function(){return a.apply(b||this,d.concat(f.call(arguments)))},e.guid=a.guid=a.guid||r.guid++,e},now:Date.now,support:o}),"function"==typeof Symbol&&(r.fn[Symbol.iterator]=c[Symbol.iterator]),r.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){j["[object "+b+"]"]=b.toLowerCase()});function w(a){var b=!!a&&"length"in a&&a.length,c=r.type(a);return"function"!==c&&!r.isWindow(a)&&("array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a)}var x=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=function(a,b){for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return c;return-1},J="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",K="[\\x20\\t\\r\\n\\f]",L="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",M="\\["+K+"*("+L+")(?:"+K+"*([*^$|!~]?=)"+K+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+L+"))|)"+K+"*\\]",N=":("+L+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+M+")*)|.*)\\)|)",O=new RegExp(K+"+","g"),P=new RegExp("^"+K+"+|((?:^|[^\\\\])(?:\\\\.)*)"+K+"+$","g"),Q=new RegExp("^"+K+"*,"+K+"*"),R=new RegExp("^"+K+"*([>+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(N),U=new RegExp("^"+L+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+N),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),aa=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:d<0?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ba=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ca=function(a,b){return b?"\0"===a?"\ufffd":a.slice(0,-1)+"\\"+a.charCodeAt(a.length-1).toString(16)+" ":"\\"+a},da=function(){m()},ea=ta(function(a){return a.disabled===!0&&("form"in a||"label"in a)},{dir:"parentNode",next:"legend"});try{G.apply(D=H.call(v.childNodes),v.childNodes),D[v.childNodes.length].nodeType}catch(fa){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s=b&&b.ownerDocument,w=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==w&&9!==w&&11!==w)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==w&&(l=Z.exec(a)))if(f=l[1]){if(9===w){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(s&&(j=s.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(l[2])return G.apply(d,b.getElementsByTagName(a)),d;if((f=l[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==w)s=b,r=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(ba,ca):b.setAttribute("id",k=u),o=g(a),h=o.length;while(h--)o[h]="#"+k+" "+sa(o[h]);r=o.join(","),s=$.test(a)&&qa(b.parentNode)||b}if(r)try{return G.apply(d,s.querySelectorAll(r)),d}catch(x){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(P,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("fieldset");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&a.sourceIndex-b.sourceIndex;if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return function(b){return"form"in b?b.parentNode&&b.disabled===!1?"label"in b?"label"in b.parentNode?b.parentNode.disabled===a:b.disabled===a:b.isDisabled===a||b.isDisabled!==!a&&ea(b)===a:b.disabled===a:"label"in b&&b.disabled===a}}function pa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function qa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),v!==n&&(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(n.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){return a.getAttribute("id")===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}}):(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c,d,e,f=b.getElementById(a);if(f){if(c=f.getAttributeNode("id"),c&&c.value===a)return[f];e=b.getElementsByName(a),d=0;while(f=e[d++])if(c=f.getAttributeNode("id"),c&&c.value===a)return[f]}return[]}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){if("undefined"!=typeof b.getElementsByClassName&&p)return b.getElementsByClassName(a)},r=[],q=[],(c.qsa=Y.test(n.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="<a id='"+u+"'></a><select id='"+u+"-\r\\' msallowcapture=''><option selected=''></option></select>",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){a.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+K+"*[*^$|!~]?="),2!==a.querySelectorAll(":enabled").length&&q.push(":enabled",":disabled"),o.appendChild(a).disabled=!0,2!==a.querySelectorAll(":disabled").length&&q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Y.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"*"),s.call(a,"[s!='']:x"),r.push("!=",N)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Y.test(o.compareDocumentPosition),t=b||Y.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?I(k,a)-I(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?I(k,a)-I(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?la(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(S,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.escape=function(a){return(a+"").replace(ba,ca)},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(_,aa),a[3]=(a[3]||a[4]||a[5]||"").replace(_,aa),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return V.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&T.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(_,aa).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(O," ")+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(P,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(_,aa),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return U.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(_,aa).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:oa(!1),disabled:oa(!0),checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:pa(function(){return[0]}),last:pa(function(a,b){return[b-1]}),eq:pa(function(a,b,c){return[c<0?c+b:c]}),even:pa(function(a,b){for(var c=0;c<b;c+=2)a.push(c);return a}),odd:pa(function(a,b){for(var c=1;c<b;c+=2)a.push(c);return a}),lt:pa(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:pa(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=ma(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=na(b);function ra(){}ra.prototype=d.filters=d.pseudos,d.setFilters=new ra,g=ga.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){c&&!(e=Q.exec(h))||(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=R.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(P," ")}),h=h.slice(c.length));for(g in d.filter)!(e=V[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?ga.error(a):z(a,i).slice(0)};function sa(a){for(var b=0,c=a.length,d="";b<c;b++)d+=a[b].value;return d}function ta(a,b,c){var d=b.dir,e=b.next,f=e||d,g=c&&"parentNode"===f,h=x++;return b.first?function(b,c,e){while(b=b[d])if(1===b.nodeType||g)return a(b,c,e);return!1}:function(b,c,i){var j,k,l,m=[w,h];if(i){while(b=b[d])if((1===b.nodeType||g)&&a(b,c,i))return!0}else while(b=b[d])if(1===b.nodeType||g)if(l=b[u]||(b[u]={}),k=l[b.uniqueID]||(l[b.uniqueID]={}),e&&e===b.nodeName.toLowerCase())b=b[d]||b;else{if((j=k[f])&&j[0]===w&&j[1]===h)return m[2]=j[2];if(k[f]=m,m[2]=a(b,c,i))return!0}return!1}}function ua(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function va(a,b,c){for(var d=0,e=b.length;d<e;d++)ga(a,b[d],c);return c}function wa(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;h<i;h++)(f=a[h])&&(c&&!c(f,d,e)||(g.push(f),j&&b.push(h)));return g}function xa(a,b,c,d,e,f){return d&&!d[u]&&(d=xa(d)),e&&!e[u]&&(e=xa(e,f)),ia(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||va(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:wa(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=wa(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?I(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=wa(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ya(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ta(function(a){return a===b},h,!0),l=ta(function(a){return I(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i<f;i++)if(c=d.relative[a[i].type])m=[ta(ua(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;e<f;e++)if(d.relative[a[e].type])break;return xa(i>1&&ua(m),i>1&&sa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(P,"$1"),c,i<e&&ya(a.slice(i,e)),e<f&&ya(a=a.slice(e)),e<f&&sa(a))}m.push(c)}return ua(m)}function za(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=E.call(i));u=wa(u)}G.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&ga.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=ya(b[c]),f[u]?d.push(f):e.push(f);f=A(a,za(e,d)),f.selector=a}return f},i=ga.select=function(a,b,c,e){var f,i,j,k,l,m="function"==typeof a&&a,n=!e&&g(a=m.selector||a);if(c=c||[],1===n.length){if(i=n[0]=n[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&9===b.nodeType&&p&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(_,aa),b)||[])[0],!b)return c;m&&(b=b.parentNode),a=a.slice(i.shift().value.length)}f=V.needsContext.test(a)?0:i.length;while(f--){if(j=i[f],d.relative[k=j.type])break;if((l=d.find[k])&&(e=l(j.matches[0].replace(_,aa),$.test(i[0].type)&&qa(b.parentNode)||b))){if(i.splice(f,1),a=e.length&&sa(i),!a)return G.apply(c,e),c;break}}}return(m||h(a,n))(e,b,!p,c,!b||$.test(a)&&qa(b.parentNode)||b),c},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("fieldset"))}),ja(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){if(!c)return a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(J,function(a,b,c){var d;if(!c)return a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);r.find=x,r.expr=x.selectors,r.expr[":"]=r.expr.pseudos,r.uniqueSort=r.unique=x.uniqueSort,r.text=x.getText,r.isXMLDoc=x.isXML,r.contains=x.contains,r.escapeSelector=x.escape;var y=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&r(a).is(c))break;d.push(a)}return d},z=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},A=r.expr.match.needsContext;function B(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()}var C=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,D=/^.[^:#\[\.,]*$/;function E(a,b,c){return r.isFunction(b)?r.grep(a,function(a,d){return!!b.call(a,d,a)!==c}):b.nodeType?r.grep(a,function(a){return a===b!==c}):"string"!=typeof b?r.grep(a,function(a){return i.call(b,a)>-1!==c}):D.test(b)?r.filter(b,a,c):(b=r.filter(b,a),r.grep(a,function(a){return i.call(b,a)>-1!==c&&1===a.nodeType}))}r.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?r.find.matchesSelector(d,a)?[d]:[]:r.find.matches(a,r.grep(b,function(a){return 1===a.nodeType}))},r.fn.extend({find:function(a){var b,c,d=this.length,e=this;if("string"!=typeof a)return this.pushStack(r(a).filter(function(){for(b=0;b<d;b++)if(r.contains(e[b],this))return!0}));for(c=this.pushStack([]),b=0;b<d;b++)r.find(a,e[b],c);return d>1?r.uniqueSort(c):c},filter:function(a){return this.pushStack(E(this,a||[],!1))},not:function(a){return this.pushStack(E(this,a||[],!0))},is:function(a){return!!E(this,"string"==typeof a&&A.test(a)?r(a):a||[],!1).length}});var F,G=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,H=r.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||F,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:G.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof r?b[0]:b,r.merge(this,r.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),C.test(e[1])&&r.isPlainObject(b))for(e in b)r.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&(this[0]=f,this.length=1),this}return a.nodeType?(this[0]=a,this.length=1,this):r.isFunction(a)?void 0!==c.ready?c.ready(a):a(r):r.makeArray(a,this)};H.prototype=r.fn,F=r(d);var I=/^(?:parents|prev(?:Until|All))/,J={children:!0,contents:!0,next:!0,prev:!0};r.fn.extend({has:function(a){var b=r(a,this),c=b.length;return this.filter(function(){for(var a=0;a<c;a++)if(r.contains(this,b[a]))return!0})},closest:function(a,b){var c,d=0,e=this.length,f=[],g="string"!=typeof a&&r(a);if(!A.test(a))for(;d<e;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&r.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?r.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?i.call(r(a),this[0]):i.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(r.uniqueSort(r.merge(this.get(),r(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function K(a,b){while((a=a[b])&&1!==a.nodeType);return a}r.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return y(a,"parentNode")},parentsUntil:function(a,b,c){return y(a,"parentNode",c)},next:function(a){return K(a,"nextSibling")},prev:function(a){return K(a,"previousSibling")},nextAll:function(a){return y(a,"nextSibling")},prevAll:function(a){return y(a,"previousSibling")},nextUntil:function(a,b,c){return y(a,"nextSibling",c)},prevUntil:function(a,b,c){return y(a,"previousSibling",c)},siblings:function(a){return z((a.parentNode||{}).firstChild,a)},children:function(a){return z(a.firstChild)},contents:function(a){return B(a,"iframe")?a.contentDocument:(B(a,"template")&&(a=a.content||a),r.merge([],a.childNodes))}},function(a,b){r.fn[a]=function(c,d){var e=r.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=r.filter(d,e)),this.length>1&&(J[a]||r.uniqueSort(e),I.test(a)&&e.reverse()),this.pushStack(e)}});var L=/[^\x20\t\r\n\f]+/g;function M(a){var b={};return r.each(a.match(L)||[],function(a,c){b[c]=!0}),b}r.Callbacks=function(a){a="string"==typeof a?M(a):r.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=e||a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h<f.length)f[h].apply(c[0],c[1])===!1&&a.stopOnFalse&&(h=f.length,c=!1)}a.memory||(c=!1),b=!1,e&&(f=c?[]:"")},j={add:function(){return f&&(c&&!b&&(h=f.length-1,g.push(c)),function d(b){r.each(b,function(b,c){r.isFunction(c)?a.unique&&j.has(c)||f.push(c):c&&c.length&&"string"!==r.type(c)&&d(c)})}(arguments),c&&!b&&i()),this},remove:function(){return r.each(arguments,function(a,b){var c;while((c=r.inArray(b,f,c))>-1)f.splice(c,1),c<=h&&h--}),this},has:function(a){return a?r.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||b||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j};function N(a){return a}function O(a){throw a}function P(a,b,c,d){var e;try{a&&r.isFunction(e=a.promise)?e.call(a).done(b).fail(c):a&&r.isFunction(e=a.then)?e.call(a,b,c):b.apply(void 0,[a].slice(d))}catch(a){c.apply(void 0,[a])}}r.extend({Deferred:function(b){var c=[["notify","progress",r.Callbacks("memory"),r.Callbacks("memory"),2],["resolve","done",r.Callbacks("once memory"),r.Callbacks("once memory"),0,"resolved"],["reject","fail",r.Callbacks("once memory"),r.Callbacks("once memory"),1,"rejected"]],d="pending",e={state:function(){return d},always:function(){return f.done(arguments).fail(arguments),this},"catch":function(a){return e.then(null,a)},pipe:function(){var a=arguments;return r.Deferred(function(b){r.each(c,function(c,d){var e=r.isFunction(a[d[4]])&&a[d[4]];f[d[1]](function(){var a=e&&e.apply(this,arguments);a&&r.isFunction(a.promise)?a.promise().progress(b.notify).done(b.resolve).fail(b.reject):b[d[0]+"With"](this,e?[a]:arguments)})}),a=null}).promise()},then:function(b,d,e){var f=0;function g(b,c,d,e){return function(){var h=this,i=arguments,j=function(){var a,j;if(!(b<f)){if(a=d.apply(h,i),a===c.promise())throw new TypeError("Thenable self-resolution");j=a&&("object"==typeof a||"function"==typeof a)&&a.then,r.isFunction(j)?e?j.call(a,g(f,c,N,e),g(f,c,O,e)):(f++,j.call(a,g(f,c,N,e),g(f,c,O,e),g(f,c,N,c.notifyWith))):(d!==N&&(h=void 0,i=[a]),(e||c.resolveWith)(h,i))}},k=e?j:function(){try{j()}catch(a){r.Deferred.exceptionHook&&r.Deferred.exceptionHook(a,k.stackTrace),b+1>=f&&(d!==O&&(h=void 0,i=[a]),c.rejectWith(h,i))}};b?k():(r.Deferred.getStackHook&&(k.stackTrace=r.Deferred.getStackHook()),a.setTimeout(k))}}return r.Deferred(function(a){c[0][3].add(g(0,a,r.isFunction(e)?e:N,a.notifyWith)),c[1][3].add(g(0,a,r.isFunction(b)?b:N)),c[2][3].add(g(0,a,r.isFunction(d)?d:O))}).promise()},promise:function(a){return null!=a?r.extend(a,e):e}},f={};return r.each(c,function(a,b){var g=b[2],h=b[5];e[b[1]]=g.add,h&&g.add(function(){d=h},c[3-a][2].disable,c[0][2].lock),g.add(b[3].fire),f[b[0]]=function(){return f[b[0]+"With"](this===f?void 0:this,arguments),this},f[b[0]+"With"]=g.fireWith}),e.promise(f),b&&b.call(f,f),f},when:function(a){var b=arguments.length,c=b,d=Array(c),e=f.call(arguments),g=r.Deferred(),h=function(a){return function(c){d[a]=this,e[a]=arguments.length>1?f.call(arguments):c,--b||g.resolveWith(d,e)}};if(b<=1&&(P(a,g.done(h(c)).resolve,g.reject,!b),"pending"===g.state()||r.isFunction(e[c]&&e[c].then)))return g.then();while(c--)P(e[c],h(c),g.reject);return g.promise()}});var Q=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;r.Deferred.exceptionHook=function(b,c){a.console&&a.console.warn&&b&&Q.test(b.name)&&a.console.warn("jQuery.Deferred exception: "+b.message,b.stack,c)},r.readyException=function(b){a.setTimeout(function(){throw b})};var R=r.Deferred();r.fn.ready=function(a){return R.then(a)["catch"](function(a){r.readyException(a)}),this},r.extend({isReady:!1,readyWait:1,ready:function(a){(a===!0?--r.readyWait:r.isReady)||(r.isReady=!0,a!==!0&&--r.readyWait>0||R.resolveWith(d,[r]))}}),r.ready.then=R.then;function S(){d.removeEventListener("DOMContentLoaded",S), -a.removeEventListener("load",S),r.ready()}"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(r.ready):(d.addEventListener("DOMContentLoaded",S),a.addEventListener("load",S));var T=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===r.type(c)){e=!0;for(h in c)T(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,r.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(r(a),c)})),b))for(;h<i;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},U=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function V(){this.expando=r.expando+V.uid++}V.uid=1,V.prototype={cache:function(a){var b=a[this.expando];return b||(b={},U(a)&&(a.nodeType?a[this.expando]=b:Object.defineProperty(a,this.expando,{value:b,configurable:!0}))),b},set:function(a,b,c){var d,e=this.cache(a);if("string"==typeof b)e[r.camelCase(b)]=c;else for(d in b)e[r.camelCase(d)]=b[d];return e},get:function(a,b){return void 0===b?this.cache(a):a[this.expando]&&a[this.expando][r.camelCase(b)]},access:function(a,b,c){return void 0===b||b&&"string"==typeof b&&void 0===c?this.get(a,b):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d=a[this.expando];if(void 0!==d){if(void 0!==b){Array.isArray(b)?b=b.map(r.camelCase):(b=r.camelCase(b),b=b in d?[b]:b.match(L)||[]),c=b.length;while(c--)delete d[b[c]]}(void 0===b||r.isEmptyObject(d))&&(a.nodeType?a[this.expando]=void 0:delete a[this.expando])}},hasData:function(a){var b=a[this.expando];return void 0!==b&&!r.isEmptyObject(b)}};var W=new V,X=new V,Y=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Z=/[A-Z]/g;function $(a){return"true"===a||"false"!==a&&("null"===a?null:a===+a+""?+a:Y.test(a)?JSON.parse(a):a)}function _(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(Z,"-$&").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c=$(c)}catch(e){}X.set(a,b,c)}else c=void 0;return c}r.extend({hasData:function(a){return X.hasData(a)||W.hasData(a)},data:function(a,b,c){return X.access(a,b,c)},removeData:function(a,b){X.remove(a,b)},_data:function(a,b,c){return W.access(a,b,c)},_removeData:function(a,b){W.remove(a,b)}}),r.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=X.get(f),1===f.nodeType&&!W.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=r.camelCase(d.slice(5)),_(f,d,e[d])));W.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){X.set(this,a)}):T(this,function(b){var c;if(f&&void 0===b){if(c=X.get(f,a),void 0!==c)return c;if(c=_(f,a),void 0!==c)return c}else this.each(function(){X.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){X.remove(this,a)})}}),r.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=W.get(a,b),c&&(!d||Array.isArray(c)?d=W.access(a,b,r.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=r.queue(a,b),d=c.length,e=c.shift(),f=r._queueHooks(a,b),g=function(){r.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return W.get(a,c)||W.access(a,c,{empty:r.Callbacks("once memory").add(function(){W.remove(a,[b+"queue",c])})})}}),r.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?r.queue(this[0],a):void 0===b?this:this.each(function(){var c=r.queue(this,a,b);r._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&r.dequeue(this,a)})},dequeue:function(a){return this.each(function(){r.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=r.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=W.get(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var aa=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ba=new RegExp("^(?:([+-])=|)("+aa+")([a-z%]*)$","i"),ca=["Top","Right","Bottom","Left"],da=function(a,b){return a=b||a,"none"===a.style.display||""===a.style.display&&r.contains(a.ownerDocument,a)&&"none"===r.css(a,"display")},ea=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};function fa(a,b,c,d){var e,f=1,g=20,h=d?function(){return d.cur()}:function(){return r.css(a,b,"")},i=h(),j=c&&c[3]||(r.cssNumber[b]?"":"px"),k=(r.cssNumber[b]||"px"!==j&&+i)&&ba.exec(r.css(a,b));if(k&&k[3]!==j){j=j||k[3],c=c||[],k=+i||1;do f=f||".5",k/=f,r.style(a,b,k+j);while(f!==(f=h()/i)&&1!==f&&--g)}return c&&(k=+k||+i||0,e=c[1]?k+(c[1]+1)*c[2]:+c[2],d&&(d.unit=j,d.start=k,d.end=e)),e}var ga={};function ha(a){var b,c=a.ownerDocument,d=a.nodeName,e=ga[d];return e?e:(b=c.body.appendChild(c.createElement(d)),e=r.css(b,"display"),b.parentNode.removeChild(b),"none"===e&&(e="block"),ga[d]=e,e)}function ia(a,b){for(var c,d,e=[],f=0,g=a.length;f<g;f++)d=a[f],d.style&&(c=d.style.display,b?("none"===c&&(e[f]=W.get(d,"display")||null,e[f]||(d.style.display="")),""===d.style.display&&da(d)&&(e[f]=ha(d))):"none"!==c&&(e[f]="none",W.set(d,"display",c)));for(f=0;f<g;f++)null!=e[f]&&(a[f].style.display=e[f]);return a}r.fn.extend({show:function(){return ia(this,!0)},hide:function(){return ia(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){da(this)?r(this).show():r(this).hide()})}});var ja=/^(?:checkbox|radio)$/i,ka=/<([a-z][^\/\0>\x20\t\r\n\f]+)/i,la=/^$|\/(?:java|ecma)script/i,ma={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};ma.optgroup=ma.option,ma.tbody=ma.tfoot=ma.colgroup=ma.caption=ma.thead,ma.th=ma.td;function na(a,b){var c;return c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[],void 0===b||b&&B(a,b)?r.merge([a],c):c}function oa(a,b){for(var c=0,d=a.length;c<d;c++)W.set(a[c],"globalEval",!b||W.get(b[c],"globalEval"))}var pa=/<|&#?\w+;/;function qa(a,b,c,d,e){for(var f,g,h,i,j,k,l=b.createDocumentFragment(),m=[],n=0,o=a.length;n<o;n++)if(f=a[n],f||0===f)if("object"===r.type(f))r.merge(m,f.nodeType?[f]:f);else if(pa.test(f)){g=g||l.appendChild(b.createElement("div")),h=(ka.exec(f)||["",""])[1].toLowerCase(),i=ma[h]||ma._default,g.innerHTML=i[1]+r.htmlPrefilter(f)+i[2],k=i[0];while(k--)g=g.lastChild;r.merge(m,g.childNodes),g=l.firstChild,g.textContent=""}else m.push(b.createTextNode(f));l.textContent="",n=0;while(f=m[n++])if(d&&r.inArray(f,d)>-1)e&&e.push(f);else if(j=r.contains(f.ownerDocument,f),g=na(l.appendChild(f),"script"),j&&oa(g),c){k=0;while(f=g[k++])la.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),o.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="<textarea>x</textarea>",o.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var ra=d.documentElement,sa=/^key/,ta=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ua=/^([^.]*)(?:\.(.+)|)/;function va(){return!0}function wa(){return!1}function xa(){try{return d.activeElement}catch(a){}}function ya(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)ya(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=wa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return r().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=r.guid++)),a.each(function(){r.event.add(this,b,e,d,c)})}r.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=W.get(a);if(q){c.handler&&(f=c,c=f.handler,e=f.selector),e&&r.find.matchesSelector(ra,e),c.guid||(c.guid=r.guid++),(i=q.events)||(i=q.events={}),(g=q.handle)||(g=q.handle=function(b){return"undefined"!=typeof r&&r.event.triggered!==b.type?r.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(L)||[""],j=b.length;while(j--)h=ua.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n&&(l=r.event.special[n]||{},n=(e?l.delegateType:l.bindType)||n,l=r.event.special[n]||{},k=r.extend({type:n,origType:p,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&r.expr.match.needsContext.test(e),namespace:o.join(".")},f),(m=i[n])||(m=i[n]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,o,g)!==!1||a.addEventListener&&a.addEventListener(n,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),r.event.global[n]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=W.hasData(a)&&W.get(a);if(q&&(i=q.events)){b=(b||"").match(L)||[""],j=b.length;while(j--)if(h=ua.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n){l=r.event.special[n]||{},n=(d?l.delegateType:l.bindType)||n,m=i[n]||[],h=h[2]&&new RegExp("(^|\\.)"+o.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&p!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,o,q.handle)!==!1||r.removeEvent(a,n,q.handle),delete i[n])}else for(n in i)r.event.remove(a,n+b[j],c,d,!0);r.isEmptyObject(i)&&W.remove(a,"handle events")}},dispatch:function(a){var b=r.event.fix(a),c,d,e,f,g,h,i=new Array(arguments.length),j=(W.get(this,"events")||{})[b.type]||[],k=r.event.special[b.type]||{};for(i[0]=b,c=1;c<arguments.length;c++)i[c]=arguments[c];if(b.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,b)!==!1){h=r.event.handlers.call(this,b,j),c=0;while((f=h[c++])&&!b.isPropagationStopped()){b.currentTarget=f.elem,d=0;while((g=f.handlers[d++])&&!b.isImmediatePropagationStopped())b.rnamespace&&!b.rnamespace.test(g.namespace)||(b.handleObj=g,b.data=g.data,e=((r.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(b.result=e)===!1&&(b.preventDefault(),b.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,b),b.result}},handlers:function(a,b){var c,d,e,f,g,h=[],i=b.delegateCount,j=a.target;if(i&&j.nodeType&&!("click"===a.type&&a.button>=1))for(;j!==this;j=j.parentNode||this)if(1===j.nodeType&&("click"!==a.type||j.disabled!==!0)){for(f=[],g={},c=0;c<i;c++)d=b[c],e=d.selector+" ",void 0===g[e]&&(g[e]=d.needsContext?r(e,this).index(j)>-1:r.find(e,this,null,[j]).length),g[e]&&f.push(d);f.length&&h.push({elem:j,handlers:f})}return j=this,i<b.length&&h.push({elem:j,handlers:b.slice(i)}),h},addProp:function(a,b){Object.defineProperty(r.Event.prototype,a,{enumerable:!0,configurable:!0,get:r.isFunction(b)?function(){if(this.originalEvent)return b(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[a]},set:function(b){Object.defineProperty(this,a,{enumerable:!0,configurable:!0,writable:!0,value:b})}})},fix:function(a){return a[r.expando]?a:new r.Event(a)},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==xa()&&this.focus)return this.focus(),!1},delegateType:"focusin"},blur:{trigger:function(){if(this===xa()&&this.blur)return this.blur(),!1},delegateType:"focusout"},click:{trigger:function(){if("checkbox"===this.type&&this.click&&B(this,"input"))return this.click(),!1},_default:function(a){return B(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}}},r.removeEvent=function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c)},r.Event=function(a,b){return this instanceof r.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?va:wa,this.target=a.target&&3===a.target.nodeType?a.target.parentNode:a.target,this.currentTarget=a.currentTarget,this.relatedTarget=a.relatedTarget):this.type=a,b&&r.extend(this,b),this.timeStamp=a&&a.timeStamp||r.now(),void(this[r.expando]=!0)):new r.Event(a,b)},r.Event.prototype={constructor:r.Event,isDefaultPrevented:wa,isPropagationStopped:wa,isImmediatePropagationStopped:wa,isSimulated:!1,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=va,a&&!this.isSimulated&&a.preventDefault()},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=va,a&&!this.isSimulated&&a.stopPropagation()},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=va,a&&!this.isSimulated&&a.stopImmediatePropagation(),this.stopPropagation()}},r.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(a){var b=a.button;return null==a.which&&sa.test(a.type)?null!=a.charCode?a.charCode:a.keyCode:!a.which&&void 0!==b&&ta.test(a.type)?1&b?1:2&b?3:4&b?2:0:a.which}},r.event.addProp),r.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){r.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return e&&(e===d||r.contains(d,e))||(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),r.fn.extend({on:function(a,b,c,d){return ya(this,a,b,c,d)},one:function(a,b,c,d){return ya(this,a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,r(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return b!==!1&&"function"!=typeof b||(c=b,b=void 0),c===!1&&(c=wa),this.each(function(){r.event.remove(this,a,c,b)})}});var za=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,Aa=/<script|<style|<link/i,Ba=/checked\s*(?:[^=]|=\s*.checked.)/i,Ca=/^true\/(.*)/,Da=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function Ea(a,b){return B(a,"table")&&B(11!==b.nodeType?b:b.firstChild,"tr")?r(">tbody",a)[0]||a:a}function Fa(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function Ga(a){var b=Ca.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Ha(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(W.hasData(a)&&(f=W.access(a),g=W.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;c<d;c++)r.event.add(b,e,j[e][c])}X.hasData(a)&&(h=X.access(a),i=r.extend({},h),X.set(b,i))}}function Ia(a,b){var c=b.nodeName.toLowerCase();"input"===c&&ja.test(a.type)?b.checked=a.checked:"input"!==c&&"textarea"!==c||(b.defaultValue=a.defaultValue)}function Ja(a,b,c,d){b=g.apply([],b);var e,f,h,i,j,k,l=0,m=a.length,n=m-1,q=b[0],s=r.isFunction(q);if(s||m>1&&"string"==typeof q&&!o.checkClone&&Ba.test(q))return a.each(function(e){var f=a.eq(e);s&&(b[0]=q.call(this,e,f.html())),Ja(f,b,c,d)});if(m&&(e=qa(b,a[0].ownerDocument,!1,a,d),f=e.firstChild,1===e.childNodes.length&&(e=f),f||d)){for(h=r.map(na(e,"script"),Fa),i=h.length;l<m;l++)j=e,l!==n&&(j=r.clone(j,!0,!0),i&&r.merge(h,na(j,"script"))),c.call(a[l],j,l);if(i)for(k=h[h.length-1].ownerDocument,r.map(h,Ga),l=0;l<i;l++)j=h[l],la.test(j.type||"")&&!W.access(j,"globalEval")&&r.contains(k,j)&&(j.src?r._evalUrl&&r._evalUrl(j.src):p(j.textContent.replace(Da,""),k))}return a}function Ka(a,b,c){for(var d,e=b?r.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||r.cleanData(na(d)),d.parentNode&&(c&&r.contains(d.ownerDocument,d)&&oa(na(d,"script")),d.parentNode.removeChild(d));return a}r.extend({htmlPrefilter:function(a){return a.replace(za,"<$1></$2>")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=r.contains(a.ownerDocument,a);if(!(o.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||r.isXMLDoc(a)))for(g=na(h),f=na(a),d=0,e=f.length;d<e;d++)Ia(f[d],g[d]);if(b)if(c)for(f=f||na(a),g=g||na(h),d=0,e=f.length;d<e;d++)Ha(f[d],g[d]);else Ha(a,h);return g=na(h,"script"),g.length>0&&oa(g,!i&&na(a,"script")),h},cleanData:function(a){for(var b,c,d,e=r.event.special,f=0;void 0!==(c=a[f]);f++)if(U(c)){if(b=c[W.expando]){if(b.events)for(d in b.events)e[d]?r.event.remove(c,d):r.removeEvent(c,d,b.handle);c[W.expando]=void 0}c[X.expando]&&(c[X.expando]=void 0)}}}),r.fn.extend({detach:function(a){return Ka(this,a,!0)},remove:function(a){return Ka(this,a)},text:function(a){return T(this,function(a){return void 0===a?r.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return Ja(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ea(this,a);b.appendChild(a)}})},prepend:function(){return Ja(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ea(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ja(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ja(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(r.cleanData(na(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null!=a&&a,b=null==b?a:b,this.map(function(){return r.clone(this,a,b)})},html:function(a){return T(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!Aa.test(a)&&!ma[(ka.exec(a)||["",""])[1].toLowerCase()]){a=r.htmlPrefilter(a);try{for(;c<d;c++)b=this[c]||{},1===b.nodeType&&(r.cleanData(na(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return Ja(this,arguments,function(b){var c=this.parentNode;r.inArray(this,a)<0&&(r.cleanData(na(this)),c&&c.replaceChild(b,this))},a)}}),r.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){r.fn[a]=function(a){for(var c,d=[],e=r(a),f=e.length-1,g=0;g<=f;g++)c=g===f?this:this.clone(!0),r(e[g])[b](c),h.apply(d,c.get());return this.pushStack(d)}});var La=/^margin/,Ma=new RegExp("^("+aa+")(?!px)[a-z%]+$","i"),Na=function(b){var c=b.ownerDocument.defaultView;return c&&c.opener||(c=a),c.getComputedStyle(b)};!function(){function b(){if(i){i.style.cssText="box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",i.innerHTML="",ra.appendChild(h);var b=a.getComputedStyle(i);c="1%"!==b.top,g="2px"===b.marginLeft,e="4px"===b.width,i.style.marginRight="50%",f="4px"===b.marginRight,ra.removeChild(h),i=null}}var c,e,f,g,h=d.createElement("div"),i=d.createElement("div");i.style&&(i.style.backgroundClip="content-box",i.cloneNode(!0).style.backgroundClip="",o.clearCloneStyle="content-box"===i.style.backgroundClip,h.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",h.appendChild(i),r.extend(o,{pixelPosition:function(){return b(),c},boxSizingReliable:function(){return b(),e},pixelMarginRight:function(){return b(),f},reliableMarginLeft:function(){return b(),g}}))}();function Oa(a,b,c){var d,e,f,g,h=a.style;return c=c||Na(a),c&&(g=c.getPropertyValue(b)||c[b],""!==g||r.contains(a.ownerDocument,a)||(g=r.style(a,b)),!o.pixelMarginRight()&&Ma.test(g)&&La.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0!==g?g+"":g}function Pa(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}var Qa=/^(none|table(?!-c[ea]).+)/,Ra=/^--/,Sa={position:"absolute",visibility:"hidden",display:"block"},Ta={letterSpacing:"0",fontWeight:"400"},Ua=["Webkit","Moz","ms"],Va=d.createElement("div").style;function Wa(a){if(a in Va)return a;var b=a[0].toUpperCase()+a.slice(1),c=Ua.length;while(c--)if(a=Ua[c]+b,a in Va)return a}function Xa(a){var b=r.cssProps[a];return b||(b=r.cssProps[a]=Wa(a)||a),b}function Ya(a,b,c){var d=ba.exec(b);return d?Math.max(0,d[2]-(c||0))+(d[3]||"px"):b}function Za(a,b,c,d,e){var f,g=0;for(f=c===(d?"border":"content")?4:"width"===b?1:0;f<4;f+=2)"margin"===c&&(g+=r.css(a,c+ca[f],!0,e)),d?("content"===c&&(g-=r.css(a,"padding"+ca[f],!0,e)),"margin"!==c&&(g-=r.css(a,"border"+ca[f]+"Width",!0,e))):(g+=r.css(a,"padding"+ca[f],!0,e),"padding"!==c&&(g+=r.css(a,"border"+ca[f]+"Width",!0,e)));return g}function $a(a,b,c){var d,e=Na(a),f=Oa(a,b,e),g="border-box"===r.css(a,"boxSizing",!1,e);return Ma.test(f)?f:(d=g&&(o.boxSizingReliable()||f===a.style[b]),"auto"===f&&(f=a["offset"+b[0].toUpperCase()+b.slice(1)]),f=parseFloat(f)||0,f+Za(a,b,c||(g?"border":"content"),d,e)+"px")}r.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Oa(a,"opacity");return""===c?"1":c}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=r.camelCase(b),i=Ra.test(b),j=a.style;return i||(b=Xa(h)),g=r.cssHooks[b]||r.cssHooks[h],void 0===c?g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:j[b]:(f=typeof c,"string"===f&&(e=ba.exec(c))&&e[1]&&(c=fa(a,b,e),f="number"),null!=c&&c===c&&("number"===f&&(c+=e&&e[3]||(r.cssNumber[h]?"":"px")),o.clearCloneStyle||""!==c||0!==b.indexOf("background")||(j[b]="inherit"),g&&"set"in g&&void 0===(c=g.set(a,c,d))||(i?j.setProperty(b,c):j[b]=c)),void 0)}},css:function(a,b,c,d){var e,f,g,h=r.camelCase(b),i=Ra.test(b);return i||(b=Xa(h)),g=r.cssHooks[b]||r.cssHooks[h],g&&"get"in g&&(e=g.get(a,!0,c)),void 0===e&&(e=Oa(a,b,d)),"normal"===e&&b in Ta&&(e=Ta[b]),""===c||c?(f=parseFloat(e),c===!0||isFinite(f)?f||0:e):e}}),r.each(["height","width"],function(a,b){r.cssHooks[b]={get:function(a,c,d){if(c)return!Qa.test(r.css(a,"display"))||a.getClientRects().length&&a.getBoundingClientRect().width?$a(a,b,d):ea(a,Sa,function(){return $a(a,b,d)})},set:function(a,c,d){var e,f=d&&Na(a),g=d&&Za(a,b,d,"border-box"===r.css(a,"boxSizing",!1,f),f);return g&&(e=ba.exec(c))&&"px"!==(e[3]||"px")&&(a.style[b]=c,c=r.css(a,b)),Ya(a,c,g)}}}),r.cssHooks.marginLeft=Pa(o.reliableMarginLeft,function(a,b){if(b)return(parseFloat(Oa(a,"marginLeft"))||a.getBoundingClientRect().left-ea(a,{marginLeft:0},function(){return a.getBoundingClientRect().left}))+"px"}),r.each({margin:"",padding:"",border:"Width"},function(a,b){r.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];d<4;d++)e[a+ca[d]+b]=f[d]||f[d-2]||f[0];return e}},La.test(a)||(r.cssHooks[a+b].set=Ya)}),r.fn.extend({css:function(a,b){return T(this,function(a,b,c){var d,e,f={},g=0;if(Array.isArray(b)){for(d=Na(a),e=b.length;g<e;g++)f[b[g]]=r.css(a,b[g],!1,d);return f}return void 0!==c?r.style(a,b,c):r.css(a,b)},a,b,arguments.length>1)}});function _a(a,b,c,d,e){return new _a.prototype.init(a,b,c,d,e)}r.Tween=_a,_a.prototype={constructor:_a,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||r.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(r.cssNumber[c]?"":"px")},cur:function(){var a=_a.propHooks[this.prop];return a&&a.get?a.get(this):_a.propHooks._default.get(this)},run:function(a){var b,c=_a.propHooks[this.prop];return this.options.duration?this.pos=b=r.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):_a.propHooks._default.set(this),this}},_a.prototype.init.prototype=_a.prototype,_a.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=r.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){r.fx.step[a.prop]?r.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[r.cssProps[a.prop]]&&!r.cssHooks[a.prop]?a.elem[a.prop]=a.now:r.style(a.elem,a.prop,a.now+a.unit)}}},_a.propHooks.scrollTop=_a.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},r.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},r.fx=_a.prototype.init,r.fx.step={};var ab,bb,cb=/^(?:toggle|show|hide)$/,db=/queueHooks$/;function eb(){bb&&(d.hidden===!1&&a.requestAnimationFrame?a.requestAnimationFrame(eb):a.setTimeout(eb,r.fx.interval),r.fx.tick())}function fb(){return a.setTimeout(function(){ab=void 0}),ab=r.now()}function gb(a,b){var c,d=0,e={height:a};for(b=b?1:0;d<4;d+=2-b)c=ca[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function hb(a,b,c){for(var d,e=(kb.tweeners[b]||[]).concat(kb.tweeners["*"]),f=0,g=e.length;f<g;f++)if(d=e[f].call(c,b,a))return d}function ib(a,b,c){var d,e,f,g,h,i,j,k,l="width"in b||"height"in b,m=this,n={},o=a.style,p=a.nodeType&&da(a),q=W.get(a,"fxshow");c.queue||(g=r._queueHooks(a,"fx"),null==g.unqueued&&(g.unqueued=0,h=g.empty.fire,g.empty.fire=function(){g.unqueued||h()}),g.unqueued++,m.always(function(){m.always(function(){g.unqueued--,r.queue(a,"fx").length||g.empty.fire()})}));for(d in b)if(e=b[d],cb.test(e)){if(delete b[d],f=f||"toggle"===e,e===(p?"hide":"show")){if("show"!==e||!q||void 0===q[d])continue;p=!0}n[d]=q&&q[d]||r.style(a,d)}if(i=!r.isEmptyObject(b),i||!r.isEmptyObject(n)){l&&1===a.nodeType&&(c.overflow=[o.overflow,o.overflowX,o.overflowY],j=q&&q.display,null==j&&(j=W.get(a,"display")),k=r.css(a,"display"),"none"===k&&(j?k=j:(ia([a],!0),j=a.style.display||j,k=r.css(a,"display"),ia([a]))),("inline"===k||"inline-block"===k&&null!=j)&&"none"===r.css(a,"float")&&(i||(m.done(function(){o.display=j}),null==j&&(k=o.display,j="none"===k?"":k)),o.display="inline-block")),c.overflow&&(o.overflow="hidden",m.always(function(){o.overflow=c.overflow[0],o.overflowX=c.overflow[1],o.overflowY=c.overflow[2]})),i=!1;for(d in n)i||(q?"hidden"in q&&(p=q.hidden):q=W.access(a,"fxshow",{display:j}),f&&(q.hidden=!p),p&&ia([a],!0),m.done(function(){p||ia([a]),W.remove(a,"fxshow");for(d in n)r.style(a,d,n[d])})),i=hb(p?q[d]:0,d,m),d in q||(q[d]=i.start,p&&(i.end=i.start,i.start=0))}}function jb(a,b){var c,d,e,f,g;for(c in a)if(d=r.camelCase(c),e=b[d],f=a[c],Array.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=r.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function kb(a,b,c){var d,e,f=0,g=kb.prefilters.length,h=r.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=ab||fb(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;g<i;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),f<1&&i?c:(i||h.notifyWith(a,[j,1,0]),h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:r.extend({},b),opts:r.extend(!0,{specialEasing:{},easing:r.easing._default},c),originalProperties:b,originalOptions:c,startTime:ab||fb(),duration:c.duration,tweens:[],createTween:function(b,c){var d=r.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;c<d;c++)j.tweens[c].run(1);return b?(h.notifyWith(a,[j,1,0]),h.resolveWith(a,[j,b])):h.rejectWith(a,[j,b]),this}}),k=j.props;for(jb(k,j.opts.specialEasing);f<g;f++)if(d=kb.prefilters[f].call(j,a,k,j.opts))return r.isFunction(d.stop)&&(r._queueHooks(j.elem,j.opts.queue).stop=r.proxy(d.stop,d)),d;return r.map(k,hb,j),r.isFunction(j.opts.start)&&j.opts.start.call(a,j),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always),r.fx.timer(r.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j}r.Animation=r.extend(kb,{tweeners:{"*":[function(a,b){var c=this.createTween(a,b);return fa(c.elem,a,ba.exec(b),c),c}]},tweener:function(a,b){r.isFunction(a)?(b=a,a=["*"]):a=a.match(L);for(var c,d=0,e=a.length;d<e;d++)c=a[d],kb.tweeners[c]=kb.tweeners[c]||[],kb.tweeners[c].unshift(b)},prefilters:[ib],prefilter:function(a,b){b?kb.prefilters.unshift(a):kb.prefilters.push(a)}}),r.speed=function(a,b,c){var d=a&&"object"==typeof a?r.extend({},a):{complete:c||!c&&b||r.isFunction(a)&&a,duration:a,easing:c&&b||b&&!r.isFunction(b)&&b};return r.fx.off?d.duration=0:"number"!=typeof d.duration&&(d.duration in r.fx.speeds?d.duration=r.fx.speeds[d.duration]:d.duration=r.fx.speeds._default),null!=d.queue&&d.queue!==!0||(d.queue="fx"),d.old=d.complete,d.complete=function(){r.isFunction(d.old)&&d.old.call(this),d.queue&&r.dequeue(this,d.queue)},d},r.fn.extend({fadeTo:function(a,b,c,d){return this.filter(da).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=r.isEmptyObject(a),f=r.speed(b,c,d),g=function(){var b=kb(this,r.extend({},a),f);(e||W.get(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=r.timers,g=W.get(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&db.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));!b&&c||r.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=W.get(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=r.timers,g=d?d.length:0;for(c.finish=!0,r.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;b<g;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),r.each(["toggle","show","hide"],function(a,b){var c=r.fn[b];r.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(gb(b,!0),a,d,e)}}),r.each({slideDown:gb("show"),slideUp:gb("hide"),slideToggle:gb("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){r.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),r.timers=[],r.fx.tick=function(){var a,b=0,c=r.timers;for(ab=r.now();b<c.length;b++)a=c[b],a()||c[b]!==a||c.splice(b--,1);c.length||r.fx.stop(),ab=void 0},r.fx.timer=function(a){r.timers.push(a),r.fx.start()},r.fx.interval=13,r.fx.start=function(){bb||(bb=!0,eb())},r.fx.stop=function(){bb=null},r.fx.speeds={slow:600,fast:200,_default:400},r.fn.delay=function(b,c){return b=r.fx?r.fx.speeds[b]||b:b,c=c||"fx",this.queue(c,function(c,d){var e=a.setTimeout(c,b);d.stop=function(){a.clearTimeout(e)}})},function(){var a=d.createElement("input"),b=d.createElement("select"),c=b.appendChild(d.createElement("option"));a.type="checkbox",o.checkOn=""!==a.value,o.optSelected=c.selected,a=d.createElement("input"),a.value="t",a.type="radio",o.radioValue="t"===a.value}();var lb,mb=r.expr.attrHandle;r.fn.extend({attr:function(a,b){return T(this,r.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){r.removeAttr(this,a)})}}),r.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return"undefined"==typeof a.getAttribute?r.prop(a,b,c):(1===f&&r.isXMLDoc(a)||(e=r.attrHooks[b.toLowerCase()]||(r.expr.match.bool.test(b)?lb:void 0)),void 0!==c?null===c?void r.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=r.find.attr(a,b), -null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!o.radioValue&&"radio"===b&&B(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d=0,e=b&&b.match(L);if(e&&1===a.nodeType)while(c=e[d++])a.removeAttribute(c)}}),lb={set:function(a,b,c){return b===!1?r.removeAttr(a,c):a.setAttribute(c,c),c}},r.each(r.expr.match.bool.source.match(/\w+/g),function(a,b){var c=mb[b]||r.find.attr;mb[b]=function(a,b,d){var e,f,g=b.toLowerCase();return d||(f=mb[g],mb[g]=e,e=null!=c(a,b,d)?g:null,mb[g]=f),e}});var nb=/^(?:input|select|textarea|button)$/i,ob=/^(?:a|area)$/i;r.fn.extend({prop:function(a,b){return T(this,r.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[r.propFix[a]||a]})}}),r.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&r.isXMLDoc(a)||(b=r.propFix[b]||b,e=r.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=r.find.attr(a,"tabindex");return b?parseInt(b,10):nb.test(a.nodeName)||ob.test(a.nodeName)&&a.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),o.optSelected||(r.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),r.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){r.propFix[this.toLowerCase()]=this});function pb(a){var b=a.match(L)||[];return b.join(" ")}function qb(a){return a.getAttribute&&a.getAttribute("class")||""}r.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).addClass(a.call(this,b,qb(this)))});if("string"==typeof a&&a){b=a.match(L)||[];while(c=this[i++])if(e=qb(c),d=1===c.nodeType&&" "+pb(e)+" "){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=pb(d),e!==h&&c.setAttribute("class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).removeClass(a.call(this,b,qb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(L)||[];while(c=this[i++])if(e=qb(c),d=1===c.nodeType&&" "+pb(e)+" "){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=pb(d),e!==h&&c.setAttribute("class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):r.isFunction(a)?this.each(function(c){r(this).toggleClass(a.call(this,c,qb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=r(this),f=a.match(L)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=qb(this),b&&W.set(this,"__className__",b),this.setAttribute&&this.setAttribute("class",b||a===!1?"":W.get(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+pb(qb(c))+" ").indexOf(b)>-1)return!0;return!1}});var rb=/\r/g;r.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=r.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,r(this).val()):a,null==e?e="":"number"==typeof e?e+="":Array.isArray(e)&&(e=r.map(e,function(a){return null==a?"":a+""})),b=r.valHooks[this.type]||r.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=r.valHooks[e.type]||r.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(rb,""):null==c?"":c)}}}),r.extend({valHooks:{option:{get:function(a){var b=r.find.attr(a,"value");return null!=b?b:pb(r.text(a))}},select:{get:function(a){var b,c,d,e=a.options,f=a.selectedIndex,g="select-one"===a.type,h=g?null:[],i=g?f+1:e.length;for(d=f<0?i:g?f:0;d<i;d++)if(c=e[d],(c.selected||d===f)&&!c.disabled&&(!c.parentNode.disabled||!B(c.parentNode,"optgroup"))){if(b=r(c).val(),g)return b;h.push(b)}return h},set:function(a,b){var c,d,e=a.options,f=r.makeArray(b),g=e.length;while(g--)d=e[g],(d.selected=r.inArray(r.valHooks.option.get(d),f)>-1)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),r.each(["radio","checkbox"],function(){r.valHooks[this]={set:function(a,b){if(Array.isArray(b))return a.checked=r.inArray(r(a).val(),b)>-1}},o.checkOn||(r.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var sb=/^(?:focusinfocus|focusoutblur)$/;r.extend(r.event,{trigger:function(b,c,e,f){var g,h,i,j,k,m,n,o=[e||d],p=l.call(b,"type")?b.type:b,q=l.call(b,"namespace")?b.namespace.split("."):[];if(h=i=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!sb.test(p+r.event.triggered)&&(p.indexOf(".")>-1&&(q=p.split("."),p=q.shift(),q.sort()),k=p.indexOf(":")<0&&"on"+p,b=b[r.expando]?b:new r.Event(p,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=q.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:r.makeArray(c,[b]),n=r.event.special[p]||{},f||!n.trigger||n.trigger.apply(e,c)!==!1)){if(!f&&!n.noBubble&&!r.isWindow(e)){for(j=n.delegateType||p,sb.test(j+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),i=h;i===(e.ownerDocument||d)&&o.push(i.defaultView||i.parentWindow||a)}g=0;while((h=o[g++])&&!b.isPropagationStopped())b.type=g>1?j:n.bindType||p,m=(W.get(h,"events")||{})[b.type]&&W.get(h,"handle"),m&&m.apply(h,c),m=k&&h[k],m&&m.apply&&U(h)&&(b.result=m.apply(h,c),b.result===!1&&b.preventDefault());return b.type=p,f||b.isDefaultPrevented()||n._default&&n._default.apply(o.pop(),c)!==!1||!U(e)||k&&r.isFunction(e[p])&&!r.isWindow(e)&&(i=e[k],i&&(e[k]=null),r.event.triggered=p,e[p](),r.event.triggered=void 0,i&&(e[k]=i)),b.result}},simulate:function(a,b,c){var d=r.extend(new r.Event,c,{type:a,isSimulated:!0});r.event.trigger(d,null,b)}}),r.fn.extend({trigger:function(a,b){return this.each(function(){r.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];if(c)return r.event.trigger(a,b,c,!0)}}),r.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(a,b){r.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),r.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),o.focusin="onfocusin"in a,o.focusin||r.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){r.event.simulate(b,a.target,r.event.fix(a))};r.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=W.access(d,b);e||d.addEventListener(a,c,!0),W.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=W.access(d,b)-1;e?W.access(d,b,e):(d.removeEventListener(a,c,!0),W.remove(d,b))}}});var tb=a.location,ub=r.now(),vb=/\?/;r.parseXML=function(b){var c;if(!b||"string"!=typeof b)return null;try{c=(new a.DOMParser).parseFromString(b,"text/xml")}catch(d){c=void 0}return c&&!c.getElementsByTagName("parsererror").length||r.error("Invalid XML: "+b),c};var wb=/\[\]$/,xb=/\r?\n/g,yb=/^(?:submit|button|image|reset|file)$/i,zb=/^(?:input|select|textarea|keygen)/i;function Ab(a,b,c,d){var e;if(Array.isArray(b))r.each(b,function(b,e){c||wb.test(a)?d(a,e):Ab(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==r.type(b))d(a,b);else for(e in b)Ab(a+"["+e+"]",b[e],c,d)}r.param=function(a,b){var c,d=[],e=function(a,b){var c=r.isFunction(b)?b():b;d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(null==c?"":c)};if(Array.isArray(a)||a.jquery&&!r.isPlainObject(a))r.each(a,function(){e(this.name,this.value)});else for(c in a)Ab(c,a[c],b,e);return d.join("&")},r.fn.extend({serialize:function(){return r.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=r.prop(this,"elements");return a?r.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!r(this).is(":disabled")&&zb.test(this.nodeName)&&!yb.test(a)&&(this.checked||!ja.test(a))}).map(function(a,b){var c=r(this).val();return null==c?null:Array.isArray(c)?r.map(c,function(a){return{name:b.name,value:a.replace(xb,"\r\n")}}):{name:b.name,value:c.replace(xb,"\r\n")}}).get()}});var Bb=/%20/g,Cb=/#.*$/,Db=/([?&])_=[^&]*/,Eb=/^(.*?):[ \t]*([^\r\n]*)$/gm,Fb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Gb=/^(?:GET|HEAD)$/,Hb=/^\/\//,Ib={},Jb={},Kb="*/".concat("*"),Lb=d.createElement("a");Lb.href=tb.href;function Mb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(L)||[];if(r.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Nb(a,b,c,d){var e={},f=a===Jb;function g(h){var i;return e[h]=!0,r.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Ob(a,b){var c,d,e=r.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&r.extend(!0,a,d),a}function Pb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}if(f)return f!==i[0]&&i.unshift(f),c[f]}function Qb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}r.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:tb.href,type:"GET",isLocal:Fb.test(tb.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Kb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":r.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Ob(Ob(a,r.ajaxSettings),b):Ob(r.ajaxSettings,a)},ajaxPrefilter:Mb(Ib),ajaxTransport:Mb(Jb),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var e,f,g,h,i,j,k,l,m,n,o=r.ajaxSetup({},c),p=o.context||o,q=o.context&&(p.nodeType||p.jquery)?r(p):r.event,s=r.Deferred(),t=r.Callbacks("once memory"),u=o.statusCode||{},v={},w={},x="canceled",y={readyState:0,getResponseHeader:function(a){var b;if(k){if(!h){h={};while(b=Eb.exec(g))h[b[1].toLowerCase()]=b[2]}b=h[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return k?g:null},setRequestHeader:function(a,b){return null==k&&(a=w[a.toLowerCase()]=w[a.toLowerCase()]||a,v[a]=b),this},overrideMimeType:function(a){return null==k&&(o.mimeType=a),this},statusCode:function(a){var b;if(a)if(k)y.always(a[y.status]);else for(b in a)u[b]=[u[b],a[b]];return this},abort:function(a){var b=a||x;return e&&e.abort(b),A(0,b),this}};if(s.promise(y),o.url=((b||o.url||tb.href)+"").replace(Hb,tb.protocol+"//"),o.type=c.method||c.type||o.method||o.type,o.dataTypes=(o.dataType||"*").toLowerCase().match(L)||[""],null==o.crossDomain){j=d.createElement("a");try{j.href=o.url,j.href=j.href,o.crossDomain=Lb.protocol+"//"+Lb.host!=j.protocol+"//"+j.host}catch(z){o.crossDomain=!0}}if(o.data&&o.processData&&"string"!=typeof o.data&&(o.data=r.param(o.data,o.traditional)),Nb(Ib,o,c,y),k)return y;l=r.event&&o.global,l&&0===r.active++&&r.event.trigger("ajaxStart"),o.type=o.type.toUpperCase(),o.hasContent=!Gb.test(o.type),f=o.url.replace(Cb,""),o.hasContent?o.data&&o.processData&&0===(o.contentType||"").indexOf("application/x-www-form-urlencoded")&&(o.data=o.data.replace(Bb,"+")):(n=o.url.slice(f.length),o.data&&(f+=(vb.test(f)?"&":"?")+o.data,delete o.data),o.cache===!1&&(f=f.replace(Db,"$1"),n=(vb.test(f)?"&":"?")+"_="+ub++ +n),o.url=f+n),o.ifModified&&(r.lastModified[f]&&y.setRequestHeader("If-Modified-Since",r.lastModified[f]),r.etag[f]&&y.setRequestHeader("If-None-Match",r.etag[f])),(o.data&&o.hasContent&&o.contentType!==!1||c.contentType)&&y.setRequestHeader("Content-Type",o.contentType),y.setRequestHeader("Accept",o.dataTypes[0]&&o.accepts[o.dataTypes[0]]?o.accepts[o.dataTypes[0]]+("*"!==o.dataTypes[0]?", "+Kb+"; q=0.01":""):o.accepts["*"]);for(m in o.headers)y.setRequestHeader(m,o.headers[m]);if(o.beforeSend&&(o.beforeSend.call(p,y,o)===!1||k))return y.abort();if(x="abort",t.add(o.complete),y.done(o.success),y.fail(o.error),e=Nb(Jb,o,c,y)){if(y.readyState=1,l&&q.trigger("ajaxSend",[y,o]),k)return y;o.async&&o.timeout>0&&(i=a.setTimeout(function(){y.abort("timeout")},o.timeout));try{k=!1,e.send(v,A)}catch(z){if(k)throw z;A(-1,z)}}else A(-1,"No Transport");function A(b,c,d,h){var j,m,n,v,w,x=c;k||(k=!0,i&&a.clearTimeout(i),e=void 0,g=h||"",y.readyState=b>0?4:0,j=b>=200&&b<300||304===b,d&&(v=Pb(o,y,d)),v=Qb(o,v,y,j),j?(o.ifModified&&(w=y.getResponseHeader("Last-Modified"),w&&(r.lastModified[f]=w),w=y.getResponseHeader("etag"),w&&(r.etag[f]=w)),204===b||"HEAD"===o.type?x="nocontent":304===b?x="notmodified":(x=v.state,m=v.data,n=v.error,j=!n)):(n=x,!b&&x||(x="error",b<0&&(b=0))),y.status=b,y.statusText=(c||x)+"",j?s.resolveWith(p,[m,x,y]):s.rejectWith(p,[y,x,n]),y.statusCode(u),u=void 0,l&&q.trigger(j?"ajaxSuccess":"ajaxError",[y,o,j?m:n]),t.fireWith(p,[y,x]),l&&(q.trigger("ajaxComplete",[y,o]),--r.active||r.event.trigger("ajaxStop")))}return y},getJSON:function(a,b,c){return r.get(a,b,c,"json")},getScript:function(a,b){return r.get(a,void 0,b,"script")}}),r.each(["get","post"],function(a,b){r[b]=function(a,c,d,e){return r.isFunction(c)&&(e=e||d,d=c,c=void 0),r.ajax(r.extend({url:a,type:b,dataType:e,data:c,success:d},r.isPlainObject(a)&&a))}}),r._evalUrl=function(a){return r.ajax({url:a,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},r.fn.extend({wrapAll:function(a){var b;return this[0]&&(r.isFunction(a)&&(a=a.call(this[0])),b=r(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this},wrapInner:function(a){return r.isFunction(a)?this.each(function(b){r(this).wrapInner(a.call(this,b))}):this.each(function(){var b=r(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=r.isFunction(a);return this.each(function(c){r(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(a){return this.parent(a).not("body").each(function(){r(this).replaceWith(this.childNodes)}),this}}),r.expr.pseudos.hidden=function(a){return!r.expr.pseudos.visible(a)},r.expr.pseudos.visible=function(a){return!!(a.offsetWidth||a.offsetHeight||a.getClientRects().length)},r.ajaxSettings.xhr=function(){try{return new a.XMLHttpRequest}catch(b){}};var Rb={0:200,1223:204},Sb=r.ajaxSettings.xhr();o.cors=!!Sb&&"withCredentials"in Sb,o.ajax=Sb=!!Sb,r.ajaxTransport(function(b){var c,d;if(o.cors||Sb&&!b.crossDomain)return{send:function(e,f){var g,h=b.xhr();if(h.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(g in b.xhrFields)h[g]=b.xhrFields[g];b.mimeType&&h.overrideMimeType&&h.overrideMimeType(b.mimeType),b.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest");for(g in e)h.setRequestHeader(g,e[g]);c=function(a){return function(){c&&(c=d=h.onload=h.onerror=h.onabort=h.onreadystatechange=null,"abort"===a?h.abort():"error"===a?"number"!=typeof h.status?f(0,"error"):f(h.status,h.statusText):f(Rb[h.status]||h.status,h.statusText,"text"!==(h.responseType||"text")||"string"!=typeof h.responseText?{binary:h.response}:{text:h.responseText},h.getAllResponseHeaders()))}},h.onload=c(),d=h.onerror=c("error"),void 0!==h.onabort?h.onabort=d:h.onreadystatechange=function(){4===h.readyState&&a.setTimeout(function(){c&&d()})},c=c("abort");try{h.send(b.hasContent&&b.data||null)}catch(i){if(c)throw i}},abort:function(){c&&c()}}}),r.ajaxPrefilter(function(a){a.crossDomain&&(a.contents.script=!1)}),r.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return r.globalEval(a),a}}}),r.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),r.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(e,f){b=r("<script>").prop({charset:a.scriptCharset,src:a.url}).on("load error",c=function(a){b.remove(),c=null,a&&f("error"===a.type?404:200,a.type)}),d.head.appendChild(b[0])},abort:function(){c&&c()}}}});var Tb=[],Ub=/(=)\?(?=&|$)|\?\?/;r.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Tb.pop()||r.expando+"_"+ub++;return this[a]=!0,a}}),r.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(Ub.test(b.url)?"url":"string"==typeof b.data&&0===(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ub.test(b.data)&&"data");if(h||"jsonp"===b.dataTypes[0])return e=b.jsonpCallback=r.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(Ub,"$1"+e):b.jsonp!==!1&&(b.url+=(vb.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||r.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){void 0===f?r(a).removeProp(e):a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,Tb.push(e)),g&&r.isFunction(f)&&f(g[0]),g=f=void 0}),"script"}),o.createHTMLDocument=function(){var a=d.implementation.createHTMLDocument("").body;return a.innerHTML="<form></form><form></form>",2===a.childNodes.length}(),r.parseHTML=function(a,b,c){if("string"!=typeof a)return[];"boolean"==typeof b&&(c=b,b=!1);var e,f,g;return b||(o.createHTMLDocument?(b=d.implementation.createHTMLDocument(""),e=b.createElement("base"),e.href=d.location.href,b.head.appendChild(e)):b=d),f=C.exec(a),g=!c&&[],f?[b.createElement(f[1])]:(f=qa([a],b,g),g&&g.length&&r(g).remove(),r.merge([],f.childNodes))},r.fn.load=function(a,b,c){var d,e,f,g=this,h=a.indexOf(" ");return h>-1&&(d=pb(a.slice(h)),a=a.slice(0,h)),r.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(e="POST"),g.length>0&&r.ajax({url:a,type:e||"GET",dataType:"html",data:b}).done(function(a){f=arguments,g.html(d?r("<div>").append(r.parseHTML(a)).find(d):a)}).always(c&&function(a,b){g.each(function(){c.apply(this,f||[a.responseText,b,a])})}),this},r.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){r.fn[b]=function(a){return this.on(b,a)}}),r.expr.pseudos.animated=function(a){return r.grep(r.timers,function(b){return a===b.elem}).length},r.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=r.css(a,"position"),l=r(a),m={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=r.css(a,"top"),i=r.css(a,"left"),j=("absolute"===k||"fixed"===k)&&(f+i).indexOf("auto")>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),r.isFunction(b)&&(b=b.call(a,c,r.extend({},h))),null!=b.top&&(m.top=b.top-h.top+g),null!=b.left&&(m.left=b.left-h.left+e),"using"in b?b.using.call(a,m):l.css(m)}},r.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){r.offset.setOffset(this,a,b)});var b,c,d,e,f=this[0];if(f)return f.getClientRects().length?(d=f.getBoundingClientRect(),b=f.ownerDocument,c=b.documentElement,e=b.defaultView,{top:d.top+e.pageYOffset-c.clientTop,left:d.left+e.pageXOffset-c.clientLeft}):{top:0,left:0}},position:function(){if(this[0]){var a,b,c=this[0],d={top:0,left:0};return"fixed"===r.css(c,"position")?b=c.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),B(a[0],"html")||(d=a.offset()),d={top:d.top+r.css(a[0],"borderTopWidth",!0),left:d.left+r.css(a[0],"borderLeftWidth",!0)}),{top:b.top-d.top-r.css(c,"marginTop",!0),left:b.left-d.left-r.css(c,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent;while(a&&"static"===r.css(a,"position"))a=a.offsetParent;return a||ra})}}),r.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c="pageYOffset"===b;r.fn[a]=function(d){return T(this,function(a,d,e){var f;return r.isWindow(a)?f=a:9===a.nodeType&&(f=a.defaultView),void 0===e?f?f[b]:a[d]:void(f?f.scrollTo(c?f.pageXOffset:e,c?e:f.pageYOffset):a[d]=e)},a,d,arguments.length)}}),r.each(["top","left"],function(a,b){r.cssHooks[b]=Pa(o.pixelPosition,function(a,c){if(c)return c=Oa(a,b),Ma.test(c)?r(a).position()[b]+"px":c})}),r.each({Height:"height",Width:"width"},function(a,b){r.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){r.fn[d]=function(e,f){var g=arguments.length&&(c||"boolean"!=typeof e),h=c||(e===!0||f===!0?"margin":"border");return T(this,function(b,c,e){var f;return r.isWindow(b)?0===d.indexOf("outer")?b["inner"+a]:b.document.documentElement["client"+a]:9===b.nodeType?(f=b.documentElement,Math.max(b.body["scroll"+a],f["scroll"+a],b.body["offset"+a],f["offset"+a],f["client"+a])):void 0===e?r.css(b,c,h):r.style(b,c,e,h)},b,g?e:void 0,g)}})}),r.fn.extend({bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}}),r.holdReady=function(a){a?r.readyWait++:r.ready(!0)},r.isArray=Array.isArray,r.parseJSON=JSON.parse,r.nodeName=B,"function"==typeof define&&define.amd&&define("jquery",[],function(){return r});var Vb=a.jQuery,Wb=a.$;return r.noConflict=function(b){return a.$===r&&(a.$=Wb),b&&a.jQuery===r&&(a.jQuery=Vb),r},b||(a.jQuery=a.$=r),r}); +/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}k.fn=k.prototype={jquery:f,constructor:k,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=k.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return k.each(this,e)},map:function(n){return this.pushStack(k.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},k.extend=k.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(k.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||k.isPlainObject(n)?n:{},i=!1,a[t]=k.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},k.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t){b(e,{nonce:t&&t.nonce})},each:function(e,t){var n,r=0;if(d(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},trim:function(e){return null==e?"":(e+"").replace(p,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(d(Object(e))?k.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(d(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g.apply([],a)},guid:1,support:y}),"function"==typeof Symbol&&(k.fn[Symbol.iterator]=t[Symbol.iterator]),k.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var h=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,k="sizzle"+1*new Date,m=n.document,S=0,r=0,p=ue(),x=ue(),N=ue(),A=ue(),D=function(e,t){return e===t&&(l=!0),0},j={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",$=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",F=new RegExp(M+"+","g"),B=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="<a id='"+k+"'></a><select id='"+k+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!==C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!==C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&j.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(D),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(F," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[S,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[S,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[k]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace(B,"$1"));return s[k]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[S,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[k]||(e[k]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===S&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[k]&&(v=Ce(v)),y&&!y[k]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[k]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(B,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace(B," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=N[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[k]?i.push(a):o.push(a);(a=N(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=S+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t===C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument===C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(S=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(S=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=k.split("").sort(D).join("")===k,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);k.find=h,k.expr=h.selectors,k.expr[":"]=k.expr.pseudos,k.uniqueSort=k.unique=h.uniqueSort,k.text=h.getText,k.isXMLDoc=h.isXML,k.contains=h.contains,k.escapeSelector=h.escape;var T=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&k(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},N=k.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var D=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1<i.call(n,e)!==r}):k.filter(n,e,r)}k.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?k.find.matchesSelector(r,e)?[r]:[]:k.find.matches(e,k.grep(t,function(e){return 1===e.nodeType}))},k.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(k(e).filter(function(){for(t=0;t<r;t++)if(k.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)k.find(e,i[t],n);return 1<r?k.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&N.test(e)?k(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(k.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&k(e);if(!N.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&k.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?k.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(k(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(k.uniqueSort(k.merge(this.get(),k(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),k.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return T(e,"parentNode")},parentsUntil:function(e,t,n){return T(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return T(e,"nextSibling")},prevAll:function(e){return T(e,"previousSibling")},nextUntil:function(e,t,n){return T(e,"nextSibling",n)},prevUntil:function(e,t,n){return T(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return"undefined"!=typeof e.contentDocument?e.contentDocument:(A(e,"template")&&(e=e.content||e),k.merge([],e.childNodes))}},function(r,i){k.fn[r]=function(e,t){var n=k.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=k.filter(t,n)),1<this.length&&(O[r]||k.uniqueSort(n),H.test(r)&&n.reverse()),this.pushStack(n)}});var R=/[^\x20\t\r\n\f]+/g;function M(e){return e}function I(e){throw e}function W(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}k.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},k.each(e.match(R)||[],function(e,t){n[t]=!0}),n):k.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){k.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return k.each(arguments,function(e,t){var n;while(-1<(n=k.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<k.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},k.extend({Deferred:function(e){var o=[["notify","progress",k.Callbacks("memory"),k.Callbacks("memory"),2],["resolve","done",k.Callbacks("once memory"),k.Callbacks("once memory"),0,"resolved"],["reject","fail",k.Callbacks("once memory"),k.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return k.Deferred(function(r){k.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,M,s),l(u,o,I,s)):(u++,t.call(e,l(u,o,M,s),l(u,o,I,s),l(u,o,M,o.notifyWith))):(a!==M&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){k.Deferred.exceptionHook&&k.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==I&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(k.Deferred.getStackHook&&(t.stackTrace=k.Deferred.getStackHook()),C.setTimeout(t))}}return k.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:M,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:M)),o[2][3].add(l(0,e,m(n)?n:I))}).promise()},promise:function(e){return null!=e?k.extend(e,a):a}},s={};return k.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=k.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(W(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)W(i[t],a(t),o.reject);return o.promise()}});var $=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;k.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&$.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},k.readyException=function(e){C.setTimeout(function(){throw e})};var F=k.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),k.ready()}k.fn.ready=function(e){return F.then(e)["catch"](function(e){k.readyException(e)}),this},k.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--k.readyWait:k.isReady)||(k.isReady=!0)!==e&&0<--k.readyWait||F.resolveWith(E,[k])}}),k.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(k.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var _=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)_(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(k(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},z=/^-ms-/,U=/-([a-z])/g;function X(e,t){return t.toUpperCase()}function V(e){return e.replace(z,"ms-").replace(U,X)}var G=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function Y(){this.expando=k.expando+Y.uid++}Y.uid=1,Y.prototype={cache:function(e){var t=e[this.expando];return t||(t={},G(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[V(t)]=n;else for(r in t)i[V(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][V(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(V):(t=V(t))in r?[t]:t.match(R)||[]).length;while(n--)delete r[t[n]]}(void 0===t||k.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!k.isEmptyObject(t)}};var Q=new Y,J=new Y,K=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Z=/[A-Z]/g;function ee(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(Z,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:K.test(i)?JSON.parse(i):i)}catch(e){}J.set(e,t,n)}else n=void 0;return n}k.extend({hasData:function(e){return J.hasData(e)||Q.hasData(e)},data:function(e,t,n){return J.access(e,t,n)},removeData:function(e,t){J.remove(e,t)},_data:function(e,t,n){return Q.access(e,t,n)},_removeData:function(e,t){Q.remove(e,t)}}),k.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=J.get(o),1===o.nodeType&&!Q.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=V(r.slice(5)),ee(o,r,i[r]));Q.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){J.set(this,n)}):_(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=J.get(o,n))?t:void 0!==(t=ee(o,n))?t:void 0;this.each(function(){J.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){J.remove(this,e)})}}),k.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Q.get(e,t),n&&(!r||Array.isArray(n)?r=Q.access(e,t,k.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=k.queue(e,t),r=n.length,i=n.shift(),o=k._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){k.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Q.get(e,n)||Q.access(e,n,{empty:k.Callbacks("once memory").add(function(){Q.remove(e,[t+"queue",n])})})}}),k.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?k.queue(this[0],t):void 0===n?this:this.each(function(){var e=k.queue(this,t,n);k._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&k.dequeue(this,t)})},dequeue:function(e){return this.each(function(){k.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=k.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Q.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var te=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ne=new RegExp("^(?:([+-])=|)("+te+")([a-z%]*)$","i"),re=["Top","Right","Bottom","Left"],ie=E.documentElement,oe=function(e){return k.contains(e.ownerDocument,e)},ae={composed:!0};ie.getRootNode&&(oe=function(e){return k.contains(e.ownerDocument,e)||e.getRootNode(ae)===e.ownerDocument});var se=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&oe(e)&&"none"===k.css(e,"display")},ue=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];for(o in i=n.apply(e,r||[]),t)e.style[o]=a[o];return i};function le(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return k.css(e,t,"")},u=s(),l=n&&n[3]||(k.cssNumber[t]?"":"px"),c=e.nodeType&&(k.cssNumber[t]||"px"!==l&&+u)&&ne.exec(k.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)k.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,k.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ce={};function fe(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Q.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&se(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ce[s])||(o=a.body.appendChild(a.createElement(s)),u=k.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ce[s]=u)))):"none"!==n&&(l[c]="none",Q.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}k.fn.extend({show:function(){return fe(this,!0)},hide:function(){return fe(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){se(this)?k(this).show():k(this).hide()})}});var pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Q.set(e[n],"globalEval",!t||Q.get(t[n],"globalEval"))}ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;var me,xe,be=/<|&#?\w+;/;function we(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))k.merge(p,o.nodeType?[o]:o);else if(be.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+k.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;k.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<k.inArray(o,r))i&&i.push(o);else if(l=oe(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}me=E.createDocumentFragment().appendChild(E.createElement("div")),(xe=E.createElement("input")).setAttribute("type","radio"),xe.setAttribute("checked","checked"),xe.setAttribute("name","t"),me.appendChild(xe),y.checkClone=me.cloneNode(!0).cloneNode(!0).lastChild.checked,me.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t<arguments.length;t++)u[t]=arguments[t];if(s.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,s)){a=k.event.handlers.call(this,s,l),t=0;while((i=a[t++])&&!s.isPropagationStopped()){s.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!s.isImmediatePropagationStopped())s.rnamespace&&!1!==o.namespace&&!s.rnamespace.test(o.namespace)||(s.handleObj=o,s.data=o.data,void 0!==(r=((k.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,u))&&!1===(s.result=r)&&(s.preventDefault(),s.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,s),s.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<k(i,this).index(l):k.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(k.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[k.expando]?e:new k.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&De(t,"click",ke),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&De(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Q.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},k.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},k.Event=function(e,t){if(!(this instanceof k.Event))return new k.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?ke:Se,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&k.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[k.expando]=!0},k.Event.prototype={constructor:k.Event,isDefaultPrevented:Se,isPropagationStopped:Se,isImmediatePropagationStopped:Se,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=ke,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=ke,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=ke,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},k.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&Te.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&Ce.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},k.event.addProp),k.each({focus:"focusin",blur:"focusout"},function(e,t){k.event.special[e]={setup:function(){return De(this,e,Ne),!1},trigger:function(){return De(this,e),!0},delegateType:t}}),k.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){k.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||k.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),k.fn.extend({on:function(e,t,n,r){return Ae(this,e,t,n,r)},one:function(e,t,n,r){return Ae(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,k(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Se),this.each(function(){k.event.remove(this,e,n,t)})}});var je=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/<script|<style|<link/i,Le=/checked\s*(?:[^=]|=\s*.checked.)/i,He=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n<r;n++)k.event.add(t,i,l[i][n]);J.hasData(e)&&(s=J.access(e),u=k.extend({},s),J.set(t,u))}}function Ie(n,r,i,o){r=g.apply([],r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&Le.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),Ie(t,r,i,o)});if(f&&(t=(e=we(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=k.map(ve(e,"script"),Pe)).length;c<f;c++)u=e,c!==p&&(u=k.clone(u,!0,!0),s&&k.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,k.map(a,Re),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Q.access(u,"globalEval")&&k.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?k._evalUrl&&!u.noModule&&k._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")}):b(u.textContent.replace(He,""),u,l))}return n}function We(e,t,n){for(var r,i=t?k.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||k.cleanData(ve(r)),r.parentNode&&(n&&oe(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}k.extend({htmlPrefilter:function(e){return e.replace(je,"<$1></$2>")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Me(o[r],a[r]);else Me(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=k.event.special,o=0;void 0!==(n=e[o]);o++)if(G(n)){if(t=n[Q.expando]){if(t.events)for(r in t.events)i[r]?k.event.remove(n,r):k.removeEvent(n,r,t.handle);n[Q.expando]=void 0}n[J.expando]&&(n[J.expando]=void 0)}}}),k.fn.extend({detach:function(e){return We(this,e,!0)},remove:function(e){return We(this,e)},text:function(e){return _(this,function(e){return void 0===e?k.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Ie(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Oe(this,e).appendChild(e)})},prepend:function(){return Ie(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Oe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(k.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return k.clone(this,e,t)})},html:function(e){return _(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!qe.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=k.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(k.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return Ie(this,arguments,function(e){var t=this.parentNode;k.inArray(this,n)<0&&(k.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),k.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){k.fn[e]=function(e){for(var t,n=[],r=k(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),k(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var $e=new RegExp("^("+te+")(?!px)[a-z%]+$","i"),Fe=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Be=new RegExp(re.join("|"),"i");function _e(e,t,n){var r,i,o,a,s=e.style;return(n=n||Fe(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||oe(e)||(a=k.style(e,t)),!y.pixelBoxStyles()&&$e.test(a)&&Be.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function ze(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(u){s.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",u.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",ie.appendChild(s).appendChild(u);var e=C.getComputedStyle(u);n="1%"!==e.top,a=12===t(e.marginLeft),u.style.right="60%",o=36===t(e.right),r=36===t(e.width),u.style.position="absolute",i=12===t(u.offsetWidth/3),ie.removeChild(s),u=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s=E.createElement("div"),u=E.createElement("div");u.style&&(u.style.backgroundClip="content-box",u.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===u.style.backgroundClip,k.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),a},scrollboxSize:function(){return e(),i}}))}();var Ue=["Webkit","Moz","ms"],Xe=E.createElement("div").style,Ve={};function Ge(e){var t=k.cssProps[e]||Ve[e];return t||(e in Xe?e:Ve[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Ue.length;while(n--)if((e=Ue[n]+t)in Xe)return e}(e)||e)}var Ye=/^(none|table(?!-c[ea]).+)/,Qe=/^--/,Je={position:"absolute",visibility:"hidden",display:"block"},Ke={letterSpacing:"0",fontWeight:"400"};function Ze(e,t,n){var r=ne.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function et(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=k.css(e,n+re[a],!0,i)),r?("content"===n&&(u-=k.css(e,"padding"+re[a],!0,i)),"margin"!==n&&(u-=k.css(e,"border"+re[a]+"Width",!0,i))):(u+=k.css(e,"padding"+re[a],!0,i),"padding"!==n?u+=k.css(e,"border"+re[a]+"Width",!0,i):s+=k.css(e,"border"+re[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function tt(e,t,n){var r=Fe(e),i=(!y.boxSizingReliable()||n)&&"border-box"===k.css(e,"boxSizing",!1,r),o=i,a=_e(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if($e.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||"auto"===a||!parseFloat(a)&&"inline"===k.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===k.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+et(e,t,n||(i?"border":"content"),o,r,a)+"px"}function nt(e,t,n,r,i){return new nt.prototype.init(e,t,n,r,i)}k.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=_e(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=V(t),u=Qe.test(t),l=e.style;if(u||(t=Ge(s)),a=k.cssHooks[t]||k.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=ne.exec(n))&&i[1]&&(n=le(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(k.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=V(t);return Qe.test(t)||(t=Ge(s)),(a=k.cssHooks[t]||k.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=_e(e,t,r)),"normal"===i&&t in Ke&&(i=Ke[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),k.each(["height","width"],function(e,u){k.cssHooks[u]={get:function(e,t,n){if(t)return!Ye.test(k.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?tt(e,u,n):ue(e,Je,function(){return tt(e,u,n)})},set:function(e,t,n){var r,i=Fe(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===k.css(e,"boxSizing",!1,i),s=n?et(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-et(e,u,"border",!1,i)-.5)),s&&(r=ne.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=k.css(e,u)),Ze(0,t,s)}}}),k.cssHooks.marginLeft=ze(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(_e(e,"marginLeft"))||e.getBoundingClientRect().left-ue(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),k.each({margin:"",padding:"",border:"Width"},function(i,o){k.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+re[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(k.cssHooks[i+o].set=Ze)}),k.fn.extend({css:function(e,t){return _(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Fe(e),i=t.length;a<i;a++)o[t[a]]=k.css(e,t[a],!1,r);return o}return void 0!==n?k.style(e,t,n):k.css(e,t)},e,t,1<arguments.length)}}),((k.Tween=nt).prototype={constructor:nt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||k.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(k.cssNumber[n]?"":"px")},cur:function(){var e=nt.propHooks[this.prop];return e&&e.get?e.get(this):nt.propHooks._default.get(this)},run:function(e){var t,n=nt.propHooks[this.prop];return this.options.duration?this.pos=t=k.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):nt.propHooks._default.set(this),this}}).init.prototype=nt.prototype,(nt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=k.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){k.fx.step[e.prop]?k.fx.step[e.prop](e):1!==e.elem.nodeType||!k.cssHooks[e.prop]&&null==e.elem.style[Ge(e.prop)]?e.elem[e.prop]=e.now:k.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=nt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},k.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},k.fx=nt.prototype.init,k.fx.step={};var rt,it,ot,at,st=/^(?:toggle|show|hide)$/,ut=/queueHooks$/;function lt(){it&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(lt):C.setTimeout(lt,k.fx.interval),k.fx.tick())}function ct(){return C.setTimeout(function(){rt=void 0}),rt=Date.now()}function ft(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=re[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function pt(e,t,n){for(var r,i=(dt.tweeners[t]||[]).concat(dt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function dt(o,e,t){var n,a,r=0,i=dt.prefilters.length,s=k.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=rt||ct(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:k.extend({},e),opts:k.extend(!0,{specialEasing:{},easing:k.easing._default},t),originalProperties:e,originalOptions:t,startTime:rt||ct(),duration:t.duration,tweens:[],createTween:function(e,t){var n=k.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=V(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=k.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=dt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(k._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return k.map(c,pt,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),k.fx.timer(k.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}k.Animation=k.extend(dt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return le(n.elem,e,ne.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(R);for(var n,r=0,i=e.length;r<i;r++)n=e[r],dt.tweeners[n]=dt.tweeners[n]||[],dt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&se(e),v=Q.get(e,"fxshow");for(r in n.queue||(null==(a=k._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,k.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],st.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||k.style(e,r)}if((u=!k.isEmptyObject(t))||!k.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Q.get(e,"display")),"none"===(c=k.css(e,"display"))&&(l?c=l:(fe([e],!0),l=e.style.display||l,c=k.css(e,"display"),fe([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===k.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Q.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&fe([e],!0),p.done(function(){for(r in g||fe([e]),Q.remove(e,"fxshow"),d)k.style(e,r,d[r])})),u=pt(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?dt.prefilters.unshift(e):dt.prefilters.push(e)}}),k.speed=function(e,t,n){var r=e&&"object"==typeof e?k.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return k.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in k.fx.speeds?r.duration=k.fx.speeds[r.duration]:r.duration=k.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&k.dequeue(this,r.queue)},r},k.fn.extend({fadeTo:function(e,t,n,r){return this.filter(se).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=k.isEmptyObject(t),o=k.speed(e,n,r),a=function(){var e=dt(this,k.extend({},t),o);(i||Q.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&!1!==i&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=k.timers,r=Q.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&ut.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||k.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Q.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=k.timers,o=n?n.length:0;for(t.finish=!0,k.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),k.each(["toggle","show","hide"],function(e,r){var i=k.fn[r];k.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(ft(r,!0),e,t,n)}}),k.each({slideDown:ft("show"),slideUp:ft("hide"),slideToggle:ft("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){k.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),k.timers=[],k.fx.tick=function(){var e,t=0,n=k.timers;for(rt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||k.fx.stop(),rt=void 0},k.fx.timer=function(e){k.timers.push(e),k.fx.start()},k.fx.interval=13,k.fx.start=function(){it||(it=!0,lt())},k.fx.stop=function(){it=null},k.fx.speeds={slow:600,fast:200,_default:400},k.fn.delay=function(r,e){return r=k.fx&&k.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},ot=E.createElement("input"),at=E.createElement("select").appendChild(E.createElement("option")),ot.type="checkbox",y.checkOn=""!==ot.value,y.optSelected=at.selected,(ot=E.createElement("input")).value="t",ot.type="radio",y.radioValue="t"===ot.value;var ht,gt=k.expr.attrHandle;k.fn.extend({attr:function(e,t){return _(this,k.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){k.removeAttr(this,e)})}}),k.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?k.prop(e,t,n):(1===o&&k.isXMLDoc(e)||(i=k.attrHooks[t.toLowerCase()]||(k.expr.match.bool.test(t)?ht:void 0)),void 0!==n?null===n?void k.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=k.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(R);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ht={set:function(e,t,n){return!1===t?k.removeAttr(e,n):e.setAttribute(n,n),n}},k.each(k.expr.match.bool.source.match(/\w+/g),function(e,t){var a=gt[t]||k.find.attr;gt[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=gt[o],gt[o]=r,r=null!=a(e,t,n)?o:null,gt[o]=i),r}});var vt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;function mt(e){return(e.match(R)||[]).join(" ")}function xt(e){return e.getAttribute&&e.getAttribute("class")||""}function bt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(R)||[]}k.fn.extend({prop:function(e,t){return _(this,k.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[k.propFix[e]||e]})}}),k.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&k.isXMLDoc(e)||(t=k.propFix[t]||t,i=k.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=k.find.attr(e,"tabindex");return t?parseInt(t,10):vt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(k.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),k.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){k.propFix[this.toLowerCase()]=this}),k.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).addClass(t.call(this,e,xt(this)))});if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).removeClass(t.call(this,e,xt(this)))});if(!arguments.length)return this.attr("class","");if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){k(this).toggleClass(i.call(this,e,xt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=k(this),r=bt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=xt(this))&&Q.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Q.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+mt(xt(n))+" ").indexOf(t))return!0;return!1}});var wt=/\r/g;k.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,k(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=k.map(t,function(e){return null==e?"":e+""})),(r=k.valHooks[this.type]||k.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=k.valHooks[t.type]||k.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(wt,""):null==e?"":e:void 0}}),k.extend({valHooks:{option:{get:function(e){var t=k.find.attr(e,"value");return null!=t?t:mt(k.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=k(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=k.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<k.inArray(k.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),k.each(["radio","checkbox"],function(){k.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<k.inArray(k(e).val(),t)}},y.checkOn||(k.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var Tt=/^(?:focusinfocus|focusoutblur)$/,Ct=function(e){e.stopPropagation()};k.extend(k.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!Tt.test(d+k.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[k.expando]?e:new k.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:k.makeArray(t,[e]),c=k.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,Tt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Q.get(o,"events")||{})[e.type]&&Q.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&G(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!G(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),k.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,Ct),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,Ct),k.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=k.extend(new k.Event,n,{type:e,isSimulated:!0});k.event.trigger(r,null,t)}}),k.fn.extend({trigger:function(e,t){return this.each(function(){k.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return k.event.trigger(e,t,n,!0)}}),y.focusin||k.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){k.event.simulate(r,e.target,k.event.fix(e))};k.event.special[r]={setup:function(){var e=this.ownerDocument||this,t=Q.access(e,r);t||e.addEventListener(n,i,!0),Q.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this,t=Q.access(e,r)-1;t?Q.access(e,r,t):(e.removeEventListener(n,i,!0),Q.remove(e,r))}}});var Et=C.location,kt=Date.now(),St=/\?/;k.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||k.error("Invalid XML: "+e),t};var Nt=/\[\]$/,At=/\r?\n/g,Dt=/^(?:submit|button|image|reset|file)$/i,jt=/^(?:input|select|textarea|keygen)/i;function qt(n,e,r,i){var t;if(Array.isArray(e))k.each(e,function(e,t){r||Nt.test(n)?i(n,t):qt(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)qt(n+"["+t+"]",e[t],r,i)}k.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!k.isPlainObject(e))k.each(e,function(){i(this.name,this.value)});else for(n in e)qt(n,e[n],t,i);return r.join("&")},k.fn.extend({serialize:function(){return k.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=k.prop(this,"elements");return e?k.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!k(this).is(":disabled")&&jt.test(this.nodeName)&&!Dt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=k(this).val();return null==n?null:Array.isArray(n)?k.map(n,function(e){return{name:t.name,value:e.replace(At,"\r\n")}}):{name:t.name,value:n.replace(At,"\r\n")}}).get()}});var Lt=/%20/g,Ht=/#.*$/,Ot=/([?&])_=[^&]*/,Pt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Rt=/^(?:GET|HEAD)$/,Mt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Ft=E.createElement("a");function Bt(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(R)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function _t(t,i,o,a){var s={},u=t===Wt;function l(e){var r;return s[e]=!0,k.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function zt(e,t){var n,r,i=k.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&k.extend(!0,e,r),e}Ft.href=Et.href,k.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Et.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Et.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":k.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,k.ajaxSettings),t):zt(k.ajaxSettings,e)},ajaxPrefilter:Bt(It),ajaxTransport:Bt(Wt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=k.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?k(y):k.event,x=k.Deferred(),b=k.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=Pt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||Et.href)+"").replace(Mt,Et.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(R)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Ft.protocol+"//"+Ft.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=k.param(v.data,v.traditional)),_t(It,v,t,T),h)return T;for(i in(g=k.event&&v.global)&&0==k.active++&&k.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Rt.test(v.type),f=v.url.replace(Ht,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Lt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(St.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Ot,"$1"),o=(St.test(f)?"&":"?")+"_="+kt+++o),v.url=f+o),v.ifModified&&(k.lastModified[f]&&T.setRequestHeader("If-Modified-Since",k.lastModified[f]),k.etag[f]&&T.setRequestHeader("If-None-Match",k.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+$t+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=_t(Wt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(k.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(k.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--k.active||k.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return k.get(e,t,n,"json")},getScript:function(e,t){return k.get(e,void 0,t,"script")}}),k.each(["get","post"],function(e,i){k[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),k.ajax(k.extend({url:e,type:i,dataType:r,data:t,success:n},k.isPlainObject(e)&&e))}}),k._evalUrl=function(e,t){return k.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){k.globalEval(e,t)}})},k.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=k(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){k(this).wrapInner(n.call(this,e))}):this.each(function(){var e=k(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){k(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){k(this).replaceWith(this.childNodes)}),this}}),k.expr.pseudos.hidden=function(e){return!k.expr.pseudos.visible(e)},k.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},k.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Ut={0:200,1223:204},Xt=k.ajaxSettings.xhr();y.cors=!!Xt&&"withCredentials"in Xt,y.ajax=Xt=!!Xt,k.ajaxTransport(function(i){var o,a;if(y.cors||Xt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Ut[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),k.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),k.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return k.globalEval(e),e}}}),k.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),k.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=k("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=mt(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&k.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?k("<div>").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}}),k.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),k.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),k.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||k.guid++,i},k.holdReady=function(e){e?k.readyWait++:k.ready(!0)},k.isArray=Array.isArray,k.parseJSON=JSON.parse,k.nodeName=A,k.isFunction=m,k.isWindow=x,k.camelCase=V,k.type=w,k.now=Date.now,k.isNumeric=function(e){var t=k.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},"function"==typeof define&&define.amd&&define("jquery",[],function(){return k});var Qt=C.jQuery,Jt=C.$;return k.noConflict=function(e){return C.$===k&&(C.$=Jt),e&&C.jQuery===k&&(C.jQuery=Qt),k},e||(C.jQuery=C.$=k),k}); diff --git a/libraries/normalize/normalize.css b/libraries/normalize/normalize.css new file mode 100644 index 0000000000000000000000000000000000000000..192eb9ce43389039996bc2e9344c5bb14b730d72 --- /dev/null +++ b/libraries/normalize/normalize.css @@ -0,0 +1,349 @@ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ + +html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* Sections + ========================================================================== */ + +/** + * Remove the margin in all browsers. + */ + +body { + margin: 0; +} + +/** + * Render the `main` element consistently in IE. + */ + +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Remove the gray background on active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** + * Add the correct font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove the border on images inside links in IE 10. + */ + +img { + border-style: none; +} + +/* Forms + ========================================================================== */ + +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + +button, +select { /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ + +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ + +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ + +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + +[type="search"] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ + +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* Interactive + ========================================================================== */ + +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ + +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ + +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ + +/** + * Add the correct display in IE 10+. + */ + +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ + +[hidden] { + display: none; +} diff --git a/libraries/qunit/qunit.css b/libraries/qunit/qunit.css old mode 100755 new mode 100644 index 1cf1609a0f61703fb7488f9ce5c68db2bc0d4e38..1f5459368713573bf9d29308988d5cebf96f510c --- a/libraries/qunit/qunit.css +++ b/libraries/qunit/qunit.css @@ -1,12 +1,12 @@ /*! - * QUnit 2.3.2 + * QUnit 2.9.2 * https://qunitjs.com/ * * Copyright jQuery Foundation and other contributors * Released under the MIT license * https://jquery.org/license * - * Date: 2017-04-18T02:19Z + * Date: 2019-02-21T22:49Z */ /** Font Family and Sizes */ diff --git a/libraries/qunit/qunit.js b/libraries/qunit/qunit.js old mode 100755 new mode 100644 index 03334cb6b9adb14d7aa9a8ce5e6eed01a09e3ed4..f66e5c72c58e076a9ad3125c2121794b2493ab06 --- a/libraries/qunit/qunit.js +++ b/libraries/qunit/qunit.js @@ -1,25 +1,26 @@ /*! - * QUnit 2.3.2 + * QUnit 2.9.2 * https://qunitjs.com/ * * Copyright jQuery Foundation and other contributors * Released under the MIT license * https://jquery.org/license * - * Date: 2017-04-18T02:19Z + * Date: 2019-02-21T22:49Z */ (function (global$1) { 'use strict'; - global$1 = 'default' in global$1 ? global$1['default'] : global$1; + global$1 = global$1 && global$1.hasOwnProperty('default') ? global$1['default'] : global$1; - var window = global$1.window; + var window$1 = global$1.window; + var self$1 = global$1.self; var console = global$1.console; - var setTimeout = global$1.setTimeout; + var setTimeout$1 = global$1.setTimeout; var clearTimeout = global$1.clearTimeout; - var document = window && window.document; - var navigator = window && window.navigator; + var document$1 = window$1 && window$1.document; + var navigator = window$1 && window$1.navigator; var localSessionStorage = function () { var x = "qunit-test-string"; @@ -32,6 +33,24 @@ } }(); + /** + * Returns a function that proxies to the given method name on the globals + * console object. The proxy will also detect if the console doesn't exist and + * will appropriately no-op. This allows support for IE9, which doesn't have a + * console if the developer tools are not open. + */ + function consoleProxy(method) { + return function () { + if (console) { + console[method].apply(console, arguments); + } + }; + } + + var Logger = { + warn: consoleProxy("warn") + }; + var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { @@ -128,9 +147,28 @@ return new Date().getTime(); }; + var hasPerformanceApi = detectPerformanceApi(); + var performance = hasPerformanceApi ? window$1.performance : undefined; + var performanceNow = hasPerformanceApi ? performance.now.bind(performance) : now; + + function detectPerformanceApi() { + return window$1 && typeof window$1.performance !== "undefined" && typeof window$1.performance.mark === "function" && typeof window$1.performance.measure === "function"; + } + + function measure(comment, startMark, endMark) { + + // `performance.measure` may fail if the mark could not be found. + // reasons a specific mark could not be found include: outside code invoking `performance.clearMarks()` + try { + performance.measure(comment, startMark, endMark); + } catch (ex) { + Logger.warn("performance.measure could not be executed because of ", ex.message); + } + } + var defined = { - document: window && window.document !== undefined, - setTimeout: setTimeout !== undefined + document: window$1 && window$1.document !== undefined, + setTimeout: setTimeout$1 !== undefined }; // Returns a new Array with the elements that are in a but not in b @@ -226,10 +264,8 @@ case "Function": case "Symbol": return type.toLowerCase(); - } - - if ((typeof obj === "undefined" ? "undefined" : _typeof(obj)) === "object") { - return "object"; + default: + return typeof obj === "undefined" ? "undefined" : _typeof(obj); } } @@ -587,7 +623,13 @@ return arguments.length === 2 || innerEquiv.apply(this, [].slice.call(arguments, 1)); } - return innerEquiv; + return function () { + var result = innerEquiv.apply(undefined, arguments); + + // Release any retained objects + pairs.length = 0; + return result; + }; })(); /** @@ -635,7 +677,13 @@ tests: [], childModules: [], testsRun: 0, - unskippedTestsRun: 0 + unskippedTestsRun: 0, + hooks: { + before: [], + beforeEach: [], + afterEach: [], + after: [] + } }, callbacks: {}, @@ -645,10 +693,10 @@ }; // take a predefined QUnit.config and extend the defaults - var globalConfig = window && window.QUnit && window.QUnit.config; + var globalConfig = window$1 && window$1.QUnit && window$1.QUnit.config; // only extend the global config if there is no QUnit overload - if (window && window.QUnit && !window.QUnit.version) { + if (window$1 && window$1.QUnit && !window$1.QUnit.version) { extend(config, globalConfig); } @@ -939,6 +987,264 @@ return dump; })(); + var SuiteReport = function () { + function SuiteReport(name, parentSuite) { + classCallCheck(this, SuiteReport); + + this.name = name; + this.fullName = parentSuite ? parentSuite.fullName.concat(name) : []; + + this.tests = []; + this.childSuites = []; + + if (parentSuite) { + parentSuite.pushChildSuite(this); + } + } + + createClass(SuiteReport, [{ + key: "start", + value: function start(recordTime) { + if (recordTime) { + this._startTime = performanceNow(); + + if (performance) { + var suiteLevel = this.fullName.length; + performance.mark("qunit_suite_" + suiteLevel + "_start"); + } + } + + return { + name: this.name, + fullName: this.fullName.slice(), + tests: this.tests.map(function (test) { + return test.start(); + }), + childSuites: this.childSuites.map(function (suite) { + return suite.start(); + }), + testCounts: { + total: this.getTestCounts().total + } + }; + } + }, { + key: "end", + value: function end(recordTime) { + if (recordTime) { + this._endTime = performanceNow(); + + if (performance) { + var suiteLevel = this.fullName.length; + performance.mark("qunit_suite_" + suiteLevel + "_end"); + + var suiteName = this.fullName.join(" – "); + + measure(suiteLevel === 0 ? "QUnit Test Run" : "QUnit Test Suite: " + suiteName, "qunit_suite_" + suiteLevel + "_start", "qunit_suite_" + suiteLevel + "_end"); + } + } + + return { + name: this.name, + fullName: this.fullName.slice(), + tests: this.tests.map(function (test) { + return test.end(); + }), + childSuites: this.childSuites.map(function (suite) { + return suite.end(); + }), + testCounts: this.getTestCounts(), + runtime: this.getRuntime(), + status: this.getStatus() + }; + } + }, { + key: "pushChildSuite", + value: function pushChildSuite(suite) { + this.childSuites.push(suite); + } + }, { + key: "pushTest", + value: function pushTest(test) { + this.tests.push(test); + } + }, { + key: "getRuntime", + value: function getRuntime() { + return this._endTime - this._startTime; + } + }, { + key: "getTestCounts", + value: function getTestCounts() { + var counts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : { passed: 0, failed: 0, skipped: 0, todo: 0, total: 0 }; + + counts = this.tests.reduce(function (counts, test) { + if (test.valid) { + counts[test.getStatus()]++; + counts.total++; + } + + return counts; + }, counts); + + return this.childSuites.reduce(function (counts, suite) { + return suite.getTestCounts(counts); + }, counts); + } + }, { + key: "getStatus", + value: function getStatus() { + var _getTestCounts = this.getTestCounts(), + total = _getTestCounts.total, + failed = _getTestCounts.failed, + skipped = _getTestCounts.skipped, + todo = _getTestCounts.todo; + + if (failed) { + return "failed"; + } else { + if (skipped === total) { + return "skipped"; + } else if (todo === total) { + return "todo"; + } else { + return "passed"; + } + } + } + }]); + return SuiteReport; + }(); + + var focused = false; + + var moduleStack = []; + + function createModule(name, testEnvironment, modifiers) { + var parentModule = moduleStack.length ? moduleStack.slice(-1)[0] : null; + var moduleName = parentModule !== null ? [parentModule.name, name].join(" > ") : name; + var parentSuite = parentModule ? parentModule.suiteReport : globalSuite; + + var skip = parentModule !== null && parentModule.skip || modifiers.skip; + var todo = parentModule !== null && parentModule.todo || modifiers.todo; + + var module = { + name: moduleName, + parentModule: parentModule, + tests: [], + moduleId: generateHash(moduleName), + testsRun: 0, + unskippedTestsRun: 0, + childModules: [], + suiteReport: new SuiteReport(name, parentSuite), + + // Pass along `skip` and `todo` properties from parent module, in case + // there is one, to childs. And use own otherwise. + // This property will be used to mark own tests and tests of child suites + // as either `skipped` or `todo`. + skip: skip, + todo: skip ? false : todo + }; + + var env = {}; + if (parentModule) { + parentModule.childModules.push(module); + extend(env, parentModule.testEnvironment); + } + extend(env, testEnvironment); + module.testEnvironment = env; + + config.modules.push(module); + return module; + } + + function processModule(name, options, executeNow) { + var modifiers = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {}; + + if (objectType(options) === "function") { + executeNow = options; + options = undefined; + } + + var module = createModule(name, options, modifiers); + + // Move any hooks to a 'hooks' object + var testEnvironment = module.testEnvironment; + var hooks = module.hooks = {}; + + setHookFromEnvironment(hooks, testEnvironment, "before"); + setHookFromEnvironment(hooks, testEnvironment, "beforeEach"); + setHookFromEnvironment(hooks, testEnvironment, "afterEach"); + setHookFromEnvironment(hooks, testEnvironment, "after"); + + var moduleFns = { + before: setHookFunction(module, "before"), + beforeEach: setHookFunction(module, "beforeEach"), + afterEach: setHookFunction(module, "afterEach"), + after: setHookFunction(module, "after") + }; + + var currentModule = config.currentModule; + if (objectType(executeNow) === "function") { + moduleStack.push(module); + config.currentModule = module; + executeNow.call(module.testEnvironment, moduleFns); + moduleStack.pop(); + module = module.parentModule || currentModule; + } + + config.currentModule = module; + + function setHookFromEnvironment(hooks, environment, name) { + var potentialHook = environment[name]; + hooks[name] = typeof potentialHook === "function" ? [potentialHook] : []; + delete environment[name]; + } + + function setHookFunction(module, hookName) { + return function setHook(callback) { + module.hooks[hookName].push(callback); + }; + } + } + + function module$1(name, options, executeNow) { + if (focused) { + return; + } + + processModule(name, options, executeNow); + } + + module$1.only = function () { + if (focused) { + return; + } + + config.modules.length = 0; + config.queue.length = 0; + + module$1.apply(undefined, arguments); + + focused = true; + }; + + module$1.skip = function (name, options, executeNow) { + if (focused) { + return; + } + + processModule(name, options, executeNow, { skip: true }); + }; + + module$1.todo = function (name, options, executeNow) { + if (focused) { + return; + } + + processModule(name, options, executeNow, { todo: true }); + }; + var LISTENERS = Object.create(null); var SUPPORTED_EVENTS = ["runStart", "suiteStart", "testStart", "assertion", "testEnd", "suiteEnd", "runEnd"]; @@ -959,44 +1265,1220 @@ throw new TypeError("eventName must be a string when emitting an event"); } - // Clone the callbacks in case one of them registers a new callback - var originalCallbacks = LISTENERS[eventName]; - var callbacks = originalCallbacks ? [].concat(toConsumableArray(originalCallbacks)) : []; + // Clone the callbacks in case one of them registers a new callback + var originalCallbacks = LISTENERS[eventName]; + var callbacks = originalCallbacks ? [].concat(toConsumableArray(originalCallbacks)) : []; + + for (var i = 0; i < callbacks.length; i++) { + callbacks[i](data); + } + } + + /** + * Registers a callback as a listener to the specified event. + * + * @public + * @method on + * @param {String} eventName + * @param {Function} callback + * @return {Void} + */ + function on(eventName, callback) { + if (objectType(eventName) !== "string") { + throw new TypeError("eventName must be a string when registering a listener"); + } else if (!inArray(eventName, SUPPORTED_EVENTS)) { + var events = SUPPORTED_EVENTS.join(", "); + throw new Error("\"" + eventName + "\" is not a valid event; must be one of: " + events + "."); + } else if (objectType(callback) !== "function") { + throw new TypeError("callback must be a function when registering a listener"); + } + + if (!LISTENERS[eventName]) { + LISTENERS[eventName] = []; + } + + // Don't register the same callback more than once + if (!inArray(callback, LISTENERS[eventName])) { + LISTENERS[eventName].push(callback); + } + } + + function objectOrFunction(x) { + var type = typeof x === 'undefined' ? 'undefined' : _typeof(x); + return x !== null && (type === 'object' || type === 'function'); + } + + function isFunction(x) { + return typeof x === 'function'; + } + + + + var _isArray = void 0; + if (Array.isArray) { + _isArray = Array.isArray; + } else { + _isArray = function _isArray(x) { + return Object.prototype.toString.call(x) === '[object Array]'; + }; + } + + var isArray = _isArray; + + var len = 0; + var vertxNext = void 0; + var customSchedulerFn = void 0; + + var asap = function asap(callback, arg) { + queue[len] = callback; + queue[len + 1] = arg; + len += 2; + if (len === 2) { + // If len is 2, that means that we need to schedule an async flush. + // If additional callbacks are queued before the queue is flushed, they + // will be processed by this flush that we are scheduling. + if (customSchedulerFn) { + customSchedulerFn(flush); + } else { + scheduleFlush(); + } + } + }; + + function setScheduler(scheduleFn) { + customSchedulerFn = scheduleFn; + } + + function setAsap(asapFn) { + asap = asapFn; + } + + var browserWindow = typeof window !== 'undefined' ? window : undefined; + var browserGlobal = browserWindow || {}; + var BrowserMutationObserver = browserGlobal.MutationObserver || browserGlobal.WebKitMutationObserver; + var isNode = typeof self === 'undefined' && typeof process !== 'undefined' && {}.toString.call(process) === '[object process]'; + + // test for web worker but not in IE10 + var isWorker = typeof Uint8ClampedArray !== 'undefined' && typeof importScripts !== 'undefined' && typeof MessageChannel !== 'undefined'; + + // node + function useNextTick() { + // node version 0.10.x displays a deprecation warning when nextTick is used recursively + // see https://github.com/cujojs/when/issues/410 for details + return function () { + return process.nextTick(flush); + }; + } + + // vertx + function useVertxTimer() { + if (typeof vertxNext !== 'undefined') { + return function () { + vertxNext(flush); + }; + } + + return useSetTimeout(); + } + + function useMutationObserver() { + var iterations = 0; + var observer = new BrowserMutationObserver(flush); + var node = document.createTextNode(''); + observer.observe(node, { characterData: true }); + + return function () { + node.data = iterations = ++iterations % 2; + }; + } + + // web worker + function useMessageChannel() { + var channel = new MessageChannel(); + channel.port1.onmessage = flush; + return function () { + return channel.port2.postMessage(0); + }; + } + + function useSetTimeout() { + // Store setTimeout reference so es6-promise will be unaffected by + // other code modifying setTimeout (like sinon.useFakeTimers()) + var globalSetTimeout = setTimeout; + return function () { + return globalSetTimeout(flush, 1); + }; + } + + var queue = new Array(1000); + function flush() { + for (var i = 0; i < len; i += 2) { + var callback = queue[i]; + var arg = queue[i + 1]; + + callback(arg); + + queue[i] = undefined; + queue[i + 1] = undefined; + } + + len = 0; + } + + function attemptVertx() { + try { + var vertx = Function('return this')().require('vertx'); + vertxNext = vertx.runOnLoop || vertx.runOnContext; + return useVertxTimer(); + } catch (e) { + return useSetTimeout(); + } + } + + var scheduleFlush = void 0; + // Decide what async method to use to triggering processing of queued callbacks: + if (isNode) { + scheduleFlush = useNextTick(); + } else if (BrowserMutationObserver) { + scheduleFlush = useMutationObserver(); + } else if (isWorker) { + scheduleFlush = useMessageChannel(); + } else if (browserWindow === undefined && typeof require === 'function') { + scheduleFlush = attemptVertx(); + } else { + scheduleFlush = useSetTimeout(); + } + + function then(onFulfillment, onRejection) { + var parent = this; + + var child = new this.constructor(noop); + + if (child[PROMISE_ID] === undefined) { + makePromise(child); + } + + var _state = parent._state; + + + if (_state) { + var callback = arguments[_state - 1]; + asap(function () { + return invokeCallback(_state, child, callback, parent._result); + }); + } else { + subscribe(parent, child, onFulfillment, onRejection); + } + + return child; + } + + /** + `Promise.resolve` returns a promise that will become resolved with the + passed `value`. It is shorthand for the following: + + ```javascript + let promise = new Promise(function(resolve, reject){ + resolve(1); + }); + + promise.then(function(value){ + // value === 1 + }); + ``` + + Instead of writing the above, your code now simply becomes the following: + + ```javascript + let promise = Promise.resolve(1); + + promise.then(function(value){ + // value === 1 + }); + ``` + + @method resolve + @static + @param {Any} value value that the returned promise will be resolved with + Useful for tooling. + @return {Promise} a promise that will become fulfilled with the given + `value` + */ + function resolve$1(object) { + /*jshint validthis:true */ + var Constructor = this; + + if (object && (typeof object === 'undefined' ? 'undefined' : _typeof(object)) === 'object' && object.constructor === Constructor) { + return object; + } + + var promise = new Constructor(noop); + resolve(promise, object); + return promise; + } + + var PROMISE_ID = Math.random().toString(36).substring(2); + + function noop() {} + + var PENDING = void 0; + var FULFILLED = 1; + var REJECTED = 2; + + var TRY_CATCH_ERROR = { error: null }; + + function selfFulfillment() { + return new TypeError("You cannot resolve a promise with itself"); + } + + function cannotReturnOwn() { + return new TypeError('A promises callback cannot return that same promise.'); + } + + function getThen(promise) { + try { + return promise.then; + } catch (error) { + TRY_CATCH_ERROR.error = error; + return TRY_CATCH_ERROR; + } + } + + function tryThen(then$$1, value, fulfillmentHandler, rejectionHandler) { + try { + then$$1.call(value, fulfillmentHandler, rejectionHandler); + } catch (e) { + return e; + } + } + + function handleForeignThenable(promise, thenable, then$$1) { + asap(function (promise) { + var sealed = false; + var error = tryThen(then$$1, thenable, function (value) { + if (sealed) { + return; + } + sealed = true; + if (thenable !== value) { + resolve(promise, value); + } else { + fulfill(promise, value); + } + }, function (reason) { + if (sealed) { + return; + } + sealed = true; + + reject(promise, reason); + }, 'Settle: ' + (promise._label || ' unknown promise')); + + if (!sealed && error) { + sealed = true; + reject(promise, error); + } + }, promise); + } + + function handleOwnThenable(promise, thenable) { + if (thenable._state === FULFILLED) { + fulfill(promise, thenable._result); + } else if (thenable._state === REJECTED) { + reject(promise, thenable._result); + } else { + subscribe(thenable, undefined, function (value) { + return resolve(promise, value); + }, function (reason) { + return reject(promise, reason); + }); + } + } + + function handleMaybeThenable(promise, maybeThenable, then$$1) { + if (maybeThenable.constructor === promise.constructor && then$$1 === then && maybeThenable.constructor.resolve === resolve$1) { + handleOwnThenable(promise, maybeThenable); + } else { + if (then$$1 === TRY_CATCH_ERROR) { + reject(promise, TRY_CATCH_ERROR.error); + TRY_CATCH_ERROR.error = null; + } else if (then$$1 === undefined) { + fulfill(promise, maybeThenable); + } else if (isFunction(then$$1)) { + handleForeignThenable(promise, maybeThenable, then$$1); + } else { + fulfill(promise, maybeThenable); + } + } + } + + function resolve(promise, value) { + if (promise === value) { + reject(promise, selfFulfillment()); + } else if (objectOrFunction(value)) { + handleMaybeThenable(promise, value, getThen(value)); + } else { + fulfill(promise, value); + } + } + + function publishRejection(promise) { + if (promise._onerror) { + promise._onerror(promise._result); + } + + publish(promise); + } + + function fulfill(promise, value) { + if (promise._state !== PENDING) { + return; + } + + promise._result = value; + promise._state = FULFILLED; + + if (promise._subscribers.length !== 0) { + asap(publish, promise); + } + } + + function reject(promise, reason) { + if (promise._state !== PENDING) { + return; + } + promise._state = REJECTED; + promise._result = reason; + + asap(publishRejection, promise); + } + + function subscribe(parent, child, onFulfillment, onRejection) { + var _subscribers = parent._subscribers; + var length = _subscribers.length; + + + parent._onerror = null; + + _subscribers[length] = child; + _subscribers[length + FULFILLED] = onFulfillment; + _subscribers[length + REJECTED] = onRejection; + + if (length === 0 && parent._state) { + asap(publish, parent); + } + } + + function publish(promise) { + var subscribers = promise._subscribers; + var settled = promise._state; + + if (subscribers.length === 0) { + return; + } + + var child = void 0, + callback = void 0, + detail = promise._result; + + for (var i = 0; i < subscribers.length; i += 3) { + child = subscribers[i]; + callback = subscribers[i + settled]; + + if (child) { + invokeCallback(settled, child, callback, detail); + } else { + callback(detail); + } + } + + promise._subscribers.length = 0; + } + + function tryCatch(callback, detail) { + try { + return callback(detail); + } catch (e) { + TRY_CATCH_ERROR.error = e; + return TRY_CATCH_ERROR; + } + } + + function invokeCallback(settled, promise, callback, detail) { + var hasCallback = isFunction(callback), + value = void 0, + error = void 0, + succeeded = void 0, + failed = void 0; + + if (hasCallback) { + value = tryCatch(callback, detail); + + if (value === TRY_CATCH_ERROR) { + failed = true; + error = value.error; + value.error = null; + } else { + succeeded = true; + } + + if (promise === value) { + reject(promise, cannotReturnOwn()); + return; + } + } else { + value = detail; + succeeded = true; + } + + if (promise._state !== PENDING) { + // noop + } else if (hasCallback && succeeded) { + resolve(promise, value); + } else if (failed) { + reject(promise, error); + } else if (settled === FULFILLED) { + fulfill(promise, value); + } else if (settled === REJECTED) { + reject(promise, value); + } + } + + function initializePromise(promise, resolver) { + try { + resolver(function resolvePromise(value) { + resolve(promise, value); + }, function rejectPromise(reason) { + reject(promise, reason); + }); + } catch (e) { + reject(promise, e); + } + } + + var id = 0; + function nextId() { + return id++; + } + + function makePromise(promise) { + promise[PROMISE_ID] = id++; + promise._state = undefined; + promise._result = undefined; + promise._subscribers = []; + } + + function validationError() { + return new Error('Array Methods must be provided an Array'); + } + + var Enumerator = function () { + function Enumerator(Constructor, input) { + classCallCheck(this, Enumerator); + + this._instanceConstructor = Constructor; + this.promise = new Constructor(noop); + + if (!this.promise[PROMISE_ID]) { + makePromise(this.promise); + } + + if (isArray(input)) { + this.length = input.length; + this._remaining = input.length; + + this._result = new Array(this.length); + + if (this.length === 0) { + fulfill(this.promise, this._result); + } else { + this.length = this.length || 0; + this._enumerate(input); + if (this._remaining === 0) { + fulfill(this.promise, this._result); + } + } + } else { + reject(this.promise, validationError()); + } + } + + createClass(Enumerator, [{ + key: '_enumerate', + value: function _enumerate(input) { + for (var i = 0; this._state === PENDING && i < input.length; i++) { + this._eachEntry(input[i], i); + } + } + }, { + key: '_eachEntry', + value: function _eachEntry(entry, i) { + var c = this._instanceConstructor; + var resolve$$1 = c.resolve; + + + if (resolve$$1 === resolve$1) { + var _then = getThen(entry); + + if (_then === then && entry._state !== PENDING) { + this._settledAt(entry._state, i, entry._result); + } else if (typeof _then !== 'function') { + this._remaining--; + this._result[i] = entry; + } else if (c === Promise$2) { + var promise = new c(noop); + handleMaybeThenable(promise, entry, _then); + this._willSettleAt(promise, i); + } else { + this._willSettleAt(new c(function (resolve$$1) { + return resolve$$1(entry); + }), i); + } + } else { + this._willSettleAt(resolve$$1(entry), i); + } + } + }, { + key: '_settledAt', + value: function _settledAt(state, i, value) { + var promise = this.promise; + + + if (promise._state === PENDING) { + this._remaining--; + + if (state === REJECTED) { + reject(promise, value); + } else { + this._result[i] = value; + } + } + + if (this._remaining === 0) { + fulfill(promise, this._result); + } + } + }, { + key: '_willSettleAt', + value: function _willSettleAt(promise, i) { + var enumerator = this; + + subscribe(promise, undefined, function (value) { + return enumerator._settledAt(FULFILLED, i, value); + }, function (reason) { + return enumerator._settledAt(REJECTED, i, reason); + }); + } + }]); + return Enumerator; + }(); + + /** + `Promise.all` accepts an array of promises, and returns a new promise which + is fulfilled with an array of fulfillment values for the passed promises, or + rejected with the reason of the first passed promise to be rejected. It casts all + elements of the passed iterable to promises as it runs this algorithm. + + Example: + + ```javascript + let promise1 = resolve(1); + let promise2 = resolve(2); + let promise3 = resolve(3); + let promises = [ promise1, promise2, promise3 ]; + + Promise.all(promises).then(function(array){ + // The array here would be [ 1, 2, 3 ]; + }); + ``` + + If any of the `promises` given to `all` are rejected, the first promise + that is rejected will be given as an argument to the returned promises's + rejection handler. For example: + + Example: + + ```javascript + let promise1 = resolve(1); + let promise2 = reject(new Error("2")); + let promise3 = reject(new Error("3")); + let promises = [ promise1, promise2, promise3 ]; + + Promise.all(promises).then(function(array){ + // Code here never runs because there are rejected promises! + }, function(error) { + // error.message === "2" + }); + ``` + + @method all + @static + @param {Array} entries array of promises + @param {String} label optional string for labeling the promise. + Useful for tooling. + @return {Promise} promise that is fulfilled when all `promises` have been + fulfilled, or rejected if any of them become rejected. + @static + */ + function all(entries) { + return new Enumerator(this, entries).promise; + } + + /** + `Promise.race` returns a new promise which is settled in the same way as the + first passed promise to settle. + + Example: + + ```javascript + let promise1 = new Promise(function(resolve, reject){ + setTimeout(function(){ + resolve('promise 1'); + }, 200); + }); + + let promise2 = new Promise(function(resolve, reject){ + setTimeout(function(){ + resolve('promise 2'); + }, 100); + }); + + Promise.race([promise1, promise2]).then(function(result){ + // result === 'promise 2' because it was resolved before promise1 + // was resolved. + }); + ``` + + `Promise.race` is deterministic in that only the state of the first + settled promise matters. For example, even if other promises given to the + `promises` array argument are resolved, but the first settled promise has + become rejected before the other promises became fulfilled, the returned + promise will become rejected: + + ```javascript + let promise1 = new Promise(function(resolve, reject){ + setTimeout(function(){ + resolve('promise 1'); + }, 200); + }); + + let promise2 = new Promise(function(resolve, reject){ + setTimeout(function(){ + reject(new Error('promise 2')); + }, 100); + }); + + Promise.race([promise1, promise2]).then(function(result){ + // Code here never runs + }, function(reason){ + // reason.message === 'promise 2' because promise 2 became rejected before + // promise 1 became fulfilled + }); + ``` + + An example real-world use case is implementing timeouts: + + ```javascript + Promise.race([ajax('foo.json'), timeout(5000)]) + ``` + + @method race + @static + @param {Array} promises array of promises to observe + Useful for tooling. + @return {Promise} a promise which settles in the same way as the first passed + promise to settle. + */ + function race(entries) { + /*jshint validthis:true */ + var Constructor = this; + + if (!isArray(entries)) { + return new Constructor(function (_, reject) { + return reject(new TypeError('You must pass an array to race.')); + }); + } else { + return new Constructor(function (resolve, reject) { + var length = entries.length; + for (var i = 0; i < length; i++) { + Constructor.resolve(entries[i]).then(resolve, reject); + } + }); + } + } + + /** + `Promise.reject` returns a promise rejected with the passed `reason`. + It is shorthand for the following: + + ```javascript + let promise = new Promise(function(resolve, reject){ + reject(new Error('WHOOPS')); + }); + + promise.then(function(value){ + // Code here doesn't run because the promise is rejected! + }, function(reason){ + // reason.message === 'WHOOPS' + }); + ``` + + Instead of writing the above, your code now simply becomes the following: + + ```javascript + let promise = Promise.reject(new Error('WHOOPS')); + + promise.then(function(value){ + // Code here doesn't run because the promise is rejected! + }, function(reason){ + // reason.message === 'WHOOPS' + }); + ``` + + @method reject + @static + @param {Any} reason value that the returned promise will be rejected with. + Useful for tooling. + @return {Promise} a promise rejected with the given `reason`. + */ + function reject$1(reason) { + /*jshint validthis:true */ + var Constructor = this; + var promise = new Constructor(noop); + reject(promise, reason); + return promise; + } + + function needsResolver() { + throw new TypeError('You must pass a resolver function as the first argument to the promise constructor'); + } + + function needsNew() { + throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function."); + } + + /** + Promise objects represent the eventual result of an asynchronous operation. The + primary way of interacting with a promise is through its `then` method, which + registers callbacks to receive either a promise's eventual value or the reason + why the promise cannot be fulfilled. + + Terminology + ----------- + + - `promise` is an object or function with a `then` method whose behavior conforms to this specification. + - `thenable` is an object or function that defines a `then` method. + - `value` is any legal JavaScript value (including undefined, a thenable, or a promise). + - `exception` is a value that is thrown using the throw statement. + - `reason` is a value that indicates why a promise was rejected. + - `settled` the final resting state of a promise, fulfilled or rejected. + + A promise can be in one of three states: pending, fulfilled, or rejected. + + Promises that are fulfilled have a fulfillment value and are in the fulfilled + state. Promises that are rejected have a rejection reason and are in the + rejected state. A fulfillment value is never a thenable. + + Promises can also be said to *resolve* a value. If this value is also a + promise, then the original promise's settled state will match the value's + settled state. So a promise that *resolves* a promise that rejects will + itself reject, and a promise that *resolves* a promise that fulfills will + itself fulfill. + + + Basic Usage: + ------------ + + ```js + let promise = new Promise(function(resolve, reject) { + // on success + resolve(value); + + // on failure + reject(reason); + }); + + promise.then(function(value) { + // on fulfillment + }, function(reason) { + // on rejection + }); + ``` + + Advanced Usage: + --------------- + + Promises shine when abstracting away asynchronous interactions such as + `XMLHttpRequest`s. + + ```js + function getJSON(url) { + return new Promise(function(resolve, reject){ + let xhr = new XMLHttpRequest(); + + xhr.open('GET', url); + xhr.onreadystatechange = handler; + xhr.responseType = 'json'; + xhr.setRequestHeader('Accept', 'application/json'); + xhr.send(); + + function handler() { + if (this.readyState === this.DONE) { + if (this.status === 200) { + resolve(this.response); + } else { + reject(new Error('getJSON: `' + url + '` failed with status: [' + this.status + ']')); + } + } + }; + }); + } + + getJSON('/posts.json').then(function(json) { + // on fulfillment + }, function(reason) { + // on rejection + }); + ``` + + Unlike callbacks, promises are great composable primitives. + + ```js + Promise.all([ + getJSON('/posts'), + getJSON('/comments') + ]).then(function(values){ + values[0] // => postsJSON + values[1] // => commentsJSON + + return values; + }); + ``` + + @class Promise + @param {Function} resolver + Useful for tooling. + @constructor + */ + + var Promise$2 = function () { + function Promise(resolver) { + classCallCheck(this, Promise); + + this[PROMISE_ID] = nextId(); + this._result = this._state = undefined; + this._subscribers = []; + + if (noop !== resolver) { + typeof resolver !== 'function' && needsResolver(); + this instanceof Promise ? initializePromise(this, resolver) : needsNew(); + } + } + + /** + The primary way of interacting with a promise is through its `then` method, + which registers callbacks to receive either a promise's eventual value or the + reason why the promise cannot be fulfilled. + ```js + findUser().then(function(user){ + // user is available + }, function(reason){ + // user is unavailable, and you are given the reason why + }); + ``` + Chaining + -------- + The return value of `then` is itself a promise. This second, 'downstream' + promise is resolved with the return value of the first promise's fulfillment + or rejection handler, or rejected if the handler throws an exception. + ```js + findUser().then(function (user) { + return user.name; + }, function (reason) { + return 'default name'; + }).then(function (userName) { + // If `findUser` fulfilled, `userName` will be the user's name, otherwise it + // will be `'default name'` + }); + findUser().then(function (user) { + throw new Error('Found user, but still unhappy'); + }, function (reason) { + throw new Error('`findUser` rejected and we're unhappy'); + }).then(function (value) { + // never reached + }, function (reason) { + // if `findUser` fulfilled, `reason` will be 'Found user, but still unhappy'. + // If `findUser` rejected, `reason` will be '`findUser` rejected and we're unhappy'. + }); + ``` + If the downstream promise does not specify a rejection handler, rejection reasons will be propagated further downstream. + ```js + findUser().then(function (user) { + throw new PedagogicalException('Upstream error'); + }).then(function (value) { + // never reached + }).then(function (value) { + // never reached + }, function (reason) { + // The `PedgagocialException` is propagated all the way down to here + }); + ``` + Assimilation + ------------ + Sometimes the value you want to propagate to a downstream promise can only be + retrieved asynchronously. This can be achieved by returning a promise in the + fulfillment or rejection handler. The downstream promise will then be pending + until the returned promise is settled. This is called *assimilation*. + ```js + findUser().then(function (user) { + return findCommentsByAuthor(user); + }).then(function (comments) { + // The user's comments are now available + }); + ``` + If the assimliated promise rejects, then the downstream promise will also reject. + ```js + findUser().then(function (user) { + return findCommentsByAuthor(user); + }).then(function (comments) { + // If `findCommentsByAuthor` fulfills, we'll have the value here + }, function (reason) { + // If `findCommentsByAuthor` rejects, we'll have the reason here + }); + ``` + Simple Example + -------------- + Synchronous Example + ```javascript + let result; + try { + result = findResult(); + // success + } catch(reason) { + // failure + } + ``` + Errback Example + ```js + findResult(function(result, err){ + if (err) { + // failure + } else { + // success + } + }); + ``` + Promise Example; + ```javascript + findResult().then(function(result){ + // success + }, function(reason){ + // failure + }); + ``` + Advanced Example + -------------- + Synchronous Example + ```javascript + let author, books; + try { + author = findAuthor(); + books = findBooksByAuthor(author); + // success + } catch(reason) { + // failure + } + ``` + Errback Example + ```js + function foundBooks(books) { + } + function failure(reason) { + } + findAuthor(function(author, err){ + if (err) { + failure(err); + // failure + } else { + try { + findBoooksByAuthor(author, function(books, err) { + if (err) { + failure(err); + } else { + try { + foundBooks(books); + } catch(reason) { + failure(reason); + } + } + }); + } catch(error) { + failure(err); + } + // success + } + }); + ``` + Promise Example; + ```javascript + findAuthor(). + then(findBooksByAuthor). + then(function(books){ + // found books + }).catch(function(reason){ + // something went wrong + }); + ``` + @method then + @param {Function} onFulfilled + @param {Function} onRejected + Useful for tooling. + @return {Promise} + */ + + /** + `catch` is simply sugar for `then(undefined, onRejection)` which makes it the same + as the catch block of a try/catch statement. + ```js + function findAuthor(){ + throw new Error('couldn't find that author'); + } + // synchronous + try { + findAuthor(); + } catch(reason) { + // something went wrong + } + // async with promises + findAuthor().catch(function(reason){ + // something went wrong + }); + ``` + @method catch + @param {Function} onRejection + Useful for tooling. + @return {Promise} + */ + + + createClass(Promise, [{ + key: 'catch', + value: function _catch(onRejection) { + return this.then(null, onRejection); + } + + /** + `finally` will be invoked regardless of the promise's fate just as native + try/catch/finally behaves + + Synchronous example: + + ```js + findAuthor() { + if (Math.random() > 0.5) { + throw new Error(); + } + return new Author(); + } + + try { + return findAuthor(); // succeed or fail + } catch(error) { + return findOtherAuther(); + } finally { + // always runs + // doesn't affect the return value + } + ``` + + Asynchronous example: + + ```js + findAuthor().catch(function(reason){ + return findOtherAuther(); + }).finally(function(){ + // author was either found, or not + }); + ``` + + @method finally + @param {Function} callback + @return {Promise} + */ + + }, { + key: 'finally', + value: function _finally(callback) { + var promise = this; + var constructor = promise.constructor; + + if (isFunction(callback)) { + return promise.then(function (value) { + return constructor.resolve(callback()).then(function () { + return value; + }); + }, function (reason) { + return constructor.resolve(callback()).then(function () { + throw reason; + }); + }); + } + + return promise.then(callback, callback); + } + }]); + return Promise; + }(); + + Promise$2.prototype.then = then; + Promise$2.all = all; + Promise$2.race = race; + Promise$2.resolve = resolve$1; + Promise$2.reject = reject$1; + Promise$2._setScheduler = setScheduler; + Promise$2._setAsap = setAsap; + Promise$2._asap = asap; + + /*global self*/ + function polyfill() { + var local = void 0; + + if (typeof global !== 'undefined') { + local = global; + } else if (typeof self !== 'undefined') { + local = self; + } else { + try { + local = Function('return this')(); + } catch (e) { + throw new Error('polyfill failed because global object is unavailable in this environment'); + } + } - for (var i = 0; i < callbacks.length; i++) { - callbacks[i](data); - } - } + var P = local.Promise; - /** - * Registers a callback as a listener to the specified event. - * - * @public - * @method on - * @param {String} eventName - * @param {Function} callback - * @return {Void} - */ - function on(eventName, callback) { - if (objectType(eventName) !== "string") { - throw new TypeError("eventName must be a string when registering a listener"); - } else if (!inArray(eventName, SUPPORTED_EVENTS)) { - var events = SUPPORTED_EVENTS.join(", "); - throw new Error("\"" + eventName + "\" is not a valid event; must be one of: " + events + "."); - } else if (objectType(callback) !== "function") { - throw new TypeError("callback must be a function when registering a listener"); - } + if (P) { + var promiseToString = null; + try { + promiseToString = Object.prototype.toString.call(P.resolve()); + } catch (e) { + // silently ignored + } - if (!LISTENERS[eventName]) { - LISTENERS[eventName] = []; - } + if (promiseToString === '[object Promise]' && !P.cast) { + return; + } + } - // Don't register the same callback more than once - if (!inArray(callback, LISTENERS[eventName])) { - LISTENERS[eventName].push(callback); - } + local.Promise = Promise$2; } + // Strange compat.. + Promise$2.polyfill = polyfill; + Promise$2.Promise = Promise$2; + + var Promise$1 = typeof Promise !== "undefined" ? Promise : Promise$2; + // Register logging callbacks function registerLoggingCallbacks(obj) { var i, @@ -1029,12 +2511,25 @@ } function runLoggingCallbacks(key, args) { - var i, l, callbacks; - - callbacks = config.callbacks[key]; - for (i = 0, l = callbacks.length; i < l; i++) { - callbacks[i](args); + var callbacks = config.callbacks[key]; + + // Handling 'log' callbacks separately. Unlike the other callbacks, + // the log callback is not controlled by the processing queue, + // but rather used by asserts. Hence to promisfy the 'log' callback + // would mean promisfying each step of a test + if (key === "log") { + callbacks.map(function (callback) { + return callback(args); + }); + return; } + + // ensure that each callback is executed serially + return callbacks.reduce(function (promiseChain, callback) { + return promiseChain.then(function () { + return Promise$1.resolve(callback(args)); + }); + }, Promise$1.resolve([])); } // Doesn't support IE9, it will return undefined on these browsers @@ -1086,58 +2581,102 @@ var priorityCount = 0; var unitSampler = void 0; + // This is a queue of functions that are tasks within a single test. + // After tests are dequeued from config.queue they are expanded into + // a set of tasks in this queue. + var taskQueue = []; + /** - * Advances the ProcessingQueue to the next item if it is ready. - * @param {Boolean} last + * Advances the taskQueue to the next task. If the taskQueue is empty, + * process the testQueue */ function advance() { + advanceTaskQueue(); + + if (!taskQueue.length && !config.blocking && !config.current) { + advanceTestQueue(); + } + } + + /** + * Advances the taskQueue with an increased depth + */ + function advanceTaskQueue() { var start = now(); config.depth = (config.depth || 0) + 1; - while (config.queue.length && !config.blocking) { + processTaskQueue(start); + + config.depth--; + } + + /** + * Process the first task on the taskQueue as a promise. + * Each task is a function returned by https://github.com/qunitjs/qunit/blob/master/src/test.js#L381 + */ + function processTaskQueue(start) { + if (taskQueue.length && !config.blocking) { var elapsedTime = now() - start; if (!defined.setTimeout || config.updateRate <= 0 || elapsedTime < config.updateRate) { - if (priorityCount > 0) { - priorityCount--; - } - - config.queue.shift()(); + var task = taskQueue.shift(); + Promise$1.resolve(task()).then(function () { + if (!taskQueue.length) { + advance(); + } else { + processTaskQueue(start); + } + }); } else { - setTimeout(advance, 13); - break; + setTimeout$1(advance); } } + } - config.depth--; - + /** + * Advance the testQueue to the next test to process. Call done() if testQueue completes. + */ + function advanceTestQueue() { if (!config.blocking && !config.queue.length && config.depth === 0) { done(); + return; } - } - function addToQueueImmediate(callback) { - if (objectType(callback) === "array") { - while (callback.length) { - addToQueueImmediate(callback.pop()); - } + var testTasks = config.queue.shift(); + addToTaskQueue(testTasks()); - return; + if (priorityCount > 0) { + priorityCount--; } - config.queue.unshift(callback); - priorityCount++; + advance(); + } + + /** + * Enqueue the tasks for a test into the task queue. + * @param {Array} tasksArray + */ + function addToTaskQueue(tasksArray) { + taskQueue.push.apply(taskQueue, toConsumableArray(tasksArray)); + } + + /** + * Return the number of tasks remaining in the task queue to be processed. + * @return {Number} + */ + function taskQueueLength() { + return taskQueue.length; } /** - * Adds a function to the ProcessingQueue for execution. - * @param {Function|Array} callback - * @param {Boolean} priority + * Adds a test to the TestQueue for execution. + * @param {Function} testTasksFunc + * @param {Boolean} prioritize * @param {String} seed */ - function addToQueue(callback, prioritize, seed) { + function addToTestQueue(testTasksFunc, prioritize, seed) { if (prioritize) { - config.queue.splice(priorityCount++, 0, callback); + config.queue.splice(priorityCount++, 0, testTasksFunc); } else if (seed) { if (!unitSampler) { unitSampler = unitSamplerGenerator(seed); @@ -1145,9 +2684,9 @@ // Insert into a random position after all prioritized items var index = Math.floor(unitSampler() * (config.queue.length - priorityCount + 1)); - config.queue.splice(priorityCount + index, 0, callback); + config.queue.splice(priorityCount + index, 0, testTasksFunc); } else { - config.queue.push(callback); + config.queue.push(testTasksFunc); } } @@ -1185,31 +2724,53 @@ var runtime = now() - config.started; var passed = config.stats.all - config.stats.bad; + if (config.stats.all === 0) { + + if (config.filter && config.filter.length) { + throw new Error("No tests matched the filter \"" + config.filter + "\"."); + } + + if (config.module && config.module.length) { + throw new Error("No tests matched the module \"" + config.module + "\"."); + } + + if (config.moduleId && config.moduleId.length) { + throw new Error("No tests matched the moduleId \"" + config.moduleId + "\"."); + } + + if (config.testId && config.testId.length) { + throw new Error("No tests matched the testId \"" + config.testId + "\"."); + } + + throw new Error("No tests were run."); + } + emit("runEnd", globalSuite.end(true)); runLoggingCallbacks("done", { passed: passed, failed: config.stats.bad, total: config.stats.all, runtime: runtime - }); + }).then(function () { - // Clear own storage items if all tests passed - if (storage && config.stats.bad === 0) { - for (var i = storage.length - 1; i >= 0; i--) { - var key = storage.key(i); + // Clear own storage items if all tests passed + if (storage && config.stats.bad === 0) { + for (var i = storage.length - 1; i >= 0; i--) { + var key = storage.key(i); - if (key.indexOf("qunit-test-") === 0) { - storage.removeItem(key); + if (key.indexOf("qunit-test-") === 0) { + storage.removeItem(key); + } } } - } + }); } var ProcessingQueue = { finished: false, - add: addToQueue, - addImmediate: addToQueueImmediate, - advance: advance + add: addToTestQueue, + advance: advance, + taskCount: taskQueueLength }; var TestReport = function () { @@ -1237,7 +2798,10 @@ key: "start", value: function start(recordTime) { if (recordTime) { - this._startTime = Date.now(); + this._startTime = performanceNow(); + if (performance) { + performance.mark("qunit_test_start"); + } } return { @@ -1250,7 +2814,14 @@ key: "end", value: function end(recordTime) { if (recordTime) { - this._endTime = Date.now(); + this._endTime = performanceNow(); + if (performance) { + performance.mark("qunit_test_end"); + + var testName = this.fullName.join(" – "); + + measure("QUnit Test: " + testName, "qunit_test_start", "qunit_test_end"); + } } return extend(this.start(), { @@ -1316,7 +2887,7 @@ return TestReport; }(); - var focused = false; + var focused$1 = false; function Test(settings) { var i, l; @@ -1324,12 +2895,30 @@ ++Test.count; this.expected = null; - extend(this, settings); this.assertions = []; this.semaphore = 0; this.module = config.currentModule; this.stack = sourceFromStacktrace(3); this.steps = []; + this.timeout = undefined; + + // If a module is skipped, all its tests and the tests of the child suites + // should be treated as skipped even if they are defined as `only` or `todo`. + // As for `todo` module, all its tests will be treated as `todo` except for + // tests defined as `skip` which will be left intact. + // + // So, if a test is defined as `todo` and is inside a skipped module, we should + // then treat that test as if was defined as `skip`. + if (this.module.skip) { + settings.skip = true; + settings.todo = false; + + // Skipped tests should be left intact + } else if (this.module.todo && !settings.skip) { + settings.todo = true; + } + + extend(this, settings); this.testReport = new TestReport(settings.testName, this.module.suiteReport, { todo: settings.todo, @@ -1359,6 +2948,13 @@ this.async = false; this.expected = 0; } else { + if (typeof this.callback !== "function") { + var method = this.todo ? "todo" : "test"; + + // eslint-disable-next-line max-len + throw new TypeError("You must provide a function as a test callback to QUnit." + method + "(\"" + settings.testName + "\")"); + } + this.assert = new Assert(this); } } @@ -1374,42 +2970,48 @@ module = module.parentModule; } - return modules; + // The above push modules from the child to the parent + // return a reversed order with the top being the top most parent module + return modules.reverse(); } Test.prototype = { before: function before() { - var i, - startModule, - module = this.module, + var _this = this; + + var module = this.module, notStartedModules = getNotStartedModules(module); - for (i = notStartedModules.length - 1; i >= 0; i--) { - startModule = notStartedModules[i]; - startModule.stats = { all: 0, bad: 0, started: now() }; - emit("suiteStart", startModule.suiteReport.start(true)); - runLoggingCallbacks("moduleStart", { - name: startModule.name, - tests: startModule.tests + // ensure the callbacks are executed serially for each module + var callbackPromises = notStartedModules.reduce(function (promiseChain, startModule) { + return promiseChain.then(function () { + startModule.stats = { all: 0, bad: 0, started: now() }; + emit("suiteStart", startModule.suiteReport.start(true)); + return runLoggingCallbacks("moduleStart", { + name: startModule.name, + tests: startModule.tests + }); + }); + }, Promise$1.resolve([])); + + return callbackPromises.then(function () { + config.current = _this; + + _this.testEnvironment = extend({}, module.testEnvironment); + + _this.started = now(); + emit("testStart", _this.testReport.start(true)); + return runLoggingCallbacks("testStart", { + name: _this.testName, + module: module.name, + testId: _this.testId, + previousFailure: _this.previousFailure + }).then(function () { + if (!config.pollution) { + saveGlobal(); + } }); - } - - config.current = this; - - this.testEnvironment = extend({}, module.testEnvironment); - - this.started = now(); - emit("testStart", this.testReport.start(true)); - runLoggingCallbacks("testStart", { - name: this.testName, - module: module.name, - testId: this.testId, - previousFailure: this.previousFailure }); - - if (!config.pollution) { - saveGlobal(); - } }, run: function run() { @@ -1441,6 +3043,12 @@ function runTest(test) { promise = test.callback.call(test.testEnvironment, test.assert); test.resolvePromise(promise); + + // If the test has a "lock" on it, but the timeout is 0, then we push a + // failure as the test should be synchronous. + if (test.timeout === 0 && test.semaphore !== 0) { + pushFailure("Test did not finish synchronously even though assert.timeout( 0 ) was used.", sourceFromStacktrace(2)); + } } }, @@ -1449,22 +3057,29 @@ }, queueHook: function queueHook(hook, hookName, hookOwner) { - var promise, - test = this; - return function runHook() { + var _this2 = this; + + var callHook = function callHook() { + var promise = hook.call(_this2.testEnvironment, _this2.assert); + _this2.resolvePromise(promise, hookName); + }; + + var runHook = function runHook() { if (hookName === "before") { if (hookOwner.unskippedTestsRun !== 0) { return; } - test.preserveEnvironment = true; + _this2.preserveEnvironment = true; } - if (hookName === "after" && hookOwner.unskippedTestsRun !== numberOfUnskippedTests(hookOwner) - 1 && config.queue.length > 2) { + // The 'after' hook should only execute when there are not tests left and + // when the 'after' and 'finish' tasks are the only tasks left to process + if (hookName === "after" && hookOwner.unskippedTestsRun !== numberOfUnskippedTests(hookOwner) - 1 && (config.queue.length > 0 || ProcessingQueue.taskCount() > 2)) { return; } - config.current = test; + config.current = _this2; if (config.notrycatch) { callHook(); return; @@ -1472,16 +3087,14 @@ try { callHook(); } catch (error) { - test.pushFailure(hookName + " failed on " + test.testName + ": " + (error.message || error), extractStacktrace(error, 0)); - } - - function callHook() { - promise = hook.call(test.testEnvironment, test.assert); - test.resolvePromise(promise, hookName); + _this2.pushFailure(hookName + " failed on " + _this2.testName + ": " + (error.message || error), extractStacktrace(error, 0)); } }; + + return runHook; }, + // Currently only used for module level hooks, can be used to add global level ones hooks: function hooks(handler) { var hooks = []; @@ -1490,8 +3103,11 @@ if (module.parentModule) { processHooks(test, module.parentModule); } - if (module.hooks && objectType(module.hooks[handler]) === "function") { - hooks.push(test.queueHook(module.hooks[handler], handler, module)); + + if (module.hooks[handler].length) { + for (var i = 0; i < module.hooks[handler].length; i++) { + hooks.push(test.queueHook(module.hooks[handler][i], handler, module)); + } } } @@ -1499,11 +3115,23 @@ if (!this.skip) { processHooks(this, this.module); } + return hooks; }, + finish: function finish() { config.current = this; + + // Release the test callback to ensure that anything referenced has been + // released to be garbage collected. + this.callback = undefined; + + if (this.steps.length) { + var stepsList = this.steps.join(", "); + this.pushFailure("Expected assert.verifySteps() to be called before end of test " + ("after using assert.step(). Unverified steps: " + stepsList), this.stack); + } + if (config.requireExpects && this.expected === null) { this.pushFailure("Expected number of assertions to be defined, but expect() was " + "not called.", this.stack); } else if (this.expected !== null && this.expected !== this.assertions.length) { @@ -1550,7 +3178,7 @@ emit("testEnd", this.testReport.end(true)); this.testReport.slimAssertions(); - runLoggingCallbacks("testDone", { + return runLoggingCallbacks("testDone", { name: testName, module: moduleName, skipped: skipped, @@ -1566,25 +3194,36 @@ // Source of Test source: this.stack - }); - - if (module.testsRun === numberOfTests(module)) { - logSuiteEnd(module); + }).then(function () { + if (module.testsRun === numberOfTests(module)) { + var completedModules = [module]; + + // Check if the parent modules, iteratively, are done. If that the case, + // we emit the `suiteEnd` event and trigger `moduleDone` callback. + var parent = module.parentModule; + while (parent && parent.testsRun === numberOfTests(parent)) { + completedModules.push(parent); + parent = parent.parentModule; + } - // Check if the parent modules, iteratively, are done. If that the case, - // we emit the `suiteEnd` event and trigger `moduleDone` callback. - var parent = module.parentModule; - while (parent && parent.testsRun === numberOfTests(parent)) { - logSuiteEnd(parent); - parent = parent.parentModule; + return completedModules.reduce(function (promiseChain, completedModule) { + return promiseChain.then(function () { + return logSuiteEnd(completedModule); + }); + }, Promise$1.resolve([])); } - } - - config.current = undefined; + }).then(function () { + config.current = undefined; + }); function logSuiteEnd(module) { + + // Reset `module.hooks` to ensure that anything referenced in these hooks + // has been released to be garbage collected. + module.hooks = {}; + emit("suiteEnd", module.suiteReport.end(true)); - runLoggingCallbacks("moduleDone", { + return runLoggingCallbacks("moduleDone", { name: module.name, tests: module.tests, failed: module.stats.bad, @@ -1610,18 +3249,16 @@ } function runTest() { - - // Each of these can by async - ProcessingQueue.addImmediate([function () { - test.before(); - }, test.hooks("before"), function () { + return [function () { + return test.before(); + }].concat(toConsumableArray(test.hooks("before")), [function () { test.preserveTestEnvironment(); - }, test.hooks("beforeEach"), function () { + }], toConsumableArray(test.hooks("beforeEach")), [function () { test.run(); - }, test.hooks("afterEach").reverse(), test.hooks("after").reverse(), function () { + }], toConsumableArray(test.hooks("afterEach").reverse()), toConsumableArray(test.hooks("after").reverse()), [function () { test.after(); }, function () { - test.finish(); + return test.finish(); }]); } @@ -1643,7 +3280,7 @@ pushResult: function pushResult(resultInfo) { if (this !== config.current) { - throw new Error("Assertion occured after test had finished."); + throw new Error("Assertion occurred after test had finished."); } // Destructure of resultInfo = { result, actual, expected, message, negative } @@ -1654,13 +3291,16 @@ result: resultInfo.result, message: resultInfo.message, actual: resultInfo.actual, - expected: resultInfo.expected, testId: this.testId, negative: resultInfo.negative || false, runtime: now() - this.started, todo: !!this.todo }; + if (hasOwn.call(resultInfo, "expected")) { + details.expected = resultInfo.expected; + } + if (!resultInfo.result) { source = resultInfo.source || sourceFromStacktrace(); @@ -1686,7 +3326,6 @@ result: false, message: message || "error", actual: actual || null, - expected: null, source: source }); }, @@ -1722,18 +3361,24 @@ then = promise.then; if (objectType(then) === "function") { resume = internalStop(test); - then.call(promise, function () { - resume(); - }, function (error) { - message = "Promise rejected " + (!phase ? "during" : phase.replace(/Each$/, "")) + " \"" + test.testName + "\": " + (error && error.message || error); - test.pushFailure(message, extractStacktrace(error, 0)); - - // Else next test will carry the responsibility - saveGlobal(); - - // Unblock - resume(); - }); + if (config.notrycatch) { + then.call(promise, function () { + resume(); + }); + } else { + then.call(promise, function () { + resume(); + }, function (error) { + message = "Promise rejected " + (!phase ? "during" : phase.replace(/Each$/, "")) + " \"" + test.testName + "\": " + (error && error.message || error); + test.pushFailure(message, extractStacktrace(error, 0)); + + // Else next test will carry the responsibility + saveGlobal(); + + // Unblock + internalRecover(test); + }); + } } } }, @@ -1859,7 +3504,7 @@ // Will be exposed as QUnit.test function test(testName, callback) { - if (focused) { + if (focused$1) { return; } @@ -1872,7 +3517,7 @@ } function todo(testName, callback) { - if (focused) { + if (focused$1) { return; } @@ -1887,7 +3532,7 @@ // Will be exposed as QUnit.skip function skip(testName) { - if (focused) { + if (focused$1) { return; } @@ -1901,12 +3546,12 @@ // Will be exposed as QUnit.only function only(testName, callback) { - if (focused) { + if (focused$1) { return; } config.queue.length = 0; - focused = true; + focused$1 = true; var newTest = new Test({ testName: testName, @@ -1919,17 +3564,27 @@ // Put a hold on processing and return a function that will release it. function internalStop(test) { var released = false; - test.semaphore += 1; config.blocking = true; // Set a recovery timeout, if so configured. - if (config.testTimeout && defined.setTimeout) { - clearTimeout(config.timeout); - config.timeout = setTimeout(function () { - pushFailure("Test timed out", sourceFromStacktrace(2)); - internalRecover(test); - }, config.testTimeout); + if (defined.setTimeout) { + var timeoutDuration = void 0; + + if (typeof test.timeout === "number") { + timeoutDuration = test.timeout; + } else if (typeof config.testTimeout === "number") { + timeoutDuration = config.testTimeout; + } + + if (typeof timeoutDuration === "number" && timeoutDuration > 0) { + clearTimeout(config.timeout); + config.timeout = setTimeout$1(function () { + pushFailure("Test took longer than " + timeoutDuration + "ms; test timed out.", sourceFromStacktrace(2)); + released = true; + internalRecover(test); + }, timeoutDuration); + } } return function resume() { @@ -1978,7 +3633,7 @@ if (config.timeout) { clearTimeout(config.timeout); } - config.timeout = setTimeout(function () { + config.timeout = setTimeout$1(function () { if (test.semaphore > 0) { return; } @@ -1988,7 +3643,7 @@ } begin(); - }, 13); + }); } else { begin(); } @@ -2031,24 +3686,6 @@ } } - /** - * Returns a function that proxies to the given method name on the globals - * console object. The proxy will also detect if the console doesn't exist and - * will appropriately no-op. This allows support for IE9, which doesn't have a - * console if the developer tools are not open. - */ - function consoleProxy(method) { - return function () { - if (console) { - console[method].apply(console, arguments); - } - }; - } - - var Logger = { - warn: consoleProxy("warn") - }; - var Assert = function () { function Assert(testContext) { classCallCheck(this, Assert); @@ -2058,19 +3695,36 @@ // Assert helpers - // Documents a "step", which is a string value, in a test as a passing assertion + createClass(Assert, [{ + key: "timeout", + value: function timeout(duration) { + if (typeof duration !== "number") { + throw new Error("You must pass a number as the duration to assert.timeout"); + } + this.test.timeout = duration; + } - createClass(Assert, [{ + // Documents a "step", which is a string value, in a test as a passing assertion + + }, { key: "step", value: function step(message) { + var assertionMessage = message; var result = !!message; this.test.steps.push(message); - return this.pushResult({ + if (objectType(message) === "undefined" || message === "") { + assertionMessage = "You must provide a message to assert.step"; + } else if (objectType(message) !== "string") { + assertionMessage = "You must provide a string value to assert.step"; + result = false; + } + + this.pushResult({ result: result, - message: message || "You must provide a message to assert.step" + message: assertionMessage }); } @@ -2079,7 +3733,11 @@ }, { key: "verifySteps", value: function verifySteps(steps, message) { - this.deepEqual(this.test.steps, steps, message); + + // Since the steps array is just string values, we can clone with slice + var actualStepsClone = this.test.steps.slice(); + this.deepEqual(actualStepsClone, steps, message); + this.test.steps.length = 0; } // Specify the number of expected assertions to guarantee that failed test @@ -2137,7 +3795,7 @@ }, { key: "push", value: function push(result, actual, expected, message, negative) { - Logger.warn("assert.push is deprecated and will be removed in QUnit 3.0." + " Please use assert.pushResult instead (http://api.qunitjs.com/pushResult/)."); + Logger.warn("assert.push is deprecated and will be removed in QUnit 3.0." + " Please use assert.pushResult instead (https://api.qunitjs.com/assert/pushResult)."); var currentAssert = this instanceof Assert ? this : config.current.assert; return currentAssert.pushResult({ @@ -2321,20 +3979,112 @@ } catch (e) { actual = e; } - currentTest.ignoreGlobalErrors = false; + currentTest.ignoreGlobalErrors = false; + + if (actual) { + var expectedType = objectType(expected); + + // We don't want to validate thrown error + if (!expected) { + result = true; + + // Expected is a regexp + } else if (expectedType === "regexp") { + result = expected.test(errorString(actual)); + + // Log the string form of the regexp + expected = String(expected); + + // Expected is a constructor, maybe an Error constructor + } else if (expectedType === "function" && actual instanceof expected) { + result = true; + + // Expected is an Error object + } else if (expectedType === "object") { + result = actual instanceof expected.constructor && actual.name === expected.name && actual.message === expected.message; + + // Log the string form of the Error object + expected = errorString(expected); + + // Expected is a validation function which returns true if validation passed + } else if (expectedType === "function" && expected.call({}, actual) === true) { + expected = null; + result = true; + } + } + + currentTest.assert.pushResult({ + result: result, + + // undefined if it didn't throw + actual: actual && errorString(actual), + expected: expected, + message: message + }); + } + }, { + key: "rejects", + value: function rejects(promise, expected, message) { + var result = false; + + var currentTest = this instanceof Assert && this.test || config.current; + + // 'expected' is optional unless doing string comparison + if (objectType(expected) === "string") { + if (message === undefined) { + message = expected; + expected = undefined; + } else { + message = "assert.rejects does not accept a string value for the expected " + "argument.\nUse a non-string object value (e.g. validator function) instead " + "if necessary."; + + currentTest.assert.pushResult({ + result: false, + message: message + }); + + return; + } + } + + var then = promise && promise.then; + if (objectType(then) !== "function") { + var _message = "The value provided to `assert.rejects` in " + "\"" + currentTest.testName + "\" was not a promise."; + + currentTest.assert.pushResult({ + result: false, + message: _message, + actual: promise + }); + + return; + } - if (actual) { + var done = this.async(); + + return then.call(promise, function handleFulfillment() { + var message = "The promise returned by the `assert.rejects` callback in " + "\"" + currentTest.testName + "\" did not reject."; + + currentTest.assert.pushResult({ + result: false, + message: message, + actual: promise + }); + + done(); + }, function handleRejection(actual) { var expectedType = objectType(expected); - // We don't want to validate thrown error - if (!expected) { + // We don't want to validate + if (expected === undefined) { result = true; - expected = null; // Expected is a regexp } else if (expectedType === "regexp") { result = expected.test(errorString(actual)); + // Log the string form of the regexp + expected = String(expected); + // Expected is a constructor, maybe an Error constructor } else if (expectedType === "function" && actual instanceof expected) { result = true; @@ -2343,18 +4093,32 @@ } else if (expectedType === "object") { result = actual instanceof expected.constructor && actual.name === expected.name && actual.message === expected.message; + // Log the string form of the Error object + expected = errorString(expected); + // Expected is a validation function which returns true if validation passed - } else if (expectedType === "function" && expected.call({}, actual) === true) { - expected = null; - result = true; + } else { + if (expectedType === "function") { + result = expected.call({}, actual) === true; + expected = null; + + // Expected is some other invalid type + } else { + result = false; + message = "invalid expected value provided to `assert.rejects` " + "callback in \"" + currentTest.testName + "\": " + expectedType + "."; + } } - } - currentTest.assert.pushResult({ - result: result, - actual: actual, - expected: expected, - message: message + currentTest.assert.pushResult({ + result: result, + + // leave rejection value of undefined as-is + actual: actual && errorString(actual), + expected: expected, + message: message + }); + + done(); }); } }]); @@ -2371,12 +4135,14 @@ /** * Converts an error into a simple string for comparisons. * - * @param {Error} error + * @param {Error|Object} error * @return {String} */ function errorString(error) { var resultErrorString = error.toString(); + // If the error wasn't a subclass of Error but something like + // an object literal with name and message properties... if (resultErrorString.substring(0, 7) === "[object") { var name = error.name ? error.name.toString() : "Error"; var message = error.message ? error.message.toString() : ""; @@ -2401,11 +4167,11 @@ if (defined.document) { // QUnit may be defined when it is preconfigured but then only QUnit and QUnit.config may be defined. - if (window.QUnit && window.QUnit.version) { + if (window$1.QUnit && window$1.QUnit.version) { throw new Error("QUnit has already been defined."); } - window.QUnit = QUnit; + window$1.QUnit = QUnit; } // For nodejs @@ -2427,122 +4193,12 @@ }); QUnit.config.autostart = false; } - } - - var SuiteReport = function () { - function SuiteReport(name, parentSuite) { - classCallCheck(this, SuiteReport); - - this.name = name; - this.fullName = parentSuite ? parentSuite.fullName.concat(name) : []; - - this.tests = []; - this.childSuites = []; - if (parentSuite) { - parentSuite.pushChildSuite(this); - } + // For Web/Service Workers + if (self$1 && self$1.WorkerGlobalScope && self$1 instanceof self$1.WorkerGlobalScope) { + self$1.QUnit = QUnit; } - - createClass(SuiteReport, [{ - key: "start", - value: function start(recordTime) { - if (recordTime) { - this._startTime = Date.now(); - } - - return { - name: this.name, - fullName: this.fullName.slice(), - tests: this.tests.map(function (test) { - return test.start(); - }), - childSuites: this.childSuites.map(function (suite) { - return suite.start(); - }), - testCounts: { - total: this.getTestCounts().total - } - }; - } - }, { - key: "end", - value: function end(recordTime) { - if (recordTime) { - this._endTime = Date.now(); - } - - return { - name: this.name, - fullName: this.fullName.slice(), - tests: this.tests.map(function (test) { - return test.end(); - }), - childSuites: this.childSuites.map(function (suite) { - return suite.end(); - }), - testCounts: this.getTestCounts(), - runtime: this.getRuntime(), - status: this.getStatus() - }; - } - }, { - key: "pushChildSuite", - value: function pushChildSuite(suite) { - this.childSuites.push(suite); - } - }, { - key: "pushTest", - value: function pushTest(test) { - this.tests.push(test); - } - }, { - key: "getRuntime", - value: function getRuntime() { - return this._endTime - this._startTime; - } - }, { - key: "getTestCounts", - value: function getTestCounts() { - var counts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : { passed: 0, failed: 0, skipped: 0, todo: 0, total: 0 }; - - counts = this.tests.reduce(function (counts, test) { - if (test.valid) { - counts[test.getStatus()]++; - counts.total++; - } - - return counts; - }, counts); - - return this.childSuites.reduce(function (counts, suite) { - return suite.getTestCounts(counts); - }, counts); - } - }, { - key: "getStatus", - value: function getStatus() { - var _getTestCounts = this.getTestCounts(), - total = _getTestCounts.total, - failed = _getTestCounts.failed, - skipped = _getTestCounts.skipped, - todo = _getTestCounts.todo; - - if (failed) { - return "failed"; - } else { - if (skipped === total) { - return "skipped"; - } else if (todo === total) { - return "todo"; - } else { - return "passed"; - } - } - } - }]); - return SuiteReport; - }(); + } // Handle an unhandled exception. By convention, returns true if further // error handling should be suppressed and false otherwise. @@ -2557,16 +4213,35 @@ if (config.current.ignoreGlobalErrors) { return true; } - pushFailure.apply(undefined, [error.message, error.fileName + ":" + error.lineNumber].concat(args)); + pushFailure.apply(undefined, [error.message, error.stacktrace || error.fileName + ":" + error.lineNumber].concat(args)); } else { test("global failure", extend(function () { - pushFailure.apply(undefined, [error.message, error.fileName + ":" + error.lineNumber].concat(args)); + pushFailure.apply(undefined, [error.message, error.stacktrace || error.fileName + ":" + error.lineNumber].concat(args)); }, { validTest: true })); } return false; } + // Handle an unhandled rejection + function onUnhandledRejection(reason) { + var resultInfo = { + result: false, + message: reason.message || "error", + actual: reason, + source: reason.stack || sourceFromStacktrace(3) + }; + + var currentTest = config.current; + if (currentTest) { + currentTest.assert.pushResult(resultInfo); + } else { + test("global failure", extend(function (assert) { + assert.pushResult(resultInfo); + }, { validTest: true })); + } + } + var QUnit = {}; var globalSuite = new SuiteReport(); @@ -2575,91 +4250,19 @@ // it since each module has a suiteReport associated with it. config.currentModule.suiteReport = globalSuite; - var moduleStack = []; var globalStartCalled = false; var runStarted = false; // Figure out if we're running the tests from a server or not - QUnit.isLocal = !(defined.document && window.location.protocol !== "file:"); + QUnit.isLocal = !(defined.document && window$1.location.protocol !== "file:"); // Expose the current QUnit version - QUnit.version = "2.3.2"; - - function createModule(name, testEnvironment) { - var parentModule = moduleStack.length ? moduleStack.slice(-1)[0] : null; - var moduleName = parentModule !== null ? [parentModule.name, name].join(" > ") : name; - var parentSuite = parentModule ? parentModule.suiteReport : globalSuite; - - var module = { - name: moduleName, - parentModule: parentModule, - tests: [], - moduleId: generateHash(moduleName), - testsRun: 0, - unskippedTestsRun: 0, - childModules: [], - suiteReport: new SuiteReport(name, parentSuite) - }; - - var env = {}; - if (parentModule) { - parentModule.childModules.push(module); - extend(env, parentModule.testEnvironment); - } - extend(env, testEnvironment); - module.testEnvironment = env; - - config.modules.push(module); - return module; - } + QUnit.version = "2.9.2"; extend(QUnit, { on: on, - // Call on start of module test to prepend name to all tests - module: function module(name, testEnvironment, executeNow) { - if (arguments.length === 2) { - if (objectType(testEnvironment) === "function") { - executeNow = testEnvironment; - testEnvironment = undefined; - } - } - - var module = createModule(name, testEnvironment); - - // Move any hooks to a 'hooks' object - if (module.testEnvironment) { - module.hooks = { - before: module.testEnvironment.before, - beforeEach: module.testEnvironment.beforeEach, - afterEach: module.testEnvironment.afterEach, - after: module.testEnvironment.after - }; - - delete module.testEnvironment.before; - delete module.testEnvironment.beforeEach; - delete module.testEnvironment.afterEach; - delete module.testEnvironment.after; - } - - var moduleFns = { - before: setHook(module, "before"), - beforeEach: setHook(module, "beforeEach"), - afterEach: setHook(module, "afterEach"), - after: setHook(module, "after") - }; - - var currentModule = config.currentModule; - if (objectType(executeNow) === "function") { - moduleStack.push(module); - config.currentModule = module; - executeNow.call(module.testEnvironment, moduleFns); - moduleStack.pop(); - module = module.parentModule || currentModule; - } - - config.currentModule = module; - }, + module: module$1, test: test, @@ -2736,7 +4339,9 @@ return sourceFromStacktrace(offset); }, - onError: onError + onError: onError, + + onUnhandledRejection: onUnhandledRejection }); QUnit.pushFailure = pushFailure; @@ -2752,14 +4357,19 @@ // Add a slight delay to allow definition of more modules and tests. if (defined.setTimeout) { - setTimeout(function () { + setTimeout$1(function () { begin(); - }, 13); + }); } else { begin(); } } + function unblockAndAdvanceQueue() { + config.blocking = false; + ProcessingQueue.advance(); + } + function begin() { var i, l, @@ -2789,28 +4399,17 @@ runLoggingCallbacks("begin", { totalTests: Test.count, modules: modulesLog - }); - } - - config.blocking = false; - ProcessingQueue.advance(); - } - - function setHook(module, hookName) { - if (!module.hooks) { - module.hooks = {}; + }).then(unblockAndAdvanceQueue); + } else { + unblockAndAdvanceQueue(); } - - return function (callback) { - module.hooks[hookName] = callback; - }; } exportQUnit(QUnit); (function () { - if (typeof window === "undefined" || typeof document === "undefined") { + if (typeof window$1 === "undefined" || typeof document$1 === "undefined") { return; } @@ -2825,9 +4424,9 @@ return; } - var fixture = document.getElementById("qunit-fixture"); + var fixture = document$1.getElementById("qunit-fixture"); if (fixture) { - config.fixture = fixture.innerHTML; + config.fixture = fixture.cloneNode(true); } } @@ -2839,9 +4438,18 @@ return; } - var fixture = document.getElementById("qunit-fixture"); - if (fixture) { - fixture.innerHTML = config.fixture; + var fixture = document$1.getElementById("qunit-fixture"); + var resetFixtureType = _typeof(config.fixture); + if (resetFixtureType === "string") { + + // support user defined values for `config.fixture` + var newFixture = document$1.createElement("div"); + newFixture.setAttribute("id", "qunit-fixture"); + newFixture.innerHTML = config.fixture; + fixture.parentNode.replaceChild(newFixture, fixture); + } else { + var clonedFixture = config.fixture.cloneNode(true); + fixture.parentNode.replaceChild(clonedFixture, fixture); } } @@ -2851,7 +4459,7 @@ (function () { // Only interact with URLs via window.location - var location = typeof window !== "undefined" && window.location; + var location = typeof window$1 !== "undefined" && window$1.location; if (!location) { return; } @@ -2976,12 +4584,13 @@ (function () { // Don't load the HTML Reporter on non-browser environments - if (typeof window === "undefined" || !window.document) { + if (typeof window$1 === "undefined" || !window$1.document) { return; } var config = QUnit.config, - document$$1 = window.document, + hiddenTests = [], + document = window$1.document, collapseNext = false, hasOwn = Object.prototype.hasOwnProperty, unfilteredUrl = setUrl({ filter: undefined, module: undefined, @@ -3034,7 +4643,7 @@ } function id(name) { - return document$$1.getElementById && document$$1.getElementById(name); + return document.getElementById && document.getElementById(name); } function abortTests() { @@ -3129,16 +4738,56 @@ updatedUrl = setUrl(params); // Check if we can apply the change without a page refresh - if ("hidepassed" === field.name && "replaceState" in window.history) { + if ("hidepassed" === field.name && "replaceState" in window$1.history) { QUnit.urlParams[field.name] = value; config[field.name] = value || false; tests = id("qunit-tests"); if (tests) { - toggleClass(tests, "hidepass", value || false); + var length = tests.children.length; + var children = tests.children; + + if (field.checked) { + for (var i = 0; i < length; i++) { + var test = children[i]; + + if (test && test.className.indexOf("pass") > -1) { + hiddenTests.push(test); + } + } + + var _iteratorNormalCompletion = true; + var _didIteratorError = false; + var _iteratorError = undefined; + + try { + for (var _iterator = hiddenTests[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { + var hiddenTest = _step.value; + + tests.removeChild(hiddenTest); + } + } catch (err) { + _didIteratorError = true; + _iteratorError = err; + } finally { + try { + if (!_iteratorNormalCompletion && _iterator.return) { + _iterator.return(); + } + } finally { + if (_didIteratorError) { + throw _iteratorError; + } + } + } + } else { + while ((test = hiddenTests.pop()) != null) { + tests.appendChild(test); + } + } } - window.history.replaceState(null, "", updatedUrl); + window$1.history.replaceState(null, "", updatedUrl); } else { - window.location = updatedUrl; + window$1.location = updatedUrl; } } @@ -3147,7 +4796,7 @@ arrValue, i, querystring = "?", - location = window.location; + location = window$1.location; params = QUnit.extend(QUnit.extend({}, QUnit.urlParams), params); @@ -3156,7 +4805,8 @@ // Skip inherited or undefined properties if (hasOwn.call(params, key) && params[key] !== undefined) { - // Output a parameter for each value of this key (but usually just one) + // Output a parameter for each value of this key + // (but usually just one) arrValue = [].concat(params[key]); for (i = 0; i < arrValue.length; i++) { querystring += encodeURIComponent(key); @@ -3182,7 +4832,7 @@ } } - window.location = setUrl({ + window$1.location = setUrl({ filter: filter === "" ? undefined : filter, moduleId: selectedModules.length === 0 ? undefined : selectedModules, @@ -3193,7 +4843,7 @@ } function toolbarUrlConfigContainer() { - var urlConfigContainer = document$$1.createElement("span"); + var urlConfigContainer = document.createElement("span"); urlConfigContainer.innerHTML = getUrlConfigHtml(); addClass(urlConfigContainer, "qunit-url-config"); @@ -3205,7 +4855,7 @@ } function abortTestsButton() { - var button = document$$1.createElement("button"); + var button = document.createElement("button"); button.id = "qunit-abort-tests-button"; button.innerHTML = "Abort"; addEvent(button, "click", abortTests); @@ -3213,10 +4863,10 @@ } function toolbarLooseFilter() { - var filter = document$$1.createElement("form"), - label = document$$1.createElement("label"), - input = document$$1.createElement("input"), - button = document$$1.createElement("button"); + var filter = document.createElement("form"), + label = document.createElement("label"), + input = document.createElement("input"), + button = document.createElement("button"); addClass(filter, "qunit-filter"); @@ -3232,7 +4882,7 @@ label.appendChild(input); filter.appendChild(label); - filter.appendChild(document$$1.createTextNode(" ")); + filter.appendChild(document.createTextNode(" ")); filter.appendChild(button); addEvent(filter, "submit", interceptNavigation); @@ -3255,18 +4905,22 @@ } function toolbarModuleFilter() { - var allCheckbox, - commit, + var commit, reset, - moduleFilter = document$$1.createElement("form"), - label = document$$1.createElement("label"), - moduleSearch = document$$1.createElement("input"), - dropDown = document$$1.createElement("div"), - actions = document$$1.createElement("span"), - dropDownList = document$$1.createElement("ul"), + moduleFilter = document.createElement("form"), + label = document.createElement("label"), + moduleSearch = document.createElement("input"), + dropDown = document.createElement("div"), + actions = document.createElement("span"), + applyButton = document.createElement("button"), + resetButton = document.createElement("button"), + allModulesLabel = document.createElement("label"), + allCheckbox = document.createElement("input"), + dropDownList = document.createElement("ul"), dirty = false; moduleSearch.id = "qunit-modulefilter-search"; + moduleSearch.autocomplete = "off"; addEvent(moduleSearch, "input", searchInput); addEvent(moduleSearch, "input", searchFocus); addEvent(moduleSearch, "focus", searchFocus); @@ -3276,9 +4930,27 @@ label.innerHTML = "Module: "; label.appendChild(moduleSearch); + applyButton.textContent = "Apply"; + applyButton.style.display = "none"; + + resetButton.textContent = "Reset"; + resetButton.type = "reset"; + resetButton.style.display = "none"; + + allCheckbox.type = "checkbox"; + allCheckbox.checked = config.moduleId.length === 0; + + allModulesLabel.className = "clickable"; + if (config.moduleId.length) { + allModulesLabel.className = "checked"; + } + allModulesLabel.appendChild(allCheckbox); + allModulesLabel.appendChild(document.createTextNode("All modules")); + actions.id = "qunit-modulefilter-actions"; - actions.innerHTML = "<button style='display:none'>Apply</button>" + "<button type='reset' style='display:none'>Reset</button>" + "<label class='clickable" + (config.moduleId.length ? "" : " checked") + "'><input type='checkbox'" + (config.moduleId.length ? "" : " checked='checked'") + ">All modules</label>"; - allCheckbox = actions.lastChild.firstChild; + actions.appendChild(applyButton); + actions.appendChild(resetButton); + actions.appendChild(allModulesLabel); commit = actions.firstChild; reset = commit.nextSibling; addEvent(commit, "click", applyUrlParams); @@ -3300,7 +4972,7 @@ addEvent(moduleFilter, "reset", function () { // Let the reset happen, then update styles - window.setTimeout(selectionChange); + window$1.setTimeout(selectionChange); }); // Enables show/hide for the dropdown @@ -3310,8 +4982,8 @@ } dropDown.style.display = "block"; - addEvent(document$$1, "click", hideHandler); - addEvent(document$$1, "keydown", hideHandler); + addEvent(document, "click", hideHandler); + addEvent(document, "keydown", hideHandler); // Hide on Escape keydown or outside-container click function hideHandler(e) { @@ -3322,8 +4994,8 @@ moduleSearch.focus(); } dropDown.style.display = "none"; - removeEvent(document$$1, "click", hideHandler); - removeEvent(document$$1, "keydown", hideHandler); + removeEvent(document, "click", hideHandler); + removeEvent(document, "keydown", hideHandler); moduleSearch.value = ""; searchInput(); } @@ -3391,7 +5063,7 @@ toolbar.appendChild(toolbarUrlConfigContainer()); toolbar.appendChild(toolbarModuleFilter()); toolbar.appendChild(toolbarLooseFilter()); - toolbar.appendChild(document$$1.createElement("div")).className = "clearfix"; + toolbar.appendChild(document.createElement("div")).className = "clearfix"; } } @@ -3422,7 +5094,7 @@ if (tests) { tests.innerHTML = ""; - result = document$$1.createElement("p"); + result = document.createElement("p"); result.id = "qunit-testresult"; result.className = "result"; tests.parentNode.insertBefore(result, tests); @@ -3448,7 +5120,7 @@ if (userAgent) { userAgent.innerHTML = ""; - userAgent.appendChild(document$$1.createTextNode("QUnit " + QUnit.version + "; " + navigator.userAgent)); + userAgent.appendChild(document.createTextNode("QUnit " + QUnit.version + "; " + navigator.userAgent)); } } @@ -3456,7 +5128,7 @@ var qunit = id("qunit"); if (qunit) { - qunit.innerHTML = "<h1 id='qunit-header'>" + escapeText(document$$1.title) + "</h1>" + "<h2 id='qunit-banner'></h2>" + "<div id='qunit-testrunner-toolbar'></div>" + appendFilteredTest() + "<h2 id='qunit-userAgent'></h2>" + "<ol id='qunit-tests'></ol>"; + qunit.innerHTML = "<h1 id='qunit-header'>" + escapeText(document.title) + "</h1>" + "<h2 id='qunit-banner'></h2>" + "<div id='qunit-testrunner-toolbar'></div>" + appendFilteredTest() + "<h2 id='qunit-userAgent'></h2>" + "<ol id='qunit-tests'></ol>"; } appendHeader(); @@ -3466,20 +5138,6 @@ appendToolbar(); } - function appendTestsList(modules) { - var i, l, x, z, test, moduleObj; - - for (i = 0, l = modules.length; i < l; i++) { - moduleObj = modules[i]; - - for (x = 0, z = moduleObj.tests.length; x < z; x++) { - test = moduleObj.tests[x]; - - appendTest(test.name, test.testId, moduleObj.name); - } - } - } - function appendTest(name, testId, moduleName) { var title, rerunTrigger, @@ -3491,19 +5149,19 @@ return; } - title = document$$1.createElement("strong"); + title = document.createElement("strong"); title.innerHTML = getNameHtml(name, moduleName); - rerunTrigger = document$$1.createElement("a"); + rerunTrigger = document.createElement("a"); rerunTrigger.innerHTML = "Rerun"; rerunTrigger.href = setUrl({ testId: testId }); - testBlock = document$$1.createElement("li"); + testBlock = document.createElement("li"); testBlock.appendChild(title); testBlock.appendChild(rerunTrigger); testBlock.id = "qunit-test-output-" + testId; - assertList = document$$1.createElement("ol"); + assertList = document.createElement("ol"); assertList.className = "qunit-assert-list"; testBlock.appendChild(assertList); @@ -3513,7 +5171,7 @@ // HTML Reporter initialization and load QUnit.begin(function (details) { - var i, moduleObj, tests; + var i, moduleObj; // Sort modules by name for the picker for (i = 0; i < details.modules.length; i++) { @@ -3528,11 +5186,6 @@ // Initialize QUnit elements appendInterface(); - appendTestsList(details.modules); - tests = id("qunit-tests"); - if (tests && config.hidepassed) { - addClass(tests, "hidepass"); - } }); QUnit.done(function (details) { @@ -3554,7 +5207,7 @@ if (test.className === "" || test.className === "running") { test.className = "aborted"; assertList = test.getElementsByTagName("ol")[0]; - assertLi = document$$1.createElement("li"); + assertLi = document.createElement("li"); assertLi.className = "fail"; assertLi.innerHTML = "Test aborted."; assertList.appendChild(assertLi); @@ -3574,16 +5227,17 @@ id("qunit-testresult-display").innerHTML = html; } - if (config.altertitle && document$$1.title) { + if (config.altertitle && document.title) { // Show ✖ for good, ✔ for bad suite result in title - // use escape sequences in case file gets loaded with non-utf-8-charset - document$$1.title = [stats.failedTests ? "\u2716" : "\u2714", document$$1.title.replace(/^[\u2714\u2716] /i, "")].join(" "); + // use escape sequences in case file gets loaded with non-utf-8 + // charset + document.title = [stats.failedTests ? "\u2716" : "\u2714", document.title.replace(/^[\u2714\u2716] /i, "")].join(" "); } // Scroll back to top to show results - if (config.scrolltop && window.scrollTo) { - window.scrollTo(0, 0); + if (config.scrolltop && window$1.scrollTo) { + window$1.scrollTo(0, 0); } }); @@ -3600,29 +5254,25 @@ } QUnit.testStart(function (details) { - var running, testBlock, bad; - - testBlock = id("qunit-test-output-" + details.testId); - if (testBlock) { - testBlock.className = "running"; - } else { + var running, bad; - // Report later registered tests - appendTest(details.name, details.testId, details.module); - } + appendTest(details.name, details.testId, details.module); running = id("qunit-testresult-display"); + if (running) { + addClass(running, "running"); + bad = QUnit.config.reorder && details.previousFailure; - running.innerHTML = (bad ? "Rerunning previously failed test: <br />" : "Running: <br />") + getNameHtml(details.name, details.module); + running.innerHTML = [bad ? "Rerunning previously failed test: <br />" : "Running: <br />", getNameHtml(details.name, details.module)].join(""); } }); function stripHtml(string) { // Strip tags, html entity and whitespaces - return string.replace(/<\/?[^>]+(>|$)/g, "").replace(/\"/g, "").replace(/\s+/g, ""); + return string.replace(/<\/?[^>]+(>|$)/g, "").replace(/"/g, "").replace(/\s+/g, ""); } QUnit.log(function (details) { @@ -3695,7 +5345,7 @@ assertList = testItem.getElementsByTagName("ol")[0]; - assertLi = document$$1.createElement("li"); + assertLi = document.createElement("li"); assertLi.className = details.result ? "pass" : "fail"; assertLi.innerHTML = message; assertList.appendChild(assertLi); @@ -3706,6 +5356,7 @@ time, testItem, assertList, + status, good, bad, testCounts, @@ -3719,6 +5370,16 @@ testItem = id("qunit-test-output-" + details.testId); + removeClass(testItem, "running"); + + if (details.failed > 0) { + status = "failed"; + } else if (details.todo) { + status = "todo"; + } else { + status = details.skipped ? "skipped" : "passed"; + } + assertList = testItem.getElementsByTagName("ol")[0]; good = details.passed; @@ -3754,7 +5415,7 @@ stats.skippedTests++; testItem.className = "skipped"; - skipped = document$$1.createElement("em"); + skipped = document.createElement("em"); skipped.className = "qunit-skipped-label"; skipped.innerHTML = "skipped"; testItem.insertBefore(skipped, testTitle); @@ -3766,14 +5427,14 @@ testItem.className = testPassed ? "pass" : "fail"; if (details.todo) { - var todoLabel = document$$1.createElement("em"); + var todoLabel = document.createElement("em"); todoLabel.className = "qunit-todo-label"; todoLabel.innerHTML = "todo"; testItem.className += " todo"; testItem.insertBefore(todoLabel, testTitle); } - time = document$$1.createElement("span"); + time = document.createElement("span"); time.className = "runtime"; time.innerHTML = details.runtime + " ms"; testItem.insertBefore(time, assertList); @@ -3789,8 +5450,8 @@ // Show the source of the test when showing assertions if (details.source) { - sourceName = document$$1.createElement("p"); - sourceName.innerHTML = "<strong>Source: </strong>" + details.source; + sourceName = document.createElement("p"); + sourceName.innerHTML = "<strong>Source: </strong>" + escapeText(details.source); addClass(sourceName, "qunit-source"); if (testPassed) { addClass(sourceName, "qunit-collapsed"); @@ -3800,36 +5461,44 @@ }); testItem.appendChild(sourceName); } + + if (config.hidepassed && status === "passed") { + + // use removeChild instead of remove because of support + hiddenTests.push(testItem); + + tests.removeChild(testItem); + } }); // Avoid readyState issue with phantomjs // Ref: #818 var notPhantom = function (p) { return !(p && p.version && p.version.major > 0); - }(window.phantom); + }(window$1.phantom); - if (notPhantom && document$$1.readyState === "complete") { + if (notPhantom && document.readyState === "complete") { QUnit.load(); } else { - addEvent(window, "load", QUnit.load); + addEvent(window$1, "load", QUnit.load); } // Wrap window.onerror. We will call the original window.onerror to see if // the existing handler fully handles the error; if not, we will call the // QUnit.onError function. - var originalWindowOnError = window.onerror; + var originalWindowOnError = window$1.onerror; // Cover uncaught exceptions // Returning true will suppress the default browser handler, // returning false will let it run. - window.onerror = function (message, fileName, lineNumber) { + window$1.onerror = function (message, fileName, lineNumber, columnNumber, errorObj) { var ret = false; if (originalWindowOnError) { - for (var _len = arguments.length, args = Array(_len > 3 ? _len - 3 : 0), _key = 3; _key < _len; _key++) { - args[_key - 3] = arguments[_key]; + for (var _len = arguments.length, args = Array(_len > 5 ? _len - 5 : 0), _key = 5; _key < _len; _key++) { + args[_key - 5] = arguments[_key]; } - ret = originalWindowOnError.call.apply(originalWindowOnError, [this, message, fileName, lineNumber].concat(args)); + ret = originalWindowOnError.call.apply(originalWindowOnError, [this, message, fileName, lineNumber, columnNumber, errorObj].concat(args)); } // Treat return value as window.onerror itself does, @@ -3841,11 +5510,24 @@ lineNumber: lineNumber }; + // According to + // https://blog.sentry.io/2016/01/04/client-javascript-reporting-window-onerror, + // most modern browsers support an errorObj argument; use that to + // get a full stack trace if it's available. + if (errorObj && errorObj.stack) { + error.stacktrace = extractStacktrace(errorObj, 0); + } + ret = QUnit.onError(error); } return ret; }; + + // Listen for unhandled rejections, and call QUnit.onUnhandledRejection + window$1.addEventListener("unhandledrejection", function (event) { + QUnit.onUnhandledRejection(event.reason); + }); })(); /* @@ -4746,7 +6428,9 @@ line = text.substring(lineStart, lineEnd + 1); lineStart = lineEnd + 1; - if (lineHash.hasOwnProperty ? lineHash.hasOwnProperty(line) : lineHash[line] !== undefined) { + var lineHashExists = lineHash.hasOwnProperty ? lineHash.hasOwnProperty(line) : lineHash[line] !== undefined; + + if (lineHashExists) { chars += String.fromCharCode(lineHash[line]); } else { chars += String.fromCharCode(lineArrayLength); diff --git a/server/city.cgi b/server/city.cgi index 2b5a0d260a3b78430295d42dc1826390af71069e..ef5b484f09b4d4772759d9b74336e5301a33243d 100755 --- a/server/city.cgi +++ b/server/city.cgi @@ -8,71 +8,90 @@ import matplotlib matplotlib.use('Agg') # Select a Matplotlib backend that's guaranteed to work in headless mode before loading OSMnx. import osmnx +from itertools import chain + def load_cached_graph(filename): return osmnx.load_graphml(filename) -def acquire_graph(filename, address, radius): +def acquire_graph(filename, address, network_type, radius): # see osmnx.osm_net_download for network types - graph, center = osmnx.graph_from_address(address, distance=radius, network_type='all', return_coords=True) + graph, center = osmnx.graph_from_address(address, distance=radius, network_type=network_type, return_coords=True) graph.graph['center'] = center osmnx.save_graphml(graph, filename=filename) return graph -def load_graph(address, radius): - filename = '{slug}.{radius}.graphml'.format(slug=slugify.slugify(address), radius=radius) +def load_graph(address, network_type, radius): + filename = f'{slugify.slugify(address)}.{network_type}.{radius}.graphml' try: return load_cached_graph(filename) except FileNotFoundError: - return acquire_graph(filename, address, radius) + return acquire_graph(filename, address, network_type, radius) + +def to_json(walk_graph, drive_graph, scale=1): + vertices_dictionary = {entry[0]: (entry[1]['x'], entry[1]['y']) + for entry in chain(walk_graph.nodes(data=True), drive_graph.nodes(data=True))} -def to_json(graph, scale=1): - center = [0, 0] - count = 0 - for entry in graph.nodes(data=True): - center[0] += entry[1]['x'] - center[1] += entry[1]['y'] - count += 1 - center = (center[0] / count, center[1] / count) + def get_center(): + total_x = 0 + total_y = 0 + count = 0 + for x, y in vertices_dictionary.values(): + total_x += x + total_y += y + count += 1 + return total_x / count, total_y / count + + center = get_center() def transform(position): return (position[0] - center[0]) * scale, -(position[1] - center[1]) * scale - vertices_dictionary = {entry[0]: (entry[1]['x'], entry[1]['y']) for entry in graph.nodes(data=True)} + def to_path(entry): + if 'geometry' in entry[2]: + return tuple(transform((x, y)) for x, y in zip(*entry[2]['geometry'].xy)) + return transform(vertices_dictionary[entry[0]]), transform(vertices_dictionary[entry[1]]) + + def encode_vertex(name, position): + return { + 'name': name, + 'position': transform(position), + } + + def encode_edge(network_type, entry): + return { + 'type': network_type, + 'source': entry[0], + 'destination': entry[1], + 'length': entry[2]['length'], + 'path': to_path(entry), + } + data = { - 'vertices': [ - { - 'name': name, - 'position': transform(position), - } for name, position in vertices_dictionary.items() - ], - 'edges': [ - { - 'source': entry[0], - 'destination': entry[1], - 'length': entry[2]['length'], - 'path': tuple(transform((x, y)) for x, y in zip(*entry[2]['geometry'].xy)) if 'geometry' in entry[2] - else (transform(vertices_dictionary[entry[0]]), transform(vertices_dictionary[entry[1]])) - } for entry in graph.edges(data=True) - ] + 'vertices': [encode_vertex(name, position) for name, position in vertices_dictionary.items()], + 'edges': + [encode_edge('walk', entry) for entry in walk_graph.edges(data=True)] + + [encode_edge('drive', entry) for entry in drive_graph.edges(data=True)], } return json.dumps(data) def main(): - address = cgi.FieldStorage().getfirst('address') + storage = cgi.FieldStorage() + address = storage.getfirst('address') if address is None: address = 'Avery Hall, Lincoln, NE, USA' try: - radius = int(cgi.FieldStorage().getfirst('radius')) + radius = int(storage.getfirst('radius')) except (ValueError, TypeError): - radius = 200 - graph = load_graph(address, radius) - content = to_json(graph, scale=500000) - print('Content-Type: application/json\n\n{content}'.format(content=content)) + radius = 1000 + walk_graph = load_graph(address, 'walk', radius) + drive_graph = load_graph(address, 'drive', radius) + content = to_json(walk_graph, drive_graph, scale=500000) + print(f'Content-Type: application/json\n\n{content}') if __name__ == '__main__': diff --git a/unit_tests/test_control_inversion.js b/unit_tests/test_control_inversion.js index 521bd148cbdf695993c5e72c5827381c48c3ba2f..70a96c6d9781a3fe1357a01ee0b348f962a7dda9 100644 --- a/unit_tests/test_control_inversion.js +++ b/unit_tests/test_control_inversion.js @@ -1,4 +1,4 @@ -QUnit.module('control_inversion.js'); +QUnit.module('test_control_inversion.js'); /* globals QUnit runningCoprograms Coprogram block UNPAUSE pause */ /* eslint-disable no-magic-numbers, no-underscore-dangle */ diff --git a/unit_tests/test_heat_map.js b/unit_tests/test_heat_map.js deleted file mode 100644 index d89777357f27d893c0ca106580ae256f33137fe4..0000000000000000000000000000000000000000 --- a/unit_tests/test_heat_map.js +++ /dev/null @@ -1,100 +0,0 @@ -QUnit.module('heat_map.js'); -/* globals QUnit Vertex UndirectedEdge UndirectedGraph City Route Bus EdgeLabeledGraph */ -/* globals computeTransitGraph computeShortestPathSuccessors computeTrafficMatrix computeHeatFromTraffic computeHeatMap */ -/* eslint-disable no-magic-numbers */ - -// This reformatting is not necessary, but makes the output from failed tests easier to read. -function toTriples(edgeLabeledGraph) { - const accumulator = []; - for (const [source, adjacencies] of edgeLabeledGraph.edges) { - for (const [destination, label] of adjacencies) { - accumulator.push([source, destination, label]); - } - } - let result = ''; - for (const triple of accumulator.sort()) { - result += `(${triple}); `; - } - return result.slice(0, -2); -} - -// Building graphs from strings is not necessary, but makes tests easier to write. -function fromTriples(triplesString) { - const triples = triplesString.split('; ').map((triple) => triple.slice(1, -1).split(',')); - const vertices = new Set(); - for (const [source, destination, _] of triples) { - vertices.add(source); - vertices.add(destination); - } - const result = new EdgeLabeledGraph(vertices, undefined); - for (const [source, destination, label] of triples) { - let cast = Number(label); - if (label === '') { - cast = undefined; - } else if (Number.isNaN(cast)){ - cast = label; - } - result.setLabel(source, destination, cast); - } - return result; -} - -const CITY_FOR_SMOKE_TESTS = (() => { - const a = new Vertex('a'); - const b = new Vertex('b'); - const c = new Vertex('c'); - const walkGraph = new UndirectedGraph(); - walkGraph.addVertex(a); - walkGraph.addVertex(b); - walkGraph.addVertex(c); - walkGraph.addEdge(a, new UndirectedEdge(2.0), b); - walkGraph.addEdge(a, new UndirectedEdge(4.0), c); - walkGraph.addEdge(b, new UndirectedEdge(8.0), c); - const driveGraph = new UndirectedGraph(); - driveGraph.addVertex(a); - driveGraph.addVertex(b); - driveGraph.addVertex(c); - driveGraph.addEdge(a, new UndirectedEdge(1.0), c); - const city = new City(walkGraph, driveGraph); - const route = new Route(city, a, c); - const x = new Bus(route.getArc(a)); // eslint-disable-line no-unused-vars - const y = new Bus(route.getArc(c)); // eslint-disable-line no-unused-vars - return city; -})(); - -QUnit.test('smoke test computeTransitGraph', (assert) => { - const transitGraph = computeTransitGraph(CITY_FOR_SMOKE_TESTS); - assert.deepEqual(toTriples(transitGraph), '(a,a,Infinity); (a,b,2); (a,c,2); (b,a,2); (b,b,Infinity); (b,c,8); (c,a,2); (c,b,8); (c,c,Infinity)'); -}); - -QUnit.test('smoke test computeShortestPathSuccessors', (assert) => { - const transitGraph = fromTriples('(a,a,Infinity); (a,b,2); (a,c,2); (b,a,2); (b,b,Infinity); (b,c,8); (c,a,2); (c,b,8); (c,c,Infinity)'); - const successors = computeShortestPathSuccessors(transitGraph); - assert.deepEqual(toTriples(successors), '(a,a,); (a,b,b); (a,c,c); (b,a,a); (b,b,); (b,c,a); (c,a,a); (c,b,a); (c,c,)'); -}); - -QUnit.test('smoke test computeTrafficMatrix', (assert) => { - const successors = fromTriples('(a,a,); (a,b,b); (a,c,c); (b,a,a); (b,b,); (b,c,a); (c,a,a); (c,b,a); (c,c,)'); - const traffic = computeTrafficMatrix(successors); - assert.deepEqual(toTriples(traffic), '(a,a,3); (a,b,2); (a,c,2); (b,a,1); (b,b,3); (b,c,1); (c,a,1); (c,b,1); (c,c,3)'); -}); - -QUnit.test('smoke test computeHeatFromTraffic', (assert) => { - const traffic = fromTriples('(a,a,3); (a,b,2); (a,c,2); (b,a,1); (b,b,3); (b,c,1); (c,a,1); (c,b,1); (c,c,3)'); - const heat = computeHeatFromTraffic(traffic); - assert.deepEqual(heat.size, 3); - assert.deepEqual(heat.get('a'), 7); // fromTriples will give us string keys, not vertex keys - assert.deepEqual(heat.get('b'), 5); - assert.deepEqual(heat.get('c'), 5); -}); - -QUnit.test('smoke test computeHeatMap', (assert) => { - const a = CITY_FOR_SMOKE_TESTS.walkGraph.vertices.find((vertex) => vertex.name === 'a'); - const b = CITY_FOR_SMOKE_TESTS.walkGraph.vertices.find((vertex) => vertex.name === 'b'); - const c = CITY_FOR_SMOKE_TESTS.walkGraph.vertices.find((vertex) => vertex.name === 'c'); - const heat = computeHeatMap(CITY_FOR_SMOKE_TESTS); - assert.deepEqual(heat.size, 3); - assert.deepEqual(heat.get(a), 7); - assert.deepEqual(heat.get(b), 5); - assert.deepEqual(heat.get(c), 5); -}); diff --git a/unit_tests/test_loading.js b/unit_tests/test_loading.js index b562875420defa9d3068f731c654a99b22020703..654a9603e2a92e1aa1f42b4e6dfa5ad57615f436 100644 --- a/unit_tests/test_loading.js +++ b/unit_tests/test_loading.js @@ -1,4 +1,4 @@ -QUnit.module('loading.js'); +QUnit.module('test_loading.js'); /* globals QUnit dataToGraphs WALK_SPEED DRIVE_SPEED */ /* eslint-disable no-magic-numbers */ @@ -15,14 +15,15 @@ function vertices(...data) { } function edges(...data) { - console.assert(data.length % 4 === 0, `Tried to create test data with incomplete edge-description quadruples: ${data}.`); + console.assert(data.length % 5 === 0, `Tried to create test data with incomplete edge-description pentuples: ${data}.`); const result = []; - for (let i = 0; i < data.length; i += 4) { + for (let i = 0; i < data.length; i += 5) { result.push({ - source: data[i], - destination: data[i + 1], - path: data[i + 2], - length: data[i + 3], + type: data[i], + source: data[i + 1], + destination: data[i + 2], + path: data[i + 3], + length: data[i + 4], }); } return result; @@ -52,54 +53,100 @@ QUnit.test('load vertex positions', (assert) => { assert.deepEqual(driveGraph.vertices.map((vertex) => `${vertex.position}`).sort(), ['0,0', '1,-1', '1,1']); }); -QUnit.test('load neighborhoods', (assert) => { +QUnit.test('load walk-graph neighborhoods', (assert) => { const { walkGraph, driveGraph, } = dataToGraphs({ vertices: vertices('a', 0, 0, 'b', 1, -1, 'c', 1, 1), - edges: edges('a', 'b', [[0, 0], [1, -1]], 2), + edges: edges('walk', 'a', 'b', [[0, 0], [1, -1]], 2), }); assert.deepEqual(walkGraph.getNeighbors(walkGraph.vertices[0]).map((vertex) => vertex.name).sort(), ['b']); assert.deepEqual(walkGraph.getNeighbors(walkGraph.vertices[1]).map((vertex) => vertex.name).sort(), ['a']); assert.deepEqual(walkGraph.getNeighbors(walkGraph.vertices[2]).map((vertex) => vertex.name).sort(), []); + assert.deepEqual(driveGraph.getNeighbors(driveGraph.vertices[0]).map((vertex) => vertex.name).sort(), []); + assert.deepEqual(driveGraph.getNeighbors(driveGraph.vertices[1]).map((vertex) => vertex.name).sort(), []); + assert.deepEqual(driveGraph.getNeighbors(driveGraph.vertices[2]).map((vertex) => vertex.name).sort(), []); +}); + +QUnit.test('load drive-graph neighborhoods', (assert) => { + const { + walkGraph, + driveGraph, + } = dataToGraphs({ + vertices: vertices('a', 0, 0, 'b', 1, -1, 'c', 1, 1), + edges: edges('drive', 'a', 'b', [[0, 0], [1, -1]], 2), + }); + assert.deepEqual(walkGraph.getNeighbors(walkGraph.vertices[0]).map((vertex) => vertex.name).sort(), []); + assert.deepEqual(walkGraph.getNeighbors(walkGraph.vertices[1]).map((vertex) => vertex.name).sort(), []); + assert.deepEqual(walkGraph.getNeighbors(walkGraph.vertices[2]).map((vertex) => vertex.name).sort(), []); assert.deepEqual(driveGraph.getNeighbors(driveGraph.vertices[0]).map((vertex) => vertex.name).sort(), ['b']); assert.deepEqual(driveGraph.getNeighbors(driveGraph.vertices[1]).map((vertex) => vertex.name).sort(), ['a']); assert.deepEqual(driveGraph.getNeighbors(driveGraph.vertices[2]).map((vertex) => vertex.name).sort(), []); }); -QUnit.test('load short paths', (assert) => { +QUnit.test('load walk-graph short paths', (assert) => { const { walkGraph, - driveGraph, + _, } = dataToGraphs({ vertices: vertices('a', 0, 0, 'b', 1, -1, 'c', 1, 1), - edges: edges('a', 'b', [[0, 0], [1, -1]], 2), + edges: edges('walk', 'a', 'b', [[0, 0], [1, -1]], 2), }); assert.deepEqual(walkGraph.getEdge(walkGraph.vertices[0], walkGraph.vertices[1]).path, [[0, 0], [1, -1]]); +}); + +QUnit.test('load drive-graph short paths', (assert) => { + const { + _, + driveGraph, + } = dataToGraphs({ + vertices: vertices('a', 0, 0, 'b', 1, -1, 'c', 1, 1), + edges: edges('drive', 'a', 'b', [[0, 0], [1, -1]], 2), + }); assert.deepEqual(driveGraph.getEdge(driveGraph.vertices[0], driveGraph.vertices[1]).path, [[0, 0], [1, -1]]); }); -QUnit.test('load long paths', (assert) => { +QUnit.test('load walk-graph long paths', (assert) => { const { walkGraph, - driveGraph, + _, } = dataToGraphs({ vertices: vertices('a', 0, 0, 'b', 1, -1, 'c', 1, 1), - edges: edges('a', 'b', [[0, 0], [0.5, 0], [1, -1]], 2), + edges: edges('walk', 'a', 'b', [[0, 0], [0.5, 0], [1, -1]], 2), }); assert.deepEqual(walkGraph.getEdge(walkGraph.vertices[0], walkGraph.vertices[1]).path, [[0, 0], [0.5, 0], [1, -1]]); +}); + +QUnit.test('load drive-graph long paths', (assert) => { + const { + _, + driveGraph, + } = dataToGraphs({ + vertices: vertices('a', 0, 0, 'b', 1, -1, 'c', 1, 1), + edges: edges('drive', 'a', 'b', [[0, 0], [0.5, 0], [1, -1]], 2), + }); assert.deepEqual(driveGraph.getEdge(driveGraph.vertices[0], driveGraph.vertices[1]).path, [[0, 0], [0.5, 0], [1, -1]]); }); -QUnit.test('load lengths', (assert) => { +QUnit.test('load walk-graph lengths', (assert) => { const { walkGraph, - driveGraph, + _, } = dataToGraphs({ vertices: vertices('a', 0, 0, 'b', 1, -1, 'c', 1, 1), - edges: edges('a', 'b', [[0, 0], [1, -1]], 2), + edges: edges('walk', 'a', 'b', [[0, 0], [1, -1]], 2), }); assert.deepEqual(walkGraph.getEdge(walkGraph.vertices[0], walkGraph.vertices[1]).weight, 2 / WALK_SPEED); +}); + +QUnit.test('load drive-graph lengths', (assert) => { + const { + _, + driveGraph, + } = dataToGraphs({ + vertices: vertices('a', 0, 0, 'b', 1, -1, 'c', 1, 1), + edges: edges('drive', 'a', 'b', [[0, 0], [1, -1]], 2), + }); assert.deepEqual(driveGraph.getEdge(driveGraph.vertices[0], driveGraph.vertices[1]).weight, 2 / DRIVE_SPEED); }); diff --git a/unit_tests/test_patching.js b/unit_tests/test_patching.js index 7a2eed6f119d4c576c329f9e48acdb36669621db..5f000572eef4510da1f1b4f9ae5b4b9aba1b7f6e 100644 --- a/unit_tests/test_patching.js +++ b/unit_tests/test_patching.js @@ -1,4 +1,4 @@ -QUnit.module('patching.js'); +QUnit.module('test_patching.js'); /* globals QUnit Vertex UndirectedEdge UndirectedGraph City Route Bus Patch */ /* eslint-disable no-magic-numbers, no-underscore-dangle */ diff --git a/unit_tests/test_positioned_graph.js b/unit_tests/test_positioned_graph.js index 2377f7eee6eba095f14284d96d1c6f1ff15e6049..4f01b4c7d937a8e4976f13d85cce78bc21fd39fb 100644 --- a/unit_tests/test_positioned_graph.js +++ b/unit_tests/test_positioned_graph.js @@ -1,4 +1,4 @@ -QUnit.module('positioned_graph.js'); +QUnit.module('test_positioned_graph.js'); /* globals QUnit TAU toDirection toOffsetPoint toOffsetPath toTurningPath Placement Track*/ /* eslint-disable no-magic-numbers, no-underscore-dangle */ diff --git a/unit_tests/test_priority_queue.js b/unit_tests/test_priority_queue.js new file mode 100644 index 0000000000000000000000000000000000000000..021f24293f9a164a7e2806459fb1468bdcb1b486 --- /dev/null +++ b/unit_tests/test_priority_queue.js @@ -0,0 +1,71 @@ +QUnit.module('test_priority_queue.js'); +/* globals QUnit PriorityQueue */ +/* eslint-disable no-magic-numbers, no-underscore-dangle */ + +QUnit.test('enqueue elements requiring a variety of bubbling lengths', (assert) => { + const priorityQueue = new PriorityQueue(); + priorityQueue.enqueue(1); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [1]); + priorityQueue.enqueue(3); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [1, 3]); + priorityQueue.enqueue(4); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [1, 3, 4]); + priorityQueue.enqueue(2); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [1, 2, 4, 3]); + priorityQueue.enqueue(5); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [1, 2, 4, 3, 5]); + priorityQueue.enqueue(0); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [0, 2, 1, 3, 5, 4]); +}); + +QUnit.test('peek at and dequeue elements requiring a variety of bubbling lengths', (assert) => { + const priorityQueue = new PriorityQueue(); + for (const element of [1, 3, 4, 2, 5, 0]) { + priorityQueue.enqueue(element); + } + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [0, 2, 1, 3, 5, 4]); + assert.deepEqual(priorityQueue.peek(), 0); + let result = priorityQueue.dequeue(); + assert.deepEqual(result, 0); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [1, 2, 4, 3, 5]); + assert.deepEqual(priorityQueue.peek(), 1); + result = priorityQueue.dequeue(); + assert.deepEqual(result, 1); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [2, 3, 4, 5]); + assert.deepEqual(priorityQueue.peek(), 2); + result = priorityQueue.dequeue(); + assert.deepEqual(result, 2); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [3, 5, 4]); + assert.deepEqual(priorityQueue.peek(), 3); + result = priorityQueue.dequeue(); + assert.deepEqual(result, 3); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [4, 5]); + assert.deepEqual(priorityQueue.peek(), 4); + result = priorityQueue.dequeue(); + assert.deepEqual(result, 4); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [5]); + assert.deepEqual(priorityQueue.peek(), 5); + result = priorityQueue.dequeue(); + assert.deepEqual(result, 5); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), []); +}); + +QUnit.test('delete elements from a variety of positions', (assert) => { + const priorityQueue = new PriorityQueue(); + for (const element of [0, 5, 2, 4, 3, 1]) { + priorityQueue.enqueue(element); + } + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [0, 3, 1, 5, 4, 2]); + priorityQueue.delete(5); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [0, 2, 1, 3, 4]); + priorityQueue.delete(2); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [0, 3, 1, 4]); + priorityQueue.delete(4); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [0, 3, 1]); + priorityQueue.delete(3); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [0, 1]); + priorityQueue.delete(1); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), [0]); + priorityQueue.delete(0); + assert.deepEqual(priorityQueue._vertices.map((vertex) => vertex.element), []); +}); diff --git a/unit_tests/test_pseudoplanarity.js b/unit_tests/test_pseudoplanarity.js new file mode 100644 index 0000000000000000000000000000000000000000..124b693a1c12f31eebd4512b4956c11b2dcae999 --- /dev/null +++ b/unit_tests/test_pseudoplanarity.js @@ -0,0 +1,270 @@ +QUnit.module('test_pseudoplanarity.js'); +/* globals QUnit PositionedVertex PositionedEdge UndirectedGraph RotationSystem findPseudofaces */ +/* eslint-disable no-magic-numbers */ + +function addEdge(graph, source, destination) { + graph.addEdge(source, new PositionedEdge(source, [], 1, destination), destination); +} + +function getFaceName(face) { + return String(face.vertices.map((vertex) => vertex.name)); +} + +function getFaceNames(pseudofaces) { + return pseudofaces.map(getFaceName).sort(); +} + +QUnit.test('encode an non-crossing C_4 as a rotation system', (assert) => { + const graph = new UndirectedGraph(); + const a = new PositionedVertex('a', [0, 0]); + const b = new PositionedVertex('b', [1, 0]); + const c = new PositionedVertex('c', [1, 1]); + const d = new PositionedVertex('d', [-2, -1]); + graph.addVertex(a); + graph.addVertex(b); + graph.addVertex(c); + graph.addVertex(d); + addEdge(graph, a, b); + addEdge(graph, b, c); + addEdge(graph, c, d); + addEdge(graph, d, a); + const rotationSystem = new RotationSystem(graph); + assert.deepEqual(rotationSystem.getNextNeighbor(a, b), d); + assert.deepEqual(rotationSystem.getNextNeighbor(a, d), b); + assert.deepEqual(rotationSystem.getNextNeighbor(b, a), c); + assert.deepEqual(rotationSystem.getNextNeighbor(b, c), a); + assert.deepEqual(rotationSystem.getNextNeighbor(c, b), d); + assert.deepEqual(rotationSystem.getNextNeighbor(c, d), b); + assert.deepEqual(rotationSystem.getNextNeighbor(d, a), c); + assert.deepEqual(rotationSystem.getNextNeighbor(d, c), a); +}); + +QUnit.test('encode a crossing C_4 as a rotation system', (assert) => { + const graph = new UndirectedGraph(); + const a = new PositionedVertex('a', [0, 0]); + const b = new PositionedVertex('b', [1, 0]); + const c = new PositionedVertex('c', [1, 1]); + const d = new PositionedVertex('d', [0, -1]); + graph.addVertex(a); + graph.addVertex(b); + graph.addVertex(c); + graph.addVertex(d); + addEdge(graph, a, b); + addEdge(graph, b, c); + addEdge(graph, c, d); + addEdge(graph, d, a); + const rotationSystem = new RotationSystem(graph); + assert.deepEqual(rotationSystem.getNextNeighbor(a, b), d); + assert.deepEqual(rotationSystem.getNextNeighbor(a, d), b); + assert.deepEqual(rotationSystem.getNextNeighbor(b, a), c); + assert.deepEqual(rotationSystem.getNextNeighbor(b, c), a); + assert.deepEqual(rotationSystem.getNextNeighbor(c, b), d); + assert.deepEqual(rotationSystem.getNextNeighbor(c, d), b); + assert.deepEqual(rotationSystem.getNextNeighbor(d, a), c); + assert.deepEqual(rotationSystem.getNextNeighbor(d, c), a); +}); + +QUnit.test('encode a crossing K_4 as a rotation system', (assert) => { + const graph = new UndirectedGraph(); + const a = new PositionedVertex('a', [0, 0]); + const b = new PositionedVertex('b', [1, 0]); + const c = new PositionedVertex('c', [1, 1]); + const d = new PositionedVertex('d', [0, -1]); + graph.addVertex(a); + graph.addVertex(b); + graph.addVertex(c); + graph.addVertex(d); + addEdge(graph, a, b); + addEdge(graph, a, c); + addEdge(graph, a, d); + addEdge(graph, b, c); + addEdge(graph, b, d); + addEdge(graph, c, d); + const rotationSystem = new RotationSystem(graph); + assert.deepEqual(rotationSystem.getNextNeighbor(a, b), d); + assert.deepEqual(rotationSystem.getNextNeighbor(a, c), b); + assert.deepEqual(rotationSystem.getNextNeighbor(a, d), c); + assert.deepEqual(rotationSystem.getNextNeighbor(b, a), c); + assert.deepEqual(rotationSystem.getNextNeighbor(b, c), d); + assert.deepEqual(rotationSystem.getNextNeighbor(b, d), a); + assert.deepEqual(rotationSystem.getNextNeighbor(c, a), b); + assert.deepEqual(rotationSystem.getNextNeighbor(c, b), d); + assert.deepEqual(rotationSystem.getNextNeighbor(c, d), a); + assert.deepEqual(rotationSystem.getNextNeighbor(d, a), c); + assert.deepEqual(rotationSystem.getNextNeighbor(d, b), a); + assert.deepEqual(rotationSystem.getNextNeighbor(d, c), b); +}); + +QUnit.test('encode a K_1,4 as a rotation system', (assert) => { + const graph = new UndirectedGraph(); + const a = new PositionedVertex('a', [0, 0]); + const b = new PositionedVertex('b', [1, 0]); + const c = new PositionedVertex('c', [2, 2]); + const d = new PositionedVertex('d', [-3, 3]); + const e = new PositionedVertex('e', [0, -4]); + graph.addVertex(a); + graph.addVertex(b); + graph.addVertex(c); + graph.addVertex(d); + graph.addVertex(e); + addEdge(graph, a, b); + addEdge(graph, a, c); + addEdge(graph, a, d); + addEdge(graph, a, e); + const rotationSystem = new RotationSystem(graph); + assert.deepEqual(rotationSystem.getNextNeighbor(a, b), e); + assert.deepEqual(rotationSystem.getNextNeighbor(a, c), b); + assert.deepEqual(rotationSystem.getNextNeighbor(a, d), c); + assert.deepEqual(rotationSystem.getNextNeighbor(a, e), d); + assert.deepEqual(rotationSystem.getNextNeighbor(b, a), a); + assert.deepEqual(rotationSystem.getNextNeighbor(c, a), a); + assert.deepEqual(rotationSystem.getNextNeighbor(d, a), a); + assert.deepEqual(rotationSystem.getNextNeighbor(e, a), a); +}); + +QUnit.test('encode a C_3 with two pendant edges as a rotation system', (assert) => { + const graph = new UndirectedGraph(); + const a = new PositionedVertex('a', [0, 0]); + const b = new PositionedVertex('b', [2, 0]); + const c = new PositionedVertex('c', [0, 2]); + const d = new PositionedVertex('d', [-1, -1]); + const e = new PositionedVertex('e', [1, 1]); + graph.addVertex(a); + graph.addVertex(b); + graph.addVertex(c); + graph.addVertex(d); + graph.addVertex(e); + addEdge(graph, a, b); + addEdge(graph, b, c); + addEdge(graph, c, a); + addEdge(graph, a, d); + addEdge(graph, a, e); + const rotationSystem = new RotationSystem(graph); + assert.deepEqual(rotationSystem.getNextNeighbor(a, b), d); + assert.deepEqual(rotationSystem.getNextNeighbor(a, c), e); + assert.deepEqual(rotationSystem.getNextNeighbor(a, d), c); + assert.deepEqual(rotationSystem.getNextNeighbor(a, e), b); + assert.deepEqual(rotationSystem.getNextNeighbor(b, a), c); + assert.deepEqual(rotationSystem.getNextNeighbor(b, c), a); + assert.deepEqual(rotationSystem.getNextNeighbor(c, a), b); + assert.deepEqual(rotationSystem.getNextNeighbor(c, b), a); + assert.deepEqual(rotationSystem.getNextNeighbor(d, a), a); + assert.deepEqual(rotationSystem.getNextNeighbor(e, a), a); +}); + +QUnit.test('find the pseudoface graph of a P_3', (assert) => { + const graph = new UndirectedGraph(); + const a = new PositionedVertex('a', [0, 0]); + const b = new PositionedVertex('b', [1, 0]); + const c = new PositionedVertex('c', [2, 1]); + graph.addVertex(a); + graph.addVertex(b); + graph.addVertex(c); + addEdge(graph, a, b); + addEdge(graph, b, c); + const pseudofaces = findPseudofaces(graph); + assert.deepEqual(getFaceNames(pseudofaces), []); +}); + +QUnit.test('find the pseudoface graph of a non-crossing C_4', (assert) => { + const graph = new UndirectedGraph(); + const a = new PositionedVertex('a', [0, 0]); + const b = new PositionedVertex('b', [1, 0]); + const c = new PositionedVertex('c', [1, 1]); + const d = new PositionedVertex('d', [-2, -1]); + graph.addVertex(a); + graph.addVertex(b); + graph.addVertex(c); + graph.addVertex(d); + addEdge(graph, a, b); + addEdge(graph, b, c); + addEdge(graph, c, d); + addEdge(graph, d, a); + const pseudofaces = findPseudofaces(graph); + assert.deepEqual(getFaceNames(pseudofaces), ['a,b,c,d']); +}); + +QUnit.test('find the pseudoface graph of a crossing C_4', (assert) => { + const graph = new UndirectedGraph(); + const a = new PositionedVertex('a', [0, 0]); + const b = new PositionedVertex('b', [1, 0]); + const c = new PositionedVertex('c', [1, 1]); + const d = new PositionedVertex('d', [0, -1]); + graph.addVertex(a); + graph.addVertex(b); + graph.addVertex(c); + graph.addVertex(d); + addEdge(graph, a, b); + addEdge(graph, b, c); + addEdge(graph, c, d); + addEdge(graph, d, a); + const pseudofaces = findPseudofaces(graph); + assert.deepEqual(getFaceNames(pseudofaces), ['a,b,c,d']); +}); + +QUnit.test('find the pseudoface graph of a non-crossing K_4', (assert) => { + const graph = new UndirectedGraph(); + const a = new PositionedVertex('a', [0, 0]); + const b = new PositionedVertex('b', [1, 0]); + const c = new PositionedVertex('c', [-1, 1]); + const d = new PositionedVertex('d', [-1, -1]); + graph.addVertex(a); + graph.addVertex(b); + graph.addVertex(c); + graph.addVertex(d); + addEdge(graph, a, b); + addEdge(graph, a, c); + addEdge(graph, a, d); + addEdge(graph, b, c); + addEdge(graph, b, d); + addEdge(graph, c, d); + const pseudofaces = findPseudofaces(graph); + assert.deepEqual(getFaceNames(pseudofaces), ['a,b,c', 'a,b,d', 'a,c,d', 'b,c,d']); +}); + +QUnit.test('find the pseudoface graph of a crossing K_4', (assert) => { + const graph = new UndirectedGraph(); + const a = new PositionedVertex('a', [0, 0]); + const b = new PositionedVertex('b', [1, 0]); + const c = new PositionedVertex('c', [1, 1]); + const d = new PositionedVertex('d', [0, -1]); + graph.addVertex(a); + graph.addVertex(b); + graph.addVertex(c); + graph.addVertex(d); + addEdge(graph, a, b); + addEdge(graph, a, c); + addEdge(graph, a, d); + addEdge(graph, b, c); + addEdge(graph, b, d); + addEdge(graph, c, d); + const pseudofaces = findPseudofaces(graph); + assert.deepEqual(getFaceNames(pseudofaces), ['a,b,c', 'a,b,d', 'a,c,b,d', 'a,c,d', 'b,c,d']); +}); + +QUnit.test('find the pseudoface graph of a C_3 with four pendant edges', (assert) => { + const graph = new UndirectedGraph(); + const a = new PositionedVertex('a', [0, 0]); + const b = new PositionedVertex('b', [4, 0]); + const c = new PositionedVertex('c', [0, 4]); + const d = new PositionedVertex('d', [-1, -1]); + const e = new PositionedVertex('e', [1, 1]); + const f = new PositionedVertex('f', [3, 1]); + const g = new PositionedVertex('g', [5, -1]); + graph.addVertex(a); + graph.addVertex(b); + graph.addVertex(c); + graph.addVertex(d); + graph.addVertex(e); + graph.addVertex(f); + graph.addVertex(g); + addEdge(graph, a, b); + addEdge(graph, b, c); + addEdge(graph, c, a); + addEdge(graph, a, d); + addEdge(graph, a, e); + addEdge(graph, b, f); + addEdge(graph, b, g); + const pseudofaces = findPseudofaces(graph); + assert.deepEqual(getFaceNames(pseudofaces), ['a,b,c']); +}); diff --git a/unit_tests/test_simulation.js b/unit_tests/test_simulation.js index 1e6000ad931f0e72d206d96f506d2ae3ad8801c3..754a5b84760cbf08bc42b24aa17d8731a0efb1d3 100644 --- a/unit_tests/test_simulation.js +++ b/unit_tests/test_simulation.js @@ -1,4 +1,4 @@ -QUnit.module('simulation.js'); +QUnit.module('test_simulation.js'); /* globals QUnit SimulationEvent Simulation Decision Agent */ /* eslint-disable no-magic-numbers */ diff --git a/unit_tests/test_throttled_simulation.js b/unit_tests/test_throttled_simulation.js index d766d4fb64535e42492018c1188491a95e30d2c5..d3ac793e358736d19bb4dafb477f78aba5f94753 100644 --- a/unit_tests/test_throttled_simulation.js +++ b/unit_tests/test_throttled_simulation.js @@ -1,8 +1,8 @@ -QUnit.module('throttled_simulation.js'); +QUnit.module('test_throttled_simulation.js'); /* globals QUnit SimulationEvent Simulation ThrottledSimulation */ /* eslint-disable no-magic-numbers */ -const TIMER_ERROR_TOLERANCE = 10; // minimum separation in milliseconds that we expect to be enough to preserve timeout order (must be greater than zero) +const TIMER_ERROR_TOLERANCE = 20; // minimum separation in milliseconds that we expect to be enough to preserve timeout order (must be greater than zero) QUnit.test('step through events at constant speed', (assert) => { const simulation = new Simulation(); @@ -40,7 +40,7 @@ QUnit.test('step through events at constant speed', (assert) => { case 3: assert.deepEqual(throttled.currentTime, 4); assert.deepEqual(result, [2, 3, 4]); - assert.deepEqual(simulation.pendingEvents.elements, []); + assert.deepEqual(simulation.pendingEvents.peek(), undefined); done(); break; default: @@ -92,7 +92,7 @@ QUnit.test('step through events at variable speed, changing speed at an event', case 4: assert.deepEqual(throttled.currentTime, 4); assert.deepEqual(result, [2, 3, 4]); - assert.deepEqual(simulation.pendingEvents.elements, []); + assert.deepEqual(simulation.pendingEvents.peek(), undefined); done(); break; default: diff --git a/unit_tests/test_transit.js b/unit_tests/test_transit.js index 7cd864692e0d45b0ef8d150d1de23a8941423a4f..54f93facdf223f6bf53c26f0dc5c5a636a0de589 100644 --- a/unit_tests/test_transit.js +++ b/unit_tests/test_transit.js @@ -1,4 +1,4 @@ -QUnit.module('transit.js'); +QUnit.module('test_transit.js'); /* globals QUnit Vertex UndirectedEdge UndirectedGraph SimulationEvent City Route Bus Passenger */ /* eslint-disable no-magic-numbers, no-underscore-dangle */ @@ -493,8 +493,7 @@ QUnit.test('find a pedestrian path from a vertex to a neighbor with a shortcut a passenger.source = a; passenger.destination = c; passenger._plan(); - // the search should find the shortest path in terms of number of vertices, not total weighted length - assert.deepEqual(instructions(passenger.plan, city), ['walk to c at time 10']); + assert.deepEqual(instructions(passenger.plan, city), ['walk to b at time 2', 'walk to c at time 9']); }); QUnit.test('find a pedestrian path from a vertex to a neighbor with a useful bus route', (assert) => { @@ -507,17 +506,17 @@ QUnit.test('find a pedestrian path from a vertex to a neighbor with a useful bus walkGraph.addVertex(b); walkGraph.addVertex(c); walkGraph.addVertex(d); - walkGraph.addEdge(a, new UndirectedEdge(4), b); - walkGraph.addEdge(b, new UndirectedEdge(14), c); - walkGraph.addEdge(c, new UndirectedEdge(14), d); - walkGraph.addEdge(d, new UndirectedEdge(2), a); + walkGraph.addEdge(a, new UndirectedEdge(14), b); + walkGraph.addEdge(b, new UndirectedEdge(4), c); + walkGraph.addEdge(c, new UndirectedEdge(4), d); + walkGraph.addEdge(d, new UndirectedEdge(12), a); const driveGraph = new UndirectedGraph(); driveGraph.addVertex(a); driveGraph.addVertex(b); driveGraph.addVertex(c); driveGraph.addVertex(d); driveGraph.addEdge(a, new UndirectedEdge(2), b); - driveGraph.addEdge(b, new UndirectedEdge(7), c); + driveGraph.addEdge(b, new UndirectedEdge(3), c); driveGraph.addEdge(c, new UndirectedEdge(4), d); driveGraph.addEdge(d, new UndirectedEdge(1), a); const city = new City(walkGraph, driveGraph); @@ -528,7 +527,7 @@ QUnit.test('find a pedestrian path from a vertex to a neighbor with a useful bus passenger.source = a; passenger.destination = c; passenger._plan(); - assert.deepEqual(instructions(passenger.plan, city), ['walk to d at time 2', 'walk to c at time 16']); + assert.deepEqual(instructions(passenger.plan, city), ['route 0 to c at time 10']); }); QUnit.test('find a pedestrian path from a vertex to a neighbor with both walking and bus riding', (assert) => { @@ -565,7 +564,7 @@ QUnit.test('find a pedestrian path from a vertex to a neighbor with both walking passenger.source = a; passenger.destination = d; passenger._plan(); - assert.deepEqual(instructions(passenger.plan, city), ['walk to b at time 4', 'walk to c at time 18', 'walk to d at time 32']); + assert.deepEqual(instructions(passenger.plan, city), ['walk to b at time 4', 'route 0 to d at time 21']); }); QUnit.test('find a nonexistent pedestrian path', (assert) => { @@ -676,22 +675,16 @@ QUnit.test('simulate a passenger taking a combined walking/riding path', (assert assert.deepEqual(time, 7); assert.deepEqual(x.vertex, b); time = city.step(); - assert.deepEqual(time, 14); - assert.deepEqual(x.vertex, c); + assert.deepEqual(time, 8); + assert.deepEqual(passenger.bus, x); time = city.step(); - assert.deepEqual(time, 18); - assert.deepEqual(passenger.vertex, c); + assert.deepEqual(time, 15); + assert.deepEqual(x.vertex, c); time = city.step(); - assert.deepEqual(time, 21); + assert.deepEqual(time, 22); assert.deepEqual(x.vertex, d); time = city.step(); - assert.deepEqual(time, 28); - assert.deepEqual(x.vertex, e); - time = city.step(); - assert.deepEqual(time, 32); - assert.deepEqual(passenger.vertex, d); - time = city.step(); - assert.deepEqual(time, 35); + assert.deepEqual(time, 23); assert.deepEqual(passenger.vertex, d); }); @@ -948,31 +941,22 @@ QUnit.test('simulate a passenger alighting after the bus they are riding is rero x.start(); city.addEvent(new SimulationEvent(2, () => undefined)); let time = city.step(); + assert.deepEqual(time, 1); + assert.deepEqual(passenger.bus, x); + time = city.step(); assert.deepEqual(time, 2); route.patch(b, a); time = city.step(); - assert.deepEqual(time, 3); - assert.deepEqual(x.vertex, b); - time = city.step(); - assert.deepEqual(time, 6); - assert.deepEqual(x.vertex, a); - time = city.step(); - assert.deepEqual(time, 9); + assert.deepEqual(time, 4); assert.deepEqual(x.vertex, b); time = city.step(); - assert.deepEqual(time, 12); - assert.deepEqual(x.vertex, a); - time = city.step(); - assert.deepEqual(time, 14); + assert.deepEqual(time, 5); assert.deepEqual(passenger.vertex, b); time = city.step(); - assert.deepEqual(time, 15); - assert.deepEqual(x.vertex, b); - time = city.step(); - assert.deepEqual(time, 18); + assert.deepEqual(time, 8); assert.deepEqual(x.vertex, a); time = city.step(); - assert.deepEqual(time, 19); + assert.deepEqual(time, 10); assert.deepEqual(passenger.vertex, c); }); @@ -1008,23 +992,22 @@ QUnit.test('simulate a passenger continuing to ride after the bus they are ridin x.start(); city.addEvent(new SimulationEvent(2, () => undefined)); let time = city.step(); - assert.deepEqual(time, 1.5); - assert.deepEqual(x.vertex, d); + assert.deepEqual(time, 1); + assert.deepEqual(passenger.bus, x); time = city.step(); assert.deepEqual(time, 2); route.patch(a, c); time = city.step(); - assert.deepEqual(time, 3); + assert.deepEqual(time, 2.5); + assert.deepEqual(x.vertex, d); + time = city.step(); + assert.deepEqual(time, 4); assert.deepEqual(x.vertex, b); time = city.step(); - assert.deepEqual(time, 6); + assert.deepEqual(time, 7); assert.deepEqual(x.vertex, c); time = city.step(); - assert.deepEqual(time, 14); - assert.deepEqual(x.vertex, a); - assert.deepEqual(passenger.vertex, b); - time = city.step(); - assert.deepEqual(time, 19); + assert.deepEqual(time, 8); assert.deepEqual(passenger.vertex, c); }); @@ -1042,9 +1025,7 @@ QUnit.test('simulate a passenger replanning after their bus is stopped while the driveGraph.addVertex(a); driveGraph.addVertex(b); driveGraph.addVertex(c); - driveGraph.addEdge(a, new UndirectedEdge(2), b); driveGraph.addEdge(b, new UndirectedEdge(3), c); - driveGraph.addEdge(a, new UndirectedEdge(8), c); const city = new City(walkGraph, driveGraph); const route = new Route(city, b, c); const x = new Bus(route.getArc(c)); @@ -1138,17 +1119,29 @@ QUnit.test('simulate passengers alighting after the bus they are riding is stopp x.start(); city.addEvent(new SimulationEvent(3, () => undefined)); let time = city.step(); + assert.deepEqual(time, 1); + assert.deepEqual(passenger.bus, x); + time = city.step(); + assert.deepEqual(time, 2); + assert.deepEqual(companion.bus, x); + time = city.step(); assert.deepEqual(time, 3); - assert.deepEqual(x.vertex, b); x.stop(); time = city.step(); - assert.deepEqual(time, 14); + assert.deepEqual(time, 5); + assert.deepEqual(x.vertex, b); + time = city.step(); + assert.deepEqual(time, 6); assert.deepEqual(passenger.vertex, b); + time = city.step(); + assert.deepEqual(time, 7); assert.deepEqual(companion.vertex, b); - assert.deepEqual(route.buses.size, 0); time = city.step(); - assert.deepEqual(time, 19); + assert.deepEqual(time, 11); assert.deepEqual(passenger.vertex, c); + assert.deepEqual(route.buses.size, 0); + time = city.step(); + assert.deepEqual(time, 12); assert.deepEqual(companion.vertex, c); }); @@ -1264,18 +1257,30 @@ QUnit.test('simulate passengers alighting after the route for the bus they are r x.start(); city.addEvent(new SimulationEvent(3, () => undefined)); let time = city.step(); + assert.deepEqual(time, 1); + assert.deepEqual(passenger.bus, x); + time = city.step(); + assert.deepEqual(time, 2); + assert.deepEqual(companion.bus, x); + time = city.step(); assert.deepEqual(time, 3); - assert.deepEqual(x.vertex, b); route.retire(); time = city.step(); - assert.deepEqual(time, 14); + assert.deepEqual(time, 5); + assert.deepEqual(x.vertex, b); + time = city.step(); + assert.deepEqual(time, 6); assert.deepEqual(passenger.vertex, b); + time = city.step(); + assert.deepEqual(time, 7); assert.deepEqual(companion.vertex, b); assert.deepEqual(route.buses.size, 0); assert.deepEqual(city.routes[0], undefined); time = city.step(); - assert.deepEqual(time, 19); + assert.deepEqual(time, 11); assert.deepEqual(passenger.vertex, c); + time = city.step(); + assert.deepEqual(time, 12); assert.deepEqual(companion.vertex, c); }); @@ -1313,38 +1318,18 @@ QUnit.test('simulate a passenger replanning after a bus is added at their vertex assert.deepEqual(passenger.vertex, b); const x = new Bus(route.getArc(b)); x.start(); - // assert.deepEqual(passenger.walkingSource, undefined); - time = city.step(); - assert.deepEqual(time, 7); - assert.deepEqual(x.vertex, c); - time = city.step(); - assert.deepEqual(time, 10); - assert.deepEqual(x.vertex, d); + assert.deepEqual(passenger.walkingSource, undefined); time = city.step(); - assert.deepEqual(time, 13); - assert.deepEqual(x.vertex, a); - time = city.step(); - assert.deepEqual(time, 16); - assert.deepEqual(x.vertex, b); + assert.deepEqual(time, 5); + assert.deepEqual(passenger.bus, x); time = city.step(); - assert.deepEqual(time, 19); + assert.deepEqual(time, 8); assert.deepEqual(x.vertex, c); - assert.deepEqual(passenger.vertex, c); time = city.step(); - assert.deepEqual(time, 22); + assert.deepEqual(time, 11); assert.deepEqual(x.vertex, d); time = city.step(); - assert.deepEqual(time, 25); - assert.deepEqual(x.vertex, a); - time = city.step(); - assert.deepEqual(time, 28); - assert.deepEqual(x.vertex, b); - time = city.step(); - assert.deepEqual(time, 31); - assert.deepEqual(x.vertex, c); - time = city.step(); - assert.deepEqual(time, 34); - assert.deepEqual(x.vertex, d); + assert.deepEqual(time, 12); assert.deepEqual(passenger.vertex, d); }); @@ -1384,45 +1369,18 @@ QUnit.test('simulate a passenger replanning after a bus is added elsewhere', (as x.start(); time = city.step(); assert.deepEqual(time, 7); + assert.deepEqual(passenger.vertex, b); assert.deepEqual(x.vertex, b); time = city.step(); - assert.deepEqual(time, 10); - assert.deepEqual(x.vertex, c); - time = city.step(); - assert.deepEqual(time, 13); - assert.deepEqual(x.vertex, d); - time = city.step(); - assert.deepEqual(time, 16); - assert.deepEqual(x.vertex, a); - time = city.step(); - assert.deepEqual(time, 19); - assert.deepEqual(x.vertex, b); - assert.deepEqual(passenger.vertex, c); - time = city.step(); - assert.deepEqual(time, 22); - assert.deepEqual(x.vertex, c); - time = city.step(); - assert.deepEqual(time, 25); - assert.deepEqual(x.vertex, d); - time = city.step(); - assert.deepEqual(time, 28); - assert.deepEqual(x.vertex, a); - time = city.step(); - assert.deepEqual(time, 31); - assert.deepEqual(x.vertex, b); + assert.deepEqual(time, 8); + assert.deepEqual(passenger.bus, x); time = city.step(); - assert.deepEqual(time, 34); + assert.deepEqual(time, 11); assert.deepEqual(x.vertex, c); time = city.step(); - assert.deepEqual(time, 37); + assert.deepEqual(time, 14); assert.deepEqual(x.vertex, d); time = city.step(); - assert.deepEqual(time, 40); - assert.deepEqual(x.vertex, a); - time = city.step(); - assert.deepEqual(time, 43); - assert.deepEqual(x.vertex, b); - time = city.step(); - assert.deepEqual(time, 45); + assert.deepEqual(time, 15); assert.deepEqual(passenger.vertex, d); }); diff --git a/unit_tests/test_undirected_graph.js b/unit_tests/test_undirected_graph.js index 86f21e1c851bb32760066289fe0e4265d67221c2..1111ad8879225043c265d9cb1d38e35ec35dc30a 100644 --- a/unit_tests/test_undirected_graph.js +++ b/unit_tests/test_undirected_graph.js @@ -1,4 +1,4 @@ -QUnit.module('undirected_graph.js'); +QUnit.module('test_undirected_graph.js'); /* globals QUnit UndirectedEdge UndirectedGraph shortestUndirectedPath */ /* eslint-disable no-magic-numbers */ @@ -22,7 +22,7 @@ QUnit.test('find the neighbors of a vertex', (assert) => { assert.deepEqual(graph.getNeighbors('a').sort(), ['b', 'c']); }); -QUnit.test('retrieve a nonexistent self edge', (assert) => { +QUnit.test('retrieve an ignored self edge', (assert) => { const graph = new UndirectedGraph(); graph.addVertex('a'); graph.addVertex('b'); @@ -87,8 +87,7 @@ QUnit.test('find a path from a vertex to a neighbor with a shortcut available', graph.addEdge('a', new UndirectedEdge(2), 'b'); graph.addEdge('b', new UndirectedEdge(7), 'c'); graph.addEdge('a', new UndirectedEdge(10), 'c'); - // the search should find the shortest path in terms of number of vertices, not total weighted length - assert.deepEqual(shortestUndirectedPath(graph, 'a', (vertex) => vertex === 'c'), ['a', 'c']); + assert.deepEqual(shortestUndirectedPath(graph, 'a', (vertex) => vertex === 'c'), ['a', 'b', 'c']); }); QUnit.test('find a nonexistent path', (assert) => { diff --git a/unit_tests/test_utility.js b/unit_tests/test_utility.js index ef2a2eedc1c09ce36c6a9297dc0b92d64b77e8c3..07fb200c01e4cc42ce0be2f46e5ed3f1f4dc9694 100644 --- a/unit_tests/test_utility.js +++ b/unit_tests/test_utility.js @@ -1,4 +1,4 @@ -QUnit.module('utility.js'); +QUnit.module('test_utility.js'); /* globals QUnit */ /* eslint-disable no-magic-numbers */ diff --git a/unit_tests/unit_tests.html b/unit_tests/unit_tests.html index 468196819a34e7b0f043fb10dfde0a36cab1bb76..e56f6d931d541ff752bb8fccfd01635fe9338e0a 100644 --- a/unit_tests/unit_tests.html +++ b/unit_tests/unit_tests.html @@ -4,8 +4,8 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> - <link rel="stylesheet" type="text/css" href="../libraries/qunit/qunit.css"> - <title>Unit Tests: Public Transit Simulator (Fall 2018 Version)</title> + <link rel="stylesheet" href="../libraries/qunit/qunit.css"> + <title>Unit Tests: Public Transit Simulator (Fall 2019 Version)</title> </head> <body> @@ -29,6 +29,9 @@ <script src="test_control_inversion.js"></script> <script src="../js/priority_queue.js"></script> + <script src="test_priority_queue.js"></script> + + <script src="../js/hash_table.js"></script> <script src="../js/simulation.js"></script> <script src="test_simulation.js"></script> @@ -42,12 +45,12 @@ <script src="../js/patching.js"></script> <script src="test_patching.js"></script> - <script src="../js/heat_map.js"></script> - <script src="test_heat_map.js"></script> - <script src="../js/positioned_graph.js"></script> <script src="test_positioned_graph.js"></script> + <script src="../js/pseudoplanarity.js"></script> + <script src="test_pseudoplanarity.js"></script> + <script src="../js/throttled_simulation.js"></script> <script src="test_throttled_simulation.js"></script>